From 455d9558417a759fae3ccbe5cde5c9f5064a08d2 Mon Sep 17 00:00:00 2001 From: krasimir Date: Sun, 6 Jun 2010 11:06:44 +0000 Subject: [PATCH] changes in SUMO: formatting and fixes for lots of lots of small problems --- examples/SUMO/Basic.gf | 107 +- examples/SUMO/BasicEng.gf | 165 +- examples/SUMO/Communications.gf | 268 +- examples/SUMO/CountriesAndRegions.gf | 3795 +++---- examples/SUMO/CountriesAndRegionsEng.gf | 1700 +-- examples/SUMO/Economy.gf | 3575 +++--- examples/SUMO/EconomyEng.gf | 13 + examples/SUMO/Elements.gf | 929 ++ examples/SUMO/ElementsEng.gf | 116 + examples/SUMO/Engineering.gf | 1007 ++ examples/SUMO/EngineeringEng.gf | 7 + examples/SUMO/FinancialOntology.gf | 3100 +++-- examples/SUMO/Geography.gf | 5436 +++++---- examples/SUMO/Government.gf | 2559 ++--- examples/SUMO/HigherOrder.gf | 98 - examples/SUMO/HigherOrderEng.gf | 21 - examples/SUMO/Merge.gf | 13188 +++++++++++----------- examples/SUMO/MergeEng.gf | 1988 ++-- examples/SUMO/MidLevelOntology.gf | 7983 +++++++++++++ examples/SUMO/Mid_level_ontology.gf | 8671 -------------- examples/SUMO/Mid_level_ontologyEng.gf | 1501 --- examples/SUMO/Mid_level_ontologyFre.gf | 42 - examples/SUMO/Mid_level_ontologyRon.gf | 43 - examples/SUMO/Military.gf | 824 +- examples/SUMO/Mondial.gf | 11116 ++++++++++++++++++ examples/SUMO/MondialEng.gf | 5556 +++++++++ examples/SUMO/QoSontology.gf | 2569 ++--- examples/SUMO/RGLExt/ExtensionEng.gf | 4 +- examples/SUMO/SUMO.gf | 19 +- examples/SUMO/SUMOEng.gf | 12 +- examples/SUMO/SUMOFre.gf | 2 +- examples/SUMO/SUMORon.gf | 2 +- examples/SUMO/Transportation.gf | 2700 +++-- examples/SUMO/WMD.gf | 2055 ++-- examples/SUMO/WorldAirportsA_K.gf | 8114 +++++++------ examples/SUMO/WorldAirportsL_Z.gf | 10348 +++++++++-------- examples/SUMO/elements.gf | 931 -- examples/SUMO/elementsEng.gf | 117 - examples/SUMO/engineering.gf | 1082 -- examples/SUMO/mondial.gf | 11117 ------------------ examples/SUMO/mondialEng.gf | 5558 --------- 41 files changed, 56990 insertions(+), 61448 deletions(-) create mode 100644 examples/SUMO/EconomyEng.gf create mode 100644 examples/SUMO/Elements.gf create mode 100644 examples/SUMO/ElementsEng.gf create mode 100644 examples/SUMO/Engineering.gf create mode 100644 examples/SUMO/EngineeringEng.gf delete mode 100644 examples/SUMO/HigherOrder.gf delete mode 100644 examples/SUMO/HigherOrderEng.gf create mode 100644 examples/SUMO/MidLevelOntology.gf delete mode 100644 examples/SUMO/Mid_level_ontology.gf delete mode 100644 examples/SUMO/Mid_level_ontologyEng.gf delete mode 100644 examples/SUMO/Mid_level_ontologyFre.gf delete mode 100644 examples/SUMO/Mid_level_ontologyRon.gf create mode 100644 examples/SUMO/Mondial.gf create mode 100644 examples/SUMO/MondialEng.gf delete mode 100644 examples/SUMO/elements.gf delete mode 100644 examples/SUMO/elementsEng.gf delete mode 100644 examples/SUMO/engineering.gf delete mode 100644 examples/SUMO/mondial.gf delete mode 100644 examples/SUMO/mondialEng.gf diff --git a/examples/SUMO/Basic.gf b/examples/SUMO/Basic.gf index 058e5a8b1..ebbc19193 100644 --- a/examples/SUMO/Basic.gf +++ b/examples/SUMO/Basic.gf @@ -1,79 +1,73 @@ --# -path=.:englishExtended:common:prelude:abstract -abstract Basic = open Conjunction in { -cat Class; - El Class; - Ind Class; - SubClassC (c1,c2 : Class) (Var c2 -> Formula); - SubClass (c1,c2 : Class); - Inherits Class Class ; - [El Class]; - [Class]; - Formula; - Desc Class; - Var Class; - Stmt ; - +abstract Basic = { + +cat + Class; + El Class; + Ind Class; + SubClassC (c1,c2 : Class) (Var c2 -> Formula); + SubClass (c1,c2 : Class); + Inherits Class Class ; + [El Class]; + [Class]; + Formula; + Desc Class; + Var Class; + Stmt ; + -- inheritance between classes data -inhz : (c : Class) -> Inherits c c; -inhs : (c1, c2, c3 : Class) -> (p : Var c2 -> Formula) -> SubClassC c1 c2 p -> Inherits c2 c3 -> Inherits c1 c3; -inhsC : (c1, c2, c3 : Class) -> SubClass c1 c2 -> Inherits c2 c3 -> Inherits c1 c3; - + inhz : (c : Class) -> Inherits c c; + inhs : (c1, c2, c3 : Class) -> (p : Var c2 -> Formula) -> SubClassC c1 c2 p -> Inherits c2 c3 -> Inherits c1 c3; + inhsC : (c1, c2, c3 : Class) -> SubClass c1 c2 -> Inherits c2 c3 -> Inherits c1 c3; -- coercion from Var to El - data -var : (c1 , c2 : Class) -> Inherits c1 c2 -> Var c1 -> El c2 ; - + var : (c1 , c2 : Class) -> Inherits c1 c2 -> Var c1 -> El c2 ; -- coercion from Ind to El data -el : (c1, c2 : Class) -> Inherits c1 c2 -> Ind c1 -> El c2; - + el : (c1, c2 : Class) -> Inherits c1 c2 -> Ind c1 -> El c2; -- class-forming operations data -both : Class -> Class -> Class ; -either : Class -> Class -> Class ; - + both : Class -> Class -> Class ; + either : Class -> Class -> Class ; -- first-order logic operations for Formula data -not : Formula -> Formula; -and : Formula -> Formula -> Formula; -or : Formula -> Formula -> Formula; -impl : Formula -> Formula -> Formula; -equiv : Formula -> Formula -> Formula; - + not : Formula -> Formula; + and : Formula -> Formula -> Formula; + or : Formula -> Formula -> Formula; + impl : Formula -> Formula -> Formula; + equiv : Formula -> Formula -> Formula; -- quantification over instances of a Class data -exists : (c : Class) -> (Var c -> Formula) -> Formula; -forall : (c : Class) -> (Var c -> Formula) -> Formula; + exists : (c : Class) -> (Var c -> Formula) -> Formula; + forall : (c : Class) -> (Var c -> Formula) -> Formula; -- axioms for both data + -- (both c1 c2) is subclass of c1 and of c2 + bothL : (c1, c2 : Class) -> Inherits (both c1 c2) c1 ; + bothR : (c1, c2 : Class) -> Inherits (both c1 c2) c2 ; --- (both c1 c2) is subclass of c1 and of c2 -bothL : (c1, c2 : Class) -> Inherits (both c1 c2) c1 ; -bothR : (c1, c2 : Class) -> Inherits (both c1 c2) c2 ; + -- relationship with other subclasses + bothC : (c1, c2, c3 : Class) -> Inherits c3 c1 -> Inherits c3 c2 -> Inherits c3 (both c1 c2); --- relationship with other subclasses -bothC : (c1, c2, c3 : Class) -> Inherits c3 c1 -> Inherits c3 c2 -> Inherits c3 (both c1 c2); - --- axioms for either + -- axioms for either data + -- (either c1 c2) is superclass of c1 and of c2 + eitherL : (c1, c2 : Class) -> Inherits c1 (either c1 c2); + eitherR : (c1, c2 : Class) -> Inherits c2 (either c1 c2); --- (either c1 c2) is superclass of c1 and of c2 -eitherL : (c1, c2 : Class) -> Inherits c1 (either c1 c2); -eitherR : (c1, c2 : Class) -> Inherits c2 (either c1 c2); - --- relationship with other subclasses -eitherC : (c1,c2,c3 : Class) -> Inherits c1 c3 -> Inherits c2 c3 -> Inherits (either c1 c2) c3 ; - + -- relationship with other subclasses + eitherC : (c1,c2,c3 : Class) -> Inherits c1 c3 -> Inherits c2 c3 -> Inherits (either c1 c2) c3 ; -- Desc category -data desc : (c1,c2 : Class) -> Inherits c1 c2 -> Desc c2 ; +data + desc : (c1,c2 : Class) -> Inherits c1 c2 -> Desc c2 ; fun descClass : (c : Class) -> Desc c -> Class ; def descClass _ (desc c _ _) = c ; @@ -88,16 +82,11 @@ fun desc2desc : (c1,c2 : Class) -> Inherits c1 c2 -> Desc c1 -> Desc c2 ; --def plusInh _ _ _ inhz inh2 = inh2 ; -- plusInh _ _ _ (inhs _ _ _ sc inh1) inh2 = inhs ? ? ? sc (plusInh ? ? ? inh1 inh2) ; - - -- statements - data -subClassStm : (c1,c2 : Class) -> SubClass c1 c2 -> Stmt ; -subClassCStm : (c1,c2 : Class) -> (p : Var c2 -> Formula) -> SubClassC c1 c2 p -> Stmt ; -instStm : (c : Class) -> Ind c -> Stmt ; -formStm : Formula -> Stmt ; + subClassStm : (c1,c2 : Class) -> SubClass c1 c2 -> Stmt ; + subClassCStm : (c1,c2 : Class) -> (p : Var c2 -> Formula) -> SubClassC c1 c2 p -> Stmt ; + instStm : (c : Class) -> Ind c -> Stmt ; + formStm : Formula -> Stmt ; - - -}; \ No newline at end of file +}; diff --git a/examples/SUMO/BasicEng.gf b/examples/SUMO/BasicEng.gf index 41f483e8c..8f25d2012 100644 --- a/examples/SUMO/BasicEng.gf +++ b/examples/SUMO/BasicEng.gf @@ -1,96 +1,99 @@ --# -path=.:englishExtended:abstract:common: -concrete BasicEng of Basic = CatEng - [Text] ** open DictLangEng, ParadigmsEng, ResEng, Coordination, Prelude, ParamBasic, NounEng in{ +concrete BasicEng of Basic = CatEng - [Text] ** open DictLangEng, ParadigmsEng, ResEng, Coordination, Prelude, ParamBasic, NounEng in { + lincat - Class = CN ; - El = NP ; - Ind = NP ; - Var = PN ; - SubClass = {} ; - SubClassC = {} ; - Inherits = {} ; - Desc = CN ; - Formula = PolSentence; - [El] = [NP]; - [Class] = [CN]; - Stmt = StmtS ; - lin -BaseClass = {s1,s2 = \\_,_ => ""; - g = Neutr; - lock_ListCN=<>}; -ConsClass xs x = ConsCN xs x ; + Class = CN ; + El = NP ; + Ind = NP ; + Var = PN ; + SubClass = {} ; + SubClassC = {} ; + Inherits = {} ; + Desc = CN ; + Formula = PolSentence; + [El] = [NP]; + [Class] = [CN]; + Stmt = StmtS ; + +lin + BaseClass = {s1,s2 = \\_,_ => ""; + g = Neutr; + lock_ListCN=<>}; + ConsClass xs x = ConsCN xs x ; - -BaseEl c = {s1,s2 = \\_ => ""; - a = agrP3 Sg; - lock_ListNP=<>}; + BaseEl c = {s1,s2 = \\_ => ""; + a = agrP3 Sg; + lock_ListNP=<>}; -ConsEl c xs x = ConsNP xs x ; + ConsEl c xs x = ConsNP xs x ; - -and f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "and" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>}; -or f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "or" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>}; -not f1 = {s = \\f,c => case c of - {Neg => f1.s ! f ! Pos ; - Pos => f1.s ! Indep ! Neg }; - flag = f1.flag; - lock_PolSentence = <>}; -impl f1 f2 = {s = \\f,c => "if" ++ f1.s ! Indep ! c ++ "then" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>}; + and f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "and" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>}; + or f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "or" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>}; + not f1 = {s = \\f,c => case c of { + Neg => f1.s ! f ! Pos ; + Pos => f1.s ! Indep ! Neg + }; + flag = f1.flag; + lock_PolSentence = <> + }; + impl f1 f2 = {s = \\f,c => "if" ++ f1.s ! Indep ! c ++ "then" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>}; -equiv f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "is" ++ "equivalent" ++ "to" ++ f2.s ! Indep ! c; flag = NothingS; - lock_PolSentence = <>}; + equiv f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "is" ++ "equivalent" ++ "to" ++ f2.s ! Indep ! c; flag = NothingS; + lock_PolSentence = <>}; -el c1 c2 i e = e; -var c1 c2 i e = UsePN e; + el c1 c2 i e = e; + var c1 c2 i e = UsePN e; -exists C f = let np = DetCN (DetQuant IndefArt NumSg) C - in - {s = \\form,c => case of - { => "there" ++ "exists" ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; - => "and" ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; - => "," ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; - => "there" ++ "exists" ++ np.s ! Nom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c ; - _ => "and" ++ np.s ! Nom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c }; - flag = case f.flag of - {ExistS _ => ExistS Many; - _ => ExistS One }; - lock_PolSentence=<>}; + exists C f = let np = DetCN (DetQuant IndefArt NumSg) C + in { s = \\form,c => case of { + => "there" ++ "exists" ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; + => "and" ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; + => "," ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; + => "there" ++ "exists" ++ np.s ! Nom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c ; + _ => "and" ++ np.s ! Nom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c + }; + flag = case f.flag of { + ExistS _ => ExistS Many; + _ => ExistS One + }; + lock_PolSentence=<> + }; -forall C f = {s = \\form, c => case of - { => "for" ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; - => "," ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; - => "," ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; - => "for" ++"every"++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Indep ! c ; - => "for" ++"every"++ C.s ! Sg ! Nom ++ f.$0 ++ "we"++"have" ++ "that" ++ f.s ! Indep ! c ; - => "and" ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Indep ! c; - _ => "and" ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ "we" ++ "have" ++ "that" ++f.s ! Indep ! c }; - flag = case f.flag of - {ForallS _ => ForallS Many; - _ => ForallS One }; - lock_PolSentence=<>}; + forall C f = { s = \\form, c => case of { + => "for" ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; + => "," ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; + => "," ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Attrib ! c ; + => "for" ++"every"++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Indep ! c ; + => "for" ++"every"++ C.s ! Sg ! Nom ++ f.$0 ++ "we"++"have" ++ "that" ++ f.s ! Indep ! c ; + => "and" ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ f.s ! Indep ! c; + _ => "and" ++ "every" ++ C.s ! Sg ! Nom ++ f.$0 ++ "we" ++ "have" ++ "that" ++f.s ! Indep ! c }; + flag = case f.flag of { + ForallS _ => ForallS Many; + _ => ForallS One + }; + lock_PolSentence=<> + }; -both c1 c2 = {s = \\c,n => c1.s ! c ! n ++ "and" ++ c2.s ! c ! n; - g = c2.g; lock_CN = <>}; + both c1 c2 = { s = \\c,n => c1.s ! c ! n ++ "and" ++ c2.s ! c ! n; + g = c2.g; lock_CN = <> + }; - -either c1 c2 = {s = \\c,n => c1.s ! c ! n ++ "or" ++ c2.s ! c ! n; - g = c2.g; lock_CN = <>}; + either c1 c2 = { s = \\c,n => c1.s ! c ! n ++ "or" ++ c2.s ! c ! n; + g = c2.g; lock_CN = <> + }; -desc c1 c2 i = c2 ; -descClass c dc = c; -desc2desc c1 c2 i d = d; + desc c1 c2 i = c2 ; + descClass c dc = c; + desc2desc c1 c2 i d = d; -subClassStm c1 c2 sc = ss (c1. s ! Sg ! Nom ++ "is" ++ "a" ++ "subclass" ++ "of" ++ c2.s ! Sg ! Nom) ; -instStm c i = ss (i.s ! Nom ++ "is" ++ "an" ++ "instance" ++ "of" ++ c.s ! Sg ! Nom) ; -formStm f = ss (f.s ! Indep ! Pos) ; -subClassCStm c1 c2 constr sc= ss (c1.s ! Sg ! Nom ++ "is" ++ "a" ++ "subclass" ++ "of" ++ c2.s ! Sg ! Nom ++ "where" ++ constr.s ! Indep ! Pos) ; + subClassStm c1 c2 sc = lin StmtS (ss (c1. s ! Sg ! Nom ++ "is a subclass of" ++ c2.s ! Sg ! Nom)) ; + instStm c i = lin StmtS (ss (i.s ! Nom ++ "is an instance of" ++ c.s ! Sg ! Nom)) ; + formStm f = lin StmtS (ss (f.s ! Indep ! Pos)) ; + subClassCStm c1 c2 constr sc= lin StmtS (ss (c1.s ! Sg ! Nom ++ "is a subclass of" ++ c2.s ! Sg ! Nom ++ "where" ++ constr.s ! Indep ! Pos)) ; --- lindef +lindef + Ind = \x -> {s = \\_ => x; a = agrP3 Sg; lock_NP = <>} ; + El = \x -> {s = \\_ => x; a = agrP3 Sg; lock_NP = <>} ; + Class = \x -> {s = \\_,_ => x; g = Neutr; lock_CN =<>}; -lindef Ind = \x -> {s = \\_ => x; a = agrP3 Sg; lock_NP = <>} ; - -lindef El = \x -> {s = \\_ => x; a = agrP3 Sg; lock_NP = <>} ; - -lindef Class = \x -> {s = \\_,_ => x; g = Neutr; lock_CN =<>}; - - - }; \ No newline at end of file +}; diff --git a/examples/SUMO/Communications.gf b/examples/SUMO/Communications.gf index c14f5923e..64c735611 100644 --- a/examples/SUMO/Communications.gf +++ b/examples/SUMO/Communications.gf @@ -1,171 +1,157 @@ -abstract Communications = open Merge, Geography, Mid_level_ontology in{ +abstract Communications = MidLevelOntology, Geography ** { + -- An AMRadioStation is an + -- engineeringSubcomponent of an AMRadioSystem. + fun AMRadioStation : Class ; + fun AMRadioStation_Class : SubClass AMRadioStation RadioStation ; + -- An AMRadioSystem consists of Radios, + -- AMRadioStations, and other components that work together to make + -- AM radio broadcasting possible in a given area. + fun AMRadioSystem : Class ; + fun AMRadioSystem_Class : SubClass AMRadioSystem RadioSystem ; + -- An ArtificialSatellite is a Device + -- that orbits the earth in space and performs various functions such as + -- aiding in communication, photographing the earth's surface, and others. + fun ArtificialSatellite : Class ; + fun ArtificialSatellite_Class : SubClass ArtificialSatellite (both EngineeringComponent Satellite) ; --- An AMRadioStation is an --- engineeringSubcomponent of an AMRadioSystem. -fun AMRadioStation : Class ; -fun AMRadioStation_Class : SubClass AMRadioStation RadioStation ; + -- A BroadcastingStation is + -- an engineeringSubcomponent of either a TelevisionSystem or + -- a RadioStation. + fun BroadcastingStation : Class ; + fun BroadcastingStation_Class : SubClass BroadcastingStation (both CommunicationDevice (both EngineeringComponent StationaryArtifact)) ; --- An AMRadioSystem consists of Radios, --- AMRadioStations, and other components that work together to make --- AM radio broadcasting possible in a given area. -fun AMRadioSystem : Class ; -fun AMRadioSystem_Class : SubClass AMRadioSystem RadioSystem ; + -- A CableTelevisionSystem + -- is a CommunicationSystem for cable television. + fun CableTelevisionSystem : Class ; + fun CableTelevisionSystem_Class : SubClass CableTelevisionSystem CommunicationSystem ; --- An ArtificialSatellite is a Device --- that orbits the earth in space and performs various functions such as --- aiding in communication, photographing the earth's surface, and others. -fun ArtificialSatellite : Class ; -fun ArtificialSatellite_Class : SubClass ArtificialSatellite (both EngineeringComponent Satellite) ; + -- Relatively low power broadcasting + -- devices designed for voice communication among specialized groups + -- in which each receiver also has the power to transmit, unlike + -- broadcast radio where most components transmitting or receiving on + -- a given frequency or set of frequencies are receivers only. This + -- includes unlicensed walkie_talkies, public safety radios, military + -- communication systems and CB radios. + fun CommunicationRadio : Class ; + fun CommunicationRadio_Class : SubClass CommunicationRadio CommunicationDevice ; + -- A CommunicationSatellite is an + -- ArtificialSatellite that serves as one engineeringSubcomponent of a + -- CommunicationSystem. + fun CommunicationSatellite : Class ; + fun CommunicationSatellite_Class : SubClass CommunicationSatellite (both ArtificialSatellite CommunicationDevice) ; --- A BroadcastingStation is --- an engineeringSubcomponent of either a TelevisionSystem or --- a RadioStation. -fun BroadcastingStation : Class ; -fun BroadcastingStation_Class : SubClass BroadcastingStation (both CommunicationDevice (both EngineeringComponent StationaryArtifact)) ; + -- An Eutelsat is one type of + -- CommunicationSatellite. + fun Eutelsat : Class ; + fun Eutelsat_Class : SubClass Eutelsat CommunicationSatellite ; + -- A FMRadioStation is an + -- engineeringSubcomponent of an FMRadioSystem. + fun FMRadioStation : Class ; + fun FMRadioStation_Class : SubClass FMRadioStation RadioStation ; --- A CableTelevisionSystem --- is a CommunicationSystem for cable television. -fun CableTelevisionSystem : Class ; -fun CableTelevisionSystem_Class : SubClass CableTelevisionSystem CommunicationSystem ; + -- A FMRadioSystem consists of Radios, + -- FMRadioStations, and other components that work together to make + -- FM radio broadcasting possible in a given area. + fun FMRadioSystem : Class ; + fun FMRadioSystem_Class : SubClass FMRadioSystem RadioSystem ; -fun CommunicationDevice_EngineeringComponent : SubClass CommunicationDevice EngineeringComponent ; + -- An Inmarsat is one type of + -- CommunicationSatellite. + fun Inmarsat : Class ; + fun Inmarsat_Class : SubClass Inmarsat CommunicationSatellite ; --- Relatively low power broadcasting --- devices designed for voice communication among specialized groups --- in which each receiver also has the power to transmit, unlike --- broadcast radio where most components transmitting or receiving on --- a given frequency or set of frequencies are receivers only. This --- includes unlicensed walkie_talkies, public safety radios, military --- communication systems and CB radios. -fun CommunicationRadio : Class ; -fun CommunicationRadio_Class : SubClass CommunicationRadio CommunicationDevice ; + -- An Intelsat is one type of + -- CommunicationSatellite. + fun Intelsat : Class ; + fun Intelsat_Class : SubClass Intelsat CommunicationSatellite ; --- A CommunicationSatellite is an --- ArtificialSatellite that serves as one engineeringSubcomponent of a --- CommunicationSystem. -fun CommunicationSatellite : Class ; -fun CommunicationSatellite_Class : SubClass CommunicationSatellite (both ArtificialSatellite CommunicationDevice) ; + -- The Internet is a CommunicationSystem + -- for the rapid delivery of information between computers. + fun Internet : Ind CommunicationSystem ; + -- An InternetServiceProvider serves as an engineeringSubcomponent of + -- the Internet for a given area. + fun InternetServiceProvider : Class ; + fun InternetServiceProvider_Class : SubClass InternetServiceProvider CommunicationSystem ; --- An Eutelsat is one type of --- CommunicationSatellite. -fun Eutelsat : Class ; -fun Eutelsat_Class : SubClass Eutelsat CommunicationSatellite ; + -- An InternetUser is an individual who + -- uses the Internet. + fun InternetUser : Ind SocialRole ; --- A FMRadioStation is an --- engineeringSubcomponent of an FMRadioSystem. -fun FMRadioStation : Class ; -fun FMRadioStation_Class : SubClass FMRadioStation RadioStation ; + -- An Intersputnik is one type of + -- CommunicationSatellite. + fun Intersputnik : Class ; + fun Intersputnik_Class : SubClass Intersputnik CommunicationSatellite ; --- A FMRadioSystem consists of Radios, --- FMRadioStations, and other components that work together to make --- FM radio broadcasting possible in a given area. -fun FMRadioSystem : Class ; -fun FMRadioSystem_Class : SubClass FMRadioSystem RadioSystem ; + -- A MainTelephoneLine is one + -- engineeringSubcomponent of a TelephoneSystem used for voice communication + -- or computer data transfer. + fun MainTelephoneLine : Class ; + fun MainTelephoneLine_Class : SubClass MainTelephoneLine CommunicationDevice ; --- An Inmarsat is one type of --- CommunicationSatellite. -fun Inmarsat : Class ; -fun Inmarsat_Class : SubClass Inmarsat CommunicationSatellite ; + -- A Telephone that can be used without + -- connection to a MainTelephoneLine. + fun MobileCellPhone : Class ; + fun MobileCellPhone_Class : SubClass MobileCellPhone Telephone ; --- An Intelsat is one type of --- CommunicationSatellite. -fun Intelsat : Class ; -fun Intelsat_Class : SubClass Intelsat CommunicationSatellite ; + -- An Orbita is one type of + -- CommunicationSatellite. + fun Orbita : Class ; + fun Orbita_Class : SubClass Orbita CommunicationSatellite ; --- The Internet is a CommunicationSystem --- for the rapid delivery of information between computers. -fun Internet : Ind CommunicationSystem ; + -- A RadioStation is an + -- engineeringSubcomponent of a RadioSystem. + fun RadioStation : Class ; + fun RadioStation_Class : SubClass RadioStation BroadcastingStation ; + -- A RadioSystem consists of Radios, + -- RadioStations, and other components that work together to make + -- radio broadcasting possible in a given area. + fun RadioSystem : Class ; + fun RadioSystem_Class : SubClass RadioSystem CommunicationSystem ; --- An InternetServiceProvider --- serves as an engineeringSubcomponent of the Internet for a given --- area. -fun InternetServiceProvider : Class ; -fun InternetServiceProvider_Class : SubClass InternetServiceProvider CommunicationSystem ; + -- A ShortwaveRadioStation + -- is an engineeringSubcomponent of a ShortwaveRadioSystem. + fun ShortwaveRadioStation : Class ; + fun ShortwaveRadioStation_Class : SubClass ShortwaveRadioStation RadioStation ; --- An InternetUser is an individual who --- uses the Internet. -fun InternetUser : Ind SocialRole ; + -- A ShortwaveRadioSystem consists + -- of Radios, ShortwaveRadioStations, and other components that work + -- together to make shortwave radio broadcasting possible in a given area. + fun ShortwaveRadioSystem : Class ; + fun ShortwaveRadioSystem_Class : SubClass ShortwaveRadioSystem RadioSystem ; + -- A TelephoneSystem consists of a complete + -- interconnection of Telephones, MainTelephoneLines, and other components + -- that work together to make telephonic communication possible from point to + -- point in a given area. + fun TelephoneSystem : Class ; + fun TelephoneSystem_Class : SubClass TelephoneSystem CommunicationSystem ; --- An Intersputnik is one type of --- CommunicationSatellite. -fun Intersputnik : Class ; -fun Intersputnik_Class : SubClass Intersputnik CommunicationSatellite ; + -- A TelevisionStation is an + -- engineeringSubcomponent of a TelevisionSystem. + fun TelevisionStation : Class ; + fun TelevisionStation_Class : SubClass TelevisionStation BroadcastingStation ; --- A MainTelephoneLine is one --- engineeringSubcomponent of a TelephoneSystem used for voice communication --- or computer data transfer. -fun MainTelephoneLine : Class ; -fun MainTelephoneLine_Class : SubClass MainTelephoneLine CommunicationDevice ; + -- A system for Broadcasting and + -- receiving television signals. + fun TelevisionSystem : Class ; + fun TelevisionSystem_Class : SubClass TelevisionSystem CommunicationSystem ; --- A Telephone that can be used without --- connection to a MainTelephoneLine. -fun MobileCellPhone : Class ; -fun MobileCellPhone_Class : SubClass MobileCellPhone Telephone ; + -- The expression + -- (communicationSatelliteForArea ?AREA ?SATELLITE ?INTEGER) means that + -- ?INTEGER number of CommunicationSatellites of the type ?SATELLITE serve + -- as an engineeringSubcomponent of a TelephoneSystem of the GeopoliticalArea ?AREA. + fun communicationSatelliteForArea: El GeopoliticalArea -> Desc Satellite -> El Integer -> Formula ;-- replaced-- --- An Orbita is one type of --- CommunicationSatellite. -fun Orbita : Class ; -fun Orbita_Class : SubClass Orbita CommunicationSatellite ; + -- (internetCountryCode ?AREA ?CODE) + -- relates a GeopoliticalArea to the SymbolicString ?CODE used to + -- identify the ?AREA on internet websites. + fun internetCountryCode : El GeopoliticalArea -> El SymbolicString -> Formula ; --- A RadioStation is an --- engineeringSubcomponent of a RadioSystem. -fun RadioStation : Class ; -fun RadioStation_Class : SubClass RadioStation BroadcastingStation ; - --- A RadioSystem consists of Radios, --- RadioStations, and other components that work together to make --- radio broadcasting possible in a given area. -fun RadioSystem : Class ; -fun RadioSystem_Class : SubClass RadioSystem CommunicationSystem ; - --- A ShortwaveRadioStation --- is an engineeringSubcomponent of a ShortwaveRadioSystem. -fun ShortwaveRadioStation : Class ; -fun ShortwaveRadioStation_Class : SubClass ShortwaveRadioStation RadioStation ; - --- A ShortwaveRadioSystem consists --- of Radios, ShortwaveRadioStations, and other components that work --- together to make shortwave radio broadcasting possible in a given area. -fun ShortwaveRadioSystem : Class ; -fun ShortwaveRadioSystem_Class : SubClass ShortwaveRadioSystem RadioSystem ; - --- A TelephoneSystem consists of a complete --- interconnection of Telephones, MainTelephoneLines, and other components --- that work together to make telephonic communication possible from point to --- point in a given area. -fun TelephoneSystem : Class ; -fun TelephoneSystem_Class : SubClass TelephoneSystem CommunicationSystem ; - -fun TelevisionReceiver_EngineeringComponent : SubClass TelevisionReceiver EngineeringComponent ; - --- A TelevisionStation is an --- engineeringSubcomponent of a TelevisionSystem. -fun TelevisionStation : Class ; -fun TelevisionStation_Class : SubClass TelevisionStation BroadcastingStation ; - --- A system for Broadcasting and --- receiving television signals. -fun TelevisionSystem : Class ; -fun TelevisionSystem_Class : SubClass TelevisionSystem CommunicationSystem ; - --- The expression --- (communicationSatelliteForArea ?AREA ?SATELLITE ?INTEGER) means that --- ?INTEGER number of CommunicationSatellites of the type ?SATELLITE serve --- as an engineeringSubcomponent of a TelephoneSystem of the GeopoliticalArea --- ?AREA. -fun communicationSatelliteForArea: El GeopoliticalArea -> Desc Satellite -> El Integer -> Formula ;-- replaced-- - - --- (internetCountryCode ?AREA ?CODE) --- relates a GeopoliticalArea to the SymbolicString ?CODE used to --- identify the ?AREA on internet websites. -fun internetCountryCode : El GeopoliticalArea -> El SymbolicString -> Formula ; } diff --git a/examples/SUMO/CountriesAndRegions.gf b/examples/SUMO/CountriesAndRegions.gf index a6fa4f478..afe009be2 100644 --- a/examples/SUMO/CountriesAndRegions.gf +++ b/examples/SUMO/CountriesAndRegions.gf @@ -1,3039 +1,2292 @@ -abstract CountriesAndRegions = open Merge, Mid_level_ontology, Geography, Government in { +abstract CountriesAndRegions = MidLevelOntology, Geography, Government ** { + -- The City of Adana in Turkey. + fun AdanaTurkey : Ind City ; + -- The City of AddisAbaba in Ethiopia. + fun AddisAbabaEthiopia : Ind City ; + -- The City of Aden in Yemen. + fun AdenYemen : Ind City ; --- The City of Adana in Turkey. -fun AdanaTurkey : Ind City ; + -- The City of Adora in WestBank. + fun AdoraWestBank : Ind City ; + -- The City of Afula in Israel. + fun AfulaIsrael : Ind City ; --- The City of AddisAbaba in Ethiopia. -fun AddisAbabaEthiopia : Ind City ; + -- The City of Agri in Turkey. + fun AgriTurkey : Ind City ; + -- The City of AinDefla in Algeria. + fun AinDeflaAlgeria : Ind City ; --- The City of Aden in Yemen. -fun AdenYemen : Ind City ; + -- The City of AinElHajar in Algeria. + fun AinElHajarAlgeria : Ind City ; + -- The City of Ajaccio in France. + fun AjaccioFrance : Ind City ; --- The City of Adora in WestBank. -fun AdoraWestBank : Ind City ; + -- The City of AlBalamand in Lebanon. + fun AlBalamandLebanon : Ind City ; + -- A state in the southeastern UnitedStates that + -- borders on the GulfOfMexico. + fun Alabama : Ind AmericanState ; --- The City of Afula in Israel. -fun AfulaIsrael : Ind City ; + -- The largest state in the UnitedStates. + fun Alaska : Ind AmericanState ; + -- The City of AleiSinai in GazaStrip. + fun AleiSinaiGazaStrip : Ind City ; --- The City of Agri in Turkey. -fun AgriTurkey : Ind City ; + -- The City of AleiZahav in WestBank. + fun AleiZahavWestBank : Ind City ; + -- The City of Aley in Lebanon. + fun AleyLebanon : Ind City ; --- The City of AinDefla in Algeria. -fun AinDeflaAlgeria : Ind City ; + -- The City of Algiers in Algeria. + fun AlgiersAlgeria : Ind City ; + -- The City of AlkhanYurt in Russia. + fun AlkhanYurtRussia : Ind City ; --- The City of AinElHajar in Algeria. -fun AinElHajarAlgeria : Ind City ; + -- The City of AlonMoreh in WestBank. + fun AlonMorehWestBank : Ind City ; + -- The City of Ambon in Indonesia. + fun AmbonIndonesia : Ind City ; --- The City of Ajaccio in France. -fun AjaccioFrance : Ind City ; + -- The class of cities that are in the UnitedStates. + fun AmericanCity : Class ; + fun AmericanCity_Class : SubClass AmericanCity City ; + -- A dependency of the UnitedStates + fun AmericanSamoa : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of AlBalamand in Lebanon. -fun AlBalamandLebanon : Ind City ; + -- The class of states that make up the UnitedStates. + fun AmericanState : Class ; + fun AmericanState_Class : SubClass AmericanState StateOrProvince ; + -- The City of Amman in Jordan. + fun AmmanJordan : Ind City ; --- A state in the southeastern UnitedStates that --- borders on the GulfOfMexico. -fun Alabama : Ind AmericanState ; + -- The City of AnNuwaydirat in Bahrain. + fun AnNuwaydiratBahrain : Ind City ; + -- The City of Andean in Spain. + fun AndeanSpain : Ind City ; --- The largest state in the UnitedStates. -fun Alaska : Ind AmericanState ; + -- The City of AngkorWat in Cambodia. + fun AngkorWatCambodia : Ind City ; + -- A dependency of the UnitedKingdom + fun Anguilla : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of AleiSinai in GazaStrip. -fun AleiSinaiGazaStrip : Ind City ; + -- The City of Ankara in Turkey. + fun AnkaraTurkey : Ind City ; + -- The City of Antalya in Turkey. + fun AntalyaTurkey : Ind City ; --- The City of AleiZahav in WestBank. -fun AleiZahavWestBank : Ind City ; + fun Antarctica : Ind GeopoliticalArea ; + -- The City of Antioquia in Colombia. + fun AntioquiaColombia : Ind City ; --- The City of Aley in Lebanon. -fun AleyLebanon : Ind City ; + -- The City of Antwerp in Belgium. + fun AntwerpBelgium : Ind City ; + -- The City of Apumirac in Peru. + fun ApumiracPeru : Ind City ; --- The City of Algiers in Algeria. -fun AlgiersAlgeria : Ind City ; + -- The City of Apure in Venezuela. + fun ApureVenezuela : Ind City ; + -- The City of Arauca in Colombia. + fun AraucaColombia : Ind City ; --- The City of AlkhanYurt in Russia. -fun AlkhanYurtRussia : Ind City ; + -- The City of Argun in Russia. + fun ArgunRussia : Ind City ; + -- The City of Ariel in WestBank. + fun ArielWestBank : Ind City ; --- The City of AlonMoreh in WestBank. -fun AlonMorehWestBank : Ind City ; + -- A state in the southwestern UnitedStates that + -- borders on Mexico. + fun Arizona : Ind AmericanState ; + -- A state in the southeastern UnitedStates that was + -- part of the Confederacy. + fun Arkansas : Ind AmericanState ; --- The City of Ambon in Indonesia. -fun AmbonIndonesia : Ind City ; + -- The City of Armagh in NorthernIreland. + fun ArmaghNorthernIreland : Ind City ; + -- A dependency of the Netherlands + fun Aruba : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The class of cities that are in the --- UnitedStates. -fun AmericanCity : Class ; -fun AmericanCity_Class : SubClass AmericanCity City ; + -- The City of Arzew in Algeria. + fun ArzewAlgeria : Ind City ; --- A dependency of the UnitedStates -fun AmericanSamoa : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Ashdod in Israel. + fun AshdodIsrael : Ind City ; + -- A dependency of Australia + fun AshmoreAndCartierIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The class of states that make up the --- UnitedStates. -fun AmericanState : Class ; -fun AmericanState_Class : SubClass AmericanState StateOrProvince ; + -- The City of Askelon in Israel. + fun AskelonIsrael : Ind City ; --- The City of Amman in Jordan. -fun AmmanJordan : Ind City ; + -- The City of Asmara in Eritrea. + fun AsmaraEritrea : Ind City ; + -- The City of Assam in India. + fun AssamIndia : Ind City ; --- The City of AnNuwaydirat in Bahrain. -fun AnNuwaydiratBahrain : Ind City ; + -- The City of Aswan in Egypt. + fun AswanEgypt : Ind City ; + -- The City of Asyut in Egypt. + fun AsyutEgypt : Ind City ; --- The City of Andean in Spain. -fun AndeanSpain : Ind City ; + -- The City of Athens in Greece. + fun AthensGreece : Ind City ; + -- The largest City in Georgia. + fun AtlantaGeorgia : Ind AmericanCity ; --- The City of AngkorWat in Cambodia. -fun AngkorWatCambodia : Ind City ; + -- The City of Atrush in Iraq. + fun AtrushIraq : Ind City ; + -- The City of Atzmona in GazaStrip. + fun AtzmonaGazaStrip : Ind City ; --- A dependency of the UnitedKingdom -fun Anguilla : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of AvneiHefetz in Israel. + fun AvneiHefetzIsrael : Ind City ; + -- The City of Ayacucho in Peru. + fun AyacuchoPeru : Ind City ; --- The City of Ankara in Turkey. -fun AnkaraTurkey : Ind City ; + -- The City of Azor in Israel. + fun AzorIsrael : Ind City ; + -- The City of BKaot in WestBank. + fun BKaotWestBank : Ind City ; --- The City of Antalya in Turkey. -fun AntalyaTurkey : Ind City ; + -- The City of BadVilbel in Germany. + fun BadVilbelGermany : Ind City ; + -- The City of Baghdad in Iraq. + fun BaghdadIraq : Ind City ; -fun Antarctica : Ind GeopoliticalArea ; + -- The City of Bagre in Colombia. + fun BagreColombia : Ind City ; --- The City of Antioquia in Colombia. -fun AntioquiaColombia : Ind City ; + -- The City of Bahawalpur in Pakistan. + fun BahawalpurPakistan : Ind City ; + -- The City of BakaAlGarbiyeh in Israel. + fun BakaAlGarbiyehIsrael : Ind City ; --- The City of Antwerp in Belgium. -fun AntwerpBelgium : Ind City ; + -- A dependency of the UnitedStates + fun BakerIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of BakkaAlSharkiya in WestBank. + fun BakkaAlSharkiyaWestBank : Ind City ; --- The City of Apumirac in Peru. -fun ApumiracPeru : Ind City ; + -- The City of Baku in Azerbaijan. + fun BakuAzerbaijan : Ind City ; + -- The City of Bale in Ethiopia. + fun BaleEthiopia : Ind City ; --- The City of Apure in Venezuela. -fun ApureVenezuela : Ind City ; + -- The largest City in Maryland. + fun BaltimoreMaryland : Ind AmericanCity ; + -- The City of Banbridge in NorthernIreland. + fun BanbridgeNorthernIreland : Ind City ; --- The City of Arauca in Colombia. -fun AraucaColombia : Ind City ; + -- The City of Bangkok in Thailand. + fun BangkokThailand : Ind City ; + -- The City of Bangor in NorthernIreland. + fun BangorNorthernIreland : Ind City ; --- The City of Argun in Russia. -fun ArgunRussia : Ind City ; + -- The City of Bangui in CentralAfricanRepublic. + fun BanguiCentralAfricanRepublic : Ind City ; + -- The City of Barcelona in Spain. + fun BarcelonaSpain : Ind City ; --- The City of Ariel in WestBank. -fun ArielWestBank : Ind City ; + -- The City of Barkeo in Cambodia. + fun BarkeoCambodia : Ind City ; + -- The City of Barrancabermeja in Colombia. + fun BarrancabermejaColombia : Ind City ; --- A state in the southwestern UnitedStates that --- borders on Mexico. -fun Arizona : Ind AmericanState ; + -- The City of Basra in Israel. + fun BasraIsrael : Ind City ; + + -- A dependency of France + fun BassasDaIndia : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of BatYam in Israel. + fun BatYamIsrael : Ind City ; --- A state in the southeastern UnitedStates that was --- part of the Confederacy. -fun Arkansas : Ind AmericanState ; + -- The City of Batman in Turkey. + fun BatmanTurkey : Ind City ; + -- The City of BeErSheva in Israel. + fun BeErShevaIsrael : Ind City ; --- The City of Armagh in NorthernIreland. -fun ArmaghNorthernIreland : Ind City ; + -- The City of Beasain in Spain. + fun BeasainSpain : Ind City ; + -- The City of Beirut in Lebanon. + fun BeirutLebanon : Ind City ; --- A dependency of the Netherlands -fun Aruba : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of BeitEl in WestBank. + fun BeitElWestBank : Ind City ; + -- The City of BeitHaggai in WestBank. + fun BeitHaggaiWestBank : Ind City ; --- The City of Arzew in Algeria. -fun ArzewAlgeria : Ind City ; + -- The City of BeitHanina in WestBank. + fun BeitHaninaWestBank : Ind City ; + -- The City of BeitSahur in WestBank. + fun BeitSahurWestBank : Ind City ; --- The City of Ashdod in Israel. -fun AshdodIsrael : Ind City ; + -- The City of BeitSheAn in Israel. + fun BeitSheAnIsrael : Ind City ; + -- The City of BeitShemesh in Israel. + fun BeitShemeshIsrael : Ind City ; --- A dependency of Australia -fun AshmoreAndCartierIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Beledweyne in Somalia. + fun BeledweyneSomalia : Ind City ; + -- The City of Belfast in NorthernIreland. + fun BelfastNorthernIreland : Ind City ; --- The City of Askelon in Israel. -fun AskelonIsrael : Ind City ; + -- The City of Belgrade in SerbiaAndMontenegro. + fun BelgradeSerbiaAndMontenegro : Ind City ; + -- The City of Berlin in Germany. BerlinGermany The capital of Germany and the largest + -- City of the country. + fun BerlinGermany : Ind EuropeanCity ; --- The City of Asmara in Eritrea. -fun AsmaraEritrea : Ind City ; + -- A dependency of the UnitedKingdom + fun Bermuda : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The capital of Switzerland. + fun BernSwitzerland : Ind EuropeanCity ; --- The City of Assam in India. -fun AssamIndia : Ind City ; + -- The City of BetLeHiyeh in GazaStrip. + fun BetLeHiyehGazaStrip : Ind City ; + fun BetLidJunctionIsrael : Ind GeographicArea ; --- The City of Aswan in Egypt. -fun AswanEgypt : Ind City ; + -- The City of BethEl in Israel. + fun BethElIsrael : Ind City ; + -- The City of Bethlehem in WestBank. + fun BethlehemWestBank : Ind City ; --- The City of Asyut in Egypt. -fun AsyutEgypt : Ind City ; + -- The City of Bidya in WestBank. + fun BidyaWestBank : Ind City ; + -- The City of Bilbao in Spain. + fun BilbaoSpain : Ind City ; --- The City of Athens in Greece. -fun AthensGreece : Ind City ; + -- The City of Billabona in Spain. + fun BillabonaSpain : Ind City ; + -- The City of Binyamina in Israel. + fun BinyaminaIsrael : Ind City ; --- The largest City in Georgia. -fun AtlantaGeorgia : Ind AmericanCity ; + -- The City of Bishkek in Kyrgyzstan. + fun BishkekKyrgyzstan : Ind City ; + -- The City of BneiAyish in Israel. + fun BneiAyishIsrael : Ind City ; --- The City of Atrush in Iraq. -fun AtrushIraq : Ind City ; + -- The City of Bogota in Colombia. + fun BogotaColombia : Ind City ; + -- The City of Bologna in Italy. + fun BolognaItaly : Ind City ; --- The City of Atzmona in GazaStrip. -fun AtzmonaGazaStrip : Ind City ; + -- The City of Bonn in Germany. + fun BonnGermany : Ind City ; + fun BosphorousStraitsTurkey : Ind GeographicArea ; --- The City of AvneiHefetz in Israel. -fun AvneiHefetzIsrael : Ind City ; + -- The largest City in Massachusetts. + fun BostonMassachusetts : Ind AmericanCity ; + -- The City of Bouira in Algeria. + fun BouiraAlgeria : Ind City ; --- The City of Ayacucho in Peru. -fun AyacuchoPeru : Ind City ; + -- A dependency of Norway + fun BouvetIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of BouzeGuene in Algeria. + fun BouzeGueneAlgeria : Ind City ; --- The City of Azor in Israel. -fun AzorIsrael : Ind City ; + -- A dependency of the UnitedKingdom + fun BritishIndianOceanTerritory : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A dependency of the UnitedKingdom + fun BritishVirginIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of BKaot in WestBank. -fun BKaotWestBank : Ind City ; + -- The City of Brussels in Belgium. + fun BrusselsBelgium : Ind City ; + -- The City of Bucaramanga in Colombia. + fun BucaramangaColombia : Ind City ; --- The City of BadVilbel in Germany. -fun BadVilbelGermany : Ind City ; + -- The City of Bucharest in India. + fun BucharestIndia : Ind City ; + -- The City of BuenosAires in Argentina. + fun BuenosAiresArgentina : Ind City ; --- The City of Baghdad in Iraq. -fun BaghdadIraq : Ind City ; + -- The City of Buinaksk in Russia. + fun BuinakskRussia : Ind City ; + fun BwindiforestUganda : Ind GeographicArea ; --- The City of Bagre in Colombia. -fun BagreColombia : Ind City ; + -- The City of Cabinda in Angola. + fun CabindaAngola : Ind City ; + -- The City of Caglayan in Turkey. + fun CaglayanTurkey : Ind City ; --- The City of Bahawalpur in Pakistan. -fun BahawalpurPakistan : Ind City ; + -- The City of Cairo in Egypt. + fun CairoEgypt : Ind City ; + -- The City of Calcutta in India. + fun CalcuttaIndia : Ind City ; --- The City of BakaAlGarbiyeh in Israel. -fun BakaAlGarbiyehIsrael : Ind City ; + -- The City of Cali in Colombia. + fun CaliColombia : Ind City ; + -- The AmericanState with the highest population. + fun California : Ind AmericanState ; --- A dependency of the UnitedStates -fun BakerIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of CampZama in Japan. + fun CampZamaJapan : Ind City ; + -- The City of Cankiri in Turkey. + fun CankiriTurkey : Ind City ; --- The City of BakkaAlSharkiya in WestBank. -fun BakkaAlSharkiyaWestBank : Ind City ; + -- The City of CapeTown in SouthAfrica. + fun CapeTownSouthAfrica : Ind City ; + fun CaritasPolandChechnya : Ind GeographicArea ; --- The City of Baku in Azerbaijan. -fun BakuAzerbaijan : Ind City ; + -- The City of Carmel in Israel. + fun CarmelIsrael : Ind City ; + -- The City of CarmenDeBolivar in Colombia. + fun CarmenDeBolivarColombia : Ind City ; --- The City of Bale in Ethiopia. -fun BaleEthiopia : Ind City ; + -- The City of Carrejon in Colombia. + fun CarrejonColombia : Ind City ; + -- A dependency of the UnitedKingdom + fun CaymanIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The largest City in Maryland. -fun BaltimoreMaryland : Ind AmericanCity ; + -- The City of Chaman in Pakistan. + fun ChamanPakistan : Ind City ; + -- The City of ChararESharif in India. + fun ChararESharifIndia : Ind City ; --- The City of Banbridge in NorthernIreland. -fun BanbridgeNorthernIreland : Ind City ; + -- The City of Charsaada in Pakistan. + fun CharsaadaPakistan : Ind City ; + -- The Nation of Chechnya. + fun Chechnya : Ind Nation ; --- The City of Bangkok in Thailand. -fun BangkokThailand : Ind City ; + -- The City of ChernoRechye in Russia. + fun ChernoRechyeRussia : Ind City ; + -- Often referred to as the second city, + -- ChicagoUnitedStates is the largest city in the midwestern United States. + fun ChicagoUnitedStates : Ind AmericanCity ; --- The City of Bangor in NorthernIreland. -fun BangorNorthernIreland : Ind City ; + -- The City of Chisimayu in Somalia. + fun ChisimayuSomalia : Ind City ; + -- The City of Chittagong in Bangladesh. + fun ChittagongBangladesh : Ind City ; --- The City of Bangui in CentralAfricanRepublic. -fun BanguiCentralAfricanRepublic : Ind City ; + -- The City of Choba in Angola. + fun ChobaAngola : Ind City ; + -- The City of Choco in Colombia. + fun ChocoColombia : Ind City ; --- The City of Barcelona in Spain. -fun BarcelonaSpain : Ind City ; + -- The City of ChorrosQuero in Venezuela. + fun ChorrosQueroVenezuela : Ind City ; + -- A dependency of Australia + fun ChristmasIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Barkeo in Cambodia. -fun BarkeoCambodia : Ind City ; + fun ClarkAirbasePhilippines : Ind GeographicArea ; + -- Bordering Lake Erie, ClevelandOhio is + -- the largest City in Ohio. + fun ClevelandOhio : Ind AmericanCity ; --- The City of Barrancabermeja in Colombia. -fun BarrancabermejaColombia : Ind City ; + -- A dependency of France + fun ClippertonIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A dependency of Australia + fun CocosKeelingIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Basra in Israel. -fun BasraIsrael : Ind City ; + -- The City of Coimbatore in India. + fun CoimbatoreIndia : Ind City ; + -- The City of Cologne in Germany. + fun CologneGermany : Ind City ; --- A dependency of France -fun BassasDaIndia : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of ColombiaCity in Colombia. + fun ColombiaCityColombia : Ind City ; + -- The City of Colombia in Panama. + fun ColombiaPanama : Ind City ; --- The City of BatYam in Israel. -fun BatYamIsrael : Ind City ; + -- The City of Colombo in SriLanka. + fun ColomboSriLanka : Ind City ; + -- A large western state in the UnitedStates. + fun Colorado : Ind AmericanState ; --- The City of Batman in Turkey. -fun BatmanTurkey : Ind City ; + -- The capital of Ohio, located in the middle of the state. + fun ColumbusOhio : Ind AmericanCity ; + -- The City of Comayagua in Honduras. + fun ComayaguaHonduras : Ind City ; --- The City of BeErSheva in Israel. -fun BeErShevaIsrael : Ind City ; + -- A state in NewEngland, one of the original thirteen colonies. + fun Connecticut : Ind AmericanState ; + -- A dependency of NewZealand + fun CookIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Beasain in Spain. -fun BeasainSpain : Ind City ; + -- The City of CopacaBana in Cuba. + fun CopacaBanaCuba : Ind City ; + -- The City of Copenhagen in Denmark. CopenhagenDenmark The capital of Denmark and the largest + -- City of the country. + fun CopenhagenDenmark : Ind EuropeanCity ; --- The City of Beirut in Lebanon. -fun BeirutLebanon : Ind City ; + -- A dependency of Australia + fun CoralSeaIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Corsica in France. + fun CorsicaFrance : Ind City ; --- The City of BeitEl in WestBank. -fun BeitElWestBank : Ind City ; + -- The City of Corte in France. + fun CorteFrance : Ind City ; + -- The City of Corum in Turkey. + fun CorumTurkey : Ind City ; --- The City of BeitHaggai in WestBank. -fun BeitHaggaiWestBank : Ind City ; + -- The City of CundiNamarca in Colombia. + fun CundiNamarcaColombia : Ind City ; + -- The City of Cupiagua in Colombia. + fun CupiaguaColombia : Ind City ; --- The City of BeitHanina in WestBank. -fun BeitHaninaWestBank : Ind City ; + -- The City of Cuzco in Peru. + fun CuzcoPeru : Ind City ; + -- The former eastern bloc nation. It is currently + -- divided into two independent Nations, the Czech Republic and Slovakia. + fun Czechoslovakia : Ind EuropeanNation ; --- The City of BeitSahur in WestBank. -fun BeitSahurWestBank : Ind City ; + -- The City of Dagestan in Russia. + fun DagestanRussia : Ind City ; + -- The City of Dahuk in Iraq. + fun DahukIraq : Ind City ; --- The City of BeitSheAn in Israel. -fun BeitSheAnIsrael : Ind City ; + -- A large City in northeastern Texas. + fun DallasTexas : Ind AmericanCity ; + fun DangDistrictNepal : Ind GeographicArea ; --- The City of BeitShemesh in Israel. -fun BeitShemeshIsrael : Ind City ; + -- The City of DarEsSalaAm in Tanzania. + fun DarEsSalaAmTanzania : Ind City ; + -- The City of Darvaz in Tajikistan. + fun DarvazTajikistan : Ind City ; --- The City of Beledweyne in Somalia. -fun BeledweyneSomalia : Ind City ; + -- The City of Deba in Spain. + fun DebaSpain : Ind City ; + -- A state in NewEngland, one of the original thirteen colonies. + fun Delaware : Ind AmericanState ; --- The City of Belfast in NorthernIreland. -fun BelfastNorthernIreland : Ind City ; + -- The City of Delhi in India. + fun DelhiIndia : Ind City ; + -- The Nation of DemocraticRepublicOfTheCongo. + fun DemocraticRepublicOfTheCongo : Ind Nation ; --- The City of Belgrade in SerbiaAndMontenegro. -fun BelgradeSerbiaAndMontenegro : Ind City ; + -- The capital and largest City in Colorado. + fun DenverColorado : Ind AmericanCity ; + -- The largest City in Michigan. + fun DetroitMichigan : Ind AmericanCity ; --- The City of Berlin in Germany. BerlinGermany The capital of Germany and the largest --- City of the country. -fun BerlinGermany : Ind EuropeanCity ; + -- The City of Dhahran in SaudiArabia. + fun DhahranSaudiArabia : Ind City ; + -- The City of Dhaka in Bangladesh. + fun DhakaBangladesh : Ind City ; --- A dependency of the UnitedKingdom -fun Bermuda : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Dinan in France. + fun DinanFrance : Ind City ; + -- The City of DirNaballah in WestBank. + fun DirNaballahWestBank : Ind City ; --- The capital of Switzerland. -fun BernSwitzerland : Ind EuropeanCity ; + -- The City of DireDawa in Ethiopia. + fun DireDawaEthiopia : Ind City ; + fun DistrictOfMansehraPakistan : Ind GeographicArea ; --- The City of BetLeHiyeh in GazaStrip. -fun BetLeHiyehGazaStrip : Ind City ; + -- The City of Djakashari in RepublicOfGeorgia. + fun DjakashariGeorgia : Ind City ; + -- The City of Djerba in Tunisia. + fun DjerbaTunisia : Ind City ; -fun BetLidJunctionIsrael : Ind GeographicArea ; + -- The City of Doda in India. + fun DodaIndia : Ind City ; --- The City of BethEl in Israel. -fun BethElIsrael : Ind City ; + -- The City of Dortmund in Germany. + fun DortmundGermany : Ind City ; + -- The City of Dublin in Ireland. + fun DublinIreland : Ind City ; --- The City of Bethlehem in WestBank. -fun BethlehemWestBank : Ind City ; + -- The City of Duesseldorf in Germany. + fun DuesseldorfGermany : Ind City ; + -- The City of Dugit in GazaStrip. + fun DugitGazaStrip : Ind City ; --- The City of Bidya in WestBank. -fun BidyaWestBank : Ind City ; + -- The City of Durango in Spain. + fun DurangoSpain : Ind City ; + fun DushanbeAirportTajikistan : Ind GeographicArea ; --- The City of Bilbao in Spain. -fun BilbaoSpain : Ind City ; + -- The City of DushanbeGarm in Tajikistan. + fun DushanbeGarmTajikistan : Ind City ; + -- The City of Dushanbe in Tajikistan. + fun DushanbeTajikistan : Ind City ; --- The City of Billabona in Spain. -fun BillabonaSpain : Ind City ; + -- The City of EastJerusalem in Israel. + fun EastJerusalemIsrael : Ind City ; + -- The Nation of EastTimor. + fun EastTimor : Ind Nation ; --- The City of Binyamina in Israel. -fun BinyaminaIsrael : Ind City ; + -- The City of Efrat in WestBank. + fun EfratWestBank : Ind City ; + -- The City of Eilat in Israel. + fun EilatIsrael : Ind City ; --- The City of Bishkek in Kyrgyzstan. -fun BishkekKyrgyzstan : Ind City ; + -- The City of Einav in WestBank. + fun EinavWestBank : Ind City ; + -- The City of ElAzzariya in the WestBank. + fun ElAzzariyaWestBank : Ind City ; --- The City of BneiAyish in Israel. -fun BneiAyishIsrael : Ind City ; + -- The City of ElBagre in Colombia. + fun ElBagreColombia : Ind City ; + -- The City of ElBireh in WestBank. + fun ElBirehWestBank : Ind City ; --- The City of Bogota in Colombia. -fun BogotaColombia : Ind City ; + -- The City of ElPlayon in Colombia. + fun ElPlayonColombia : Ind City ; + -- The City of ElRipialApure in Venezuela. + fun ElRipialApureVenezuela : Ind City ; --- The City of Bologna in Italy. -fun BolognaItaly : Ind City ; + -- The City of Elayo in Somalia. + fun ElayoSomalia : Ind City ; + -- The City of EleiSinai in GazaStrip. + fun EleiSinaiGazaStrip : Ind City ; --- The City of Bonn in Germany. -fun BonnGermany : Ind City ; + -- The City of Emmanuel in WestBank. + fun EmmanuelWestBank : Ind City ; + -- The City of Erez in GazaStrip. + fun ErezGazaStrip : Ind City ; -fun BosphorousStraitsTurkey : Ind GeographicArea ; + -- A dependency of France + fun EuropaIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; --- The largest City in Massachusetts. -fun BostonMassachusetts : Ind AmericanCity ; + -- The second smallest Continent. + fun Europe : Ind Continent ; + -- The class of cities that are in Europe. + fun EuropeanCity : Class ; + fun EuropeanCity_Class : SubClass EuropeanCity City ; --- The City of Bouira in Algeria. -fun BouiraAlgeria : Ind City ; + -- A dependency of the UnitedKingdom + fun FalklandIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The largest City in NorthDakota. + fun FargoNorthDakota : Ind AmericanCity ; --- A dependency of Norway -fun BouvetIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- A dependency of Denmark + fun FaroeIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + fun FethiyeAndMarmarisTurkey : Ind GeographicArea ; --- The City of BouzeGuene in Algeria. -fun BouzeGueneAlgeria : Ind City ; + -- A state in the southeastern UnitedStates between + -- the GulfOfMexico and the AtlanticOcean. + fun Florida : Ind AmericanState ; + fun FloridaUnitedStates : Ind GeographicArea ; --- A dependency of the UnitedKingdom -fun BritishIndianOceanTerritory : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Formeque in Colombia. + fun FormequeColombia : Ind City ; + -- The City of Frankfurt in Germany. + fun FrankfurtGermany : Ind City ; --- A dependency of the UnitedKingdom -fun BritishVirginIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of FrenchHill in Israel. + fun FrenchHillIsrael : Ind City ; + -- A dependency of France + fun FrenchPolynesia : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Brussels in Belgium. -fun BrusselsBelgium : Ind City ; + -- A dependency of France + fun FrenchSouthernAndAntarcticLands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Fuengirola in Spain. + fun FuengirolaSpain : Ind City ; --- The City of Bucaramanga in Colombia. -fun BucaramangaColombia : Ind City ; + -- The City of Fusagasusa in Colombia. + fun FusagasusaColombia : Ind City ; + -- The City of GaliAbkhazia in RepublicOfGeorgia. + fun GaliAbkhaziaGeorgia : Ind City ; --- The City of Bucharest in India. -fun BucharestIndia : Ind City ; + -- The City of Ganim in WestBank. + fun GanimWestBank : Ind City ; + -- The City of Gashuri in Israel. + fun GashuriIsrael : Ind City ; --- The City of BuenosAires in Argentina. -fun BuenosAiresArgentina : Ind City ; + -- A terroritory occupied by Israel. + fun GazaStrip : Ind (both LandArea (both Nation (both GeographicArea GeopoliticalArea))) ; + -- The City of GeneralSantos in Philippines. + fun GeneralSantosPhilippines : Ind City ; --- The City of Buinaksk in Russia. -fun BuinakskRussia : Ind City ; + -- The City of Geneva in Switzerland. + fun GenevaSwitzerland : Ind City ; + fun Georgia_US : Ind AmericanState ; -fun BwindiforestUganda : Ind GeographicArea ; + -- The City of Getxo in Spain. + fun GetxoSpain : Ind City ; --- The City of Cabinda in Angola. -fun CabindaAngola : Ind City ; + -- The City of Ghalebieh in Iraq. + fun GhalebiehIraq : Ind City ; + -- The City of Ghaziabad in India. + fun GhaziabadIndia : Ind City ; --- The City of Caglayan in Turkey. -fun CaglayanTurkey : Ind City ; + fun GhaziabadUttarPradeshIndia : Ind GeographicArea ; + -- A dependency of the UnitedKingdom + fun Gibraltar : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Cairo in Egypt. -fun CairoEgypt : Ind City ; + -- The City of Gilo in Israel. + fun GiloIsrael : Ind City ; + -- The City of GivatZeEv in WestBank. + fun GivatZeEvWestBank : Ind City ; --- The City of Calcutta in India. -fun CalcuttaIndia : Ind City ; + -- The City of Giza in Egypt. + fun GizaEgypt : Ind City ; + -- A dependency of France + fun GloriosoIslands : Ind (both Island DependencyOrSpecialSovereigntyArea) ; --- The City of Cali in Colombia. -fun CaliColombia : Ind City ; + -- The City of Gonegalle in SriLanka. + fun GonegalleSriLanka : Ind City ; + -- The City of Granada in Spain. + fun GranadaSpain : Ind City ; --- The AmericanState with the highest population. -fun California : Ind AmericanState ; + -- The City of Graz in Austria. + fun GrazAustria : Ind City ; + -- A dependency of Denmark + fun Greenland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of CampZama in Japan. -fun CampZamaJapan : Ind City ; + -- The City of Grozny in Chechnya. + fun GroznyChechnya : Ind City ; + -- A dependency of France + fun Guadeloupe : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Cankiri in Turkey. -fun CankiriTurkey : Ind City ; + -- A dependency of the UnitedStates Guam An Island in the PacificOcean that is a + -- protectorate of the UnitedStates. + fun Guam : Ind (both DependencyOrSpecialSovereigntyArea Island) ; + -- A dependency of the UnitedKingdom + fun Guernsey : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of CapeTown in SouthAfrica. -fun CapeTownSouthAfrica : Ind City ; + -- The City of Guilin in China. + fun GuilinChina : Ind City ; + -- The Nation of GuineaBissau. + fun GuineaBissau : Ind Nation ; -fun CaritasPolandChechnya : Ind GeographicArea ; + -- The City of Gujarat in India. + fun GujaratIndia : Ind City ; --- The City of Carmel in Israel. -fun CarmelIsrael : Ind City ; + -- The City of GushEtzion in WestBank. + fun GushEtzionWestBank : Ind City ; + fun GushKatifGazaStrip : Ind GeographicArea ; --- The City of CarmenDeBolivar in Colombia. -fun CarmenDeBolivarColombia : Ind City ; + -- The City of GushKhatif in GazaStrip. + fun GushKhatifGazaStrip : Ind City ; + -- The City of Hadera in Israel. + fun HaderaIsrael : Ind City ; --- The City of Carrejon in Colombia. -fun CarrejonColombia : Ind City ; + -- The City of Haifa in Israel. + fun HaifaIsrael : Ind City ; + -- The City of Hamburg in Germany. + fun HamburgGermany : Ind City ; --- A dependency of the UnitedKingdom -fun CaymanIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of HamisMiliyana in Algeria. + fun HamisMiliyanaAlgeria : Ind City ; + -- The City of Hamra in WestBank. + fun HamraWestBank : Ind City ; --- The City of Chaman in Pakistan. -fun ChamanPakistan : Ind City ; + -- The City of Hannover in Germany. + fun HannoverGermany : Ind City ; + -- The City of HarBracha in WestBank. + fun HarBrachaWestBank : Ind City ; --- The City of ChararESharif in India. -fun ChararESharifIndia : Ind City ; + -- The City of Harer in Ethiopia. + fun HarerEthiopia : Ind City ; + -- The City of Havana in Cuba. + fun HavanaCuba : Ind City ; --- The City of Charsaada in Pakistan. -fun CharsaadaPakistan : Ind City ; + -- An AmericanState that consists of several Islands in + -- the central PacificOcean. + fun Hawaii : Ind AmericanState ; + -- The City of Hawana in Iraq. + fun HawanaIraq : Ind City ; --- The Nation of Chechnya. -fun Chechnya : Ind Nation ; + -- A dependency of Australia + fun HeardIslandAndMcDonaldIslands : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of Heart in Afghanistan. + fun HeartAfghanistan : Ind City ; --- The City of ChernoRechye in Russia. -fun ChernoRechyeRussia : Ind City ; + -- The City of Hebron in WestBank. + fun HebronWestBank : Ind City ; + -- The City of Hermesh in Israel. + fun HermeshIsrael : Ind City ; --- Often referred to as the second city, --- ChicagoUnitedStates is the largest city in the midwestern United States. -fun ChicagoUnitedStates : Ind AmericanCity ; + -- The City of Hernani in Spain. + fun HernaniSpain : Ind City ; + -- The City of Herzliya in Israel. + fun HerzliyaIsrael : Ind City ; --- The City of Chisimayu in Somalia. -fun ChisimayuSomalia : Ind City ; + -- The City of Hilversum in Netherlands. + fun HilversumNetherlands : Ind City ; + -- The City of Hizma in WestBank. + fun HizmaWestBank : Ind City ; --- The City of Chittagong in Bangladesh. -fun ChittagongBangladesh : Ind City ; + fun HodayaJunctionIsrael : Ind GeographicArea ; + fun HolonJunctionIsrael : Ind GeographicArea ; --- The City of Choba in Angola. -fun ChobaAngola : Ind City ; + -- A dependency of China + fun HongKong : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The capital and largest City in Hawaii. + fun HonoluluHawaii : Ind AmericanCity ; --- The City of Choco in Colombia. -fun ChocoColombia : Ind City ; + -- Located in southeastern Texas, the largest City in the state. + fun HoustonTexas : Ind AmericanCity ; + -- A dependency of the UnitedStates + fun HowlandIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of ChorrosQuero in Venezuela. -fun ChorrosQueroVenezuela : Ind City ; + -- The City of Huallga in Peru. + fun HuallgaPeru : Ind City ; + -- A large River in NewYorkState. + fun HudsonRiver : Ind River ; --- A dependency of Australia -fun ChristmasIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Hurghada in Egypt. + fun HurghadaEgypt : Ind City ; + -- The City of Hyderabad in Pakistan. + fun HyderabadPakistan : Ind City ; -fun ClarkAirbasePhilippines : Ind GeographicArea ; + -- The City of Ibsril in Iraq. + fun IbsrilIraq : Ind City ; --- Bordering Lake Erie, ClevelandOhio is --- the largest City in Ohio. -fun ClevelandOhio : Ind AmericanCity ; + -- A state known for potatoes in the northwestern UnitedStates. + fun Idaho : Ind AmericanState ; + -- A populous and industrial state in the midwestern UnitedStates. + fun Illinois : Ind AmericanState ; --- A dependency of France -fun ClippertonIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + fun IncirlikAirbaseTurkey : Ind GeographicArea ; + -- A state in the mideastern UnitedStates. + fun Indiana : Ind AmericanState ; --- A dependency of Australia -fun CocosKeelingIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A state in the midwestern UnitedStates. + fun Iowa : Ind AmericanState ; + -- The City of Ipil in Philippines. + fun IpilPhilippines : Ind City ; --- The City of Coimbatore in India. -fun CoimbatoreIndia : Ind City ; + -- The City of Irbil in Iraq. + fun IrbilIraq : Ind City ; + -- The City of Islamabad in Pakistan. + fun IslamabadPakistan : Ind City ; --- The City of Cologne in Germany. -fun CologneGermany : Ind City ; + fun IslandOfBaliIndonesia : Ind GeographicArea ; + -- A dependency of the UnitedKingdom + fun IsleOfMan : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of ColombiaCity in Colombia. -fun ColombiaCityColombia : Ind City ; + -- The City of Istanbul in Turkey. + fun IstanbulTurkey : Ind City ; + -- The City of Itamar in WestBank. + fun ItamarWestBank : Ind City ; --- The City of Colombia in Panama. -fun ColombiaPanama : Ind City ; + -- The City of Izmir in Turkey. + fun IzmirTurkey : Ind City ; + -- The City of JMain in WestBank. + fun JMainWestBank : Ind City ; --- The City of Colombo in SriLanka. -fun ColomboSriLanka : Ind City ; + -- The City of Jaffa in Israel. + fun JaffaIsrael : Ind City ; + -- The City of Jaffna in SriLanka. + fun JaffnaSriLanka : Ind City ; --- A large western state in the UnitedStates. -fun Colorado : Ind AmericanState ; + -- The City of Jakarta in Indonesia. + fun JakartaIndonesia : Ind City ; + -- The City of Jalah in India. + fun JalahIndia : Ind City ; --- The capital of Ohio, located in the middle --- of the state. -fun ColumbusOhio : Ind AmericanCity ; + fun JalpaiguriRailwayStationIndia : Ind GeographicArea ; + -- The City of Jammu in India. + fun JammuIndia : Ind City ; --- The City of Comayagua in Honduras. -fun ComayaguaHonduras : Ind City ; + -- A dependency of Norway + fun JanMayenIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Jangas in Peru. + fun JangasPeru : Ind City ; --- A state in NewEngland, one of the original thirteen --- colonies. -fun Connecticut : Ind AmericanState ; + -- A dependency of the UnitedStates + fun JarvisIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Jenin in WestBank. + fun JeninWestBank : Ind City ; --- A dependency of NewZealand -fun CookIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A dependency of the UnitedKingdom + fun Jersey : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of JerusalemHills in Israel. + fun JerusalemHillsIsrael : Ind City ; --- The City of CopacaBana in Cuba. -fun CopacaBanaCuba : Ind City ; + -- The capital and largest City in Israel. + -- It is regarded as a holy city by Muslims, Jews, and Christians. + fun JerusalemIsrael : Ind City ; + -- The City of JerusalemOldCity in Israel. + fun JerusalemOldCityIsrael : Ind City ; --- The City of Copenhagen in Denmark. CopenhagenDenmark The capital of Denmark and the largest --- City of the country. -fun CopenhagenDenmark : Ind EuropeanCity ; + -- The City of Johannesburg in SouthAfrica. + fun JohannesburgSouthAfrica : Ind City ; + -- A dependency of the UnitedStates + fun JohnstonAtoll : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- A dependency of Australia -fun CoralSeaIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Jolo in Philippines. + fun JoloPhilippines : Ind City ; + -- A dependency of France + fun JuanDeNovaIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; --- The City of Corsica in France. -fun CorsicaFrance : Ind City ; + -- The City of Jubial in SaudiArabia. + fun JubialSaudiArabia : Ind City ; + -- The City of Jullundur in India. + fun JullundurIndia : Ind City ; --- The City of Corte in France. -fun CorteFrance : Ind City ; + -- The City of Kabacan in Philippines. + fun KabacanPhilippines : Ind City ; + -- The City of Kabul in Afghanistan. + fun KabulAfghanistan : Ind City ; --- The City of Corum in Turkey. -fun CorumTurkey : Ind City ; + -- The City of KafrAkab in WestBank. + fun KafrAkabWestBank : Ind City ; + -- The City of KafrIdna in WestBank. + fun KafrIdnaWestBank : Ind City ; --- The City of CundiNamarca in Colombia. -fun CundiNamarcaColombia : Ind City ; + -- The City of Kalkilya in WestBank. + fun KalkilyaWestBank : Ind City ; + -- The City of Kalmunai in SriLanka. + fun KalmunaiSriLanka : Ind City ; --- The City of Cupiagua in Colombia. -fun CupiaguaColombia : Ind City ; + -- The City of Kampala in Uganda. + fun KampalaUganda : Ind City ; + -- The City of Kandy in SriLanka. + fun KandySriLanka : Ind City ; --- The City of Cuzco in Peru. -fun CuzcoPeru : Ind City ; + -- The City of Kanihama in India. + fun KanihamaIndia : Ind City ; + -- A state in the midwestern UnitedStates. + fun Kansas : Ind AmericanState ; --- The former eastern bloc nation. It is currently --- divided into two independent Nations, the Czech Republic and Slovakia. -fun Czechoslovakia : Ind EuropeanNation ; + -- A large City at the western edge of Missouri. + fun KansasCityMissouri : Ind AmericanCity ; + -- The City of Karachi in Pakistan. + fun KarachiPakistan : Ind City ; --- The City of Dagestan in Russia. -fun DagestanRussia : Ind City ; + -- The City of Karkur in Israel. + fun KarkurIsrael : Ind City ; + -- The City of KarmeiTzur in WestBank. + fun KarmeiTzurWestBank : Ind City ; --- The City of Dahuk in Iraq. -fun DahukIraq : Ind City ; + -- The City of KarneiShomron in WestBank. + fun KarneiShomronWestBank : Ind City ; + -- The City of Kashmir in India. + fun KashmirIndia : Ind City ; --- A large City in northeastern Texas. -fun DallasTexas : Ind AmericanCity ; + fun KatmanduAirportNepal : Ind GeographicArea ; + -- The Nation of Kazakhstan. + fun Kazakhstan : Ind Nation ; -fun DangDistrictNepal : Ind GeographicArea ; + fun KedumimSettlementWestBank : Ind GeographicArea ; --- The City of DarEsSalaAm in Tanzania. -fun DarEsSalaAmTanzania : Ind City ; + -- The City of Kedumim in WestBank. + fun KedumimWestBank : Ind City ; + -- A state in the southeastern UnitedStates. + fun Kentucky : Ind AmericanState ; --- The City of Darvaz in Tajikistan. -fun DarvazTajikistan : Ind City ; + -- The City of KfarBaAneh in Israel. + fun KfarBaAnehIsrael : Ind City ; + -- The City of KfarDarom in GazaStrip. + fun KfarDaromGazaStrip : Ind City ; --- The City of Deba in Spain. -fun DebaSpain : Ind City ; + -- The City of KfarDaromNetzarim in Israel. + fun KfarDaromNetzarimIsrael : Ind City ; + -- The City of KfarHess in Israel. + fun KfarHessIsrael : Ind City ; --- A state in NewEngland, one of the original thirteen --- colonies. -fun Delaware : Ind AmericanState ; + -- The City of KfarSaba in Israel. + fun KfarSabaIsrael : Ind City ; + -- The City of KfarTzurif in WestBank. + fun KfarTzurifWestBank : Ind City ; --- The City of Delhi in India. -fun DelhiIndia : Ind City ; + -- The City of KfarYam in GazaStrip. + fun KfarYamGazaStrip : Ind City ; + -- The City of Khankala in Chechnya. + fun KhankalaChechnya : Ind City ; --- The Nation of DemocraticRepublicOfTheCongo. -fun DemocraticRepublicOfTheCongo : Ind Nation ; + -- The City of Khartoum in Sudan. + fun KhartoumSudan : Ind City ; + -- The City of Khelil in Algeria. + fun KhelilAlgeria : Ind City ; --- The capital and largest City in Colorado. -fun DenverColorado : Ind AmericanCity ; + -- The City of Khobar in SaudiArabia. + fun KhobarSaudiArabia : Ind City ; + -- The City of KibbutzGalEd in Israel. + fun KibbutzGalEdIsrael : Ind City ; --- The largest City in Michigan. -fun DetroitMichigan : Ind AmericanCity ; + -- The City of KibbutzMerav in Israel. + fun KibbutzMeravIsrael : Ind City ; + -- The City of KibbutzSheluhot in Israel. + fun KibbutzSheluhotIsrael : Ind City ; --- The City of Dhahran in SaudiArabia. -fun DhahranSaudiArabia : Ind City ; + -- The City of Kidapawan in Philippines. + fun KidapawanPhilippines : Ind City ; + -- The City of Kigali in Rwanda. + fun KigaliRwanda : Ind City ; --- The City of Dhaka in Bangladesh. -fun DhakaBangladesh : Ind City ; + -- A dependency of the UnitedStates + fun KingmanReef : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Kirikkale in Turkey. + fun KirikkaleTurkey : Ind City ; --- The City of Dinan in France. -fun DinanFrance : Ind City ; + -- The City of KiryatArba in WestBank. + fun KiryatArbaWestBank : Ind City ; + -- The City of KiryatMotzkin in Israel. + fun KiryatMotzkinIsrael : Ind City ; --- The City of DirNaballah in WestBank. -fun DirNaballahWestBank : Ind City ; + -- The City of KiryatNetafim in WestBank. + fun KiryatNetafimWestBank : Ind City ; + -- The City of Kissufim in GazaStrip. + fun KissufimGazaStrip : Ind City ; --- The City of DireDawa in Ethiopia. -fun DireDawaEthiopia : Ind City ; + -- The City of KiursehirBoztep in Turkey. + fun KiursehirBoztepTurkey : Ind City ; + -- The City of Klaiyat in Lebanon. + fun KlaiyatLebanon : Ind City ; -fun DistrictOfMansehraPakistan : Ind GeographicArea ; + -- The City of Kohlan in Yemen. + fun KohlanYemen : Ind City ; --- The City of Djakashari in RepublicOfGeorgia. -fun DjakashariGeorgia : Ind City ; + -- The City of KomsomoLabad in Tajikistan. + fun KomsomoLabadTajikistan : Ind City ; + -- A Peninsula in Asia that separates the Yellow Sea from + -- the Sea of Japan. It is occupied by the nations of North and South Korea. + fun KoreanPeninsula : Ind Peninsula ; --- The City of Djerba in Tunisia. -fun DjerbaTunisia : Ind City ; + -- The City of KuwaitCity in Kuwait. + fun KuwaitCityKuwait : Ind City ; + -- The City of LIleRousse in France. + fun LIleRousseFrance : Ind City ; --- The City of Doda in India. -fun DodaIndia : Ind City ; + -- The City of LaCeiba in Honduras. + fun LaCeibaHonduras : Ind City ; + -- The City of LaGabarra in Venezuela. + fun LaGabarraVenezuela : Ind City ; --- The City of Dortmund in Germany. -fun DortmundGermany : Ind City ; + -- The City of LaGuajira in Colombia. + fun LaGuajiraColombia : Ind City ; + -- The City of LaPaz in Bolivia. + fun LaPazBolivia : Ind City ; --- The City of Dublin in Ireland. -fun DublinIreland : Ind City ; + -- The City of LaVictoria in Venezuela. + fun LaVictoriaVenezuela : Ind City ; + -- The City of Lahore in Pakistan. + fun LahorePakistan : Ind City ; --- The City of Duesseldorf in Germany. -fun DuesseldorfGermany : Ind City ; + -- The City of Larba in Algeria. + fun LarbaAlgeria : Ind City ; + -- The City of Larnaca in Cyprus. + fun LarnacaCyprus : Ind City ; --- The City of Dugit in GazaStrip. -fun DugitGazaStrip : Ind City ; + -- The City of Lasarte in Spain. + fun LasarteSpain : Ind City ; + -- The City of Leiza in Spain. + fun LeizaSpain : Ind City ; --- The City of Durango in Spain. -fun DurangoSpain : Ind City ; + fun LesEucalyptusDistrictAlgeria : Ind GeographicArea ; + -- The City of Libertador in Venezuela. + fun LibertadorVenezuela : Ind City ; -fun DushanbeAirportTajikistan : Ind GeographicArea ; + -- The City of Lice in Turkey. + fun LiceTurkey : Ind City ; --- The City of DushanbeGarm in Tajikistan. -fun DushanbeGarmTajikistan : Ind City ; + -- The City of Lima in Peru. + fun LimaPeru : Ind City ; + -- The City of Lindos in Rhodes. + fun LindosRhodes : Ind City ; --- The City of Dushanbe in Tajikistan. -fun DushanbeTajikistan : Ind City ; + -- The City of Linz in Australia. + fun LinzAustralia : Ind City ; + -- The City of Lockerbie in UnitedKingdom. + fun LockerbieUnitedKingdom : Ind City ; --- The City of EastJerusalem in Israel. -fun EastJerusalemIsrael : Ind City ; + -- The City of Logorno in Spain. + fun LogornoSpain : Ind City ; + -- The City of London in UnitedKingdom. + -- The capital city and the largest city of the UnitedKingdom. + fun LondonUnitedKingdom : Ind EuropeanCity ; --- The Nation of EastTimor. -fun EastTimor : Ind Nation ; + -- The City of Londonberry in NorthernIreland. + fun LondonberryNorthernIreland : Ind City ; + -- A large Island off the coast of NewYorkState. + -- The boroughs of Queens and Brooklyn make up the western end of this Island. + fun LongIsland : Ind Island ; --- The City of Efrat in WestBank. -fun EfratWestBank : Ind City ; + -- The largest City in California. + fun LosAngelesCalifornia : Ind AmericanCity ; + fun LosAngelesInternationalAirportUnitedStates : Ind GeographicArea ; --- The City of Eilat in Israel. -fun EilatIsrael : Ind City ; + -- The City of LosAngeles in UnitedStates. + fun LosAngelesUnitedStates : Ind City ; + -- The City of LosBancos in Venezuela. + fun LosBancosVenezuela : Ind City ; --- The City of Einav in WestBank. -fun EinavWestBank : Ind City ; + fun LosKatiosNationalParkColombia : Ind GeographicArea ; + -- A state in the south_central part of the UnitedStates. + -- It borders on the GulfOfMexico and is known for its bayous and cajun culture. + fun Louisiana : Ind AmericanState ; --- The City of ElAzzariya in the WestBank. -fun ElAzzariyaWestBank : Ind City ; + -- The City of Luanda in Angola. + fun LuandaAngola : Ind City ; + -- The City of Luebeck in Germany. + fun LuebeckGermany : Ind City ; --- The City of ElBagre in Colombia. -fun ElBagreColombia : Ind City ; + -- The City of LundaNorte in Angola. + fun LundaNorteAngola : Ind City ; + -- The City of Luxor in Egypt. + fun LuxorEgypt : Ind City ; --- The City of ElBireh in WestBank. -fun ElBirehWestBank : Ind City ; + -- The City of Lyons in France. + fun LyonsFrance : Ind City ; + -- The City of MaAlehMichmash in WestBank. + fun MaAlehMichmashWestBank : Ind City ; --- The City of ElPlayon in Colombia. -fun ElPlayonColombia : Ind City ; + -- A dependency of China + fun Macau : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Maccabim in Israel. + fun MaccabimIsrael : Ind City ; --- The City of ElRipialApure in Venezuela. -fun ElRipialApureVenezuela : Ind City ; + -- The City of Madhu in SriLanka. + fun MadhuSriLanka : Ind City ; + -- The City of Madras in India. + fun MadrasIndia : Ind City ; --- The City of Elayo in Somalia. -fun ElayoSomalia : Ind City ; + -- The City of Madrid in Spain. + fun MadridSpain : Ind City ; + -- The City of Magdalena in Colombia. + fun MagdalenaColombia : Ind City ; --- The City of EleiSinai in GazaStrip. -fun EleiSinaiGazaStrip : Ind City ; + -- The City of MaidanShar in Afghanistan. + fun MaidanSharAfghanistan : Ind City ; + -- The most northeastern AmericanState. + fun Maine : Ind AmericanState ; --- The City of Emmanuel in WestBank. -fun EmmanuelWestBank : Ind City ; + -- The City of Makhachkala in Russia. + fun MakhachkalaRussia : Ind City ; + -- The City of Malaga in Spain. + fun MalagaSpain : Ind City ; --- The City of Erez in GazaStrip. -fun ErezGazaStrip : Ind City ; + fun MalukkaIslandsIndonesia : Ind GeographicArea ; + -- The City of Managua in Nigeria. + fun ManaguaNigeria : Ind City ; --- A dependency of France -fun EuropaIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of Manama in Bahrain. + fun ManamaBahrain : Ind City ; + -- The largest City in NewHampshire. + fun ManchesterNewHampshire : Ind AmericanCity ; --- The second smallest Continent. -fun Europe : Ind Continent ; + -- The City of Manchester in UnitedKingdom. + fun ManchesterUnitedKingdom : Ind City ; + fun MangalsenAndSanpheBagarNepal : Ind GeographicArea ; --- The class of cities that are in Europe. -fun EuropeanCity : Class ; -fun EuropeanCity_Class : SubClass EuropeanCity City ; + -- The City of Manila in Philippines. + fun ManilaPhilippines : Ind City ; --- A dependency of the UnitedKingdom -fun FalklandIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Maon in Israel. + fun MaonIsrael : Ind City ; + -- The City of Mapourdit in Sudan. + fun MapourditSudan : Ind City ; --- The largest City in NorthDakota. -fun FargoNorthDakota : Ind AmericanCity ; + -- The City of MarSaba in WestBank. + fun MarSabaWestBank : Ind City ; + -- The City of Marawi in Philippines. + fun MarawiPhilippines : Ind City ; --- A dependency of Denmark -fun FaroeIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Mardan in Pakistan. + fun MardanPakistan : Ind City ; + -- The City of Marmaris in Turkey. + fun MarmarisTurkey : Ind City ; -fun FethiyeAndMarmarisTurkey : Ind GeographicArea ; + -- The City of Marseilles in France. + fun MarseillesFrance : Ind City ; --- A state in the southeastern UnitedStates between --- the GulfOfMexico and the AtlanticOcean. -fun Florida : Ind AmericanState ; + -- A dependency of France + fun Martinique : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A state in the eastern UnitedStates that borders on WashingtonDC. + fun Maryland : Ind AmericanState ; -fun FloridaUnitedStates : Ind GeographicArea ; + -- The City of Masha in WestBank. + fun MashaWestBank : Ind City ; --- The City of Formeque in Colombia. -fun FormequeColombia : Ind City ; + -- A northeastern AmericanState. Its largest City is BostonMassachusetts. + fun Massachusetts : Ind AmericanState ; + -- The City of Matsumoto in Japan. + fun MatsumotoJapan : Ind City ; --- The City of Frankfurt in Germany. -fun FrankfurtGermany : Ind City ; + -- The City of Mawdiyah in Yemen. + fun MawdiyahYemen : Ind City ; + -- A dependency of France + fun Mayotte : Ind (both Island DependencyOrSpecialSovereigntyArea) ; --- The City of FrenchHill in Israel. -fun FrenchHillIsrael : Ind City ; + -- The City of MeaShearim in Israel. + fun MeaShearimIsrael : Ind City ; + -- The City of Mecca in SaudiArabia. + fun MeccaSaudiArabia : Ind City ; --- A dependency of France -fun FrenchPolynesia : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Mechora in WestBank. + fun MechoraWestBank : Ind City ; + -- The City of Medan in Indonesia. + fun MedanIndonesia : Ind City ; --- A dependency of France -fun FrenchSouthernAndAntarcticLands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Medellin in Colombia. + fun MedellinColombia : Ind City ; + -- The City of Megido in Israel. + fun MegidoIsrael : Ind City ; --- The City of Fuengirola in Spain. -fun FuengirolaSpain : Ind City ; + -- The City of Mehola in Israel. + fun MeholaIsrael : Ind City ; + -- The City of Mekholah in Israel. + fun MekholahIsrael : Ind City ; --- The City of Fusagasusa in Colombia. -fun FusagasusaColombia : Ind City ; + -- The largest City in Tennessee, located on the MississippiRiver. + fun MemphisTennessee : Ind AmericanCity ; + -- The City of Mersin in Turkey. + fun MersinTurkey : Ind City ; --- The City of GaliAbkhazia in RepublicOfGeorgia. -fun GaliAbkhaziaGeorgia : Ind City ; + -- The City of Meta in Colombia. + fun MetaColombia : Ind City ; + -- The City of Metulla in Israel. + fun MetullaIsrael : Ind City ; --- The City of Ganim in WestBank. -fun GanimWestBank : Ind City ; + -- The City of Metzer in Israel. + fun MetzerIsrael : Ind City ; + -- A populous and industrial state in the midwestern UnitedStates. + fun Michigan : Ind AmericanState ; --- The City of Gashuri in Israel. -fun GashuriIsrael : Ind City ; + -- A dependency of the UnitedStates + fun MidwayIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Milan in Italy. + fun MilanItaly : Ind City ; --- A terroritory occupied by Israel. -fun GazaStrip : Ind (both LandArea (both Nation (both GeographicArea GeopoliticalArea))) ; + -- The City of Mindanao in Philippines. + fun MindanaoPhilippines : Ind City ; + fun MinharotRoadWestBank : Ind GeographicArea ; --- The City of GeneralSantos in Philippines. -fun GeneralSantosPhilippines : Ind City ; + -- The largest City in Minnesota. + fun MinneapolisMinnesota : Ind AmericanCity ; + -- A state in the northern midwest of the UnitedStates. + fun Minnesota : Ind AmericanState ; --- The City of Geneva in Switzerland. -fun GenevaSwitzerland : Ind City ; + -- The City of MiranShah in Pakistan. + fun MiranShahPakistan : Ind City ; + -- A state in the southeastern UnitedStates that borders on the GulfOfMexico. + fun Mississippi : Ind AmericanState ; -fun Georgia_US : Ind AmericanState ; + -- The major River in the UnitedStates. + -- It runs almost the entire width of the UnitedStates, from Minnesota to the GulfOfMexico. + fun MississippiRiver : Ind River ; --- The City of Getxo in Spain. -fun GetxoSpain : Ind City ; + -- A state in the central UnitedStates. + fun Missouri : Ind AmericanState ; + -- The City of Mitu in Colombia. + fun MituColombia : Ind City ; --- The City of Ghalebieh in Iraq. -fun GhalebiehIraq : Ind City ; + -- The City of ModiinIllit in WestBank. + fun ModiinIllitWestBank : Ind City ; + -- The City of Mombassa in Kenya. + fun MombassaKenya : Ind City ; --- The City of Ghaziabad in India. -fun GhaziabadIndia : Ind City ; + -- A state in the northwestern UnitedStates. + fun Montana : Ind AmericanState ; + -- A large City in eastern Canada. + fun MontrealCanada : Ind City ; -fun GhaziabadUttarPradeshIndia : Ind GeographicArea ; + -- A dependency of the UnitedKingdom + fun Montserrat : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- A dependency of the UnitedKingdom -fun Gibraltar : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + fun MoragJunctionGazaStrip : Ind GeographicArea ; + -- The City of Moscow in Russia. MoscowRussia The capital of Russia and the largest + -- City of the country. + fun MoscowRussia : Ind EuropeanCity ; --- The City of Gilo in Israel. -fun GiloIsrael : Ind City ; + -- The City of MoshavHagor in Israel. + fun MoshavHagorIsrael : Ind City ; + -- The City of MoshavTomer in WestBank. + fun MoshavTomerWestBank : Ind City ; --- The City of GivatZeEv in WestBank. -fun GivatZeEvWestBank : Ind City ; + -- The City of MukallahAden in Yemen. + fun MukallahAdenYemen : Ind City ; + -- The City of MunchenGladbach in Germany. + fun MunchenGladbachGermany : Ind City ; --- The City of Giza in Egypt. -fun GizaEgypt : Ind City ; + -- The City of Munster in Germany. + fun MunsterGermany : Ind City ; + -- The City of Murlough in NorthernIreland. + fun MurloughNorthernIreland : Ind City ; --- A dependency of France -fun GloriosoIslands : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of MusMus in Israel. + fun MusMusIsrael : Ind City ; + -- The City of Mutata in Colombia. + fun MutataColombia : Ind City ; --- The City of Gonegalle in SriLanka. -fun GonegalleSriLanka : Ind City ; + -- The City of Muttur in SriLanka. + fun MutturSriLanka : Ind City ; + -- A Nation in southeastern Asia, formerly known as Burma. + fun Myanmar : Ind Nation ; --- The City of Granada in Spain. -fun GranadaSpain : Ind City ; + -- The City of NaAlin in WestBank. + fun NaAlinWestBank : Ind City ; + -- The City of Nablus in WestBank. + fun NablusWestBank : Ind City ; --- The City of Graz in Austria. -fun GrazAustria : Ind City ; + -- The City of NahalOz in GazaStrip. + fun NahalOzGazaStrip : Ind City ; + -- The City of Naharaim in Israel. + fun NaharaimIsrael : Ind City ; --- A dependency of Denmark -fun Greenland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Nahariya in Israel. + fun NahariyaIsrael : Ind City ; + -- The City of Nairobi in Kenya. + fun NairobiKenya : Ind City ; --- The City of Grozny in Chechnya. -fun GroznyChechnya : Ind City ; + -- The City of Najaf in Iraq. + fun NajafIraq : Ind City ; + fun NallurAreaSriLanka : Ind GeographicArea ; --- A dependency of France -fun Guadeloupe : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Naqura in Lebanon. + fun NaquraLebanon : Ind City ; + -- The City of Narayangang in Bangladesh. + fun NarayangangBangladesh : Ind City ; --- A dependency of the UnitedStates Guam An Island in the PacificOcean that is a --- protectorate of the UnitedStates. -fun Guam : Ind (both DependencyOrSpecialSovereigntyArea Island) ; + -- A large City in Tennessee. + fun NashvilleTennessee : Ind AmericanCity ; + -- The City of Natania in Israel. + fun NataniaIsrael : Ind City ; --- A dependency of the UnitedKingdom -fun Guernsey : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A dependency of the UnitedStates + fun NavassaIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of NearAdarim. + fun NearAdarim : Ind City ; --- The City of Guilin in China. -fun GuilinChina : Ind City ; + -- The City of NearAleiZahav. + fun NearAleiZahav : Ind City ; + -- The City of NearJenin. + fun NearJenin : Ind City ; --- The Nation of GuineaBissau. -fun GuineaBissau : Ind Nation ; + -- A state in the midwestern UnitedStates. + fun Nebraska : Ind AmericanState ; + -- The City of Netanya in Israel. + fun NetanyaIsrael : Ind City ; --- The City of Gujarat in India. -fun GujaratIndia : Ind City ; + -- A dependency of the Netherlands + fun NetherlandsAntilles : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Netzarim in GazaStrip. + fun NetzarimGazaStrip : Ind City ; --- The City of GushEtzion in WestBank. -fun GushEtzionWestBank : Ind City ; + -- The City of NetzerHazani in GazaStrip. + fun NetzerHazaniGazaStrip : Ind City ; + -- A state in the western UnitedStates. + fun Nevada : Ind AmericanState ; -fun GushKatifGazaStrip : Ind GeographicArea ; + -- The City of NeveDaniel in WestBank. + fun NeveDanielWestBank : Ind City ; --- The City of GushKhatif in GazaStrip. -fun GushKhatifGazaStrip : Ind City ; + -- The City of NeveDekalim. + fun NeveDekalim : Ind City ; + -- The City of NeveYamin in Israel. + fun NeveYaminIsrael : Ind City ; --- The City of Hadera in Israel. -fun HaderaIsrael : Ind City ; + -- The City of NewDelhi in India. + fun NewDelhiIndia : Ind City ; + -- A GeographicArea in the UnitedStates that is made up of the states of + -- Maine, New Hampshire, Vermont, Massachusetts, Rhode Island, and Connecticut. + fun NewEngland : Ind GeographicArea ; --- The City of Haifa in Israel. -fun HaifaIsrael : Ind City ; + -- A northeastern AmericanState. Its largest City is ManchesterNewHampshire. + fun NewHampshire : Ind AmericanState ; + -- A state in the eastern UnitedStates. + fun NewJersey : Ind AmericanState ; --- The City of Hamburg in Germany. -fun HamburgGermany : Ind City ; + -- A southwestern state in the UnitedStates. + fun NewMexico : Ind AmericanState ; + -- The City of NewYorkCity in UnitedStates. NewYorkCityUnitedStates The largest City in the UnitedStates. + -- A worldwide center of finance and culture, it is comprised of five boroughs. + fun NewYorkCityUnitedStates : Ind AmericanCity ; --- The City of HamisMiliyana in Algeria. -fun HamisMiliyanaAlgeria : Ind City ; + -- A populous state in the northeastern UnitedStates. + fun NewYorkState : Ind AmericanState ; + fun NeztarimSettlementGazaStrip : Ind GeographicArea ; --- The City of Hamra in WestBank. -fun HamraWestBank : Ind City ; + -- The City of Niamey in Niger. + fun NiameyNiger : Ind City ; + -- The City of Nissanit in GazaStrip. + fun NissanitGazaStrip : Ind City ; --- The City of Hannover in Germany. -fun HannoverGermany : Ind City ; + -- The City of NitzaneiOz in WestBank. + fun NitzaneiOzWestBank : Ind City ; + -- The City of Nitzanim in Israel. + fun NitzanimIsrael : Ind City ; --- The City of HarBracha in WestBank. -fun HarBrachaWestBank : Ind City ; + -- A dependency of NewZealand + fun Niue : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + fun NokdimTekoaRdWestBank : Ind GeographicArea ; --- The City of Harer in Ethiopia. -fun HarerEthiopia : Ind City ; + -- A dependency of Australia + fun NorfolkIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of NorteDeSantander in Colombia. + fun NorteDeSantanderColombia : Ind City ; --- The City of Havana in Cuba. -fun HavanaCuba : Ind City ; + -- A state in the southeastern UnitedStates. + fun NorthCarolina : Ind AmericanState ; + -- A state in the northern midwest of the UnitedStates. + fun NorthDakota : Ind AmericanState ; --- An AmericanState that consists of several Islands in --- the central PacificOcean. -fun Hawaii : Ind AmericanState ; + fun NorthernCaucasiusChechnya : Ind GeographicArea ; + -- The Nation of NorthernIreland. + fun NorthernIreland : Ind Nation ; --- The City of Hawana in Iraq. -fun HawanaIraq : Ind City ; + -- A dependency of the UnitedStates + fun NorthernMarianaIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Novogrozny in Russia. + fun NovogroznyRussia : Ind City ; --- A dependency of Australia -fun HeardIslandAndMcDonaldIslands : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of NovyyAtagi in Russia. + fun NovyyAtagiRussia : Ind City ; + -- The City of Oberwart in Austria. + fun OberwartAustria : Ind City ; --- The City of Heart in Afghanistan. -fun HeartAfghanistan : Ind City ; + -- The City of Ofra in WestBank. + fun OfraWestBank : Ind City ; + -- A populous and industrial state in the midwestern UnitedStates. + fun Ohio : Ind AmericanState ; --- The City of Hebron in WestBank. -fun HebronWestBank : Ind City ; + fun OilbaseAlgeria : Ind GeographicArea ; + -- The City of Okara in Pakistan. + fun OkaraPakistan : Ind City ; --- The City of Hermesh in Israel. -fun HermeshIsrael : Ind City ; + -- A state in the southwestern UnitedStates. + fun Oklahoma : Ind AmericanState ; + -- The City of OlayaHerrera in Colombia. + fun OlayaHerreraColombia : Ind City ; --- The City of Hernani in Spain. -fun HernaniSpain : Ind City ; + -- The City of Omagh in NorthernIreland. + fun OmaghNorthernIreland : Ind City ; + -- The City of OrYehuda in Israel. + fun OrYehudaIsrael : Ind City ; --- The City of Herzliya in Israel. -fun HerzliyaIsrael : Ind City ; + -- The City of Oran in Algeria. + fun OranAlgeria : Ind City ; + -- An AmericanState on the PacificOcean. + fun Oregon : Ind AmericanState ; --- The City of Hilversum in Netherlands. -fun HilversumNetherlands : Ind City ; + -- The City of Osaka in Japan. + fun OsakaJapan : Ind City ; + -- The City of Oslo in Norway. + fun OsloNorway : Ind City ; --- The City of Hizma in WestBank. -fun HizmaWestBank : Ind City ; + -- The City of Ossnabruck in Germany. + fun OssnabruckGermany : Ind City ; + fun OthnielJunctionIsrael : Ind GeographicArea ; -fun HodayaJunctionIsrael : Ind GeographicArea ; + -- The City of Otniel in WestBank. + fun OtnielWestBank : Ind City ; -fun HolonJunctionIsrael : Ind GeographicArea ; + -- The City of Otzarin in WestBank. + fun OtzarinWestBank : Ind City ; --- A dependency of China -fun HongKong : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Ozamis in Philippines. + fun OzamisPhilippines : Ind City ; + -- The City of Pahalgam in India. + fun PahalgamIndia : Ind City ; --- The capital and largest City in Hawaii. -fun HonoluluHawaii : Ind AmericanCity ; + -- A GeopoliticalArea that was divided by the + -- UnitedKingdom into Israel and Jordan in 1948. + fun Palestine : Ind OverseasArea ; + fun PalestinianLiberationOrganization : Ind PoliticalOrganization ; --- Located in southeastern Texas, the largest --- City in the state. -fun HoustonTexas : Ind AmericanCity ; + -- A dependency of the UnitedStates + fun PalmyraAtoll : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Palorinya in Uganda. + fun PalorinyaUganda : Ind City ; --- A dependency of the UnitedStates -fun HowlandIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Pamplona in Spain. + fun PamplonaSpain : Ind City ; + -- The City of PanamaCity in Panama. + fun PanamaCityPanama : Ind City ; --- The City of Huallga in Peru. -fun HuallgaPeru : Ind City ; + -- The City of Pantras in Greece. + fun PantrasGreece : Ind City ; + -- The City of Papayin in Colombia. + fun PapayinColombia : Ind City ; --- A large River in NewYorkState. -fun HudsonRiver : Ind River ; + -- The City of Papua in Indonesia. + fun PapuaIndonesia : Ind City ; + fun ParacelIslands : Ind (both LandArea GeopoliticalArea) ; --- The City of Hurghada in Egypt. -fun HurghadaEgypt : Ind City ; + -- The capital of France and the largest City of the country. + fun Paris : Ind EuropeanCity ; + -- The capital of France and the largest City of the country. + fun ParisFrance : Ind EuropeanCity ; --- The City of Hyderabad in Pakistan. -fun HyderabadPakistan : Ind City ; + -- The City of Patikul in Philippines. + fun PatikulPhilippines : Ind City ; + -- The City of Pau in France. + fun PauFrance : Ind City ; --- The City of Ibsril in Iraq. -fun IbsrilIraq : Ind City ; + -- The City of PeAtSadeh in GazaStrip. + fun PeAtSadehGazaStrip : Ind City ; + -- A mid_Atlantic AmericanState. Its two major cities are Philadelphia and Pittsburgh. + -- Pennsylvania A mid_Atlantic AmericanState. Its two major cities + -- are PhiladelphiaPennsylvania and PittsburghPennsylvania. + fun Pennsylvania : Ind AmericanState ; --- A state known for potatoes in the northwestern --- UnitedStates. -fun Idaho : Ind AmericanState ; + -- The City of Peshawar in Pakistan. + fun PeshawarPakistan : Ind City ; + -- The City of PetahTikva. + fun PetahTikva : Ind City ; --- A populous and industrial state in the midwestern --- UnitedStates. -fun Illinois : Ind AmericanState ; + -- The City of PetahTikvah in Israel. + fun PetahTikvahIsrael : Ind City ; + -- The largest City in Pennsylvania. + fun PhiladelphiaPennsylvania : Ind AmericanCity ; -fun IncirlikAirbaseTurkey : Ind GeographicArea ; + -- The City of PhnomPenh in Cambodia. + fun PhnomPenhCambodia : Ind City ; --- A state in the mideastern UnitedStates. -fun Indiana : Ind AmericanState ; + -- A dependency of the UnitedKingdom + fun PitcairnIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The second largest City in Pennsylvania. + -- It was once a center of steel production in the UnitedStates. + fun PittsburghPennsylvania : Ind AmericanCity ; --- A state in the midwestern UnitedStates. -fun Iowa : Ind AmericanState ; + -- The City of Portadown in Ireland. + fun PortadownIreland : Ind City ; + -- The City of Prague in CzechRepublic. + fun PragueCzechRepublic : Ind City ; --- The City of Ipil in Philippines. -fun IpilPhilippines : Ind City ; + -- The largest and capital city of RhodeIsland. + fun ProvidenceRhodeIsland : Ind AmericanCity ; + -- The City of PuertoAlvira in Colombia. + fun PuertoAlviraColombia : Ind City ; --- The City of Irbil in Iraq. -fun IrbilIraq : Ind City ; + -- The City of PuertoLleras in Colombia. + fun PuertoLlerasColombia : Ind City ; + -- An dependent part of the UnitedStates. + fun PuertoRico : Ind (both Archipelago DependencyOrSpecialSovereigntyArea) ; --- The City of Islamabad in Pakistan. -fun IslamabadPakistan : Ind City ; + -- The City of Punjab in Pakistan. + fun PunjabPakistan : Ind City ; + -- The City of Quetta in Pakistan. + fun QuettaPakistan : Ind City ; -fun IslandOfBaliIndonesia : Ind GeographicArea ; + -- The City of Quito in Ecuador. + fun QuitoEcuador : Ind City ; --- A dependency of the UnitedKingdom -fun IsleOfMan : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of RadaAman in Yemen. + fun RadaAmanYemen : Ind City ; + -- The City of Rafah in GazaStrip. + fun RafahGazaStrip : Ind City ; --- The City of Istanbul in Turkey. -fun IstanbulTurkey : Ind City ; + -- The City of RamaJunction in WestBank. + fun RamaJunctionWestBank : Ind City ; + -- The City of RamalDeAspusana in Peru. + fun RamalDeAspusanaPeru : Ind City ; --- The City of Itamar in WestBank. -fun ItamarWestBank : Ind City ; + -- The City of Ramallah in WestBank. + fun RamallahWestBank : Ind City ; + -- The City of RamatGan in Israel. + fun RamatGanIsrael : Ind City ; --- The City of Izmir in Turkey. -fun IzmirTurkey : Ind City ; + -- The City of Ramin in WestBank. + fun RaminWestBank : Ind City ; + -- The City of Ramle in Israel. + fun RamleIsrael : Ind City ; --- The City of JMain in WestBank. -fun JMainWestBank : Ind City ; + -- The City of Rawalpindi in Pakistan. + fun RawalpindiPakistan : Ind City ; + -- A tributary of the Mississippi River. + fun RedRiver : Ind River ; --- The City of Jaffa in Israel. -fun JaffaIsrael : Ind City ; + -- The Nation of Georgia. + fun RepublicOfGeorgia : Ind Nation ; + -- A dependency of France + fun Reunion : Ind (both Nation DependencyOrSpecialSovereigntyArea) ; --- The City of Jaffna in SriLanka. -fun JaffnaSriLanka : Ind City ; + -- The City of Reus in Spain. + fun ReusSpain : Ind City ; + -- A northeastern AmericanState. Its capital city is + -- ProvidenceRhodeIsland. It is the smallest AmercianState + fun RhodeIsland : Ind AmericanState ; --- The City of Jakarta in Indonesia. -fun JakartaIndonesia : Ind City ; + -- The Nation of Rhodes. + fun Rhodes : Ind Nation ; + -- The capital of Virginia, located in the + -- east_central part of the state. + fun RichmondVirginia : Ind AmericanCity ; --- The City of Jalah in India. -fun JalahIndia : Ind City ; + -- The City of Riga in Latvia. + fun RigaLatvia : Ind City ; + -- The City of Rijeka in Croatia. + fun RijekaCroatia : Ind City ; -fun JalpaiguriRailwayStationIndia : Ind GeographicArea ; + fun RimalDistrictGazaStrip : Ind GeographicArea ; --- The City of Jammu in India. -fun JammuIndia : Ind City ; + -- The City of RishonLeZion in Israel. + fun RishonLeZionIsrael : Ind City ; + -- The City of Riyadh in SaudiArabia. + fun RiyadhSaudiArabia : Ind City ; --- A dependency of Norway -fun JanMayenIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Roermond in Netherlands. + fun RoermondNetherlands : Ind City ; + -- The City of Rome in Italy. RomeItaly The capital of Italy and the largest City + -- of the country. + fun RomeItaly : Ind EuropeanCity ; --- The City of Jangas in Peru. -fun JangasPeru : Ind City ; + -- The City of Rosas in Spain. + fun RosasSpain : Ind City ; + -- The City of RostovOnDon in Russia. + fun RostovOnDonRussia : Ind City ; --- A dependency of the UnitedStates -fun JarvisIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Ruhengeri in Rwanda. + fun RuhengeriRwanda : Ind City ; + fun SaadaPakistan : Ind GeographicArea ; --- The City of Jenin in WestBank. -fun JeninWestBank : Ind City ; + -- The City of Saada in Yemen. + fun SaadaYemen : Ind City ; + -- The City of Sabatena in Colombia. + fun SabatenaColombia : Ind City ; --- A dependency of the UnitedKingdom -fun Jersey : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Sacramento in UnitedStates. + fun SacramentoUnitedStates : Ind City ; + -- The City of SaintAvold in France. + fun SaintAvoldFrance : Ind City ; --- The City of JerusalemHills in Israel. -fun JerusalemHillsIsrael : Ind City ; + -- A dependency of the UnitedKingdom + fun SaintHelena : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of SaintJeanDeLuz in France. + fun SaintJeanDeLuzFrance : Ind City ; --- The capital and largest City in Israel. --- It is regarded as a holy city by Muslims, Jews, and Christians. -fun JerusalemIsrael : Ind City ; + -- A large City in Missouri. + fun SaintLouisMissouri : Ind AmericanCity ; + -- The capital of Minnesota, borders MinneapolisMinnesota. + fun SaintPaulMinnesota : Ind AmericanCity ; --- The City of JerusalemOldCity in Israel. -fun JerusalemOldCityIsrael : Ind City ; + -- A dependency of France + fun SaintPierreAndMiquelon : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of SaintSebastian in Spain. + fun SaintSebastianSpain : Ind City ; --- The City of Johannesburg in SouthAfrica. -fun JohannesburgSouthAfrica : Ind City ; + -- The City of Sairanbar in Iraq. + fun SairanbarIraq : Ind City ; + -- The City of SajaIA in GazaStrip. + fun SajaIAGazaStrip : Ind City ; --- A dependency of the UnitedStates -fun JohnstonAtoll : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of SallentDeGallego in Spain. + fun SallentDeGallegoSpain : Ind City ; + -- The City of Samaria in WestBank. + fun SamariaWestBank : Ind City ; --- The City of Jolo in Philippines. -fun JoloPhilippines : Ind City ; + -- The City of Samashki in Russia. + fun SamashkiRussia : Ind City ; + -- The Nation of Samoa. + fun Samoa : Ind Nation ; --- A dependency of France -fun JuanDeNovaIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; + -- The City of SanDiego in Colombia. + fun SanDiegoColombia : Ind City ; + -- A large City in California, located on the San Francisco Bay. + fun SanFranciscoCalifornia : Ind AmericanCity ; --- The City of Jubial in SaudiArabia. -fun JubialSaudiArabia : Ind City ; + -- The City of SanJose in CostaRica. + fun SanJoseCostaRica : Ind City ; + -- The City of SanLuis in Colombia. + fun SanLuisColombia : Ind City ; --- The City of Jullundur in India. -fun JullundurIndia : Ind City ; + -- The City of SanMiguel in ElSalvador. + fun SanMiguelElSalvador : Ind City ; + -- The City of SanPablo in Colombia. + fun SanPabloColombia : Ind City ; --- The City of Kabacan in Philippines. -fun KabacanPhilippines : Ind City ; + -- The City of SanSabatian in Spain. + fun SanSabatianSpain : Ind City ; + -- The City of Sanaa in Yemen. + fun SanaaYemen : Ind City ; --- The City of Kabul in Afghanistan. -fun KabulAfghanistan : Ind City ; + -- The City of Sangaldan in India. + fun SangaldanIndia : Ind City ; + -- The City of SantaMarta in Colombia. + fun SantaMartaColombia : Ind City ; --- The City of KafrAkab in WestBank. -fun KafrAkabWestBank : Ind City ; + -- The City of SantaPola in Spain. + fun SantaPolaSpain : Ind City ; + fun SantaRitaMountainsPanama : Ind GeographicArea ; --- The City of KafrIdna in WestBank. -fun KafrIdnaWestBank : Ind City ; + -- The City of Santiago in Chile. + fun SantiagoChile : Ind City ; + -- The City of Sanur in Israel. + fun SanurIsrael : Ind City ; --- The City of Kalkilya in WestBank. -fun KalkilyaWestBank : Ind City ; + -- The City of Sarajevo in BosniaAndHerzegovina. + fun SarajevoBosniaAndHerzegovina : Ind City ; + -- The City of Satkhira in Bangladesh. + fun SatkhiraBangladesh : Ind City ; --- The City of Kalmunai in SriLanka. -fun KalmunaiSriLanka : Ind City ; + -- A City in Georgia near the mouth of the Savannah River. + fun SavannahGeorgia : Ind AmericanCity ; + -- A division of the UnitedKingdom. + fun Scotland : Ind GeopoliticalArea ; --- The City of Kampala in Uganda. -fun KampalaUganda : Ind City ; + -- The City of Segovia in Colombia. + fun SegoviaColombia : Ind City ; + -- The City of Seoul in SouthKorea. + fun SeoulSouthKorea : Ind City ; --- The City of Kandy in SriLanka. -fun KandySriLanka : Ind City ; + -- The City of Seville in Spain. + fun SevilleSpain : Ind City ; + -- The City of ShadmotMehola in WestBank. + fun ShadmotMeholaWestBank : Ind City ; --- The City of Kanihama in India. -fun KanihamaIndia : Ind City ; + -- The City of ShaveiShomron in WestBank. + fun ShaveiShomronWestBank : Ind City ; + -- The City of SheikhAjlun in GazaStrip. + fun SheikhAjlunGazaStrip : Ind City ; --- A state in the midwestern UnitedStates. -fun Kansas : Ind AmericanState ; + -- The City of Shilo in WestBank. + fun ShiloWestBank : Ind City ; + -- The City of Shimi in Ecuador. + fun ShimiEcuador : Ind City ; --- A large City at the western edge of Missouri. -fun KansasCityMissouri : Ind AmericanCity ; + -- The City of Shlomi in Israel. + fun ShlomiIsrael : Ind City ; + -- The City of SidiHalifah in Libya. + fun SidiHalifahLibya : Ind City ; --- The City of Karachi in Pakistan. -fun KarachiPakistan : Ind City ; + -- The City of Sidon in Lebanon. + fun SidonLebanon : Ind City ; + -- The City of Siirt in Turkey. + fun SiirtTurkey : Ind City ; --- The City of Karkur in Israel. -fun KarkurIsrael : Ind City ; + -- The City of SilatADahar in WestBank. + fun SilatADaharWestBank : Ind City ; + fun SipadanIslandMalaysia : Ind GeographicArea ; --- The City of KarmeiTzur in WestBank. -fun KarmeiTzurWestBank : Ind City ; + -- The City of Sitra. + fun Sitra : Ind City ; + -- The City of Sitrah in Bahrain. + fun SitrahBahrain : Ind City ; --- The City of KarneiShomron in WestBank. -fun KarneiShomronWestBank : Ind City ; + -- The City of Sopore in India. + fun SoporeIndia : Ind City ; + -- A state in the southeastern UnitedStates. + fun SouthCarolina : Ind AmericanState ; --- The City of Kashmir in India. -fun KashmirIndia : Ind City ; + -- A state in the northern midwest of the UnitedStates. + fun SouthDakota : Ind AmericanState ; + -- A dependency of the UnitedKingdom + fun SouthGeorgiaAndTheSouthSandwichIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; -fun KatmanduAirportNepal : Ind GeographicArea ; + -- The former communist nation of the Soviet Union. + fun SovietUnion : Ind EuropeanNation ; --- The Nation of Kazakhstan. -fun Kazakhstan : Ind Nation ; + fun SpratlyIslands : Ind (both LandArea GeopoliticalArea) ; + -- The City of Srinagar in India. + fun SrinagarIndia : Ind City ; -fun KedumimSettlementWestBank : Ind GeographicArea ; + -- The City of Srinigar in India. + fun SrinigarIndia : Ind City ; --- The City of Kedumim in WestBank. -fun KedumimWestBank : Ind City ; + -- The City of Sriperumbudur in India. + fun SriperumbudurIndia : Ind City ; + -- The City of Stewartstown in NorthernIreland. + fun StewartstownNorthernIreland : Ind City ; --- A state in the southeastern UnitedStates. -fun Kentucky : Ind AmericanState ; + -- The City of Stockholm in Sweden. + fun StockholmSweden : Ind City ; + -- The City of Strasbourg in France. + fun StrasbourgFrance : Ind City ; --- The City of KfarBaAneh in Israel. -fun KfarBaAnehIsrael : Ind City ; + -- The City of SukaiManiyah. + fun SukaiManiyah : Ind City ; + fun SukaimaniyahIraq : Ind GeographicArea ; --- The City of KfarDarom in GazaStrip. -fun KfarDaromGazaStrip : Ind City ; + -- The City of Sulawesi in Indonesia. + fun SulawesiIndonesia : Ind City ; + -- The City of Sulaymaniyah in Iraq. + fun SulaymaniyahIraq : Ind City ; --- The City of KfarDaromNetzarim in Israel. -fun KfarDaromNetzarimIsrael : Ind City ; + -- The City of Sumayr in Yemen. + fun SumayrYemen : Ind City ; + -- The City of Susiya in WestBank. + fun SusiyaWestBank : Ind City ; --- The City of KfarHess in Israel. -fun KfarHessIsrael : Ind City ; + -- A dependency of Norway + fun Svalbard : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of TBilisi in RepublicOfGeorgia. + fun TBilisiGeorgia : Ind City ; --- The City of KfarSaba in Israel. -fun KfarSabaIsrael : Ind City ; + -- The City of Taila in Pakistan. + fun TailaPakistan : Ind City ; + -- The City of TamezGuida in Algeria. + fun TamezGuidaAlgeria : Ind City ; --- The City of KfarTzurif in WestBank. -fun KfarTzurifWestBank : Ind City ; + -- The City of Tandy in SriLanka. + fun TandySriLanka : Ind City ; + -- The City of Taxila in Pakistan. + fun TaxilaPakistan : Ind City ; --- The City of KfarYam in GazaStrip. -fun KfarYamGazaStrip : Ind City ; + -- The City of Tegucigalpa in Honduras. + fun TegucigalpaHonduras : Ind City ; + -- The City of Teheran in Iran. + fun TeheranIran : Ind City ; --- The City of Khankala in Chechnya. -fun KhankalaChechnya : Ind City ; + -- The City of Tehran. + fun Tehran : Ind City ; + -- The City of Tekoa in WestBank. + fun TekoaWestBank : Ind City ; --- The City of Khartoum in Sudan. -fun KhartoumSudan : Ind City ; + -- The City of TelAviv in Israel. + fun TelAvivIsrael : Ind City ; + fun TelHaShomerJunctionIsrael : Ind GeographicArea ; --- The City of Khelil in Algeria. -fun KhelilAlgeria : Ind City ; + -- The City of TelQateifa in GazaStrip. + fun TelQateifaGazaStrip : Ind City ; + -- The City of TelRumeiyda in Israel. + fun TelRumeiydaIsrael : Ind City ; --- The City of Khobar in SaudiArabia. -fun KhobarSaudiArabia : Ind City ; + -- The City of Telem in Israel. + fun TelemIsrael : Ind City ; + -- The City of Tena in WestBank. + fun TenaWestBank : Ind City ; --- The City of KibbutzGalEd in Israel. -fun KibbutzGalEdIsrael : Ind City ; + -- A state in the southeastern UnitedStates. + fun Tennessee : Ind AmericanState ; + -- The second largest AmericanState, located in the southwest + -- on the GulfOfMexico. + fun Texas : Ind AmericanState ; --- The City of KibbutzMerav in Israel. -fun KibbutzMeravIsrael : Ind City ; + -- The Nation of TheBahamas. + fun TheBahamas : Ind Nation ; + -- The City of TheHague in Netherlands. + fun TheHagueNetherlands : Ind City ; --- The City of KibbutzSheluhot in Israel. -fun KibbutzSheluhotIsrael : Ind City ; + fun TheKyrgyzCapitalBishkekChina : Ind GeographicArea ; + -- The City of Thekraguri in India. + fun ThekraguriIndia : Ind City ; --- The City of Kidapawan in Philippines. -fun KidapawanPhilippines : Ind City ; + -- The City of Tiaret in Algeria. + fun TiaretAlgeria : Ind City ; + -- The City of Tirat in Algeria. + fun TiratAlgeria : Ind City ; --- The City of Kigali in Rwanda. -fun KigaliRwanda : Ind City ; + -- A dependency of NewZealand + fun Tokelau : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The capital and largest City in Japan. + fun TokyoJapan : Ind City ; --- A dependency of the UnitedStates -fun KingmanReef : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- The City of Tolosa in Spain. + fun TolosaSpain : Ind City ; + -- The City of Topkaki in Turkey. + fun TopkakiTurkey : Ind City ; --- The City of Kirikkale in Turkey. -fun KirikkaleTurkey : Ind City ; + -- The City of Trabzon in Turkey. + fun TrabzonTurkey : Ind City ; + fun TrincomaleeHarborSriLanka : Ind GeographicArea ; --- The City of KiryatArba in WestBank. -fun KiryatArbaWestBank : Ind City ; + -- The City of Tripoli in Libya. + fun TripoliLibya : Ind City ; + -- A dependency of France + fun TromelinIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; --- The City of KiryatMotzkin in Israel. -fun KiryatMotzkinIsrael : Ind City ; + -- The City of Tulkarem in WestBank. + fun TulkaremWestBank : Ind City ; + -- The City of Tulkarm in WestBank. + fun TulkarmWestBank : Ind City ; --- The City of KiryatNetafim in WestBank. -fun KiryatNetafimWestBank : Ind City ; + -- The City of Tunceli in Turkey. + fun TunceliTurkey : Ind City ; + -- The City of Turbat in Pakistan. + fun TurbatPakistan : Ind City ; --- The City of Kissufim in GazaStrip. -fun KissufimGazaStrip : Ind City ; + -- A dependency of the UnitedKingdom + fun TurksAndCaicosIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + fun UWaIndianReservationColombia : Ind GeographicArea ; --- The City of KiursehirBoztep in Turkey. -fun KiursehirBoztepTurkey : Ind City ; + -- The City of UmAlFahm in Israel. + fun UmAlFahmIsrael : Ind City ; + -- The City of UmmQasr in Iraq. + fun UmmQasrIraq : Ind City ; --- The City of Klaiyat in Lebanon. -fun KlaiyatLebanon : Ind City ; + -- The City of Urena in Venezuela. + fun UrenaVenezuela : Ind City ; + -- The City of Urra in Colombia. + fun UrraColombia : Ind City ; --- The City of Kohlan in Yemen. -fun KohlanYemen : Ind City ; + -- The City of UrsMartan in Russia. + fun UrsMartanRussia : Ind City ; + -- A state in the western UnitedStates. + fun Utah : Ind AmericanState ; --- The City of KomsomoLabad in Tajikistan. -fun KomsomoLabadTajikistan : Ind City ; + -- The City of Valencia in Spain. + fun ValenciaSpain : Ind City ; + -- The City of Valledupar in Colombia. + fun ValleduparColombia : Ind City ; --- A Peninsula in Asia that separates --- the Yellow Sea from the Sea of Japan. It is occupied by the nations of --- North and South Korea. -fun KoreanPeninsula : Ind Peninsula ; + -- The City of Van in Turkey. + fun VanTurkey : Ind City ; + -- The City of Vavuniya in SriLanka. + fun VavuniyaSriLanka : Ind City ; --- The City of KuwaitCity in Kuwait. -fun KuwaitCityKuwait : Ind City ; + -- A northeastern AmericanState know for its small towns + -- and rustic beauty. + fun Vermont : Ind AmericanState ; + -- The City of Vienna in Austria. + fun ViennaAustria : Ind City ; --- The City of LIleRousse in France. -fun LIleRousseFrance : Ind City ; + -- The City of Vientiane in Laos. + fun VientianeLaos : Ind City ; + -- The City of Villavicencio in Colombia. + fun VillavicencioColombia : Ind City ; --- The City of LaCeiba in Honduras. -fun LaCeibaHonduras : Ind City ; + -- The VirginIslands is an Archipelago in the West Indies that comprises both the + -- BritishVirginIslands, administered by the UnitedKingdom, and the + -- USVirginIslands, administered by the UnitedStates. + fun VirginIslands : Ind (both Archipelago DependencyOrSpecialSovereigntyArea) ; + -- A state in the southeastern UnitedStates that borders on WashingtonDC. + fun Virginia : Ind AmericanState ; --- The City of LaGabarra in Venezuela. -fun LaGabarraVenezuela : Ind City ; + -- The City of Vitoria in Spain. + fun VitoriaSpain : Ind City ; + -- The City of Vitrolles in France. + fun VitrollesFrance : Ind City ; --- The City of LaGuajira in Colombia. -fun LaGuajiraColombia : Ind City ; + -- The City of Vladikavkaz in Russia. + fun VladikavkazRussia : Ind City ; + -- The City of Vladivostok in Russia. + fun VladivostokRussia : Ind City ; --- The City of LaPaz in Bolivia. -fun LaPazBolivia : Ind City ; + -- The City of Volgodonsk in Russia. + fun VolgodonskRussia : Ind City ; + -- The City of WadiAlDabaat in Yemen. + fun WadiAlDabaatYemen : Ind City ; --- The City of LaVictoria in Venezuela. -fun LaVictoriaVenezuela : Ind City ; + -- The City of WadiAra in Israel. + fun WadiAraIsrael : Ind City ; + -- The City of WadiKelt in WestBank. + fun WadiKeltWestBank : Ind City ; --- The City of Lahore in Pakistan. -fun LahorePakistan : Ind City ; + -- A dependency of the UnitedStates + fun WakeIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; + -- A dependency of France + fun WallisAndFutuna : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; --- The City of Larba in Algeria. -fun LarbaAlgeria : Ind City ; + -- The City of Warsaw in Poland. WarsawPoland The capital City of Poland. + fun WarsawPoland : Ind EuropeanCity ; + -- An AmericanState on the PacificOcean. + fun Washington : Ind AmericanState ; --- The City of Larnaca in Cyprus. -fun LarnacaCyprus : Ind City ; + -- The capitalCity of the UnitedStates. + fun WashingtonDCUnitedStates : Ind AmericanCity ; + -- The City of Wattyan in Bahrain. + fun WattyanBahrain : Ind City ; --- The City of Lasarte in Spain. -fun LasarteSpain : Ind City ; + -- A terroritory occupied by Israel. + fun WestBank : Ind (both LandArea (both Nation (both GeographicArea GeopoliticalArea))) ; + -- The City of WestBeirut in Lebanon. + fun WestBeirutLebanon : Ind City ; --- The City of Leiza in Spain. -fun LeizaSpain : Ind City ; + -- A state in the southeastern UnitedStates + fun WestVirginia : Ind AmericanState ; + -- A state in the midnorthern UnitedStates. + fun Wisconsin : Ind AmericanState ; -fun LesEucalyptusDistrictAlgeria : Ind GeographicArea ; + -- A large western state in the UnitedStates. + fun Wyoming : Ind AmericanState ; --- The City of Libertador in Venezuela. -fun LibertadorVenezuela : Ind City ; + -- The City of XiAn in China. + fun XiAnChina : Ind City ; + -- The City of YaAbad in WestBank. + fun YaAbadWestBank : Ind City ; --- The City of Lice in Turkey. -fun LiceTurkey : Ind City ; + -- The City of YagurJunction in Israel. + fun YagurJunctionIsrael : Ind City ; + -- The City of Yehud in Israel. + fun YehudIsrael : Ind City ; --- The City of Lima in Peru. -fun LimaPeru : Ind City ; + -- The City of Yerevan in Armenia. + fun YerevanArmenia : Ind City ; + -- The City of Yitzhar in WestBank. + fun YitzharWestBank : Ind City ; --- The City of Lindos in Rhodes. -fun LindosRhodes : Ind City ; + -- The City of Yokota in Japan. + fun YokotaJapan : Ind City ; + -- The City of Yopal in Colombia. + fun YopalColombia : Ind City ; --- The City of Linz in Australia. -fun LinzAustralia : Ind City ; + -- The City of Yuksekova in Turkey. + fun YuksekovaTurkey : Ind City ; + -- The City of Zaita in Israel. + fun ZaitaIsrael : Ind City ; --- The City of Lockerbie in UnitedKingdom. -fun LockerbieUnitedKingdom : Ind City ; + -- The City of Zamar in Yemen. + fun ZamarYemen : Ind City ; + -- The City of Zamboanga in Philippines. + fun ZamboangaPhilippines : Ind City ; --- The City of Logorno in Spain. -fun LogornoSpain : Ind City ; + -- The City of Zamboango in Philippines. + fun ZamboangoPhilippines : Ind City ; + -- The City of Zaragoza in Spain. + fun ZaragozaSpain : Ind City ; --- The City of London in UnitedKingdom. --- The capital city and the largest city of the UnitedKingdom. -fun LondonUnitedKingdom : Ind EuropeanCity ; + -- The City of Zarauz in Spain. + fun ZarauzSpain : Ind City ; + fun ZeifIntersectionWestBank : Ind GeographicArea ; --- The City of Londonberry in NorthernIreland. -fun LondonberryNorthernIreland : Ind City ; + -- The City of Zekharya in Israel. + fun ZekharyaIsrael : Ind City ; + fun Zimbabwe : Ind Nation ; --- A large Island off the coast of NewYorkState. --- The boroughs of Queens and Brooklyn make up the western end of this --- Island. -fun LongIsland : Ind Island ; + -- The City of Zulia in Colombia. + fun ZuliaColombia : Ind City ; + -- The City of Zumaia in Spain. + fun ZumaiaSpain : Ind City ; --- The largest City in California. -fun LosAngelesCalifornia : Ind AmericanCity ; + -- The City of Zumarraga in Spain. + fun ZumarragaSpain : Ind City ; + -- The City of Zvornik in BosniaAndHerzegovina. + fun ZvornikBosniaAndHerzegovina : Ind City ; -fun LosAngelesInternationalAirportUnitedStates : Ind GeographicArea ; + fun oilfieldsVenezuela : Ind GeographicArea ; --- The City of LosAngeles in UnitedStates. -fun LosAngelesUnitedStates : Ind City ; - - --- The City of LosBancos in Venezuela. -fun LosBancosVenezuela : Ind City ; - - -fun LosKatiosNationalParkColombia : Ind GeographicArea ; - --- A state in the south_central part of the UnitedStates. --- It borders on the GulfOfMexico and is known for its bayous and cajun culture. -fun Louisiana : Ind AmericanState ; - - --- The City of Luanda in Angola. -fun LuandaAngola : Ind City ; - - --- The City of Luebeck in Germany. -fun LuebeckGermany : Ind City ; - - --- The City of LundaNorte in Angola. -fun LundaNorteAngola : Ind City ; - - --- The City of Luxor in Egypt. -fun LuxorEgypt : Ind City ; - - --- The City of Lyons in France. -fun LyonsFrance : Ind City ; - - --- The City of MaAlehMichmash in WestBank. -fun MaAlehMichmashWestBank : Ind City ; - - --- A dependency of China -fun Macau : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of Maccabim in Israel. -fun MaccabimIsrael : Ind City ; - - --- The City of Madhu in SriLanka. -fun MadhuSriLanka : Ind City ; - - --- The City of Madras in India. -fun MadrasIndia : Ind City ; - - --- The City of Madrid in Spain. -fun MadridSpain : Ind City ; - - --- The City of Magdalena in Colombia. -fun MagdalenaColombia : Ind City ; - - --- The City of MaidanShar in Afghanistan. -fun MaidanSharAfghanistan : Ind City ; - - --- The most northeastern AmericanState. -fun Maine : Ind AmericanState ; - - --- The City of Makhachkala in Russia. -fun MakhachkalaRussia : Ind City ; - - --- The City of Malaga in Spain. -fun MalagaSpain : Ind City ; - - -fun MalukkaIslandsIndonesia : Ind GeographicArea ; - --- The City of Managua in Nigeria. -fun ManaguaNigeria : Ind City ; - - --- The City of Manama in Bahrain. -fun ManamaBahrain : Ind City ; - - --- The largest City in NewHampshire. -fun ManchesterNewHampshire : Ind AmericanCity ; - - --- The City of Manchester in UnitedKingdom. -fun ManchesterUnitedKingdom : Ind City ; - - -fun MangalsenAndSanpheBagarNepal : Ind GeographicArea ; - --- The City of Manila in Philippines. -fun ManilaPhilippines : Ind City ; - - --- The City of Maon in Israel. -fun MaonIsrael : Ind City ; - - --- The City of Mapourdit in Sudan. -fun MapourditSudan : Ind City ; - - --- The City of MarSaba in WestBank. -fun MarSabaWestBank : Ind City ; - - --- The City of Marawi in Philippines. -fun MarawiPhilippines : Ind City ; - - --- The City of Mardan in Pakistan. -fun MardanPakistan : Ind City ; - - --- The City of Marmaris in Turkey. -fun MarmarisTurkey : Ind City ; - - --- The City of Marseilles in France. -fun MarseillesFrance : Ind City ; - - --- A dependency of France -fun Martinique : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- A state in the eastern UnitedStates that --- borders on WashingtonDC. -fun Maryland : Ind AmericanState ; - - --- The City of Masha in WestBank. -fun MashaWestBank : Ind City ; - - --- A northeastern AmericanState. Its largest City --- is BostonMassachusetts. -fun Massachusetts : Ind AmericanState ; - - --- The City of Matsumoto in Japan. -fun MatsumotoJapan : Ind City ; - - --- The City of Mawdiyah in Yemen. -fun MawdiyahYemen : Ind City ; - - --- A dependency of France -fun Mayotte : Ind (both Island DependencyOrSpecialSovereigntyArea) ; - - --- The City of MeaShearim in Israel. -fun MeaShearimIsrael : Ind City ; - - --- The City of Mecca in SaudiArabia. -fun MeccaSaudiArabia : Ind City ; - - --- The City of Mechora in WestBank. -fun MechoraWestBank : Ind City ; - - --- The City of Medan in Indonesia. -fun MedanIndonesia : Ind City ; - - --- The City of Medellin in Colombia. -fun MedellinColombia : Ind City ; - - --- The City of Megido in Israel. -fun MegidoIsrael : Ind City ; - - --- The City of Mehola in Israel. -fun MeholaIsrael : Ind City ; - - --- The City of Mekholah in Israel. -fun MekholahIsrael : Ind City ; - - --- The largest City in Tennessee, --- located on the MississippiRiver. -fun MemphisTennessee : Ind AmericanCity ; - - --- The City of Mersin in Turkey. -fun MersinTurkey : Ind City ; - - --- The City of Meta in Colombia. -fun MetaColombia : Ind City ; - - --- The City of Metulla in Israel. -fun MetullaIsrael : Ind City ; - - --- The City of Metzer in Israel. -fun MetzerIsrael : Ind City ; - - --- A populous and industrial state in the midwestern --- UnitedStates. -fun Michigan : Ind AmericanState ; - - --- A dependency of the UnitedStates -fun MidwayIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of Milan in Italy. -fun MilanItaly : Ind City ; - - --- The City of Mindanao in Philippines. -fun MindanaoPhilippines : Ind City ; - - -fun MinharotRoadWestBank : Ind GeographicArea ; - --- The largest City in Minnesota. -fun MinneapolisMinnesota : Ind AmericanCity ; - - --- A state in the northern midwest of the UnitedStates. -fun Minnesota : Ind AmericanState ; - - --- The City of MiranShah in Pakistan. -fun MiranShahPakistan : Ind City ; - - --- A state in the southeastern UnitedStates that --- borders on the GulfOfMexico. -fun Mississippi : Ind AmericanState ; - - --- The major River in the UnitedStates. --- It runs almost the entire width of the UnitedStates, from Minnesota --- to the GulfOfMexico. -fun MississippiRiver : Ind River ; - - --- A state in the central UnitedStates. -fun Missouri : Ind AmericanState ; - - --- The City of Mitu in Colombia. -fun MituColombia : Ind City ; - - --- The City of ModiinIllit in WestBank. -fun ModiinIllitWestBank : Ind City ; - - --- The City of Mombassa in Kenya. -fun MombassaKenya : Ind City ; - - --- A state in the northwestern UnitedStates. -fun Montana : Ind AmericanState ; - - --- A large City in eastern Canada. -fun MontrealCanada : Ind City ; - - --- A dependency of the UnitedKingdom -fun Montserrat : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - -fun MoragJunctionGazaStrip : Ind GeographicArea ; - --- The City of Moscow in Russia. MoscowRussia The capital of Russia and the largest --- City of the country. -fun MoscowRussia : Ind EuropeanCity ; - - --- The City of MoshavHagor in Israel. -fun MoshavHagorIsrael : Ind City ; - - --- The City of MoshavTomer in WestBank. -fun MoshavTomerWestBank : Ind City ; - - --- The City of MukallahAden in Yemen. -fun MukallahAdenYemen : Ind City ; - - --- The City of MunchenGladbach in Germany. -fun MunchenGladbachGermany : Ind City ; - - --- The City of Munster in Germany. -fun MunsterGermany : Ind City ; - - --- The City of Murlough in NorthernIreland. -fun MurloughNorthernIreland : Ind City ; - - --- The City of MusMus in Israel. -fun MusMusIsrael : Ind City ; - - --- The City of Mutata in Colombia. -fun MutataColombia : Ind City ; - - --- The City of Muttur in SriLanka. -fun MutturSriLanka : Ind City ; - - --- A Nation in southeastern Asia, formerly known --- as Burma. -fun Myanmar : Ind Nation ; - - --- The City of NaAlin in WestBank. -fun NaAlinWestBank : Ind City ; - - --- The City of Nablus in WestBank. -fun NablusWestBank : Ind City ; - - --- The City of NahalOz in GazaStrip. -fun NahalOzGazaStrip : Ind City ; - - --- The City of Naharaim in Israel. -fun NaharaimIsrael : Ind City ; - - --- The City of Nahariya in Israel. -fun NahariyaIsrael : Ind City ; - - --- The City of Nairobi in Kenya. -fun NairobiKenya : Ind City ; - - --- The City of Najaf in Iraq. -fun NajafIraq : Ind City ; - - -fun NallurAreaSriLanka : Ind GeographicArea ; - --- The City of Naqura in Lebanon. -fun NaquraLebanon : Ind City ; - - --- The City of Narayangang in Bangladesh. -fun NarayangangBangladesh : Ind City ; - - --- A large City in Tennessee. -fun NashvilleTennessee : Ind AmericanCity ; - - --- The City of Natania in Israel. -fun NataniaIsrael : Ind City ; - - --- A dependency of the UnitedStates -fun NavassaIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of NearAdarim. -fun NearAdarim : Ind City ; - - --- The City of NearAleiZahav. -fun NearAleiZahav : Ind City ; - - --- The City of NearJenin. -fun NearJenin : Ind City ; - - --- A state in the midwestern UnitedStates. -fun Nebraska : Ind AmericanState ; - - --- The City of Netanya in Israel. -fun NetanyaIsrael : Ind City ; - - --- A dependency of the Netherlands -fun NetherlandsAntilles : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of Netzarim in GazaStrip. -fun NetzarimGazaStrip : Ind City ; - - --- The City of NetzerHazani in GazaStrip. -fun NetzerHazaniGazaStrip : Ind City ; - - --- A state in the western UnitedStates. -fun Nevada : Ind AmericanState ; - - --- The City of NeveDaniel in WestBank. -fun NeveDanielWestBank : Ind City ; - - --- The City of NeveDekalim. -fun NeveDekalim : Ind City ; - - --- The City of NeveYamin in Israel. -fun NeveYaminIsrael : Ind City ; - - --- The City of NewDelhi in India. -fun NewDelhiIndia : Ind City ; - - --- A GeographicArea in the UnitedStates that is --- made up of the states of Maine, New Hampshire, Vermont, Massachusetts, Rhode Island, --- and Connecticut. -fun NewEngland : Ind GeographicArea ; - - --- A northeastern AmericanState. Its largest City --- is ManchesterNewHampshire. -fun NewHampshire : Ind AmericanState ; - - --- A state in the eastern UnitedStates. -fun NewJersey : Ind AmericanState ; - - --- A southwestern state in the UnitedStates. -fun NewMexico : Ind AmericanState ; - - --- The City of NewYorkCity in UnitedStates. NewYorkCityUnitedStates The largest City in the UnitedStates. --- A worldwide center of finance and culture, it is comprised of five boroughs. -fun NewYorkCityUnitedStates : Ind AmericanCity ; - - --- A populous state in the northeastern UnitedStates. -fun NewYorkState : Ind AmericanState ; - - -fun NeztarimSettlementGazaStrip : Ind GeographicArea ; - --- The City of Niamey in Niger. -fun NiameyNiger : Ind City ; - - --- The City of Nissanit in GazaStrip. -fun NissanitGazaStrip : Ind City ; - - --- The City of NitzaneiOz in WestBank. -fun NitzaneiOzWestBank : Ind City ; - - --- The City of Nitzanim in Israel. -fun NitzanimIsrael : Ind City ; - - --- A dependency of NewZealand -fun Niue : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - -fun NokdimTekoaRdWestBank : Ind GeographicArea ; - --- A dependency of Australia -fun NorfolkIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of NorteDeSantander in Colombia. -fun NorteDeSantanderColombia : Ind City ; - - --- A state in the southeastern UnitedStates. -fun NorthCarolina : Ind AmericanState ; - - --- A state in the northern midwest of the UnitedStates. -fun NorthDakota : Ind AmericanState ; - - -fun NorthernCaucasiusChechnya : Ind GeographicArea ; - --- The Nation of NorthernIreland. -fun NorthernIreland : Ind Nation ; - - --- A dependency of the UnitedStates -fun NorthernMarianaIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of Novogrozny in Russia. -fun NovogroznyRussia : Ind City ; - - --- The City of NovyyAtagi in Russia. -fun NovyyAtagiRussia : Ind City ; - - --- The City of Oberwart in Austria. -fun OberwartAustria : Ind City ; - - --- The City of Ofra in WestBank. -fun OfraWestBank : Ind City ; - - --- A populous and industrial state in the midwestern --- UnitedStates. -fun Ohio : Ind AmericanState ; - - -fun OilbaseAlgeria : Ind GeographicArea ; - --- The City of Okara in Pakistan. -fun OkaraPakistan : Ind City ; - - --- A state in the southwestern UnitedStates. -fun Oklahoma : Ind AmericanState ; - - --- The City of OlayaHerrera in Colombia. -fun OlayaHerreraColombia : Ind City ; - - --- The City of Omagh in NorthernIreland. -fun OmaghNorthernIreland : Ind City ; - - --- The City of OrYehuda in Israel. -fun OrYehudaIsrael : Ind City ; - - --- The City of Oran in Algeria. -fun OranAlgeria : Ind City ; - - --- An AmericanState on the PacificOcean. -fun Oregon : Ind AmericanState ; - - --- The City of Osaka in Japan. -fun OsakaJapan : Ind City ; - - --- The City of Oslo in Norway. -fun OsloNorway : Ind City ; - - --- The City of Ossnabruck in Germany. -fun OssnabruckGermany : Ind City ; - - -fun OthnielJunctionIsrael : Ind GeographicArea ; - --- The City of Otniel in WestBank. -fun OtnielWestBank : Ind City ; - - --- The City of Otzarin in WestBank. -fun OtzarinWestBank : Ind City ; - - --- The City of Ozamis in Philippines. -fun OzamisPhilippines : Ind City ; - - --- The City of Pahalgam in India. -fun PahalgamIndia : Ind City ; - - --- A GeopoliticalArea that was divided by the --- UnitedKingdom into Israel and --- Jordan in 1948. -fun Palestine : Ind OverseasArea ; - - -fun PalestinianLiberationOrganization : Ind PoliticalOrganization ; - --- A dependency of the UnitedStates -fun PalmyraAtoll : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of Palorinya in Uganda. -fun PalorinyaUganda : Ind City ; - - --- The City of Pamplona in Spain. -fun PamplonaSpain : Ind City ; - - --- The City of PanamaCity in Panama. -fun PanamaCityPanama : Ind City ; - - --- The City of Pantras in Greece. -fun PantrasGreece : Ind City ; - - --- The City of Papayin in Colombia. -fun PapayinColombia : Ind City ; - - --- The City of Papua in Indonesia. -fun PapuaIndonesia : Ind City ; - - -fun ParacelIslands : Ind (both LandArea GeopoliticalArea) ; - --- The capital of France and the largest City of the country. -fun Paris : Ind EuropeanCity ; - - --- The capital of France and the largest City --- of the country. -fun ParisFrance : Ind EuropeanCity ; - - --- The City of Patikul in Philippines. -fun PatikulPhilippines : Ind City ; - - --- The City of Pau in France. -fun PauFrance : Ind City ; - - --- The City of PeAtSadeh in GazaStrip. -fun PeAtSadehGazaStrip : Ind City ; - - --- A mid_Atlantic AmericanState. Its two major cities --- are Philadelphia and Pittsburgh. Pennsylvania A mid_Atlantic AmericanState. Its two major cities --- are PhiladelphiaPennsylvania and PittsburghPennsylvania. -fun Pennsylvania : Ind AmericanState ; - - --- The City of Peshawar in Pakistan. -fun PeshawarPakistan : Ind City ; - - --- The City of PetahTikva. -fun PetahTikva : Ind City ; - - --- The City of PetahTikvah in Israel. -fun PetahTikvahIsrael : Ind City ; - - --- The largest City in Pennsylvania. -fun PhiladelphiaPennsylvania : Ind AmericanCity ; - - --- The City of PhnomPenh in Cambodia. -fun PhnomPenhCambodia : Ind City ; - - --- A dependency of the UnitedKingdom -fun PitcairnIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The second largest City in --- Pennsylvania. It was once a center of steel production in the --- UnitedStates. -fun PittsburghPennsylvania : Ind AmericanCity ; - - --- The City of Portadown in Ireland. -fun PortadownIreland : Ind City ; - - --- The City of Prague in CzechRepublic. -fun PragueCzechRepublic : Ind City ; - - --- The largest and capital city of --- RhodeIsland. -fun ProvidenceRhodeIsland : Ind AmericanCity ; - - --- The City of PuertoAlvira in Colombia. -fun PuertoAlviraColombia : Ind City ; - - --- The City of PuertoLleras in Colombia. -fun PuertoLlerasColombia : Ind City ; - - --- An dependent part of the UnitedStates. -fun PuertoRico : Ind (both Archipelago DependencyOrSpecialSovereigntyArea) ; - - --- The City of Punjab in Pakistan. -fun PunjabPakistan : Ind City ; - - --- The City of Quetta in Pakistan. -fun QuettaPakistan : Ind City ; - - --- The City of Quito in Ecuador. -fun QuitoEcuador : Ind City ; - - --- The City of RadaAman in Yemen. -fun RadaAmanYemen : Ind City ; - - --- The City of Rafah in GazaStrip. -fun RafahGazaStrip : Ind City ; - - --- The City of RamaJunction in WestBank. -fun RamaJunctionWestBank : Ind City ; - - --- The City of RamalDeAspusana in Peru. -fun RamalDeAspusanaPeru : Ind City ; - - --- The City of Ramallah in WestBank. -fun RamallahWestBank : Ind City ; - - --- The City of RamatGan in Israel. -fun RamatGanIsrael : Ind City ; - - --- The City of Ramin in WestBank. -fun RaminWestBank : Ind City ; - - --- The City of Ramle in Israel. -fun RamleIsrael : Ind City ; - - --- The City of Rawalpindi in Pakistan. -fun RawalpindiPakistan : Ind City ; - - --- A tributary of the Mississippi River. -fun RedRiver : Ind River ; - - --- The Nation of Georgia. -fun RepublicOfGeorgia : Ind Nation ; - - --- A dependency of France -fun Reunion : Ind (both Nation DependencyOrSpecialSovereigntyArea) ; - - --- The City of Reus in Spain. -fun ReusSpain : Ind City ; - - --- A northeastern AmericanState. Its capital city is --- ProvidenceRhodeIsland. It is the smallest AmercianState -fun RhodeIsland : Ind AmericanState ; - - --- The Nation of Rhodes. -fun Rhodes : Ind Nation ; - - --- The capital of Virginia, located in the --- east_central part of the state. -fun RichmondVirginia : Ind AmericanCity ; - - --- The City of Riga in Latvia. -fun RigaLatvia : Ind City ; - - --- The City of Rijeka in Croatia. -fun RijekaCroatia : Ind City ; - - -fun RimalDistrictGazaStrip : Ind GeographicArea ; - --- The City of RishonLeZion in Israel. -fun RishonLeZionIsrael : Ind City ; - - --- The City of Riyadh in SaudiArabia. -fun RiyadhSaudiArabia : Ind City ; - - --- The City of Roermond in Netherlands. -fun RoermondNetherlands : Ind City ; - - --- The City of Rome in Italy. RomeItaly The capital of Italy and the largest City --- of the country. -fun RomeItaly : Ind EuropeanCity ; - - --- The City of Rosas in Spain. -fun RosasSpain : Ind City ; - - --- The City of RostovOnDon in Russia. -fun RostovOnDonRussia : Ind City ; - - --- The City of Ruhengeri in Rwanda. -fun RuhengeriRwanda : Ind City ; - - -fun SaadaPakistan : Ind GeographicArea ; - --- The City of Saada in Yemen. -fun SaadaYemen : Ind City ; - - --- The City of Sabatena in Colombia. -fun SabatenaColombia : Ind City ; - - --- The City of Sacramento in UnitedStates. -fun SacramentoUnitedStates : Ind City ; - - --- The City of SaintAvold in France. -fun SaintAvoldFrance : Ind City ; - - --- A dependency of the UnitedKingdom -fun SaintHelena : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of SaintJeanDeLuz in France. -fun SaintJeanDeLuzFrance : Ind City ; - - --- A large City in Missouri. -fun SaintLouisMissouri : Ind AmericanCity ; - - --- The capital of Minnesota, borders --- MinneapolisMinnesota. -fun SaintPaulMinnesota : Ind AmericanCity ; - - --- A dependency of France -fun SaintPierreAndMiquelon : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of SaintSebastian in Spain. -fun SaintSebastianSpain : Ind City ; - - --- The City of Sairanbar in Iraq. -fun SairanbarIraq : Ind City ; - - --- The City of SajaIA in GazaStrip. -fun SajaIAGazaStrip : Ind City ; - - --- The City of SallentDeGallego in Spain. -fun SallentDeGallegoSpain : Ind City ; - - --- The City of Samaria in WestBank. -fun SamariaWestBank : Ind City ; - - --- The City of Samashki in Russia. -fun SamashkiRussia : Ind City ; - - --- The Nation of Samoa. -fun Samoa : Ind Nation ; - - --- The City of SanDiego in Colombia. -fun SanDiegoColombia : Ind City ; - - --- A large City in California, --- located on the San Francisco Bay. -fun SanFranciscoCalifornia : Ind AmericanCity ; - - --- The City of SanJose in CostaRica. -fun SanJoseCostaRica : Ind City ; - - --- The City of SanLuis in Colombia. -fun SanLuisColombia : Ind City ; - - --- The City of SanMiguel in ElSalvador. -fun SanMiguelElSalvador : Ind City ; - - --- The City of SanPablo in Colombia. -fun SanPabloColombia : Ind City ; - - --- The City of SanSabatian in Spain. -fun SanSabatianSpain : Ind City ; - - --- The City of Sanaa in Yemen. -fun SanaaYemen : Ind City ; - - --- The City of Sangaldan in India. -fun SangaldanIndia : Ind City ; - - --- The City of SantaMarta in Colombia. -fun SantaMartaColombia : Ind City ; - - --- The City of SantaPola in Spain. -fun SantaPolaSpain : Ind City ; - - -fun SantaRitaMountainsPanama : Ind GeographicArea ; - --- The City of Santiago in Chile. -fun SantiagoChile : Ind City ; - - --- The City of Sanur in Israel. -fun SanurIsrael : Ind City ; - - --- The City of Sarajevo in BosniaAndHerzegovina. -fun SarajevoBosniaAndHerzegovina : Ind City ; - - --- The City of Satkhira in Bangladesh. -fun SatkhiraBangladesh : Ind City ; - - --- A City in Georgia near the mouth of --- the Savannah River. -fun SavannahGeorgia : Ind AmericanCity ; - - --- A division of the UnitedKingdom. -fun Scotland : Ind GeopoliticalArea ; - - --- The City of Segovia in Colombia. -fun SegoviaColombia : Ind City ; - - --- The City of Seoul in SouthKorea. -fun SeoulSouthKorea : Ind City ; - - --- The City of Seville in Spain. -fun SevilleSpain : Ind City ; - - --- The City of ShadmotMehola in WestBank. -fun ShadmotMeholaWestBank : Ind City ; - - --- The City of ShaveiShomron in WestBank. -fun ShaveiShomronWestBank : Ind City ; - - --- The City of SheikhAjlun in GazaStrip. -fun SheikhAjlunGazaStrip : Ind City ; - - --- The City of Shilo in WestBank. -fun ShiloWestBank : Ind City ; - - --- The City of Shimi in Ecuador. -fun ShimiEcuador : Ind City ; - - --- The City of Shlomi in Israel. -fun ShlomiIsrael : Ind City ; - - --- The City of SidiHalifah in Libya. -fun SidiHalifahLibya : Ind City ; - - --- The City of Sidon in Lebanon. -fun SidonLebanon : Ind City ; - - --- The City of Siirt in Turkey. -fun SiirtTurkey : Ind City ; - - --- The City of SilatADahar in WestBank. -fun SilatADaharWestBank : Ind City ; - - -fun SipadanIslandMalaysia : Ind GeographicArea ; - --- The City of Sitra. -fun Sitra : Ind City ; - - --- The City of Sitrah in Bahrain. -fun SitrahBahrain : Ind City ; - - --- The City of Sopore in India. -fun SoporeIndia : Ind City ; - - --- A state in the southeastern UnitedStates. -fun SouthCarolina : Ind AmericanState ; - - --- A state in the northern midwest of the UnitedStates. -fun SouthDakota : Ind AmericanState ; - - --- A dependency of the UnitedKingdom -fun SouthGeorgiaAndTheSouthSandwichIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The former communist nation of the Soviet Union. -fun SovietUnion : Ind EuropeanNation ; - - -fun SpratlyIslands : Ind (both LandArea GeopoliticalArea) ; - --- The City of Srinagar in India. -fun SrinagarIndia : Ind City ; - - --- The City of Srinigar in India. -fun SrinigarIndia : Ind City ; - - --- The City of Sriperumbudur in India. -fun SriperumbudurIndia : Ind City ; - - --- The City of Stewartstown in NorthernIreland. -fun StewartstownNorthernIreland : Ind City ; - - --- The City of Stockholm in Sweden. -fun StockholmSweden : Ind City ; - - --- The City of Strasbourg in France. -fun StrasbourgFrance : Ind City ; - - --- The City of SukaiManiyah. -fun SukaiManiyah : Ind City ; - - -fun SukaimaniyahIraq : Ind GeographicArea ; - --- The City of Sulawesi in Indonesia. -fun SulawesiIndonesia : Ind City ; - - --- The City of Sulaymaniyah in Iraq. -fun SulaymaniyahIraq : Ind City ; - - --- The City of Sumayr in Yemen. -fun SumayrYemen : Ind City ; - - --- The City of Susiya in WestBank. -fun SusiyaWestBank : Ind City ; - - --- A dependency of Norway -fun Svalbard : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of TBilisi in RepublicOfGeorgia. -fun TBilisiGeorgia : Ind City ; - - --- The City of Taila in Pakistan. -fun TailaPakistan : Ind City ; - - --- The City of TamezGuida in Algeria. -fun TamezGuidaAlgeria : Ind City ; - - --- The City of Tandy in SriLanka. -fun TandySriLanka : Ind City ; - - --- The City of Taxila in Pakistan. -fun TaxilaPakistan : Ind City ; - - --- The City of Tegucigalpa in Honduras. -fun TegucigalpaHonduras : Ind City ; - - --- The City of Teheran in Iran. -fun TeheranIran : Ind City ; - - --- The City of Tehran. -fun Tehran : Ind City ; - - --- The City of Tekoa in WestBank. -fun TekoaWestBank : Ind City ; - - --- The City of TelAviv in Israel. -fun TelAvivIsrael : Ind City ; - - -fun TelHaShomerJunctionIsrael : Ind GeographicArea ; - --- The City of TelQateifa in GazaStrip. -fun TelQateifaGazaStrip : Ind City ; - - --- The City of TelRumeiyda in Israel. -fun TelRumeiydaIsrael : Ind City ; - - --- The City of Telem in Israel. -fun TelemIsrael : Ind City ; - - --- The City of Tena in WestBank. -fun TenaWestBank : Ind City ; - - --- A state in the southeastern UnitedStates. -fun Tennessee : Ind AmericanState ; - - --- The second largest AmericanState, located in the southwest --- on the GulfOfMexico. -fun Texas : Ind AmericanState ; - - --- The Nation of TheBahamas. -fun TheBahamas : Ind Nation ; - - --- The City of TheHague in Netherlands. -fun TheHagueNetherlands : Ind City ; - - -fun TheKyrgyzCapitalBishkekChina : Ind GeographicArea ; - --- The City of Thekraguri in India. -fun ThekraguriIndia : Ind City ; - - --- The City of Tiaret in Algeria. -fun TiaretAlgeria : Ind City ; - - --- The City of Tirat in Algeria. -fun TiratAlgeria : Ind City ; - - --- A dependency of NewZealand -fun Tokelau : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The capital and largest City in Japan. -fun TokyoJapan : Ind City ; - - --- The City of Tolosa in Spain. -fun TolosaSpain : Ind City ; - - --- The City of Topkaki in Turkey. -fun TopkakiTurkey : Ind City ; - - --- The City of Trabzon in Turkey. -fun TrabzonTurkey : Ind City ; - - -fun TrincomaleeHarborSriLanka : Ind GeographicArea ; - --- The City of Tripoli in Libya. -fun TripoliLibya : Ind City ; - - --- A dependency of France -fun TromelinIsland : Ind (both Island DependencyOrSpecialSovereigntyArea) ; - - --- The City of Tulkarem in WestBank. -fun TulkaremWestBank : Ind City ; - - --- The City of Tulkarm in WestBank. -fun TulkarmWestBank : Ind City ; - - --- The City of Tunceli in Turkey. -fun TunceliTurkey : Ind City ; - - --- The City of Turbat in Pakistan. -fun TurbatPakistan : Ind City ; - - --- A dependency of the UnitedKingdom -fun TurksAndCaicosIslands : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - -fun UWaIndianReservationColombia : Ind GeographicArea ; - --- The City of UmAlFahm in Israel. -fun UmAlFahmIsrael : Ind City ; - - --- The City of UmmQasr in Iraq. -fun UmmQasrIraq : Ind City ; - - --- The City of Urena in Venezuela. -fun UrenaVenezuela : Ind City ; - - --- The City of Urra in Colombia. -fun UrraColombia : Ind City ; - - --- The City of UrsMartan in Russia. -fun UrsMartanRussia : Ind City ; - - --- A state in the western UnitedStates. -fun Utah : Ind AmericanState ; - - --- The City of Valencia in Spain. -fun ValenciaSpain : Ind City ; - - --- The City of Valledupar in Colombia. -fun ValleduparColombia : Ind City ; - - --- The City of Van in Turkey. -fun VanTurkey : Ind City ; - - --- The City of Vavuniya in SriLanka. -fun VavuniyaSriLanka : Ind City ; - - --- A northeastern AmericanState know for its small towns --- and rustic beauty. -fun Vermont : Ind AmericanState ; - - --- The City of Vienna in Austria. -fun ViennaAustria : Ind City ; - - --- The City of Vientiane in Laos. -fun VientianeLaos : Ind City ; - - --- The City of Villavicencio in Colombia. -fun VillavicencioColombia : Ind City ; - - --- The VirginIslands is --- an Archipelago in the West Indies that comprises both the --- BritishVirginIslands, administered by the UnitedKingdom, and the --- USVirginIslands, administered by the UnitedStates. -fun VirginIslands : Ind (both Archipelago DependencyOrSpecialSovereigntyArea) ; - - --- A state in the southeastern UnitedStates --- that borders on WashingtonDC. -fun Virginia : Ind AmericanState ; - - --- The City of Vitoria in Spain. -fun VitoriaSpain : Ind City ; - - --- The City of Vitrolles in France. -fun VitrollesFrance : Ind City ; - - --- The City of Vladikavkaz in Russia. -fun VladikavkazRussia : Ind City ; - - --- The City of Vladivostok in Russia. -fun VladivostokRussia : Ind City ; - - --- The City of Volgodonsk in Russia. -fun VolgodonskRussia : Ind City ; - - --- The City of WadiAlDabaat in Yemen. -fun WadiAlDabaatYemen : Ind City ; - - --- The City of WadiAra in Israel. -fun WadiAraIsrael : Ind City ; - - --- The City of WadiKelt in WestBank. -fun WadiKeltWestBank : Ind City ; - - --- A dependency of the UnitedStates -fun WakeIsland : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- A dependency of France -fun WallisAndFutuna : Ind (both LandArea DependencyOrSpecialSovereigntyArea) ; - - --- The City of Warsaw in Poland. WarsawPoland The capital City of Poland. -fun WarsawPoland : Ind EuropeanCity ; - - --- An AmericanState on the PacificOcean. -fun Washington : Ind AmericanState ; - - --- The capitalCity of the UnitedStates. -fun WashingtonDCUnitedStates : Ind AmericanCity ; - - --- The City of Wattyan in Bahrain. -fun WattyanBahrain : Ind City ; - - --- A terroritory occupied by Israel. -fun WestBank : Ind (both LandArea (both Nation (both GeographicArea GeopoliticalArea))) ; - - --- The City of WestBeirut in Lebanon. -fun WestBeirutLebanon : Ind City ; - - --- A state in the southeastern UnitedStates -fun WestVirginia : Ind AmericanState ; - - --- A state in the midnorthern UnitedStates. -fun Wisconsin : Ind AmericanState ; - - --- A large western state in the UnitedStates. -fun Wyoming : Ind AmericanState ; - - --- The City of XiAn in China. -fun XiAnChina : Ind City ; - - --- The City of YaAbad in WestBank. -fun YaAbadWestBank : Ind City ; - - --- The City of YagurJunction in Israel. -fun YagurJunctionIsrael : Ind City ; - - --- The City of Yehud in Israel. -fun YehudIsrael : Ind City ; - - --- The City of Yerevan in Armenia. -fun YerevanArmenia : Ind City ; - - --- The City of Yitzhar in WestBank. -fun YitzharWestBank : Ind City ; - - --- The City of Yokota in Japan. -fun YokotaJapan : Ind City ; - - --- The City of Yopal in Colombia. -fun YopalColombia : Ind City ; - - --- The City of Yuksekova in Turkey. -fun YuksekovaTurkey : Ind City ; - - --- The City of Zaita in Israel. -fun ZaitaIsrael : Ind City ; - - --- The City of Zamar in Yemen. -fun ZamarYemen : Ind City ; - - --- The City of Zamboanga in Philippines. -fun ZamboangaPhilippines : Ind City ; - - --- The City of Zamboango in Philippines. -fun ZamboangoPhilippines : Ind City ; - - --- The City of Zaragoza in Spain. -fun ZaragozaSpain : Ind City ; - - --- The City of Zarauz in Spain. -fun ZarauzSpain : Ind City ; - - -fun ZeifIntersectionWestBank : Ind GeographicArea ; - --- The City of Zekharya in Israel. -fun ZekharyaIsrael : Ind City ; - - -fun Zimbabwe : Ind Nation ; - --- The City of Zulia in Colombia. -fun ZuliaColombia : Ind City ; - - --- The City of Zumaia in Spain. -fun ZumaiaSpain : Ind City ; - - --- The City of Zumarraga in Spain. -fun ZumarragaSpain : Ind City ; - - --- The City of Zvornik in BosniaAndHerzegovina. -fun ZvornikBosniaAndHerzegovina : Ind City ; - - -fun oilfieldsVenezuela : Ind GeographicArea ; -} \ No newline at end of file +} diff --git a/examples/SUMO/CountriesAndRegionsEng.gf b/examples/SUMO/CountriesAndRegionsEng.gf index 002404e0a..8ac58bc6e 100644 --- a/examples/SUMO/CountriesAndRegionsEng.gf +++ b/examples/SUMO/CountriesAndRegionsEng.gf @@ -1,852 +1,852 @@ --# -path=.:englishExtended -concrete CountriesAndRegionsEng of CountriesAndRegions = BasicEng ** open ParadigmsEng,NounEng in { - +concrete CountriesAndRegionsEng of CountriesAndRegions = MidLevelOntologyEng, GeographyEng, GovernmentEng ** open ParadigmsEng,NounEng in { + lin -NewJersey = UsePN (mkPN "New Jersey") ; -NewYorkState = UsePN (mkPN "New York") ; -Texas = UsePN (mkPN "Texas") ; -AdanaTurkey = UsePN (mkPN "Adana") ; -AddisAbabaEthiopia = UsePN (mkPN "Addis Ababa") ; -AdenYemen = UsePN (mkPN "Aden") ; -AdoraWestBank = UsePN (mkPN "Adora") ; -AfulaIsrael = UsePN (mkPN "Afula") ; -AgriTurkey = UsePN (mkPN "Agri") ; -AinDeflaAlgeria = UsePN (mkPN "Ain Defla") ; -AinElHajarAlgeria = UsePN (mkPN "Ain el Hajar") ; -AjaccioFrance = UsePN (mkPN "Ajaccio") ; -AlBalamandLebanon = UsePN (mkPN "Al-Balamand ") ; -AleiSinaiGazaStrip = UsePN (mkPN "Alei Sinai") ; -AleiZahavWestBank = UsePN (mkPN "Alei Zahav") ; -AleyLebanon = UsePN (mkPN "Aley") ; -AlgiersAlgeria = UsePN (mkPN "Algiers") ; -AlkhanYurtRussia = UsePN (mkPN "Alkhan-Yurt") ; -AlonMorehWestBank = UsePN (mkPN "Alon Moreh") ; -AmbonIndonesia = UsePN (mkPN "Ambon") ; -AmmanJordan = UsePN (mkPN "Amman") ; -AnNuwaydiratBahrain = UsePN (mkPN "An Nuwaydirat") ; -AndeanSpain = UsePN (mkPN "Andean") ; -AngkorWatCambodia = UsePN (mkPN "Angkor Wat ") ; -AnkaraTurkey = UsePN (mkPN "Ankara") ; -AntalyaTurkey = UsePN (mkPN "Antalya") ; -AntioquiaColombia = UsePN (mkPN "Antioquia") ; -AntwerpBelgium = UsePN (mkPN "Antwerp") ; -ApumiracPeru = UsePN (mkPN "Apumirac") ; -ApureVenezuela = UsePN (mkPN "Apure") ; -AraucaColombia = UsePN (mkPN "Arauca") ; -ArgunRussia = UsePN (mkPN "Argun") ; -ArielWestBank = UsePN (mkPN "Ariel") ; -ArmaghNorthernIreland = UsePN (mkPN "Armagh") ; -ArzewAlgeria = UsePN (mkPN "Arzew") ; -AshdodIsrael = UsePN (mkPN "Ashdod") ; -AskelonIsrael = UsePN (mkPN "Askelon") ; -AsmaraEritrea = UsePN (mkPN "Asmara") ; -AssamIndia = UsePN (mkPN "Assam") ; -AswanEgypt = UsePN (mkPN "Aswan") ; -AsyutEgypt = UsePN (mkPN "Asyut") ; -AthensGreece = UsePN (mkPN "Athens") ; -AtrushIraq = UsePN (mkPN "Atrush") ; -AtzmonaGazaStrip = UsePN (mkPN "Atzmona") ; -AvneiHefetzIsrael = UsePN (mkPN "Avnei Hefetz") ; -AyacuchoPeru = UsePN (mkPN "Ayacucho") ; -AzorIsrael = UsePN (mkPN "Azor") ; -BadVilbelGermany = UsePN (mkPN "Bad Vilbel") ; -BaghdadIraq = UsePN (mkPN "Baghdad") ; -BagreColombia = UsePN (mkPN "Bagre") ; -BahawalpurPakistan = UsePN (mkPN "Bahawalpur") ; -BakaAlGarbiyehIsrael = UsePN (mkPN "Baka al-Garbiyeh") ; -BakkaAlSharkiyaWestBank = UsePN (mkPN "Bakka al-Sharkiya") ; -BakuAzerbaijan = UsePN (mkPN "Baku") ; -BaleEthiopia = UsePN (mkPN "Bale") ; -BanbridgeNorthernIreland = UsePN (mkPN "Banbridge") ; -BangkokThailand = UsePN (mkPN "Bangkok") ; -BangorNorthernIreland = UsePN (mkPN "Bangor") ; -BanguiCentralAfricanRepublic = UsePN (mkPN "Bangui") ; -BarcelonaSpain = UsePN (mkPN "Barcelona") ; -BarkeoCambodia = UsePN (mkPN "Barkeo") ; -BarrancabermejaColombia = UsePN (mkPN "Barrancabermeja") ; -BasraIsrael = UsePN (mkPN "Basra") ; -BatYamIsrael = UsePN (mkPN "Bat Yam") ; -BatmanTurkey = UsePN (mkPN "Batman") ; -BeasainSpain = UsePN (mkPN "Beasain") ; -BeErShevaIsrael = UsePN (mkPN "Be'er Sheva") ; -BeirutLebanon = UsePN (mkPN "Beirut") ; -BeitElWestBank = UsePN (mkPN "Beit El") ; -BeitHaggaiWestBank = UsePN (mkPN "Beit Haggai") ; -BeitSahurWestBank = UsePN (mkPN "Beit Sahur") ; -BeitSheAnIsrael = UsePN (mkPN "Beit She'an") ; -BeitShemeshIsrael = UsePN (mkPN "Beit Shemesh") ; -BeledweyneSomalia = UsePN (mkPN "Beledweyne") ; -BelfastNorthernIreland = UsePN (mkPN "Belfast") ; -BelgradeSerbiaAndMontenegro = UsePN (mkPN "Belgrade") ; -BerlinGermany = UsePN (mkPN "Berlin") ; -BetLeHiyehGazaStrip = UsePN (mkPN "Bet LeHiyeh") ; -BetLidJunctionIsrael = UsePN (mkPN "Bet Lid Junction") ; -BethElIsrael = UsePN (mkPN "Beth El") ; -BethlehemWestBank = UsePN (mkPN "Bethlehem") ; -BidyaWestBank = UsePN (mkPN "Bidya") ; -BilbaoSpain = UsePN (mkPN "Bilbao") ; -BillabonaSpain = UsePN (mkPN "Billabona") ; -BinyaminaIsrael = UsePN (mkPN "Binyamina") ; -BKaotWestBank = UsePN (mkPN "B'kaot") ; -BneiAyishIsrael = UsePN (mkPN "Bnei Ayish") ; -BogotaColombia = UsePN (mkPN "Bogota") ; -BolognaItaly = UsePN (mkPN "Bologna") ; -BonnGermany = UsePN (mkPN "Bonn") ; -BosphorousStraitsTurkey = UsePN (mkPN "BosphorousStraits") ; -BouiraAlgeria = UsePN (mkPN "Bouira") ; -BouzeGueneAlgeria = UsePN (mkPN "Bouze-guene") ; -BrusselsBelgium = UsePN (mkPN "Brussels") ; -BucaramangaColombia = UsePN (mkPN "Bucaramanga") ; -BucharestIndia = UsePN (mkPN "Bucharest") ; -BuenosAiresArgentina = UsePN (mkPN "Buenos Aires") ; -BuinakskRussia = UsePN (mkPN "Buinaksk") ; -BwindiforestUganda = UsePN (mkPN "Bwindi forest") ; -CabindaAngola = UsePN (mkPN "Cabinda") ; -CaglayanTurkey = UsePN (mkPN "Caglayan") ; -CairoEgypt = UsePN (mkPN "Cairo") ; -CalcuttaIndia = UsePN (mkPN "Calcutta") ; -CaliColombia = UsePN (mkPN "Cali") ; -CampZamaJapan = UsePN (mkPN "Camp Zama") ; -CankiriTurkey = UsePN (mkPN "Cankiri") ; -CapeTownSouthAfrica = UsePN (mkPN "Cape Town") ; -CaritasPolandChechnya = UsePN (mkPN "Caritas Poland") ; -CarmelIsrael = UsePN (mkPN "Carmel") ; -CarmenDeBolivarColombia = UsePN (mkPN "Carmen de Bolivar") ; -CarrejonColombia = UsePN (mkPN "Carrejon") ; -ChamanPakistan = UsePN (mkPN "Chaman") ; -ChararESharifIndia = UsePN (mkPN "Charar-e-Sharif ") ; -CharsaadaPakistan = UsePN (mkPN "Charsaada") ; -ChernoRechyeRussia = UsePN (mkPN "Cherno-rechye") ; -ChicagoUnitedStates = UsePN (mkPN "Chicago") ; -ChisimayuSomalia = UsePN (mkPN "Chisimayu") ; -ChittagongBangladesh = UsePN (mkPN "Chittagong") ; -ChobaAngola = UsePN (mkPN "Choba") ; -ChocoColombia = UsePN (mkPN "Choco") ; -ChorrosQueroVenezuela = UsePN (mkPN "Chorros-quero") ; -ClarkAirbasePhilippines = UsePN (mkPN "Clark Airbase") ; -CoimbatoreIndia = UsePN (mkPN "Coimbatore") ; -CologneGermany = UsePN (mkPN "Cologne") ; -ColombiaCityColombia = UsePN (mkPN "Colombia City") ; -ColombiaPanama = UsePN (mkPN "Colombia") ; -ColomboSriLanka = UsePN (mkPN "Colombo") ; -ComayaguaHonduras = UsePN (mkPN "Comayagua") ; -CopacaBanaCuba = UsePN (mkPN "Copaca-bana") ; -CopenhagenDenmark = UsePN (mkPN "Copenhagen") ; -CorsicaFrance = UsePN (mkPN "Corsica") ; -CorteFrance = UsePN (mkPN "Corte") ; -CorumTurkey = UsePN (mkPN "Corum") ; -CundiNamarcaColombia = UsePN (mkPN "Cundi-namarca") ; -CupiaguaColombia = UsePN (mkPN "Cupiagua") ; -CuzcoPeru = UsePN (mkPN "Cuzco") ; -DagestanRussia = UsePN (mkPN "Dagestan") ; -DahukIraq = UsePN (mkPN "Dahuk") ; -DangDistrictNepal = UsePN (mkPN "Dang district") ; -DarEsSalaAmTanzania = UsePN (mkPN "Dar es Sala'am") ; -DarvazTajikistan = UsePN (mkPN "Darvaz") ; -DebaSpain = UsePN (mkPN "Deba") ; -DelhiIndia = UsePN (mkPN "Delhi") ; -DhahranSaudiArabia = UsePN (mkPN "Dhahran") ; -DhakaBangladesh = UsePN (mkPN "Dhaka") ; -DinanFrance = UsePN (mkPN "Dinan") ; -DirNaballahWestBank = UsePN (mkPN "Dir Naballah") ; -DireDawaEthiopia = UsePN (mkPN "Dire Dawa") ; -DistrictOfMansehraPakistan = UsePN (mkPN "district of Mansehra") ; -DjakashariGeorgia = UsePN (mkPN "Djakashari") ; -DjerbaTunisia = UsePN (mkPN "Djerba") ; -DodaIndia = UsePN (mkPN "Doda") ; -DortmundGermany = UsePN (mkPN "Dortmund") ; -DublinIreland = UsePN (mkPN "Dublin") ; -DuesseldorfGermany = UsePN (mkPN "Duesseldorf") ; -DugitGazaStrip = UsePN (mkPN "Dugit") ; -DurangoSpain = UsePN (mkPN "Durango") ; -DushanbeTajikistan = UsePN (mkPN "Dushanbe") ; -DushanbeAirportTajikistan = UsePN (mkPN "Dushanbe airport") ; -DushanbeGarmTajikistan = UsePN (mkPN "Dushanbe Garm") ; -EastJerusalemIsrael = UsePN (mkPN "East Jerusalem") ; -EfratWestBank = UsePN (mkPN "Efrat") ; -EilatIsrael = UsePN (mkPN "Eilat") ; -EinavWestBank = UsePN (mkPN "Einav") ; -ElBagreColombia = UsePN (mkPN "El Bagre") ; -ElBirehWestBank = UsePN (mkPN "El Bireh") ; -ElPlayonColombia = UsePN (mkPN "El Playon") ; -ElRipialApureVenezuela = UsePN (mkPN "El Ripial Apure") ; -ElayoSomalia = UsePN (mkPN "Elayo") ; -ElAzzariyaWestBank = UsePN (mkPN "el-Azzariya") ; -EleiSinaiGazaStrip = UsePN (mkPN "Elei Sinai") ; -EmmanuelWestBank = UsePN (mkPN "Emmanuel") ; -ErezGazaStrip = UsePN (mkPN "Erez") ; -FethiyeAndMarmarisTurkey = UsePN (mkPN "Fethiye and Marmaris") ; -FloridaUnitedStates = UsePN (mkPN "Florida") ; -FormequeColombia = UsePN (mkPN "Formeque") ; -FrankfurtGermany = UsePN (mkPN "Frankfurt") ; -FrenchHillIsrael = UsePN (mkPN "French Hill") ; -FuengirolaSpain = UsePN (mkPN "Fuengirola") ; -FusagasusaColombia = UsePN (mkPN "Fusagasusa") ; -GaliAbkhaziaGeorgia = UsePN (mkPN "Gali Abkhazia") ; -GanimWestBank = UsePN (mkPN "Ganim") ; -GashuriIsrael = UsePN (mkPN "Gashuri ") ; -GeneralSantosPhilippines = UsePN (mkPN "General Santos") ; -GenevaSwitzerland = UsePN (mkPN "Geneva") ; -GetxoSpain = UsePN (mkPN "Getxo") ; -GhalebiehIraq = UsePN (mkPN "Ghalebieh") ; -GhaziabadUttarPradeshIndia = UsePN (mkPN "Ghaziabad Uttar Pradesh") ; -GiloIsrael = UsePN (mkPN "Gilo") ; -GivatZeEvWestBank = UsePN (mkPN "Givat Ze'ev") ; -GizaEgypt = UsePN (mkPN "Giza") ; -GonegalleSriLanka = UsePN (mkPN "Gonegalle") ; -GranadaSpain = UsePN (mkPN "Granada") ; -GrazAustria = UsePN (mkPN "Graz") ; -GroznyChechnya = UsePN (mkPN "Grozny") ; -GuilinChina = UsePN (mkPN "Guilin") ; -GujaratIndia = UsePN (mkPN "Gujarat") ; -GushEtzionWestBank = UsePN (mkPN "Gush Etzion") ; -GushKatifGazaStrip = UsePN (mkPN "Gush Katif") ; -HaderaIsrael = UsePN (mkPN "Hadera") ; -HaifaIsrael = UsePN (mkPN "Haifa") ; -HamburgGermany = UsePN (mkPN "Hamburg") ; -HamisMiliyanaAlgeria = UsePN (mkPN "Hamis Miliyana") ; -HamraWestBank = UsePN (mkPN "Hamra") ; -HannoverGermany = UsePN (mkPN "Hannover") ; -HarBrachaWestBank = UsePN (mkPN "Har Bracha") ; -HarerEthiopia = UsePN (mkPN "Harer") ; -HavanaCuba = UsePN (mkPN "Havana") ; -HawanaIraq = UsePN (mkPN "Hawana") ; -HeartAfghanistan = UsePN (mkPN "Heart") ; -HebronWestBank = UsePN (mkPN "Hebron") ; -HermeshIsrael = UsePN (mkPN "Hermesh") ; -HernaniSpain = UsePN (mkPN "Hernani") ; -HerzliyaIsrael = UsePN (mkPN "Herzliya") ; -HilversumNetherlands = UsePN (mkPN "Hilversum") ; -HizmaWestBank = UsePN (mkPN "Hizma") ; -HodayaJunctionIsrael = UsePN (mkPN "Hodaya Junction") ; -HolonJunctionIsrael = UsePN (mkPN "Holon Junction") ; -HuallgaPeru = UsePN (mkPN "Huallga") ; -HurghadaEgypt = UsePN (mkPN "Hurghada") ; -HyderabadPakistan = UsePN (mkPN "Hyderabad") ; -IbsrilIraq = UsePN (mkPN "Ibsril") ; -IncirlikAirbaseTurkey = UsePN (mkPN "Incirlik Airbase") ; -IpilPhilippines = UsePN (mkPN "Ipil") ; -IrbilIraq = UsePN (mkPN "Irbil") ; -IslamabadPakistan = UsePN (mkPN "Islamabad") ; -IslandOfBaliIndonesia = UsePN (mkPN "Island of Bali") ; -IstanbulTurkey = UsePN (mkPN "Istanbul") ; -ItamarWestBank = UsePN (mkPN "Itamar") ; -IzmirTurkey = UsePN (mkPN "Izmir") ; -JaffaIsrael = UsePN (mkPN "Jaffa") ; -JaffnaSriLanka = UsePN (mkPN "Jaffna") ; -JakartaIndonesia = UsePN (mkPN "Jakarta") ; -JalahIndia = UsePN (mkPN "Jalah") ; -JalpaiguriRailwayStationIndia = UsePN (mkPN "Jalpaiguri Railway Station") ; -JammuIndia = UsePN (mkPN "Jammu") ; -JangasPeru = UsePN (mkPN "Jangas") ; -JeninWestBank = UsePN (mkPN "Jenin") ; -JerusalemIsrael = UsePN (mkPN "Jerusalem") ; -JMainWestBank = UsePN (mkPN "J'main") ; -JohannesburgSouthAfrica = UsePN (mkPN "Johannesburg") ; -JoloPhilippines = UsePN (mkPN "Jolo") ; -JubialSaudiArabia = UsePN (mkPN "Jubial") ; -JullundurIndia = UsePN (mkPN "Jullundur") ; -KabacanPhilippines = UsePN (mkPN "Kabacan") ; -KabulAfghanistan = UsePN (mkPN "Kabul") ; -KafrAkabWestBank = UsePN (mkPN "Kafr Akab") ; -KafrIdnaWestBank = UsePN (mkPN "Kafr Idna") ; -KalkilyaWestBank = UsePN (mkPN "Kalkilya") ; -KalmunaiSriLanka = UsePN (mkPN "Kalmunai") ; -KampalaUganda = UsePN (mkPN "Kampala") ; -KandySriLanka = UsePN (mkPN "Kandy") ; -KanihamaIndia = UsePN (mkPN "Kanihama") ; -KarachiPakistan = UsePN (mkPN "Karachi") ; -KarkurIsrael = UsePN (mkPN "Karkur") ; -KarmeiTzurWestBank = UsePN (mkPN "Karmei Tzur") ; -KarneiShomronWestBank = UsePN (mkPN "Karnei Shomron") ; -KashmirIndia = UsePN (mkPN "Kashmir") ; -KatmanduAirportNepal = UsePN (mkPN "Katmandu Airport") ; -KedumimWestBank = UsePN (mkPN "Kedumim") ; -KedumimSettlementWestBank = UsePN (mkPN "Kedumim Settlement") ; -KfarBaAnehIsrael = UsePN (mkPN "Kfar Ba'aneh") ; -KfarDaromGazaStrip = UsePN (mkPN "Kfar Darom") ; -KfarHessIsrael = UsePN (mkPN "Kfar Hess") ; -KfarSabaIsrael = UsePN (mkPN "Kfar Saba") ; -KfarTzurifWestBank = UsePN (mkPN "Kfar Tzurif") ; -KfarYamGazaStrip = UsePN (mkPN "Kfar Yam") ; -KfarDaromNetzarimIsrael = UsePN (mkPN "Kfar-Darom Netzarim") ; -KhankalaChechnya = UsePN (mkPN "Khankala") ; -KhartoumSudan = UsePN (mkPN "Khartoum") ; -KhelilAlgeria = UsePN (mkPN "Khelil") ; -KhobarSaudiArabia = UsePN (mkPN "Khobar") ; -KibbutzGalEdIsrael = UsePN (mkPN "Kibbutz Gal 'Ed") ; -KibbutzMeravIsrael = UsePN (mkPN "Kibbutz Merav") ; -KibbutzSheluhotIsrael = UsePN (mkPN "Kibbutz Sheluhot") ; -KidapawanPhilippines = UsePN (mkPN "Kidapawan") ; -KigaliRwanda = UsePN (mkPN "Kigali") ; -KirikkaleTurkey = UsePN (mkPN "Kirikkale") ; -KiryatArbaWestBank = UsePN (mkPN "Kiryat Arba") ; -KiryatMotzkinIsrael = UsePN (mkPN "Kiryat Motzkin") ; -KiryatNetafimWestBank = UsePN (mkPN "Kiryat Netafim") ; -KissufimGazaStrip = UsePN (mkPN "Kissufim") ; -KiursehirBoztepTurkey = UsePN (mkPN "Kiursehir-Boztep") ; -KlaiyatLebanon = UsePN (mkPN "Klaiyat") ; -KohlanYemen = UsePN (mkPN "Kohlan") ; -KomsomoLabadTajikistan = UsePN (mkPN "Komsomo-labad") ; -KuwaitCityKuwait = UsePN (mkPN "Kuwait City") ; -LaCeibaHonduras = UsePN (mkPN "La Ceiba") ; -LaGabarraVenezuela = UsePN (mkPN "La Gabarra") ; -LaGuajiraColombia = UsePN (mkPN "La Guajira") ; -LaPazBolivia = UsePN (mkPN "La Paz") ; -LaVictoriaVenezuela = UsePN (mkPN "La Victoria") ; -LahorePakistan = UsePN (mkPN "Lahore") ; -LarbaAlgeria = UsePN (mkPN "Larba") ; -LarnacaCyprus = UsePN (mkPN "Larnaca") ; -LasarteSpain = UsePN (mkPN "Lasarte") ; -LeizaSpain = UsePN (mkPN "Leiza") ; -LesEucalyptusDistrictAlgeria = UsePN (mkPN "Les Eucalyptus district") ; -LibertadorVenezuela = UsePN (mkPN "Libertador") ; -LiceTurkey = UsePN (mkPN "Lice") ; -LIleRousseFrance = UsePN (mkPN "L'Ile-Rousse") ; -LimaPeru = UsePN (mkPN "Lima") ; -LindosRhodes = UsePN (mkPN "Lindos") ; -LinzAustralia = UsePN (mkPN "Linz") ; -LockerbieUnitedKingdom = UsePN (mkPN "Lockerbie") ; -LogornoSpain = UsePN (mkPN "Logorno") ; -LondonUnitedKingdom = UsePN (mkPN "London") ; -LondonberryNorthernIreland = UsePN (mkPN "Londonberry") ; -LosAngelesUnitedStates = UsePN (mkPN "Los Angeles") ; -LosAngelesInternationalAirportUnitedStates = UsePN (mkPN "Los Angeles International Airport") ; -LosBancosVenezuela = UsePN (mkPN "Los Bancos") ; -LosKatiosNationalParkColombia = UsePN (mkPN "Los Katios National Park") ; -LuandaAngola = UsePN (mkPN "Luanda") ; -LuebeckGermany = UsePN (mkPN "Luebeck") ; -LundaNorteAngola = UsePN (mkPN "Lunda Norte") ; -LuxorEgypt = UsePN (mkPN "Luxor") ; -LyonsFrance = UsePN (mkPN "Lyons") ; -MaAlehMichmashWestBank = UsePN (mkPN "Ma'aleh Michmash") ; -MaccabimIsrael = UsePN (mkPN "Maccabim ") ; -MadhuSriLanka = UsePN (mkPN "Madhu") ; -MadrasIndia = UsePN (mkPN "Madras") ; -MadridSpain = UsePN (mkPN "Madrid") ; -MagdalenaColombia = UsePN (mkPN "Magdalena") ; -MaidanSharAfghanistan = UsePN (mkPN "Maidan Shar") ; -MakhachkalaRussia = UsePN (mkPN "Makhachkala") ; -MalagaSpain = UsePN (mkPN "Malaga") ; -MalukkaIslandsIndonesia = UsePN (mkPN "Malukka islands") ; -ManaguaNigeria = UsePN (mkPN "Managua") ; -ManamaBahrain = UsePN (mkPN "Manama") ; -ManchesterUnitedKingdom = UsePN (mkPN "Manchester") ; -MangalsenAndSanpheBagarNepal = UsePN (mkPN "Mangalsen and Sanphe Bagar ") ; -ManilaPhilippines = UsePN (mkPN "Manila") ; -MaonIsrael = UsePN (mkPN "Maon") ; -MapourditSudan = UsePN (mkPN "Mapourdit") ; -MarSabaWestBank = UsePN (mkPN "Mar Saba") ; -MarawiPhilippines = UsePN (mkPN "Marawi") ; -MardanPakistan = UsePN (mkPN "Mardan") ; -MarmarisTurkey = UsePN (mkPN "Marmaris") ; -MarseillesFrance = UsePN (mkPN "Marseilles") ; -MashaWestBank = UsePN (mkPN "Masha") ; -MatsumotoJapan = UsePN (mkPN "Matsumoto") ; -MawdiyahYemen = UsePN (mkPN "Mawdiyah") ; -MeaShearimIsrael = UsePN (mkPN "Mea Shearim") ; -MeccaSaudiArabia = UsePN (mkPN "Mecca") ; -MechoraWestBank = UsePN (mkPN "Mechora") ; -MedanIndonesia = UsePN (mkPN "Medan") ; -MedellinColombia = UsePN (mkPN "Medellin") ; -MegidoIsrael = UsePN (mkPN "Megido") ; -MeholaIsrael = UsePN (mkPN "Mehola") ; -MekholahIsrael = UsePN (mkPN "Mekholah") ; -MersinTurkey = UsePN (mkPN "Mersin") ; -MetaColombia = UsePN (mkPN "Meta") ; -MetullaIsrael = UsePN (mkPN "Metulla") ; -MetzerIsrael = UsePN (mkPN "Metzer") ; -MilanItaly = UsePN (mkPN "Milan") ; -MindanaoPhilippines = UsePN (mkPN "Mindanao") ; -MinharotRoadWestBank = UsePN (mkPN "Minharot Road") ; -MiranShahPakistan = UsePN (mkPN "Miran Shah ") ; -MituColombia = UsePN (mkPN "Mitu") ; -ModiinIllitWestBank = UsePN (mkPN "Modiin Illit") ; -MombassaKenya = UsePN (mkPN "Mombassa") ; -MoragJunctionGazaStrip = UsePN (mkPN "Morag Junction") ; -MoscowRussia = UsePN (mkPN "Moscow") ; -MoshavHagorIsrael = UsePN (mkPN "Moshav Hagor") ; -MoshavTomerWestBank = UsePN (mkPN "Moshav Tomer") ; -MukallahAdenYemen = UsePN (mkPN "Mukallah-Aden") ; -MunchenGladbachGermany = UsePN (mkPN "Munchen-Gladbach") ; -MunsterGermany = UsePN (mkPN "Munster") ; -MurloughNorthernIreland = UsePN (mkPN "Murlough") ; -MusMusIsrael = UsePN (mkPN "Mus Mus") ; -MutataColombia = UsePN (mkPN "Mutata") ; -MutturSriLanka = UsePN (mkPN "Muttur") ; -NaAlinWestBank = UsePN (mkPN "Na'alin") ; -NablusWestBank = UsePN (mkPN "Nablus") ; -NahalOzGazaStrip = UsePN (mkPN "Nahal Oz") ; -NaharaimIsrael = UsePN (mkPN "Naharaim") ; -NahariyaIsrael = UsePN (mkPN "Nahariya") ; -NairobiKenya = UsePN (mkPN "Nairobi") ; -NajafIraq = UsePN (mkPN "Najaf") ; -NallurAreaSriLanka = UsePN (mkPN "Nallur Area") ; -NaquraLebanon = UsePN (mkPN "Naqura") ; -NarayangangBangladesh = UsePN (mkPN "Narayangang") ; -NetanyaIsrael = UsePN (mkPN "Netanya") ; -NetzarimGazaStrip = UsePN (mkPN "Netzarim") ; -NetzerHazaniGazaStrip = UsePN (mkPN "Netzer Hazani") ; -NeveDanielWestBank = UsePN (mkPN "Neve Daniel") ; -NeveYaminIsrael = UsePN (mkPN "Neve Yamin") ; -NewDelhiIndia = UsePN (mkPN "New Delhi") ; -NewYorkCityUnitedStates = UsePN (mkPN "New York City") ; -NeztarimSettlementGazaStrip = UsePN (mkPN "Neztarim Settlement") ; -NiameyNiger = UsePN (mkPN "Niamey") ; -NissanitGazaStrip = UsePN (mkPN "Nissanit") ; -NitzaneiOzWestBank = UsePN (mkPN "Nitzanei Oz") ; -NitzanimIsrael = UsePN (mkPN "Nitzanim") ; -NokdimTekoaRdWestBank = UsePN (mkPN "Nokdim-Tekoa Rd.") ; -NorteDeSantanderColombia = UsePN (mkPN "Norte de Santander") ; -NorthernCaucasiusChechnya = UsePN (mkPN "Northern Caucasius") ; -NovogroznyRussia = UsePN (mkPN "Novogrozny") ; -NovyyAtagiRussia = UsePN (mkPN "Novyy Atagi ") ; -OberwartAustria = UsePN (mkPN "Oberwart") ; -OfraWestBank = UsePN (mkPN "Ofra") ; -OilbaseAlgeria = UsePN (mkPN "Oil base") ; -oilfieldsVenezuela = UsePN (mkPN "oilfields") ; -OkaraPakistan = UsePN (mkPN "Okara") ; -OlayaHerreraColombia = UsePN (mkPN "Olaya Herrera") ; -OmaghNorthernIreland = UsePN (mkPN "Omagh") ; -OrYehudaIsrael = UsePN (mkPN "Or Yehuda") ; -OranAlgeria = UsePN (mkPN "Oran") ; -OsakaJapan = UsePN (mkPN "Osaka") ; -OsloNorway = UsePN (mkPN "Oslo") ; -OssnabruckGermany = UsePN (mkPN "Ossnabruck") ; -OthnielJunctionIsrael = UsePN (mkPN "Othniel Junction") ; -OtnielWestBank = UsePN (mkPN "Otniel") ; -OtzarinWestBank = UsePN (mkPN "Otzarin") ; -OzamisPhilippines = UsePN (mkPN "Ozamis") ; -PahalgamIndia = UsePN (mkPN "Pahalgam") ; -PalorinyaUganda = UsePN (mkPN "Palorinya") ; -PamplonaSpain = UsePN (mkPN "Pamplona") ; -PanamaCityPanama = UsePN (mkPN "Panama City") ; -PantrasGreece = UsePN (mkPN "Pantras") ; -PapayinColombia = UsePN (mkPN "Papayin") ; -PapuaIndonesia = UsePN (mkPN "Papua") ; -ParisFrance = UsePN (mkPN "Paris") ; -PatikulPhilippines = UsePN (mkPN "Patikul") ; -PauFrance = UsePN (mkPN "Pau") ; -PeAtSadehGazaStrip = UsePN (mkPN "Pe'at Sadeh") ; -PeshawarPakistan = UsePN (mkPN "Peshawar") ; -PetahTikvahIsrael = UsePN (mkPN "Petah Tikvah") ; -PhnomPenhCambodia = UsePN (mkPN "Phnom Penh") ; -PortadownIreland = UsePN (mkPN "Portadown") ; -PragueCzechRepublic = UsePN (mkPN "Prague") ; -PuertoAlviraColombia = UsePN (mkPN "Puerto Alvira") ; -PuertoLlerasColombia = UsePN (mkPN "Puerto Lleras") ; -PunjabPakistan = UsePN (mkPN "Punjab") ; -QuettaPakistan = UsePN (mkPN "Quetta") ; -QuitoEcuador = UsePN (mkPN "Quito") ; -RadaAmanYemen = UsePN (mkPN "Rada-Aman") ; -RafahGazaStrip = UsePN (mkPN "Rafah") ; -RamaJunctionWestBank = UsePN (mkPN "Rama Junction") ; -RamalDeAspusanaPeru = UsePN (mkPN "Ramal de Aspusana") ; -RamallahWestBank = UsePN (mkPN "Ramallah") ; -RamatGanIsrael = UsePN (mkPN "Ramat Gan") ; -RaminWestBank = UsePN (mkPN "Ramin") ; -RamleIsrael = UsePN (mkPN "Ramle") ; -RawalpindiPakistan = UsePN (mkPN "Rawalpindi") ; -ReusSpain = UsePN (mkPN "Reus") ; -RigaLatvia = UsePN (mkPN "Riga") ; -RijekaCroatia = UsePN (mkPN "Rijeka") ; -RimalDistrictGazaStrip = UsePN (mkPN "Rimal district") ; -RishonLeZionIsrael = UsePN (mkPN "Rishon Le Zion") ; -RiyadhSaudiArabia = UsePN (mkPN "Riyadh") ; -RoermondNetherlands = UsePN (mkPN "Roermond") ; -RomeItaly = UsePN (mkPN "Rome") ; -RosasSpain = UsePN (mkPN "Rosas") ; -RostovOnDonRussia = UsePN (mkPN "Rostov-on-Don") ; -RuhengeriRwanda = UsePN (mkPN "Ruhengeri") ; -SaadaYemen = UsePN (mkPN "Saada") ; -SabatenaColombia = UsePN (mkPN "Sabatena") ; -SacramentoUnitedStates = UsePN (mkPN "Sacramento") ; -SaintAvoldFrance = UsePN (mkPN "Saint Avold") ; -SaintSebastianSpain = UsePN (mkPN "Saint Sebastian") ; -SaintJeanDeLuzFrance = UsePN (mkPN "Saint-Jean-de-Luz") ; -SairanbarIraq = UsePN (mkPN "Sairanbar") ; -SajaIAGazaStrip = UsePN (mkPN "Saja'i'a ") ; -SallentDeGallegoSpain = UsePN (mkPN "Sallent de Gallego") ; -SamariaWestBank = UsePN (mkPN "Samaria") ; -SamashkiRussia = UsePN (mkPN "Samashki") ; -SanDiegoColombia = UsePN (mkPN "San Diego") ; -SanJoseCostaRica = UsePN (mkPN "San Jose") ; -SanLuisColombia = UsePN (mkPN "San Luis") ; -SanMiguelElSalvador = UsePN (mkPN "San Miguel") ; -SanPabloColombia = UsePN (mkPN "San Pablo") ; -SanSabatianSpain = UsePN (mkPN "San Sabatian") ; -SanaaYemen = UsePN (mkPN "Sanaa") ; -SangaldanIndia = UsePN (mkPN "Sangaldan") ; -SantaMartaColombia = UsePN (mkPN "Santa Marta") ; -SantaPolaSpain = UsePN (mkPN "Santa Pola") ; -SantaRitaMountainsPanama = UsePN (mkPN "Santa Rita Mountains") ; -SantiagoChile = UsePN (mkPN "Santiago") ; -SanurIsrael = UsePN (mkPN "Sanur") ; -SarajevoBosniaAndHerzegovina = UsePN (mkPN "Sarajevo") ; -SatkhiraBangladesh = UsePN (mkPN "Satkhira") ; -SegoviaColombia = UsePN (mkPN "Segovia") ; -SeoulSouthKorea = UsePN (mkPN "Seoul") ; -SevilleSpain = UsePN (mkPN "Seville") ; -ShadmotMeholaWestBank = UsePN (mkPN "Shadmot Mehola") ; -ShaveiShomronWestBank = UsePN (mkPN "Shavei Shomron") ; -SheikhAjlunGazaStrip = UsePN (mkPN "Sheikh Ajlun") ; -ShiloWestBank = UsePN (mkPN "Shilo") ; -ShimiEcuador = UsePN (mkPN "Shimi") ; -ShlomiIsrael = UsePN (mkPN "Shlomi") ; -SidiHalifahLibya = UsePN (mkPN "Sidi Halifah") ; -SidonLebanon = UsePN (mkPN "Sidon") ; -SiirtTurkey = UsePN (mkPN "Siirt") ; -SilatADaharWestBank = UsePN (mkPN "Silat a-Dahar") ; -SipadanIslandMalaysia = UsePN (mkPN "Sipadan Island") ; -SitrahBahrain = UsePN (mkPN "Sitrah") ; -SoporeIndia = UsePN (mkPN "Sopore") ; -SrinagarIndia = UsePN (mkPN "Srinagar") ; -SrinigarIndia = UsePN (mkPN "Srinigar") ; -SriperumbudurIndia = UsePN (mkPN "Sriperumbudur") ; -StewartstownNorthernIreland = UsePN (mkPN "Stewartstown") ; -StockholmSweden = UsePN (mkPN "Stockholm") ; -StrasbourgFrance = UsePN (mkPN "Strasbourg") ; -SukaimaniyahIraq = UsePN (mkPN "Sukai-maniyah") ; -SulawesiIndonesia = UsePN (mkPN "Sulawesi") ; -SulaymaniyahIraq = UsePN (mkPN "Sulaymaniyah") ; -SumayrYemen = UsePN (mkPN "Sumayr") ; -SusiyaWestBank = UsePN (mkPN "Susiya") ; -TailaPakistan = UsePN (mkPN "Taila") ; -TamezGuidaAlgeria = UsePN (mkPN "Tamez-guida") ; -TandySriLanka = UsePN (mkPN "Tandy") ; -TaxilaPakistan = UsePN (mkPN "Taxila") ; -TBilisiGeorgia = UsePN (mkPN "T'bilisi") ; -TegucigalpaHonduras = UsePN (mkPN "Tegucigalpa") ; -TeheranIran = UsePN (mkPN "Teheran") ; -TekoaWestBank = UsePN (mkPN "Tekoa") ; -TelAvivIsrael = UsePN (mkPN "Tel Aviv") ; ---TelAvivIsrael = UsePN (mkPN "Tel-Aviv") ; -TelHaShomerJunctionIsrael = UsePN (mkPN "Tel HaShomer Junction") ; -TelQateifaGazaStrip = UsePN (mkPN "Tel Qateifa") ; -TelRumeiydaIsrael = UsePN (mkPN "Tel Rumeiyda") ; -TelemIsrael = UsePN (mkPN "Telem") ; -TenaWestBank = UsePN (mkPN "Tena") ; -TheHagueNetherlands = UsePN (mkPN "The Hague") ; -TheKyrgyzCapitalBishkekChina = UsePN (mkPN "The Kyrgyz capital Bishkek.") ; -ThekraguriIndia = UsePN (mkPN "Thekraguri") ; -TiaretAlgeria = UsePN (mkPN "Tiaret") ; -TiratAlgeria = UsePN (mkPN "Tirat") ; -TokyoJapan = UsePN (mkPN "Tokyo") ; -TolosaSpain = UsePN (mkPN "Tolosa") ; -TopkakiTurkey = UsePN (mkPN "Topkaki") ; -TrabzonTurkey = UsePN (mkPN "Trabzon") ; -TrincomaleeHarborSriLanka = UsePN (mkPN "Trincomalee Harbor") ; -TripoliLibya = UsePN (mkPN "Tripoli") ; -TulkaremWestBank = UsePN (mkPN "Tulkarem") ; -TulkarmWestBank = UsePN (mkPN "Tulkarm") ; -TunceliTurkey = UsePN (mkPN "Tunceli") ; -TurbatPakistan = UsePN (mkPN "Turbat") ; -UmAlFahmIsrael = UsePN (mkPN "Um al-Fahm") ; -UmmQasrIraq = UsePN (mkPN "Umm Qasr") ; -UrenaVenezuela = UsePN (mkPN "Urena") ; -UrraColombia = UsePN (mkPN "Urra") ; -UrsMartanRussia = UsePN (mkPN "Urs-Martan") ; -UWaIndianReservationColombia = UsePN (mkPN "U'wa Indian reservation") ; -ValenciaSpain = UsePN (mkPN "Valencia") ; -ValleduparColombia = UsePN (mkPN "Valledupar") ; -VanTurkey = UsePN (mkPN "Van") ; -VavuniyaSriLanka = UsePN (mkPN "Vavuniya") ; -ViennaAustria = UsePN (mkPN "Vienna") ; -VientianeLaos = UsePN (mkPN "Vientiane") ; -VillavicencioColombia = UsePN (mkPN "Villavicencio") ; -VitoriaSpain = UsePN (mkPN "Vitoria") ; -VitrollesFrance = UsePN (mkPN "Vitrolles") ; -VladikavkazRussia = UsePN (mkPN "Vladikavkaz") ; -VladivostokRussia = UsePN (mkPN "Vladivostok") ; -VolgodonskRussia = UsePN (mkPN "Volgodonsk") ; -WadiAlDabaatYemen = UsePN (mkPN "Wadi al-Dabaat") ; -WadiAraIsrael = UsePN (mkPN "Wadi Ara") ; -WadiKeltWestBank = UsePN (mkPN "Wadi Kelt") ; -WarsawPoland = UsePN (mkPN "Warsaw") ; -WashingtonDCUnitedStates = UsePN (mkPN "Washington DC.") ; -WattyanBahrain = UsePN (mkPN "Wattyan") ; -WestBeirutLebanon = UsePN (mkPN "West Beirut") ; -XiAnChina = UsePN (mkPN "Xi'an") ; -YaAbadWestBank = UsePN (mkPN "Ya'abad") ; -YagurJunctionIsrael = UsePN (mkPN "Yagur Junction") ; -YehudIsrael = UsePN (mkPN "Yehud") ; -YerevanArmenia = UsePN (mkPN "Yerevan") ; -YitzharWestBank = UsePN (mkPN "Yitzhar") ; -YokotaJapan = UsePN (mkPN "Yokota") ; -YopalColombia = UsePN (mkPN "Yopal") ; -YuksekovaTurkey = UsePN (mkPN "Yuksekova") ; -ZaitaIsrael = UsePN (mkPN "Zaita") ; -ZamarYemen = UsePN (mkPN "Zamar") ; -ZamboangaPhilippines = UsePN (mkPN "Zamboanga") ; -ZaragozaSpain = UsePN (mkPN "Zaragoza") ; -ZarauzSpain = UsePN (mkPN "Zarauz") ; -ZeifIntersectionWestBank = UsePN (mkPN "Zeif intersection") ; -ZekharyaIsrael = UsePN (mkPN "Zekharya") ; -ZuliaColombia = UsePN (mkPN "Zulia") ; -ZumaiaSpain = UsePN (mkPN "Zumaia") ; -ZumarragaSpain = UsePN (mkPN "Zumarraga") ; -Burundi = UsePN (mkPN "Burundi") ; -CentralAfricanRepublic = UsePN (mkPN "Central African Republic") ; -Chad = UsePN (mkPN "Chad") ; -DemocraticRepublicOfTheCongo = UsePN (mkPN "Democratic Republic of the Congo") ; -Rwanda = UsePN (mkPN "Rwanda") ; -Djibouti = UsePN (mkPN "Djibouti") ; -Eritrea = UsePN (mkPN "Eritrea") ; -Ethiopia = UsePN (mkPN "Ethiopia") ; -Kenya = UsePN (mkPN "Kenya") ; -Seychelles = UsePN (mkPN "Seychelles") ; -Somalia = UsePN (mkPN "Somalia") ; -Tanzania = UsePN (mkPN "Tanzania") ; -Uganda = UsePN (mkPN "Uganda") ; -Algeria = UsePN (mkPN "Algeria") ; -Egypt = UsePN (mkPN "Egypt") ; -Libya = UsePN (mkPN "Libya") ; -Mauritania = UsePN (mkPN "Mauritania") ; -Morocco = UsePN (mkPN "Morocco") ; -Sudan = UsePN (mkPN "Sudan") ; -Tunisia = UsePN (mkPN "Tunisia") ; -WesternSahara = UsePN (mkPN "Western Sahara") ; -Angola = UsePN (mkPN "Angola") ; -BassasDaIndia = UsePN (mkPN "Bassas da India") ; -Botswana = UsePN (mkPN "Botswana") ; -BouvetIsland = UsePN (mkPN "Bouvet Island") ; -Comoros = UsePN (mkPN "Comoros") ; -EuropaIsland = UsePN (mkPN "Europa Island") ; -GloriosoIslands = UsePN (mkPN "Glorioso Islands") ; -HeardIslandAndMcDonaldIslands = UsePN (mkPN "Heard Island and McDonald Islands") ; -JuanDeNovaIsland = UsePN (mkPN "Juan de Nova Island") ; -Lesotho = variants (UsePN (mkPN "Lesotho")) (UsePN (mkPN "Basutoland")) ; -Madagascar = UsePN (mkPN "Madagascar") ; -Malawi = UsePN (mkPN "Malawi") ; -Mauritius = UsePN (mkPN "Mauritius") ; -Mayotte = UsePN (mkPN "Mayotte") ; -Mozambique = UsePN (mkPN "Mozambique") ; -Namibia = UsePN (mkPN "Namibia") ; -Reunion = UsePN (mkPN "Reunion") ; -SouthAfrica = UsePN (mkPN "South Africa") ; -Swaziland = UsePN (mkPN "Swaziland") ; -TromelinIsland = UsePN (mkPN "Tromelin Island") ; -Zambia = UsePN (mkPN "Zambia") ; -Zimbabwe = UsePN (mkPN "Zimbabwe") ; -Benin = UsePN (mkPN "Benin") ; -BurkinaFaso = UsePN (mkPN "Burkina Faso") ; -Cameroon = UsePN (mkPN "Cameroon") ; -CapeVerde = UsePN (mkPN "Cape Verde") ; -CoteDIvoire = UsePN (mkPN "Cote d'Ivoire") ; -EquatorialGuinea = UsePN (mkPN "Equatorial Guinea") ; -Gabon = UsePN (mkPN "Gabon") ; -Gambia = UsePN (mkPN "Gambia") ; -Ghana = UsePN (mkPN "Ghana") ; -Guinea = UsePN (mkPN "Guinea") ; -GuineaBissau = UsePN (mkPN "Guinea Bissau") ; -Liberia = UsePN (mkPN "Liberia") ; -Mali = UsePN (mkPN "Mali") ; -Niger = UsePN (mkPN "Niger") ; -Nigeria = UsePN (mkPN "Nigeria") ; -SaoTomeAndPrincipe = UsePN (mkPN "Sao Tome and Principe") ; -Senegal = UsePN (mkPN "Senegal") ; -SierraLeone = UsePN (mkPN "Sierra Leone") ; -Togo = UsePN (mkPN "Togo") ; -SaintHelena = UsePN (mkPN "Saint Helena") ; -Bahrain = UsePN (mkPN "Bahrain") ; -Cyprus = UsePN (mkPN "Cyprus") ; -GazaStrip = UsePN (mkPN "Gaza Strip") ; -Iran = UsePN (mkPN "Iran") ; -Iraq = UsePN (mkPN "Iran") ; -Israel = UsePN (mkPN "Israel") ; -Jordan = UsePN (mkPN "Jordan") ; -Kuwait = UsePN (mkPN "Kuwait") ; -Lebanon = UsePN (mkPN "Lebanon") ; -Oman = UsePN (mkPN "Oman") ; -Qatar = UsePN (mkPN "Qatar") ; -SaudiArabia = UsePN (mkPN "Saudi Arabia") ; -Syria = UsePN (mkPN "Syria") ; -UnitedArabEmirates = UsePN (mkPN "United Arab Emirates") ; -WestBank = UsePN (mkPN "West Bank") ; -Yemen = UsePN (mkPN "Yemen") ; -Austria = UsePN (mkPN "Austria") ; -CzechRepublic = UsePN (mkPN "Czech Republic") ; -Germany = UsePN (mkPN "Germany") ; -Hungary = UsePN (mkPN "Hungary") ; -Liechtenstein = UsePN (mkPN "Liechtenstein") ; -Poland = UsePN (mkPN "Poland") ; -Slovakia = UsePN (mkPN "Slovakia") ; -Slovenia = UsePN (mkPN "Slovenia") ; -Switzerland = UsePN (mkPN "Switzerland") ; -Belarus = UsePN (mkPN "Belarus") ; -Estonia = UsePN (mkPN "Estonia") ; -Latvia = UsePN (mkPN "Latvia") ; -Lithuania = UsePN (mkPN "Lithuania") ; -Moldova = UsePN (mkPN "Moldova") ; -Ukraine = UsePN (mkPN "Ukraine") ; -Denmark = UsePN (mkPN "Denmark") ; -FaroeIslands = UsePN (mkPN "Faroe Islands") ; -Finland = UsePN (mkPN "Finland") ; -Iceland = UsePN (mkPN "Iceland") ; -JanMayenIsland = UsePN (mkPN "Jan Mayen Island") ; -Norway = UsePN (mkPN "Norway") ; -Svalbard = UsePN (mkPN "Svalbard") ; -Sweden = UsePN (mkPN "Sweden") ; -Greece = UsePN (mkPN "Greece") ; -HolySee = UsePN (mkPN "Holy See") ; -Italy = UsePN (mkPN "Italy") ; -Malta = UsePN (mkPN "Malta") ; -SanMarino = UsePN (mkPN "San Marino") ; -Belgium = UsePN (mkPN "Belgium") ; -France = UsePN (mkPN "France") ; -Guernsey = UsePN (mkPN "Guernsey") ; -Ireland = UsePN (mkPN "Ireland") ; -Jersey = UsePN (mkPN "Jersey") ; -Luxembourg = UsePN (mkPN "Luxembourg") ; -IsleOfMan = UsePN (mkPN "Isle of Man") ; -Monaco = UsePN (mkPN "Monaco") ; -Netherlands = UsePN (mkPN "Netherlands") ; -UnitedKingdom = UsePN (mkPN "United Kingdom of Great Britain and Northern Ireland") ; ---UnitedKingdom = UsePN (mkPN "United Kingdom") ; ---UnitedKingdom = UsePN (mkPN "Great Britain") ; -Albania = UsePN (mkPN "Albania") ; -BosniaAndHerzegovina = UsePN (mkPN "Bosnia and Herzegovina") ; -Bulgaria = UsePN (mkPN "Bulgaria") ; -Croatia = UsePN (mkPN "Croatia") ; -Macedonia = UsePN (mkPN "Macedonia") ; -Romania = UsePN (mkPN "Romania") ; -Turkey = UsePN (mkPN "Turkey") ; -SerbiaAndMontenegro = UsePN (mkPN "Serbia and Montenegro") ; -Andorra = UsePN (mkPN "Andorra") ; -Gibraltar = UsePN (mkPN "Gibraltar") ; -Portugal = UsePN (mkPN "Portugal") ; -Spain = UsePN (mkPN "Spain") ; -Bermuda = UsePN (mkPN "Bermuda") ; -UnitedStates = UsePN (mkPN "United States") ; -Canada = UsePN (mkPN "Canada") ; -Greenland = UsePN (mkPN "Greenland") ; -SaintPierreAndMiquelon = UsePN (mkPN "Saint Pierre and Miquelon") ; -Anguilla = UsePN (mkPN "Anguilla") ; -AntiguaAndBarbuda = UsePN (mkPN "Antigua and Barbuda") ; -Aruba = UsePN (mkPN "Aruba") ; -TheBahamas = UsePN (mkPN "Bahamas") ; -Barbados = UsePN (mkPN "Barbados") ; -BritishVirginIslands = UsePN (mkPN "British Virgin Islands") ; -CaymanIslands = UsePN (mkPN "Cayman Islands") ; -Cuba = UsePN (mkPN "Cuba") ; -Dominica = UsePN (mkPN "Dominica") ; -DominicanRepublic = UsePN (mkPN "Dominican Republic") ; -Grenada = UsePN (mkPN "Grenada") ; -Guadeloupe = UsePN (mkPN "Guadeloupe") ; -Haiti = UsePN (mkPN "Haiti") ; -Jamaica = UsePN (mkPN "Jamaica") ; -Martinique = UsePN (mkPN "Martinique") ; -Montserrat = UsePN (mkPN "Montserrat") ; -NavassaIsland = UsePN (mkPN "Navassa Island") ; -NetherlandsAntilles = UsePN (mkPN "Netherlands Antilles") ; -PuertoRico = UsePN (mkPN "Puerto Rico") ; -SaintKittsAndNevis = UsePN (mkPN "Saint Kitts and Nevis") ; -SaintLucia = UsePN (mkPN "Saint Lucia") ; -SaintVincentAndTheGrenadines = UsePN (mkPN "Saint Vincent and the Grenadines") ; -TrinidadAndTobago = UsePN (mkPN "Trinidad and Tobago") ; -TurksAndCaicosIslands = UsePN (mkPN "Turks and Caicos Islands") ; -VirginIslands = UsePN (mkPN "Virgin Islands") ; -Belize = UsePN (mkPN "Belize") ; -ClippertonIsland = UsePN (mkPN "Clipperton Island") ; -CostaRica = UsePN (mkPN "Costa Rica") ; -ElSalvador = UsePN (mkPN "El Salvador") ; -Guatemala = UsePN (mkPN "Guatemala") ; -Honduras = UsePN (mkPN "Honduras") ; -Mexico = UsePN (mkPN "Mexico") ; -Nicaragua = UsePN (mkPN "Nicaragua") ; -Panama = UsePN (mkPN "Panama") ; -Bolivia = UsePN (mkPN "Bolivia") ; -Paraguay = UsePN (mkPN "Paraguay") ; -Brazil = UsePN (mkPN "Brazil") ; -Colombia = UsePN (mkPN "Colombia") ; -FrenchGuiana = UsePN (mkPN "French Guiana") ; -Guyana = UsePN (mkPN "Guyana") ; -Suriname = UsePN (mkPN "Suriname") ; -Venezuela = UsePN (mkPN "Venezuela") ; -Argentina = UsePN (mkPN "Argentina") ; -Chile = UsePN (mkPN "Chile") ; -FalklandIslands = UsePN (mkPN "Falkland Islands") ; -SouthGeorgiaAndTheSouthSandwichIslands = UsePN (mkPN "South Georgia and the South Sandwich Islands") ; -Uruguay = UsePN (mkPN "Uruguay") ; -Ecuador = UsePN (mkPN "Ecuador") ; -Peru = UsePN (mkPN "Peru") ; -Kazakhstan = UsePN (mkPN "Kazakhstan") ; -Kyrgyzstan = UsePN (mkPN "Kyrgyzstan") ; -Tajikistan = UsePN (mkPN "Tajikistan") ; -Turkmenistan = UsePN (mkPN "Turkmenistan") ; -Uzbekistan = UsePN (mkPN "Uzbekistan") ; -China = UsePN (mkPN "China") ; -HongKong = UsePN (mkPN "Hong Kong") ; -Japan = UsePN (mkPN "Japan") ; -NorthKorea = UsePN (mkPN "NorthKorea") ; -SouthKorea = UsePN (mkPN "SouthKorea") ; -Macau = UsePN (mkPN "Macau") ; -Taiwan = UsePN (mkPN "Taiwan") ; ---Taiwan = UsePN (mkPN "Republic of China") ; -Mongolia = UsePN (mkPN "Mongolia") ; -Russia = UsePN (mkPN "Russia") ; -Afghanistan = UsePN (mkPN "Afghanistan") ; -Bangladesh = UsePN (mkPN "Bangladesh") ; -Bhutan = UsePN (mkPN "Bhutan") ; -BritishIndianOceanTerritory = UsePN (mkPN "British Indian Ocean Territory") ; -India = UsePN (mkPN "India") ; -Maldives = UsePN (mkPN "Maldives") ; -Nepal = UsePN (mkPN "Nepal") ; -Pakistan = UsePN (mkPN "Pakistan") ; -SriLanka = UsePN (mkPN "Sri Lanka") ; -FrenchSouthernAndAntarcticLands = UsePN (mkPN "French Southern and Antarctic Lands") ; -AshmoreAndCartierIslands = UsePN (mkPN "Ashmore and Cartier Islands") ; -Brunei = UsePN (mkPN "Brunei") ; -Cambodia = UsePN (mkPN "Cambodia") ; -ChristmasIsland = UsePN (mkPN "Christmas Island") ; -CocosKeelingIslands = UsePN (mkPN "Cocos Keeling Islands") ; -EastTimor = UsePN (mkPN "East Timor") ; -Indonesia = UsePN (mkPN "Indonesia") ; -Laos = UsePN (mkPN "Laos") ; -Malaysia = UsePN (mkPN "Malaysia") ; -Myanmar = UsePN (mkPN "Myanmar") ; -PapuaNewGuinea = UsePN (mkPN "Papua New Guinea") ; -ParacelIslands = UsePN (mkPN "Paracel Islands") ; -Philippines = UsePN (mkPN "Philippines") ; -Singapore = UsePN (mkPN "Singapore") ; -SpratlyIslands = UsePN (mkPN "Spratly Islands") ; -Thailand = UsePN (mkPN "Thailand") ; -Vietnam = UsePN (mkPN "Vietnam") ; -Armenia = UsePN (mkPN "Armenia") ; -Azerbaijan = UsePN (mkPN "Azerbaijan") ; -RepublicOfGeorgia = UsePN (mkPN "Republic Of Georgia") ; -AmericanSamoa = UsePN (mkPN "American Samoa") ; -Australia = UsePN (mkPN "Australia") ; -BakerIsland = UsePN (mkPN "Baker Island") ; -CookIslands = UsePN (mkPN "Cook Islands") ; -CoralSeaIslands = UsePN (mkPN "Coral Sea Islands") ; -Fiji = UsePN (mkPN "Fiji") ; -FrenchPolynesia = UsePN (mkPN "French Polynesia") ; -Guam = UsePN (mkPN "Guam") ; -HowlandIsland = UsePN (mkPN "Howland Island") ; -JarvisIsland = UsePN (mkPN "Jarvis Island") ; -JohnstonAtoll = UsePN (mkPN "Johnston Atoll") ; -KingmanReef = UsePN (mkPN "Kingman Reef") ; -Kiribati = UsePN (mkPN "Kiribati") ; -MarshallIslands = UsePN (mkPN "Marshall Islands") ; -Micronesia = UsePN (mkPN "Micronesia") ; -MidwayIslands = UsePN (mkPN "Midway Islands") ; -Nauru = UsePN (mkPN "Nauru") ; -NewCaledonia = UsePN (mkPN "New Caledonia") ; -NewZealand = UsePN (mkPN "New Zealand") ; -Niue = UsePN (mkPN "Niue") ; -NorfolkIsland = UsePN (mkPN "Norfolk Island") ; -NorthernMarianaIslands = UsePN (mkPN "Northern Mariana Islands") ; -Palau = UsePN (mkPN "Palau") ; -PalmyraAtoll = UsePN (mkPN "Palmyra Atoll") ; -PitcairnIslands = UsePN (mkPN "Pitcairn Islands") ; -Samoa = UsePN (mkPN "Samoa") ; -SolomonIslands = UsePN (mkPN "Solomon Islands") ; -Tokelau = UsePN (mkPN "Tokelau") ; -Tonga = UsePN (mkPN "Tonga") ; -Tuvalu = UsePN (mkPN "Tuvalu") ; -Vanuatu = UsePN (mkPN "Vanuatu") ; -WakeIsland = UsePN (mkPN "Wake Island") ; -WallisAndFutuna = UsePN (mkPN "Wallis and Futuna") ; - -}; \ No newline at end of file + NewJersey = UsePN (mkPN "New Jersey") ; + NewYorkState = UsePN (mkPN "New York") ; + Texas = UsePN (mkPN "Texas") ; + AdanaTurkey = UsePN (mkPN "Adana") ; + AddisAbabaEthiopia = UsePN (mkPN "Addis Ababa") ; + AdenYemen = UsePN (mkPN "Aden") ; + AdoraWestBank = UsePN (mkPN "Adora") ; + AfulaIsrael = UsePN (mkPN "Afula") ; + AgriTurkey = UsePN (mkPN "Agri") ; + AinDeflaAlgeria = UsePN (mkPN "Ain Defla") ; + AinElHajarAlgeria = UsePN (mkPN "Ain el Hajar") ; + AjaccioFrance = UsePN (mkPN "Ajaccio") ; + AlBalamandLebanon = UsePN (mkPN "Al-Balamand") ; + AleiSinaiGazaStrip = UsePN (mkPN "Alei Sinai") ; + AleiZahavWestBank = UsePN (mkPN "Alei Zahav") ; + AleyLebanon = UsePN (mkPN "Aley") ; + AlgiersAlgeria = UsePN (mkPN "Algiers") ; + AlkhanYurtRussia = UsePN (mkPN "Alkhan-Yurt") ; + AlonMorehWestBank = UsePN (mkPN "Alon Moreh") ; + AmbonIndonesia = UsePN (mkPN "Ambon") ; + AmmanJordan = UsePN (mkPN "Amman") ; + AnNuwaydiratBahrain = UsePN (mkPN "An Nuwaydirat") ; + AndeanSpain = UsePN (mkPN "Andean") ; + AngkorWatCambodia = UsePN (mkPN "Angkor Wat") ; + AnkaraTurkey = UsePN (mkPN "Ankara") ; + AntalyaTurkey = UsePN (mkPN "Antalya") ; + AntioquiaColombia = UsePN (mkPN "Antioquia") ; + AntwerpBelgium = UsePN (mkPN "Antwerp") ; + ApumiracPeru = UsePN (mkPN "Apumirac") ; + ApureVenezuela = UsePN (mkPN "Apure") ; + AraucaColombia = UsePN (mkPN "Arauca") ; + ArgunRussia = UsePN (mkPN "Argun") ; + ArielWestBank = UsePN (mkPN "Ariel") ; + ArmaghNorthernIreland = UsePN (mkPN "Armagh") ; + ArzewAlgeria = UsePN (mkPN "Arzew") ; + AshdodIsrael = UsePN (mkPN "Ashdod") ; + AskelonIsrael = UsePN (mkPN "Askelon") ; + AsmaraEritrea = UsePN (mkPN "Asmara") ; + AssamIndia = UsePN (mkPN "Assam") ; + AswanEgypt = UsePN (mkPN "Aswan") ; + AsyutEgypt = UsePN (mkPN "Asyut") ; + AthensGreece = UsePN (mkPN "Athens") ; + AtrushIraq = UsePN (mkPN "Atrush") ; + AtzmonaGazaStrip = UsePN (mkPN "Atzmona") ; + AvneiHefetzIsrael = UsePN (mkPN "Avnei Hefetz") ; + AyacuchoPeru = UsePN (mkPN "Ayacucho") ; + AzorIsrael = UsePN (mkPN "Azor") ; + BadVilbelGermany = UsePN (mkPN "Bad Vilbel") ; + BaghdadIraq = UsePN (mkPN "Baghdad") ; + BagreColombia = UsePN (mkPN "Bagre") ; + BahawalpurPakistan = UsePN (mkPN "Bahawalpur") ; + BakaAlGarbiyehIsrael = UsePN (mkPN "Baka al-Garbiyeh") ; + BakkaAlSharkiyaWestBank = UsePN (mkPN "Bakka al-Sharkiya") ; + BakuAzerbaijan = UsePN (mkPN "Baku") ; + BaleEthiopia = UsePN (mkPN "Bale") ; + BanbridgeNorthernIreland = UsePN (mkPN "Banbridge") ; + BangkokThailand = UsePN (mkPN "Bangkok") ; + BangorNorthernIreland = UsePN (mkPN "Bangor") ; + BanguiCentralAfricanRepublic = UsePN (mkPN "Bangui") ; + BarcelonaSpain = UsePN (mkPN "Barcelona") ; + BarkeoCambodia = UsePN (mkPN "Barkeo") ; + BarrancabermejaColombia = UsePN (mkPN "Barrancabermeja") ; + BasraIsrael = UsePN (mkPN "Basra") ; + BatYamIsrael = UsePN (mkPN "Bat Yam") ; + BatmanTurkey = UsePN (mkPN "Batman") ; + BeasainSpain = UsePN (mkPN "Beasain") ; + BeErShevaIsrael = UsePN (mkPN "Be'er Sheva") ; + BeirutLebanon = UsePN (mkPN "Beirut") ; + BeitElWestBank = UsePN (mkPN "Beit El") ; + BeitHaggaiWestBank = UsePN (mkPN "Beit Haggai") ; + BeitSahurWestBank = UsePN (mkPN "Beit Sahur") ; + BeitSheAnIsrael = UsePN (mkPN "Beit She'an") ; + BeitShemeshIsrael = UsePN (mkPN "Beit Shemesh") ; + BeledweyneSomalia = UsePN (mkPN "Beledweyne") ; + BelfastNorthernIreland = UsePN (mkPN "Belfast") ; + BelgradeSerbiaAndMontenegro = UsePN (mkPN "Belgrade") ; + BerlinGermany = UsePN (mkPN "Berlin") ; + BetLeHiyehGazaStrip = UsePN (mkPN "Bet LeHiyeh") ; + BetLidJunctionIsrael = UsePN (mkPN "Bet Lid Junction") ; + BethElIsrael = UsePN (mkPN "Beth El") ; + BethlehemWestBank = UsePN (mkPN "Bethlehem") ; + BidyaWestBank = UsePN (mkPN "Bidya") ; + BilbaoSpain = UsePN (mkPN "Bilbao") ; + BillabonaSpain = UsePN (mkPN "Billabona") ; + BinyaminaIsrael = UsePN (mkPN "Binyamina") ; + BKaotWestBank = UsePN (mkPN "B'kaot") ; + BneiAyishIsrael = UsePN (mkPN "Bnei Ayish") ; + BogotaColombia = UsePN (mkPN "Bogota") ; + BolognaItaly = UsePN (mkPN "Bologna") ; + BonnGermany = UsePN (mkPN "Bonn") ; + BosphorousStraitsTurkey = UsePN (mkPN "BosphorousStraits") ; + BouiraAlgeria = UsePN (mkPN "Bouira") ; + BouzeGueneAlgeria = UsePN (mkPN "Bouze-guene") ; + BrusselsBelgium = UsePN (mkPN "Brussels") ; + BucaramangaColombia = UsePN (mkPN "Bucaramanga") ; + BucharestIndia = UsePN (mkPN "Bucharest") ; + BuenosAiresArgentina = UsePN (mkPN "Buenos Aires") ; + BuinakskRussia = UsePN (mkPN "Buinaksk") ; + BwindiforestUganda = UsePN (mkPN "Bwindi forest") ; + CabindaAngola = UsePN (mkPN "Cabinda") ; + CaglayanTurkey = UsePN (mkPN "Caglayan") ; + CairoEgypt = UsePN (mkPN "Cairo") ; + CalcuttaIndia = UsePN (mkPN "Calcutta") ; + CaliColombia = UsePN (mkPN "Cali") ; + CampZamaJapan = UsePN (mkPN "Camp Zama") ; + CankiriTurkey = UsePN (mkPN "Cankiri") ; + CapeTownSouthAfrica = UsePN (mkPN "Cape Town") ; + CaritasPolandChechnya = UsePN (mkPN "Caritas Poland") ; + CarmelIsrael = UsePN (mkPN "Carmel") ; + CarmenDeBolivarColombia = UsePN (mkPN "Carmen de Bolivar") ; + CarrejonColombia = UsePN (mkPN "Carrejon") ; + ChamanPakistan = UsePN (mkPN "Chaman") ; + ChararESharifIndia = UsePN (mkPN "Charar-e-Sharif") ; + CharsaadaPakistan = UsePN (mkPN "Charsaada") ; + ChernoRechyeRussia = UsePN (mkPN "Cherno-rechye") ; + ChicagoUnitedStates = UsePN (mkPN "Chicago") ; + ChisimayuSomalia = UsePN (mkPN "Chisimayu") ; + ChittagongBangladesh = UsePN (mkPN "Chittagong") ; + ChobaAngola = UsePN (mkPN "Choba") ; + ChocoColombia = UsePN (mkPN "Choco") ; + ChorrosQueroVenezuela = UsePN (mkPN "Chorros-quero") ; + ClarkAirbasePhilippines = UsePN (mkPN "Clark Airbase") ; + CoimbatoreIndia = UsePN (mkPN "Coimbatore") ; + CologneGermany = UsePN (mkPN "Cologne") ; + ColombiaCityColombia = UsePN (mkPN "Colombia City") ; + ColombiaPanama = UsePN (mkPN "Colombia") ; + ColomboSriLanka = UsePN (mkPN "Colombo") ; + ComayaguaHonduras = UsePN (mkPN "Comayagua") ; + CopacaBanaCuba = UsePN (mkPN "Copaca-bana") ; + CopenhagenDenmark = UsePN (mkPN "Copenhagen") ; + CorsicaFrance = UsePN (mkPN "Corsica") ; + CorteFrance = UsePN (mkPN "Corte") ; + CorumTurkey = UsePN (mkPN "Corum") ; + CundiNamarcaColombia = UsePN (mkPN "Cundi-namarca") ; + CupiaguaColombia = UsePN (mkPN "Cupiagua") ; + CuzcoPeru = UsePN (mkPN "Cuzco") ; + DagestanRussia = UsePN (mkPN "Dagestan") ; + DahukIraq = UsePN (mkPN "Dahuk") ; + DangDistrictNepal = UsePN (mkPN "Dang district") ; + DarEsSalaAmTanzania = UsePN (mkPN "Dar es Sala'am") ; + DarvazTajikistan = UsePN (mkPN "Darvaz") ; + DebaSpain = UsePN (mkPN "Deba") ; + DelhiIndia = UsePN (mkPN "Delhi") ; + DhahranSaudiArabia = UsePN (mkPN "Dhahran") ; + DhakaBangladesh = UsePN (mkPN "Dhaka") ; + DinanFrance = UsePN (mkPN "Dinan") ; + DirNaballahWestBank = UsePN (mkPN "Dir Naballah") ; + DireDawaEthiopia = UsePN (mkPN "Dire Dawa") ; + DistrictOfMansehraPakistan = UsePN (mkPN "district of Mansehra") ; + DjakashariGeorgia = UsePN (mkPN "Djakashari") ; + DjerbaTunisia = UsePN (mkPN "Djerba") ; + DodaIndia = UsePN (mkPN "Doda") ; + DortmundGermany = UsePN (mkPN "Dortmund") ; + DublinIreland = UsePN (mkPN "Dublin") ; + DuesseldorfGermany = UsePN (mkPN "Duesseldorf") ; + DugitGazaStrip = UsePN (mkPN "Dugit") ; + DurangoSpain = UsePN (mkPN "Durango") ; + DushanbeTajikistan = UsePN (mkPN "Dushanbe") ; + DushanbeAirportTajikistan = UsePN (mkPN "Dushanbe airport") ; + DushanbeGarmTajikistan = UsePN (mkPN "Dushanbe Garm") ; + EastJerusalemIsrael = UsePN (mkPN "East Jerusalem") ; + EfratWestBank = UsePN (mkPN "Efrat") ; + EilatIsrael = UsePN (mkPN "Eilat") ; + EinavWestBank = UsePN (mkPN "Einav") ; + ElBagreColombia = UsePN (mkPN "El Bagre") ; + ElBirehWestBank = UsePN (mkPN "El Bireh") ; + ElPlayonColombia = UsePN (mkPN "El Playon") ; + ElRipialApureVenezuela = UsePN (mkPN "El Ripial Apure") ; + ElayoSomalia = UsePN (mkPN "Elayo") ; + ElAzzariyaWestBank = UsePN (mkPN "el-Azzariya") ; + EleiSinaiGazaStrip = UsePN (mkPN "Elei Sinai") ; + EmmanuelWestBank = UsePN (mkPN "Emmanuel") ; + ErezGazaStrip = UsePN (mkPN "Erez") ; + FethiyeAndMarmarisTurkey = UsePN (mkPN "Fethiye and Marmaris") ; + FloridaUnitedStates = UsePN (mkPN "Florida") ; + FormequeColombia = UsePN (mkPN "Formeque") ; + FrankfurtGermany = UsePN (mkPN "Frankfurt") ; + FrenchHillIsrael = UsePN (mkPN "French Hill") ; + FuengirolaSpain = UsePN (mkPN "Fuengirola") ; + FusagasusaColombia = UsePN (mkPN "Fusagasusa") ; + GaliAbkhaziaGeorgia = UsePN (mkPN "Gali Abkhazia") ; + GanimWestBank = UsePN (mkPN "Ganim") ; + GashuriIsrael = UsePN (mkPN "Gashuri") ; + GeneralSantosPhilippines = UsePN (mkPN "General Santos") ; + GenevaSwitzerland = UsePN (mkPN "Geneva") ; + GetxoSpain = UsePN (mkPN "Getxo") ; + GhalebiehIraq = UsePN (mkPN "Ghalebieh") ; + GhaziabadUttarPradeshIndia = UsePN (mkPN "Ghaziabad Uttar Pradesh") ; + GiloIsrael = UsePN (mkPN "Gilo") ; + GivatZeEvWestBank = UsePN (mkPN "Givat Ze'ev") ; + GizaEgypt = UsePN (mkPN "Giza") ; + GonegalleSriLanka = UsePN (mkPN "Gonegalle") ; + GranadaSpain = UsePN (mkPN "Granada") ; + GrazAustria = UsePN (mkPN "Graz") ; + GroznyChechnya = UsePN (mkPN "Grozny") ; + GuilinChina = UsePN (mkPN "Guilin") ; + GujaratIndia = UsePN (mkPN "Gujarat") ; + GushEtzionWestBank = UsePN (mkPN "Gush Etzion") ; + GushKatifGazaStrip = UsePN (mkPN "Gush Katif") ; + HaderaIsrael = UsePN (mkPN "Hadera") ; + HaifaIsrael = UsePN (mkPN "Haifa") ; + HamburgGermany = UsePN (mkPN "Hamburg") ; + HamisMiliyanaAlgeria = UsePN (mkPN "Hamis Miliyana") ; + HamraWestBank = UsePN (mkPN "Hamra") ; + HannoverGermany = UsePN (mkPN "Hannover") ; + HarBrachaWestBank = UsePN (mkPN "Har Bracha") ; + HarerEthiopia = UsePN (mkPN "Harer") ; + HavanaCuba = UsePN (mkPN "Havana") ; + HawanaIraq = UsePN (mkPN "Hawana") ; + HeartAfghanistan = UsePN (mkPN "Heart") ; + HebronWestBank = UsePN (mkPN "Hebron") ; + HermeshIsrael = UsePN (mkPN "Hermesh") ; + HernaniSpain = UsePN (mkPN "Hernani") ; + HerzliyaIsrael = UsePN (mkPN "Herzliya") ; + HilversumNetherlands = UsePN (mkPN "Hilversum") ; + HizmaWestBank = UsePN (mkPN "Hizma") ; + HodayaJunctionIsrael = UsePN (mkPN "Hodaya Junction") ; + HolonJunctionIsrael = UsePN (mkPN "Holon Junction") ; + HuallgaPeru = UsePN (mkPN "Huallga") ; + HurghadaEgypt = UsePN (mkPN "Hurghada") ; + HyderabadPakistan = UsePN (mkPN "Hyderabad") ; + IbsrilIraq = UsePN (mkPN "Ibsril") ; + IncirlikAirbaseTurkey = UsePN (mkPN "Incirlik Airbase") ; + IpilPhilippines = UsePN (mkPN "Ipil") ; + IrbilIraq = UsePN (mkPN "Irbil") ; + IslamabadPakistan = UsePN (mkPN "Islamabad") ; + IslandOfBaliIndonesia = UsePN (mkPN "Island of Bali") ; + IstanbulTurkey = UsePN (mkPN "Istanbul") ; + ItamarWestBank = UsePN (mkPN "Itamar") ; + IzmirTurkey = UsePN (mkPN "Izmir") ; + JaffaIsrael = UsePN (mkPN "Jaffa") ; + JaffnaSriLanka = UsePN (mkPN "Jaffna") ; + JakartaIndonesia = UsePN (mkPN "Jakarta") ; + JalahIndia = UsePN (mkPN "Jalah") ; + JalpaiguriRailwayStationIndia = UsePN (mkPN "Jalpaiguri Railway Station") ; + JammuIndia = UsePN (mkPN "Jammu") ; + JangasPeru = UsePN (mkPN "Jangas") ; + JeninWestBank = UsePN (mkPN "Jenin") ; + JerusalemIsrael = UsePN (mkPN "Jerusalem") ; + JMainWestBank = UsePN (mkPN "J'main") ; + JohannesburgSouthAfrica = UsePN (mkPN "Johannesburg") ; + JoloPhilippines = UsePN (mkPN "Jolo") ; + JubialSaudiArabia = UsePN (mkPN "Jubial") ; + JullundurIndia = UsePN (mkPN "Jullundur") ; + KabacanPhilippines = UsePN (mkPN "Kabacan") ; + KabulAfghanistan = UsePN (mkPN "Kabul") ; + KafrAkabWestBank = UsePN (mkPN "Kafr Akab") ; + KafrIdnaWestBank = UsePN (mkPN "Kafr Idna") ; + KalkilyaWestBank = UsePN (mkPN "Kalkilya") ; + KalmunaiSriLanka = UsePN (mkPN "Kalmunai") ; + KampalaUganda = UsePN (mkPN "Kampala") ; + KandySriLanka = UsePN (mkPN "Kandy") ; + KanihamaIndia = UsePN (mkPN "Kanihama") ; + KarachiPakistan = UsePN (mkPN "Karachi") ; + KarkurIsrael = UsePN (mkPN "Karkur") ; + KarmeiTzurWestBank = UsePN (mkPN "Karmei Tzur") ; + KarneiShomronWestBank = UsePN (mkPN "Karnei Shomron") ; + KashmirIndia = UsePN (mkPN "Kashmir") ; + KatmanduAirportNepal = UsePN (mkPN "Katmandu Airport") ; + KedumimWestBank = UsePN (mkPN "Kedumim") ; + KedumimSettlementWestBank = UsePN (mkPN "Kedumim Settlement") ; + KfarBaAnehIsrael = UsePN (mkPN "Kfar Ba'aneh") ; + KfarDaromGazaStrip = UsePN (mkPN "Kfar Darom") ; + KfarHessIsrael = UsePN (mkPN "Kfar Hess") ; + KfarSabaIsrael = UsePN (mkPN "Kfar Saba") ; + KfarTzurifWestBank = UsePN (mkPN "Kfar Tzurif") ; + KfarYamGazaStrip = UsePN (mkPN "Kfar Yam") ; + KfarDaromNetzarimIsrael = UsePN (mkPN "Kfar-Darom Netzarim") ; + KhankalaChechnya = UsePN (mkPN "Khankala") ; + KhartoumSudan = UsePN (mkPN "Khartoum") ; + KhelilAlgeria = UsePN (mkPN "Khelil") ; + KhobarSaudiArabia = UsePN (mkPN "Khobar") ; + KibbutzGalEdIsrael = UsePN (mkPN "Kibbutz Gal 'Ed") ; + KibbutzMeravIsrael = UsePN (mkPN "Kibbutz Merav") ; + KibbutzSheluhotIsrael = UsePN (mkPN "Kibbutz Sheluhot") ; + KidapawanPhilippines = UsePN (mkPN "Kidapawan") ; + KigaliRwanda = UsePN (mkPN "Kigali") ; + KirikkaleTurkey = UsePN (mkPN "Kirikkale") ; + KiryatArbaWestBank = UsePN (mkPN "Kiryat Arba") ; + KiryatMotzkinIsrael = UsePN (mkPN "Kiryat Motzkin") ; + KiryatNetafimWestBank = UsePN (mkPN "Kiryat Netafim") ; + KissufimGazaStrip = UsePN (mkPN "Kissufim") ; + KiursehirBoztepTurkey = UsePN (mkPN "Kiursehir-Boztep") ; + KlaiyatLebanon = UsePN (mkPN "Klaiyat") ; + KohlanYemen = UsePN (mkPN "Kohlan") ; + KomsomoLabadTajikistan = UsePN (mkPN "Komsomo-labad") ; + KuwaitCityKuwait = UsePN (mkPN "Kuwait City") ; + LaCeibaHonduras = UsePN (mkPN "La Ceiba") ; + LaGabarraVenezuela = UsePN (mkPN "La Gabarra") ; + LaGuajiraColombia = UsePN (mkPN "La Guajira") ; + LaPazBolivia = UsePN (mkPN "La Paz") ; + LaVictoriaVenezuela = UsePN (mkPN "La Victoria") ; + LahorePakistan = UsePN (mkPN "Lahore") ; + LarbaAlgeria = UsePN (mkPN "Larba") ; + LarnacaCyprus = UsePN (mkPN "Larnaca") ; + LasarteSpain = UsePN (mkPN "Lasarte") ; + LeizaSpain = UsePN (mkPN "Leiza") ; + LesEucalyptusDistrictAlgeria = UsePN (mkPN "Les Eucalyptus district") ; + LibertadorVenezuela = UsePN (mkPN "Libertador") ; + LiceTurkey = UsePN (mkPN "Lice") ; + LIleRousseFrance = UsePN (mkPN "L'Ile-Rousse") ; + LimaPeru = UsePN (mkPN "Lima") ; + LindosRhodes = UsePN (mkPN "Lindos") ; + LinzAustralia = UsePN (mkPN "Linz") ; + LockerbieUnitedKingdom = UsePN (mkPN "Lockerbie") ; + LogornoSpain = UsePN (mkPN "Logorno") ; + LondonUnitedKingdom = UsePN (mkPN "London") ; + LondonberryNorthernIreland = UsePN (mkPN "Londonberry") ; + LosAngelesUnitedStates = UsePN (mkPN "Los Angeles") ; + LosAngelesInternationalAirportUnitedStates = UsePN (mkPN "Los Angeles International Airport") ; + LosBancosVenezuela = UsePN (mkPN "Los Bancos") ; + LosKatiosNationalParkColombia = UsePN (mkPN "Los Katios National Park") ; + LuandaAngola = UsePN (mkPN "Luanda") ; + LuebeckGermany = UsePN (mkPN "Luebeck") ; + LundaNorteAngola = UsePN (mkPN "Lunda Norte") ; + LuxorEgypt = UsePN (mkPN "Luxor") ; + LyonsFrance = UsePN (mkPN "Lyons") ; + MaAlehMichmashWestBank = UsePN (mkPN "Ma'aleh Michmash") ; + MaccabimIsrael = UsePN (mkPN "Maccabim") ; + MadhuSriLanka = UsePN (mkPN "Madhu") ; + MadrasIndia = UsePN (mkPN "Madras") ; + MadridSpain = UsePN (mkPN "Madrid") ; + MagdalenaColombia = UsePN (mkPN "Magdalena") ; + MaidanSharAfghanistan = UsePN (mkPN "Maidan Shar") ; + MakhachkalaRussia = UsePN (mkPN "Makhachkala") ; + MalagaSpain = UsePN (mkPN "Malaga") ; + MalukkaIslandsIndonesia = UsePN (mkPN "Malukka islands") ; + ManaguaNigeria = UsePN (mkPN "Managua") ; + ManamaBahrain = UsePN (mkPN "Manama") ; + ManchesterUnitedKingdom = UsePN (mkPN "Manchester") ; + MangalsenAndSanpheBagarNepal = UsePN (mkPN "Mangalsen and Sanphe Bagar") ; + ManilaPhilippines = UsePN (mkPN "Manila") ; + MaonIsrael = UsePN (mkPN "Maon") ; + MapourditSudan = UsePN (mkPN "Mapourdit") ; + MarSabaWestBank = UsePN (mkPN "Mar Saba") ; + MarawiPhilippines = UsePN (mkPN "Marawi") ; + MardanPakistan = UsePN (mkPN "Mardan") ; + MarmarisTurkey = UsePN (mkPN "Marmaris") ; + MarseillesFrance = UsePN (mkPN "Marseilles") ; + MashaWestBank = UsePN (mkPN "Masha") ; + MatsumotoJapan = UsePN (mkPN "Matsumoto") ; + MawdiyahYemen = UsePN (mkPN "Mawdiyah") ; + MeaShearimIsrael = UsePN (mkPN "Mea Shearim") ; + MeccaSaudiArabia = UsePN (mkPN "Mecca") ; + MechoraWestBank = UsePN (mkPN "Mechora") ; + MedanIndonesia = UsePN (mkPN "Medan") ; + MedellinColombia = UsePN (mkPN "Medellin") ; + MegidoIsrael = UsePN (mkPN "Megido") ; + MeholaIsrael = UsePN (mkPN "Mehola") ; + MekholahIsrael = UsePN (mkPN "Mekholah") ; + MersinTurkey = UsePN (mkPN "Mersin") ; + MetaColombia = UsePN (mkPN "Meta") ; + MetullaIsrael = UsePN (mkPN "Metulla") ; + MetzerIsrael = UsePN (mkPN "Metzer") ; + MilanItaly = UsePN (mkPN "Milan") ; + MindanaoPhilippines = UsePN (mkPN "Mindanao") ; + MinharotRoadWestBank = UsePN (mkPN "Minharot Road") ; + MiranShahPakistan = UsePN (mkPN "Miran Shah") ; + MituColombia = UsePN (mkPN "Mitu") ; + ModiinIllitWestBank = UsePN (mkPN "Modiin Illit") ; + MombassaKenya = UsePN (mkPN "Mombassa") ; + MoragJunctionGazaStrip = UsePN (mkPN "Morag Junction") ; + MoscowRussia = UsePN (mkPN "Moscow") ; + MoshavHagorIsrael = UsePN (mkPN "Moshav Hagor") ; + MoshavTomerWestBank = UsePN (mkPN "Moshav Tomer") ; + MukallahAdenYemen = UsePN (mkPN "Mukallah-Aden") ; + MunchenGladbachGermany = UsePN (mkPN "Munchen-Gladbach") ; + MunsterGermany = UsePN (mkPN "Munster") ; + MurloughNorthernIreland = UsePN (mkPN "Murlough") ; + MusMusIsrael = UsePN (mkPN "Mus Mus") ; + MutataColombia = UsePN (mkPN "Mutata") ; + MutturSriLanka = UsePN (mkPN "Muttur") ; + NaAlinWestBank = UsePN (mkPN "Na'alin") ; + NablusWestBank = UsePN (mkPN "Nablus") ; + NahalOzGazaStrip = UsePN (mkPN "Nahal Oz") ; + NaharaimIsrael = UsePN (mkPN "Naharaim") ; + NahariyaIsrael = UsePN (mkPN "Nahariya") ; + NairobiKenya = UsePN (mkPN "Nairobi") ; + NajafIraq = UsePN (mkPN "Najaf") ; + NallurAreaSriLanka = UsePN (mkPN "Nallur Area") ; + NaquraLebanon = UsePN (mkPN "Naqura") ; + NarayangangBangladesh = UsePN (mkPN "Narayangang") ; + NetanyaIsrael = UsePN (mkPN "Netanya") ; + NetzarimGazaStrip = UsePN (mkPN "Netzarim") ; + NetzerHazaniGazaStrip = UsePN (mkPN "Netzer Hazani") ; + NeveDanielWestBank = UsePN (mkPN "Neve Daniel") ; + NeveYaminIsrael = UsePN (mkPN "Neve Yamin") ; + NewDelhiIndia = UsePN (mkPN "New Delhi") ; + NewYorkCityUnitedStates = UsePN (mkPN "New York City") ; + NeztarimSettlementGazaStrip = UsePN (mkPN "Neztarim Settlement") ; + NiameyNiger = UsePN (mkPN "Niamey") ; + NissanitGazaStrip = UsePN (mkPN "Nissanit") ; + NitzaneiOzWestBank = UsePN (mkPN "Nitzanei Oz") ; + NitzanimIsrael = UsePN (mkPN "Nitzanim") ; + NokdimTekoaRdWestBank = UsePN (mkPN "Nokdim-Tekoa Rd.") ; + NorteDeSantanderColombia = UsePN (mkPN "Norte de Santander") ; + NorthernCaucasiusChechnya = UsePN (mkPN "Northern Caucasius") ; + NovogroznyRussia = UsePN (mkPN "Novogrozny") ; + NovyyAtagiRussia = UsePN (mkPN "Novyy Atagi") ; + OberwartAustria = UsePN (mkPN "Oberwart") ; + OfraWestBank = UsePN (mkPN "Ofra") ; + OilbaseAlgeria = UsePN (mkPN "Oil base") ; + oilfieldsVenezuela = UsePN (mkPN "oilfields") ; + OkaraPakistan = UsePN (mkPN "Okara") ; + OlayaHerreraColombia = UsePN (mkPN "Olaya Herrera") ; + OmaghNorthernIreland = UsePN (mkPN "Omagh") ; + OrYehudaIsrael = UsePN (mkPN "Or Yehuda") ; + OranAlgeria = UsePN (mkPN "Oran") ; + OsakaJapan = UsePN (mkPN "Osaka") ; + OsloNorway = UsePN (mkPN "Oslo") ; + OssnabruckGermany = UsePN (mkPN "Ossnabruck") ; + OthnielJunctionIsrael = UsePN (mkPN "Othniel Junction") ; + OtnielWestBank = UsePN (mkPN "Otniel") ; + OtzarinWestBank = UsePN (mkPN "Otzarin") ; + OzamisPhilippines = UsePN (mkPN "Ozamis") ; + PahalgamIndia = UsePN (mkPN "Pahalgam") ; + PalorinyaUganda = UsePN (mkPN "Palorinya") ; + PamplonaSpain = UsePN (mkPN "Pamplona") ; + PanamaCityPanama = UsePN (mkPN "Panama City") ; + PantrasGreece = UsePN (mkPN "Pantras") ; + PapayinColombia = UsePN (mkPN "Papayin") ; + PapuaIndonesia = UsePN (mkPN "Papua") ; + ParisFrance = UsePN (mkPN "Paris") ; + PatikulPhilippines = UsePN (mkPN "Patikul") ; + PauFrance = UsePN (mkPN "Pau") ; + PeAtSadehGazaStrip = UsePN (mkPN "Pe'at Sadeh") ; + PeshawarPakistan = UsePN (mkPN "Peshawar") ; + PetahTikvahIsrael = UsePN (mkPN "Petah Tikvah") ; + PhnomPenhCambodia = UsePN (mkPN "Phnom Penh") ; + PortadownIreland = UsePN (mkPN "Portadown") ; + PragueCzechRepublic = UsePN (mkPN "Prague") ; + PuertoAlviraColombia = UsePN (mkPN "Puerto Alvira") ; + PuertoLlerasColombia = UsePN (mkPN "Puerto Lleras") ; + PunjabPakistan = UsePN (mkPN "Punjab") ; + QuettaPakistan = UsePN (mkPN "Quetta") ; + QuitoEcuador = UsePN (mkPN "Quito") ; + RadaAmanYemen = UsePN (mkPN "Rada-Aman") ; + RafahGazaStrip = UsePN (mkPN "Rafah") ; + RamaJunctionWestBank = UsePN (mkPN "Rama Junction") ; + RamalDeAspusanaPeru = UsePN (mkPN "Ramal de Aspusana") ; + RamallahWestBank = UsePN (mkPN "Ramallah") ; + RamatGanIsrael = UsePN (mkPN "Ramat Gan") ; + RaminWestBank = UsePN (mkPN "Ramin") ; + RamleIsrael = UsePN (mkPN "Ramle") ; + RawalpindiPakistan = UsePN (mkPN "Rawalpindi") ; + ReusSpain = UsePN (mkPN "Reus") ; + RigaLatvia = UsePN (mkPN "Riga") ; + RijekaCroatia = UsePN (mkPN "Rijeka") ; + RimalDistrictGazaStrip = UsePN (mkPN "Rimal district") ; + RishonLeZionIsrael = UsePN (mkPN "Rishon Le Zion") ; + RiyadhSaudiArabia = UsePN (mkPN "Riyadh") ; + RoermondNetherlands = UsePN (mkPN "Roermond") ; + RomeItaly = UsePN (mkPN "Rome") ; + RosasSpain = UsePN (mkPN "Rosas") ; + RostovOnDonRussia = UsePN (mkPN "Rostov-on-Don") ; + RuhengeriRwanda = UsePN (mkPN "Ruhengeri") ; + SaadaYemen = UsePN (mkPN "Saada") ; + SabatenaColombia = UsePN (mkPN "Sabatena") ; + SacramentoUnitedStates = UsePN (mkPN "Sacramento") ; + SaintAvoldFrance = UsePN (mkPN "Saint Avold") ; + SaintSebastianSpain = UsePN (mkPN "Saint Sebastian") ; + SaintJeanDeLuzFrance = UsePN (mkPN "Saint-Jean-de-Luz") ; + SairanbarIraq = UsePN (mkPN "Sairanbar") ; + SajaIAGazaStrip = UsePN (mkPN "Saja'i'a") ; + SallentDeGallegoSpain = UsePN (mkPN "Sallent de Gallego") ; + SamariaWestBank = UsePN (mkPN "Samaria") ; + SamashkiRussia = UsePN (mkPN "Samashki") ; + SanDiegoColombia = UsePN (mkPN "San Diego") ; + SanJoseCostaRica = UsePN (mkPN "San Jose") ; + SanLuisColombia = UsePN (mkPN "San Luis") ; + SanMiguelElSalvador = UsePN (mkPN "San Miguel") ; + SanPabloColombia = UsePN (mkPN "San Pablo") ; + SanSabatianSpain = UsePN (mkPN "San Sabatian") ; + SanaaYemen = UsePN (mkPN "Sanaa") ; + SangaldanIndia = UsePN (mkPN "Sangaldan") ; + SantaMartaColombia = UsePN (mkPN "Santa Marta") ; + SantaPolaSpain = UsePN (mkPN "Santa Pola") ; + SantaRitaMountainsPanama = UsePN (mkPN "Santa Rita Mountains") ; + SantiagoChile = UsePN (mkPN "Santiago") ; + SanurIsrael = UsePN (mkPN "Sanur") ; + SarajevoBosniaAndHerzegovina = UsePN (mkPN "Sarajevo") ; + SatkhiraBangladesh = UsePN (mkPN "Satkhira") ; + SegoviaColombia = UsePN (mkPN "Segovia") ; + SeoulSouthKorea = UsePN (mkPN "Seoul") ; + SevilleSpain = UsePN (mkPN "Seville") ; + ShadmotMeholaWestBank = UsePN (mkPN "Shadmot Mehola") ; + ShaveiShomronWestBank = UsePN (mkPN "Shavei Shomron") ; + SheikhAjlunGazaStrip = UsePN (mkPN "Sheikh Ajlun") ; + ShiloWestBank = UsePN (mkPN "Shilo") ; + ShimiEcuador = UsePN (mkPN "Shimi") ; + ShlomiIsrael = UsePN (mkPN "Shlomi") ; + SidiHalifahLibya = UsePN (mkPN "Sidi Halifah") ; + SidonLebanon = UsePN (mkPN "Sidon") ; + SiirtTurkey = UsePN (mkPN "Siirt") ; + SilatADaharWestBank = UsePN (mkPN "Silat a-Dahar") ; + SipadanIslandMalaysia = UsePN (mkPN "Sipadan Island") ; + SitrahBahrain = UsePN (mkPN "Sitrah") ; + SoporeIndia = UsePN (mkPN "Sopore") ; + SrinagarIndia = UsePN (mkPN "Srinagar") ; + SrinigarIndia = UsePN (mkPN "Srinigar") ; + SriperumbudurIndia = UsePN (mkPN "Sriperumbudur") ; + StewartstownNorthernIreland = UsePN (mkPN "Stewartstown") ; + StockholmSweden = UsePN (mkPN "Stockholm") ; + StrasbourgFrance = UsePN (mkPN "Strasbourg") ; + SukaimaniyahIraq = UsePN (mkPN "Sukai-maniyah") ; + SulawesiIndonesia = UsePN (mkPN "Sulawesi") ; + SulaymaniyahIraq = UsePN (mkPN "Sulaymaniyah") ; + SumayrYemen = UsePN (mkPN "Sumayr") ; + SusiyaWestBank = UsePN (mkPN "Susiya") ; + TailaPakistan = UsePN (mkPN "Taila") ; + TamezGuidaAlgeria = UsePN (mkPN "Tamez-guida") ; + TandySriLanka = UsePN (mkPN "Tandy") ; + TaxilaPakistan = UsePN (mkPN "Taxila") ; + TBilisiGeorgia = UsePN (mkPN "T'bilisi") ; + TegucigalpaHonduras = UsePN (mkPN "Tegucigalpa") ; + TeheranIran = UsePN (mkPN "Teheran") ; + TekoaWestBank = UsePN (mkPN "Tekoa") ; + TelAvivIsrael = UsePN (mkPN "Tel Aviv") ; + --TelAvivIsrael = UsePN (mkPN "Tel-Aviv") ; + TelHaShomerJunctionIsrael = UsePN (mkPN "Tel HaShomer Junction") ; + TelQateifaGazaStrip = UsePN (mkPN "Tel Qateifa") ; + TelRumeiydaIsrael = UsePN (mkPN "Tel Rumeiyda") ; + TelemIsrael = UsePN (mkPN "Telem") ; + TenaWestBank = UsePN (mkPN "Tena") ; + TheHagueNetherlands = UsePN (mkPN "The Hague") ; + TheKyrgyzCapitalBishkekChina = UsePN (mkPN "The Kyrgyz capital Bishkek.") ; + ThekraguriIndia = UsePN (mkPN "Thekraguri") ; + TiaretAlgeria = UsePN (mkPN "Tiaret") ; + TiratAlgeria = UsePN (mkPN "Tirat") ; + TokyoJapan = UsePN (mkPN "Tokyo") ; + TolosaSpain = UsePN (mkPN "Tolosa") ; + TopkakiTurkey = UsePN (mkPN "Topkaki") ; + TrabzonTurkey = UsePN (mkPN "Trabzon") ; + TrincomaleeHarborSriLanka = UsePN (mkPN "Trincomalee Harbor") ; + TripoliLibya = UsePN (mkPN "Tripoli") ; + TulkaremWestBank = UsePN (mkPN "Tulkarem") ; + TulkarmWestBank = UsePN (mkPN "Tulkarm") ; + TunceliTurkey = UsePN (mkPN "Tunceli") ; + TurbatPakistan = UsePN (mkPN "Turbat") ; + UmAlFahmIsrael = UsePN (mkPN "Um al-Fahm") ; + UmmQasrIraq = UsePN (mkPN "Umm Qasr") ; + UrenaVenezuela = UsePN (mkPN "Urena") ; + UrraColombia = UsePN (mkPN "Urra") ; + UrsMartanRussia = UsePN (mkPN "Urs-Martan") ; + UWaIndianReservationColombia = UsePN (mkPN "U'wa Indian reservation") ; + ValenciaSpain = UsePN (mkPN "Valencia") ; + ValleduparColombia = UsePN (mkPN "Valledupar") ; + VanTurkey = UsePN (mkPN "Van") ; + VavuniyaSriLanka = UsePN (mkPN "Vavuniya") ; + ViennaAustria = UsePN (mkPN "Vienna") ; + VientianeLaos = UsePN (mkPN "Vientiane") ; + VillavicencioColombia = UsePN (mkPN "Villavicencio") ; + VitoriaSpain = UsePN (mkPN "Vitoria") ; + VitrollesFrance = UsePN (mkPN "Vitrolles") ; + VladikavkazRussia = UsePN (mkPN "Vladikavkaz") ; + VladivostokRussia = UsePN (mkPN "Vladivostok") ; + VolgodonskRussia = UsePN (mkPN "Volgodonsk") ; + WadiAlDabaatYemen = UsePN (mkPN "Wadi al-Dabaat") ; + WadiAraIsrael = UsePN (mkPN "Wadi Ara") ; + WadiKeltWestBank = UsePN (mkPN "Wadi Kelt") ; + WarsawPoland = UsePN (mkPN "Warsaw") ; + WashingtonDCUnitedStates = UsePN (mkPN "Washington DC.") ; + WattyanBahrain = UsePN (mkPN "Wattyan") ; + WestBeirutLebanon = UsePN (mkPN "West Beirut") ; + XiAnChina = UsePN (mkPN "Xi'an") ; + YaAbadWestBank = UsePN (mkPN "Ya'abad") ; + YagurJunctionIsrael = UsePN (mkPN "Yagur Junction") ; + YehudIsrael = UsePN (mkPN "Yehud") ; + YerevanArmenia = UsePN (mkPN "Yerevan") ; + YitzharWestBank = UsePN (mkPN "Yitzhar") ; + YokotaJapan = UsePN (mkPN "Yokota") ; + YopalColombia = UsePN (mkPN "Yopal") ; + YuksekovaTurkey = UsePN (mkPN "Yuksekova") ; + ZaitaIsrael = UsePN (mkPN "Zaita") ; + ZamarYemen = UsePN (mkPN "Zamar") ; + ZamboangaPhilippines = UsePN (mkPN "Zamboanga") ; + ZaragozaSpain = UsePN (mkPN "Zaragoza") ; + ZarauzSpain = UsePN (mkPN "Zarauz") ; + ZeifIntersectionWestBank = UsePN (mkPN "Zeif intersection") ; + ZekharyaIsrael = UsePN (mkPN "Zekharya") ; + ZuliaColombia = UsePN (mkPN "Zulia") ; + ZumaiaSpain = UsePN (mkPN "Zumaia") ; + ZumarragaSpain = UsePN (mkPN "Zumarraga") ; + Burundi = UsePN (mkPN "Burundi") ; + CentralAfricanRepublic = UsePN (mkPN "Central African Republic") ; + Chad = UsePN (mkPN "Chad") ; + DemocraticRepublicOfTheCongo = UsePN (mkPN "Democratic Republic of the Congo") ; + Rwanda = UsePN (mkPN "Rwanda") ; + Djibouti = UsePN (mkPN "Djibouti") ; + Eritrea = UsePN (mkPN "Eritrea") ; + Ethiopia = UsePN (mkPN "Ethiopia") ; + Kenya = UsePN (mkPN "Kenya") ; + Seychelles = UsePN (mkPN "Seychelles") ; + Somalia = UsePN (mkPN "Somalia") ; + Tanzania = UsePN (mkPN "Tanzania") ; + Uganda = UsePN (mkPN "Uganda") ; + Algeria = UsePN (mkPN "Algeria") ; + Egypt = UsePN (mkPN "Egypt") ; + Libya = UsePN (mkPN "Libya") ; + Mauritania = UsePN (mkPN "Mauritania") ; + Morocco = UsePN (mkPN "Morocco") ; + Sudan = UsePN (mkPN "Sudan") ; + Tunisia = UsePN (mkPN "Tunisia") ; + WesternSahara = UsePN (mkPN "Western Sahara") ; + Angola = UsePN (mkPN "Angola") ; + BassasDaIndia = UsePN (mkPN "Bassas da India") ; + Botswana = UsePN (mkPN "Botswana") ; + BouvetIsland = UsePN (mkPN "Bouvet Island") ; + Comoros = UsePN (mkPN "Comoros") ; + EuropaIsland = UsePN (mkPN "Europa Island") ; + GloriosoIslands = UsePN (mkPN "Glorioso Islands") ; + HeardIslandAndMcDonaldIslands = UsePN (mkPN "Heard Island and McDonald Islands") ; + JuanDeNovaIsland = UsePN (mkPN "Juan de Nova Island") ; + Lesotho = variants (UsePN (mkPN "Lesotho")) (UsePN (mkPN "Basutoland")) ; + Madagascar = UsePN (mkPN "Madagascar") ; + Malawi = UsePN (mkPN "Malawi") ; + Mauritius = UsePN (mkPN "Mauritius") ; + Mayotte = UsePN (mkPN "Mayotte") ; + Mozambique = UsePN (mkPN "Mozambique") ; + Namibia = UsePN (mkPN "Namibia") ; + Reunion = UsePN (mkPN "Reunion") ; + SouthAfrica = UsePN (mkPN "South Africa") ; + Swaziland = UsePN (mkPN "Swaziland") ; + TromelinIsland = UsePN (mkPN "Tromelin Island") ; + Zambia = UsePN (mkPN "Zambia") ; + Zimbabwe = UsePN (mkPN "Zimbabwe") ; + Benin = UsePN (mkPN "Benin") ; + BurkinaFaso = UsePN (mkPN "Burkina Faso") ; + Cameroon = UsePN (mkPN "Cameroon") ; + CapeVerde = UsePN (mkPN "Cape Verde") ; + CoteDIvoire = UsePN (mkPN "Cote d'Ivoire") ; + EquatorialGuinea = UsePN (mkPN "Equatorial Guinea") ; + Gabon = UsePN (mkPN "Gabon") ; + Gambia = UsePN (mkPN "Gambia") ; + Ghana = UsePN (mkPN "Ghana") ; + Guinea = UsePN (mkPN "Guinea") ; + GuineaBissau = UsePN (mkPN "Guinea Bissau") ; + Liberia = UsePN (mkPN "Liberia") ; + Mali = UsePN (mkPN "Mali") ; + Niger = UsePN (mkPN "Niger") ; + Nigeria = UsePN (mkPN "Nigeria") ; + SaoTomeAndPrincipe = UsePN (mkPN "Sao Tome and Principe") ; + Senegal = UsePN (mkPN "Senegal") ; + SierraLeone = UsePN (mkPN "Sierra Leone") ; + Togo = UsePN (mkPN "Togo") ; + SaintHelena = UsePN (mkPN "Saint Helena") ; + Bahrain = UsePN (mkPN "Bahrain") ; + Cyprus = UsePN (mkPN "Cyprus") ; + GazaStrip = UsePN (mkPN "Gaza Strip") ; + Iran = UsePN (mkPN "Iran") ; + Iraq = UsePN (mkPN "Iran") ; + Israel = UsePN (mkPN "Israel") ; + Jordan = UsePN (mkPN "Jordan") ; + Kuwait = UsePN (mkPN "Kuwait") ; + Lebanon = UsePN (mkPN "Lebanon") ; + Oman = UsePN (mkPN "Oman") ; + Qatar = UsePN (mkPN "Qatar") ; + SaudiArabia = UsePN (mkPN "Saudi Arabia") ; + Syria = UsePN (mkPN "Syria") ; + UnitedArabEmirates = UsePN (mkPN "United Arab Emirates") ; + WestBank = UsePN (mkPN "West Bank") ; + Yemen = UsePN (mkPN "Yemen") ; + Austria = UsePN (mkPN "Austria") ; + CzechRepublic = UsePN (mkPN "Czech Republic") ; + Germany = UsePN (mkPN "Germany") ; + Hungary = UsePN (mkPN "Hungary") ; + Liechtenstein = UsePN (mkPN "Liechtenstein") ; + Poland = UsePN (mkPN "Poland") ; + Slovakia = UsePN (mkPN "Slovakia") ; + Slovenia = UsePN (mkPN "Slovenia") ; + Switzerland = UsePN (mkPN "Switzerland") ; + Belarus = UsePN (mkPN "Belarus") ; + Estonia = UsePN (mkPN "Estonia") ; + Latvia = UsePN (mkPN "Latvia") ; + Lithuania = UsePN (mkPN "Lithuania") ; + Moldova = UsePN (mkPN "Moldova") ; + Ukraine = UsePN (mkPN "Ukraine") ; + Denmark = UsePN (mkPN "Denmark") ; + FaroeIslands = UsePN (mkPN "Faroe Islands") ; + Finland = UsePN (mkPN "Finland") ; + Iceland = UsePN (mkPN "Iceland") ; + JanMayenIsland = UsePN (mkPN "Jan Mayen Island") ; + Norway = UsePN (mkPN "Norway") ; + Svalbard = UsePN (mkPN "Svalbard") ; + Sweden = UsePN (mkPN "Sweden") ; + Greece = UsePN (mkPN "Greece") ; + HolySee = UsePN (mkPN "Holy See") ; + Italy = UsePN (mkPN "Italy") ; + Malta = UsePN (mkPN "Malta") ; + SanMarino = UsePN (mkPN "San Marino") ; + Belgium = UsePN (mkPN "Belgium") ; + France = UsePN (mkPN "France") ; + Guernsey = UsePN (mkPN "Guernsey") ; + Ireland = UsePN (mkPN "Ireland") ; + Jersey = UsePN (mkPN "Jersey") ; + Luxembourg = UsePN (mkPN "Luxembourg") ; + IsleOfMan = UsePN (mkPN "Isle of Man") ; + Monaco = UsePN (mkPN "Monaco") ; + Netherlands = UsePN (mkPN "Netherlands") ; + UnitedKingdom = UsePN (mkPN "United Kingdom of Great Britain and Northern Ireland") ; + --UnitedKingdom = UsePN (mkPN "United Kingdom") ; + --UnitedKingdom = UsePN (mkPN "Great Britain") ; + Albania = UsePN (mkPN "Albania") ; + BosniaAndHerzegovina = UsePN (mkPN "Bosnia and Herzegovina") ; + Bulgaria = UsePN (mkPN "Bulgaria") ; + Croatia = UsePN (mkPN "Croatia") ; + Macedonia = UsePN (mkPN "Macedonia") ; + Romania = UsePN (mkPN "Romania") ; + Turkey = UsePN (mkPN "Turkey") ; + SerbiaAndMontenegro = UsePN (mkPN "Serbia and Montenegro") ; + Andorra = UsePN (mkPN "Andorra") ; + Gibraltar = UsePN (mkPN "Gibraltar") ; + Portugal = UsePN (mkPN "Portugal") ; + Spain = UsePN (mkPN "Spain") ; + Bermuda = UsePN (mkPN "Bermuda") ; + UnitedStates = UsePN (mkPN "United States") ; + Canada = UsePN (mkPN "Canada") ; + Greenland = UsePN (mkPN "Greenland") ; + SaintPierreAndMiquelon = UsePN (mkPN "Saint Pierre and Miquelon") ; + Anguilla = UsePN (mkPN "Anguilla") ; + AntiguaAndBarbuda = UsePN (mkPN "Antigua and Barbuda") ; + Aruba = UsePN (mkPN "Aruba") ; + TheBahamas = UsePN (mkPN "Bahamas") ; + Barbados = UsePN (mkPN "Barbados") ; + BritishVirginIslands = UsePN (mkPN "British Virgin Islands") ; + CaymanIslands = UsePN (mkPN "Cayman Islands") ; + Cuba = UsePN (mkPN "Cuba") ; + Dominica = UsePN (mkPN "Dominica") ; + DominicanRepublic = UsePN (mkPN "Dominican Republic") ; + Grenada = UsePN (mkPN "Grenada") ; + Guadeloupe = UsePN (mkPN "Guadeloupe") ; + Haiti = UsePN (mkPN "Haiti") ; + Jamaica = UsePN (mkPN "Jamaica") ; + Martinique = UsePN (mkPN "Martinique") ; + Montserrat = UsePN (mkPN "Montserrat") ; + NavassaIsland = UsePN (mkPN "Navassa Island") ; + NetherlandsAntilles = UsePN (mkPN "Netherlands Antilles") ; + PuertoRico = UsePN (mkPN "Puerto Rico") ; + SaintKittsAndNevis = UsePN (mkPN "Saint Kitts and Nevis") ; + SaintLucia = UsePN (mkPN "Saint Lucia") ; + SaintVincentAndTheGrenadines = UsePN (mkPN "Saint Vincent and the Grenadines") ; + TrinidadAndTobago = UsePN (mkPN "Trinidad and Tobago") ; + TurksAndCaicosIslands = UsePN (mkPN "Turks and Caicos Islands") ; + VirginIslands = UsePN (mkPN "Virgin Islands") ; + Belize = UsePN (mkPN "Belize") ; + ClippertonIsland = UsePN (mkPN "Clipperton Island") ; + CostaRica = UsePN (mkPN "Costa Rica") ; + ElSalvador = UsePN (mkPN "El Salvador") ; + Guatemala = UsePN (mkPN "Guatemala") ; + Honduras = UsePN (mkPN "Honduras") ; + Mexico = UsePN (mkPN "Mexico") ; + Nicaragua = UsePN (mkPN "Nicaragua") ; + Panama = UsePN (mkPN "Panama") ; + Bolivia = UsePN (mkPN "Bolivia") ; + Paraguay = UsePN (mkPN "Paraguay") ; + Brazil = UsePN (mkPN "Brazil") ; + Colombia = UsePN (mkPN "Colombia") ; + FrenchGuiana = UsePN (mkPN "French Guiana") ; + Guyana = UsePN (mkPN "Guyana") ; + Suriname = UsePN (mkPN "Suriname") ; + Venezuela = UsePN (mkPN "Venezuela") ; + Argentina = UsePN (mkPN "Argentina") ; + Chile = UsePN (mkPN "Chile") ; + FalklandIslands = UsePN (mkPN "Falkland Islands") ; + SouthGeorgiaAndTheSouthSandwichIslands = UsePN (mkPN "South Georgia and the South Sandwich Islands") ; + Uruguay = UsePN (mkPN "Uruguay") ; + Ecuador = UsePN (mkPN "Ecuador") ; + Peru = UsePN (mkPN "Peru") ; + Kazakhstan = UsePN (mkPN "Kazakhstan") ; + Kyrgyzstan = UsePN (mkPN "Kyrgyzstan") ; + Tajikistan = UsePN (mkPN "Tajikistan") ; + Turkmenistan = UsePN (mkPN "Turkmenistan") ; + Uzbekistan = UsePN (mkPN "Uzbekistan") ; + China = UsePN (mkPN "China") ; + HongKong = UsePN (mkPN "Hong Kong") ; + Japan = UsePN (mkPN "Japan") ; + NorthKorea = UsePN (mkPN "NorthKorea") ; + SouthKorea = UsePN (mkPN "SouthKorea") ; + Macau = UsePN (mkPN "Macau") ; + Taiwan = UsePN (mkPN "Taiwan") ; + --Taiwan = UsePN (mkPN "Republic of China") ; + Mongolia = UsePN (mkPN "Mongolia") ; + Russia = UsePN (mkPN "Russia") ; + Afghanistan = UsePN (mkPN "Afghanistan") ; + Bangladesh = UsePN (mkPN "Bangladesh") ; + Bhutan = UsePN (mkPN "Bhutan") ; + BritishIndianOceanTerritory = UsePN (mkPN "British Indian Ocean Territory") ; + India = UsePN (mkPN "India") ; + Maldives = UsePN (mkPN "Maldives") ; + Nepal = UsePN (mkPN "Nepal") ; + Pakistan = UsePN (mkPN "Pakistan") ; + SriLanka = UsePN (mkPN "Sri Lanka") ; + FrenchSouthernAndAntarcticLands = UsePN (mkPN "French Southern and Antarctic Lands") ; + AshmoreAndCartierIslands = UsePN (mkPN "Ashmore and Cartier Islands") ; + Brunei = UsePN (mkPN "Brunei") ; + Cambodia = UsePN (mkPN "Cambodia") ; + ChristmasIsland = UsePN (mkPN "Christmas Island") ; + CocosKeelingIslands = UsePN (mkPN "Cocos Keeling Islands") ; + EastTimor = UsePN (mkPN "East Timor") ; + Indonesia = UsePN (mkPN "Indonesia") ; + Laos = UsePN (mkPN "Laos") ; + Malaysia = UsePN (mkPN "Malaysia") ; + Myanmar = UsePN (mkPN "Myanmar") ; + PapuaNewGuinea = UsePN (mkPN "Papua New Guinea") ; + ParacelIslands = UsePN (mkPN "Paracel Islands") ; + Philippines = UsePN (mkPN "Philippines") ; + Singapore = UsePN (mkPN "Singapore") ; + SpratlyIslands = UsePN (mkPN "Spratly Islands") ; + Thailand = UsePN (mkPN "Thailand") ; + Vietnam = UsePN (mkPN "Vietnam") ; + Armenia = UsePN (mkPN "Armenia") ; + Azerbaijan = UsePN (mkPN "Azerbaijan") ; + RepublicOfGeorgia = UsePN (mkPN "Republic Of Georgia") ; + AmericanSamoa = UsePN (mkPN "American Samoa") ; + Australia = UsePN (mkPN "Australia") ; + BakerIsland = UsePN (mkPN "Baker Island") ; + CookIslands = UsePN (mkPN "Cook Islands") ; + CoralSeaIslands = UsePN (mkPN "Coral Sea Islands") ; + Fiji = UsePN (mkPN "Fiji") ; + FrenchPolynesia = UsePN (mkPN "French Polynesia") ; + Guam = UsePN (mkPN "Guam") ; + HowlandIsland = UsePN (mkPN "Howland Island") ; + JarvisIsland = UsePN (mkPN "Jarvis Island") ; + JohnstonAtoll = UsePN (mkPN "Johnston Atoll") ; + KingmanReef = UsePN (mkPN "Kingman Reef") ; + Kiribati = UsePN (mkPN "Kiribati") ; + MarshallIslands = UsePN (mkPN "Marshall Islands") ; + Micronesia = UsePN (mkPN "Micronesia") ; + MidwayIslands = UsePN (mkPN "Midway Islands") ; + Nauru = UsePN (mkPN "Nauru") ; + NewCaledonia = UsePN (mkPN "New Caledonia") ; + NewZealand = UsePN (mkPN "New Zealand") ; + Niue = UsePN (mkPN "Niue") ; + NorfolkIsland = UsePN (mkPN "Norfolk Island") ; + NorthernMarianaIslands = UsePN (mkPN "Northern Mariana Islands") ; + Palau = UsePN (mkPN "Palau") ; + PalmyraAtoll = UsePN (mkPN "Palmyra Atoll") ; + PitcairnIslands = UsePN (mkPN "Pitcairn Islands") ; + Samoa = UsePN (mkPN "Samoa") ; + SolomonIslands = UsePN (mkPN "Solomon Islands") ; + Tokelau = UsePN (mkPN "Tokelau") ; + Tonga = UsePN (mkPN "Tonga") ; + Tuvalu = UsePN (mkPN "Tuvalu") ; + Vanuatu = UsePN (mkPN "Vanuatu") ; + WakeIsland = UsePN (mkPN "Wake Island") ; + WallisAndFutuna = UsePN (mkPN "Wallis and Futuna") ; + +}; diff --git a/examples/SUMO/Economy.gf b/examples/SUMO/Economy.gf index 728583b68..f60e6aa42 100644 --- a/examples/SUMO/Economy.gf +++ b/examples/SUMO/Economy.gf @@ -1,2373 +1,2328 @@ -- # -path=.:englishExtended -abstract Economy = open Merge, Transportation, Mid_level_ontology, Geography in { +abstract Economy = MidLevelOntology, Transportation, Geography ** { + -- AdvancedDevelopingCountry + -- is an Attribute used to describe a LessDevelopedCountry (LDC) + -- that is undergoing rapid industrial development. Also called 'newly + -- industrializing economy' (or 'country'). + fun AdvancedDevelopingCountry : Ind EconomicDevelopmentLevel ; + -- AdvancedEconomy is an Attribute + -- used to represent the InternationalMonetaryFund's top category of + -- development levels (AdvancedEconomy,, countries in transition, and + -- developing countries. Generally (but not exactly) corresponds with + -- DevelopedCountry classification used by UnitedNations agencies. + fun AdvancedEconomy : Ind IMFDevelopmentLevel ; --- AdvancedDevelopingCountry --- is an Attribute used to describe a LessDevelopedCountry (LDC) --- that is undergoing rapid industrial development. Also called 'newly --- industrializing economy' (or 'country'). -fun AdvancedDevelopingCountry : Ind EconomicDevelopmentLevel ; + fun AfghanAfghani : Ind UnitOfCurrency ; + fun AfghanAfghaniCoin : Class ; + fun AfghanAfghaniCoin_Class : SubClass AfghanAfghaniCoin CurrencyCoin ; --- AdvancedEconomy is an Attribute --- used to represent the InternationalMonetaryFund's top category of --- development levels (AdvancedEconomy,, countries in transition, and --- developing countries. Generally (but not exactly) corresponds with --- DevelopedCountry classification used by UnitedNations agencies. -fun AdvancedEconomy : Ind IMFDevelopmentLevel ; + fun AgriculturalSector : Ind IndustryAttribute ; + fun AgricultureBasedEconomy : Ind FinancialSectorAttribute ; -fun AfghanAfghani : Ind UnitOfCurrency ; + -- (AgricultureFn ?PRODUCT) denotes the + -- subclass of Agriculture processes in which the AgriculturalProduct + -- ?PRODUCT is cultivated. + fun AgricultureFn: Desc AgriculturalProduct -> Desc Agriculture ; -fun AfghanAfghaniCoin : Class ; -fun AfghanAfghaniCoin_Class : SubClass AfghanAfghaniCoin CurrencyCoin ; -fun AgriculturalProduct_Product : SubClass AgriculturalProduct Product ; + fun AgricultureForestryFishingAndHunting : Ind IndustryAttribute ; -fun AgriculturalSector : Ind IndustryAttribute ; + fun AlbanianLek : Ind UnitOfCurrency ; -fun AgricultureBasedEconomy : Ind FinancialSectorAttribute ; + fun Alfalfa : Class ; + fun Alfalfa_Class : SubClass Alfalfa (both Fodder (both Plant PlantAgriculturalProduct)) ; --- (AgricultureFn ?PRODUCT) denotes the --- subclass of Agriculture processes in which the AgriculturalProduct --- ?PRODUCT is cultivated. -fun AgricultureFn: Desc AgriculturalProduct -> Desc Agriculture ; + fun AlgerianDinar : Ind UnitOfCurrency ; + fun AlmondNut : Class ; + fun AlmondNut_Class : SubClass AlmondNut EdibleNut ; -fun AgricultureForestryFishingAndHunting : Ind IndustryAttribute ; + -- Aloes is the class of + -- PlantAgriculturalProducts that are dried juice of + -- the Aloe plant. + fun Aloes : Class ; + fun Aloes_Class : SubClass Aloes PlantAgriculturalProduct ; -fun AlbanianLek : Ind UnitOfCurrency ; + -- Alumina is the naturally occurring oxide + -- of aluminum which is found in corundum and bauxite. + fun Alumina : Class ; + fun Alumina_Class : SubClass Alumina CompoundSubstance ; -fun Alfalfa : Class ; -fun Alfalfa_Class : SubClass Alfalfa (both Fodder (both Plant PlantAgriculturalProduct)) ; + fun AluminumMetal : Class ; + fun AluminumMetal_Class : SubClass AluminumMetal MetalProduct ; -fun AlgerianDinar : Ind UnitOfCurrency ; + fun AngolanKwanza : Ind UnitOfCurrency ; -fun AlmondNut : Class ; -fun AlmondNut_Class : SubClass AlmondNut EdibleNut ; --- Aloes is the class of --- PlantAgriculturalProducts that are dried juice of --- the Aloe plant. -fun Aloes : Class ; -fun Aloes_Class : SubClass Aloes PlantAgriculturalProduct ; + -- AnimalSkin is the subclass of BodyCovering that + -- includes the skins, or parts of skins, of animals. + fun AnimalSkin : Class ; + fun AnimalSkin_Class : SubClass AnimalSkin BodyCovering ; --- Alumina is the naturally occurring oxide --- of aluminum which is found in corundum and bauxite. -fun Alumina : Class ; -fun Alumina_Class : SubClass Alumina CompoundSubstance ; + -- A FruitOrVegetable that has a tart to sweet taste and a spherical shape. + fun Apple : Class ; + fun Apple_Class : SubClass Apple (both (both Food Fruit) GroceryProduce) ; -fun AluminumMetal : Class ; -fun AluminumMetal_Class : SubClass AluminumMetal MetalProduct ; -fun AngolanKwanza : Ind UnitOfCurrency ; + fun ArgentineAustral : Ind UnitOfCurrency ; --- AnimalSkin is the subclass of --- BodyCovering that includes the skins, or parts of skins, --- of animals. -fun AnimalSkin : Class ; -fun AnimalSkin_Class : SubClass AnimalSkin BodyCovering ; + fun ArmenianDram : Ind UnitOfCurrency ; -fun Apple_Fruit : SubClass Apple Fruit ; + -- Asphalt is a highly viscous liquid that occurs + -- naturally in most crude petroleums. Asphalt can be separated from the + -- other components in crude oil (such as naphtha, gasoline and diesel) by + -- the process of fractional distillation, usually under vacuum conditions. + -- Both tars and asphalts are classified as bitumens, a classification that + -- includes all materials entirely soluble in carbon disulphide. Asphalt is + -- commonly used in roofing shingles, and combined with mineral aggregate to + -- make asphalt concrete for making roads. (definition from Wikipedia) + fun Asphalt : Class ; + fun Asphalt_Class : SubClass Asphalt RefinedPetroleumProduct ; -fun Apple_GroceryProduce : SubClass Apple GroceryProduce ; + fun AsphaltPavingRoofingAndSaturatedMaterialsManufacturing : Ind IndustryAttribute ; -fun ArgentineAustral : Ind UnitOfCurrency ; + fun AustralianDollar : Ind UnitOfCurrency ; -fun ArmenianDram : Ind UnitOfCurrency ; + fun AustrianSchilling : Ind UnitOfCurrency ; --- Asphalt is a highly viscous liquid that occurs --- naturally in most crude petroleums. Asphalt can be separated from the --- other components in crude oil (such as naphtha, gasoline and diesel) by --- the process of fractional distillation, usually under vacuum conditions. --- Both tars and asphalts are classified as bitumens, a classification that --- includes all materials entirely soluble in carbon disulphide. Asphalt is --- commonly used in roofing shingles, and combined with mineral aggregate to --- make asphalt concrete for making roads. (definition from Wikipedia) -fun Asphalt : Class ; -fun Asphalt_Class : SubClass Asphalt RefinedPetroleumProduct ; + -- A TropicalFruit that is shaped like a pear and has a dark green skin and a rich meat. + fun Avocado : Class ; + fun Avocado_Class : SubClass Avocado (both Food TropicalFruit) ; -fun AsphaltPavingRoofingAndSaturatedMaterialsManufacturing : Ind IndustryAttribute ; + fun AzerbaijaniManat : Ind UnitOfCurrency ; -fun AustralianDollar : Ind UnitOfCurrency ; + fun BahamianDollar : Ind UnitOfCurrency ; -fun AustrianSchilling : Ind UnitOfCurrency ; + fun BahrainianDinar : Ind UnitOfCurrency ; -fun Avocado_GroceryProduce : SubClass Avocado GroceryProduce ; + fun BalsaWood : Class ; + fun BalsaWood_Class : SubClass BalsaWood WoodProduct ; -fun Avocado_TropicalFruit : SubClass Avocado TropicalFruit ; + fun Banana : Class ; + fun Banana_Class : SubClass Banana (both GroceryProduce TropicalFruit) ; -fun AzerbaijaniManat : Ind UnitOfCurrency ; + fun BangladeshiTaka : Ind UnitOfCurrency ; -fun BahamianDollar : Ind UnitOfCurrency ; + fun BarbadosDollar : Ind UnitOfCurrency ; -fun BahrainianDinar : Ind UnitOfCurrency ; + fun BarleyFarming : Ind IndustryAttribute ; -fun BalsaWood : Class ; -fun BalsaWood_Class : SubClass BalsaWood WoodProduct ; -fun Banana : Class ; -fun Banana_Class : SubClass Banana (both GroceryProduce TropicalFruit) ; + fun BarleyGrain : Class ; + fun BarleyGrain_Class : SubClass BarleyGrain CerealGrain ; -fun BangladeshiTaka : Ind UnitOfCurrency ; + -- Bauxite is an impure mixture of earthy + -- hydrous aluminum oxides and hydroxides that is the principal + -- source of aluminum. + fun Bauxite : Class ; + fun Bauxite_Class : SubClass Bauxite (both MiningProduct Mixture) ; -fun BarbadosDollar : Ind UnitOfCurrency ; + fun Bean : Class ; + fun Bean_Class : SubClass Bean Legume ; -fun BarleyFarming : Ind IndustryAttribute ; + fun BelarusianRubel : Ind UnitOfCurrency ; -fun BarleyGrain : Class ; -fun BarleyGrain_Class : SubClass BarleyGrain CerealGrain ; --- Bauxite is an impure mixture of earthy --- hydrous aluminum oxides and hydroxides that is the principal --- source of aluminum. -fun Bauxite : Class ; -fun Bauxite_Class : SubClass Bauxite (both MiningProduct Mixture) ; + fun BelgianFranc : Ind UnitOfCurrency ; + fun BelizeDollar : Ind UnitOfCurrency ; -fun Bean : Class ; -fun Bean_Class : SubClass Bean Legume ; -fun BelarusianRubel : Ind UnitOfCurrency ; + fun BeninFranc : Ind UnitOfCurrency ; -fun BelgianFranc : Ind UnitOfCurrency ; + fun BermudaDollar : Ind UnitOfCurrency ; -fun BelizeDollar : Ind UnitOfCurrency ; + fun Berry : Class ; + fun Berry_Class : SubClass Berry (both Fruit GroceryProduce) ; -fun BeninFranc : Ind UnitOfCurrency ; + -- BeverageProduct is the class of products + -- that are Beverages, packaged or unpackaged. + fun BeverageProduct : Class ; + fun BeverageProduct_Class : SubClass BeverageProduct Product ; -fun BermudaDollar : Ind UnitOfCurrency ; + fun BhutaneseNgultrum : Ind UnitOfCurrency ; -fun Berry : Class ; -fun Berry_Class : SubClass Berry (both Fruit GroceryProduce) ; + fun BlackPepper : Class ; + fun BlackPepper_Class : SubClass BlackPepper Spice ; --- BeverageProduct is the class of products --- that are Beverages, packaged or unpackaged. -fun BeverageProduct : Class ; -fun BeverageProduct_Class : SubClass BeverageProduct Product ; + fun BolivianBoliviano : Ind UnitOfCurrency ; -fun BhutaneseNgultrum : Ind UnitOfCurrency ; + fun BotswanaPula : Ind UnitOfCurrency ; -fun BlackPepper : Class ; -fun BlackPepper_Class : SubClass BlackPepper Spice ; -fun BolivianBoliviano : Ind UnitOfCurrency ; + fun BrazilianReal : Ind UnitOfCurrency ; -fun BotswanaPula : Ind UnitOfCurrency ; + fun Breadfruit : Class ; + fun Breadfruit_Class : SubClass Breadfruit (both GroceryProduce TropicalFruit) ; -fun BrazilianReal : Ind UnitOfCurrency ; + fun BritishPound : Ind UnitOfCurrency ; -fun Breadfruit : Class ; -fun Breadfruit_Class : SubClass Breadfruit (both GroceryProduce TropicalFruit) ; + fun BritishPoundCoin : Class ; + fun BritishPoundCoin_Class : SubClass BritishPoundCoin CurrencyCoin ; -fun BritishPound : Ind UnitOfCurrency ; + fun BruneiDollar : Ind UnitOfCurrency ; -fun BritishPoundCoin : Class ; -fun BritishPoundCoin_Class : SubClass BritishPoundCoin CurrencyCoin ; -fun BruneiDollar : Ind UnitOfCurrency ; + fun BulgarianLev : Ind UnitOfCurrency ; -fun BulgarianLev : Ind UnitOfCurrency ; + fun BurkinaFasoFranc : Ind UnitOfCurrency ; -fun BurkinaFasoFranc : Ind UnitOfCurrency ; + fun BurundiFranc : Ind UnitOfCurrency ; -fun BurundiFranc : Ind UnitOfCurrency ; + fun Cabbage : Class ; + fun Cabbage_Class : SubClass Cabbage (both GroceryProduce Vegetable) ; -fun Cabbage : Class ; -fun Cabbage_Class : SubClass Cabbage (both GroceryProduce Vegetable) ; + fun CambodianRiel : Ind UnitOfCurrency ; -fun CambodianRiel : Ind UnitOfCurrency ; + fun Camel : Class ; + fun Camel_Class : SubClass Camel (both Livestock Mammal) ; -fun Camel : Class ; -fun Camel_Class : SubClass Camel (both Livestock Mammal) ; + fun CameroonFranc : Ind UnitOfCurrency ; -fun CameroonFranc : Ind UnitOfCurrency ; + fun CanadianDollar : Ind UnitOfCurrency ; -fun CanadianDollar : Ind UnitOfCurrency ; + fun CanadianDollarCoin : Class ; + fun CanadianDollarCoin_Class : SubClass CanadianDollarCoin CurrencyCoin ; -fun CanadianDollarCoin : Class ; -fun CanadianDollarCoin_Class : SubClass CanadianDollarCoin CurrencyCoin ; + fun Cannabis : Class ; + fun Cannabis_Class : SubClass Cannabis PlantAgriculturalProduct ; -fun Cannabis : Class ; -fun Cannabis_Class : SubClass Cannabis PlantAgriculturalProduct ; + fun CapeVerdeEscudo : Ind UnitOfCurrency ; -fun CapeVerdeEscudo : Ind UnitOfCurrency ; + -- CapitalGoods are those that are used + -- in the production of other Products. For example, raw materials + -- from which end products are manufactured, or machines and other + -- structures used in the production process. + fun CapitalGood : Class ; + fun CapitalGood_Class : SubClass CapitalGood Product ; --- CapitalGoods are those that are used --- in the production of other Products. For example, raw materials --- from which end products are manufactured, or machines and other --- structures used in the production process. -fun CapitalGood : Class ; -fun CapitalGood_Class : SubClass CapitalGood Product ; + -- CapitalistEconomy is the + -- Attribute used to characterize a country whose economy is based + -- on private ownership of the means of production and distribution, + -- and on private accumulation of capital. + fun CapitalistEconomy : Ind EconomicSystemAttribute ; --- CapitalistEconomy is the --- Attribute used to characterize a country whose economy is based --- on private ownership of the means of production and distribution, --- and on private accumulation of capital. -fun CapitalistEconomy : Ind EconomicSystemAttribute ; + fun Cardamom : Class ; + fun Cardamom_Class : SubClass Cardamom Spice ; + fun Carrot : Class ; + fun Carrot_Class : SubClass Carrot (both GroceryProduce RootVegetable) ; -fun Cardamom : Class ; -fun Cardamom_Class : SubClass Cardamom Spice ; -fun Carrot : Class ; -fun Carrot_Class : SubClass Carrot (both GroceryProduce RootVegetable) ; + fun CashewNut : Class ; + fun CashewNut_Class : SubClass CashewNut EdibleNut ; -fun CashewNut : Class ; -fun CashewNut_Class : SubClass CashewNut EdibleNut ; -fun Cassava : Class ; -fun Cassava_Class : SubClass Cassava (both GroceryProduce RootVegetable) ; + fun Cassava : Class ; + fun Cassava_Class : SubClass Cassava (both GroceryProduce RootVegetable) ; -fun Cattle : Class ; -fun Cattle_Class : SubClass Cattle (both HoofedMammal Livestock) ; + fun Cattle : Class ; + fun Cattle_Class : SubClass Cattle (both HoofedMammal Livestock) ; -fun Cauliflower : Class ; -fun Cauliflower_Class : SubClass Cauliflower (both GroceryProduce Vegetable) ; + fun Cauliflower : Class ; + fun Cauliflower_Class : SubClass Cauliflower (both GroceryProduce Vegetable) ; -fun Caviar : Class ; -fun Caviar_Class : SubClass Caviar FishRoe ; -fun CaymanIslandsDollar : Ind UnitOfCurrency ; + fun Caviar : Class ; + fun Caviar_Class : SubClass Caviar FishRoe ; --- Cement is a subclass of CompoundSubstance --- whose instances may contain various minerals or ores, prepared by --- heating and pulverizing, and used in binding Concrete or in laying --- brick or stone. -fun Cement : Class ; -fun Cement_Class : SubClass Cement (both CompoundSubstance ManufacturedProduct) ; + fun CaymanIslandsDollar : Ind UnitOfCurrency ; + -- Cement is a subclass of CompoundSubstance + -- whose instances may contain various minerals or ores, prepared by + -- heating and pulverizing, and used in binding Concrete or in laying + -- brick or stone. + fun Cement : Class ; + fun Cement_Class : SubClass Cement (both CompoundSubstance ManufacturedProduct) ; -fun CentralAfricanRepublicFranc : Ind UnitOfCurrency ; + fun CentralAfricanRepublicFranc : Ind UnitOfCurrency ; --- CentrallyPlannedEconomy --- is a term used mainly to describe communist or formerly communist --- states, many of which are now evolving away from command economies --- towards market_oriented systems. Also known as a 'command economy'. -fun CentrallyPlannedEconomy : Ind EconomicSystemAttribute ; + -- CentrallyPlannedEconomy + -- is a term used mainly to describe communist or formerly communist + -- states, many of which are now evolving away from command economies + -- towards market_oriented systems. Also known as a 'command economy'. + fun CentrallyPlannedEconomy : Ind EconomicSystemAttribute ; + fun CerealGrainFarming : Ind IndustryAttribute ; -fun CerealGrainFarming : Ind IndustryAttribute ; + fun CerealGrain_Vegetable : SubClass CerealGrain Vegetable ; -fun CerealGrain_PlantAgriculturalProduct : SubClass CerealGrain PlantAgriculturalProduct ; + fun CerealGrass : Class ; + fun CerealGrass_Class : SubClass CerealGrass Grass ; -fun CerealGrain_Vegetable : SubClass CerealGrain Vegetable ; + fun ChadianFranc : Ind UnitOfCurrency ; -fun CerealGrass : Class ; -fun CerealGrass_Class : SubClass CerealGrass Grass ; -fun ChadianFranc : Ind UnitOfCurrency ; + fun Cheese : Class ; + fun Cheese_Class : SubClass Cheese (both DairyProduct PreparedFood) ; -fun Cheese : Class ; -fun Cheese_Class : SubClass Cheese (both DairyProduct PreparedFood) ; + -- ChemicalProduct is the subclass + -- of Product comprising all chemical compounds that are end products + -- or industrial products used in the manufacture of end products. + fun ChemicalProduct : Class ; + fun ChemicalProduct_Class : SubClass ChemicalProduct (both CompoundSubstance ManufacturedProduct) ; --- ChemicalProduct is the subclass --- of Product comprising all chemical compounds that are end products --- or industrial products used in the manufacture of end products. -fun ChemicalProduct : Class ; -fun ChemicalProduct_Class : SubClass ChemicalProduct (both CompoundSubstance ManufacturedProduct) ; + fun ChileanPeso : Ind UnitOfCurrency ; + fun ChineseYuan : Ind UnitOfCurrency ; -fun ChileanPeso : Ind UnitOfCurrency ; + fun Chrysanthemum : Class ; + fun Chrysanthemum_Class : SubClass Chrysanthemum (both FloweringPlant PlantAgriculturalProduct) ; -fun ChineseYuan : Ind UnitOfCurrency ; + fun Cinnamon : Class ; + fun Cinnamon_Class : SubClass Cinnamon Spice ; -fun Chrysanthemum : Class ; -fun Chrysanthemum_Class : SubClass Chrysanthemum (both FloweringPlant PlantAgriculturalProduct) ; + fun CitrusFruit : Class ; + fun CitrusFruit_Class : SubClass CitrusFruit (both Fruit GroceryProduce) ; -fun Cinnamon : Class ; -fun Cinnamon_Class : SubClass Cinnamon Spice ; -fun CitrusFruit : Class ; -fun CitrusFruit_Class : SubClass CitrusFruit (both Fruit GroceryProduce) ; + fun ClothesDryer : Class ; + fun ClothesDryer_Class : SubClass ClothesDryer MajorAppliance ; -fun ClothesDryer : Class ; -fun ClothesDryer_Class : SubClass ClothesDryer MajorAppliance ; -fun ClothesWashingMachine : Class ; -fun ClothesWashingMachine_Class : SubClass ClothesWashingMachine MajorAppliance ; -fun Clove : Class ; -fun Clove_Class : SubClass Clove Spice ; -fun Clover : Class ; -fun Clover_Class : SubClass Clover (both Fodder (both Plant PlantAgriculturalProduct)) ; + fun ClothesWashingMachine : Class ; + fun ClothesWashingMachine_Class : SubClass ClothesWashingMachine MajorAppliance ; -fun CoalIndustry : Ind IndustryAttribute ; + fun Clove : Class ; + fun Clove_Class : SubClass Clove Spice ; -fun CoalMining : Ind IndustryAttribute ; + fun Clover : Class ; + fun Clover_Class : SubClass Clover (both Fodder (both Plant PlantAgriculturalProduct)) ; -fun CoalProductsManufacturing : Ind IndustryAttribute ; + fun CoalIndustry : Ind IndustryAttribute ; --- Coca is the class of --- PlantAgriculturalProducts consisting of the parts, --- especially leaves, of the coca plant. Coca leaves --- are the source of Cocaine. -fun Coca : Class ; -fun Coca_Class : SubClass Coca PlantAgriculturalProduct ; + fun CoalMining : Ind IndustryAttribute ; -fun Cocaine : Class ; -fun Cocaine_Class : SubClass Cocaine (both Narcotic PlantAgriculturalProduct) ; + fun CoalProductsManufacturing : Ind IndustryAttribute ; --- Cocoa is the class of powdered --- PlantAgriculturalProduct derived from cacao beans. -fun Cocoa : Class ; -fun Cocoa_Class : SubClass Cocoa (both FruitOrVegetable PlantAgriculturalProduct) ; + -- Coca is the class of PlantAgriculturalProducts consisting of the parts, + -- especially leaves, of the coca plant. Coca leaves are the source of Cocaine. + fun Coca : Class ; + fun Coca_Class : SubClass Coca PlantAgriculturalProduct ; + fun Cocaine : Class ; + fun Cocaine_Class : SubClass Cocaine (both Narcotic PlantAgriculturalProduct) ; -fun CocoaBean : Class ; -fun CocoaBean_Class : SubClass CocoaBean (both FruitOrVegetable PlantAgriculturalProduct) ; + -- Cocoa is the class of powdered + -- PlantAgriculturalProduct derived from cacao beans. + fun Cocoa : Class ; + fun Cocoa_Class : SubClass Cocoa (both FruitOrVegetable PlantAgriculturalProduct) ; -fun Coconut_GroceryProduce : SubClass Coconut GroceryProduce ; + fun CocoaBean : Class ; + fun CocoaBean_Class : SubClass CocoaBean (both FruitOrVegetable PlantAgriculturalProduct) ; -fun Coconut_TropicalFruit : SubClass Coconut TropicalFruit ; + -- A FruitOrVegetable that is produced by a type of palm + -- and has an edible white meat. + fun Coconut : Class ; + fun Coconut_Class : SubClass Coconut (both Food TropicalFruit) ; -fun CoffeeBean : Class ; -fun CoffeeBean_Class : SubClass CoffeeBean (both FruitOrVegetable PlantAgriculturalProduct) ; + fun CoffeeBean : Class ; + fun CoffeeBean_Class : SubClass CoffeeBean (both FruitOrVegetable PlantAgriculturalProduct) ; -fun ColombianPeso : Ind UnitOfCurrency ; + fun ColombianPeso : Ind UnitOfCurrency ; -fun CommercialAndIndustrialRefrigerationAndEquipmentManufacturing : Ind IndustryAttribute ; + fun CommercialAndIndustrialRefrigerationAndEquipmentManufacturing : Ind IndustryAttribute ; -fun CommunalLandOwnershipEconomy : Ind EconomicSystemAttribute ; + fun CommunalLandOwnershipEconomy : Ind EconomicSystemAttribute ; --- Concrete is a class of CompoundSubstances --- used as building materials. Concrete is made up of Mineral pieces --- (sand or gravel) and a Cement material used to bind them together. -fun Concrete : Class ; -fun Concrete_Class : SubClass Concrete (both ManufacturedProduct Mixture) ; + -- Concrete is a class of CompoundSubstances + -- used as building materials. Concrete is made up of Mineral pieces + -- (sand or gravel) and a Cement material used to bind them together. + fun Concrete : Class ; + fun Concrete_Class : SubClass Concrete (both ManufacturedProduct Mixture) ; + fun CongoFranc : Ind UnitOfCurrency ; -fun CongoFranc : Ind UnitOfCurrency ; + fun ConsumerGood : Class ; + fun ConsumerGood_Class : SubClass ConsumerGood ManufacturedProduct ; -fun ConsumerGood : Class ; -fun ConsumerGood_Class : SubClass ConsumerGood ManufacturedProduct ; -fun ConsumerGoodsIndustry : Ind IndustryAttribute ; + fun ConsumerGoodsIndustry : Ind IndustryAttribute ; -fun ControlledLaborMarketEconomy : Ind FinancialSectorAttribute ; + fun ControlledLaborMarketEconomy : Ind FinancialSectorAttribute ; --- ControlledSubstance is --- the subclass of BiologicallyActiveSubstances whose distribution --- and use is controlled by government regulation. -fun ControlledSubstance : Class ; -fun ControlledSubstance_Class : SubClass ControlledSubstance BiologicallyActiveSubstance ; + -- ControlledSubstance is + -- the subclass of BiologicallyActiveSubstances whose distribution + -- and use is controlled by government regulation. + fun ControlledSubstance : Class ; + fun ControlledSubstance_Class : SubClass ControlledSubstance BiologicallyActiveSubstance ; -fun CookingOven : Class ; -fun CookingOven_Class : SubClass CookingOven MajorAppliance ; -fun CookingRange : Class ; -fun CookingRange_Class : SubClass CookingRange MajorAppliance ; -fun CopperFoundriesExceptDieCasting : Ind IndustryAttribute ; + fun CookingOven : Class ; + fun CookingOven_Class : SubClass CookingOven MajorAppliance ; -fun CopperIndustry : Ind IndustryAttribute ; + fun CookingRange : Class ; + fun CookingRange_Class : SubClass CookingRange MajorAppliance ; -fun CopperOre : Class ; -fun CopperOre_Class : SubClass CopperOre (both Mineral MiningProduct) ; + fun CopperFoundriesExceptDieCasting : Ind IndustryAttribute ; -fun CopperOreMining : Ind IndustryAttribute ; + fun CopperIndustry : Ind IndustryAttribute ; -fun CopperRollingDrawingExtrudingAndAlloying : Ind IndustryAttribute ; + fun CopperOre : Class ; + fun CopperOre_Class : SubClass CopperOre (both Mineral MiningProduct) ; --- Copra is the class of dried coconut --- meat valued for the extracted coconut oil. -fun Copra : Class ; -fun Copra_Class : SubClass Copra PlantAgriculturalProduct ; + fun CopperOreMining : Ind IndustryAttribute ; -fun CornFarming : Ind IndustryAttribute ; + fun CopperRollingDrawingExtrudingAndAlloying : Ind IndustryAttribute ; -fun CostaRicanColon : Ind UnitOfCurrency ; + -- Copra is the class of dried coconut + -- meat valued for the extracted coconut oil. + fun Copra : Class ; + fun Copra_Class : SubClass Copra PlantAgriculturalProduct ; -fun CottonFiber : Class ; -fun CottonFiber_Class : SubClass CottonFiber PlantAgriculturalProduct ; --- CountryInTransition is a term --- used by the InternationalMonetaryFund (IMF) to describe the middle --- group in its hierarchy of advanced countries, countries in transition, --- and developing countries. Most of the countries with this attribute --- are former USSR or Eastern European countries. Generally corresponds --- with FormerSovietOrEasternEuropeanCountry classification used by --- UnitedNations agencies. -fun CountryInTransition : Ind IMFDevelopmentLevel ; + fun CornFarming : Ind IndustryAttribute ; + fun CostaRicanColon : Ind UnitOfCurrency ; -fun CowPea : Class ; -fun CowPea_Class : SubClass CowPea Legume ; -fun Crayfish : Class ; -fun Crayfish_Class : SubClass Crayfish Shellfish ; -fun CrudePetroleumExtraction : Ind IndustryAttribute ; + fun CottonFiber : Class ; + fun CottonFiber_Class : SubClass CottonFiber PlantAgriculturalProduct ; -fun CubanPeso : Ind UnitOfCurrency ; + -- CountryInTransition is a term + -- used by the InternationalMonetaryFund (IMF) to describe the middle + -- group in its hierarchy of advanced countries, countries in transition, + -- and developing countries. Most of the countries with this attribute + -- are former USSR or Eastern European countries. Generally corresponds + -- with FormerSovietOrEasternEuropeanCountry classification used by + -- UnitedNations agencies. + fun CountryInTransition : Ind IMFDevelopmentLevel ; -fun Cucumber : Class ; -fun Cucumber_Class : SubClass Cucumber (both GroceryProduce Vegetable) ; + fun CowPea : Class ; + fun CowPea_Class : SubClass CowPea Legume ; -fun CutFlower : Class ; -fun CutFlower_Class : SubClass CutFlower PlantAgriculturalProduct ; -fun CypriotPound : Ind UnitOfCurrency ; + fun Crayfish : Class ; + fun Crayfish_Class : SubClass Crayfish Shellfish ; -fun CzechKoruna : Ind UnitOfCurrency ; + fun CrudePetroleumExtraction : Ind IndustryAttribute ; -fun DanishKrone : Ind UnitOfCurrency ; + fun CubanPeso : Ind UnitOfCurrency ; -fun DateFruit_GroceryProduce : SubClass DateFruit GroceryProduce ; + fun Cucumber : Class ; + fun Cucumber_Class : SubClass Cucumber (both GroceryProduce Vegetable) ; -fun DateFruit_TropicalFruit : SubClass DateFruit TropicalFruit ; + fun CutFlower : Class ; + fun CutFlower_Class : SubClass CutFlower PlantAgriculturalProduct ; -fun Deer : Class ; -fun Deer_Class : SubClass Deer (both HoofedMammal Livestock) ; + fun CypriotPound : Ind UnitOfCurrency ; --- DemocraticSocialism is an --- Attribute that describes a country in which socialism is promoted --- by a political party or parties within a democratic government. --- Under DemocraticSocialism, the government participates in central --- planning of the economy and may also manage nationalized industries. -fun DemocraticSocialism : Ind EconomicSystemAttribute ; + fun CzechKoruna : Ind UnitOfCurrency ; + fun DanishKrone : Ind UnitOfCurrency ; --- DevelopedCountry (DC) is a term used to describe members of the top --- group in the UNEconomicDevelopmentLevels. DevelopedCountry includes --- market_oriented economies of mainly democratic nations, including members --- of the OrganizationForEconomicCooperationAndDevelopment (OECD). DCs --- are also known as First World countries, 'the North', and industrial --- countries. Developed countries generally have high incomes (high per --- capita GDP or GNI), but there are exceptions to DC membership both above --- and below that standard. There is significant overlap, but not perfect --- congruence, between the UN category DevelopedCountry and the IMF --- category AdvancedEconomy. -fun DevelopedCountry : Ind UNEconomicDevelopmentLevel ; + -- A FruitOrVegetable that is produced by the date palm. + fun DateFruit : Class ; + fun DateFruit_Class : SubClass DateFruit (both Food TropicalFruit) ; + fun Deer : Class ; + fun Deer_Class : SubClass Deer (both HoofedMammal Livestock) ; --- DevelopingCountry is a term --- used by the InternationalMonetaryFund (IMF) for the bottom group --- in its hierarchy of advanced countries, countries in transition, --- and developing countries. Generally corresponds to the attribute --- LessDevelopedCountry used by UnitedNations agencies. Not to --- be confused with DevelopedCountry. -fun DevelopingCountry : Ind IMFDevelopmentLevel ; + -- DemocraticSocialism is an + -- Attribute that describes a country in which socialism is promoted + -- by a political party or parties within a democratic government. + -- Under DemocraticSocialism, the government participates in central + -- planning of the economy and may also manage nationalized industries. + fun DemocraticSocialism : Ind EconomicSystemAttribute ; + -- DevelopedCountry (DC) is a term used to describe members of the top + -- group in the UNEconomicDevelopmentLevels. DevelopedCountry includes + -- market_oriented economies of mainly democratic nations, including members + -- of the OrganizationForEconomicCooperationAndDevelopment (OECD). DCs + -- are also known as First World countries, 'the North', and industrial + -- countries. Developed countries generally have high incomes (high per + -- capita GDP or GNI), but there are exceptions to DC membership both above + -- and below that standard. There is significant overlap, but not perfect + -- congruence, between the UN category DevelopedCountry and the IMF + -- category AdvancedEconomy. + fun DevelopedCountry : Ind UNEconomicDevelopmentLevel ; --- DieselFuel is the subclass of --- RefinedPetroleumProducts that are fuels for diesel engines. -fun DieselFuel : Class ; -fun DieselFuel_Class : SubClass DieselFuel FossilFuel ; - -fun Dishwasher : Class ; -fun Dishwasher_Class : SubClass Dishwasher MajorAppliance ; --- Distillation is a means of separating Liquids --- through differences in their boilingPoints. The device used in --- distillation is referred to as a still and consists at a minimum of a pot --- in which the source material is heated, a condenser in which the heated --- Gas is cooled back to the liquid state, and a receiver in which the --- concentrated or purified liquid is collected. The equipment may effect --- separation by one of two main methods. Firstly the vapours given off by --- the heated mixture may consist of two liquids with significantly different --- boiling points. Thus, the vapour that is given off is in the vast --- majority of one or the other liquid, which after condensation and --- collection effects the separation. The second method (fractional --- distillation) relies upon a gradient of temperatures existing in the --- condenser stage of the equipment. Often in this technique, a vertical --- condenser, or column, is used. By extracting products that are liquid at --- different heights up the column, it is possible to extract liquids that --- have different boiling points. (from Wikipedia) -fun Distilling : Class ; -fun Distilling_Class : SubClass Distilling Separating ; - -fun DiversifiedEconomy : Ind FinancialSectorAttribute ; + -- DevelopingCountry is a term + -- used by the InternationalMonetaryFund (IMF) for the bottom group + -- in its hierarchy of advanced countries, countries in transition, + -- and developing countries. Generally corresponds to the attribute + -- LessDevelopedCountry used by UnitedNations agencies. Not to + -- be confused with DevelopedCountry. + fun DevelopingCountry : Ind IMFDevelopmentLevel ; -fun DjiboutiFranc : Ind UnitOfCurrency ; - -fun DominicanDollar : Ind UnitOfCurrency ; - -fun DominicanPeso : Ind UnitOfCurrency ; - -fun DrillingOilAndGasWells : Ind IndustryAttribute ; - --- DurableGood is the subclass of --- ManufacturedProducts which are designed to last for three years --- or more. -fun DurableGood : Class ; -fun DurableGood_Class : SubClass DurableGood ManufacturedProduct ; + -- DieselFuel is the subclass of + -- RefinedPetroleumProducts that are fuels for diesel engines. + fun DieselFuel : Class ; + fun DieselFuel_Class : SubClass DieselFuel FossilFuel ; -fun DutchGuilder : Ind UnitOfCurrency ; + fun Dishwasher : Class ; + fun Dishwasher_Class : SubClass Dishwasher MajorAppliance ; --- EconomicAttribute is the class --- of terms including all Attributes used to characterize the --- economic systems or development levels of Nations or dependent --- GeopoliticalAreas. -fun EconomicAttribute : Class ; -fun EconomicAttribute_Class : SubClass EconomicAttribute (both PoliticoEconomicAttribute RelationalAttribute) ; + -- Distillation is a means of separating Liquids + -- through differences in their boilingPoints. The device used in + -- distillation is referred to as a still and consists at a minimum of a pot + -- in which the source material is heated, a condenser in which the heated + -- Gas is cooled back to the liquid state, and a receiver in which the + -- concentrated or purified liquid is collected. The equipment may effect + -- separation by one of two main methods. Firstly the vapours given off by + -- the heated mixture may consist of two liquids with significantly different + -- boiling points. Thus, the vapour that is given off is in the vast + -- majority of one or the other liquid, which after condensation and + -- collection effects the separation. The second method (fractional + -- distillation) relies upon a gradient of temperatures existing in the + -- condenser stage of the equipment. Often in this technique, a vertical + -- condenser, or column, is used. By extracting products that are liquid at + -- different heights up the column, it is possible to extract liquids that + -- have different boiling points. (from Wikipedia) + fun Distilling : Class ; + fun Distilling_Class : SubClass Distilling Separating ; + + fun DiversifiedEconomy : Ind FinancialSectorAttribute ; + + fun DjiboutiFranc : Ind UnitOfCurrency ; + + fun DominicanDollar : Ind UnitOfCurrency ; + + fun DominicanPeso : Ind UnitOfCurrency ; + + fun DrillingOilAndGasWells : Ind IndustryAttribute ; + + -- DurableGood is the subclass of + -- ManufacturedProducts which are designed to last for three years + -- or more. + fun DurableGood : Class ; + fun DurableGood_Class : SubClass DurableGood ManufacturedProduct ; + + fun DutchGuilder : Ind UnitOfCurrency ; + + -- EconomicAttribute is the class + -- of terms including all Attributes used to characterize the + -- economic systems or development levels of Nations or dependent + -- GeopoliticalAreas. + fun EconomicAttribute : Class ; + fun EconomicAttribute_Class : SubClass EconomicAttribute (both PoliticoEconomicAttribute RelationalAttribute) ; + + -- EconomicDevelopmentLevel is a subclass of EconomicAttribute + -- containing terms used to describe the economic development level of a + -- Nation or GeopoliticalArea. This class is further subdivided into + -- different scales devised or used by different agencies. + fun EconomicDevelopmentLevel : Class ; + fun EconomicDevelopmentLevel_Class : SubClass EconomicDevelopmentLevel EconomicAttribute ; + + -- EconomicSystemAttribute + -- is the class of Attributes that describe the type of economic + -- system that a country or area has. For example, CapitalistEconomy + -- or SocialistEconomy. + fun EconomicSystemAttribute : Class ; + fun EconomicSystemAttribute_Class : SubClass EconomicSystemAttribute EconomicAttribute ; + + fun EcuadoranSucre : Ind UnitOfCurrency ; + + fun EdibleNut : Class ; + fun EdibleNut_Class : SubClass EdibleNut (both FruitOrVegetable GroceryProduce) ; + + fun EdibleTuber : Class ; + fun EdibleTuber_Class : SubClass EdibleTuber (both PlantAgriculturalProduct RootVegetable) ; + + fun Eggplant : Class ; + fun Eggplant_Class : SubClass Eggplant (both GroceryProduce Vegetable) ; + + fun EgyptianPound : Ind UnitOfCurrency ; + + fun ElSalvadoranColon : Ind UnitOfCurrency ; + + -- ElectricalPowerGeneration is + -- the subclass of PowerGeneration processes in which electricity is + -- generated. + fun ElectricalPowerGeneration : Class ; + fun ElectricalPowerGeneration_Class : SubClass ElectricalPowerGeneration PowerGeneration ; + + -- While electricity is typically thought of as just a difference + -- in electrical potential, one way of modeling electricity is as a substance + -- that can be moved from one point to another or consumed. One could make the claim + -- that subatomic physics also supports the classification as a substance since electrons + -- are objects. + fun Electricity : Class ; + fun Electricity_Class : SubClass Electricity Substance ; + + fun EstonianKroon : Ind UnitOfCurrency ; + + fun EthiopianBirr : Ind UnitOfCurrency ; + + fun EuroCentCoin : Class ; + fun EuroCentCoin_Class : SubClass EuroCentCoin CurrencyCoin ; + + fun EuroDollarCoin : Class ; + fun EuroDollarCoin_Class : SubClass EuroDollarCoin CurrencyCoin ; + + -- Exporting is the class of actions in + -- which there is a ChangeOfPossession of goods shipped from a + -- provider in one Nation to a destination in another Nation. + -- Typically, there are Selling and Buying events associated + -- with an Exporting. Either the seller or the exporting country + -- may be considered the origin of Exporting. + fun Exporting : Class ; + fun Exporting_Class : SubClass Exporting (both ChangeOfPossession FinancialTransaction) ; + + -- Any Mixture which is used to provide nutrients to + -- living Plants. Fertilizers can be made up of plant or animal material, e.g. + -- compost, or they can be entirely synthetic, e.g. ammonium nitrate. + fun Fertilizer : Class ; + fun Fertilizer_Class : SubClass Fertilizer Mixture ; + fun FertilizerIndustry : Ind IndustryAttribute ; --- EconomicDevelopmentLevel is a subclass of EconomicAttribute --- containing terms used to describe the economic development level of a --- Nation or GeopoliticalArea. This class is further subdivided into --- different scales devised or used by different agencies. -fun EconomicDevelopmentLevel : Class ; -fun EconomicDevelopmentLevel_Class : SubClass EconomicDevelopmentLevel EconomicAttribute ; + fun FertilizerManufacturing : Ind IndustryAttribute ; --- EconomicSystemAttribute --- is the class of Attributes that describe the type of economic --- system that a country or area has. For example, CapitalistEconomy --- or SocialistEconomy. -fun EconomicSystemAttribute : Class ; -fun EconomicSystemAttribute_Class : SubClass EconomicSystemAttribute EconomicAttribute ; - -fun EcuadoranSucre : Ind UnitOfCurrency ; - -fun EdibleNut : Class ; -fun EdibleNut_Class : SubClass EdibleNut (both FruitOrVegetable GroceryProduce) ; - -fun EdibleTuber : Class ; -fun EdibleTuber_Class : SubClass EdibleTuber (both PlantAgriculturalProduct RootVegetable) ; - -fun Eggplant : Class ; -fun Eggplant_Class : SubClass Eggplant (both GroceryProduce Vegetable) ; - -fun EgyptianPound : Ind UnitOfCurrency ; - -fun ElSalvadoranColon : Ind UnitOfCurrency ; - --- ElectricalPowerGeneration is --- the subclass of PowerGeneration processes in which electricity is --- generated. -fun ElectricalPowerGeneration : Class ; -fun ElectricalPowerGeneration_Class : SubClass ElectricalPowerGeneration PowerGeneration ; - --- While electricity is typically thought of as just a difference --- in electrical potential, one way of modeling electricity is as a substance --- that can be moved from one point to another or consumed. One could make the claim --- that subatomic physics also supports the classification as a substance since electrons --- are objects. -fun Electricity : Class ; -fun Electricity_Class : SubClass Electricity Substance ; - -fun EstonianKroon : Ind UnitOfCurrency ; - -fun EthiopianBirr : Ind UnitOfCurrency ; - -fun EuroCentCoin : Class ; -fun EuroCentCoin_Class : SubClass EuroCentCoin CurrencyCoin ; -fun EuroDollarCoin : Class ; -fun EuroDollarCoin_Class : SubClass EuroDollarCoin CurrencyCoin ; --- Exporting is the class of actions in --- which there is a ChangeOfPossession of goods shipped from a --- provider in one Nation to a destination in another Nation. --- Typically, there are Selling and Buying events associated --- with an Exporting. Either the seller or the exporting country --- may be considered the origin of Exporting. -fun Exporting : Class ; -fun Exporting_Class : SubClass Exporting (both ChangeOfPossession FinancialTransaction) ; - - --- Any Mixture which is used to provide nutrients to --- living Plants. Fertilizers can be made up of plant or animal material, e.g. --- compost, or they can be entirely synthetic, e.g. ammonium nitrate. -fun Fertilizer : Class ; -fun Fertilizer_Class : SubClass Fertilizer Mixture ; + fun FertilizerMineralMining : Ind IndustryAttribute ; -fun FertilizerIndustry : Ind IndustryAttribute ; + fun FijiDollar : Ind UnitOfCurrency ; -fun FertilizerManufacturing : Ind IndustryAttribute ; + -- FinancialSectorAttribute is + -- a class of Attributes that are used to indicate which financial sectors + -- are most important in the economy of a Nation or GeopoliticalArea. + fun FinancialSectorAttribute : Class ; + fun FinancialSectorAttribute_Class : SubClass FinancialSectorAttribute EconomicAttribute ; -fun FertilizerMineralMining : Ind IndustryAttribute ; + fun FinnishMarkka : Ind UnitOfCurrency ; -fun FijiDollar : Ind UnitOfCurrency ; + -- (FiscalYearFn ?PLACE) denotes the subclass + -- of TimeIntervals that are fiscalYearPeriods of the Organization or + -- GeopoliticalArea ?PLACE. + fun FiscalYearFn: El Agent -> Desc TimeInterval ; --- FinancialSectorAttribute is --- a class of Attributes that are used to indicate which financial sectors --- are most important in the economy of a Nation or GeopoliticalArea. -fun FinancialSectorAttribute : Class ; -fun FinancialSectorAttribute_Class : SubClass FinancialSectorAttribute EconomicAttribute ; + -- (FiscalYearStartingFn ?PLACE ?YEAR) + -- denotes the particular fiscal year that is observed in ?PLACE and begins + -- during the calendar Year indicated by ?YEAR. + fun FiscalYearStartingFn: El Agent -> Desc Year -> Ind TimeInterval ; -fun FinnishMarkka : Ind UnitOfCurrency ; + -- FishProduct is the subclass of + -- AnimalAgriculturalProduct that comprises products derived + -- from fish. + fun FishProduct : Class ; + fun FishProduct_Class : SubClass FishProduct AnimalAgriculturalProduct ; --- (FiscalYearFn ?PLACE) denotes the subclass --- of TimeIntervals that are fiscalYearPeriods of the Organization or --- GeopoliticalArea ?PLACE. -fun FiscalYearFn: El Agent -> Desc TimeInterval ; + fun FishRoe : Class ; + fun FishRoe_Class : SubClass FishRoe FishProduct ; + fun FlaxFiber : Class ; + fun FlaxFiber_Class : SubClass FlaxFiber PlantAgriculturalProduct ; --- (FiscalYearStartingFn ?PLACE ?YEAR) --- denotes the particular fiscal year that is observed in ?PLACE and begins --- during the calendar Year indicated by ?YEAR. -fun FiscalYearStartingFn: El Agent -> Desc Year -> Ind TimeInterval ; + -- Fodder is the class of OrganicObjects that are used as food for + -- domesticated animals. Fodder Fodder is the subclass of Food that is + -- intended for instances of DomesticAnimal. + fun Fodder : Class ; + fun Fodder_Class : SubClass Fodder (both Food OrganicObject) ; + fun FoodEgg : Class ; + fun FoodEgg_Class : SubClass FoodEgg AnimalAgriculturalProduct ; --- FishProduct is the subclass of --- AnimalAgriculturalProduct that comprises products derived --- from fish. -fun FishProduct : Class ; -fun FishProduct_Class : SubClass FishProduct AnimalAgriculturalProduct ; + fun FoodFish : Class ; + fun FoodFish_Class : SubClass FoodFish Seafood ; -fun FishRoe : Class ; -fun FishRoe_Class : SubClass FishRoe FishProduct ; -fun FlaxFiber : Class ; -fun FlaxFiber_Class : SubClass FlaxFiber PlantAgriculturalProduct ; -fun Fodder_OrganicObject : SubClass Fodder OrganicObject ; + -- FoodProduct is the class of food + -- products, packaged or unpackaged. + fun FoodProduct : Class ; + fun FoodProduct_Class : SubClass FoodProduct Product ; -fun FoodEgg : Class ; -fun FoodEgg_Class : SubClass FoodEgg AnimalAgriculturalProduct ; -fun FoodFish : Class ; -fun FoodFish_Class : SubClass FoodFish Seafood ; --- FoodProduct is the class of food --- products, packaged or unpackaged. -fun FoodProduct : Class ; -fun FoodProduct_Class : SubClass FoodProduct Product ; + fun Footwear : Class ; + fun Footwear_Class : SubClass Footwear Clothing ; -fun Footwear : Class ; -fun Footwear_Class : SubClass Footwear Clothing ; -fun ForageCrop : Class ; -fun ForageCrop_Class : SubClass ForageCrop (both Fodder (both Plant PlantAgriculturalProduct)) ; + fun ForageCrop : Class ; + fun ForageCrop_Class : SubClass ForageCrop (both Fodder (both Plant PlantAgriculturalProduct)) ; -fun ForestProduct : Class ; -fun ForestProduct_Class : SubClass ForestProduct Product ; -fun ForestryAndLogging : Ind IndustryAttribute ; + fun ForestProduct : Class ; + fun ForestProduct_Class : SubClass ForestProduct Product ; --- FormerSovietOrEasternEuropeanCountry (former USSR_EE) is an --- Attribute that characterizes countries that were part of the former --- Soviet Union or its sphere of influence in Eastern Europe. This level --- occupies a middle position between DevelopedCountry (DC) and --- LessDevelopedCountry (LDC) in UNEconomicDevelopmentLevels. --- Previously, former USSR_EE countries had a CentrallyPlannedEconomy and --- were Marxist_Leninist states. Many are now evolving away from command --- economies to market economic systems. During the 1980's, the group --- included Albania, Bulgaria, Cambodia, China, Cuba, Czechoslovakia, the --- German Democratic Republic (East Germany), Hungary, North Korea, Laos, --- Mongolia, Poland, Romania, the USSR, Vietnam and Yugoslavia. -fun FormerSovietOrEasternEuropeanCountry : Ind UNEconomicDevelopmentLevel ; + fun ForestryAndLogging : Ind IndustryAttribute ; + -- FormerSovietOrEasternEuropeanCountry (former USSR_EE) is an + -- Attribute that characterizes countries that were part of the former + -- Soviet Union or its sphere of influence in Eastern Europe. This level + -- occupies a middle position between DevelopedCountry (DC) and + -- LessDevelopedCountry (LDC) in UNEconomicDevelopmentLevels. + -- Previously, former USSR_EE countries had a CentrallyPlannedEconomy and + -- were Marxist_Leninist states. Many are now evolving away from command + -- economies to market economic systems. During the 1980's, the group + -- included Albania, Bulgaria, Cambodia, China, Cuba, Czechoslovakia, the + -- German Democratic Republic (East Germany), Hungary, North Korea, Laos, + -- Mongolia, Poland, Romania, the USSR, Vietnam and Yugoslavia. + fun FormerSovietOrEasternEuropeanCountry : Ind UNEconomicDevelopmentLevel ; -fun FossilFuelPowerGeneration : Ind PowerGeneration ; + fun FossilFuelPowerGeneration : Ind PowerGeneration ; --- FourDragonsEconomy describes four --- small Asian countries that achieved rapid economic growth in the 1990s. --- Some systems of EconomicDevelopmentLevel place them as a --- LessDevelopedCountry, but the IMF includes them in AdvancedEconomy. -fun FourDragonsEconomy : Ind EconomicDevelopmentLevel ; + -- FourDragonsEconomy describes four + -- small Asian countries that achieved rapid economic growth in the 1990s. + -- Some systems of EconomicDevelopmentLevel place them as a + -- LessDevelopedCountry, but the IMF includes them in AdvancedEconomy. + fun FourDragonsEconomy : Ind EconomicDevelopmentLevel ; + fun Freezer : Class ; + fun Freezer_Class : SubClass Freezer MajorAppliance ; -fun Freezer : Class ; -fun Freezer_Class : SubClass Freezer MajorAppliance ; -fun FrenchFranc : Ind UnitOfCurrency ; + fun FrenchFranc : Ind UnitOfCurrency ; -fun FrenchFrancCoin : Class ; -fun FrenchFrancCoin_Class : SubClass FrenchFrancCoin CurrencyCoin ; -fun Fruit : Class ; -fun Fruit_Class : SubClass Fruit FruitOrVegetable ; -fun FruitFarming : Ind IndustryAttribute ; + fun FrenchFrancCoin : Class ; + fun FrenchFrancCoin_Class : SubClass FrenchFrancCoin CurrencyCoin ; -fun FurnitureAndHomeFurnishingWholesalers : Ind IndustryAttribute ; + fun Fruit : Class ; + fun Fruit_Class : SubClass Fruit FruitOrVegetable ; -fun FurnitureAndHomeFurnishingsStores : Ind IndustryAttribute ; + fun FruitFarming : Ind IndustryAttribute ; -fun FurnitureAndRelatedProductManufacturing : Ind IndustryAttribute ; + fun FurnitureAndHomeFurnishingWholesalers : Ind IndustryAttribute ; -fun FurnitureIndustry : Ind IndustryAttribute ; + fun FurnitureAndHomeFurnishingsStores : Ind IndustryAttribute ; -fun FurnitureManufacturing : Ind IndustryAttribute ; + fun FurnitureAndRelatedProductManufacturing : Ind IndustryAttribute ; -fun Furniture_DurableGood : SubClass Furniture DurableGood ; + fun FurnitureIndustry : Ind IndustryAttribute ; -fun GabonFranc : Ind UnitOfCurrency ; + fun FurnitureManufacturing : Ind IndustryAttribute ; -fun GambianDalasi : Ind UnitOfCurrency ; + fun Furniture_DurableGood : SubClass Furniture DurableGood ; --- Gasoline is the subclass of --- RefinedPetroleumProducts that are fuels for internal combustion engines. -fun Gasoline : Class ; -fun Gasoline_Class : SubClass Gasoline FossilFuel ; + fun GabonFranc : Ind UnitOfCurrency ; --- Gemstone is the subclass of Mineral items --- that are especially valued for use in jewelry and other decorative items, and also in some mechanical and industrial applications. -fun Gemstone : Class ; -fun Gemstone_Class : SubClass Gemstone Mixture ; + fun GambianDalasi : Ind UnitOfCurrency ; -fun GeorgianLari : Ind UnitOfCurrency ; + -- Gasoline is the subclass of + -- RefinedPetroleumProducts that are fuels for internal combustion engines. + fun Gasoline : Class ; + fun Gasoline_Class : SubClass Gasoline FossilFuel ; -fun GermanMark : Ind UnitOfCurrency ; + -- Gemstone is the subclass of Mineral items + -- that are especially valued for use in jewelry and other decorative items, and also in some mechanical and industrial applications. + fun Gemstone : Class ; + fun Gemstone_Class : SubClass Gemstone Mixture ; -fun GermanMarkCoin : Class ; -fun GermanMarkCoin_Class : SubClass GermanMarkCoin CurrencyCoin ; -fun GhanianCedi : Ind UnitOfCurrency ; + fun GeorgianLari : Ind UnitOfCurrency ; -fun Ginger : Class ; -fun Ginger_Class : SubClass Ginger (both Spice Vegetable) ; + fun GermanMark : Ind UnitOfCurrency ; --- A domesticated HoofedMammal that is raised primarily --- for Milk. -fun Goat : Class ; -fun Goat_Class : SubClass Goat (both HoofedMammal Livestock) ; + fun GermanMarkCoin : Class ; + fun GermanMarkCoin_Class : SubClass GermanMarkCoin CurrencyCoin ; + fun GhanianCedi : Ind UnitOfCurrency ; --- GovernmentRegulatedEconomy --- is an Attribute that describes the economy of a country in which the --- government determines prices, production, wages, allocation of resources, --- or other economic factors. An economy that is wholly government planned --- is a CentrallyPlannedEconomy. -fun GovernmentRegulatedEconomy : Ind EconomicSystemAttribute ; + fun Ginger : Class ; + fun Ginger_Class : SubClass Ginger (both Spice Vegetable) ; + -- A domesticated HoofedMammal that is raised primarily for Milk. + fun Goat : Class ; + fun Goat_Class : SubClass Goat (both HoofedMammal Livestock) ; --- GovernmentSubsidizedEconomy --- is an Attribute describing an economy in which the government provides --- subsidies to various industries, workers, or other groups as part of its --- economic policy. -fun GovernmentSubsidizedEconomy : Ind EconomicSystemAttribute ; + -- GovernmentRegulatedEconomy + -- is an Attribute that describes the economy of a country in which the + -- government determines prices, production, wages, allocation of resources, + -- or other economic factors. An economy that is wholly government planned + -- is a CentrallyPlannedEconomy. + fun GovernmentRegulatedEconomy : Ind EconomicSystemAttribute ; + -- GovernmentSubsidizedEconomy + -- is an Attribute describing an economy in which the government provides + -- subsidies to various industries, workers, or other groups as part of its + -- economic policy. + fun GovernmentSubsidizedEconomy : Ind EconomicSystemAttribute ; -fun GrainAndOilseedMilling : Ind IndustryAttribute ; + fun GrainAndOilseedMilling : Ind IndustryAttribute ; -fun Grape : Class ; -fun Grape_Class : SubClass Grape (both Fruit GroceryProduce) ; + fun Grape : Class ; + fun Grape_Class : SubClass Grape (both Fruit GroceryProduce) ; -fun GreekDrachma : Ind UnitOfCurrency ; + fun GreekDrachma : Ind UnitOfCurrency ; -fun GreenPepper : Class ; -fun GreenPepper_Class : SubClass GreenPepper (both GroceryProduce Vegetable) ; + fun GreenPepper : Class ; + fun GreenPepper_Class : SubClass GreenPepper (both GroceryProduce Vegetable) ; -fun GrenadaDollar : Ind UnitOfCurrency ; + fun GrenadaDollar : Ind UnitOfCurrency ; -fun Groundnut : Class ; -fun Groundnut_Class : SubClass Groundnut (both EdibleTuber (both FruitOrVegetable GroceryProduce)) ; + fun Groundnut : Class ; + fun Groundnut_Class : SubClass Groundnut (both EdibleTuber (both FruitOrVegetable GroceryProduce)) ; -fun GuatemalanQuetzal : Ind UnitOfCurrency ; + fun GuatemalanQuetzal : Ind UnitOfCurrency ; -fun GuernseyCattle : Class ; -fun GuernseyCattle_Class : SubClass GuernseyCattle Cattle ; -fun GuineaBissauPeso : Ind UnitOfCurrency ; + fun GuernseyCattle : Class ; + fun GuernseyCattle_Class : SubClass GuernseyCattle Cattle ; -fun GuineanFranc : Ind UnitOfCurrency ; + fun GuineaBissauPeso : Ind UnitOfCurrency ; -fun GumArabic : Class ; -fun GumArabic_Class : SubClass GumArabic (both PlantAgriculturalProduct Substance) ; + fun GuineanFranc : Ind UnitOfCurrency ; -fun GuyanaDollar : Ind UnitOfCurrency ; + fun GumArabic : Class ; + fun GumArabic_Class : SubClass GumArabic (both PlantAgriculturalProduct Substance) ; -fun HaitianGourde : Ind UnitOfCurrency ; + fun GuyanaDollar : Ind UnitOfCurrency ; -fun HandicraftIndustry : Ind IndustryAttribute ; + fun HaitianGourde : Ind UnitOfCurrency ; --- HandicraftProduct is the class of --- Products that are manufactured by hand with a special skill. -fun HandicraftProduct : Class ; -fun HandicraftProduct_Class : SubClass HandicraftProduct Product ; + fun HandicraftIndustry : Ind IndustryAttribute ; -fun HandwovenCarpet : Class ; -fun HandwovenCarpet_Class : SubClass HandwovenCarpet (both HandicraftProduct TextileProduct) ; + -- HandicraftProduct is the class of + -- Products that are manufactured by hand with a special skill. + fun HandicraftProduct : Class ; + fun HandicraftProduct_Class : SubClass HandicraftProduct Product ; -fun HandwovenCarpetManufacturing : Ind IndustryAttribute ; + fun HandwovenCarpet : Class ; + fun HandwovenCarpet_Class : SubClass HandwovenCarpet (both HandicraftProduct TextileProduct) ; -fun Hardwood : Class ; -fun Hardwood_Class : SubClass Hardwood WoodProduct ; -fun HempFiber : Class ; -fun HempFiber_Class : SubClass HempFiber PlantAgriculturalProduct ; --- HighIncomeCountry is an Attribute representing the World Bank --- classification for any country where the per capita GNI is --- equal to or greater than &9,266 in UnitedStatesDollars. -fun HighIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; + fun HandwovenCarpetManufacturing : Ind IndustryAttribute ; + fun Hardwood : Class ; + fun Hardwood_Class : SubClass Hardwood WoodProduct ; --- HighTechIndustrialEconomy --- is an Attribute used to describe industrialized countries whose --- infrastructure uses the most advanced kinds of technology. -fun HighTechIndustrialEconomy : Ind EconomicDevelopmentLevel ; + -- Grass that has been cut and cured for use as Fodder. + fun Hay : Class ; + fun Hay_Class : SubClass Hay Fodder ; + fun HempFiber : Class ; + fun HempFiber_Class : SubClass HempFiber PlantAgriculturalProduct ; -fun HonduranLempira : Ind UnitOfCurrency ; + -- HighIncomeCountry is an Attribute representing the World Bank + -- classification for any country where the per capita GNI is + -- equal to or greater than &9,266 in UnitedStatesDollars. + fun HighIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; -fun Honey_AnimalAgriculturalProduct : SubClass Honey AnimalAgriculturalProduct ; + -- HighTechIndustrialEconomy + -- is an Attribute used to describe industrialized countries whose + -- infrastructure uses the most advanced kinds of technology. + fun HighTechIndustrialEconomy : Ind EconomicDevelopmentLevel ; -fun HongKongDollar : Ind UnitOfCurrency ; + fun HonduranLempira : Ind UnitOfCurrency ; -fun HotWaterHeater : Class ; -fun HotWaterHeater_Class : SubClass HotWaterHeater MajorAppliance ; -fun HouseholdRefrigeratorAndHomeFreezerManufacturing : Ind IndustryAttribute ; + fun Honey_AnimalAgriculturalProduct : SubClass Honey AnimalAgriculturalProduct ; -fun HungarianForint : Ind UnitOfCurrency ; + fun HongKongDollar : Ind UnitOfCurrency ; -fun HydroElectricPowerGeneration : Ind ElectricalPowerGeneration ; + fun HotWaterHeater : Class ; + fun HotWaterHeater_Class : SubClass HotWaterHeater MajorAppliance ; --- IMFDevelopmentLevel is a --- collection of Attributes representing economic development levels --- used by the InternationalMonetaryFund (IMF) to characterize national --- economies. The hierarchy of IMF levels includes: AdvancedEconomy, --- CountryInTransition, and DevelopingCountry. There is some, but not --- complete, overlap with concepts used by UnitedNations agencies. --- See -fun IMFDevelopmentLevel : Class ; -fun IMFDevelopmentLevel_Class : SubClass IMFDevelopmentLevel EconomicDevelopmentLevel ; + fun HouseholdRefrigeratorAndHomeFreezerManufacturing : Ind IndustryAttribute ; -fun IcelandicKrona : Ind UnitOfCurrency ; + fun HungarianForint : Ind UnitOfCurrency ; -fun IndianRupee : Ind UnitOfCurrency ; + fun HydroElectricPowerGeneration : Ind ElectricalPowerGeneration ; -fun IndonesianRupiah : Ind UnitOfCurrency ; + -- IMFDevelopmentLevel is a + -- collection of Attributes representing economic development levels + -- used by the InternationalMonetaryFund (IMF) to characterize national + -- economies. The hierarchy of IMF levels includes: AdvancedEconomy, + -- CountryInTransition, and DevelopingCountry. There is some, but not + -- complete, overlap with concepts used by UnitedNations agencies. + -- See + fun IMFDevelopmentLevel : Class ; + fun IMFDevelopmentLevel_Class : SubClass IMFDevelopmentLevel EconomicDevelopmentLevel ; -fun IndustrialRawMaterial : Class ; -fun IndustrialRawMaterial_Class : SubClass IndustrialRawMaterial CapitalGood ; -fun IndustrialSector : Ind IndustryAttribute ; + fun IcelandicKrona : Ind UnitOfCurrency ; --- IndustrialSupply is the class of --- products that are used in industry but which are not raw materials --- for products being manufactured. IndustrialSupply includes maintenance, --- repair, and operation (MRO) supplies, including janitorial, electrical, --- bearings, tools, machinery, accessories, fire and safety equipment, and --- other industrial items. -fun IndustrialSupply : Class ; -fun IndustrialSupply_Class : SubClass IndustrialSupply (both CapitalGood ManufacturedProduct) ; + fun IndianRupee : Ind UnitOfCurrency ; + fun IndonesianRupiah : Ind UnitOfCurrency ; -fun IndustryAttribute : Class ; + fun IndustrialRawMaterial : Class ; + fun IndustrialRawMaterial_Class : SubClass IndustrialRawMaterial CapitalGood ; -fun IranianRial : Ind UnitOfCurrency ; + fun IndustrialSector : Ind IndustryAttribute ; -fun IraqiDinar : Ind UnitOfCurrency ; + -- IndustrialSupply is the class of + -- products that are used in industry but which are not raw materials + -- for products being manufactured. IndustrialSupply includes maintenance, + -- repair, and operation (MRO) supplies, including janitorial, electrical, + -- bearings, tools, machinery, accessories, fire and safety equipment, and + -- other industrial items. + fun IndustrialSupply : Class ; + fun IndustrialSupply_Class : SubClass IndustrialSupply (both CapitalGood ManufacturedProduct) ; -fun IrishPound : Ind UnitOfCurrency ; + fun IndustryAttribute : Class ; -fun IronMetal : Class ; -fun IronMetal_Class : SubClass IronMetal MetalProduct ; --- IronOre is a subclass of CompoundSubstance --- that contains compounds of iron, of which the most common are --- hematite and limonite. Iron is obtained from smelting iron ores. -fun IronOre : Class ; -fun IronOre_Class : SubClass IronOre (both CompoundSubstance (both Mineral MiningProduct)) ; + fun IranianRial : Ind UnitOfCurrency ; + fun IraqiDinar : Ind UnitOfCurrency ; -fun IsraeliShekel : Ind UnitOfCurrency ; + fun IrishPound : Ind UnitOfCurrency ; -fun ItalianLire : Ind UnitOfCurrency ; + fun IronMetal : Class ; + fun IronMetal_Class : SubClass IronMetal MetalProduct ; -fun ItalianLireCoin : Class ; -fun ItalianLireCoin_Class : SubClass ItalianLireCoin CurrencyCoin ; -fun IvoryCoastFranc : Ind UnitOfCurrency ; + -- IronOre is a subclass of CompoundSubstance + -- that contains compounds of iron, of which the most common are + -- hematite and limonite. Iron is obtained from smelting iron ores. + fun IronOre : Class ; + fun IronOre_Class : SubClass IronOre (both CompoundSubstance (both Mineral MiningProduct)) ; -fun JamaicanDollar : Ind UnitOfCurrency ; + fun IsraeliShekel : Ind UnitOfCurrency ; -fun JapaneseYen : Ind UnitOfCurrency ; + fun ItalianLire : Ind UnitOfCurrency ; -fun JapaneseYenCoin : Class ; -fun JapaneseYenCoin_Class : SubClass JapaneseYenCoin CurrencyCoin ; --- Jewelry is the subclass of PersonalAdornment --- items that are typically made of metals (especially precious metals), --- gems, and other non_cloth materials. -fun Jewelry : Class ; -fun Jewelry_Class : SubClass Jewelry (both PersonalAdornment WearableItem) ; + fun ItalianLireCoin : Class ; + fun ItalianLireCoin_Class : SubClass ItalianLireCoin CurrencyCoin ; + fun IvoryCoastFranc : Ind UnitOfCurrency ; -fun JordanianDinar : Ind UnitOfCurrency ; + fun JamaicanDollar : Ind UnitOfCurrency ; -fun JuteFiber : Class ; -fun JuteFiber_Class : SubClass JuteFiber PlantAgriculturalProduct ; -fun KazakhstaniTenge : Ind UnitOfCurrency ; + fun JapaneseYen : Ind UnitOfCurrency ; -fun KentiaPalmSeed : Class ; -fun KentiaPalmSeed_Class : SubClass KentiaPalmSeed (both PlantAgriculturalProduct Seed) ; + fun JapaneseYenCoin : Class ; + fun JapaneseYenCoin_Class : SubClass JapaneseYenCoin CurrencyCoin ; -fun KenyanShilling : Ind UnitOfCurrency ; + -- Jewelry is the subclass of PersonalAdornment + -- items that are typically made of metals (especially precious metals), + -- gems, and other non_cloth materials. + fun Jewelry : Class ; + fun Jewelry_Class : SubClass Jewelry (both PersonalAdornment WearableItem) ; --- Khat is the class of PlantAgriculturalProducts --- made from the leaves and buds of the staff tree, which --- are chewed or brewed as a stimulating tea. -fun Khat : Class ; -fun Khat_Class : SubClass Khat PlantAgriculturalProduct ; + fun JordanianDinar : Ind UnitOfCurrency ; --- KilowattHour is a UnitOfMeasure for --- energy that represents 1000 Watts (1 kW) of power expended over one --- hour (1 h) of time. This is the unit commonly used in commercial --- power contexts. It is equivalent to 3,600,000 Joules. -fun KilowattHour : Ind CompositeUnitOfMeasure ; + fun JuteFiber : Class ; + fun JuteFiber_Class : SubClass JuteFiber PlantAgriculturalProduct ; + fun KazakhstaniTenge : Ind UnitOfCurrency ; -fun KiribatiDollar : Ind UnitOfCurrency ; + fun KentiaPalmSeed : Class ; + fun KentiaPalmSeed_Class : SubClass KentiaPalmSeed (both PlantAgriculturalProduct Seed) ; -fun KuwaitiDinar : Ind UnitOfCurrency ; + fun KenyanShilling : Ind UnitOfCurrency ; -fun KyrgyzstaniSom : Ind UnitOfCurrency ; + -- Khat is the class of PlantAgriculturalProducts + -- made from the leaves and buds of the staff tree, which + -- are chewed or brewed as a stimulating tea. + fun Khat : Class ; + fun Khat_Class : SubClass Khat PlantAgriculturalProduct ; -fun LambMeat : Class ; -fun LambMeat_Class : SubClass LambMeat Meat ; -fun Lambskin : Class ; -fun Lambskin_Class : SubClass Lambskin Pelt ; -fun LaotianKip : Ind UnitOfCurrency ; + -- KilowattHour is a UnitOfMeasure for + -- energy that represents 1000 Watts (1 kW) of power expended over one + -- hour (1 h) of time. This is the unit commonly used in commercial + -- power contexts. It is equivalent to 3,600,000 Joules. + fun KilowattHour : Ind CompositeUnitOfMeasure ; -fun LatvianLats : Ind UnitOfCurrency ; + fun KiribatiDollar : Ind UnitOfCurrency ; -fun LeadIndustry : Ind IndustryAttribute ; + fun KuwaitiDinar : Ind UnitOfCurrency ; -fun LeadManufacturing : Ind IndustryAttribute ; + fun KyrgyzstaniSom : Ind UnitOfCurrency ; -fun LeadMetal : Class ; -fun LeadMetal_Class : SubClass LeadMetal MetalProduct ; -fun LeadOre : Class ; -fun LeadOre_Class : SubClass LeadOre (both Mineral MiningProduct) ; + fun LambMeat : Class ; + fun LambMeat_Class : SubClass LambMeat Meat ; -fun LeadOreMining : Ind IndustryAttribute ; + fun Lambskin : Class ; + fun Lambskin_Class : SubClass Lambskin Pelt ; -fun LeadProduct : Class ; -fun LeadProduct_Class : SubClass LeadProduct (both LeadMetal ManufacturedProduct) ; + fun LaotianKip : Ind UnitOfCurrency ; -fun Leaf : Class ; -fun Leaf_Class : SubClass Leaf AnatomicalStructure ; -fun LeafyGreenVegetable : Class ; -fun LeafyGreenVegetable_Class : SubClass LeafyGreenVegetable (both GroceryProduce Vegetable) ; + fun LatvianLats : Ind UnitOfCurrency ; --- LeastDevelopedCountry --- is a sub_classification of LessDevelopedCountry characterizing --- those countries that have no significant economic growth, a per --- capita GDP of less than 1,000 UnitedStatesDollars, and low --- literacy. Also known as 'undeveloped countries'. -fun LeastDevelopedCountry : Ind EconomicDevelopmentLevel ; + fun LeadIndustry : Ind IndustryAttribute ; + fun LeadManufacturing : Ind IndustryAttribute ; -fun LebanesePound : Ind UnitOfCurrency ; + fun LeadMetal : Class ; + fun LeadMetal_Class : SubClass LeadMetal MetalProduct ; -fun Legume : Class ; -fun Legume_Class : SubClass Legume (both PlantAgriculturalProduct Vegetable) ; + fun LeadOre : Class ; + fun LeadOre_Class : SubClass LeadOre (both Mineral MiningProduct) ; -fun Lemon : Class ; -fun Lemon_Class : SubClass Lemon CitrusFruit ; -fun Lentil : Class ; -fun Lentil_Class : SubClass Lentil Pulse ; -fun LesothoLoti : Ind UnitOfCurrency ; + fun LeadOreMining : Ind IndustryAttribute ; --- LessDevelopedCountry (LDC) is --- the Attribute used to describe the bottom group in the hierarchy --- of UNEconomicDevelopmentLevels. Less developed countries are countries --- or dependent areas with low levels of production, living standards, --- and technology. Per capita GDP (perCapitaGDPInPeriod), or GDI --- (Gross Domestic Income), is generally less than 5,000 and often --- below 1,500. Subgroups of LDC, however, include countries that have --- higher per capita incomes, as well as advanced technology, and rapid rates --- of growth. Subgroups of LDC include: advanced developing countries, --- the Four Dragons (also known as Four Tigers), LeastDevelopedCountry --- (LLDCs), low_income countries, middle_income countries, newly --- industrializing economies (NIEs), the South (from the location of --- most LDC countries, relative to Northern developed countries), Third --- World (obsolete), UnderdevelopedCountry, UndevelopedCountry. -fun LessDevelopedCountry : Ind UNEconomicDevelopmentLevel ; + fun LeadProduct : Class ; + fun LeadProduct_Class : SubClass LeadProduct (both LeadMetal ManufacturedProduct) ; + fun Leaf : Class ; + fun Leaf_Class : SubClass Leaf AnatomicalStructure ; -fun LiberianDollar : Ind UnitOfCurrency ; + fun LeafyGreenVegetable : Class ; + fun LeafyGreenVegetable_Class : SubClass LeafyGreenVegetable (both GroceryProduce Vegetable) ; -fun LibyanDinar : Ind UnitOfCurrency ; + -- LeastDevelopedCountry + -- is a sub_classification of LessDevelopedCountry characterizing + -- those countries that have no significant economic growth, a per + -- capita GDP of less than 1,000 UnitedStatesDollars, and low + -- literacy. Also known as 'undeveloped countries'. + fun LeastDevelopedCountry : Ind EconomicDevelopmentLevel ; -fun Lime : Class ; -fun Lime_Class : SubClass Lime CitrusFruit ; -fun LithuanianLitas : Ind UnitOfCurrency ; + fun LebanesePound : Ind UnitOfCurrency ; --- LowIncomeCountry is an --- Attribute representing the World Bank classification for any country --- where the per capita GNI is 755 or below in UnitedStatesDollars. -fun LowIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; + fun Legume : Class ; + fun Legume_Class : SubClass Legume (both PlantAgriculturalProduct Vegetable) ; + fun Lemon : Class ; + fun Lemon_Class : SubClass Lemon CitrusFruit ; --- LowerMiddleIncomeCountry is an Attribute representing the World --- Bank classification for any country where the per capita GNI is --- between 756 and 2,995 (inclusive) in UnitedStatesDollars. -fun LowerMiddleIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; + fun Lentil : Class ; + fun Lentil_Class : SubClass Lentil Pulse ; + fun LesothoLoti : Ind UnitOfCurrency ; --- A ManufacturedProduct derived from Timber. -fun Lumber : Class ; -fun Lumber_Class : SubClass Lumber (both DurableGood ForestProduct) ; + -- LessDevelopedCountry (LDC) is + -- the Attribute used to describe the bottom group in the hierarchy + -- of UNEconomicDevelopmentLevels. Less developed countries are countries + -- or dependent areas with low levels of production, living standards, + -- and technology. Per capita GDP (perCapitaGDPInPeriod), or GDI + -- (Gross Domestic Income), is generally less than 5,000 and often + -- below 1,500. Subgroups of LDC, however, include countries that have + -- higher per capita incomes, as well as advanced technology, and rapid rates + -- of growth. Subgroups of LDC include: advanced developing countries, + -- the Four Dragons (also known as Four Tigers), LeastDevelopedCountry + -- (LLDCs), low_income countries, middle_income countries, newly + -- industrializing economies (NIEs), the South (from the location of + -- most LDC countries, relative to Northern developed countries), Third + -- World (obsolete), UnderdevelopedCountry, UndevelopedCountry. + fun LessDevelopedCountry : Ind UNEconomicDevelopmentLevel ; + fun LiberianDollar : Ind UnitOfCurrency ; -fun LumberIndustry : Ind IndustryAttribute ; + fun LibyanDinar : Ind UnitOfCurrency ; -fun LumberPlywoodMillworkAndWoodPanelWholesalers : Ind IndustryAttribute ; + fun Lime : Class ; + fun Lime_Class : SubClass Lime CitrusFruit ; -fun LuxembourgFranc : Ind UnitOfCurrency ; + fun LithuanianLitas : Ind UnitOfCurrency ; -fun MacademiaNut : Class ; -fun MacademiaNut_Class : SubClass MacademiaNut EdibleNut ; -fun MacaoPataca : Ind UnitOfCurrency ; + -- LowIncomeCountry is an + -- Attribute representing the World Bank classification for any country + -- where the per capita GNI is 755 or below in UnitedStatesDollars. + fun LowIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; -fun Mace : Class ; -fun Mace_Class : SubClass Mace Spice ; -fun MachineTool : Class ; -fun MachineTool_Class : SubClass MachineTool Machinery ; -fun Machine_Machinery : SubClass Machine Machinery ; + -- LowerMiddleIncomeCountry is an Attribute representing the World + -- Bank classification for any country where the per capita GNI is + -- between 756 and 2,995 (inclusive) in UnitedStatesDollars. + fun LowerMiddleIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; --- Machinery is the class of products --- that includes Machines, tools, and machine parts used in industrial --- or other commercial processes. -fun Machinery : Class ; -fun Machinery_Class : SubClass Machinery (both Device (both DurableGood IndustrialSupply)) ; + -- A ManufacturedProduct derived from Timber. + fun Lumber : Class ; + fun Lumber_Class : SubClass Lumber (both DurableGood ForestProduct) ; + fun LumberIndustry : Ind IndustryAttribute ; -fun MadagascarFranc : Ind UnitOfCurrency ; + fun LumberPlywoodMillworkAndWoodPanelWholesalers : Ind IndustryAttribute ; -fun MajorAppliance : Class ; -fun MajorAppliance_Class : SubClass MajorAppliance (both Device DurableGood) ; + fun LuxembourgFranc : Ind UnitOfCurrency ; --- MajorIndustrialEconomy is an --- Attribute used to describe countries with the largest, industrialized, --- non_communist economies in the world. -fun MajorIndustrialEconomy : Ind EconomicDevelopmentLevel ; + fun MacademiaNut : Class ; + fun MacademiaNut_Class : SubClass MacademiaNut EdibleNut ; + fun MacaoPataca : Ind UnitOfCurrency ; -fun MalawianKwacha : Ind UnitOfCurrency ; + fun Mace : Class ; + fun Mace_Class : SubClass Mace Spice ; -fun MalaysianRinggit : Ind UnitOfCurrency ; + fun MachineTool : Class ; + fun MachineTool_Class : SubClass MachineTool Machinery ; -fun MaliFranc : Ind UnitOfCurrency ; + fun Machine_Machinery : SubClass Machine Machinery ; -fun MalteseLira : Ind UnitOfCurrency ; + -- Machinery is the class of products + -- that includes Machines, tools, and machine parts used in industrial + -- or other commercial processes. + fun Machinery : Class ; + fun Machinery_Class : SubClass Machinery (both Device (both DurableGood IndustrialSupply)) ; -fun Mango : Class ; -fun Mango_Class : SubClass Mango (both GroceryProduce TropicalFruit) ; + fun MadagascarFranc : Ind UnitOfCurrency ; -fun ManufacturingBasedEconomy : Ind FinancialSectorAttribute ; + fun MajorAppliance : Class ; + fun MajorAppliance_Class : SubClass MajorAppliance (both Device DurableGood) ; --- MarketEconomy is an Attribute that --- describes an economy in which market forces, specifically supply and --- demand, provide input for privately managed decisions about pricing --- and production of goods. -fun MarketEconomy : Ind EconomicSystemAttribute ; + -- MajorIndustrialEconomy is an + -- Attribute used to describe countries with the largest, industrialized, + -- non_communist economies in the world. + fun MajorIndustrialEconomy : Ind EconomicDevelopmentLevel ; + fun MalawianKwacha : Ind UnitOfCurrency ; -fun MarketSocialism : Ind EconomicSystemAttribute ; + fun MalaysianRinggit : Ind UnitOfCurrency ; -fun MauritanianOuguiya : Ind UnitOfCurrency ; + fun MaliFranc : Ind UnitOfCurrency ; -fun MauritianRupee : Ind UnitOfCurrency ; + fun MalteseLira : Ind UnitOfCurrency ; -fun Meat_AnimalAgriculturalProduct : SubClass Meat AnimalAgriculturalProduct ; + fun Mango : Class ; + fun Mango_Class : SubClass Mango (both GroceryProduce TropicalFruit) ; -fun Melon : Class ; -fun Melon_Class : SubClass Melon (both Fruit GroceryProduce) ; + fun ManufacturingBasedEconomy : Ind FinancialSectorAttribute ; -fun MetalProduct : Class ; -fun MetalProduct_Class : SubClass MetalProduct DurableGood ; -fun MetallurgyIndustry : Ind IndustryAttribute ; + -- MarketEconomy is an Attribute that + -- describes an economy in which market forces, specifically supply and + -- demand, provide input for privately managed decisions about pricing + -- and production of goods. + fun MarketEconomy : Ind EconomicSystemAttribute ; -fun MexicanPeso : Ind UnitOfCurrency ; + fun MarketSocialism : Ind EconomicSystemAttribute ; -fun Milk_DairyProduct : SubClass Milk DairyProduct ; + fun MauritanianOuguiya : Ind UnitOfCurrency ; -fun MilletFarming : Ind IndustryAttribute ; + fun MauritianRupee : Ind UnitOfCurrency ; -fun MilletGrain : Class ; -fun MilletGrain_Class : SubClass MilletGrain CerealGrain ; -fun Millwork : Ind IndustryAttribute ; + fun Meat_AnimalAgriculturalProduct : SubClass Meat AnimalAgriculturalProduct ; -fun MiningExceptOilAndGas : Ind IndustryAttribute ; + fun Melon : Class ; + fun Melon_Class : SubClass Melon (both Fruit GroceryProduce) ; -fun MiningIndustry : Ind IndustryAttribute ; + fun MetalProduct : Class ; + fun MetalProduct_Class : SubClass MetalProduct DurableGood ; --- MixedEconomy is the Attribute --- of a country whose economy has elements of more than one pure --- economic system, e.g., a market economy with government welfare --- for unemployed workers. A mixed_economy country may be a --- CountryInTransition, as from a prior communist economy to --- capitalism, but a mixed economy may also be a stable combination --- of different economic approaches in different areas of a national --- economy, e.g., nationally managed health care and education systems --- in an otherwise private_enterprise economy. -fun MixedEconomy : Ind EconomicSystemAttribute ; + fun MetallurgyIndustry : Ind IndustryAttribute ; + fun MexicanPeso : Ind UnitOfCurrency ; -fun MoldovanLeu : Ind UnitOfCurrency ; + fun Milk_DairyProduct : SubClass Milk DairyProduct ; -fun MongolianTugrik : Ind UnitOfCurrency ; + fun MilletFarming : Ind IndustryAttribute ; -fun MoroccanDirham : Ind UnitOfCurrency ; + fun MilletGrain : Class ; + fun MilletGrain_Class : SubClass MilletGrain CerealGrain ; --- MotorOil is the subclass of PetroleumLubricants --- that are used to lubricate motors. -fun MotorOil : Class ; -fun MotorOil_Class : SubClass MotorOil PetroleumLubricant ; + fun Millwork : Ind IndustryAttribute ; -fun MotorVehicleAndMotorVehiclePartsAndSuppliesWholesalers : Ind IndustryAttribute ; + fun MiningExceptOilAndGas : Ind IndustryAttribute ; -fun MotorVehicleAndPartsDealers : Ind IndustryAttribute ; + fun MiningIndustry : Ind IndustryAttribute ; -fun MotorVehicleBodyAndTrailerManufacturing : Ind IndustryAttribute ; + -- MixedEconomy is the Attribute + -- of a country whose economy has elements of more than one pure + -- economic system, e.g., a market economy with government welfare + -- for unemployed workers. A mixed_economy country may be a + -- CountryInTransition, as from a prior communist economy to + -- capitalism, but a mixed economy may also be a stable combination + -- of different economic approaches in different areas of a national + -- economy, e.g., nationally managed health care and education systems + -- in an otherwise private_enterprise economy. + fun MixedEconomy : Ind EconomicSystemAttribute ; -fun MotorVehicleIndustry : Ind IndustryAttribute ; + fun MoldovanLeu : Ind UnitOfCurrency ; -fun MotorVehicleManufacturing : Ind IndustryAttribute ; + fun MongolianTugrik : Ind UnitOfCurrency ; -fun MotorVehiclePartsManufacturing : Ind IndustryAttribute ; + fun MoroccanDirham : Ind UnitOfCurrency ; -fun MozambiqueMetical : Ind UnitOfCurrency ; + -- MotorOil is the subclass of PetroleumLubricants + -- that are used to lubricate motors. + fun MotorOil : Class ; + fun MotorOil_Class : SubClass MotorOil PetroleumLubricant ; -fun MulberryLeaf : Class ; -fun MulberryLeaf_Class : SubClass MulberryLeaf (both Fodder (both Leaf PlantAgriculturalProduct)) ; + fun MotorVehicleAndMotorVehiclePartsAndSuppliesWholesalers : Ind IndustryAttribute ; -fun Mutton : Class ; -fun Mutton_Class : SubClass Mutton Meat ; -fun MyanmarKyat : Ind UnitOfCurrency ; + fun MotorVehicleAndPartsDealers : Ind IndustryAttribute ; --- Narcotic is a subclass of addictive --- BiologicallyActiveSubstances that have damping effects on the --- nervous system and may be fatal in large doses. -fun Narcotic : Class ; -fun Narcotic_Class : SubClass Narcotic ControlledSubstance ; + fun MotorVehicleBodyAndTrailerManufacturing : Ind IndustryAttribute ; --- NationalizedIndustryEconomy --- is an Attribute describing an economy in which the major industries, --- such as energy and transportation, are owned by the national government. -fun NationalizedIndustryEconomy : Ind EconomicSystemAttribute ; + fun MotorVehicleIndustry : Ind IndustryAttribute ; + fun MotorVehicleManufacturing : Ind IndustryAttribute ; -fun NaturalGasDistribution : Ind IndustryAttribute ; + fun MotorVehiclePartsManufacturing : Ind IndustryAttribute ; -fun NaturalGasIndustry : Ind IndustryAttribute ; + fun MozambiqueMetical : Ind UnitOfCurrency ; -fun NaturalGasLiquidExtraction : Ind IndustryAttribute ; + fun MulberryLeaf : Class ; + fun MulberryLeaf_Class : SubClass MulberryLeaf (both Fodder (both Leaf PlantAgriculturalProduct)) ; --- NaturalRubber is the subclass of --- PlantAgriculturalProducts made from the sap of plant species --- which produce natural polymers. -fun NaturalRubber : Class ; -fun NaturalRubber_Class : SubClass NaturalRubber PlantAgriculturalProduct ; + fun Mutton : Class ; + fun Mutton_Class : SubClass Mutton Meat ; -fun NepaleseRupee : Ind UnitOfCurrency ; + fun MyanmarKyat : Ind UnitOfCurrency ; -fun NewZealandDollar : Ind UnitOfCurrency ; + -- Narcotic is a subclass of addictive + -- BiologicallyActiveSubstances that have damping effects on the + -- nervous system and may be fatal in large doses. + fun Narcotic : Class ; + fun Narcotic_Class : SubClass Narcotic ControlledSubstance ; --- NewlyIndustrializingEconomy is an Attribute used to describe a --- LessDevelopedCountry (LDC) that is undergoing rapid industrial --- development. Also called 'newly industrializing economy' (or --- 'country'). -fun NewlyIndustrializingEconomy : Ind EconomicDevelopmentLevel ; + -- NationalizedIndustryEconomy + -- is an Attribute describing an economy in which the major industries, + -- such as energy and transportation, are owned by the national government. + fun NationalizedIndustryEconomy : Ind EconomicSystemAttribute ; + fun NaturalGasDistribution : Ind IndustryAttribute ; -fun NicaraguanCordoba : Ind UnitOfCurrency ; + fun NaturalGasIndustry : Ind IndustryAttribute ; -fun NickelOre : Class ; -fun NickelOre_Class : SubClass NickelOre (both Mineral MiningProduct) ; + fun NaturalGasLiquidExtraction : Ind IndustryAttribute ; -fun NigerFranc : Ind UnitOfCurrency ; + -- NaturalRubber is the subclass of + -- PlantAgriculturalProducts made from the sap of plant species + -- which produce natural polymers. + fun NaturalRubber : Class ; + fun NaturalRubber_Class : SubClass NaturalRubber PlantAgriculturalProduct ; -fun NigerianNaira : Ind UnitOfCurrency ; + fun NepaleseRupee : Ind UnitOfCurrency ; -fun NorfolkIslandPineSeed : Class ; -fun NorfolkIslandPineSeed_Class : SubClass NorfolkIslandPineSeed (both PlantAgriculturalProduct Seed) ; + fun NewZealandDollar : Ind UnitOfCurrency ; -fun NorthKoreanWon : Ind UnitOfCurrency ; + -- NewlyIndustrializingEconomy is an Attribute used to describe a + -- LessDevelopedCountry (LDC) that is undergoing rapid industrial + -- development. Also called 'newly industrializing economy' (or + -- 'country'). + fun NewlyIndustrializingEconomy : Ind EconomicDevelopmentLevel ; -fun NorwegianKrone : Ind UnitOfCurrency ; + fun NicaraguanCordoba : Ind UnitOfCurrency ; -fun NuclearPowerGeneration : Ind PowerGeneration ; + fun NickelOre : Class ; + fun NickelOre_Class : SubClass NickelOre (both Mineral MiningProduct) ; -fun Nut : Class ; -fun Nut_Class : SubClass Nut (both PlantAgriculturalProduct ReproductiveBody) ; + fun NigerFranc : Ind UnitOfCurrency ; -fun Nutmeg : Class ; -fun Nutmeg_Class : SubClass Nutmeg Spice ; -fun OatFarming : Ind IndustryAttribute ; + fun NigerianNaira : Ind UnitOfCurrency ; -fun OatGrain : Class ; -fun OatGrain_Class : SubClass OatGrain CerealGrain ; -fun OffshoreBankingSectorEconomy : Ind FinancialSectorAttribute ; + fun NorfolkIslandPineSeed : Class ; + fun NorfolkIslandPineSeed_Class : SubClass NorfolkIslandPineSeed (both PlantAgriculturalProduct Seed) ; -fun OffshoreFinancialSectorEconomy : Ind FinancialSectorAttribute ; + fun NorthKoreanWon : Ind UnitOfCurrency ; -fun Oilseed : Class ; -fun Oilseed_Class : SubClass Oilseed (both PlantAgriculturalProduct Seed) ; + fun NorwegianKrone : Ind UnitOfCurrency ; --- Okoume (Aucoumea klaineana), also called --- 'gaboon', is a wood of West African origin. -fun Okoume : Class ; -fun Okoume_Class : SubClass Okoume Hardwood ; + fun NuclearPowerGeneration : Ind PowerGeneration ; -fun Olive : Class ; -fun Olive_Class : SubClass Olive (both Fruit GroceryProduce) ; + fun Nut : Class ; + fun Nut_Class : SubClass Nut (both PlantAgriculturalProduct ReproductiveBody) ; -fun OliveOil : Class ; -fun OliveOil_Class : SubClass OliveOil VegetableOil ; -fun OmaniRiyal : Ind UnitOfCurrency ; + fun Nutmeg : Class ; + fun Nutmeg_Class : SubClass Nutmeg Spice ; -fun OpiumPoppy : Class ; -fun OpiumPoppy_Class : SubClass OpiumPoppy (both PlantAgriculturalProduct Poppy) ; + fun OatFarming : Ind IndustryAttribute ; -fun OpiumPoppyFarming : Class ; -fun OpiumPoppyFarming_Class : SubClass OpiumPoppyFarming Farming ; -fun Opium_Narcotic : SubClass Opium Narcotic ; + fun OatGrain : Class ; + fun OatGrain_Class : SubClass OatGrain CerealGrain ; -fun Opium_PlantAgriculturalProduct : SubClass Opium PlantAgriculturalProduct ; + fun OffshoreBankingSectorEconomy : Ind FinancialSectorAttribute ; -fun Orchid : Class ; -fun Orchid_Class : SubClass Orchid (both FloweringPlant PlantAgriculturalProduct) ; + fun OffshoreFinancialSectorEconomy : Ind FinancialSectorAttribute ; -fun OrnamentalFish : Class ; -fun OrnamentalFish_Class : SubClass OrnamentalFish (both AnimalAgriculturalProduct Fish) ; + fun Oilseed : Class ; + fun Oilseed_Class : SubClass Oilseed (both PlantAgriculturalProduct Seed) ; --- OtherSourcePowerGeneration --- represents all non_fossil fuel, non_hydroelectric, and non_nuclear power --- generation processes, e.g., wind power generation. -fun OtherSourcePowerGeneration : Ind PowerGeneration ; + -- Okoume (Aucoumea klaineana), also called + -- 'gaboon', is a wood of West African origin. + fun Okoume : Class ; + fun Okoume_Class : SubClass Okoume Hardwood ; + fun Olive : Class ; + fun Olive_Class : SubClass Olive (both Fruit GroceryProduce) ; --- PPPBasedEconomicValuation --- is a class of relations used to state international economic information --- in U.S. dollar amounts. The U.S. dollar amounts are derived from Purchasing --- Power Parity conversions of economic totals (e.g., GDP) given in local --- currency. This contrasts with a method of conversion based on currency --- exchange rates. The PPP method is used by the CIA World Fact Book for --- the purpose of presenting economic data for all countries covered. Their --- basis for PPP dollar price weights is the UN International Comparison Program --- (UNICP) and the work of Professors Robert Summers and Alan Heston of the --- University of Pennsylvania. -fun PPPBasedEconomicValuation : Class ; + fun OliveOil : Class ; + fun OliveOil_Class : SubClass OliveOil VegetableOil ; + fun OmaniRiyal : Ind UnitOfCurrency ; --- PackagedBeverageProduct is the --- class of Products that consist of a BeverageProduct in some kind of --- packaging, including cups and bottles. -fun PackagedBeverageProduct : Class ; -fun PackagedBeverageProduct_Class : SubClass PackagedBeverageProduct Product ; + fun OpiumPoppy : Class ; + fun OpiumPoppy_Class : SubClass OpiumPoppy (both PlantAgriculturalProduct Poppy) ; --- PackagedFoodProduct is the --- class of Products that consist of a FoodProduct in a package. -fun PackagedFoodProduct : Class ; -fun PackagedFoodProduct_Class : SubClass PackagedFoodProduct Product ; + fun OpiumPoppyFarming : Class ; + fun OpiumPoppyFarming_Class : SubClass OpiumPoppyFarming Farming ; -fun PaddyRice : Class ; -fun PaddyRice_Class : SubClass PaddyRice CerealGrass ; -fun PakistaniRupee : Ind UnitOfCurrency ; + -- A substance harvested from the seed capsules of the + -- opium poppy that contains various powerful alkaloids. + fun Opium : Class ; + fun Opium_Class : SubClass Opium (both (both Depressant Narcotic) (both PlantSubstance PlantAgriculturalProduct)) ; -fun PalmKernel : Class ; -fun PalmKernel_Class : SubClass PalmKernel PlantAgriculturalProduct ; -fun PalmOil : Class ; -fun PalmOil_Class : SubClass PalmOil VegetableOil ; -fun PalmOilNut : Class ; -fun PalmOilNut_Class : SubClass PalmOilNut (both Nut PlantAgriculturalProduct) ; + fun Orchid : Class ; + fun Orchid_Class : SubClass Orchid (both FloweringPlant PlantAgriculturalProduct) ; -fun PanamanianBalboa : Ind UnitOfCurrency ; + fun OrnamentalFish : Class ; + fun OrnamentalFish_Class : SubClass OrnamentalFish (both AnimalAgriculturalProduct Fish) ; -fun Papaw : Class ; -fun Papaw_Class : SubClass Papaw (both GroceryProduce TropicalFruit) ; + -- OtherSourcePowerGeneration + -- represents all non_fossil fuel, non_hydroelectric, and non_nuclear power + -- generation processes, e.g., wind power generation. + fun OtherSourcePowerGeneration : Ind PowerGeneration ; -fun Papaya : Class ; -fun Papaya_Class : SubClass Papaya (both GroceryProduce TropicalFruit) ; + -- PPPBasedEconomicValuation + -- is a class of relations used to state international economic information + -- in U.S. dollar amounts. The U.S. dollar amounts are derived from Purchasing + -- Power Parity conversions of economic totals (e.g., GDP) given in local + -- currency. This contrasts with a method of conversion based on currency + -- exchange rates. The PPP method is used by the CIA World Fact Book for + -- the purpose of presenting economic data for all countries covered. Their + -- basis for PPP dollar price weights is the UN International Comparison Program + -- (UNICP) and the work of Professors Robert Summers and Alan Heston of the + -- University of Pennsylvania. + fun PPPBasedEconomicValuation : Class ; -fun PapuanKina : Ind UnitOfCurrency ; + -- PackagedBeverageProduct is the + -- class of Products that consist of a BeverageProduct in some kind of + -- packaging, including cups and bottles. + fun PackagedBeverageProduct : Class ; + fun PackagedBeverageProduct_Class : SubClass PackagedBeverageProduct Product ; -fun ParaguayanGuarani : Ind UnitOfCurrency ; + -- PackagedFoodProduct is the + -- class of Products that consist of a FoodProduct in a package. + fun PackagedFoodProduct : Class ; + fun PackagedFoodProduct_Class : SubClass PackagedFoodProduct Product ; -fun PartialMarketEconomy : Ind EconomicSystemAttribute ; + fun PaddyRice : Class ; + fun PaddyRice_Class : SubClass PaddyRice CerealGrass ; -fun PassionFruit : Class ; -fun PassionFruit_Class : SubClass PassionFruit (both GroceryProduce TropicalFruit) ; + fun PakistaniRupee : Ind UnitOfCurrency ; -fun Pea_Legume : SubClass Pea Legume ; + fun PalmKernel : Class ; + fun PalmKernel_Class : SubClass PalmKernel PlantAgriculturalProduct ; -fun Peanut : Class ; -fun Peanut_Class : SubClass Peanut (both EdibleNut GroceryProduce) ; + fun PalmOil : Class ; + fun PalmOil_Class : SubClass PalmOil VegetableOil ; -fun Pearl : Class ; -fun Pearl_Class : SubClass Pearl Jewelry ; -fun PecanNut : Class ; -fun PecanNut_Class : SubClass PecanNut EdibleNut ; --- Pelt is the subclass of AnimalSkin --- that comprises the pelts or hides of animals that are used in --- the manufacture of wearable or household items. -fun Pelt : Class ; -fun Pelt_Class : SubClass Pelt (both AnimalAgriculturalProduct AnimalSkin) ; + fun PalmOilNut : Class ; + fun PalmOilNut_Class : SubClass PalmOilNut (both Nut PlantAgriculturalProduct) ; + fun PanamanianBalboa : Ind UnitOfCurrency ; -fun PerfumeEssence : Class ; -fun PerfumeEssence_Class : SubClass PerfumeEssence PlantAgriculturalProduct ; --- PersonalAdornment is the subclass --- of WearableItems that are worn primarily for decorative purposes. -fun PersonalAdornment : Class ; -fun PersonalAdornment_Class : SubClass PersonalAdornment WearableItem ; + fun Papaw : Class ; + fun Papaw_Class : SubClass Papaw (both GroceryProduce TropicalFruit) ; -fun PeruvianInti : Ind UnitOfCurrency ; + fun Papaya : Class ; + fun Papaya_Class : SubClass Papaya (both GroceryProduce TropicalFruit) ; --- Petroleum is commonly known as crude --- oil. It is a thick, dark brown or greenish flammable liquid, which exists --- in the upper strata of some areas of the Earth's crust. It consists of a --- complex mixture of various hydrocarbons, largely of the methane series, --- but may vary much in appearance, composition, and purity. (from Wikipedia) --- Crude oil has not be subject to the distillation that will yield a --- RefinedPetroleumProduct. -fun Petroleum : Class ; -fun Petroleum_Class : SubClass Petroleum PetroleumProduct ; + fun PapuanKina : Ind UnitOfCurrency ; -fun PetroleumBasedEconomy : Ind FinancialSectorAttribute ; + fun ParaguayanGuarani : Ind UnitOfCurrency ; -fun PetroleumIndustry : Ind IndustryAttribute ; + fun PartialMarketEconomy : Ind EconomicSystemAttribute ; --- PetroleumLubricant is the subclass of --- RefinedPetroleumProducts that are lubricants. -fun PetroleumLubricant : Class ; -fun PetroleumLubricant_Class : SubClass PetroleumLubricant RefinedPetroleumProduct ; + fun PassionFruit : Class ; + fun PassionFruit_Class : SubClass PassionFruit (both GroceryProduce TropicalFruit) ; -fun PetroleumProductsManufacturing : Ind IndustryAttribute ; + -- The edible Seed of a pea plant. + fun Pea : Class ; + fun Pea_Class : SubClass Pea (both (both Food Seed) Legume) ; -fun PetroleumRefineries : Ind IndustryAttribute ; + fun Peanut : Class ; + fun Peanut_Class : SubClass Peanut (both EdibleNut GroceryProduce) ; -fun PharmaceuticalProduct : Class ; -fun PharmaceuticalProduct_Class : SubClass PharmaceuticalProduct ManufacturedProduct ; -fun PhilippinePeso : Ind UnitOfCurrency ; + fun Pearl : Class ; + fun Pearl_Class : SubClass Pearl Jewelry ; -fun PhosphoricAcid : Class ; -fun PhosphoricAcid_Class : SubClass PhosphoricAcid CompoundSubstance ; -fun Pineapple : Class ; -fun Pineapple_Class : SubClass Pineapple (both GroceryProduce TropicalFruit) ; + fun PecanNut : Class ; + fun PecanNut_Class : SubClass PecanNut EdibleNut ; -fun PipelineTransportationOfNaturalGas : Ind IndustryAttribute ; + -- Pelt is the subclass of AnimalSkin + -- that comprises the pelts or hides of animals that are used in + -- the manufacture of wearable or household items. + fun Pelt : Class ; + fun Pelt_Class : SubClass Pelt (both AnimalAgriculturalProduct AnimalSkin) ; -fun Plantain : Class ; -fun Plantain_Class : SubClass Plantain (both GroceryProduce TropicalFruit) ; + fun PerfumeEssence : Class ; + fun PerfumeEssence_Class : SubClass PerfumeEssence PlantAgriculturalProduct ; -fun Plastic : Class ; -fun Plastic_Class : SubClass Plastic ManufacturedProduct ; -fun PolishZloty : Ind UnitOfCurrency ; + -- PersonalAdornment is the subclass + -- of WearableItems that are worn primarily for decorative purposes. + fun PersonalAdornment : Class ; + fun PersonalAdornment_Class : SubClass PersonalAdornment WearableItem ; -fun Poppy : Class ; -fun Poppy_Class : SubClass Poppy FloweringPlant ; -fun PortugueseEscudo : Ind UnitOfCurrency ; + fun PeruvianInti : Ind UnitOfCurrency ; -fun PotatoTuber : Class ; -fun PotatoTuber_Class : SubClass PotatoTuber (both EdibleTuber GroceryProduce) ; + -- Petroleum is commonly known as crude + -- oil. It is a thick, dark brown or greenish flammable liquid, which exists + -- in the upper strata of some areas of the Earth's crust. It consists of a + -- complex mixture of various hydrocarbons, largely of the methane series, + -- but may vary much in appearance, composition, and purity. (from Wikipedia) + -- Crude oil has not be subject to the distillation that will yield a + -- RefinedPetroleumProduct. + fun Petroleum : Class ; + fun Petroleum_Class : SubClass Petroleum PetroleumProduct ; --- PowerGeneration is the class of --- Processes in which some kind of power is generated either for immediate --- use in a Device or to be stored for future use. -fun PowerGeneration : Class ; -fun PowerGeneration_Class : SubClass PowerGeneration Process ; + fun PetroleumBasedEconomy : Ind FinancialSectorAttribute ; --- PreciousGemstone is the class of --- Minerals and fossilized substances that have great monetary value. -fun PreciousGemstone : Class ; -fun PreciousGemstone_Class : SubClass PreciousGemstone (both Gemstone MiningProduct) ; + fun PetroleumIndustry : Ind IndustryAttribute ; + -- PetroleumLubricant is the subclass of + -- RefinedPetroleumProducts that are lubricants. + fun PetroleumLubricant : Class ; + fun PetroleumLubricant_Class : SubClass PetroleumLubricant RefinedPetroleumProduct ; -fun PrimarySmeltingAndRefiningOfCopper : Ind IndustryAttribute ; + fun PetroleumProductsManufacturing : Ind IndustryAttribute ; --- PrivateEnterpriseEconomy is --- the Attribute used to characterize a country in which private --- enterprise is the main source of economic wealth. -fun PrivateEnterpriseEconomy : Ind EconomicSystemAttribute ; + fun PetroleumRefineries : Ind IndustryAttribute ; + fun PharmaceuticalProduct : Class ; + fun PharmaceuticalProduct_Class : SubClass PharmaceuticalProduct ManufacturedProduct ; --- PrivatizingEconomy is an --- Attribute that describes a country in which formerly government_ --- owned industries are being transferred into private holdings. -fun PrivatizingEconomy : Ind EconomicSystemAttribute ; + fun PhilippinePeso : Ind UnitOfCurrency ; + fun PhosphoricAcid : Class ; + fun PhosphoricAcid_Class : SubClass PhosphoricAcid CompoundSubstance ; --- ProductPackage is the class of objects --- designed to contain Products for shipping and sale. -fun ProductPackage : Class ; -fun ProductPackage_Class : SubClass ProductPackage Container ; + fun Pineapple : Class ; + fun Pineapple_Class : SubClass Pineapple (both GroceryProduce TropicalFruit) ; -fun Pulse : Class ; -fun Pulse_Class : SubClass Pulse Legume ; --- PureCapitalistEconomy is an --- Attribute representing a capitalist economy that has no admixture of --- socialism. -fun PureCapitalistEconomy : Ind EconomicSystemAttribute ; + fun PipelineTransportationOfNaturalGas : Ind IndustryAttribute ; + fun Plantain : Class ; + fun Plantain_Class : SubClass Plantain (both GroceryProduce TropicalFruit) ; --- PureSocialistEconomy is an --- Attribute representing a socialist economy that has no admixture of --- capitalism. -fun PureSocialistEconomy : Ind EconomicSystemAttribute ; + fun Plastic : Class ; + fun Plastic_Class : SubClass Plastic ManufacturedProduct ; + fun PolishZloty : Ind UnitOfCurrency ; --- Pyrethrum is the subclass of --- BiologicallyActiveSubstance consisting of insecticidal --- derivations from the flower heads of Chrysanthemums. -fun Pyrethrum : Class ; -fun Pyrethrum_Class : SubClass Pyrethrum (both BiologicallyActiveSubstance PlantAgriculturalProduct) ; + fun Poppy : Class ; + fun Poppy_Class : SubClass Poppy FloweringPlant ; + fun PortugueseEscudo : Ind UnitOfCurrency ; -fun QatariRiyal : Ind UnitOfCurrency ; + fun PotatoTuber : Class ; + fun PotatoTuber_Class : SubClass PotatoTuber (both EdibleTuber GroceryProduce) ; -fun Quinine : Class ; -fun Quinine_Class : SubClass Quinine PlantAgriculturalProduct ; -fun ReadyMixConcrete : Class ; -fun ReadyMixConcrete_Class : SubClass ReadyMixConcrete Concrete ; -fun RefrigeratedWarehousingAndStorage : Ind IndustryAttribute ; + -- PowerGeneration is the class of + -- Processes in which some kind of power is generated either for immediate + -- use in a Device or to be stored for future use. + fun PowerGeneration : Class ; + fun PowerGeneration_Class : SubClass PowerGeneration Process ; -fun RefrigerationEquipmentAndSuppliesWholesalers : Ind IndustryAttribute ; + -- PreciousGemstone is the class of + -- Minerals and fossilized substances that have great monetary value. + fun PreciousGemstone : Class ; + fun PreciousGemstone_Class : SubClass PreciousGemstone (both Gemstone MiningProduct) ; -fun RefrigerationEquipmentManufacturing : Ind IndustryAttribute ; + fun PrimarySmeltingAndRefiningOfCopper : Ind IndustryAttribute ; -fun RefrigeratorAndFreezerIndustry : Ind IndustryAttribute ; + -- PrivateEnterpriseEconomy is + -- the Attribute used to characterize a country in which private + -- enterprise is the main source of economic wealth. + fun PrivateEnterpriseEconomy : Ind EconomicSystemAttribute ; -fun Refrigerator_MajorAppliance : SubClass Refrigerator MajorAppliance ; + -- PrivatizingEconomy is an + -- Attribute that describes a country in which formerly government_ + -- owned industries are being transferred into private holdings. + fun PrivatizingEconomy : Ind EconomicSystemAttribute ; -fun Reindeer : Class ; -fun Reindeer_Class : SubClass Reindeer (both HoofedMammal Livestock) ; + -- ProductPackage is the class of objects + -- designed to contain Products for shipping and sale. + fun ProductPackage : Class ; + fun ProductPackage_Class : SubClass ProductPackage Container ; -fun RiceFarming : Ind IndustryAttribute ; + fun Pulse : Class ; + fun Pulse_Class : SubClass Pulse Legume ; -fun RomanianLeu : Ind UnitOfCurrency ; + -- PureCapitalistEconomy is an + -- Attribute representing a capitalist economy that has no admixture of + -- socialism. + fun PureCapitalistEconomy : Ind EconomicSystemAttribute ; -fun RootStarch : Class ; -fun RootStarch_Class : SubClass RootStarch (both FruitOrVegetable PlantAgriculturalProduct) ; + -- PureSocialistEconomy is an Attribute representing a + -- socialist economy that has no admixture of capitalism. + fun PureSocialistEconomy : Ind EconomicSystemAttribute ; -fun RootVegetable : Class ; -fun RootVegetable_Class : SubClass RootVegetable (both FruitOrVegetable PlantAgriculturalProduct) ; + -- Pyrethrum is the subclass of + -- BiologicallyActiveSubstance consisting of insecticidal + -- derivations from the flower heads of Chrysanthemums. + fun Pyrethrum : Class ; + fun Pyrethrum_Class : SubClass Pyrethrum (both BiologicallyActiveSubstance PlantAgriculturalProduct) ; -fun RussianRuble : Ind UnitOfCurrency ; + fun QatariRiyal : Ind UnitOfCurrency ; -fun RwandaFranc : Ind UnitOfCurrency ; + fun Quinine : Class ; + fun Quinine_Class : SubClass Quinine PlantAgriculturalProduct ; -fun RyeFarming : Ind IndustryAttribute ; + fun ReadyMixConcrete : Class ; + fun ReadyMixConcrete_Class : SubClass ReadyMixConcrete Concrete ; -fun RyeGrain : Class ; -fun RyeGrain_Class : SubClass RyeGrain CerealGrain ; -fun Salmon : Class ; -fun Salmon_Class : SubClass Salmon FoodFish ; -fun SaoThomeEPrincipeDobra : Ind UnitOfCurrency ; + fun RefrigeratedWarehousingAndStorage : Ind IndustryAttribute ; -fun SaudiArabianRiyal : Ind UnitOfCurrency ; + fun RefrigerationEquipmentAndSuppliesWholesalers : Ind IndustryAttribute ; -fun Seafood : Class ; -fun Seafood_Class : SubClass Seafood Meat ; -fun Seed_FruitOrVegetable : SubClass Seed FruitOrVegetable ; + fun RefrigerationEquipmentManufacturing : Ind IndustryAttribute ; --- SemipreciousGemstone is the --- class of Minerals and other substances that have significant --- monetary value, but less than those of the class PreciousGemstone. -fun SemipreciousGemstone : Class ; -fun SemipreciousGemstone_Class : SubClass SemipreciousGemstone (both Gemstone MiningProduct) ; + fun RefrigeratorAndFreezerIndustry : Ind IndustryAttribute ; + fun Refrigerator_MajorAppliance : SubClass Refrigerator MajorAppliance ; -fun SenegaleseFranc : Ind UnitOfCurrency ; + fun Reindeer : Class ; + fun Reindeer_Class : SubClass Reindeer (both HoofedMammal Livestock) ; -fun SenepolCattle : Class ; -fun SenepolCattle_Class : SubClass SenepolCattle Cattle ; -fun ServiceBasedEconomy : Ind FinancialSectorAttribute ; + fun RiceFarming : Ind IndustryAttribute ; -fun ServiceSector : Ind IndustryAttribute ; + fun RomanianLeu : Ind UnitOfCurrency ; -fun Sesame : Class ; -fun Sesame_Class : SubClass Sesame PlantAgriculturalProduct ; -fun SeychellesRupee : Ind UnitOfCurrency ; + fun RootStarch : Class ; + fun RootStarch_Class : SubClass RootStarch (both FruitOrVegetable PlantAgriculturalProduct) ; -fun SheaNut : Class ; -fun SheaNut_Class : SubClass SheaNut EdibleNut ; -fun Sheep_Livestock : SubClass Sheep Livestock ; + fun RootVegetable : Class ; + fun RootVegetable_Class : SubClass RootVegetable (both FruitOrVegetable PlantAgriculturalProduct) ; -fun Sheepskin : Class ; -fun Sheepskin_Class : SubClass Sheepskin Pelt ; -fun Shellfish : Class ; -fun Shellfish_Class : SubClass Shellfish Seafood ; -fun Shrimp : Class ; -fun Shrimp_Class : SubClass Shrimp Shellfish ; -fun SierraLeoneLeone : Ind UnitOfCurrency ; + fun RussianRuble : Ind UnitOfCurrency ; -fun SingaporeDollar : Ind UnitOfCurrency ; + fun RwandaFranc : Ind UnitOfCurrency ; -fun SisalFiber : Class ; -fun SisalFiber_Class : SubClass SisalFiber PlantAgriculturalProduct ; -fun SlovakianKoruna : Ind UnitOfCurrency ; + fun RyeFarming : Ind IndustryAttribute ; --- Soap is a Surfactant Cleaning mixture used for --- personal or minor cleaning. It usually comes in solid moulded form. In --- the developed world, synthetic detergents have superseded soap as a --- laundry aid. Many soaps are mixtures of sodium or potassium salts of --- fatty acids which can be derived from oils or fats by reacting them with --- an alkali (such as sodium or potassium hydroxide) at 80_100 degrees Celsius in a --- process known as saponification. (from Wikipedia) -fun Soap : Class ; -fun Soap_Class : SubClass Soap Surfactant ; + fun RyeGrain : Class ; + fun RyeGrain_Class : SubClass RyeGrain CerealGrain ; --- SocialistEconomy is the Attribute --- used to characterize a country in which there is government ownership --- or direction of the means of production and distribution. -fun SocialistEconomy : Ind EconomicSystemAttribute ; + fun Salmon : Class ; + fun Salmon_Class : SubClass Salmon FoodFish ; + fun SaoThomeEPrincipeDobra : Ind UnitOfCurrency ; -fun SomalianShilling : Ind UnitOfCurrency ; + fun SaudiArabianRiyal : Ind UnitOfCurrency ; -fun Sorghum : Class ; -fun Sorghum_Class : SubClass Sorghum CerealGrass ; -fun SorghumFarming : Ind IndustryAttribute ; + fun Seafood : Class ; + fun Seafood_Class : SubClass Seafood Meat ; -fun SorghumGrain : Class ; -fun SorghumGrain_Class : SubClass SorghumGrain CerealGrain ; -fun SouthAfricanRand : Ind UnitOfCurrency ; + fun Seed_FruitOrVegetable : SubClass Seed FruitOrVegetable ; -fun SouthKoreanWon : Ind UnitOfCurrency ; + -- SemipreciousGemstone is the class of Minerals and + -- other substances that have significant monetary value, + -- but less than those of the class PreciousGemstone. + fun SemipreciousGemstone : Class ; + fun SemipreciousGemstone_Class : SubClass SemipreciousGemstone (both Gemstone MiningProduct) ; -fun Soya : Class ; -fun Soya_Class : SubClass Soya PlantAgriculturalProduct ; -fun Soybean : Class ; -fun Soybean_Class : SubClass Soybean Bean ; -fun SpanishPeseta : Ind UnitOfCurrency ; + fun SenegaleseFranc : Ind UnitOfCurrency ; -fun Spice : Class ; -fun Spice_Class : SubClass Spice (both FruitOrVegetable PlantAgriculturalProduct) ; + fun SenepolCattle : Class ; + fun SenepolCattle_Class : SubClass SenepolCattle Cattle ; -fun SpicePepper : Class ; -fun SpicePepper_Class : SubClass SpicePepper Spice ; -fun Squash : Class ; -fun Squash_Class : SubClass Squash (both GroceryProduce Vegetable) ; + fun ServiceBasedEconomy : Ind FinancialSectorAttribute ; -fun SriLankanRupee : Ind UnitOfCurrency ; + fun ServiceSector : Ind IndustryAttribute ; -fun SteelForging : Ind IndustryAttribute ; + fun Sesame : Class ; + fun Sesame_Class : SubClass Sesame PlantAgriculturalProduct ; -fun SteelFoundriesExceptInvestment : Ind IndustryAttribute ; + fun SeychellesRupee : Ind UnitOfCurrency ; -fun SteelIndustry : Ind IndustryAttribute ; + fun SheaNut : Class ; + fun SheaNut_Class : SubClass SheaNut EdibleNut ; -fun SteelInvestmentFoundries : Ind IndustryAttribute ; + fun Sheep_Livestock : SubClass Sheep Livestock ; -fun SteelMills : Ind IndustryAttribute ; + fun Sheepskin : Class ; + fun Sheepskin_Class : SubClass Sheepskin Pelt ; -fun SteelProductManufacturingFromPurchasedSteel : Ind IndustryAttribute ; + fun Shellfish : Class ; + fun Shellfish_Class : SubClass Shellfish Seafood ; -fun Steel_MetalProduct : SubClass Steel MetalProduct ; + fun Shrimp : Class ; + fun Shrimp_Class : SubClass Shrimp Shellfish ; -fun SubsistenceAgricultureEconomy : Ind FinancialSectorAttribute ; + fun SierraLeoneLeone : Ind UnitOfCurrency ; -fun SudanesePound : Ind UnitOfCurrency ; + fun SingaporeDollar : Ind UnitOfCurrency ; -fun SugarBeet : Class ; -fun SugarBeet_Class : SubClass SugarBeet Vegetable ; -fun SugarCane : Class ; -fun SugarCane_Class : SubClass SugarCane (both GroceryProduce Vegetable) ; + fun SisalFiber : Class ; + fun SisalFiber_Class : SubClass SisalFiber PlantAgriculturalProduct ; -fun Sugar_PlantAgriculturalProduct : SubClass Sugar PlantAgriculturalProduct ; + fun SlovakianKoruna : Ind UnitOfCurrency ; -fun Sugar_Substance : SubClass Sugar Substance ; + -- Soap is a Surfactant Cleaning mixture used for + -- personal or minor cleaning. It usually comes in solid moulded form. In + -- the developed world, synthetic detergents have superseded soap as a + -- laundry aid. Many soaps are mixtures of sodium or potassium salts of + -- fatty acids which can be derived from oils or fats by reacting them with + -- an alkali (such as sodium or potassium hydroxide) at 80_100 degrees Celsius in a + -- process known as saponification. (from Wikipedia) + fun Soap : Class ; + fun Soap_Class : SubClass Soap Surfactant ; -fun Sunflower : Class ; -fun Sunflower_Class : SubClass Sunflower (both FloweringPlant PlantAgriculturalProduct) ; + -- SocialistEconomy is the Attribute + -- used to characterize a country in which there is government ownership + -- or direction of the means of production and distribution. + fun SocialistEconomy : Ind EconomicSystemAttribute ; -fun SunflowerSeed : Class ; -fun SunflowerSeed_Class : SubClass SunflowerSeed (both PlantAgriculturalProduct Seed) ; + fun SomalianShilling : Ind UnitOfCurrency ; -fun SupportActivitiesForMetalMining : Ind IndustryAttribute ; + fun Sorghum : Class ; + fun Sorghum_Class : SubClass Sorghum CerealGrass ; -fun SupportActivitiesForNonmetallicMineralsExceptFuels : Ind IndustryAttribute ; + fun SorghumFarming : Ind IndustryAttribute ; -fun SupportActivitiesForOilOperations : Ind IndustryAttribute ; + fun SorghumGrain : Class ; + fun SorghumGrain_Class : SubClass SorghumGrain CerealGrain ; -fun SurinameseGuilder : Ind UnitOfCurrency ; + fun SouthAfricanRand : Ind UnitOfCurrency ; -fun SwazilandLilangeni : Ind UnitOfCurrency ; + fun SouthKoreanWon : Ind UnitOfCurrency ; -fun SwedishKrona : Ind UnitOfCurrency ; + fun Soya : Class ; + fun Soya_Class : SubClass Soya PlantAgriculturalProduct ; -fun SweetPepper : Class ; -fun SweetPepper_Class : SubClass SweetPepper (both GroceryProduce Vegetable) ; + fun Soybean : Class ; + fun Soybean_Class : SubClass Soybean Bean ; -fun SweetPotatoTuber : Class ; -fun SweetPotatoTuber_Class : SubClass SweetPotatoTuber (both EdibleTuber GroceryProduce) ; + fun SpanishPeseta : Ind UnitOfCurrency ; -fun SwissFranc : Ind UnitOfCurrency ; + fun Spice : Class ; + fun Spice_Class : SubClass Spice (both FruitOrVegetable PlantAgriculturalProduct) ; -fun SyrianPound : Ind UnitOfCurrency ; + fun SpicePepper : Class ; + fun SpicePepper_Class : SubClass SpicePepper Spice ; -fun TaiwanDollar : Ind UnitOfCurrency ; + fun Squash : Class ; + fun Squash_Class : SubClass Squash (both GroceryProduce Vegetable) ; -fun TajikSomoni : Ind UnitOfCurrency ; + fun SriLankanRupee : Ind UnitOfCurrency ; -fun TajikSomoniCoin : Class ; -fun TajikSomoniCoin_Class : SubClass TajikSomoniCoin CurrencyCoin ; -fun TajikistaniRuble : Ind UnitOfCurrency ; + fun SteelForging : Ind IndustryAttribute ; -fun TanzanianShilling : Ind UnitOfCurrency ; + fun SteelFoundriesExceptInvestment : Ind IndustryAttribute ; -fun TaroTuber : Class ; -fun TaroTuber_Class : SubClass TaroTuber (both EdibleTuber GroceryProduce) ; + fun SteelIndustry : Ind IndustryAttribute ; -fun TaxHavenEconomy : Ind FinancialSectorAttribute ; + fun SteelInvestmentFoundries : Ind IndustryAttribute ; -fun TeaLeaf : Class ; -fun TeaLeaf_Class : SubClass TeaLeaf TeaPlantAerialPart ; --- TeaPlantAerialPart is the --- class of all parts of the tea plant from which tea may be made, --- including leaves, stems, and twigs. -fun TeaPlantAerialPart : Class ; -fun TeaPlantAerialPart_Class : SubClass TeaPlantAerialPart FruitOrVegetable ; + fun SteelMills : Ind IndustryAttribute ; -fun TextileIndustry : Ind IndustryAttribute ; + fun SteelProductManufacturingFromPurchasedSteel : Ind IndustryAttribute ; -fun TextileMills : Ind IndustryAttribute ; + fun Steel_MetalProduct : SubClass Steel MetalProduct ; -fun TextileProduct : Class ; -fun TextileProduct_Class : SubClass TextileProduct (both Artifact ManufacturedProduct) ; + fun SubsistenceAgricultureEconomy : Ind FinancialSectorAttribute ; -fun TextileProductMills : Ind IndustryAttribute ; + fun SudanesePound : Ind UnitOfCurrency ; -fun ThaiBaht : Ind UnitOfCurrency ; + fun SugarBeet : Class ; + fun SugarBeet_Class : SubClass SugarBeet Vegetable ; --- Timber is wood from trees that is --- suitable for use for building or other human purposes. -fun Timber : Class ; -fun Timber_Class : SubClass Timber (both CompoundSubstance ForestProduct) ; + fun SugarCane : Class ; + fun SugarCane_Class : SubClass SugarCane (both GroceryProduce Vegetable) ; + fun Sunflower : Class ; + fun Sunflower_Class : SubClass Sunflower (both FloweringPlant PlantAgriculturalProduct) ; -fun Tobacco_PlantAgriculturalProduct : SubClass Tobacco PlantAgriculturalProduct ; + fun SunflowerSeed : Class ; + fun SunflowerSeed_Class : SubClass SunflowerSeed (both PlantAgriculturalProduct Seed) ; -fun TogoFranc : Ind UnitOfCurrency ; + fun SupportActivitiesForMetalMining : Ind IndustryAttribute ; -fun Tomato : Class ; -fun Tomato_Class : SubClass Tomato (both Fruit GroceryProduce) ; + fun SupportActivitiesForNonmetallicMineralsExceptFuels : Ind IndustryAttribute ; -fun TonganPaanga : Ind UnitOfCurrency ; + fun SupportActivitiesForOilOperations : Ind IndustryAttribute ; -fun TourismBasedEconomy : Ind FinancialSectorAttribute ; + fun SurinameseGuilder : Ind UnitOfCurrency ; --- TourismIndustry is an Attribute that --- describes organizations that provide services or products for travellers --- who stay temporarily in a region to experience local attractions. There --- is an overlap between TourismIndustry and each of the following --- industries: TravelArrangementAndReservationServices, --- TravelerAccommodation, MuseumsHistoricalSitesAndSimilarInstitutions, --- AmusementGamblingAndRecreationIndustries, and --- ArtsEntertainmentAndRecreation. -fun TourismIndustry : Ind IndustryAttribute ; + fun SwazilandLilangeni : Ind UnitOfCurrency ; + fun SwedishKrona : Ind UnitOfCurrency ; -fun TradeBasedEconomy : Ind FinancialSectorAttribute ; + fun SweetPepper : Class ; + fun SweetPepper_Class : SubClass SweetPepper (both GroceryProduce Vegetable) ; -fun TrinidadAndTobagoDollar : Ind UnitOfCurrency ; + fun SweetPotatoTuber : Class ; + fun SweetPotatoTuber_Class : SubClass SweetPotatoTuber (both EdibleTuber GroceryProduce) ; -fun TropicalFruit : Class ; -fun TropicalFruit_Class : SubClass TropicalFruit (both Fruit GroceryProduce) ; + fun SwissFranc : Ind UnitOfCurrency ; -fun TunisianDinar : Ind UnitOfCurrency ; + fun SyrianPound : Ind UnitOfCurrency ; -fun TurkeyBird : Class ; -fun TurkeyBird_Class : SubClass TurkeyBird Poultry ; -fun TurkeyMeat : Class ; -fun TurkeyMeat_Class : SubClass TurkeyMeat Meat ; -fun TurkishLira : Ind UnitOfCurrency ; + fun TaiwanDollar : Ind UnitOfCurrency ; -fun TurkmenManat : Ind UnitOfCurrency ; + fun TajikSomoni : Ind UnitOfCurrency ; -fun Turnip : Class ; -fun Turnip_Class : SubClass Turnip (both GroceryProduce RootVegetable) ; + fun TajikSomoniCoin : Class ; + fun TajikSomoniCoin_Class : SubClass TajikSomoniCoin CurrencyCoin ; -fun Turtle : Class ; -fun Turtle_Class : SubClass Turtle (both Livestock Reptile) ; + fun TajikistaniRuble : Ind UnitOfCurrency ; -fun TuvaluDollar : Ind UnitOfCurrency ; + fun TanzanianShilling : Ind UnitOfCurrency ; -fun TwoTierLaborMarketEconomy : Ind FinancialSectorAttribute ; + fun TaroTuber : Class ; + fun TaroTuber_Class : SubClass TaroTuber (both EdibleTuber GroceryProduce) ; --- UNEconomicDevelopmentLevel --- is a subclass of EconomicDevelopmentLevel containing terms used to --- represent economic development classifications used by UnitedNations --- agencies. The top level of this classification scheme includes the --- concepts of DevelopedCountry, FormerSovietOrEasternEuropeanCountry, --- and LessDevelopedCountry. -fun UNEconomicDevelopmentLevel : Class ; -fun UNEconomicDevelopmentLevel_Class : SubClass UNEconomicDevelopmentLevel EconomicDevelopmentLevel ; + fun TaxHavenEconomy : Ind FinancialSectorAttribute ; -fun UgandanShilling : Ind UnitOfCurrency ; + fun TeaLeaf : Class ; + fun TeaLeaf_Class : SubClass TeaLeaf TeaPlantAerialPart ; -fun UkranianHryvnia : Ind UnitOfCurrency ; + -- TeaPlantAerialPart is the + -- class of all parts of the tea plant from which tea may be made, + -- including leaves, stems, and twigs. + fun TeaPlantAerialPart : Class ; + fun TeaPlantAerialPart_Class : SubClass TeaPlantAerialPart FruitOrVegetable ; --- UnderdevelopedCountry is an --- Attribute describing less developed countries that have potential --- for above_average economic growth. See also LessDevelopedCountry. -fun UnderdevelopedCountry : Ind EconomicDevelopmentLevel ; + fun TextileIndustry : Ind IndustryAttribute ; + fun TextileMills : Ind IndustryAttribute ; -fun UnitedArabEmirateDirham : Ind UnitOfCurrency ; + fun TextileProduct : Class ; + fun TextileProduct_Class : SubClass TextileProduct (both Artifact ManufacturedProduct) ; -fun UnitedStatesCentCoin : Class ; -fun UnitedStatesCentCoin_Class : SubClass UnitedStatesCentCoin CurrencyCoin ; -fun UnitedStatesDollarBill : Class ; -fun UnitedStatesDollarBill_Class : SubClass UnitedStatesDollarBill CurrencyBill ; -fun UnitedStatesFiveCentCoin : Class ; -fun UnitedStatesFiveCentCoin_Class : SubClass UnitedStatesFiveCentCoin CurrencyCoin ; -fun UnitedStatesQuarterCoin : Class ; -fun UnitedStatesQuarterCoin_Class : SubClass UnitedStatesQuarterCoin CurrencyCoin ; -fun UnitedStatesTenCentCoin : Class ; -fun UnitedStatesTenCentCoin_Class : SubClass UnitedStatesTenCentCoin CurrencyCoin ; --- LowerMiddleIncomeCountry is an Attribute representing the World Bank --- classification for any country where the per capita GNI is --- between 2,996 and 9,266 (inclusive) in UnitedStatesDollars. -fun UpperMiddleIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; + fun TextileProductMills : Ind IndustryAttribute ; + fun ThaiBaht : Ind UnitOfCurrency ; -fun UruguayanPeso : Ind UnitOfCurrency ; + -- Timber is wood from trees that is + -- suitable for use for building or other human purposes. + fun Timber : Class ; + fun Timber_Class : SubClass Timber (both CompoundSubstance ForestProduct) ; -fun UzbekistaniSom : Ind UnitOfCurrency ; + fun TogoFranc : Ind UnitOfCurrency ; -fun Vanilla : Class ; -fun Vanilla_Class : SubClass Vanilla Spice ; -fun Veal : Class ; -fun Veal_Class : SubClass Veal Meat ; -fun Vegetable : Class ; -fun Vegetable_Class : SubClass Vegetable FruitOrVegetable ; -fun VegetableFarming : Ind IndustryAttribute ; + fun Tomato : Class ; + fun Tomato_Class : SubClass Tomato (both Fruit GroceryProduce) ; -fun VegetableOil : Class ; -fun VegetableOil_Class : SubClass VegetableOil PlantAgriculturalProduct ; -fun VegetableOilIndustry : Ind IndustryAttribute ; + fun TonganPaanga : Ind UnitOfCurrency ; -fun VenezuelanBolivar : Ind UnitOfCurrency ; + fun TourismBasedEconomy : Ind FinancialSectorAttribute ; -fun VietnameseDong : Ind UnitOfCurrency ; + -- TourismIndustry is an Attribute that + -- describes organizations that provide services or products for travellers + -- who stay temporarily in a region to experience local attractions. There + -- is an overlap between TourismIndustry and each of the following + -- industries: TravelArrangementAndReservationServices, + -- TravelerAccommodation, MuseumsHistoricalSitesAndSimilarInstitutions, + -- AmusementGamblingAndRecreationIndustries, and + -- ArtsEntertainmentAndRecreation. + fun TourismIndustry : Ind IndustryAttribute ; -fun Walnut : Class ; -fun Walnut_Class : SubClass Walnut EdibleNut ; -fun WaterBuffalo : Class ; -fun WaterBuffalo_Class : SubClass WaterBuffalo (both HoofedMammal Livestock) ; + fun TradeBasedEconomy : Ind FinancialSectorAttribute ; -fun WaterBuffaloMeat : Class ; -fun WaterBuffaloMeat_Class : SubClass WaterBuffaloMeat Meat ; -fun Watermelon : Class ; -fun Watermelon_Class : SubClass Watermelon Melon ; --- WelfareCapitalism is an Attribute --- describing an economy in which the government provides economic subsidies --- to unemployed or disabled individuals. -fun WelfareCapitalism : Ind EconomicSystemAttribute ; + fun TrinidadAndTobagoDollar : Ind UnitOfCurrency ; + fun TropicalFruit : Class ; + fun TropicalFruit_Class : SubClass TropicalFruit (both Fruit GroceryProduce) ; -fun WesternSamoaNtala : Ind UnitOfCurrency ; + fun TunisianDinar : Ind UnitOfCurrency ; -fun WheatFarming : Ind IndustryAttribute ; + fun TurkeyBird : Class ; + fun TurkeyBird_Class : SubClass TurkeyBird Poultry ; -fun WineGrape : Class ; -fun WineGrape_Class : SubClass WineGrape PlantAgriculturalProduct ; -fun Wine_Beverage : SubClass Wine Beverage ; + fun TurkeyMeat : Class ; + fun TurkeyMeat_Class : SubClass TurkeyMeat Meat ; -fun Wine_PlantAgriculturalProduct : SubClass Wine PlantAgriculturalProduct ; + fun TurkishLira : Ind UnitOfCurrency ; -fun WoodProduct : Class ; -fun WoodProduct_Class : SubClass WoodProduct ForestProduct ; -fun WoodProductManufacturing : Ind IndustryAttribute ; + fun TurkmenManat : Ind UnitOfCurrency ; -fun WoolFiber : Class ; -fun WoolFiber_Class : SubClass WoolFiber AnimalAgriculturalProduct ; --- WorldBankGNIPerCapitaLevel --- is the subclass of EconomicDevelopmentLevel containing attributes --- that characterize countries according to their per capita gross national --- income (GNI), as determined by the WorldBankGroup. The World Bank --- uses the Atlas method for making cross_country comparisons of national --- income. -fun WorldBankGNIPerCapitaLevel : Class ; -fun WorldBankGNIPerCapitaLevel_Class : SubClass WorldBankGNIPerCapitaLevel EconomicDevelopmentLevel ; + fun Turnip : Class ; + fun Turnip_Class : SubClass Turnip (both GroceryProduce RootVegetable) ; -fun YamTuber : Class ; -fun YamTuber_Class : SubClass YamTuber (both EdibleTuber GroceryProduce) ; + fun Turtle : Class ; + fun Turtle_Class : SubClass Turtle (both Livestock Reptile) ; -fun YemeniRial : Ind UnitOfCurrency ; + fun TuvaluDollar : Ind UnitOfCurrency ; -fun YlangYlang : Class ; -fun YlangYlang_Class : SubClass YlangYlang PerfumeEssence ; -fun Yugoslavia : Ind Nation ; + fun TwoTierLaborMarketEconomy : Ind FinancialSectorAttribute ; -fun YugoslavianDinar : Ind UnitOfCurrency ; + -- UNEconomicDevelopmentLevel + -- is a subclass of EconomicDevelopmentLevel containing terms used to + -- represent economic development classifications used by UnitedNations + -- agencies. The top level of this classification scheme includes the + -- concepts of DevelopedCountry, FormerSovietOrEasternEuropeanCountry, + -- and LessDevelopedCountry. + fun UNEconomicDevelopmentLevel : Class ; + fun UNEconomicDevelopmentLevel_Class : SubClass UNEconomicDevelopmentLevel EconomicDevelopmentLevel ; -fun ZaireSezaire : Ind UnitOfCurrency ; + fun UgandanShilling : Ind UnitOfCurrency ; -fun ZambianKwacha : Ind UnitOfCurrency ; + fun UkranianHryvnia : Ind UnitOfCurrency ; -fun ZimbabweanDollar : Ind UnitOfCurrency ; + -- UnderdevelopedCountry is an + -- Attribute describing less developed countries that have potential + -- for above_average economic growth. See also LessDevelopedCountry. + fun UnderdevelopedCountry : Ind EconomicDevelopmentLevel ; -fun ZincIndustry : Ind IndustryAttribute ; + fun UnitedArabEmirateDirham : Ind UnitOfCurrency ; -fun ZincManufacturing : Ind IndustryAttribute ; + fun UnitedStatesCentCoin : Class ; + fun UnitedStatesCentCoin_Class : SubClass UnitedStatesCentCoin CurrencyCoin ; -fun ZincOre : Class ; -fun ZincOre_Class : SubClass ZincOre (both Mineral MiningProduct) ; + fun UnitedStatesDollarBill : Class ; + fun UnitedStatesDollarBill_Class : SubClass UnitedStatesDollarBill CurrencyBill ; -fun ZincOreMining : Ind IndustryAttribute ; + fun UnitedStatesFiveCentCoin : Class ; + fun UnitedStatesFiveCentCoin_Class : SubClass UnitedStatesFiveCentCoin CurrencyCoin ; -fun ZincProduct : Class ; -fun ZincProduct_Class : SubClass ZincProduct (both ManufacturedProduct MetalProduct) ; + fun UnitedStatesQuarterCoin : Class ; + fun UnitedStatesQuarterCoin_Class : SubClass UnitedStatesQuarterCoin CurrencyCoin ; --- (agriculturalProductType ?AREA ?TYPE) means that the --- GeopoliticalArea ?AREA produces a crop or other --- agricultural product of ?TYPE. -fun agriculturalProductType: El GeopoliticalArea -> Desc Object -> Formula ; + fun UnitedStatesTenCentCoin : Class ; + fun UnitedStatesTenCentCoin_Class : SubClass UnitedStatesTenCentCoin CurrencyCoin ; + -- LowerMiddleIncomeCountry is an Attribute representing the World Bank + -- classification for any country where the per capita GNI is + -- between 2,996 and 9,266 (inclusive) in UnitedStatesDollars. + fun UpperMiddleIncomeCountry : Ind WorldBankGNIPerCapitaLevel ; --- (agriculturalProductTypeByRank ?AREA ?TYPE ?NTH) means that the --- GeopoliticalArea ?AREA produces a crop or other --- agricultural product of ?TYPE, which is its ?NTH most important --- crop. -fun agriculturalProductTypeByRank: El GeopoliticalArea -> Desc Object -> Desc PositiveInteger -> Formula ; + fun UruguayanPeso : Ind UnitOfCurrency ; + fun UzbekistaniSom : Ind UnitOfCurrency ; --- (annualElectricityConsumption ?AREA ?AMOUNT) means that the --- GeopoliticalArea ?AREA uses ?AMOUNT of electricity (measured in --- KilowattHours) annually. -fun annualElectricityConsumption : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + fun Vanilla : Class ; + fun Vanilla_Class : SubClass Vanilla Spice ; + fun Veal : Class ; + fun Veal_Class : SubClass Veal Meat ; --- (annualElectricityExport ?AREA ?AMOUNT) means that the --- GeopoliticalArea ?AREA exported the total ?AMOUNT of --- electricity (measured in KilowattHours) annually. -fun annualElectricityExport : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + fun Vegetable : Class ; + fun Vegetable_Class : SubClass Vegetable FruitOrVegetable ; + fun VegetableFarming : Ind IndustryAttribute ; --- (annualElectricityImport ?AREA ?AMOUNT) means that the --- GeopoliticalArea ?AREA imported the total ?AMOUNT of --- electricity (measured in KilowattHours) annually. -fun annualElectricityImport : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + fun VegetableOil : Class ; + fun VegetableOil_Class : SubClass VegetableOil PlantAgriculturalProduct ; + fun VegetableOilIndustry : Ind IndustryAttribute ; --- (annualElectricityProduction ?AREA ?AMOUNT) means that the amount of --- electricity generated annually in the GeographicalArea ?AREA is --- ?AMOUNT, measured in KilowattHours. -fun annualElectricityProduction : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + fun VenezuelanBolivar : Ind UnitOfCurrency ; + fun VietnameseDong : Ind UnitOfCurrency ; --- (annualExpendituresOfArea ?AREA ?AMOUNT) means that the annual --- budgetary expenditures of the GeopoliticalArea ?AREA are ?AMOUNT, --- calculated in U.S. dollars according to the currency exchange rate --- method. -fun annualExpendituresOfArea : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + fun Walnut : Class ; + fun Walnut_Class : SubClass Walnut EdibleNut ; + fun WaterBuffalo : Class ; + fun WaterBuffalo_Class : SubClass WaterBuffalo (both HoofedMammal Livestock) ; --- (annualExpendituresOfAreaInPeriod ?AREA ?AMOUNT ?PERIOD) means that --- the annual budgetary expenditures of the GeopoliticalArea ?AREA are --- ?AMOUNT for the annual TimeInterval indicated by ?PERIOD, calculated --- in U.S. dollars according to the currency exchange rate method. -fun annualExpendituresOfAreaInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + fun WaterBuffaloMeat : Class ; + fun WaterBuffaloMeat_Class : SubClass WaterBuffaloMeat Meat ; + fun Watermelon : Class ; + fun Watermelon_Class : SubClass Watermelon Melon ; --- (annualExportTotal ?AREA ?AMOUNT) means that the total --- value of exports from the GeopoliticalArea ?AREA is ?AMOUNT --- (in UnitedStatesDollars) annually. Export value is calculated --- on a Free on Board (F.O.B.) basis. -fun annualExportTotal : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + -- WelfareCapitalism is an Attribute + -- describing an economy in which the government provides economic subsidies + -- to unemployed or disabled individuals. + fun WelfareCapitalism : Ind EconomicSystemAttribute ; + fun WesternSamoaNtala : Ind UnitOfCurrency ; --- (annualImportTotal ?AREA ?AMOUNT) means that the total --- value of imports to the GeopoliticalArea ?AREA is ?AMOUNT (in --- UnitedStatesDollars) annually. Import value is calculated on a Cost, --- Insurance, and Freight (C.I.F.) or a Free on Board (F.O.B.) basis. -fun annualImportTotal : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + fun WheatFarming : Ind IndustryAttribute ; + fun WineGrape : Class ; + fun WineGrape_Class : SubClass WineGrape PlantAgriculturalProduct ; --- (annualRevenuesOfArea ?AREA ?AMOUNT) means that the annual budgetary --- revenues of the GeopoliticalArea ?AREA are ?AMOUNT, calculated in U.S. --- dollars according to the currency exchange rate method. -fun annualRevenuesOfArea : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + fun WoodProduct : Class ; + fun WoodProduct_Class : SubClass WoodProduct ForestProduct ; + fun WoodProductManufacturing : Ind IndustryAttribute ; --- (annualRevenuesOfAreaInPeriod ?AREA ?AMOUNT ?PERIOD) means that the --- annual budgetary revenues of the GeopoliticalArea ?AREA are ?AMOUNT --- for the annual TimeInterval indicated by ?PERIOD, calculated in U.S. --- dollars according to the currency exchange rate method. -fun annualRevenuesOfAreaInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + fun WoolFiber : Class ; + fun WoolFiber_Class : SubClass WoolFiber AnimalAgriculturalProduct ; + -- WorldBankGNIPerCapitaLevel + -- is the subclass of EconomicDevelopmentLevel containing attributes + -- that characterize countries according to their per capita gross national + -- income (GNI), as determined by the WorldBankGroup. The World Bank + -- uses the Atlas method for making cross_country comparisons of national income. + fun WorldBankGNIPerCapitaLevel : Class ; + fun WorldBankGNIPerCapitaLevel_Class : SubClass WorldBankGNIPerCapitaLevel EconomicDevelopmentLevel ; --- (capitalExpendituresOfArea ?AREA ?AMOUNT) means that the annual --- capital expenditures of the GeopoliticalArea ?AREA are ?AMOUNT, --- calculated in U.S. dollars according to the currency exchange rate --- method. This figure is a portion of the annualExpendituresOfArea --- for ?AREA. -fun capitalExpendituresOfArea : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + fun YamTuber : Class ; + fun YamTuber_Class : SubClass YamTuber (both EdibleTuber GroceryProduce) ; + fun YemeniRial : Ind UnitOfCurrency ; --- (capitalExpendituresOfAreaInPeriod ?AREA ?AMOUNT ?PERIOD) means that --- the annual capital expenditures of the GeopoliticalArea ?AREA are --- ?AMOUNT for the annual TimeInterval indicated by ?PERIOD, calculated in --- U.S. dollars according to the currency exchange rate method. This figure --- is a portion of the annualExpendituresOfArea for ?AREA in ?PERIOD. -fun capitalExpendituresOfAreaInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + fun YlangYlang : Class ; + fun YlangYlang_Class : SubClass YlangYlang PerfumeEssence ; + fun Yugoslavia : Ind Nation ; --- (currencyCode ?CODE ?UNIT) means --- that ?CODE is the InternationalOrganizationForStandardization --- (ISO) 4217 alphabetic currency code for the national --- CurrencyMeasure ?UNIT. -fun currencyCode : El SymbolicString -> El UnitOfCurrency -> Formula ; + fun YugoslavianDinar : Ind UnitOfCurrency ; + fun ZaireSezaire : Ind UnitOfCurrency ; --- (currencyExchangePerUSDollar ?AMOUNT ?PERIOD) means that one --- UnitedStatesDollar is worth ?AMOUNT (in a non_U.S. CurrencyMeasure), --- during the TimeInterval indicated by ?PERIOD. The rate of exchange may --- be based either on international market forces or official fiat. -fun currencyExchangePerUSDollar: El CurrencyMeasure -> Desc TimeInterval -> Formula ; + fun ZambianKwacha : Ind UnitOfCurrency ; + fun ZimbabweanDollar : Ind UnitOfCurrency ; --- (currencyExchangeRate ?UNIT ?AMOUNT) means that the currency --- denomination ?UNIT is worth ?AMOUNT (which is in another --- CurrencyMeasure). -fun currencyExchangeRate : El UnitOfCurrency -> El CurrencyMeasure -> Formula ; + fun ZincIndustry : Ind IndustryAttribute ; + fun ZincManufacturing : Ind IndustryAttribute ; --- (currencyExchangeRateInPeriod ?UNIT ?AMOUNT ?PERIOD) means that the --- currency denomination ?UNIT is worth ?AMOUNT (which is expressed in another --- UnitOfCurrency) during the TimeInterval indicated by ?PERIOD. -fun currencyExchangeRateInPeriod: El UnitOfCurrency -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + fun ZincOre : Class ; + fun ZincOre_Class : SubClass ZincOre (both Mineral MiningProduct) ; + fun ZincOreMining : Ind IndustryAttribute ; --- (currencyType ?AREA ?UNIT) means --- that the official currency used in the GeopoliticalArea ?AREA --- is the UnitOfMeasure ?UNIT. -fun currencyType : El GeopoliticalArea -> El UnitOfCurrency -> Formula ; + fun ZincProduct : Class ; + fun ZincProduct_Class : SubClass ZincProduct (both ManufacturedProduct MetalProduct) ; + -- (agriculturalProductType ?AREA ?TYPE) means that the + -- GeopoliticalArea ?AREA produces a crop or other + -- agricultural product of ?TYPE. + fun agriculturalProductType: El GeopoliticalArea -> Desc Object -> Formula ; --- The currencyValue is a relation between --- a physical instrument of currency, such as a bill or coin, and the --- measure of its worth in a particular currency. -fun currencyValue: Desc Currency -> El CurrencyMeasure -> Formula ; + -- (agriculturalProductTypeByRank ?AREA ?TYPE ?NTH) means that the + -- GeopoliticalArea ?AREA produces a crop or other + -- agricultural product of ?TYPE, which is its ?NTH most important + -- crop. + fun agriculturalProductTypeByRank: El GeopoliticalArea -> Desc Object -> Desc PositiveInteger -> Formula ; + -- (annualElectricityConsumption ?AREA ?AMOUNT) means that the + -- GeopoliticalArea ?AREA uses ?AMOUNT of electricity (measured in KilowattHours) annually. + fun annualElectricityConsumption : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; --- (economicAidDonated ?AGENT ?AMOUNT) means that the GeopoliticalArea --- ?AREA donated ?AMOUNT of aid (valued in U.S. dollars) to developing --- countries and multilateral organizations. This figure covers 'net --- official development assistance' (ODA), which is net financial assistance --- from nations belonging to the --- OrganizationForEconomicCooperationAndDevelopment (OECD), with the main --- goal of promoting economic development and welfare. Such aid contains a --- grant element of at least 25%. This statistic does not cover private --- flows of assistance or other official flows (OOF). -fun economicAidDonated : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + -- (annualElectricityExport ?AREA ?AMOUNT) means that the + -- GeopoliticalArea ?AREA exported the total ?AMOUNT of + -- electricity (measured in KilowattHours) annually. + fun annualElectricityExport : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + -- (annualElectricityImport ?AREA ?AMOUNT) means that the + -- GeopoliticalArea ?AREA imported the total ?AMOUNT of + -- electricity (measured in KilowattHours) annually. + fun annualElectricityImport : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + + -- (annualElectricityProduction ?AREA ?AMOUNT) means that the amount of + -- electricity generated annually in the GeographicalArea ?AREA is + -- ?AMOUNT, measured in KilowattHours. + fun annualElectricityProduction : El GeopoliticalArea -> El PhysicalQuantity -> Formula ; + + -- (annualExpendituresOfArea ?AREA ?AMOUNT) means that the annual + -- budgetary expenditures of the GeopoliticalArea ?AREA are ?AMOUNT, + -- calculated in U.S. dollars according to the currency exchange rate + -- method. + fun annualExpendituresOfArea : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (annualExpendituresOfAreaInPeriod ?AREA ?AMOUNT ?PERIOD) means that + -- the annual budgetary expenditures of the GeopoliticalArea ?AREA are + -- ?AMOUNT for the annual TimeInterval indicated by ?PERIOD, calculated + -- in U.S. dollars according to the currency exchange rate method. + fun annualExpendituresOfAreaInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (annualExportTotal ?AREA ?AMOUNT) means that the total + -- value of exports from the GeopoliticalArea ?AREA is ?AMOUNT + -- (in UnitedStatesDollars) annually. Export value is calculated + -- on a Free on Board (F.O.B.) basis. + fun annualExportTotal : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (annualImportTotal ?AREA ?AMOUNT) means that the total + -- value of imports to the GeopoliticalArea ?AREA is ?AMOUNT (in + -- UnitedStatesDollars) annually. Import value is calculated on a Cost, + -- Insurance, and Freight (C.I.F.) or a Free on Board (F.O.B.) basis. + fun annualImportTotal : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (annualRevenuesOfArea ?AREA ?AMOUNT) means that the annual budgetary + -- revenues of the GeopoliticalArea ?AREA are ?AMOUNT, calculated in U.S. + -- dollars according to the currency exchange rate method. + fun annualRevenuesOfArea : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (annualRevenuesOfAreaInPeriod ?AREA ?AMOUNT ?PERIOD) means that the + -- annual budgetary revenues of the GeopoliticalArea ?AREA are ?AMOUNT + -- for the annual TimeInterval indicated by ?PERIOD, calculated in U.S. + -- dollars according to the currency exchange rate method. + fun annualRevenuesOfAreaInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (capitalExpendituresOfArea ?AREA ?AMOUNT) means that the annual + -- capital expenditures of the GeopoliticalArea ?AREA are ?AMOUNT, + -- calculated in U.S. dollars according to the currency exchange rate + -- method. This figure is a portion of the annualExpendituresOfArea + -- for ?AREA. + fun capitalExpendituresOfArea : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (capitalExpendituresOfAreaInPeriod ?AREA ?AMOUNT ?PERIOD) means that + -- the annual capital expenditures of the GeopoliticalArea ?AREA are + -- ?AMOUNT for the annual TimeInterval indicated by ?PERIOD, calculated in + -- U.S. dollars according to the currency exchange rate method. This figure + -- is a portion of the annualExpendituresOfArea for ?AREA in ?PERIOD. + fun capitalExpendituresOfAreaInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (currencyCode ?CODE ?UNIT) means + -- that ?CODE is the InternationalOrganizationForStandardization + -- (ISO) 4217 alphabetic currency code for the national + -- CurrencyMeasure ?UNIT. + fun currencyCode : El SymbolicString -> El UnitOfCurrency -> Formula ; + + -- (currencyExchangePerUSDollar ?AMOUNT ?PERIOD) means that one + -- UnitedStatesDollar is worth ?AMOUNT (in a non_U.S. CurrencyMeasure), + -- during the TimeInterval indicated by ?PERIOD. The rate of exchange may + -- be based either on international market forces or official fiat. + fun currencyExchangePerUSDollar: El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (currencyExchangeRate ?UNIT ?AMOUNT) means that the currency + -- denomination ?UNIT is worth ?AMOUNT (which is in another + -- CurrencyMeasure). + fun currencyExchangeRate : El UnitOfCurrency -> El CurrencyMeasure -> Formula ; + + -- (currencyExchangeRateInPeriod ?UNIT ?AMOUNT ?PERIOD) means that the + -- currency denomination ?UNIT is worth ?AMOUNT (which is expressed in another + -- UnitOfCurrency) during the TimeInterval indicated by ?PERIOD. + fun currencyExchangeRateInPeriod: El UnitOfCurrency -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (currencyType ?AREA ?UNIT) means + -- that the official currency used in the GeopoliticalArea ?AREA + -- is the UnitOfMeasure ?UNIT. + fun currencyType : El GeopoliticalArea -> El UnitOfCurrency -> Formula ; + + -- The currencyValue is a relation between + -- a physical instrument of currency, such as a bill or coin, and the + -- measure of its worth in a particular currency. + fun currencyValue: Desc Currency -> El CurrencyMeasure -> Formula ; + + -- (economicAidDonated ?AGENT ?AMOUNT) means that the GeopoliticalArea + -- ?AREA donated ?AMOUNT of aid (valued in U.S. dollars) to developing + -- countries and multilateral organizations. This figure covers 'net + -- official development assistance' (ODA), which is net financial assistance + -- from nations belonging to the + -- OrganizationForEconomicCooperationAndDevelopment (OECD), with the main + -- goal of promoting economic development and welfare. Such aid contains a + -- grant element of at least 25%. This statistic does not cover private + -- flows of assistance or other official flows (OOF). + fun economicAidDonated : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (economicAidDonatedInPeriod ?AGENT ?AMOUNT ?PERIOD) means that the + -- GeopoliticalArea ?AGENT donated ?AMOUNT of aid (valued in U.S. dollars) + -- to developing countries and multilateral organizations during the + -- TimeInterval indicated by ?PERIOD. This figure covers 'net official + -- development assistance' (ODA), which is net financial assistance from + -- nations belonging to the + -- OrganizationForEconomicCooperationAndDevelopment (OECD), with the main + -- goal of promoting economic development and welfare. Such aid contains a + -- grant element of at least 25%. This statistic does not cover private + -- flows of assistance or other official flows (OOF). + fun economicAidDonatedInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (economicAidReceivedNet ?AREA ?AMOUNT) means that the + -- GeopoliticalArea ?AREA had a net inflow of Official Development Finance + -- (ODF) of ?AMOUNT. ODF includes funds from the World Bank, the IMF, other + -- international organizations, and individual donor nations, including both + -- grants and loans. The figure includes formal commitments of aid not yet + -- disbursed. The figure is the net amount of inflow after deducting + -- repayments, valued in U.S. dollars. + fun economicAidReceivedNet : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (economicAidReceivedNetInPeriod ?AREA ?AMOUNT ?PERIOD) means that the + -- GeopoliticalArea ?AREA had a net inflow of Official Development Finance + -- (ODF) of ?AMOUNT during the TimeInterval indicated by ?PERIOD. ODF + -- includes funds from the World Bank, the IMF, other international + -- organizations, and individual donor nations, including both grants and + -- loans. The figure includes formal commitments of aid not yet disbursed. + -- The figure is the net amount of inflow after deducting repayments, + -- valued in U.S. dollars. + fun economicAidReceivedNetInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (economyType ?POLITY ?TYPE) means that the + -- GeopoliticalArea ?POLITY has an economic system of TYPE. + fun economyType : El Agent -> El EconomicAttribute -> Formula ; + + -- (electricityConsumptionInPeriod ?AREA ?AMOUNT ?YEAR) means that + -- the GeopoliticalArea ?AREA used ?AMOUNT of electricity (measured in + -- KilowattHours) during the TimeInterval indicated by ?YEAR. + fun electricityConsumptionInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; + + -- (electricityExportInPeriod ?AREA ?AMOUNT ?PERIOD) means that + -- the GeopoliticalArea ?AREA exported the total ?AMOUNT of electricity + -- (measured in KilowattHours) during the TimeInterval indicated + -- by ?PERIOD. + fun electricityExportInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; + + -- (electricityFractionFromSource ?AREA ?SOURCE ?FRACTION) means that in + -- the GeopoliticalArea ?AREA, ?SOURCE provides ?FRACTION of the total + -- electricity production. + fun electricityFractionFromSource: El GeopoliticalArea -> Desc PowerGeneration -> El RealNumber -> Formula ; + + -- (electricityFractionFromSourceInPeriod ?AREA ?SOURCE ?FRACTION ?PERIOD) + -- means that in the GeopoliticalArea ?AREA, ?SOURCE provides ?FRACTION + -- of the total electricity production during the TimeInterval indicated + -- by ?PERIOD. + fun electricityFractionFromSourceInPeriod: El GeopoliticalArea -> Desc PowerGeneration -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (electricityImportInPeriod ?AREA ?AMOUNT ?PERIOD) means that + -- the GeopoliticalArea ?AREA imported the total ?AMOUNT of electricity + -- (measured in KilowattHours) during the TimeInterval indicated by ?PERIOD. + fun electricityImportInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; + + -- (electricityProductionInPeriod ?AREA ?AMOUNT ?PERIOD) means that the + -- GeopoliticalArea ?AREA generates ?AMOUNT of electricity, measured in + -- KilowattHours, during the TimeInterval indicated by ?PERIOD. + fun electricityProductionInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; + + -- (exportCommodityType ?AREA ?TYPE) means that the GeopoliticalArea + -- ?AREA exports the commodity ?TYPE. + fun exportCommodityType: El GeopoliticalArea -> Desc Object -> Formula ; + + -- (exportCommodityTypeByRank ?AREA ?TYPE ?NTH) means that the + -- GeopoliticalArea ?AREA has the commodity ?TYPE as its ?NTH + -- most valuable export. + fun exportCommodityTypeByRank: El GeopoliticalArea -> Desc Object -> El PositiveInteger -> Formula ; + + -- (exportPartner ?AGENT1 ?AGENT2) means that the Agent ?AGENT1 exports goods to the Agent ?AGENT2. + fun exportPartner : El Agent -> El Agent -> Formula ; + + -- (exportPartnerByFraction ?AREA1 ?AREA2 ?FRACTION) means that + -- the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea + -- ?AREA2 and receives ?FRACTION of the exportTotalInPeriod of ?AREA1, + -- based on U.S. dollar value of exports. + fun exportPartnerByFraction : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Formula ; + + -- (exportPartnerByFractionInPeriod ?AREA1 ?AREA2 ?FRACTION ?PERIOD) means + -- that the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea + -- ?AREA2 and receives ?FRACTION of the exportTotalInPeriod of ?AREA1 + -- in the TimeInterval ?PERIOD, based on U.S. dollar value of exports. + fun exportPartnerByFractionInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Desc TimeInterval -> Formula ; + + -- (exportPartnerByRank ?AREA1 ?AREA2 ?NTH) means that + -- the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea + -- ?AREA2 and is the ?NTH most important export partner of ?AREA1, + -- based on U.S. dollar value of exports. + fun exportPartnerByRank : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Formula ; + + -- (exportPartnerByRankInPeriod ?AREA1 ?AREA2 ?NTH ?PERIOD) means that + -- the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea + -- ?AREA2 and is the ?NTH most important export partner of ?AREA1, + -- in the TimeInterval ?PERIOD, based on U.S. dollar value of exports. + fun exportPartnerByRankInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Desc TimeInterval -> Formula ; + + -- (exportPartnerInPeriod ?AGENT1 ?AGENT2 ?PERIOD) means that the Agent + -- ?AGENT1 exports goods to the Agent ?AGENT2 during the TimeInterval + -- indicated by ?PERIOD. + fun exportPartnerInPeriod: El Agent -> El Agent -> Desc TimeInterval -> Formula ; + + -- (exportTotalInPeriod ?AREA ?AMOUNT ?PERIOD) means that the + -- total value of exports from the GeopoliticalArea ?AREA is ?AMOUNT + -- (in UnitedStatesDollars) for the TimeInterval indicated by ?PERIOD. + -- Export value is calculated on a Free on Board (F.O.B.) basis. + fun exportTotalInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (externalDebt ?COUNTRY ?AMOUNT) means + -- that the GeopoliticalArea ?COUNTRY owes the total sum ?AMOUNT of debt + -- (public and private) to nonresidents. The amount is valued in U.S. + -- dollars but may be repayable in foreign currency, goods, or services. + fun externalDebt : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (externalDebtInPeriod ?COUNTRY ?AMOUNT ?PERIOD) means that the + -- GeopoliticalArea ?COUNTRY owes the total sum ?AMOUNT of debt (public + -- and private) to nonresidents during the TimeInterval indicated by + -- ?PERIOD. The amount is valued in U.S. dollars but may be repayable in + -- foreign currency, goods, or services. + fun externalDebtInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- The predicate fiscalYearPeriod + -- indicates the period that an Agent or Organization uses as its + -- 12_month accounting period. (fiscalYearPeriod ?AGENT Year) means + -- that ?AGENT observes its 12_month accounting period during the + -- regular calendar year (CY), from January to December. For + -- fiscal years with other beginning and ending months (FYs), use + -- (fiscalYearPeriod ?AGENT (RecurrentTimeIntervalFn ?STARTMONTH ?ENDMONTH)). + -- For example, (fiscalYearPeriod (GovernmentFn UnitedStates) + -- (RecurrentTimeIntervalFn October September)). For FYs that begin + -- or end mid_month, days may be specified within RecurrentTimeIntervalFn. + fun fiscalYearPeriod: El Agent -> Desc TimeInterval -> Formula ; + + -- (highestDecileShareOfHouseholdIncome ?AREA ?FRACTION) means that + -- in the GeopoliticalArea ?AREA, the highest decile (90_100%) of + -- households with respect to household income (or consumption) had + -- ?FRACTION amount of the total household income (or consumption). + -- Data from different countries may not be directly comparable due to + -- variation in the basis of the data (e.g., based on income versus + -- based on consumption). + fun highestDecileShareOfHouseholdIncome : El GeopoliticalArea -> El RealNumber -> Formula ; + + -- (highestDecileShareOfHouseholdIncomeInPeriod ?AREA ?FRACTION ?PERIOD) + -- means that in the GeopoliticalArea ?AREA, the highest decile (90_100%) + -- of households with respect to household income (or consumption) had + -- ?FRACTION amount of the total household income (or consumption), during + -- the TimeInterval indicated by ?PERIOD. Data from different countries + -- may not be directly comparable due to variation in the basis of the data + -- (e.g., based on household income versus based on household consumption). + fun highestDecileShareOfHouseholdIncomeInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (importCommodityType ?AREA ?TYPE) means that the GeopoliticalArea + -- ?AREA imports the commodity ?TYPE. + fun importCommodityType: El GeopoliticalArea -> Desc Object -> Formula ; + + -- (importCommodityTypeByRank ?AREA ?TYPE ?NTH) means that the + -- GeopoliticalArea ?AREA has the commodity ?TYPE as its ?NTH + -- most valuable import. + fun importCommodityTypeByRank: El GeopoliticalArea -> Desc Object -> El PositiveInteger -> Formula ; + + -- (importPartner ?AGENT1 ?AGENT2) means + -- that the Agent ?AGENT1 imports goods from the Agent ?AGENT2. + fun importPartner : El Agent -> El Agent -> Formula ; + + -- (importPartnerByFraction ?AREA1 ?AREA2 ?FRACTION) means that + -- the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea + -- ?AREA2 and provides ?FRACTION of the importTotalInPeriod of ?AREA1, + -- based on U.S. dollar value of imports. + fun importPartnerByFraction : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Formula ; + + -- (importPartnerByFractionInPeriod ?AREA1 ?AREA2 ?FRACTION ?PERIOD) means + -- that the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea + -- ?AREA2 and provides ?FRACTION of the importTotalInPeriod of ?AREA1 + -- during the TimeInterval ?PERIOD, in U.S. dollar value of imports. + fun importPartnerByFractionInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Desc TimeInterval -> Formula ; + + -- (importPartnerByRank ?AREA1 ?AREA2 ?NTH) means that + -- the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea + -- ?AREA2 is the ?NTH most important import partner of ?AREA1, based on + -- U.S. dollar value of imports. + fun importPartnerByRank : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Formula ; + + -- (importPartnerByRankInPeriod ?AREA1 ?AREA2 ?NTH ?PERIOD) means that + -- the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea + -- ?AREA2 is the ?NTH most important import partner of ?AREA1 during + -- the TimeInterval ?PERIOD, based on U.S. dollar value of imports. + fun importPartnerByRankInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Desc TimeInterval -> Formula ; + + -- (importPartnerInPeriod ?AGENT1 ?AGENT2 ?PERIOD) means that the Agent + -- ?AGENT1 imports goods from the Agent ?AGENT2 during the TimeInterval + -- indicated by ?PERIOD. + fun importPartnerInPeriod: El Agent -> El Agent -> Desc TimeInterval -> Formula ; + + -- (importTotalInPeriod ?AREA ?AMOUNT ?PERIOD) means that the + -- total value of imports to the GeopoliticalArea ?AREA is ?AMOUNT + -- (in UnitedStatesDollars) for the TimeInterval indicated by ?PERIOD. + -- Import value is calculated on a Cost, Insurance, and Freight (C.I.F.) + -- or a Free on Board (F.O.B.) basis. + fun importTotalInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (incomeDistributionByGiniIndex ?AREA ?INDEX) means that in the + -- GeopoliticalArea ?AREA, the distribution of family income is ?INDEX, + -- as measured by the Gini index for family income distribution. + fun incomeDistributionByGiniIndex : El GeopoliticalArea -> El NonnegativeRealNumber -> Formula ; + + -- (incomeDistributionByGiniIndexInPeriod ?AREA ?INDEX ?PERIOD) means that + -- in the GeopoliticalArea ?AREA, the distribution of family income is + -- ?INDEX, as measured by the Gini index, during the TimeInterval indicated + -- by ?PERIOD. + fun incomeDistributionByGiniIndexInPeriod: El GeopoliticalArea -> El NonnegativeRealNumber -> Desc TimeInterval -> Formula ; + + -- (industrialProductionGrowthRate ?AREA ?RATE) means that in + -- the GeopoliticalArea ?AREA, the annual percentage increase in + -- industrial production is ?RATE. + fun industrialProductionGrowthRate : El GeopoliticalArea -> El RealNumber -> Formula ; + + -- (industrialProductionGrowthRateInPeriod ?AREA ?RATE ?PERIOD) means + -- that in the GeopoliticalArea ?AREA, the annual percentage increase in + -- industrial production is ?RATE, for the TimeInterval ?PERIOD. + fun industrialProductionGrowthRateInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (industryOfArea ?AREA ?SECTOR) means that the GeopoliticalArea ?AREA produces + -- goods or services in the economic area ?SECTOR. + fun industryOfArea : El GeopoliticalArea -> El IndustryAttribute -> Formula ; + + -- (industryProductType ?INDUSTRY ?TYPE) means that organizations with + -- the IndustryAttribute ?INDUSTRY produce products of the kind ?TYPE. + fun industryProductType: El IndustryAttribute -> Desc Object -> Formula ; + + -- (industryRankByOutput ?AREA ?SECTOR ?NTH) means that in the + -- GeopoliticalArea ?AREA, the economic area ?SECTOR is ?NTH with + -- respect to the value of its annual output. + fun industryRankByOutput : El GeopoliticalArea -> El IndustryAttribute -> El PositiveInteger -> Formula ; + + -- (industryServiceType ?INDUSTRY ?TYPE) means that organizations with + -- the IndustryAttribute ?INDUSTRY provide services of the kind ?TYPE. + fun industryServiceType: El IndustryAttribute -> Desc IntentionalProcess -> Formula ; + + -- (inflationRateOfConsumerPrices ?AREA ?FRACTION) means that in the + -- GeopoliticalArea ?AREA, the annual change in consumer prices was + -- ?FRACTION, compared with prices from the previous year. + fun inflationRateOfConsumerPrices : El GeopoliticalArea -> El RealNumber -> Formula ; + + -- (inflationRateOfConsumerPricesInPeriod ?AREA ?FRACTION ?PERIOD) means + -- that in the GeopoliticalArea ?AREA, the annual change in consumer + -- prices was ?FRACTION, for the TimeInterval indicated by ?PERIOD, + -- compared with prices from the prior period. + fun inflationRateOfConsumerPricesInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (laborForceFractionByOccupation ?AREA ?SECTOR ?FRACTION) + -- means that in the GeopoliticalArea ?AREA, workers in the job area + -- ?SECTOR make up ?FRACTION of the labor force. The unemployed are not + -- included in these figures. Occupation may be indicated by an + -- OccupationalRole or an IndustryAttribute. + fun laborForceFractionByOccupation : El GeopoliticalArea -> El Attribute -> El RealNumber -> Formula ; + + -- (laborForceFractionByOccupationInPeriod ?AREA ?SECTOR ?FRACTION ?PERIOD) + -- means that in the GeopoliticalArea ?AREA, workers in the job area + -- ?SECTOR make up ?FRACTION of the labor force, during the TimeInterval + -- indicated by ?PERIOD. The unemployed are not included in these figures. + -- Occupation may be indicated by an OccupationalRole or an + -- IndustryAttribute. + fun laborForceFractionByOccupationInPeriod: El GeopoliticalArea -> El Attribute -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (laborForceTotal ?AREA ?AMOUNT) means that the total labor + -- force of the GeopoliticalArea ?AREA is ?AMOUNT. This includes + -- unemployed workers. + fun laborForceTotal : El GeopoliticalArea -> El NonnegativeRealNumber -> Formula ; + + -- (laborForceTotalInPeriod ?AREA ?AMOUNT ?PERIOD) means that the total + -- labor force of the GeopoliticalArea ?AREA is ?AMOUNT during the + -- TimeInterval indicated by ?PERIOD. This includes unemployed workers. + fun laborForceTotalInPeriod: El GeopoliticalArea -> El NonnegativeRealNumber -> Desc TimeInterval -> Formula ; + + -- (lowestDecileShareOfHouseholdIncome ?AREA ?FRACTION) means that + -- in the GeopoliticalArea ?AREA, the lowest decile (0_10%) of + -- households with respect to household income (or consumption) had + -- ?FRACTION amount of the total household income (or consumption). + -- Data from different countries may not be directly comparable due to + -- variation in the basis of the data (e.g., based on income versus based + -- on consumption). + fun lowestDecileShareOfHouseholdIncome : El GeopoliticalArea -> El RealNumber -> Formula ; + + -- (lowestDecileShareOfHouseholdIncomeInPeriod ?AREA ?FRACTION ?PERIOD) + -- means that in the GeopoliticalArea ?AREA, the lowest decile (0_10%) + -- of households with respect to household income (or consumption) had + -- ?FRACTION amount of the total household income (or consumption), during + -- the TimeInterval indicated by ?PERIOD. Data from different countries + -- may not be directly comparable due to variation in the basis of the data + -- (e.g., based on household income versus based on household consumption). + fun lowestDecileShareOfHouseholdIncomeInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (organizationProductType ?BUSINESS ?TYPE) means that the Organization + -- ?BUSINESS produces products of the kind ?TYPE. + fun organizationProductType: El Organization -> Desc Object -> Formula ; + + -- (organizationServiceType ?BUSINESS ?TYPE) means that the Organization + -- ?BUSINESS provides services of the kind ?TYPE. + fun organizationServiceType: El Organization -> Desc IntentionalProcess -> Formula ; + + -- (perCapitaGDP ?AREA ?AMOUNT) means + -- that the Gross Domestic Product, on a per capita basis, for the + -- GeopoliticalArea ?AREA is ?AMOUNT, calculated in U.S. dollars on a + -- purchasing power parity basis. See PPPBasedEconomicValuation. + fun perCapitaGDP : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (perCapitaGDPInPeriod ?AREA ?AMOUNT ?PERIOD) means that the Gross + -- Domestic Product, on a per capita basis, for the GeopoliticalArea + -- ?AREA is ?AMOUNT during the period indicated by ?PERIOD, calculated in + -- U.S. dollars on a purchasing power parity basis. See + -- PPPBasedEconomicValuation. + fun perCapitaGDPInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (populationFractionBelowPovertyLine ?AREA ?FRACTION) means that in + -- the GeopoliticalArea ?AREA, the segment of the population living + -- below the (locally defined) poverty line is ?FRACTION. Note that the + -- definition of the poverty line varies internationally. + fun populationFractionBelowPovertyLine : El GeopoliticalArea -> El RealNumber -> Formula ; + + -- (populationFractionBelowPovertyLineInPeriod ?AREA ?FRACTION ?PERIOD) + -- means that in the GeopoliticalArea ?AREA, the segment of the population + -- living below the (locally defined) poverty line is ?FRACTION during the + -- TimeInterval indicated by ?PERIOD. Note that the definition of the + -- poverty line varies internationally. + fun populationFractionBelowPovertyLineInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (realGrowthRateOfGDP ?AREA ?RATE) + -- means that the annual rate of growth in the Gross Domestic Product (GDP) + -- for the GeopoliticalArea ?AREA is the fraction ?RATE, adjusted for + -- inflation, with GDP calculated on a purchasing power parity basis. + -- See PPPBasedEconomicValuation. + fun realGrowthRateOfGDP : El GeopoliticalArea -> El RealNumber -> Formula ; + + -- (realGrowthRateOfGDPInPeriod ?AREA ?RATE ?PERIOD) means that the + -- annual rate of growth in the Gross Domestic Product (GDP) for the + -- GeopoliticalArea ?AREA is the fraction ?RATE in the period ?PERIOD, + -- adjusted for inflation, with GDP calculated on a purchasing power + -- parity basis. See PPPBasedEconomicValuation. + fun realGrowthRateOfGDPInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (resultType ?PROCESS ?TYPE) means that + -- the Process ?PROCESS produces some result(s) of the type ?TYPE. + fun resultType: El Process -> Desc Object -> Formula ; + + -- (sectorCompositionOfGDP ?AREA ?SECTOR ?FRACTION) means + -- that in the GeopoliticalArea ?AREA, the economic sector ?SECTOR + -- contributes the amount ?FRACTION to the Gross National Product. + fun sectorCompositionOfGDP : El GeopoliticalArea -> El IndustryAttribute -> El RealNumber -> Formula ; + + -- (sectorCompositionOfGDPInPeriod ?AREA ?SECTOR ?FRACTION ?PERIOD) + -- means that in the GeopoliticalArea ?AREA, the economic sector ?SECTOR + -- contributes the amount ?FRACTION to the Gross National Product + -- during the TimeInterval indicated by ?PERIOD. + fun sectorCompositionOfGDPInPeriod: El GeopoliticalArea -> El IndustryAttribute -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (sectorValueOfGDP ?AREA ?SECTOR ?AMOUNT) means that for the + -- GeopoliticalArea ?AREA, the economic sector ?SECTOR contributes + -- ?AMOUNT to the Gross National Product, evaluated in U.S. dollars on + -- a purchasing power parity basis. See PPPBasedEconomicValuation. + fun sectorValueOfGDP : El GeopoliticalArea -> El IndustryAttribute -> El CurrencyMeasure -> Formula ; + + -- (sectorValueOfGDPInPeriod ?AREA ?SECTOR ?AMOUNT ?PERIOD) means that + -- for the GeopoliticalArea ?AREA, the economic sector ?SECTOR contributes + -- ?AMOUNT to the Gross National Product during the TimeInterval indicated + -- by ?PERIOD, evaluated in U.S. dollars on a purchasing power parity basis. + -- See PPPBasedEconomicValuation. + fun sectorValueOfGDPInPeriod: El GeopoliticalArea -> El IndustryAttribute -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (totalGDP ?AREA ?AMOUNT) means that the value + -- of all final goods and services produced within the GeopoliticalArea + -- ?AREA is ?AMOUNT, in U.S. dollars, calculated on a purchasing power parity + -- basis. This represents Gross Domestic Product (GDP). See + -- PPPBasedEconomicValuation. + fun totalGDP : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (totalGDPInPeriod ?AREA ?AMOUNT ?PERIOD) + -- means that the value of all final goods and services produced within + -- the GeopoliticalArea ?AREA is ?AMOUNT in the period indicated by ?PERIOD, + -- measured in U.S. dollars calculated on a purchasing power parity basis. + -- (See PPPBasedEconomicValuation.) This is the Gross Domestic Product for + -- ?AREA for a specified period. + fun totalGDPInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; + + -- (unemploymentRateOfArea ?AREA ?RATE ?PERIOD) means that the + -- unemployment rate in the GeographicalArea ?AREA is ?RATE, + -- during the TimeInterval indicated by ?PERIOD. + fun unemploymentRateOfArea: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; + + -- (unemploymentRateOfAreaInPeriod ?AREA ?RATE ?PERIOD) means that the + -- unemployment rate in the GeographicalArea ?AREA is ?RATE, during the + -- TimeInterval indicated by ?PERIOD. + fun unemploymentRateOfAreaInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; --- (economicAidDonatedInPeriod ?AGENT ?AMOUNT ?PERIOD) means that the --- GeopoliticalArea ?AGENT donated ?AMOUNT of aid (valued in U.S. dollars) --- to developing countries and multilateral organizations during the --- TimeInterval indicated by ?PERIOD. This figure covers 'net official --- development assistance' (ODA), which is net financial assistance from --- nations belonging to the --- OrganizationForEconomicCooperationAndDevelopment (OECD), with the main --- goal of promoting economic development and welfare. Such aid contains a --- grant element of at least 25%. This statistic does not cover private --- flows of assistance or other official flows (OOF). -fun economicAidDonatedInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (economicAidReceivedNet ?AREA ?AMOUNT) means that the --- GeopoliticalArea ?AREA had a net inflow of Official Development Finance --- (ODF) of ?AMOUNT. ODF includes funds from the World Bank, the IMF, other --- international organizations, and individual donor nations, including both --- grants and loans. The figure includes formal commitments of aid not yet --- disbursed. The figure is the net amount of inflow after deducting --- repayments, valued in U.S. dollars. -fun economicAidReceivedNet : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; - - --- (economicAidReceivedNetInPeriod ?AREA ?AMOUNT ?PERIOD) means that the --- GeopoliticalArea ?AREA had a net inflow of Official Development Finance --- (ODF) of ?AMOUNT during the TimeInterval indicated by ?PERIOD. ODF --- includes funds from the World Bank, the IMF, other international --- organizations, and individual donor nations, including both grants and --- loans. The figure includes formal commitments of aid not yet disbursed. --- The figure is the net amount of inflow after deducting repayments, --- valued in U.S. dollars. -fun economicAidReceivedNetInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (economyType ?POLITY ?TYPE) means that the --- GeopoliticalArea ?POLITY has an economic system of TYPE. -fun economyType : El Agent -> El EconomicAttribute -> Formula ; - - --- (electricityConsumptionInPeriod ?AREA ?AMOUNT ?YEAR) means that --- the GeopoliticalArea ?AREA used ?AMOUNT of electricity (measured in --- KilowattHours) during the TimeInterval indicated by ?YEAR. -fun electricityConsumptionInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; - - --- (electricityExportInPeriod ?AREA ?AMOUNT ?PERIOD) means that --- the GeopoliticalArea ?AREA exported the total ?AMOUNT of electricity --- (measured in KilowattHours) during the TimeInterval indicated --- by ?PERIOD. -fun electricityExportInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; - - --- (electricityFractionFromSource ?AREA ?SOURCE ?FRACTION) means that in --- the GeopoliticalArea ?AREA, ?SOURCE provides ?FRACTION of the total --- electricity production. -fun electricityFractionFromSource: El GeopoliticalArea -> Desc PowerGeneration -> El RealNumber -> Formula ; - - --- (electricityFractionFromSourceInPeriod ?AREA ?SOURCE ?FRACTION ?PERIOD) --- means that in the GeopoliticalArea ?AREA, ?SOURCE provides ?FRACTION --- of the total electricity production during the TimeInterval indicated --- by ?PERIOD. -fun electricityFractionFromSourceInPeriod: El GeopoliticalArea -> Desc PowerGeneration -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (electricityImportInPeriod ?AREA ?AMOUNT ?PERIOD) means that --- the GeopoliticalArea ?AREA imported the total ?AMOUNT of electricity --- (measured in KilowattHours) during the TimeInterval indicated --- by ?PERIOD. -fun electricityImportInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; - - --- (electricityProductionInPeriod ?AREA ?AMOUNT ?PERIOD) means that the --- GeopoliticalArea ?AREA generates ?AMOUNT of electricity, measured in --- KilowattHours, during the TimeInterval indicated by ?PERIOD. -fun electricityProductionInPeriod: El GeopoliticalArea -> El PhysicalQuantity -> Desc TimeInterval -> Formula ; - - --- (exportCommodityType ?AREA ?TYPE) means that the GeopoliticalArea --- ?AREA exports the commodity ?TYPE. -fun exportCommodityType: El GeopoliticalArea -> Desc Object -> Formula ; - - --- (exportCommodityTypeByRank ?AREA ?TYPE ?NTH) means that the --- GeopoliticalArea ?AREA has the commodity ?TYPE as its ?NTH --- most valuable export. -fun exportCommodityTypeByRank: El GeopoliticalArea -> Desc Object -> El PositiveInteger -> Formula ; - - --- (exportPartner ?AGENT1 ?AGENT2) --- means that the Agent ?AGENT1 exports goods to the Agent --- ?AGENT2. -fun exportPartner : El Agent -> El Agent -> Formula ; - - --- (exportPartnerByFraction ?AREA1 ?AREA2 ?FRACTION) means that --- the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea --- ?AREA2 and receives ?FRACTION of the exportTotalInPeriod of ?AREA1, --- based on U.S. dollar value of exports. -fun exportPartnerByFraction : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Formula ; - - --- (exportPartnerByFractionInPeriod ?AREA1 ?AREA2 ?FRACTION ?PERIOD) means --- that the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea --- ?AREA2 and receives ?FRACTION of the exportTotalInPeriod of ?AREA1 --- in the TimeInterval ?PERIOD, based on U.S. dollar value of exports. -fun exportPartnerByFractionInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Desc TimeInterval -> Formula ; - - --- (exportPartnerByRank ?AREA1 ?AREA2 ?NTH) means that --- the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea --- ?AREA2 and is the ?NTH most important export partner of ?AREA1, --- based on U.S. dollar value of exports. -fun exportPartnerByRank : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Formula ; - - --- (exportPartnerByRankInPeriod ?AREA1 ?AREA2 ?NTH ?PERIOD) means that --- the GeopoliticalArea ?AREA1 exports goods to GeopoliticalArea --- ?AREA2 and is the ?NTH most important export partner of ?AREA1, --- in the TimeInterval ?PERIOD, based on U.S. dollar value of exports. -fun exportPartnerByRankInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Desc TimeInterval -> Formula ; - - --- (exportPartnerInPeriod ?AGENT1 ?AGENT2 ?PERIOD) means that the Agent --- ?AGENT1 exports goods to the Agent ?AGENT2 during the TimeInterval --- indicated by ?PERIOD. -fun exportPartnerInPeriod: El Agent -> El Agent -> Desc TimeInterval -> Formula ; - - --- (exportTotalInPeriod ?AREA ?AMOUNT ?PERIOD) means that the --- total value of exports from the GeopoliticalArea ?AREA is ?AMOUNT --- (in UnitedStatesDollars) for the TimeInterval indicated by ?PERIOD. --- Export value is calculated on a Free on Board (F.O.B.) basis. -fun exportTotalInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (externalDebt ?COUNTRY ?AMOUNT) means --- that the GeopoliticalArea ?COUNTRY owes the total sum ?AMOUNT of debt --- (public and private) to nonresidents. The amount is valued in U.S. --- dollars but may be repayable in foreign currency, goods, or services. -fun externalDebt : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; - - --- (externalDebtInPeriod ?COUNTRY ?AMOUNT ?PERIOD) means that the --- GeopoliticalArea ?COUNTRY owes the total sum ?AMOUNT of debt (public --- and private) to nonresidents during the TimeInterval indicated by --- ?PERIOD. The amount is valued in U.S. dollars but may be repayable in --- foreign currency, goods, or services. -fun externalDebtInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- The predicate fiscalYearPeriod --- indicates the period that an Agent or Organization uses as its --- 12_month accounting period. (fiscalYearPeriod ?AGENT Year) means --- that ?AGENT observes its 12_month accounting period during the --- regular calendar year (CY), from January to December. For --- fiscal years with other beginning and ending months (FYs), use --- (fiscalYearPeriod ?AGENT (RecurrentTimeIntervalFn ?STARTMONTH ?ENDMONTH)). --- For example, (fiscalYearPeriod (GovernmentFn UnitedStates) --- (RecurrentTimeIntervalFn October September)). For FYs that begin --- or end mid_month, days may be specified within RecurrentTimeIntervalFn. -fun fiscalYearPeriod: El Agent -> Desc TimeInterval -> Formula ; - - --- (highestDecileShareOfHouseholdIncome ?AREA ?FRACTION) means that --- in the GeopoliticalArea ?AREA, the highest decile (90_100%) of --- households with respect to household income (or consumption) had --- ?FRACTION amount of the total household income (or consumption). --- Data from different countries may not be directly comparable due to --- variation in the basis of the data (e.g., based on income versus --- based on consumption). -fun highestDecileShareOfHouseholdIncome : El GeopoliticalArea -> El RealNumber -> Formula ; - - --- (highestDecileShareOfHouseholdIncomeInPeriod ?AREA ?FRACTION ?PERIOD) --- means that in the GeopoliticalArea ?AREA, the highest decile (90_100%) --- of households with respect to household income (or consumption) had --- ?FRACTION amount of the total household income (or consumption), during --- the TimeInterval indicated by ?PERIOD. Data from different countries --- may not be directly comparable due to variation in the basis of the data --- (e.g., based on household income versus based on household consumption). -fun highestDecileShareOfHouseholdIncomeInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (importCommodityType ?AREA ?TYPE) means that the GeopoliticalArea --- ?AREA imports the commodity ?TYPE. -fun importCommodityType: El GeopoliticalArea -> Desc Object -> Formula ; - - --- (importCommodityTypeByRank ?AREA ?TYPE ?NTH) means that the --- GeopoliticalArea ?AREA has the commodity ?TYPE as its ?NTH --- most valuable import. -fun importCommodityTypeByRank: El GeopoliticalArea -> Desc Object -> El PositiveInteger -> Formula ; - - --- (importPartner ?AGENT1 ?AGENT2) means --- that the Agent ?AGENT1 imports goods from the Agent ?AGENT2. -fun importPartner : El Agent -> El Agent -> Formula ; - - --- (importPartnerByFraction ?AREA1 ?AREA2 ?FRACTION) means that --- the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea --- ?AREA2 and provides ?FRACTION of the importTotalInPeriod of ?AREA1, --- based on U.S. dollar value of imports. -fun importPartnerByFraction : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Formula ; - - --- (importPartnerByFractionInPeriod ?AREA1 ?AREA2 ?FRACTION ?PERIOD) means --- that the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea --- ?AREA2 and provides ?FRACTION of the importTotalInPeriod of ?AREA1 --- during the TimeInterval ?PERIOD, in U.S. dollar value of imports. -fun importPartnerByFractionInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveRealNumber -> Desc TimeInterval -> Formula ; - - --- (importPartnerByRank ?AREA1 ?AREA2 ?NTH) means that --- the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea --- ?AREA2 is the ?NTH most important import partner of ?AREA1, based on --- U.S. dollar value of imports. -fun importPartnerByRank : El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Formula ; - - --- (importPartnerByRankInPeriod ?AREA1 ?AREA2 ?NTH ?PERIOD) means that --- the GeopoliticalArea ?AREA1 imports goods from GeopoliticalArea --- ?AREA2 is the ?NTH most important import partner of ?AREA1 during --- the TimeInterval ?PERIOD, based on U.S. dollar value of imports. -fun importPartnerByRankInPeriod: El GeopoliticalArea -> El GeopoliticalArea -> El PositiveInteger -> Desc TimeInterval -> Formula ; - - --- (importPartnerInPeriod ?AGENT1 ?AGENT2 ?PERIOD) means that the Agent --- ?AGENT1 imports goods from the Agent ?AGENT2 during the TimeInterval --- indicated by ?PERIOD. -fun importPartnerInPeriod: El Agent -> El Agent -> Desc TimeInterval -> Formula ; - - --- (importTotalInPeriod ?AREA ?AMOUNT ?PERIOD) means that the --- total value of imports to the GeopoliticalArea ?AREA is ?AMOUNT --- (in UnitedStatesDollars) for the TimeInterval indicated by ?PERIOD. --- Import value is calculated on a Cost, Insurance, and Freight (C.I.F.) --- or a Free on Board (F.O.B.) basis. -fun importTotalInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (incomeDistributionByGiniIndex ?AREA ?INDEX) means that in the --- GeopoliticalArea ?AREA, the distribution of family income is ?INDEX, --- as measured by the Gini index for family income distribution. -fun incomeDistributionByGiniIndex : El GeopoliticalArea -> El NonnegativeRealNumber -> Formula ; - - --- (incomeDistributionByGiniIndexInPeriod ?AREA ?INDEX ?PERIOD) means that --- in the GeopoliticalArea ?AREA, the distribution of family income is --- ?INDEX, as measured by the Gini index, during the TimeInterval indicated --- by ?PERIOD. -fun incomeDistributionByGiniIndexInPeriod: El GeopoliticalArea -> El NonnegativeRealNumber -> Desc TimeInterval -> Formula ; - - --- (industrialProductionGrowthRate ?AREA ?RATE) means that in --- the GeopoliticalArea ?AREA, the annual percentage increase in --- industrial production is ?RATE. -fun industrialProductionGrowthRate : El GeopoliticalArea -> El RealNumber -> Formula ; - - --- (industrialProductionGrowthRateInPeriod ?AREA ?RATE ?PERIOD) means --- that in the GeopoliticalArea ?AREA, the annual percentage increase in --- industrial production is ?RATE, for the TimeInterval ?PERIOD. -fun industrialProductionGrowthRateInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (industryOfArea ?AREA ?SECTOR) --- means that the GeopoliticalArea ?AREA produces goods or services --- in the economic area ?SECTOR. -fun industryOfArea : El GeopoliticalArea -> El IndustryAttribute -> Formula ; - - --- (industryProductType ?INDUSTRY ?TYPE) means that organizations with --- the IndustryAttribute ?INDUSTRY produce products of the kind ?TYPE. -fun industryProductType: El IndustryAttribute -> Desc Object -> Formula ; - - --- (industryRankByOutput ?AREA ?SECTOR ?NTH) means that in the --- GeopoliticalArea ?AREA, the economic area ?SECTOR is ?NTH with --- respect to the value of its annual output. -fun industryRankByOutput : El GeopoliticalArea -> El IndustryAttribute -> El PositiveInteger -> Formula ; - - --- (industryServiceType ?INDUSTRY ?TYPE) means that organizations with --- the IndustryAttribute ?INDUSTRY provide services of the kind ?TYPE. -fun industryServiceType: El IndustryAttribute -> Desc IntentionalProcess -> Formula ; - - --- (inflationRateOfConsumerPrices ?AREA ?FRACTION) means that in the --- GeopoliticalArea ?AREA, the annual change in consumer prices was --- ?FRACTION, compared with prices from the previous year. -fun inflationRateOfConsumerPrices : El GeopoliticalArea -> El RealNumber -> Formula ; - - --- (inflationRateOfConsumerPricesInPeriod ?AREA ?FRACTION ?PERIOD) means --- that in the GeopoliticalArea ?AREA, the annual change in consumer --- prices was ?FRACTION, for the TimeInterval indicated by ?PERIOD, --- compared with prices from the prior period. -fun inflationRateOfConsumerPricesInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (laborForceFractionByOccupation ?AREA ?SECTOR ?FRACTION) --- means that in the GeopoliticalArea ?AREA, workers in the job area --- ?SECTOR make up ?FRACTION of the labor force. The unemployed are not --- included in these figures. Occupation may be indicated by an --- OccupationalRole or an IndustryAttribute. -fun laborForceFractionByOccupation : El GeopoliticalArea -> El Attribute -> El RealNumber -> Formula ; - - --- (laborForceFractionByOccupationInPeriod ?AREA ?SECTOR ?FRACTION ?PERIOD) --- means that in the GeopoliticalArea ?AREA, workers in the job area --- ?SECTOR make up ?FRACTION of the labor force, during the TimeInterval --- indicated by ?PERIOD. The unemployed are not included in these figures. --- Occupation may be indicated by an OccupationalRole or an --- IndustryAttribute. -fun laborForceFractionByOccupationInPeriod: El GeopoliticalArea -> El Attribute -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (laborForceTotal ?AREA ?AMOUNT) means that the total labor --- force of the GeopoliticalArea ?AREA is ?AMOUNT. This includes --- unemployed workers. -fun laborForceTotal : El GeopoliticalArea -> El NonnegativeRealNumber -> Formula ; - - --- (laborForceTotalInPeriod ?AREA ?AMOUNT ?PERIOD) means that the total --- labor force of the GeopoliticalArea ?AREA is ?AMOUNT during the --- TimeInterval indicated by ?PERIOD. This includes unemployed workers. -fun laborForceTotalInPeriod: El GeopoliticalArea -> El NonnegativeRealNumber -> Desc TimeInterval -> Formula ; - - --- (lowestDecileShareOfHouseholdIncome ?AREA ?FRACTION) means that --- in the GeopoliticalArea ?AREA, the lowest decile (0_10%) of --- households with respect to household income (or consumption) had --- ?FRACTION amount of the total household income (or consumption). --- Data from different countries may not be directly comparable due to --- variation in the basis of the data (e.g., based on income versus based --- on consumption). -fun lowestDecileShareOfHouseholdIncome : El GeopoliticalArea -> El RealNumber -> Formula ; - - --- (lowestDecileShareOfHouseholdIncomeInPeriod ?AREA ?FRACTION ?PERIOD) --- means that in the GeopoliticalArea ?AREA, the lowest decile (0_10%) --- of households with respect to household income (or consumption) had --- ?FRACTION amount of the total household income (or consumption), during --- the TimeInterval indicated by ?PERIOD. Data from different countries --- may not be directly comparable due to variation in the basis of the data --- (e.g., based on household income versus based on household consumption). -fun lowestDecileShareOfHouseholdIncomeInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (organizationProductType ?BUSINESS ?TYPE) means that the Organization --- ?BUSINESS produces products of the kind ?TYPE. -fun organizationProductType: El Organization -> Desc Object -> Formula ; - - --- (organizationServiceType ?BUSINESS ?TYPE) means that the Organization --- ?BUSINESS provides services of the kind ?TYPE. -fun organizationServiceType: El Organization -> Desc IntentionalProcess -> Formula ; - - --- (perCapitaGDP ?AREA ?AMOUNT) means --- that the Gross Domestic Product, on a per capita basis, for the --- GeopoliticalArea ?AREA is ?AMOUNT, calculated in U.S. dollars on a --- purchasing power parity basis. See PPPBasedEconomicValuation. -fun perCapitaGDP : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; - - --- (perCapitaGDPInPeriod ?AREA ?AMOUNT ?PERIOD) means that the Gross --- Domestic Product, on a per capita basis, for the GeopoliticalArea --- ?AREA is ?AMOUNT during the period indicated by ?PERIOD, calculated in --- U.S. dollars on a purchasing power parity basis. See --- PPPBasedEconomicValuation. -fun perCapitaGDPInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (populationFractionBelowPovertyLine ?AREA ?FRACTION) means that in --- the GeopoliticalArea ?AREA, the segment of the population living --- below the (locally defined) poverty line is ?FRACTION. Note that the --- definition of the poverty line varies internationally. -fun populationFractionBelowPovertyLine : El GeopoliticalArea -> El RealNumber -> Formula ; - - --- (populationFractionBelowPovertyLineInPeriod ?AREA ?FRACTION ?PERIOD) --- means that in the GeopoliticalArea ?AREA, the segment of the population --- living below the (locally defined) poverty line is ?FRACTION during the --- TimeInterval indicated by ?PERIOD. Note that the definition of the --- poverty line varies internationally. -fun populationFractionBelowPovertyLineInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (realGrowthRateOfGDP ?AREA ?RATE) --- means that the annual rate of growth in the Gross Domestic Product (GDP) --- for the GeopoliticalArea ?AREA is the fraction ?RATE, adjusted for --- inflation, with GDP calculated on a purchasing power parity basis. --- See PPPBasedEconomicValuation. -fun realGrowthRateOfGDP : El GeopoliticalArea -> El RealNumber -> Formula ; - - --- (realGrowthRateOfGDPInPeriod ?AREA ?RATE ?PERIOD) means that the --- annual rate of growth in the Gross Domestic Product (GDP) for the --- GeopoliticalArea ?AREA is the fraction ?RATE in the period ?PERIOD, --- adjusted for inflation, with GDP calculated on a purchasing power --- parity basis. See PPPBasedEconomicValuation. -fun realGrowthRateOfGDPInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (resultType ?PROCESS ?TYPE) means that --- the Process ?PROCESS produces some result(s) of the type ?TYPE. -fun resultType: El Process -> Desc Object -> Formula ; - - --- (sectorCompositionOfGDP ?AREA ?SECTOR ?FRACTION) means --- that in the GeopoliticalArea ?AREA, the economic sector ?SECTOR --- contributes the amount ?FRACTION to the Gross National Product. -fun sectorCompositionOfGDP : El GeopoliticalArea -> El IndustryAttribute -> El RealNumber -> Formula ; - - --- (sectorCompositionOfGDPInPeriod ?AREA ?SECTOR ?FRACTION ?PERIOD) --- means that in the GeopoliticalArea ?AREA, the economic sector ?SECTOR --- contributes the amount ?FRACTION to the Gross National Product --- during the TimeInterval indicated by ?PERIOD. -fun sectorCompositionOfGDPInPeriod: El GeopoliticalArea -> El IndustryAttribute -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (sectorValueOfGDP ?AREA ?SECTOR ?AMOUNT) means that for the --- GeopoliticalArea ?AREA, the economic sector ?SECTOR contributes --- ?AMOUNT to the Gross National Product, evaluated in U.S. dollars on --- a purchasing power parity basis. See PPPBasedEconomicValuation. -fun sectorValueOfGDP : El GeopoliticalArea -> El IndustryAttribute -> El CurrencyMeasure -> Formula ; - - --- (sectorValueOfGDPInPeriod ?AREA ?SECTOR ?AMOUNT ?PERIOD) means that --- for the GeopoliticalArea ?AREA, the economic sector ?SECTOR contributes --- ?AMOUNT to the Gross National Product during the TimeInterval indicated --- by ?PERIOD, evaluated in U.S. dollars on a purchasing power parity basis. --- See PPPBasedEconomicValuation. -fun sectorValueOfGDPInPeriod: El GeopoliticalArea -> El IndustryAttribute -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (totalGDP ?AREA ?AMOUNT) means that the value --- of all final goods and services produced within the GeopoliticalArea --- ?AREA is ?AMOUNT, in U.S. dollars, calculated on a purchasing power parity --- basis. This represents Gross Domestic Product (GDP). See --- PPPBasedEconomicValuation. -fun totalGDP : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; - - --- (totalGDPInPeriod ?AREA ?AMOUNT ?PERIOD) --- means that the value of all final goods and services produced within --- the GeopoliticalArea ?AREA is ?AMOUNT in the period indicated by ?PERIOD, --- measured in U.S. dollars calculated on a purchasing power parity basis. --- (See PPPBasedEconomicValuation.) This is the Gross Domestic Product for --- ?AREA for a specified period. -fun totalGDPInPeriod: El GeopoliticalArea -> El CurrencyMeasure -> Desc TimeInterval -> Formula ; - - --- (unemploymentRateOfArea ?AREA ?RATE ?PERIOD) means that the --- unemployment rate in the GeographicalArea ?AREA is ?RATE, --- during the TimeInterval indicated by ?PERIOD. -fun unemploymentRateOfArea: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; - - --- (unemploymentRateOfAreaInPeriod ?AREA ?RATE ?PERIOD) means that the --- unemployment rate in the GeographicalArea ?AREA is ?RATE, during the --- TimeInterval indicated by ?PERIOD. -fun unemploymentRateOfAreaInPeriod: El GeopoliticalArea -> El RealNumber -> Desc TimeInterval -> Formula ; } diff --git a/examples/SUMO/EconomyEng.gf b/examples/SUMO/EconomyEng.gf new file mode 100644 index 000000000..87cf57984 --- /dev/null +++ b/examples/SUMO/EconomyEng.gf @@ -0,0 +1,13 @@ +concrete EconomyEng of Economy = MidLevelOntologyEng ** open DictLangEng, DictEng, ParadigmsEng in { + +lin + Apple = UseN apple_N ; + Avocado = UseN avocado_N ; + Coconut = UseN coconut_N ; + DateFruit = ApposCN (UseN date_N) (MassNP (UseN fruit_N)) ; + Fodder = UseN fodder_N ; + Hay = UseN hay_N ; + Opium = UseN opium_N ; + Pea = UseN pea_N ; + +} diff --git a/examples/SUMO/Elements.gf b/examples/SUMO/Elements.gf new file mode 100644 index 000000000..0a1131c2d --- /dev/null +++ b/examples/SUMO/Elements.gf @@ -0,0 +1,929 @@ +abstract Elements = Merge ** { + + -- Silvery radioactive metallic element, belongs to + -- group 3 of the periodic table. The most stable isotope, Ac_227, has a + -- half_life of 217 years. Ac_228 (half_life of 6.13 hours) also occurs in + -- nature. There are 22 other artificial isotopes, all radioactive and + -- having very short half_lives. Chemistry similar to lanthanum. Used as a + -- source of alpha particles. Discovered by A. Debierne in 1899. + fun Actinium : Class ; + fun Actinium_Class : SubClass Actinium ElementalSubstance ; + + -- Silvery_white lustrous metallic element of group + -- 3 of the periodic table. Highly reactive but protected by a thin + -- transparent layer of the oxide which quickly forms in air. There are many + -- alloys of aluminum, as well as a good number of industrial uses. Makes up + -- 8.1 percent of the Earth's crust, by weight. Isolated in 1825 by H.C. + -- Oersted. + fun Aluminum : Class ; + fun Aluminum_Class : SubClass Aluminum ElementalSubstance ; + + -- Radioactive metallic transuranic element, + -- belongs to the actinoids. Ten known isotopes. Am_243 is the most stable + -- isotope, with a half_life of 7.95*10^3 years. Discovered by Glenn T. + -- Seaborg and associates in 1945, it was obtained by bombarding + -- {uranium}_238 with alpha particles. + fun Americium : Class ; + fun Americium_Class : SubClass Americium ElementalSubstance ; + + -- Element of group 15. Multiple allotropic forms. + -- The stable form of antimony is a blue_white metal. Yellow and black + -- antimony are unstable non_metals. Used in flame_proofing, paints, + -- ceramics, enamels, and rubber. Attacked by oxidizing acids and halogens. + -- First reported by Tholden in 1450. + fun Antimony : Class ; + fun Antimony_Class : SubClass Antimony ElementalSubstance ; + + -- Monatomic noble gas. Makes up 0.93 percent of the + -- air. Colourless, odorless. Is inert and has no true compounds. Lord + -- Rayleigh and Sir william Ramsey identified argon in 1894. + fun Argon : Class ; + fun Argon_Class : SubClass Argon ElementalSubstance ; + + -- Metalloid element of group 15. There are three + -- allotropes, yellow, black, and grey. Reacts with halogens, concentrated + -- oxidizing acids and hot alkalis. Albertus Magnus is believed to have been + -- the first to isolate the element in 1250. + fun Arsenic : Class ; + fun Arsenic_Class : SubClass Arsenic ElementalSubstance ; + + -- Radioactive halogen element. Occurs naturally + -- from uranium and thorium decay. At least 20 known isotopes. At_210, the + -- most stable, has a half_life of 8.3 hours. Synthesized by nuclear + -- bombardment in 1940 by D.R. Corson, K.R. MacKenzie and E. Segre at the + -- University of California. + fun Astatine : Class ; + fun Astatine_Class : SubClass Astatine ElementalSubstance ; + + -- Silvery_white reactive element, belonging to group + -- 2 of the periodic table. Soluble barium compounds are extremely + -- poisonous. Identified in 1774 by Karl Scheele and extracted in 1808 by + -- Humphry Davy. + fun Barium : Class ; + fun Barium_Class : SubClass Barium ElementalSubstance ; + + -- Radioactive metallic transuranic element. + -- Belongs to actinoid series. Eight known isotopes, the most common Bk_247, + -- has a half_life of 1.4*10^3 years. First produced by Glenn T. Seaborg + -- and associates in 1949 by bombarding americium_241 with alpha + -- particles. + fun Berkelium : Class ; + fun Berkelium_Class : SubClass Berkelium ElementalSubstance ; + + -- Grey metallic element of group 2 of the periodic + -- table. Is toxic and can cause severe lung diseases and dermatitis. Shows + -- high covalent character. It was isolated independently by F. Wohler and + -- A.A. Bussy in 1828. + fun Beryllium : Class ; + fun Beryllium_Class : SubClass Beryllium ElementalSubstance ; + + -- White crystalline metal with a pink tinge, belongs + -- to group 15. Most diamagnetic of all metals and has the lowest thermal + -- conductivity of all the elements except mercury. Lead_free bismuth + -- compounds are used in cosmetics and medical procedures. Burns in the air + -- and produces a blue flame. In 1753, C.G. Junine first demonstrated that + -- it was different from lead. + fun Bismuth : Class ; + fun Bismuth_Class : SubClass Bismuth ElementalSubstance ; + + -- An element of group 13 of the periodic table. There + -- are two allotropes, amorphous boron is a brown power, but metallic boron + -- is black. The metallic form is hard (9.3 on Mohs' scale) and a bad + -- conductor in room temperatures. It is never found free in nature. + -- Boron_10 is used in nuclear reactor control rods and shields. It was + -- discovered in 1808 by Sir Humphry Davy and by J.L. Gay_Lussac and L.J. + -- Thenard. + fun Boron : Class ; + fun Boron_Class : SubClass Boron ElementalSubstance ; + + -- Halogen element. Red volatile liquid at room + -- temperature. Its reactivity is somewhere between chlorine and iodine. + -- Harmful to human tissue in a liquid state, the vapour irritates eyes and + -- throat. Discovered in 1826 by Antoine Balard. + fun Bromine : Class ; + fun Bromine_Class : SubClass Bromine ElementalSubstance ; + + -- Soft bluish metal belonging to group 12 of the + -- periodic table. Extremely toxic even in low concentrations. Chemically + -- similar to zinc, but lends itself to more complex compounds. Discovered + -- in 1817 by F. Stromeyer. + fun Cadmium : Class ; + fun Cadmium_Class : SubClass Cadmium ElementalSubstance ; + + -- Soft silvery_white metallic element belonging to + -- group 1 of the periodic table. One of the three metals which are liquid + -- at room temperature. Cs_133 is the natural, and only stable, isotope. + -- Fifteen other radioisotopes exist. Caesium reacts explosively with cold + -- water, and ice at temperatures above 157K. Caesium hydroxide is the + -- strongest base known. Caesium is the most electropositive, most alkaline + -- and has the least ionization potential of all the elements. Known uses + -- include the basis of atomic clocks, catalyst for the hydrogenation of some + -- organic compounds, and in photoelectric cells. Caesium was discovered by + -- Gustav Kirchoff and Robert Bunsen in Germany in 1860 spectroscopically. + -- Its identification was based upon the bright blue lines in its spectrum. + -- The name comes from the latin word caesius, which means sky blue. Caesium + -- should be considered highly toxic. Some of the radioisotopes are even + -- more toxic. + fun Caesium : Class ; + fun Caesium_Class : SubClass Caesium ElementalSubstance ; + + -- Soft grey metallic element belonging to group 2 of + -- the periodic table. Used a reducing agent in the extraction of thorium, + -- zirconium and uranium. Essential element for living organisms. + fun Calcium : Class ; + fun Calcium_Class : SubClass Calcium ElementalSubstance ; + + -- Radioactive metallic transuranic element. + -- Belongs to actinoid series. Cf_251 has a half life of about 700 years. + -- Nine isotopes are known. Cf_252 is an intense {neutron} source, which + -- makes it an intense {neutron} source and gives it a use in {neutron} + -- activation analysis and a possible use as a radiation source in medicine. + -- First produced by Glenn T. Seaborg and associates in 1950. + fun Californium : Class ; + fun Californium_Class : SubClass Californium ElementalSubstance ; + + -- Carbon is a member of group 14 of the periodic + -- table. It has three allotropic forms of it, diamonds, graphite and + -- fullerite. Carbon_14 is commonly used in radioactive dating. Carbon + -- occurs in all organic life and is the basis of organic chemistry. Carbon + -- has the interesting chemical property of being able to bond with itself, + -- and a wide variety of other elements. + fun Carbon : Class ; + fun Carbon_Class : SubClass Carbon ElementalSubstance ; + + -- Silvery metallic element, belongs to the + -- lanthanoids. Four natural isotopes exist, and fifteen radioactive + -- isotopes have been identified. Used in some rare_earth alloys. The + -- oxidized form is used in the glass industry. Discovered by Martin .H. + -- Klaproth in 1803. + fun Cerium : Class ; + fun Cerium_Class : SubClass Cerium ElementalSubstance ; + + -- Halogen element. Poisonous greenish_yellow gas. + -- Occurs widely in nature as sodium chloride in seawater. Reacts directly + -- with many elements and compounds, strong oxidizing agent. Discovered by + -- Karl Scheele in 1774. Humphrey David confirmed it as an element in + -- 1810. + fun Chlorine : Class ; + fun Chlorine_Class : SubClass Chlorine ElementalSubstance ; + + -- Hard silvery transition element. Used in + -- decorative electroplating. Discovered in 1797 by Vauquelin. + fun Chromium : Class ; + fun Chromium_Class : SubClass Chromium ElementalSubstance ; + + -- Light grey transition element. Some meteorites + -- contain small amounts of metallic cobalt. Generally alloyed for use. + -- Mammals require small amounts of cobalt salts. Cobalt_60, an artificially + -- produced radioactive isotope of Cobalt is an important radioactive tracer + -- and cancer_treatment agent. Discovered by G. Brandt in 1737. + fun Cobalt : Class ; + fun Cobalt_Class : SubClass Cobalt ElementalSubstance ; + + -- Red_brown transition element. Known by the Romans + -- as 'cuprum.' Extracted and used for thousands of years. Malleable, + -- ductile and an excellent conductor of heat and electricity. When in moist + -- conditions, a greenish layer forms on the outside. + fun Copper : Class ; + fun Copper_Class : SubClass Copper ElementalSubstance ; + + -- Radioactive metallic transuranic element. Belongs + -- to actinoid series. Nine known isotopes, Cm_247 has a half_life of + -- 1.64*10^7 years. First identified by Glenn T. Seaborg and associates in + -- 1944, first produced by L.B. Werner and I. Perlman in 1947 by bombarding + -- americium_241 with {neutron}s. Named for Marie Curie. + fun Curium : Class ; + fun Curium_Class : SubClass Curium ElementalSubstance ; + + -- Metallic with a bright silvery_white lustre. + -- Dysprosium belongs to the lanthanoids. It is relatively stable in air at + -- room temperatures, it will however dissolve in mineral acids, evolving + -- hydrogen. It is found in from rare_earth minerals. There are seven + -- natural isotopes of dysprosium, and eight radioisotopes, Dy_154 being the + -- most stable with a half_life of 3*10^6 years. Dysprosium is used as a + -- neutron absorber in nuclear fission reactions, and in compact disks. It + -- was discovered by Paul Emile Lecoq de Boisbaudran in 1886 in France. Its + -- name comes from the Greek word dysprositos, which means hard to obtain. + fun Dysprosium : Class ; + fun Dysprosium_Class : SubClass Dysprosium ElementalSubstance ; + + -- Appearance is unknown, however it is most + -- probably metallic and silver or gray in color. Radioactive metallic + -- transuranic element belonging to the actinoids. Es_254 has the longest + -- half_life of the eleven known isotopes at 270 days. First identified by + -- Albert Ghiorso and associates in the debris of the 1952 hydrogen bomb + -- explosion. In 1961 the first microgram quantities of Es_232 were + -- separated. While einsteinium never exists naturally, if a sufficient + -- amount was assembled, it would pose a radiation hazard. + fun Einsteinium : Class ; + fun Einsteinium_Class : SubClass Einsteinium ElementalSubstance ; + + -- Soft silvery metallic element which belongs to the + -- lanthanoids. Six natural isotopes that are stable. Twelve artificial + -- isotopes are known. Used in nuclear technology as a neutron absorber. It + -- is being investigated for other possible uses. Discovered by Carl G. + -- Mosander in 1843. + fun Erbium : Class ; + fun Erbium_Class : SubClass Erbium ElementalSubstance ; + + -- Soft silvery metallic element belonging to the + -- lanthanoids. Eu_151 and Eu_153 are the only two stable isotopes, both of + -- which are {neutron} absorbers. Discovered in 1889 by Sir William + -- Crookes. + fun Europium : Class ; + fun Europium_Class : SubClass Europium ElementalSubstance ; + + -- Radioactive metallic transuranic element, belongs + -- to the actinoids. Ten known isotopes, most stable is Fm_257 with a + -- half_life of 10 days. First identified by Albert Ghiorso and associates + -- in the debris of the first hydrogen_bomb explosion in 1952. + fun Fermium : Class ; + fun Fermium_Class : SubClass Fermium ElementalSubstance ; + + -- A poisonous pale yellow gaseous element belonging + -- to group 17 of the periodic table (The halogens). It is the most + -- chemically reactive and electronegative element. It is highly dangerous, + -- causing severe chemical burns on contact with flesh. Fluorine was + -- identified by Scheele in 1771 and first isolated by Moissan in 1886. + fun Fluorine : Class ; + fun Fluorine_Class : SubClass Fluorine ElementalSubstance ; + + -- Radioactive element, belongs to group 1 of the + -- periodic table. Found in uranium and thorium ores. The 22 known isotopes + -- are all radioactive, with the most stable being Fr_223. Its existence was + -- confirmed in 1939 by Marguerite Perey. + fun Francium : Class ; + fun Francium_Class : SubClass Francium ElementalSubstance ; + + -- Soft silvery metallic element belonging to the + -- lanthanoids. Seven natural, stable isotopes are known in addition to + -- eleven artificial isotopes. Gd_155 and Gd_157 and the best neutron + -- absorbers of all elements. Gadolinium compounds are used in electronics. + -- Discovered by J.C.G Marignac in 1880. + fun Gadolinium : Class ; + fun Gadolinium_Class : SubClass Gadolinium ElementalSubstance ; + + -- Soft silvery metallic element, belongs to group 13 + -- of the periodic table. The two stable isotopes are Ga_69 and Ga_71. + -- Eight radioactive isotopes are known, all having short half_lives. + -- Gallium Arsenide is used as a semiconductor. Corrodes most other metals + -- by diffusing into their lattice. First identified by Francois Lecoq de + -- Boisbaudran in 1875. + fun Gallium : Class ; + fun Gallium_Class : SubClass Gallium ElementalSubstance ; + + -- Lustrous hard metalloid element, belongs to + -- group 14 of the periodic table. Forms a large number of organometallic + -- compounds. Predicted by Mendeleev in 1871, it was actually found in 1886 + -- by Winkler. + fun Germanium : Class ; + fun Germanium_Class : SubClass Germanium ElementalSubstance ; + + -- Gold is gold colored. It is the most malleable and + -- ductile metal known. There is only one stable isotope of gold, and five + -- radioisotopes of gold, Au_195 being the most stable with a half_life of + -- 186 days. Gold is used as a monetary standard, in jewelry, dentistry, + -- electronics. Au_198 is used in treating cancer and some other medical + -- conditions. Gold has been known to exist as far back as 2600 BC. Gold + -- comes from the Anglo_Saxon word gold. Its symbol, Au, comes from the + -- Latin word aurum, which means gold. Gold is not particularly toxic, + -- however it is known to cause damage to the liver and kidneys in some. + fun Gold : Class ; + fun Gold_Class : SubClass Gold ElementalSubstance ; + + -- Silvery lustrous metallic transition element. + -- Used in tungsten alloys in filaments and electrodes, also acts as a + -- neutron absorber. First reported by Urbain in 1911, existence was finally + -- established in 1923 by D. Coster, G.C. de Hevesy in 1923. + fun Hafnium : Class ; + fun Hafnium_Class : SubClass Hafnium ElementalSubstance ; + + -- Colourless, odourless gaseous nonmetallic element. + -- Belongs to group 18 of the periodic table. Lowest boiling point of all + -- elements and can only be solidified under pressure. Chemically inert, no + -- known compounds. Discovered in the solar spectrum in 1868 by Lockyer. + fun Helium : Class ; + fun Helium_Class : SubClass Helium ElementalSubstance ; + + -- Relatively soft and malleable silvery_white + -- metallic element, which is stable in dry air at room temperature. It + -- oxidizes in moist air and at high temperatures. It belongs to the + -- lanthanoids. A rare_earth metal, it is found in the minerals monazite and + -- gadolinite. It possesses unusual magnetic properties. One natural + -- isotope, Ho_165 exists, six radioisotopes exist, the most stable being + -- Ho_163 with a half_life of 4570 years. Holmium is used in some metal + -- alloys, it is also said to stimulate the metabolism. Discovered by Per + -- Theodor Cleve and J.L. Soret in Switzerland in 1879. The name homium + -- comes from the Greek word Holmia which means Sweden. While all holmium + -- compounds should be considered highly toxic, initial evidence seems to + -- indicate that they do not pose much danger. The metal's dust however, is + -- a fire hazard. + fun Holmium : Class ; + fun Holmium_Class : SubClass Holmium ElementalSubstance ; + + -- Colourless, odourless gaseous chemical element. + -- Lightest and most abundant element in the universe. Present in water and + -- in all organic compounds. Chemically reacts with most elements. + -- Discovered by Henry Cavendish in 1776. + fun Hydrogen : Class ; + fun Hydrogen_Class : SubClass Hydrogen ElementalSubstance ; + + -- Soft silvery element belonging to group 13 of the + -- periodic table. The most common natural isotope is In_115, which has a + -- half_life of 6*10^4 years. Five other radioisotopes exist. Discovered in + -- 1863 by Reich and Richter. + fun Indium : Class ; + fun Indium_Class : SubClass Indium ElementalSubstance ; + + -- Dark violet nonmetallic element, belongs to group + -- 17 of the periodic table. Insoluble in water. Required as a trace + -- element for living organisms. One stable isotope, I_127 exists, in + -- addition to fourteen radioactive isotopes. Chemically the least reactive + -- of the halogens, and the most electropositive metallic halogen. + -- Discovered in 1812 by Courtois. + fun Iodine : Class ; + fun Iodine_Class : SubClass Iodine ElementalSubstance ; + + -- Very hard and brittle, silvery metallic transition + -- element. It has a yellowish cast to it. Salts of iridium are highly + -- colored. It is the most corrosion resistant metal known, not attacked by + -- any acid, but is attacked by molten salts. There are two natural isotopes + -- of iridium, and 4 radioisotopes, the most stable being Ir_192 with a + -- half_life of 73.83 days. Ir_192 decays into {platinum}, while the other + -- radioisotopes decay into {osmium}. Iridium is used in high temperature + -- apparatus, electrical contacts, and as a hardening agent for platinum. + -- Discovered in 1803 by Smithson Tennant in England. The name comes from + -- the Greek word iris, which means rainbow. Iridium metal is generally + -- non_toxic due to its relative unreactivity, but iridium compounds should + -- be considered highly toxic. + fun Iridium : Class ; + fun Iridium_Class : SubClass Iridium ElementalSubstance ; + + -- Silvery malleable and ductile metallic transition + -- element. Has nine isotopes and is the fourth most abundant element in the + -- earth's crust. Required by living organisms as a trace element (used in + -- hemoglobin in humans.) Quite reactive, oxidizes in moist air, displaces + -- hydrogen from dilute acids and combines with nonmetallic elements. + fun Iron : Class ; + fun Iron_Class : SubClass Iron ElementalSubstance ; + + -- Colorless gaseous element, belongs to the noble + -- gases. Occurs in the air, 0.0001 percent by volume. It can be extracted + -- from liquid air by fractional distillation. Generally not isolated, but + -- used with other inert gases in fluorescent lamps. Five natural isotopes, + -- and five radioactive isotopes. Kr_85, the most stable radioactive + -- isotope, has a half_life of 10.76 years and is produced in fission + -- reactors. Practically inert, though known to form compounds with + -- {fluorine}. + fun Krypton : Class ; + fun Krypton_Class : SubClass Krypton ElementalSubstance ; + + -- (From the Greek word lanthanein, to line hidden) + -- Silvery metallic element belonging to group 3 of the periodic table and + -- oft considered to be one of the lanthanoids. Found in some rare_earth + -- minerals. Twenty_five natural isotopes exist. La_139 which is stable, + -- and La_138 which has a half_life of 10^10 to 10^15 years. The other + -- twenty_three isotopes are radioactive. It resembles the lanthanoids + -- chemically. Lanthanum has a low to moderate level of toxicity, and should + -- be handled with care. Discovered in 1839 by C.G. Mosander. + fun Lanthanum : Class ; + fun Lanthanum_Class : SubClass Lanthanum ElementalSubstance ; + + -- Appearance unknown, however it is most likely + -- silvery_white or grey and metallic. Lawrencium is a synthetic rare_earth + -- metal. There are eight known radioisotopes, the most stable being Lr_262 + -- with a half_life of 3.6 hours. Due to the short half_life of lawrencium, + -- and its radioactivity, there are no known uses for it. Identified by + -- Albert Ghiorso in 1961 at Berkeley. It was produced by bombarding + -- californium with boron ions. The name is temporary {IUPAC} nomenclature, + -- the origin of the name comes from Ernest O. Lawrence, the inventor of the + -- cyclotron. If sufficient amounts of lawrencium were produced, it would + -- pose a radiation hazard. + fun Lawrencium : Class ; + fun Lawrencium_Class : SubClass Lawrencium ElementalSubstance ; + + -- Heavy dull grey ductile metallic element, belongs to + -- group 14. Used in building construction, lead_place accumulators, bullets + -- and shot, and is part of solder, pewter, bearing metals, type metals and + -- fusible alloys. + fun Lead : Class ; + fun Lead_Class : SubClass Lead ElementalSubstance ; + + -- Socket silvery metal. First member of group 1 of + -- the periodic table. Lithium salts are used in psychomedicine. + fun Lithium : Class ; + fun Lithium_Class : SubClass Lithium ElementalSubstance ; + + -- Silvery_white rare_earth metal which is + -- relatively stable in air. It happens to be the most expensive rare_earth + -- metal. Its found with almost all rare_earth metals, but is very difficult + -- to separate from other elements. Least abundant of all natural elements. + -- Used in metal alloys, and as a catalyst in various processes. There are + -- two natural, stable isotopes, and seven radioisotopes, the most stable + -- being Lu_174 with a half_life of 3.3 years. The separation of lutetium + -- from {ytterbium} was described by Georges Urbain in 1907. It was + -- discovered at approximately the same time by Carl Auer von Welsbach. The + -- name comes from the Greek word lutetia which means Paris. + fun Lutetium : Class ; + fun Lutetium_Class : SubClass Lutetium ElementalSubstance ; + + -- Silvery metallic element belonging to group 2 of + -- the periodic table (alkaline_earth metals). It is essential for living + -- organisms, and is used in a number of light alloys. Chemically very + -- reactive, it forms a protective oxide coating when exposed to air and + -- burns with an intense white flame. It also reacts with sulphur, nitrogen + -- and the halogens. First isolated by Bussy in 1828. + fun Magnesium : Class ; + fun Magnesium_Class : SubClass Magnesium ElementalSubstance ; + + -- Grey brittle metallic transition element. + -- Rather electropositive, combines with some non_metals when heated. + -- Discovered in 1774 by Scheele. + fun Manganese : Class ; + fun Manganese_Class : SubClass Manganese ElementalSubstance ; + + -- Half_life of approximately 5ms. The creation + -- of this element demonstrated that fusion techniques could indeed be used + -- to make new, heavy nuclei. Made and identified by physicists of the Heavy + -- Ion Research Laboratory, Darmstadt, West Germany in 1982. Named in honor + -- of Lise Meitner the Austrian physicist. + fun Meitnerium : Class ; + fun Meitnerium_Class : SubClass Meitnerium ElementalSubstance ; + + -- Radioactive metallic transuranic element. + -- Belongs to the actinoid series. Only known isotope, Md_256 has a + -- half_life of 1.3 hours. First identified by Glenn T. Seaborg, Albert + -- Ghiorso and associates in 1955. Alternative name {unnilunium} has been + -- proposed. Named after the 'inventor' of the periodic table, Dmitri + -- Mendeleev. + fun Mendelevium : Class ; + fun Mendelevium_Class : SubClass Mendelevium ElementalSubstance ; + + -- Heavy silvery liquid metallic element, belongs to + -- the zinc group. Used in thermometers, barometers and other scientific + -- apparatus. Less reactive than zinc and cadmium, does not displace + -- hydrogen from acids. Forms a number of complexes and organomercury + -- compounds. + fun Mercury : Class ; + fun Mercury_Class : SubClass Mercury ElementalSubstance ; + + -- Silvery_white, hard metallic transition + -- element. It is chemically unreactive and is not affected by most acids. + -- It oxidizes at high temperatures. There are seven natural isotopes, and + -- four radioisotopes, Mo_93 being the most stable with a half_life of 3500 + -- years. Molybdenum is used in almost all high_strength steels, it has + -- nuclear applications, and is a catalyst in petroleum refining. Discovered + -- in 1778 by Carl Welhelm Scheele of Sweden. Impure metal was prepared in + -- 1782 by Peter Jacob Hjelm. The name comes from the Greek word molybdos + -- which means lead. Trace amounts of molybdenum are required for all known + -- forms of life. All molybdenum compounds should be considered highly + -- toxic, and will also cause severe birth defects. + fun Molybdenum : Class ; + fun Molybdenum_Class : SubClass Molybdenum ElementalSubstance ; + + -- Soft bright silvery metallic element, belongs to + -- the lanthanoids. Seven natural isotopes, Nd_144 being the only + -- radioactive one with a half_life of 10^10 to 10^15 years. Six artificial + -- radioisotopes have been produced. The metal is used in glass works to + -- color class a shade of violet_purple and make it dichroic. One of the + -- more reactive rare_earth metals, quickly reacts with air. Used in some + -- rare_earth alloys. Neodymium is used to color the glass used in welder's + -- glasses. Neodymium is also used in very powerful, permanent magnets + -- (Nd2Fe14B). Discovered by Carl F. Auer von Welsbach in Austria in 1885 + -- by separating didymium into its elemental components {praseodymium} and + -- neodymium. The name comes from the Greek words 'neos didymos' which means + -- 'new twin'. Neodymium should be considered highly toxic, however evidence + -- would seem to show that it acts as little more than a skin and eye + -- irritant. The dust however, presents a fire and explosion hazard. + fun Neodymium : Class ; + fun Neodymium_Class : SubClass Neodymium ElementalSubstance ; + + -- Colourless gaseous element of group 18 on the + -- periodic table (noble gases). Neon occurs in the atmosphere, and + -- comprises 0.0018 percent of the volume of the atmosphere. It has a + -- distinct reddish glow when used in discharge tubes and neon based lamps. + -- It forms almost no chemical compounds. Neon was discovered in 1898 by Sir + -- William Ramsey and M.W. Travers. + fun Neon : Class ; + fun Neon_Class : SubClass Neon ElementalSubstance ; + + -- Radioactive metallic transuranic element, + -- belongs to the actinoids. Np_237, the most stable isotope, has a + -- half_life of 2.2*10^6 years and is a by product of nuclear reactors. The + -- other known isotopes have mass numbers 229 through 236, and 238 through + -- 241. Np_236 has a half_life of 5*10^3 years. First produced by Edwin M. + -- McMillan and P.H. Abelson in 1940. + fun Neptunium : Class ; + fun Neptunium_Class : SubClass Neptunium ElementalSubstance ; + + -- Malleable ductile silvery metallic transition + -- element. Discovered by A.F. Cronstedt in 1751. + fun Nickel : Class ; + fun Nickel_Class : SubClass Nickel ElementalSubstance ; + + -- Soft, ductile grey_blue metallic transition + -- element. Used in special steels and in welded joints to increase + -- strength. Combines with halogens and oxidizes in air at 200 degrees + -- celsius. Discovered by Charles Hatchett in 1801 and isolated by + -- Blomstrand in 1864. Called {columbium} originally. + fun Niobium : Class ; + fun Niobium_Class : SubClass Niobium ElementalSubstance ; + + -- Colourless, gaseous element which belongs to + -- group 15 of the periodic table. Constitutes ~78 percent of the atmosphere + -- and is an essential part of the ecosystem. Nitrogen for industrial + -- purposes is acquired by the fractional distillation of liquid air. + -- Chemically inactive, reactive generally only at high temperatures or in + -- electrical discharges. It was discovered in 1772 by D. Rutherford. + fun Nitrogen : Class ; + fun Nitrogen_Class : SubClass Nitrogen ElementalSubstance ; + + -- Radioactive metallic transuranic element, belongs + -- to the actinoids. Seven known isotopes exist, the most stable being + -- No_254 with a half_life of 255 seconds. First identified with certainty + -- by Albert Ghiorso and Glenn T. Seaborg in 1966. {Unnilbium} has been + -- proposed as an alternative name. + fun Nobelium : Class ; + fun Nobelium_Class : SubClass Nobelium ElementalSubstance ; + + -- Hard blue_white metallic transition element. Found + -- with platinum and used in some alloys with platinum and iridium. + fun Osmium : Class ; + fun Osmium_Class : SubClass Osmium ElementalSubstance ; + + -- A colourless, odourless gaseous element belonging + -- to group 16 of the periodic table. It is the most abundant element + -- present in the earth's crust. It also makes up 20.8 percent of the + -- Earth's atmosphere. For industrial purposes, it is separated from liquid + -- air by fractional distillation. It is used in high temperature welding, + -- and in breathing. It commonly comes in the form of Oxygen, but is found + -- as Ozone in the upper atmosphere. It was discovered by Priestley in + -- 1774. + fun Oxygen : Class ; + fun Oxygen_Class : SubClass Oxygen ElementalSubstance ; + + -- Soft white ductile transition element. Found + -- with some copper and nickel ores. Does not react with oxygen at normal + -- temperatures. Dissolves slowly in hydrochloric acid. Discovered in 1803 + -- by W.H. Wollaston. + fun Palladium : Class ; + fun Palladium_Class : SubClass Palladium ElementalSubstance ; + + -- Non_metallic element belonging to group 15 of + -- the periodic table. Has a multiple allotropic forms. Essential element + -- for living organisms. It was discovered by Brandt in 1669. + fun Phosphorus : Class ; + fun Phosphorus_Class : SubClass Phosphorus ElementalSubstance ; + + -- Attractive greyish_white metal. When pure, it is + -- malleable and ductile. Does not oxidize in air, insoluble in hydrochloric + -- and nitric acid. Corroded by halogens, cyandies, sulphur and alkalis. + -- {Hydrogen} and {oxygen} react explosively in the presence of platinum. + -- There are six stable isotopes and three radioisotopes, the most stable + -- being Pt_193 with a half_life of 60 years. Platinum is used in jewelry, + -- laboratory equipment, electrical contacts, dentistry, and anti_pollution + -- devices in cars. PtCl2(NH3)2 is used to treat some forms of cancer. + -- Platinum_{cobalt} alloys have magnetic properties. It is also used in the + -- definition of the Standard Hydrogen Electrode. Discovered by Antonio de + -- Ulloa in South America in 1735. The name comes from the Spanish word + -- platina which means silver. Platinum metal is generally not a health + -- concern due to its unreactivity, however platinum compounds should be + -- considered highly toxic. + fun Platinum : Class ; + fun Platinum_Class : SubClass Platinum ElementalSubstance ; + + -- Dense silvery radioactive metallic transuranic + -- element, belongs to the actinoids. Pu_244 is the most stable isotope with + -- a half_life of 7.6*10^7 years. Thirteen isotopes are known. Pu_239 is + -- the most important, it undergoes nuclear fission with slow neutrons and is + -- hence important to nuclear weapons and reactors. Plutonium production is + -- monitored down to the gram to prevent military misuse. First produced by + -- Gleen T. Seaborg, Edwin M. McMillan, J.W. Kennedy and A.C. Wahl in + -- 1940. + fun Plutonium : Class ; + fun Plutonium_Class : SubClass Plutonium ElementalSubstance ; + + -- Rare radioactive metallic element, belongs to + -- group 16 of the periodic table. Over 30 known isotopes exist, the most of + -- all elements. Po_209 has a half_life of 103 years. Possible uses in + -- heating spacecraft. Discovered by Marie Curie in 1898 in a sample of + -- pitchblende. + fun Polonium : Class ; + fun Polonium_Class : SubClass Polonium ElementalSubstance ; + + -- Soft silvery metallic element belonging to group + -- 1 of the periodic table (alkali metals). Occurs naturally in seawater and + -- a many minerals. Highly reactive, chemically, it resembles sodium in its + -- behavior and compounds. Discovered by Sir Humphry Davy in 1807. + fun Potassium : Class ; + fun Potassium_Class : SubClass Potassium ElementalSubstance ; + + -- Soft silvery metallic element, belongs to the + -- lanthanoids. Only natural isotope is Pr_141 which is not radioactive. + -- Fourteen radioactive isotopes have been artificially produced. Used in + -- rare_earth alloys. Discovered in 1885 by C.A. von Welsbach. + fun Praseodymium : Class ; + fun Praseodymium_Class : SubClass Praseodymium ElementalSubstance ; + + -- Soft silvery metallic element, belongs to the + -- lanthanoids. Pm_147, the only natural isotope, is radioactive and has a + -- half_life of 252 years. Eighteen radioisotopes have been produced, but + -- all have very short half_lives. Found only in nuclear decay waste. + -- Pm_147 is of interest as a beta_decay source, however Pm_146 and Pm_148 + -- have to be removed from it first, as they generate gamma radiation. + -- Discovered by J.A. Marinsky, L.E. Glendenin and C.D. Coryell in + -- 1947. + fun Promethium : Class ; + fun Promethium_Class : SubClass Promethium ElementalSubstance ; + + -- Radioactive metallic element, belongs to the + -- actinoids. The most stable isotope, Pa_231 has a half_life of 2.43*10^4 + -- years. At least 10 other radioactive isotopes are known. No practical + -- applications are known. Discovered in 1917 by Lise Meitner and Otto + -- Hahn. + fun Protactinium : Class ; + fun Protactinium_Class : SubClass Protactinium ElementalSubstance ; + + -- Radioactive metallic transuranic element, belongs + -- to group 2 of the periodic table. Most stable isotope, Ra_226 has a + -- half_life of 1602 years, which decays into radon. Isolated from + -- pitchblende in 1898 Marie and Pierre Curie. + fun Radium : Class ; + fun Radium_Class : SubClass Radium ElementalSubstance ; + + -- Colorless radioactive gaseous element, belongs to + -- the noble gases. Of the twenty known isotopes, the most stable is Rn_222 + -- with a half_life of 3.8 days. Formed by the radioactive decay of + -- {Radium}_226. Radon itself decays into {polonium}. Used in radiotherapy. + -- As a noble gas, it is effectively inert, though radon fluoride has been + -- synthesized. First isolated in 1908 by Ramsey and Gray. + fun Radon : Class ; + fun Radon_Class : SubClass Radon ElementalSubstance ; + + -- Silvery_white metallic transition element. + -- Obtained as a by_product of molybdenum refinement. Rhenium_molybdenum + -- alloys are superconducting. + fun Rhenium : Class ; + fun Rhenium_Class : SubClass Rhenium ElementalSubstance ; + + -- Silvery white metallic transition element. Found + -- with platinum and used in some platinum alloys. Not attacked by acids, + -- dissolves only in aqua regia. Discovered in 1803 by W.H. Wollaston. + fun Rhodium : Class ; + fun Rhodium_Class : SubClass Rhodium ElementalSubstance ; + + -- Soft silvery metallic element, belongs to group 1 + -- of the periodic table. Rb_97, the naturally occurring isotope, is + -- radioactive. It is highly reactive, with properties similar to other + -- elements in group 1, like igniting spontaneously in air. Discovered + -- spectroscopically in 1861 by W. Bunsen and G.R. Kirchoff. + fun Rubidium : Class ; + fun Rubidium_Class : SubClass Rubidium ElementalSubstance ; + + -- Hard white metallic transition element. Found + -- with platinum, used as a catalyst in some platinum alloys. Dissolves in + -- fused alkalis, and is not attacked by acids. Reacts with halogens and + -- oxygen at high temperatures. Isolated in 1844 by K.K. Klaus. + fun Ruthenium : Class ; + fun Ruthenium_Class : SubClass Ruthenium ElementalSubstance ; + + -- Soft silvery metallic element, belongs to the + -- lanthanoids. Seven natural isotopes, Sm_147 is the only radioisotope, and + -- has a half_life of 2.5*10^11 years. Used for making special alloys needed + -- in the production of nuclear reactors. Also used as a neutron absorber. + -- Small quantities of samarium oxide is used in special optical glasses. + -- The largest use of the element is its ferromagnetic alloy which produces + -- permanent magnets that are five times stronger than magnets produced by + -- any other material. Discovered by Francois Lecoq de Boisbaudran in + -- 1879. + fun Samarium : Class ; + fun Samarium_Class : SubClass Samarium ElementalSubstance ; + + -- Rare soft silvery metallic element belonging to + -- group 3 of the periodic table. There are ten isotopes, nine of which are + -- radioactive and have short half_lives. Predicted in 1869 by Mendeleev, + -- isolated by Nilson in 1879. + fun Scandium : Class ; + fun Scandium_Class : SubClass Scandium ElementalSubstance ; + + -- Metalloid element, belongs to group 16 of the + -- periodic table. Multiple allotropic forms exist. Chemically resembles + -- sulphur. Discovered in 1817 by Jons J. Berzelius. + fun Selenium : Class ; + fun Selenium_Class : SubClass Selenium ElementalSubstance ; + + -- Metalloid element belonging to group 14 of the + -- periodic table. It is the second most abundant element in the Earth's + -- crust, making up 25.7 percent of it by weight. Chemically less reactive + -- than carbon. First identified by Lavoisier in 1787 and first isolated in + -- 1823 by Berzelius. + fun Silicon : Class ; + fun Silicon_Class : SubClass Silicon ElementalSubstance ; + + -- White lustrous soft metallic transition element. + -- Found in both its elemental form and in minerals. Used in jewellery, + -- tableware and so on. Less reactive than silver, chemically. + fun Silver : Class ; + fun Silver_Class : SubClass Silver ElementalSubstance ; + + -- Soft silvery reactive element belonging to group 1 + -- of the periodic table (alkali metals). It is highly reactive, oxidizing + -- in air and reacting violently with water, forcing it to be kept under oil. + -- It was first isolated by Humphrey Davy in 1807. + fun Sodium : Class ; + fun Sodium_Class : SubClass Sodium ElementalSubstance ; + + -- Soft yellowish metallic element, belongs to + -- group 2 of the periodic table. Highly reactive chemically. Sr_90 is + -- present in radioactive fallout and has a half_life of 28 years. + -- Discovered in 1798 by Klaproth and Hope, isolated in 1808 by Humphry + -- Davy. + fun Strontium : Class ; + fun Strontium_Class : SubClass Strontium ElementalSubstance ; + + -- Yellow, nonmetallic element belonging to group 16 + -- of the periodic table. It is an essential element in living organisms, + -- needed in the amino acids cysteine and methionine, and hence in many + -- proteins. Absorbed by plants from the soil as sulphate ion. + fun Sulphur : Class ; + fun Sulphur_Class : SubClass Sulphur ElementalSubstance ; + + -- Heavy blue_grey metallic transition element. + -- Ta_181 is a stable isotope, and Ta_180 is a radioactive isotope, with a + -- half_life in excess of 10^7 years. Used in surgery as it is unreactive. + -- Forms a passive oxide layer in air. Identified in 1802 by Ekeberg and + -- isolated in 1820 by Jons J. Berzelius. + fun Tantalum : Class ; + fun Tantalum_Class : SubClass Tantalum ElementalSubstance ; + + -- Radioactive metallic transition element. Can + -- be detected in some stars and the fission products of uranium. First made + -- by Perrier and Segre by bombarding molybdenum with deutrons, giving them + -- Tc_97. Tc_99 is the most stable isotope with a half_life of 2.6*10^6 + -- years. Sixteen isotopes are known. Organic technetium compounds are used + -- in bone imaging. Chemical properties are intermediate between rhenium and + -- manganese. + fun Technetium : Class ; + fun Technetium_Class : SubClass Technetium ElementalSubstance ; + + -- Silvery metalloid element of group 16. Eight + -- natural isotopes, nine radioactive isotopes. Used in semiconductors and + -- to a degree in some steels. Chemistry is similar to {sulphur}. + -- Discovered in 1782 by Franz Miller. + fun Tellurium : Class ; + fun Tellurium_Class : SubClass Tellurium ElementalSubstance ; + + -- Silvery metallic element belonging to the + -- lanthanoids. Tb_159 is the only stable isotope, there are seventeen + -- artificial isotopes. Discovered by G.G. Mosander in 1843. + fun Terbium : Class ; + fun Terbium_Class : SubClass Terbium ElementalSubstance ; + + -- Pure, unreacted thallium appears silvery_white + -- and exhibits a metallic lustre. Upon reacting with air, it begins to turn + -- bluish_grey and looks like lead. It is very malleable, and can be cut + -- with a knife. There are two stable isotopes, and four radioisotopes, + -- Tl_204 being the most stable with a half_life of 3.78 years. Thallium + -- sulphate was used as a rodenticide. Thallium sulphine's conductivity + -- changes with exposure to infrared light, this gives it a use in infrared + -- detectors. Discovered by Sir William Crookes via spectroscopy. Its name + -- comes from the Greek word thallos, which means green twig. Thallium and + -- its compounds are toxic and can cause cancer. + fun Thallium : Class ; + fun Thallium_Class : SubClass Thallium ElementalSubstance ; + + -- Grey radioactive metallic element. Belongs to + -- actinoids. Found in monazite sand in Brazil, India and the US. + -- Thorium_232 has a half_life of 1.39x10^10 years. Can be used as a nuclear + -- fuel for breeder reactors. Thorium_232 captures slow {neutron}s and + -- breeds uranium_233. Discovered by Jons J. Berzelius in 1829. + fun Thorium : Class ; + fun Thorium_Class : SubClass Thorium ElementalSubstance ; + + -- Soft grey metallic element that belongs to the + -- lanthanoids. One natural isotope exists, Tm_169, and seventeen artificial + -- isotopes have been produced. No known uses for the element. Discovered + -- in 1879 by Per Theodor Cleve. + fun Thulium : Class ; + fun Thulium_Class : SubClass Thulium ElementalSubstance ; + + -- Silvery malleable metallic element belonging to group + -- 14 of the periodic table. Twenty_six isotopes are known, five of which + -- are radioactive. Chemically reactive. Combines directly with chlorine + -- and oxygen and displaces hydrogen from dilute acids. + fun Tin : Class ; + fun Tin_Class : SubClass Tin ElementalSubstance ; + + -- White metallic transition element. Occurs in + -- numerous minerals. Used in strong, light corrosion_resistant alloys. + -- Forms a passive oxide coating when exposed to air. First discovered by + -- Gregor in 1789. + fun Titanium : Class ; + fun Titanium_Class : SubClass Titanium ElementalSubstance ; + + -- White or grey metallic transition element, + -- formerly called {wolfram}. Forms a protective oxide in air and can be + -- oxidized at high temperature. First isolated by Jose and Fausto de + -- Elhuyer in 1783. + fun Tungsten : Class ; + fun Tungsten_Class : SubClass Tungsten ElementalSubstance ; + + -- Half_life of approximately 10ms. Reported in + -- 1994 by German researchers at Darmstadt, Germany. + fun Unnildecium : Class ; + fun Unnildecium_Class : SubClass Unnildecium ElementalSubstance ; + + -- Half_life of 0.9 +/_ 0.2 s. Discovered by the + -- Joint Institute for Nuclear Research at Dubna (U.S.S.R.) in June of 1974. + -- Its existence was confirmed by the Lawrence Berkeley Laboratory and + -- Livermore National Laboratory in September of 1974. + fun Unnilhexium : Class ; + fun Unnilhexium_Class : SubClass Unnilhexium ElementalSubstance ; + + -- Radioactive transition metal. + fun Unniloctium : Class ; + fun Unniloctium_Class : SubClass Unniloctium ElementalSubstance ; + + -- Radioactive transactinide element. Half_life + -- of 1.6s. Discovered in 1970 by Berkeley researchers. So far, seven + -- isotopes have been discovered. + fun Unnilpentium : Class ; + fun Unnilpentium_Class : SubClass Unnilpentium ElementalSubstance ; + + -- Radioactive transactinide element. Expected + -- to have similar chemical properties to those displayed by hafnium. Rf_260 + -- was discovered by the Joint Nuclear Research Institute at Dubna (U.S.S.R.) + -- in 1964. Researchers at Berkeley discovered Unq_257 and Unq_258 in + -- 1964. + fun Unnilquadium : Class ; + fun Unnilquadium_Class : SubClass Unnilquadium ElementalSubstance ; + + -- Radioactive transition metal. Half_life of + -- approximately 1/500 s. Discovered by the Joint Institute for Nuclear + -- Research at Dubna (U.S.S.R.) in 1976. Confirmed by West German physicists + -- at the Heavy Ion Research Laboratory at Darmstadt. + fun Unnilseptium : Class ; + fun Unnilseptium_Class : SubClass Unnilseptium ElementalSubstance ; + + -- White radioactive metallic element belonging to + -- the actinoids. Three natural isotopes, U_238, U_235 and U_234. + -- Uranium_235 is used as the fuel for nuclear reactors and weapons. + -- Discovered by Martin H. Klaproth in 1789. + fun Uranium : Class ; + fun Uranium_Class : SubClass Uranium ElementalSubstance ; + + -- Soft and ductile, bright white metal. Good + -- resistance to corrosion by alkalis, sulphuric and hydrochloric acid. It + -- oxidizes readily about 933K. There are two naturally occurring isotopes + -- of vanadium, and 5 radioisotopes, V_49 having the longest half_life at 337 + -- days. Vanadium has nuclear applications, the foil is used in cladding + -- titanium to steel, and vanadium_gallium tape is used to produce a + -- superconductive magnet. Originally discovered by Andres Manuel del Rio of + -- Mexico City in 1801. His discovery went unheeded, however, and in 1820, + -- Nils Gabriel Sefstron of Sweden rediscovered it. Metallic vanadium was + -- isolated by Henry Enfield Roscoe in 1867. The name vanadium comes from + -- {Vanadis}, a goddess of Scandinavian mythology. Silvery_white metallic + -- transition element. Vanadium is essential to {ascidian}s. Rats and + -- chickens are also known to require it. Metal powder is a fire hazard, and + -- vanadium compounds should be considered highly toxic. May cause lung + -- cancer if inhaled. + fun Vanadium : Class ; + fun Vanadium_Class : SubClass Vanadium ElementalSubstance ; + + -- Colourless, odourless gas belonging to group 18 on + -- the periodic table (the noble gases.) Nine natural isotopes and seven + -- radioactive isotopes are known. Xenon was part of the first noble_gas + -- compound synthesized. Several others involving Xenon have been found + -- since then. Xenon was discovered by Ramsey and Travers in 1898. + fun Xenon : Class ; + fun Xenon_Class : SubClass Xenon ElementalSubstance ; + + -- Silvery metallic element of the lanthanoids. + -- Seven natural isotopes and ten artificial isotopes are known. Used in + -- certain steels. Discovered by J.D.G. Marignac in 1878. + fun Ytterbium : Class ; + fun Ytterbium_Class : SubClass Ytterbium ElementalSubstance ; + + -- Silvery_grey metallic element of group 3 on the + -- periodic table. Found in uranium ores. The only natural isotope is Y_89, + -- there are 14 other artificial isotopes. Chemically resembles the + -- lanthanoids. Stable in the air below 400 degrees, celsius. Discovered in + -- 1828 by Friedrich Wohler. + fun Yttrium : Class ; + fun Yttrium_Class : SubClass Yttrium ElementalSubstance ; + + -- Blue_white metallic element. Occurs in multiple + -- compounds naturally. Five stable isotopes are six radioactive isotopes + -- have been found. Chemically a reactive metal, combines with oxygen and + -- other non_metals, reacts with dilute acids to release hydrogen. + fun Zinc : Class ; + fun Zinc_Class : SubClass Zinc ElementalSubstance ; + + -- Grey_white metallic transition element. Five + -- natural isotopes and six radioactive isotopes are known. Used in nuclear + -- reactors for a {neutron} absorber. Discovered in 1789 by Martin Klaproth, + -- isolated in 1824 by Berzelius. + fun Zirconium : Class ; + fun Zirconium_Class : SubClass Zirconium ElementalSubstance ; + +} diff --git a/examples/SUMO/ElementsEng.gf b/examples/SUMO/ElementsEng.gf new file mode 100644 index 000000000..b049f8ad0 --- /dev/null +++ b/examples/SUMO/ElementsEng.gf @@ -0,0 +1,116 @@ +--# -path=.:englishExtended +concrete ElementsEng of Elements = MergeEng ** open ParadigmsEng,NounEng in { + +lin + Hydrogen = UseN (mkN "Hydrogen") ; + Helium = UseN (mkN "Helium") ; + Lithium = UseN (mkN "Lithium") ; + Beryllium = UseN (mkN "Beryllium") ; + Boron = UseN (mkN "Boron") ; + Carbon = UseN (mkN "Carbon") ; + Nitrogen = UseN (mkN "Nitrogen") ; + Oxygen = UseN (mkN "Oxygen") ; + Fluorine = UseN (mkN "Fluorine") ; + Neon = UseN (mkN "Neon") ; + Sodium = UseN (mkN "Sodium") ; + Magnesium = UseN (mkN "Magnesium") ; + Aluminum = UseN (mkN "Aluminum") ; + Silicon = UseN (mkN "Silicon") ; + Phosphorus = UseN (mkN "Phosphorus") ; + Sulphur = UseN (mkN "Sulphur") ; + Chlorine = UseN (mkN "Chlorine") ; + Argon = UseN (mkN "Argon") ; + Potassium = UseN (mkN "Potassium") ; + Calcium = UseN (mkN "Calcium") ; + Scandium = UseN (mkN "Scandium") ; + Titanium = UseN (mkN "Titanium") ; + Vanadium = UseN (mkN "Vanadium") ; + Chromium = UseN (mkN "Chromium") ; + Manganese = UseN (mkN "Manganese") ; + Iron = UseN (mkN "Iron") ; + Cobalt = UseN (mkN "Cobalt") ; + Nickel = UseN (mkN "Nickel") ; + Copper = UseN (mkN "Copper") ; + Zinc = UseN (mkN "Zinc") ; + Gallium = UseN (mkN "Gallium") ; + Germanium = UseN (mkN "Germanium") ; + Arsenic = UseN (mkN "Arsenic") ; + Selenium = UseN (mkN "Selenium") ; + Bromine = UseN (mkN "Bromine") ; + Krypton = UseN (mkN "Krypton") ; + Rubidium = UseN (mkN "Rubidium") ; + Strontium = UseN (mkN "Strontium") ; + Yttrium = UseN (mkN "Yttrium") ; + Zirconium = UseN (mkN "Zirconium") ; + Niobium = UseN (mkN "Niobium") ; + Molybdenum = UseN (mkN "Molybdenum") ; + Technetium = UseN (mkN "Technetium") ; + Ruthenium = UseN (mkN "Ruthenium") ; + Rhodium = UseN (mkN "Rhodium") ; + Palladium = UseN (mkN "Palladium") ; + Silver = UseN (mkN "Silver") ; + Cadmium = UseN (mkN "Cadmium") ; + Indium = UseN (mkN "Indium") ; + Tin = UseN (mkN "Tin") ; + Antimony = UseN (mkN "Antimony") ; + Tellurium = UseN (mkN "Tellurium") ; + Iodine = UseN (mkN "Iodine") ; + Xenon = UseN (mkN "Xenon") ; + Caesium = UseN (mkN "Caesium") ; + Barium = UseN (mkN "Barium") ; + Lanthanum = UseN (mkN "Lanthanum") ; + Cerium = UseN (mkN "Cerium") ; + Praseodymium = UseN (mkN "Praseodymium") ; + Neodymium = UseN (mkN "Neodymium") ; + Promethium = UseN (mkN "Promethium") ; + Samarium = UseN (mkN "Samarium") ; + Europium = UseN (mkN "Europium") ; + Gadolinium = UseN (mkN "Gadolinium") ; + Terbium = UseN (mkN "Terbium") ; + Dysprosium = UseN (mkN "Dysprosium") ; + Holmium = UseN (mkN "Holmium") ; + Erbium = UseN (mkN "Erbium") ; + Thulium = UseN (mkN "Thulium") ; + Ytterbium = UseN (mkN "Ytterbium") ; + Lutetium = UseN (mkN "Lutetium") ; + Hafnium = UseN (mkN "Hafnium") ; + Tantalum = UseN (mkN "Tantalum") ; + Tungsten = UseN (mkN "Tungsten") ; + Rhenium = UseN (mkN "Rhenium") ; + Osmium = UseN (mkN "Osmium") ; + Iridium = UseN (mkN "Iridium") ; + Platinum = UseN (mkN "Platinum") ; + Gold = UseN (mkN "Gold") ; + Mercury = UseN (mkN "Mercury") ; + Thallium = UseN (mkN "Thallium") ; + Lead = UseN (mkN "Lead") ; + Bismuth = UseN (mkN "Bismuth") ; + Polonium = UseN (mkN "Polonium") ; + Astatine = UseN (mkN "Astatine") ; + Radon = UseN (mkN "Radon") ; + Francium = UseN (mkN "Francium") ; + Radium = UseN (mkN "Radium") ; + Actinium = UseN (mkN "Actinium") ; + Thorium = UseN (mkN "Thorium") ; + Protactinium = UseN (mkN "Protactinium") ; + Uranium = UseN (mkN "Uranium") ; + Neptunium = UseN (mkN "Neptunium") ; + Plutonium = UseN (mkN "Plutonium") ; + Americium = UseN (mkN "Americium") ; + Curium = UseN (mkN "Curium") ; + Berkelium = UseN (mkN "Berkelium") ; + Californium = UseN (mkN "Californium") ; + Einsteinium = UseN (mkN "Einsteinium") ; + Fermium = UseN (mkN "Fermium") ; + Mendelevium = UseN (mkN "Mendelevium") ; + Nobelium = UseN (mkN "Nobelium") ; + Lawrencium = UseN (mkN "Lawrencium") ; + Unnilquadium = UseN (mkN "Unnilquadium") ; + Unnilpentium = UseN (mkN "Unnilpentium") ; + Unnilhexium = UseN (mkN "Unnilhexium") ; + Unnilseptium = UseN (mkN "Unnilseptium") ; + Unniloctium = UseN (mkN "Unniloctium") ; + Meitnerium = UseN (mkN "Meitnerium") ; + Unnildecium = UseN (mkN "Unnildecium") ; + +} diff --git a/examples/SUMO/Engineering.gf b/examples/SUMO/Engineering.gf new file mode 100644 index 000000000..e9059da8a --- /dev/null +++ b/examples/SUMO/Engineering.gf @@ -0,0 +1,1007 @@ +abstract Engineering = MidLevelOntology ** { + + -- A PureTwopole that accumulates across variable. + fun AcrossVariableAccumulator : Class ; + fun AcrossVariableAccumulator_Class : SubClass AcrossVariableAccumulator PureTwopole ; + + -- A Source that models a generator of across variable. + fun AcrossVariableSource : Class ; + fun AcrossVariableSource_Class : SubClass AcrossVariableSource Source ; + + -- algebraic equation or set of equations + fun AlgebraicAttribute : Ind EquationAttribute ; + + -- An Equation that is not + -- a DifferentialEquation + fun AlgebraicEquation : Class ; + fun AlgebraicEquation_Class : SubClass AlgebraicEquation Equation ; + + -- Set of both differential and algebraic equations + fun AlgebroDifferentialAttribute : Ind InternalAttribute ; + + -- Electronic equipment that increases strength of + -- signals passing through it, it can be modeled using a controlled + -- source, or an operational amplifier. + fun Amplifier : Class ; + fun Amplifier_Class : SubClass Amplifier ElectricalCircuit ; + + -- PhysicalDimension of angular velocity, [s^_1]. + fun AngularVelocity : Ind PhysicalDimension ; + + -- set of application domains (medicine, physics, etc) + fun ApplicationDomain : Class ; + fun ApplicationDomain_Class : SubClass ApplicationDomain InternalAttribute ; + + -- article + fun ArticleCategory : Ind DocumentCategory ; + + -- astronomy + fun AstronomyDomain : Class ; + fun AstronomyDomain_Class : SubClass AstronomyDomain PhysicsDomain ; + + -- For given class and for given attribute, return + -- a subclass of the class of object having the attribute + fun AttrFn : Class -> El Attribute -> Class ; + + -- autonomous + fun Autonomous : Class ; + fun Autonomous_Class : SubClass Autonomous InternalAttribute ; + + -- With no backlash. + fun Backlashless : Class ; + fun Backlashless_Class : SubClass Backlashless InternalAttribute ; + + -- the part of a transistor that separates the emitter + -- from the collector + fun Base : Class ; + fun Base_Class : SubClass Base Terminal ; + + -- Battery is a subclass of Device. Batteries are + -- devices that use chemical means to store or produce electrical power. + fun Battery : Class ; + fun Battery_Class : SubClass Battery (both ElectricDevice DCPowerSource) ; + + -- Bessel's equation + fun BesselsEquation : Class ; + fun BesselsEquation_Class : SubClass BesselsEquation (both NonlinearEquation OrdinaryDifferentialEquation) ; + + -- Bipolar transistor + fun BjtTransistor : Class ; + fun BjtTransistor_Class : SubClass BjtTransistor Transistor ; + + -- A SinglePhaseRectifier of + -- that exploits both polarities of the input power source. + fun BridgeSinglePhaseRectifier : Class ; + fun BridgeSinglePhaseRectifier_Class : SubClass BridgeSinglePhaseRectifier SinglePhaseRectifier ; + + -- With no brushes (of electrical motors) + fun Brushless : Class ; + fun Brushless_Class : SubClass Brushless InternalAttribute ; + + -- An ElectricalComponent characterized by its + -- capacitance. + fun Capacitor : Class ; + fun Capacitor_Class : SubClass Capacitor ElectricalComponent ; + + -- An AcrossVariableAccumulator from electrical energy domain. + fun CapacitorElement : Class ; + fun CapacitorElement_Class : SubClass CapacitorElement ElectricDevice ; + + -- 4_wheeled motor vehicle, usually propelled by + -- an internal combustion engine + fun Car : Class ; + fun Car_Class : SubClass Car Vehicle ; + + -- circuit theory + fun CircuitTheoryDomain : Class ; + fun CircuitTheoryDomain_Class : SubClass CircuitTheoryDomain (both ElectricalEngineeringDomain PhysicsDomain) ; + + -- the electrode in a transistor through which a + -- primary flow of carriers leaves the inter_electrode region + fun Collector : Class ; + fun Collector_Class : SubClass Collector Terminal ; + + -- The ability of material to stretch or bend. + fun Compliance : Ind PhysicalAttribute ; + + -- A collection of bytes stored as an + -- individual entity. All data on disk is stored as a file with an + -- assigned file name that is unique within the folder (directory) + -- it resides in. ComputerFile file systems contain only files and folders + fun ComputerFile : Class ; + fun ComputerFile_Class : SubClass ComputerFile ContentBearingObject ; + + fun ComputerProgram_ITAgent : SubClass ComputerProgram ITAgent ; + + -- the ability of a material to lead current + fun Conductivity : Ind PhysicalAttribute ; + + -- A Substance that readily conducts + -- electricity. + fun ConductorSubstance : Class ; + fun ConductorSubstance_Class : SubClass ConductorSubstance Substance ; + + -- A class of control design method + fun ControlDesignMethod : Class ; + fun ControlDesignMethod_Class : SubClass ControlDesignMethod Method ; + + -- control + fun ControlDomain : Class ; + fun ControlDomain_Class : SubClass ControlDomain EngineeringDomain ; + + -- a mechanism that controls the operation of some + -- device + fun Controller : Class ; + fun Controller_Class : SubClass Controller UnknownDomainDevice ; + + -- PhysicalDimension of electrical current, [A]. + fun Current : Ind PhysicalDimension ; + + -- A direct_current PowerSource. + fun DCPowerSource : Class ; + fun DCPowerSource_Class : SubClass DCPowerSource PowerSource ; + + -- A Dissipator from translatory energy domain. + fun DamperElement : Class ; + fun DamperElement_Class : SubClass DamperElement (both Dissipator TranslatoryTwopole) ; + + -- A direct_current electrical motor. + fun DcMotor : Class ; + fun DcMotor_Class : SubClass DcMotor ElectricalMotor ; + + -- differential equation or set of equations + fun DifferentialAttribute : Ind EquationAttribute ; + + -- An Equation containing differentials + -- of a function + fun DifferentialEquation : Class ; + fun DifferentialEquation_Class : SubClass DifferentialEquation Equation ; + + -- Dimensionless PhysicalDimension. + fun Dimensionless : Ind PhysicalDimension ; + + -- A semiconductor device that consists of a p_n + -- junction, it is used e.g. in rectifiers or demodulators. + fun Diode : Class ; + fun Diode_Class : SubClass Diode SemiconductorComponent ; + + -- Valve that controls the direction + -- of flow of a fluid + fun DirectionalControlValve : Class ; + fun DirectionalControlValve_Class : SubClass DirectionalControlValve Valve ; + + -- A method of converting continuous problem + -- to a discrete one, loaded by some discretization error. + fun Discretization : Class ; + fun Discretization_Class : SubClass Discretization MathematicalMethod ; + + -- A PureTwopole that models a dissipation of energy. + fun Dissipator : Class ; + fun Dissipator_Class : SubClass Dissipator PureTwopole ; + + -- document category + fun DocumentCategory : Class ; + fun DocumentCategory_Class : SubClass DocumentCategory WebDocumentAttribute ; + + -- A SinglePhaseRectifier of + -- that exploits both polarities of the input power source. + fun DoublerSinglePhaseRectifier : Class ; + fun DoublerSinglePhaseRectifier_Class : SubClass DoublerSinglePhaseRectifier SinglePhaseRectifier ; + + -- Asserts that the constitutive relation of + -- a multipole does depend on time. + fun DynamicMultipole : Ind MultipoleAttribute ; + + -- Electrical energetic interaction + fun Electrical : Ind PhysicalDomain ; + + -- A complex ElectricDevice consisting + -- of several mutually interconnected electrical components. + fun ElectricalCircuit : Class ; + fun ElectricalCircuit_Class : SubClass ElectricalCircuit ElectricDevice ; + + -- A discrete ElectricDevice for + -- general usage, such as resistors, capacitors, diodes, transistors etc. + fun ElectricalComponent : Class ; + fun ElectricalComponent_Class : SubClass ElectricalComponent ElectricDevice ; + + -- An ElectricalComponent designed to + -- transmit electricity + fun ElectricalConductor : Class ; + fun ElectricalConductor_Class : SubClass ElectricalConductor ElectricalComponent ; + + -- electrical drives (motors) + fun ElectricalDrivesDomain : Class ; + fun ElectricalDrivesDomain_Class : SubClass ElectricalDrivesDomain ElectroMechanicalDevicesDomain ; + + -- domain involving electrical engineering + fun ElectricalEngineeringDomain : Class ; + fun ElectricalEngineeringDomain_Class : SubClass ElectricalEngineeringDomain EngineeringDomain ; + + -- A Method used in electrical + -- engineering for designing and constructing electrical devices. + fun ElectricalEngineeringMethod : Class ; + fun ElectricalEngineeringMethod_Class : SubClass ElectricalEngineeringMethod Method ; + + -- An electrical motor. + fun ElectricalMotor : Class ; + fun ElectricalMotor_Class : SubClass ElectricalMotor (both ElectricDevice Motor) ; + + -- A MultipoleModel containing only + -- electrical multipoles. + fun ElectricalMultipoleModel : Class ; + fun ElectricalMultipoleModel_Class : SubClass ElectricalMultipoleModel MultipoleModel ; + + -- A Process in which electrical + -- interactions take place + fun ElectricalProcess : Class ; + fun ElectricalProcess_Class : SubClass ElectricalProcess NaturalProcess ; + + -- a resonance of electrical energy. + fun ElectricalResonance : Class ; + fun ElectricalResonance_Class : SubClass ElectricalResonance (both ElectricalProcess Resonance) ; + + -- A PureTwopole from electrical energy domain. + fun ElectricalTwopole : Class ; + fun ElectricalTwopole_Class : SubClass ElectricalTwopole PureTwopole ; + + -- electrical drives (motors) + fun ElectroMechanicalDevicesDomain : Class ; + fun ElectroMechanicalDevicesDomain_Class : SubClass ElectroMechanicalDevicesDomain (both ElectricalEngineeringDomain MechanicalEngineeringDomain) ; + + -- electronic circuits _ electrical circuits + -- containing complex semiconductor components + fun ElectronicsDomain : Class ; + fun ElectronicsDomain_Class : SubClass ElectronicsDomain ElectricalEngineeringDomain ; + + -- the electrode in a transistor where electrons originate + fun Emitter : Class ; + fun Emitter_Class : SubClass Emitter Terminal ; + + -- engineering (mechanical, electrical) + fun EngineeringDomain : Class ; + fun EngineeringDomain_Class : SubClass EngineeringDomain ScienceDomain ; + + -- a process of designing, manufacturing and + -- operating of an engineering system involving all stages of the life cycle. + fun EngineersProcess : Class ; + fun EngineersProcess_Class : SubClass EngineersProcess EngineersSubprocess ; + + -- a class of subprocesses that are needed to + -- design and operate an engineering system + fun EngineersSubprocess : Class ; + fun EngineersSubprocess_Class : SubClass EngineersSubprocess IntentionalProcess ; + + -- a mathematical statement that two expressions are equal. + fun Equation : Class ; + fun Equation_Class : SubClass Equation Proposition ; + + -- an attribute that applies to an equation + -- or to a set of equations + fun EquationAttribute : Class ; + fun EquationAttribute_Class : SubClass EquationAttribute InternalAttribute ; + + -- Field_effect transistor. + fun FetTransistor : Class ; + fun FetTransistor_Class : SubClass FetTransistor Transistor ; + + -- file system + fun FileSystem : Class ; + fun FileSystem_Class : SubClass FileSystem Group ; + + -- A DifferentialEquation + -- where variables are differentiated only once. + fun FirstOrderDifferentialEquation : Class ; + fun FirstOrderDifferentialEquation_Class : SubClass FirstOrderDifferentialEquation DifferentialEquation ; + + -- A FluidPowerDevice designed to transform + -- fluid_power energy into mechanical translatory energy. + fun FluidCylinder : Class ; + fun FluidCylinder_Class : SubClass FluidCylinder (both FluidPowerDevice MechanicalDevice) ; + + -- Fluid power energetic interaction + fun FluidPower : Ind PhysicalDomain ; + + -- An EngineeringComponent in function of + -- which play role fluid_power energetical interactions. + fun FluidPowerDevice : Class ; + fun FluidPowerDevice_Class : SubClass FluidPowerDevice EngineeringComponent ; + + -- fluid power (hydraulic) systems + fun FluidPowerDomain : Class ; + fun FluidPowerDomain_Class : SubClass FluidPowerDomain MechanicalEngineeringDomain ; + + -- PhysicalDimension of force, [N]. + fun Force : Ind PhysicalDimension ; + + -- Computing a Fourier series for given + -- periodic function + fun FourierAnalysis : Class ; + fun FourierAnalysis_Class : SubClass FourierAnalysis MathematicalMethod ; + + -- Reconstruction of a periodic function + -- from its Fourier series representation. + fun FourierSynthesis : Class ; + fun FourierSynthesis_Class : SubClass FourierSynthesis MathematicalMethod ; + + -- A Multipole with exactly four poles. + fun Fourpole : Class ; + fun Fourpole_Class : SubClass Fourpole Multipole ; + + -- Alters the frequency spectrum of signals + -- passing through it + fun FrequencyFilter : Class ; + fun FrequencyFilter_Class : SubClass FrequencyFilter ElectricalCircuit ; + + -- A MechanicalProcess in which mechanical + -- energy is converted into a heat + fun Friction : Class ; + fun Friction_Class : SubClass Friction MechanicalProcess ; + + -- a toothed wheel that engages another toothed + -- mechanism in order to change the speed or direction of transmitted motion. + fun Gear : Class ; + fun Gear_Class : SubClass Gear MechanicalDevice ; + + -- a pair of gears that are used to change speed or + -- direction of an angular motion, ideal gear train can be modeled using + -- a transformer. + fun GearTrain : Class ; + fun GearTrain_Class : SubClass GearTrain MechanicalDevice ; + + -- A device composed of several gear_trains used + -- to change speed and torque of transmitted motion. + fun Gearbox : Class ; + fun Gearbox_Class : SubClass Gearbox MechanicalDevice ; + + -- A Transducer for which the ratio of + -- across variable on one side and through variable on the + -- other side is equal to the ratio of the remaining two variables. + fun Gyrator : Class ; + fun Gyrator_Class : SubClass Gyrator Transducer ; + + -- A SinglePhaseRectifier of + -- that exploits only one polarity of the input power source. + fun HalfWaveSinglePhaseRectifier : Class ; + fun HalfWaveSinglePhaseRectifier_Class : SubClass HalfWaveSinglePhaseRectifier SinglePhaseRectifier ; + + -- A DifferentialEquation + -- where variables are differentiated more than once. + fun HigherOrderDifferentialEquation : Class ; + fun HigherOrderDifferentialEquation_Class : SubClass HigherOrderDifferentialEquation DifferentialEquation ; + + fun Human_ITAgent : SubClass Human ITAgent ; + + -- agent capable of performing ITProcess + fun ITAgent : Class ; + fun ITAgent_Class : SubClass ITAgent Agent ; + + -- A process performed on a computer by a human + -- operator. + fun ITProcess : Class ; + fun ITProcess_Class : SubClass ITProcess IntentionalProcess ; + + -- A Fourpole modeling an + -- OperationalAmplifier with ideal properties. + fun IdealOperationalAmplifier : Class ; + fun IdealOperationalAmplifier_Class : SubClass IdealOperationalAmplifier Fourpole ; + + -- A PureTwopole that models an ideal switch. + fun IdealSwitch : Class ; + fun IdealSwitch_Class : SubClass IdealSwitch PureTwopole ; + + -- A PureTwopole that is linear. + fun IdealTwopole : Class ; + fun IdealTwopole_Class : SubClass IdealTwopole PureTwopole ; + + -- Asserts that a constitutive relation of a multipole + -- does not refer to other variables than terminal or inner. + fun IndependentMultipole : Ind MultipoleAttribute ; + + -- A property of an electric circuit by which an + -- electromotive force is induced in it by a variation of current. + fun Inductance : Class ; -- subattribute PhysicalAttribute + + -- An electrical motor powered by a three_phase power suply. + fun InductionMotor : Class ; + fun InductionMotor_Class : SubClass InductionMotor ElectricalMotor ; + + -- An ElectricalComponent that introduces inductance into a circuit. + fun Inductor : Class ; + fun Inductor_Class : SubClass Inductor ElectricalComponent ; + + -- A ThroughVariableAccumulator from electrical energy domain. + fun InductorElement : Class ; + fun InductorElement_Class : SubClass InductorElement ElectricDevice ; + + -- An AcrossVariableAccumulator from translatory energy domain. + fun Inertor : Class ; + fun Inertor_Class : SubClass Inertor (both AcrossVariableAccumulator TranslatoryTwopole) ; + + -- The process of deploying an application + -- on a computer. + fun Installation : Class ; + fun Installation_Class : SubClass Installation ITProcess ; + + -- a Substance such as glass or + -- porcelain with negligible electrical conductivity. + fun InsulatorSubstance : Class ; + fun InsulatorSubstance_Class : SubClass InsulatorSubstance Substance ; + + -- An Amplifier that changes the polarity of the input signal. + fun InvertingAmplifier : Class ; + fun InvertingAmplifier_Class : SubClass InvertingAmplifier Amplifier ; + + -- Junction field_effect transistor. + fun JfetTransistor : Class ; + fun JfetTransistor_Class : SubClass JfetTransistor FetTransistor ; + + -- light emitted at a p_n junction is proportional + -- to the bias current, color depends on the material used + fun LED : Class ; + fun LED_Class : SubClass LED Diode ; + + -- PhysicalDimension of length, [m]. + fun Length : Ind PhysicalDimension ; + + -- adjective + fun LexAdjective : Ind LexiconCategory ; + + -- adverb + fun LexAdverb : Ind LexiconCategory ; + + -- noun + fun LexNoun : Ind LexiconCategory ; + + -- verb + fun LexVerb : Ind LexiconCategory ; + + -- WordNet category: noun, verb, adjective or adverb + fun LexiconCategory : Class ; + fun LexiconCategory_Class : SubClass LexiconCategory InternalAttribute ; + + -- library model + fun LibraryModelCategory : Ind DocumentCategory ; + + -- A polynomial Equation of the first degree. + fun LinearEquation : Class ; + fun LinearEquation_Class : SubClass LinearEquation Equation ; + + -- Asserts that the constitutive relation of + -- a multipole is linear. + fun LinearMultipole : Ind MultipoleAttribute ; + + -- A Method that involves using mathematical aparatus. + fun MathematicalMethod : Class ; + fun MathematicalMethod_Class : SubClass MathematicalMethod Method ; + + -- A model that uses the mathematical aparatus + fun MathematicalModel : Class ; + fun MathematicalModel_Class : SubClass MathematicalModel Model ; + + -- A model of a Pendulum consisting + -- of a mass hanged on a stiff string. + fun MathematicalPendulum : Class ; + fun MathematicalPendulum_Class : SubClass MathematicalPendulum MathematicalModel ; + + -- mathematics + fun MathematicsDomain : Class ; + fun MathematicsDomain_Class : SubClass MathematicsDomain NaturalSciencesDomain ; + + -- An EngineeringComponent in function of + -- which play role mechanical energetical interactions. + fun MechanicalDevice : Class ; + fun MechanicalDevice_Class : SubClass MechanicalDevice EngineeringComponent ; + + -- domain involving mechanical engineering + fun MechanicalEngineeringDomain : Class ; + fun MechanicalEngineeringDomain_Class : SubClass MechanicalEngineeringDomain EngineeringDomain ; + + -- A Process in which mechanical interactions take place + fun MechanicalProcess : Class ; + fun MechanicalProcess_Class : SubClass MechanicalProcess NaturalProcess ; + + -- a resonance of mechanical energy. + fun MechanicalResonance : Class ; + fun MechanicalResonance_Class : SubClass MechanicalResonance (both MechanicalProcess Resonance) ; + + -- basic (theoretic) mechanics + fun MechanicsDomain : Class ; + fun MechanicsDomain_Class : SubClass MechanicsDomain PhysicsDomain ; + + -- a way of doing something, esp. a systematic one; + -- implies an orderly logical arrangement (usually in steps). + fun Method : Class ; + fun Method_Class : SubClass Method Procedure ; + + -- An abstract object that models certain aspect of a + -- physical object, is subject to abstraction and idealization. + fun Model : Class ; + fun Model_Class : SubClass Model Abstract ; + + -- A creative process of creating a model. + fun Modeling : Class ; + fun Modeling_Class : SubClass Modeling IntentionalProcess ; + + -- Metal_oxyde semiconductor field_effect + -- transistor. + fun MosfetTransistor : Class ; + fun MosfetTransistor_Class : SubClass MosfetTransistor FetTransistor ; + + -- An actuator intended to deliver mechanical power + fun Motor : Class ; + fun Motor_Class : SubClass Motor MechanicalDevice ; + + -- Basic element of a multipole diagram, a + -- multipole is a model of a component of a dynamic system, it can model a + -- real separable component, such as a motor of a vehicle, or just an + -- attribute of the system, such as inertia or friction, multipole interacts + -- with other multipoles through its poles. Multipole Each multipole must have at least one section. + fun Multipole : Class ; + fun Multipole_Class : SubClass Multipole Model ; + + -- a set of tags that can be associated with multipoles + fun MultipoleAttribute : Class ; + fun MultipoleAttribute_Class : SubClass MultipoleAttribute InternalAttribute ; + + -- Graphical representation of a MultipoleModel. + fun MultipoleDiagram : Class ; + fun MultipoleDiagram_Class : SubClass MultipoleDiagram ContentBearingObject ; + + -- Model of a physical system consisting of + -- mutually interconnected multipoles. + fun MultipoleModel : Class ; + fun MultipoleModel_Class : SubClass MultipoleModel Model ; + + -- modeling of a dynamic system by means of + -- its representation by a multipole diagram. + fun MultipoleModeling : Class ; + fun MultipoleModeling_Class : SubClass MultipoleModeling Modeling ; + + -- A part of multipole pole that models + -- a single energetical interaction. If a pole belongs to a multipole, it also belongs to + -- one of its sections. + fun MultipolePole : Class ; + fun MultipolePole_Class : SubClass MultipolePole Model ; + + -- MultipoleSection that contains exactly two + -- poles. MultipolePort Ports do not have three distinct poles. + fun MultipolePort : Class ; + fun MultipolePort_Class : SubClass MultipolePort MultipoleSection ; + + -- One of the postulates of the multipole modeling theory. + fun MultipolePostulate : Class ; + + -- a multipole variable that have physical + -- dimension and meaning. + fun MultipoleQuantity : Class ; + fun MultipoleQuantity_Class : SubClass MultipoleQuantity Quantity ; + + -- A set of poles that is subject to + -- the postulate of continuity. A multipole may consist of one or + -- more sections. Sections of a single multipole do not overlap + -- and cover all its poles. MultipoleSection Each section must have at least two distinct poles. + fun MultipoleSection : Class ; + fun MultipoleSection_Class : SubClass MultipoleSection Model ; + + -- a variable that describes energetical + -- interactions between multipoles. + fun MultipoleVariable : Class ; + fun MultipoleVariable_Class : SubClass MultipoleVariable Number ; + + -- Property whereby an electromotive force is + -- induced in a circuit by variation of current in a neighboring circuit. + fun MutualInductance : Class ; + fun MutualInductance_Class : SubClass MutualInductance Inductance ; + + -- natural sciences (mathematics, physics) + fun NaturalSciencesDomain : Class ; + fun NaturalSciencesDomain_Class : SubClass NaturalSciencesDomain ScienceDomain ; + + -- A body remains at rest or in motion with + -- a constant velocity unless acted upon by an external force + fun NewtonsFirstLaw : Class ; + fun NewtonsFirstLaw_Class : SubClass NewtonsFirstLaw NewtonsLaw ; + + -- One of three basic laws of classical mechanics. + fun NewtonsLaw : Class ; + fun NewtonsLaw_Class : SubClass NewtonsLaw ScientificLaw ; + + -- The rate of change of momentum is + -- proportional to the imposed force and goes in the direction of + -- the force + fun NewtonsSecondLaw : Class ; + fun NewtonsSecondLaw_Class : SubClass NewtonsSecondLaw NewtonsLaw ; + + -- Action and reaction are equal and opposite. + fun NewtonsThirdLaw : Class ; + fun NewtonsThirdLaw_Class : SubClass NewtonsThirdLaw NewtonsLaw ; + + -- An Amplifier that does not change the polarity + -- of the input signal. + fun NoninvertingAmplifier : Class ; + fun NoninvertingAmplifier_Class : SubClass NoninvertingAmplifier Amplifier ; + + -- The description of the entity (e.g. a Model) + -- involves nonlinear functions. + fun Nonlinear : Class ; + fun Nonlinear_Class : SubClass Nonlinear InternalAttribute ; + + -- An ElectricalMultipoleModel containing + -- nonlinear multipoles. + fun NonlinearCircuit : Class ; + fun NonlinearCircuit_Class : SubClass NonlinearCircuit ElectricalMultipoleModel ; + + -- An Equation that is not a LinearEquation. + fun NonlinearEquation : Class ; + fun NonlinearEquation_Class : SubClass NonlinearEquation Equation ; + + -- A BjtTransistor with N_P_N junctions. + fun NpnTransistor : Class ; + fun NpnTransistor_Class : SubClass NpnTransistor BjtTransistor ; + + -- A complex semiconductor device with + -- behaviour similar to the IdealOperationalAmplifier. + fun OperationalAmplifier : Class ; + fun OperationalAmplifier_Class : SubClass OperationalAmplifier ElectricalCircuit ; + + -- A DifferentialEquation + -- that is not a PartialDifferentialEquation. + fun OrdinaryDifferentialEquation : Class ; + fun OrdinaryDifferentialEquation_Class : SubClass OrdinaryDifferentialEquation DifferentialEquation ; + + -- Resonance taking place in a series RLC + -- circuit, i.e. in a circuit where its elements are connected in_series. + fun ParallelResonance : Class ; + fun ParallelResonance_Class : SubClass ParallelResonance ElectricalResonance ; + + -- A DifferentialEquation + -- involving a functions of more than one variable. + fun PartialDifferentialEquation : Class ; + fun PartialDifferentialEquation_Class : SubClass PartialDifferentialEquation DifferentialEquation ; + + -- A MechanicalDevice of an object mounted so that + -- it swings freely under the influence of gravity. + fun Pendulum : Class ; + fun Pendulum_Class : SubClass Pendulum MechanicalDevice ; + + -- A DC motor in which the auxiliary + -- magnetic field is provided by a permanent magnet. + fun PermanentMagnetDcMotor : Class ; + fun PermanentMagnetDcMotor_Class : SubClass PermanentMagnetDcMotor DcMotor ; + + -- A physical dimension such as + -- length, mass, force etc. + fun PhysicalDimension : Class ; + fun PhysicalDimension_Class : SubClass PhysicalDimension Quantity ; + + -- An attribute of a multipole pole describing + -- the kind of physical interaction the pole models. + fun PhysicalDomain : Class ; + fun PhysicalDomain_Class : SubClass PhysicalDomain InternalAttribute ; + + -- physics + fun PhysicsDomain : Class ; + fun PhysicsDomain_Class : SubClass PhysicsDomain NaturalSciencesDomain ; + + -- A BjtTransistor with P_N_P junctions. + fun PnpTransistor : Class ; + fun PnpTransistor_Class : SubClass PnpTransistor BjtTransistor ; + + -- The sum of through variables of + -- poles of multipole section is equal to zero. + fun PostulateOfContinuity : Class ; + fun PostulateOfContinuity_Class : SubClass PostulateOfContinuity MultipolePostulate ; + + -- PhysicalDimension of power, [W]. + fun Power : Ind PhysicalDimension ; + + -- power electronic circuits (power supplies etc.) + fun PowerElectronicsDomain : Class ; + fun PowerElectronicsDomain_Class : SubClass PowerElectronicsDomain ElectronicsDomain ; + + -- PhysicalDimension of pressure, [Pa],[N.m^_2]. + fun Pressure : Ind PhysicalDimension ; + + -- valve that controls the pressure in a fluid + fun PressureControlValve : Class ; + fun PressureControlValve_Class : SubClass PressureControlValve Valve ; + + -- A Twopole that models single physical + -- phenomenon, its constitutive relation has special structure. + fun PureTwopole : Class ; + fun PureTwopole_Class : SubClass PureTwopole Twopole ; + + -- Pulse_width modulation technique + fun Pwm : Class ; + fun Pwm_Class : SubClass Pwm ElectricalEngineeringMethod ; + + -- An ElectricalMultipoleModel containing + -- a ResistorElement and a CapacitorElement. + fun RCCircuit : Class ; + fun RCCircuit_Class : SubClass RCCircuit ElectricalMultipoleModel ; + + -- An ElectricalMultipoleModel containing + -- a ResistorElement, an InductorElement and a CapacitorElement. + fun RLCCircuit : Class ; + fun RLCCircuit_Class : SubClass RLCCircuit ElectricalMultipoleModel ; + + -- An ElectricalMultipoleModel containing + -- a ResistorElement and an InductorElement. + fun RLCircuit : Class ; + fun RLCircuit_Class : SubClass RLCircuit ElectricalMultipoleModel ; + + -- electrical device that transforms alternating + -- into direct current. + fun Rectifier : Class ; + fun Rectifier_Class : SubClass Rectifier ElectricalCircuit ; + + -- an electro_mechanical device used as a controlled switch + fun Relay : Class ; + fun Relay_Class : SubClass Relay (both ElectricalComponent MechanicalDevice) ; + + -- relays + fun RelaysDomain : Class ; + fun RelaysDomain_Class : SubClass RelaysDomain ElectroMechanicalDevicesDomain ; + + -- Most common type of a presure control valve; + -- it consists of a piston that is retained on its seat by a spring + fun ReliefValve : Class ; + fun ReliefValve_Class : SubClass ReliefValve PressureControlValve ; + + -- A material's opposition to the flow of + -- electric current. + fun Resistivity : Ind PhysicalAttribute ; + + -- An ElectricalComponent that resists the flow of + -- electrical current. A Dissipator from electrical energy domain. + fun ResistorElement : Class ; + fun ResistorElement_Class : SubClass ResistorElement (both ElectricDevice ElectricalComponent) ; + + -- a vibration of large amplitude produced by + -- a relatively small vibration near the same frequency of vibration + -- as the natural frequency of the resonating system. + fun Resonance : Class ; + fun Resonance_Class : SubClass Resonance NaturalProcess ; + + -- Root_locus control design method + fun RootLocus : Class ; + fun RootLocus_Class : SubClass RootLocus ControlDesignMethod ; + + -- Mechanic rotary energetic interaction + fun Rotary : Ind PhysicalDomain ; + + -- The Rotating component of a motor, generator or similar + -- Device. Rotor The rotating armature of a motor or generator. + fun Rotor : Class ; + fun Rotor_Class : SubClass Rotor (both EngineeringComponent (both ElectricDevice MechanicalDevice)) ; + + -- science (natural sciences, engineering, medicine...) + fun ScienceDomain : Class ; + fun ScienceDomain_Class : SubClass ScienceDomain ApplicationDomain ; + + -- A generalization based on recurring facts or events + -- (in science or mathematics etc) + fun ScientificLaw : Class ; + fun ScientificLaw_Class : SubClass ScientificLaw Proposition ; + + -- An electrical device that exploits + -- properties of semiconductors. + fun SemiconductorComponent : Class ; + fun SemiconductorComponent_Class : SubClass SemiconductorComponent ElectricalComponent ; + + -- A DC motor in which the auxiliary + -- magnetic field is provided an active circuit. + fun SeparatelyExcitedDcMotor : Class ; + fun SeparatelyExcitedDcMotor_Class : SubClass SeparatelyExcitedDcMotor DcMotor ; + + -- Resonance taking place in a parallel RLC + -- circuit, i.e. in a circuit where its elements are connected in_parallel. + fun SeriesResonance : Class ; + fun SeriesResonance_Class : SubClass SeriesResonance ElectricalResonance ; + + -- A Set of equations + fun SetOfEquations : Class ; + fun SetOfEquations_Class : SubClass SetOfEquations Set ; + + -- A revolving rod that transmits power or motion. + fun Shaft : Class ; + fun Shaft_Class : SubClass Shaft MechanicalDevice ; + + -- A PowerSource of single phase + -- alternating current. + fun SinglePhasePowerSource : Class ; + fun SinglePhasePowerSource_Class : SubClass SinglePhasePowerSource PowerSource ; + + -- A Rectifier of single phase AC + -- voltage. + fun SinglePhaseRectifier : Class ; + fun SinglePhaseRectifier_Class : SubClass SinglePhaseRectifier Rectifier ; + + -- solved example + fun SolvedExampleCategory : Ind DocumentCategory ; + + -- A PureTwopole that models a generator of either across or through variable. + fun Source : Class ; + fun Source_Class : SubClass Source PureTwopole ; + + -- a directional control valve that uses a spool + -- to control the direction of flow + fun SpoolValve : Class ; + fun SpoolValve_Class : SubClass SpoolValve DirectionalControlValve ; + + -- a metal device that returns to its shape or + -- position when pushed or pulled or pressed + fun Spring : Class ; + fun Spring_Class : SubClass Spring MechanicalDevice ; + + -- A ThroughVariableAccumulator from translatory energy domain. + fun SpringElement : Class ; + fun SpringElement_Class : SubClass SpringElement (both ThroughVariableAccumulator TranslatoryTwopole) ; + + -- Stationary part of a motor or generator in or + -- around which the rotor revolves. + fun Stator : Class ; + fun Stator_Class : SubClass Stator (both ElectricDevice MechanicalDevice) ; + + -- The physical property of being inflexible + -- and hard to stretch. + fun Stiffness : Ind PhysicalAttribute ; + + -- a process of designing an engineering system + fun SystemDesign : Class ; + fun SystemDesign_Class : SubClass SystemDesign EngineersSubprocess ; + + -- a process of specifying requirements + -- on a system + fun SystemSpecification : Class ; + fun SystemSpecification_Class : SubClass SystemSpecification EngineersSubprocess ; + + -- A practical Method or art applied to some + -- particular task + fun Technique : Class ; + fun Technique_Class : SubClass Technique Method ; + + -- a point on an electrical device (such as a + -- battery) at which electric current enters or leaves + fun Terminal : Class ; -- meronym ElectricalComponent + + -- A PowerSource of three phase + -- alternating current. + fun ThreePhasePowerSource : Class ; + fun ThreePhasePowerSource_Class : SubClass ThreePhasePowerSource PowerSource ; + + -- A Rectifier of single phase AC + -- voltage. + fun ThreePhaseRectifier : Class ; + fun ThreePhaseRectifier_Class : SubClass ThreePhaseRectifier Rectifier ; + + -- A PureTwopole that accumulates through variable. + fun ThroughVariableAccumulator : Class ; + fun ThroughVariableAccumulator_Class : SubClass ThroughVariableAccumulator PureTwopole ; + + -- A Source that models a generator of through variable. + fun ThroughVariableSource : Class ; + fun ThroughVariableSource_Class : SubClass ThroughVariableSource Source ; + + -- a SemiconductorComponent that consists of three + -- p_n junctions, it is used e.g. in controlled rectifiers. + fun Thyristor : Class ; + fun Thyristor_Class : SubClass Thyristor SemiconductorComponent ; + + -- PhysicalDimension of torque, [N/m]. + fun Torque : Ind PhysicalDimension ; + + -- A Transducer for which the ratio of + -- across variables and through variables respectively is equal. + fun Transformer : Class ; + fun Transformer_Class : SubClass Transformer Transducer ; + + -- An ElectricalDevice by which alternating + -- current of one voltage is changed to another voltage. + fun TransformerDevice : Class ; + fun TransformerDevice_Class : SubClass TransformerDevice ElectricDevice ; + + -- A semiconductor device capable of amplification + -- or switching. + fun Transistor : Class ; + fun Transistor_Class : SubClass Transistor SemiconductorComponent ; + + -- Mechanic translatory energetic interaction + fun Translatory : Ind PhysicalDomain ; + + -- A PureTwopole from translatory energy domain. + fun TranslatoryTwopole : Class ; + fun TranslatoryTwopole_Class : SubClass TranslatoryTwopole PureTwopole ; + + fun Truck_Car : SubClass Truck Car ; + + -- tutorial + fun TutorialCategory : Ind DocumentCategory ; + + -- A Multipole with exactly two poles. Twopole Twopole has exactly one port. + fun Twopole : Class ; + fun Twopole_Class : SubClass Twopole Multipole ; + + -- A Multipole with exactly two sections. + fun Twoport : Class ; + fun Twoport_Class : SubClass Twoport Fourpole ; + + -- The process of removing of an installed + -- application from a computer. + fun UnInstallation : Class ; + fun UnInstallation_Class : SubClass UnInstallation ITProcess ; + + -- An EngineeringComponent for which + -- the principal physical domain is not specified. + fun UnknownDomainDevice : Class ; + fun UnknownDomainDevice_Class : SubClass UnknownDomainDevice EngineeringComponent ; + + -- A hydraulic valve. + fun Valve : Class ; + fun Valve_Class : SubClass Valve (both FluidPowerDevice MechanicalDevice) ; + + -- Bessel's equation + fun VanderpolsEquation : Class ; + fun VanderpolsEquation_Class : SubClass VanderpolsEquation (both NonlinearEquation OrdinaryDifferentialEquation) ; + + -- PhysicalDimension of velocity, [m/s]. + fun Velocity : Ind PhysicalDimension ; + + -- PhysicalDimension of voltage, [V]. + fun Voltage : Ind PhysicalDimension ; + + -- valve that controls the flow rate of + -- a fluid + fun VolumeControlValve : Class ; + fun VolumeControlValve_Class : SubClass VolumeControlValve Valve ; + + -- PhysicalDimension of volume flow, [m^_3]. + fun VolumeFlow : Ind PhysicalDimension ; + + -- knowledge base document _ a document in natural language + -- representing one piece of knowledge in the knowledge base + fun WebDocument : Class ; + fun WebDocument_Class : SubClass WebDocument ContentBearingObject ; + + -- knowledge base document attribute + fun WebDocumentAttribute : Class ; + fun WebDocumentAttribute_Class : SubClass WebDocumentAttribute InternalAttribute ; + + fun ZenerDiode : Class ; + fun ZenerDiode_Class : SubClass ZenerDiode Diode ; + + -- A meronymy relation similar to part, but + -- for abstract rather than physical things. + fun abstractPart : El Abstract -> El Abstract -> Formula; + + -- multipole pole has across variable + fun hasAcrossVariable : El MultipolePole -> El MultipoleVariable -> Formula ; + + -- multipole quantity has certain dimension + fun hasDimension : El MultipoleQuantity -> El PhysicalDimension -> Formula ; + + -- multipole pole has through variable + fun hasThroughVariable : El MultipolePole -> El MultipoleVariable -> Formula ; + + -- multipole quantity has certain variable + fun hasVariable : El MultipoleQuantity -> El MultipoleVariable -> Formula ; + + -- associates a SUMO concept with a lexicon word + fun lexicon : El SetOrClass -> El LexiconCategory -> El SymbolicString -> Formula ; + + -- A relation similar to WordNet meronymy relation. + -- If class A is a meronym of class B, it means that instances of A + -- typically are parts of instances of B. + fun meronym : Desc Object -> Desc Object -> Formula ; + + -- A relation signaling that certain model is + -- convenient for modeling of certain class of devices. + fun models : El Model -> El EngineeringComponent -> Formula ; + + -- Relation that holds for pairs of physical + -- dimensions that multiply up into a physical dimension of Power. + -- The first is considered for across variable, the second for through variable. + fun physicalDomain : El PhysicalDimension -> El PhysicalDimension -> El PhysicalDomain -> Formula ; + +} diff --git a/examples/SUMO/EngineeringEng.gf b/examples/SUMO/EngineeringEng.gf new file mode 100644 index 000000000..5b7c29d4e --- /dev/null +++ b/examples/SUMO/EngineeringEng.gf @@ -0,0 +1,7 @@ +concrete EngineeringEng of Engineering = MidLevelOntologyEng ** open DictLangEng, DictEng, ParadigmsEng in { + +lin + Battery = UseN battery_N ; + Rotor = UseN rotor_N ; + +} diff --git a/examples/SUMO/FinancialOntology.gf b/examples/SUMO/FinancialOntology.gf index 8a9c97174..1a8b2a4e3 100644 --- a/examples/SUMO/FinancialOntology.gf +++ b/examples/SUMO/FinancialOntology.gf @@ -1,1740 +1,1586 @@ -abstract FinancialOntology = open Merge, Mid_level_ontology in { +abstract FinancialOntology = MidLevelOntology ** { + + -- The highest rating given by bond rating agencies + fun AAA_Rating : Ind FinancialRating ; + + -- All_or_none order (AON) is a type of option order + -- which requires that the order be executed completely or not at all. An AON + -- order may be either a day order or a GTC order. + fun AONOrder : Class ; + fun AONOrder_Class : SubClass AONOrder FinancialOrder ; + + -- (Automatic Teller Machine) A banking terminal that + -- accepts deposits and dispenses cash. ATMs are activated by inserting a cash or + -- credit card that contains the user's account number and PIN on a magnetic stripe. + -- The ATM calls up the bank's computers to verify the balance, dispenses the cash + -- and then transmits a completed transaction notice. + fun ATMMachine : Class ; + fun ATMMachine_Class : SubClass ATMMachine StationaryArtifact ; + + -- A narrow opening in an ATM machine where cards are inserted. + fun ATMSlot : Class ; + fun ATMSlot_Class : SubClass ATMSlot Hole ; + + -- A unary function that maps a FinancialAsset to the FinancialAccount + -- associated with the Asset. + fun AccountFn : El FinancialAsset -> Ind FinancialAccount ; + + fun Active : Ind StatusAttribute ; + + -- An InterestBearingAccount in which + -- the interest rate is adjusted periodically, usually based on a standard + -- market rate outside the control of the bank or savings institution, such + -- as that prevailing on TreasuryBill or the primeInterestRate. + fun AdjustableRateAccount : Class ; + fun AdjustableRateAccount_Class : SubClass AdjustableRateAccount InterestBearingAccount ; + + fun AmericanExpressCard : Class ; + fun AmericanExpressCard_Class : SubClass AmericanExpressCard CreditCard ; + + -- An option that can be exercised at any time + -- prior to its expiration date + fun AmericanStyleOption : Ind Option ; + + -- A contract sold by an insurance company designed to provide + -- payments to the holder at specified intervals, usually after retirement. FixedAnnuities + -- guarantee a certain payment amount, while VariableAnnuities do not, but do have the + -- potential for greater returns, but both are relatively safe, low_yielding investments. + fun Annuity : Class ; + fun Annuity_Class : SubClass Annuity FinancialContract ; + + -- The process of dividing investments among different kinds of + -- assets, such as Stocks, Bonds, RealEstate and cash, to optimize the risk/reward tradeoff based + -- on an individual's or institution's specific situation and goals. + fun AssetAllocation : Class ; + fun AssetAllocation_Class : SubClass AssetAllocation FinancialTransaction ; + + -- An activity which approves or + -- disapproves a transaction. + fun AuthorizationOfTransaction : Class ; + fun AuthorizationOfTransaction_Class : SubClass AuthorizationOfTransaction (both ControllingAnAccount (both FinancialService RegulatoryProcess)) ; + + -- Transactions which occur through computer + -- networks and which do not require direct management. + fun AutomaticTransaction : Class ; + fun AutomaticTransaction_Class : SubClass AutomaticTransaction FinancialTransaction ; + + -- A mid_range rating given by bond rating agencies. + fun B_Rating : Ind FinancialRating ; + + -- A long_term loan, often a mortgage, that has + -- one large payment (the balloon payment) due upon maturity. Often done + -- when refinancing or a major cash flow event is anticipated. + fun BalloonLoan : Class ; + fun BalloonLoan_Class : SubClass BalloonLoan Loan ; + + -- A CreditCard or a DebitCard issued by a + -- FinancialOrganization. + fun BankCard : Class ; + fun BankCard_Class : SubClass BankCard FinancialInstrument ; + + -- A monthly report sent to a debtor or bank depositor. + fun BankStatement : Class ; + fun BankStatement_Class : SubClass BankStatement Proposition ; + + -- A bank loan terminating in one year or more. + fun BankTermLoan : Class ; + fun BankTermLoan_Class : SubClass BankTermLoan Loan ; + + -- An organization, chartered by a state or + -- federal government, which does most or all of the following: receives Deposits, + -- honors FinancialInstruments drawn on them, and pays Interest on them, discounts + -- Notes, makes Loans, and invests in SecuredLoans, collects Checks, Drafts + -- and Notes, certifies depositor's checks, and issues drafts and Cashier's checks. + fun Bank_FinancialOrganization : Class ; + fun Bank_FinancialOrganization_Class : SubClass Bank_FinancialOrganization FinancialOrganization ; + + -- An adjective describing the opinion that a stock, or + -- a market in general, will decline in price __ a negative or pessimistic outlook. + fun Bearish : Class ; + fun Bearish_Class : SubClass Bearish InvestmentAttribute ; + + -- Stock with a solid and stable earnings record from a + -- company that either leads or dominates or is a major player in a specific industry. + fun BlueChipStock : Class ; + fun BlueChipStock_Class : SubClass BlueChipStock Stock ; + + -- A debt instrument issued for a period of more than one year with + -- the purpose of raising capital by borrowing. The Federal government, states, cities, + -- corporations, and many other types of institutions sell bonds. A bond is generally a + -- promise to repay the principal along with interest on a specified maturityDate. + fun Bond : Class ; + fun Bond_Class : SubClass Bond (both FinancialInstrument Investment) ; + + -- Stock in a short sale. + fun BorrowedStock : Class ; + fun BorrowedStock_Class : SubClass BorrowedStock Stock ; + + -- Short_term financing which is expected to be paid back relatively + -- quickly, such as by a subsequent longer_term loan. + fun BridgeLoan : Class ; + fun BridgeLoan_Class : SubClass BridgeLoan Loan ; + + -- An individual or firm which acts as an intermediary between + -- a buyer and seller, usually charging a commisssion. + fun Broker : Class ; + fun Broker_Class : SubClass Broker CognitiveAgent ; + + -- Money lent to brokers by banks, for financing + -- the underwriting of new issues, financing customer margin accounts, and + -- other purposes. + fun BrokerLoan : Class ; + fun BrokerLoan_Class : SubClass BrokerLoan Loan ; + + -- A fund that a customer has entrusted to + -- a securities brokerage. + fun BrokerageAccount : Ind InvestmentAccount ; + + -- An attribute describing the opinion that a stock, or the + -- market in general, will rise in price __ a positive or optimistic outlook. + fun Bullish : Class ; + fun Bullish_Class : SubClass Bullish InvestmentAttribute ; + + -- A complex option strategy that involves + -- selling two calls and buying two calls on the same or different markets, + -- with several maturity dates. One of the options has a higher exercise + -- price and the other has a lower exercise price than the other two options. + -- The payoff diagram resembles the shape of a butterfly. + fun ButterflySpread : Class ; + fun ButterflySpread_Class : SubClass ButterflySpread SpreadOption ; + + -- A mid_range rating given by bond rating agencies. + fun C_Rating : Ind FinancialRating ; + + fun Call : Class ; + fun Call_Class : SubClass Call FinancialTransaction ; + + -- An option contract that gives the holder the + -- right to buy a certain quantity (usually 100 shares) of an underlying + -- security from the writer of the option, at a specified price (the strike + -- price) up to a specified date (the expiration date). + fun CallOption : Class ; + fun CallOption_Class : SubClass CallOption Option ; + + -- A bond which the issuer has the right to redeem + -- prior to its maturity date, under certain conditions. + fun CallableBond : Class ; + fun CallableBond_Class : SubClass CallableBond Bond ; + + -- A loan that must repaid upon the lender's demand. + fun CallableLoan : Class ; + fun CallableLoan_Class : SubClass CallableLoan Loan ; + + fun CancellingAnOrder : Class ; + fun CancellingAnOrder_Class : SubClass CancellingAnOrder FinancialTransaction ; + + -- Circulating paper money + fun Cash : Class ; + fun Cash_Class : SubClass Cash (both FinancialAsset FinancialInstrument) ; + + -- CDs (certificates of deposit) are bank, credit union or savings + -- and loan instruments that allow the depositor to lock in an interest rate for a specific period of + -- time (e.g. six months, one year, five years). If the money is withdrawn from the CD before the CD + -- matures, there is likely to be an early_withdrawal penalty __ often three month's interest. Generally, + -- the longer the time period of the CD, the higher the interest paid. + fun CertificateOfDeposit : Class ; + fun CertificateOfDeposit_Class : SubClass CertificateOfDeposit SavingsAccount ; + + -- A FinancialInstrument drawn against deposited funds, + -- to pay a specified amount of money to a specific person upon demand. + fun Check : Class ; + fun Check_Class : SubClass Check FinancialInstrument ; + + -- A bank account against which the depositor can draw checks + fun CheckingAccount : Class ; + fun CheckingAccount_Class : SubClass CheckingAccount DepositAccount ; + + -- The attribute which describes services that are + -- shut or closed. + fun ClosedService : Ind ServiceAttribute ; + + -- An activity of closing a financial account + fun ClosingAnAccount : Class ; + fun ClosingAnAccount_Class : SubClass ClosingAnAccount FinancialTransaction ; + + -- Assets pledged by a borrower to secure a loan or other credit, and + -- subject to seizure in the event of FinancialDefault. + fun Collateral : Class ; + fun Collateral_Class : SubClass Collateral FinancialAsset ; + + -- Securities representing equity, ownership in a + -- Corporation, providing voting rights, and entitling the holder to a share + -- of the company's success through dividends and/or capital appreciation. + -- In the event of liquidation, common stock holders have rights to a + -- company's assets only after bondholders, other debt holders, and + -- PreferredStock holders have been satisfied. + fun CommonStock : Class ; + fun CommonStock_Class : SubClass CommonStock Stock ; + + -- The replacement of multiple loans with a single loan, often + -- with a lower monthly payment and a longer repayment period. + fun ConsolidationLoan : Class ; + fun ConsolidationLoan_Class : SubClass ConsolidationLoan Loan ; + + -- An inflationary indicator that measures + -- the change in the cost of a fixed basket of products and services, + -- including housing, electricity, food, and transportation. The CPI is + -- published monthly. + fun ConsumerPriceIndex : Class ; + fun ConsumerPriceIndex_Class : SubClass ConsumerPriceIndex InflationIndex ; + + -- Attribute that applies to Propositions where + -- something is promised in return, i.e. a reciprocal promise. + fun Contract : Class ; -- make subclass with Promise + + -- An activity of controlling a financial account + fun ControllingAnAccount : Class ; + fun ControllingAnAccount_Class : SubClass ControllingAnAccount FinancialTransaction ; + + -- A mortgage that is not insured or guaranteed + -- by the government. + fun ConventionalMortgage : Class ; + fun ConventionalMortgage_Class : SubClass ConventionalMortgage Mortgage ; + + -- Short_term option contracts. + fun ConventionalOption : Class ; + fun ConventionalOption_Class : SubClass ConventionalOption Option ; + + -- This is the class of accounts held by corporations. This class + -- is disjoint with PersonalAccounts. + fun CorporateAccount : Class ; + fun CorporateAccount_Class : SubClass CorporateAccount FinancialAccount ; + + -- A bond issued by a corporation. Such bonds usually have + -- a par value of 1,000, are taxable, have a term maturity, are paid for out of a sinking + -- fund accumulated for that purpose, and are traded on major exchanges. + fun CorporateBond : Class ; + fun CorporateBond_Class : SubClass CorporateBond (both Bond TaxableInvestment) ; + + -- An unregistered, negotiable bond on which interest and principal + -- are payable to the holder, regardless of whom it was originally issued to. The coupons are + -- attached to the bond, and each coupon represents a single interest payment. The holder submits + -- a coupon, usually semi_annually, to the issuer or paying agent to receive payment. Coupon bonds + -- are being phased out in favor of registered bonds. + fun CouponBond : Class ; + fun CouponBond_Class : SubClass CouponBond Bond ; + + -- Credit extended by a business to a customer + fun CreditAccount : Class ; + fun CreditAccount_Class : SubClass CreditAccount LiabilityAccount ; + + -- Any card that may be used repeatedly to borrow money + -- or buy products and services on credit. Issued by banks, savings and loans, retail + -- stores, and other businesses. + fun CreditCard : Class ; + fun CreditCard_Class : SubClass CreditCard BankCard ; + + -- A type of CreditAccount which uses a CreditCard for + -- FinancialTransactions. + fun CreditCardAccount : Class ; + fun CreditCardAccount_Class : SubClass CreditCardAccount CreditAccount ; + + -- Credit unions are non_profit, member_owned, financial + -- cooperatives. They are operated entirely by and for their members. When you deposit + -- money in a credit union, you become a member of the union because your deposit is + -- considered partial ownership in the credit union. Many large organizations have + -- established credit unions for their employees. + fun CreditUnion : Class ; + fun CreditUnion_Class : SubClass CreditUnion FinancialOrganization ; + + -- A unary function that maps a FinancialAccount to the + -- currency linked to the account. + fun CurrencyFn : El FinancialAccount -> Ind FinancialInstrument ; + + -- The lowest rating given by bond rating agencies. + fun D_Rating : Ind FinancialRating ; + + -- A bank loan to a broker for the purchase of securities pending delivery + -- through clearing later the same day. + fun DayLoan : Class ; + fun DayLoan_Class : SubClass DayLoan Loan ; + + -- A type of option order which instructs the broker + -- to cancel any unfilled portion of the order at the close of trading on the + -- day the order is first entered. + fun DayOrder : Class ; + fun DayOrder_Class : SubClass DayOrder FinancialOrder ; + + -- A card which allows customers to access their funds + -- immediately, electronically. Unlike a credit card, a debit card does not have + -- any float. + fun DebitCard : Class ; + fun DebitCard_Class : SubClass DebitCard BankCard ; + + -- DefensiveStocks are stocks of food companies, drug + -- manufacturers and utility companies. + fun DefensiveStock : Class ; + fun DefensiveStock_Class : SubClass DefensiveStock Stock ; + + -- A company retirement plan, such as + -- a 401(k) or 403(b), in which the employee elects to defer some amount of + -- his/her salary into the plan and bears the investment risk. + fun DefinedContributionPlan : Class ; + fun DefinedContributionPlan_Class : SubClass DefinedContributionPlan PensionPlan ; + + -- An Activity of money being transferred into a customer's + -- account at a financial institution. + fun Deposit : Class ; + fun Deposit_Class : SubClass Deposit FinancialTransaction ; + + -- An account where money is deposited for checking, savings or + -- brokerage use. + fun DepositAccount : Class ; + fun DepositAccount_Class : SubClass DepositAccount FinancialAccount ; + + -- An activity of depositing a check into a + -- FinancialOrganization. + fun DepositingACheck : Class ; + fun DepositingACheck_Class : SubClass DepositingACheck UsingAnAccount ; + + -- A distribution from qualified pension plan, 401(k) + -- plan, or 403(b) plan, that is remitted directly to the trustee, custodian, or + -- issuer of the receiving IRA and is reported to the IRS as a rollover. This can only + -- be done once per year, per account. + fun DirectRollover : Class ; + fun DirectRollover_Class : SubClass DirectRollover Rollover ; + + fun DiscoverCard : Class ; + fun DiscoverCard_Class : SubClass DiscoverCard CreditCard ; + + -- A taxable payment declared by a company's board of directors + -- and given to its shareHolders out of the company's current or retained earnings. + -- Usually quarterly. Usually given as cash, but it can also take the form of Stock or + -- other property. + fun Dividend : Class ; + fun Dividend_Class : SubClass Dividend Payment ; + + -- A stock market transaction (or sometimes, a quote) + -- at a price lower than the preceding one for the same security. + fun Downtick : Class ; + fun Downtick_Class : SubClass Downtick StockMarketTransaction ; + + -- An activity of paying by a check. + fun DrawingACheck : Class ; + fun DrawingACheck_Class : SubClass DrawingACheck UsingAnAccount ; + + -- Data which provide information about or + -- predict the overall health of the economy or the financial markets, + -- examples are inflation, interest rates, employment, etc. + fun EconomicIndicator : Class ; + fun EconomicIndicator_Class : SubClass EconomicIndicator Proposition ; + + fun Employment : Class ; + fun Employment_Class : SubClass Employment (both FinancialContract ServiceContract) ; + + -- A subclass of AuthorizationOfTransaction where + -- a customer enters his/her personal identification number. + fun EnteringAPin : Class ; + fun EnteringAPin_Class : SubClass EnteringAPin AuthorizationOfTransaction ; + + fun EnteringAPing : Class ; + fun EnteringAPing_Class : SubClass EnteringAPing ContentDevelopment ; + + -- An option on shares of an individual common stock. + fun EquityOption : Class ; + fun EquityOption_Class : SubClass EquityOption Option ; + + -- An option that can be exercised only during + -- a specified period of time just prior to its expiration. + fun EuropeanStyleOption : Ind Option ; + + -- A short_term loan which is continually renewed rather than repaid. + fun EvergreenLoan : Class ; + fun EvergreenLoan_Class : SubClass EvergreenLoan Loan ; + + -- An activity when the owner of the the Option + -- contract invokes his rights. In the case of a call, the option owner buys the + -- underlying stock. In the case of a put, the option owner sells the underlying stock. + fun ExerciseAnOption : Ind FinancialTransaction ; + + -- A class of expired BankCards. + fun ExpiredCard : Class ; + fun ExpiredCard_Class : SubClass ExpiredCard BankCard ; + + -- A subclass of FinancialTransactions from one + -- FinancialOrganization to another. + fun ExternalTransfer : Class ; + fun ExternalTransfer_Class : SubClass ExternalTransfer FinancialTransaction ; + + -- A government mortgage that is insured by the Federal Housing + -- Administration (FHA). + fun FHALoan : Class ; + fun FHALoan_Class : SubClass FHALoan Mortgage ; + + -- Fill_or_kill order is a type of option order + -- which requires that the order be executed completely or not at all. A + -- fill_or_kill order is similar to an all_or_none (AON) order. The + -- difference is that if the order cannot be completely executed (i.e., + -- filled in its entirety) as soon as it is announced in the trading crowd, + -- it is to be 'killed' (i.e., cancelled) immediately. Unlike an AON order, + -- a FOK order cannot be used as part of a GTC order. + fun FOKOrder : Class ; + fun FOKOrder_Class : SubClass FOKOrder FinancialOrder ; + + -- The communication of a printed page between remote locations. + fun Fax : Class ; + fun Fax_Class : SubClass Fax Communication ; + + -- Fax machines scan a paper form and transmit a coded + -- image over the telephone system. The receiving machine prints a facsimile of + -- the original. A fax machine is made up of a scanner, printer and modem with + -- fax signaling. + fun FaxMachine : Class ; + fun FaxMachine_Class : SubClass FaxMachine Device ; + + fun FederalHousingAdministration : Class ; + fun FederalHousingAdministration_Class : SubClass FederalHousingAdministration Government ; + + -- Execute an order or buy or sell a security + -- or commodity. + fun FillingAnOrder : Class ; + fun FillingAnOrder_Class : SubClass FillingAnOrder FinancialTransaction ; + + -- A financial agreement between two or more parties + fun FinancialContract : Class ; + + -- Failure to make required debt payments on a timely basis + -- or to comply with other conditions of an obligation or agreement. + fun FinancialDefault : Class ; + fun FinancialDefault_Class : SubClass FinancialDefault FinancialTransaction ; + + -- A request from a client to a broker to buy (buy order) or sell + -- (sell order) a specified amount of a particular security or commodity at a specific + -- price or at the market price. + fun FinancialOrder : Class ; + fun FinancialOrder_Class : SubClass FinancialOrder ServiceContract ; + + -- The class FinancialOrganization includes, + -- as subclasses, Bank_FinancialOrganization, CreditUnion and SavingsAnLoans. + fun FinancialOrganization : Class ; + fun FinancialOrganization_Class : SubClass FinancialOrganization Organization ; + + -- The highest rating is usually AAA_Rating, + -- and the lowest is D_Rating. + fun FinancialRating : Class ; + fun FinancialRating_Class : SubClass FinancialRating RelationalAttribute ; + + -- A request for financial data sent in order + -- to get a FinancialResponse. + fun FinancialRequest : Class ; + fun FinancialRequest_Class : SubClass FinancialRequest FinancialTransaction ; + + -- The response data provided to fulfil a FinancialRequest. + fun FinancialResponse : Class ; + fun FinancialResponse_Class : SubClass FinancialResponse FinancialTransaction ; + + -- An investment vehicle offered by an insurance company, that + -- guarantees a stream of fixed payments over the life of the annuity. The insurer, not the + -- insured, takes the investment risk. + fun FixedAnnuity : Class ; + fun FixedAnnuity_Class : SubClass FixedAnnuity Annuity ; + + -- An InterestBearingAccount in which the interest rate does not + -- change during the entire term of the loan. + fun FixedRateAccount : Class ; + fun FixedRateAccount_Class : SubClass FixedRateAccount InterestBearingAccount ; + + -- Good_'til_cancelled (GTC) order is a type of limit order + -- that remains in effect until it is either executed (filled) or cancelled, as opposed + -- to a day order, which expires if not executed by the end of the trading day. A GTC + -- option order is an order which if not executed will be automatically cancelled at the + -- option's expiration + fun GTCOrder : Class ; + fun GTCOrder_Class : SubClass GTCOrder FinancialOrder ; + + -- A bond sold by the U.S. government. + fun GovernmentBond : Class ; + fun GovernmentBond_Class : SubClass GovernmentBond Bond ; + + -- Investment term that is applied to a Stock that is expected + -- to appreciate in value at a high rate, pay big dividends or split. + fun GrowthStock : Class ; + fun GrowthStock_Class : SubClass GrowthStock Stock ; + + -- An Attribute of FinancialAccounts which can be easily + -- converted to cash. + fun HighLiquidity : Ind LiquidityAttribute ; + + -- An Attribute that characterizes investments which are likely + -- to lose their principal. + fun HighRisk : Ind RiskAttribute ; + + -- An Attribute that characterizes accounts that are very profitable. + fun HighYield : Ind YieldAttribute ; + + -- Immediate or cancel Order is a type of option order + -- which gives the trading crowd one opportunity to take the other side of the + -- trade. After being announced, the order will be either partially or totally + -- filled with any remaining balance immediately cancelled. An IOC order, which + -- can be considered a type of day order, cannot be used as part of a GTC order + -- since it will be cancelled shortly after being entered. The difference between + -- fill_or_kill (FOK) orders and IOC orders is that a IOC order may be partially + -- executed. + fun IOCOrder : Class ; + fun IOCOrder_Class : SubClass IOCOrder FinancialOrder ; + + -- A benchmark against which financial or economic performance is measured, + -- such as the S&P 500 or the Consumer Price Index. + fun Index : Class ; + fun Index_Class : SubClass Index PerformanceMeasure ; + + -- A bond whose cash flow is inflation_adjusted, by + -- being linked to the purchasing power of a particular currency. + fun IndexBond : Class ; + fun IndexBond_Class : SubClass IndexBond Bond ; + + -- An option whose underlying interest is an index. + -- Generally, index options are cash_settled. + fun IndexOption : Class ; + fun IndexOption_Class : SubClass IndexOption Option ; + + -- A loan in which payments change in response to + -- changes in an index such as the Consumer Price Index. + fun IndexedLoan : Class ; + fun IndexedLoan_Class : SubClass IndexedLoan Loan ; + + -- A tax_deferred retirement + -- account for an individual that permits individuals to set aside up to + -- 2,000 per year, with earnings tax_deferred until withdrawals begin at age + -- 59 1/2 or later (or earlier, with a 10% penalty). Only those who do not + -- participate in a pension plan at work or who do participate and meet + -- certain income guidelines can make deductible contributions to an IRA. + -- All others can make contributions to an IRA on a non_deductible basis. + -- Such contributions qualify as a deduction against income earned in that + -- year and interest accumulates tax_deferred until the funds are withdrawn. + fun IndividualRetirementAccount : Class ; + fun IndividualRetirementAccount_Class : SubClass IndividualRetirementAccount (both PensionPlan (both PersonalAccount SavingsAccount)) ; + + -- The overall general upward price movement of + -- goods and services in an economy, usually as measured by the Consumer + -- Price Index and the Producer Price Index. + fun Inflation : Class ; + fun Inflation_Class : SubClass Inflation EconomicIndicator ; + + fun InflationIndex : Class ; + fun InflationIndex_Class : SubClass InflationIndex Index ; + -- Money paid for the use of money. + fun Interest : Class ; + fun Interest_Class : SubClass Interest CurrencyMeasure ; + + -- FinancialAccounts that have a fixed or adjustable interest rate. + fun InterestBearingAccount : Class ; + fun InterestBearingAccount_Class : SubClass InterestBearingAccount FinancialAccount ; + + -- A non_amortized loan in which interest is + -- due at regular intervals until maturity, when the full principal on the + -- loan is due. + fun InterestOnlyLoan : Class ; + fun InterestOnlyLoan_Class : SubClass InterestOnlyLoan Loan ; + + -- The usual way of calculating Interest, as a + -- percentage of the sum borrowed. + fun InterestRate : Class ; + fun InterestRate_Class : SubClass InterestRate (both ConstantQuantity EconomicIndicator) ; + + -- A subclass of FinancialTransactions within + -- one FinancialOrganization. + fun InternalTransfer : Class ; + fun InternalTransfer_Class : SubClass InternalTransfer FinancialTransaction ; + + -- An activity of commiting money or capital in order to + -- gain a financial return. + fun Investing : Class ; + fun Investing_Class : SubClass Investing FinancialTransaction ; + + -- An account acquired for future financial return or benefit + fun InvestmentAccount : Class ; + fun InvestmentAccount_Class : SubClass InvestmentAccount DepositAccount ; + + fun InvestmentAttribute : Class ; + fun InvestmentAttribute_Class : SubClass InvestmentAttribute RelationalAttribute ; + -- A person who purchases income_producing assets. + fun Investor : Class ; + fun Investor_Class : SubClass Investor SocialRole ; + + -- An account owned by two or more people, usually sharing a household + -- and expenses. Each co_owner has equal access to the account. Most types of accounts, whether it's + -- basic checking, savings or money market, allow for joint use + fun JointAccount : Class ; + fun JointAccount_Class : SubClass JointAccount PersonalAccount ; + + -- A high_risk, non_investment_grade bond with a low + -- credit rating, usually BB or lower, as a consequence, it usually has a high + -- yield. + fun JunkBond : Class ; + fun JunkBond_Class : SubClass JunkBond CorporateBond ; + + -- Calls and puts with an expiration as long as + -- thirty_nine months. Currently, equity LEAPS have two series at any + -- time with a January expiration. For example, in October 2000, LEAPS + -- are available with expirations of January 2002 and January 2003. + fun LEAPS : Class ; + fun LEAPS_Class : SubClass LEAPS Option ; + + -- A financial obligation, debt, claim, or potential loss + fun Liability : Class ; + fun Liability_Class : SubClass Liability FinancialContract ; + + -- An account for which a person is liable + fun LiabilityAccount : Class ; + fun LiabilityAccount_Class : SubClass LiabilityAccount FinancialAccount ; + + -- LimitOrder is an order to a Broker to buy a specified quantity + -- of a Security at or below a specified price, or to sell it at or above a specified limitPrice. + fun LimitOrder : Class ; + fun LimitOrder_Class : SubClass LimitOrder FinancialOrder ; + + -- The class of events of selling all of a company's assets, + -- paying outstanding debts, and distribution of the remainder to shareholders, and them + -- going out of business. + fun Liquidation : Class ; + fun Liquidation_Class : SubClass Liquidation FinancialTransaction ; + + -- A class of attributes which describe the degree to + -- which accounts can be easily converted to cash. + fun LiquidityAttribute : Class ; + fun LiquidityAttribute_Class : SubClass LiquidityAttribute RelationalAttribute ; + + -- An arrangement in which a lender gives money or property to a borrower, + -- and the borrower agrees to return the property or repay the money, usually along with interest, + -- at some future point(s) in time. + fun Loan : Class ; + fun Loan_Class : SubClass Loan LiabilityAccount ; + + -- A formal offer by a lender making explicit + -- the terms under which it agrees to lend money to a borrower over a certain + -- period of time. + fun LoanCommitment : Class ; + fun LoanCommitment_Class : SubClass LoanCommitment Contract ; + + fun Locked : Ind StatusAttribute ; + + -- A straddle in which a long position is taken in + -- both a put and a call option + fun LongStraddle : Class ; + fun LongStraddle_Class : SubClass LongStraddle Straddle ; + + -- An Attribute of FinancialAccounts which cannot be easily + -- converted to cash. + fun LowLiquidity : Ind LiquidityAttribute ; + + fun LowRisk : Ind RiskAttribute ; + + -- An Attribute that characterizes accounts that are not very profitable. + fun LowYield : Ind YieldAttribute ; + + -- A Market_not_held order is a type of market order + -- which allows the investor to give discretion to the floor broker regarding + -- the price and/or time at which a trade is executed. + fun MNHOrder : Class ; + fun MNHOrder_Class : SubClass MNHOrder FinancialOrder ; + + -- A Market_on_close order is a type of option order + -- which requires that an order be executed at or near the close of trading on + -- the day the order is entered. A MOC order, which can be considered a type of + -- day order, cannot be used as part of a GTC order + fun MOCOrder : Class ; + fun MOCOrder_Class : SubClass MOCOrder FinancialOrder ; + + -- One who directs a business or other enterprise. + fun Manager : Ind Position ; + + -- An order to buy or sell security at the best prices available. + fun MarketOrder : Class ; + fun MarketOrder_Class : SubClass MarketOrder FinancialOrder ; + + -- A stock index in which each stock affects the + -- index in proportion to its number of shares outstanding. + fun MarketShareWeightedIndex : Class ; + fun MarketShareWeightedIndex_Class : SubClass MarketShareWeightedIndex Index ; + + -- A stock index in which each stock + -- affects the index in proportion to its market value. Examples include + -- NASDAQ Composite Index, S&P 500, Wilshire 5000 Equity Index, Hang Seng + -- Index, and EAFE Index. + fun MarketValueWeightedIndex : Class ; + fun MarketValueWeightedIndex_Class : SubClass MarketValueWeightedIndex Index ; + + fun MasterCard : Class ; + fun MasterCard_Class : SubClass MasterCard CreditCard ; + + -- MoneyMarket is for borrowing and lending money for three years + -- or less. The securities in a money market can be U.S. government bonds, TreasuryBills and commercial + -- paper from banks and companies. + fun MoneyMarket : Class ; + fun MoneyMarket_Class : SubClass MoneyMarket SavingsAccount ; + + -- A loan to finance the purchase of real estate, usually with specified payment + -- periods and interest rates. + fun Mortgage : Class ; + fun Mortgage_Class : SubClass Mortgage SecuredLoan ; + + -- These are bonds generally bought through a + -- government agency that deals in the real estate market. They are bonds + -- issued by mortgage lenders. + fun MortgageBond : Class ; + fun MortgageBond_Class : SubClass MortgageBond CorporateBond ; + + -- Bond issued by a state, city, or local government to + -- finance operations or special projects, interest on it is often tax_free. + fun MunicipalBond : Class ; + fun MunicipalBond_Class : SubClass MunicipalBond (both Bond TaxFreeInvestment) ; + + -- An open_ended fund operated by an investment company which + -- raises money from shareholders and invests in a group of assets, in accordance with a stated + -- set of objectives. Benefits include diversification and professional money management. Shares + -- are issued and redeemed on demand, based on the fund's net asset value which is determined at + -- the end of each trading session. + fun MutualFundAccount : Class ; + fun MutualFundAccount_Class : SubClass MutualFundAccount InvestmentAccount ; + + -- National Association of Securities Dealers Automated Quotations + -- system. + fun NASDAQ : Ind Organization ; + + -- A market_value weighted index of all common stocks + -- listed on NASDAQ. + fun NASDAQCompositeIndex : Class ; + fun NASDAQCompositeIndex_Class : SubClass NASDAQCompositeIndex Index ; + + -- A not_held order is a type of order which releases + -- normal obligations implied by the other terms of the order. For example, a + -- limit order designated as 'not_held' allows discretion to the floor trader in + -- filling the order when the market trades at the limit price of the order. In + -- this case, there is no obligation to provide the customer with an execution if + -- the market trades through the limit price on the order. + fun NHOrder : Class ; + fun NHOrder_Class : SubClass NHOrder FinancialOrder ; + + fun New : Ind StatusAttribute ; + + -- Index of 225 leading stocks traded on the Tokyo Stock + -- Exchange. + fun NikkeiIndex : Class ; + fun NikkeiIndex_Class : SubClass NikkeiIndex Index ; + + -- A legal document that obligates a borrower to repay a loan + -- at a specified interestRate during a specified period of time or on demand + fun Note : Class ; + fun Note_Class : SubClass Note FinancialInstrument ; + + -- One_cancels_other order (OCO) is a type of option + -- order which treats two or more option orders as a package, whereby the execution + -- of any one of the orders causes all the orders to be reduced by the same amount. + -- For example, the investor would enter an OCO order if he/she wished to buy + -- 10 May 60 calls or 10 June 60 calls or any combination of the two which when + -- summed equaled 10 contracts. An OCO order may be either a day order or a GTC order + fun OCOOrder : Class ; + fun OCOOrder_Class : SubClass OCOOrder FinancialOrder ; + + -- The attribute which describes services that + -- are ready to transact business. + fun OpenService : Ind ServiceAttribute ; + + -- An activity of opening a financial account + fun OpeningAnAccount : Class ; + fun OpeningAnAccount_Class : SubClass OpeningAnAccount FinancialTransaction ; + + -- An option is a contract to buy or sell 100 shares + -- of a stock at a fixed price (the strike price) on or before a fixed date. + fun Option : Class ; + fun Option_Class : SubClass Option FinancialContract ; + + -- A collection of buying/selling options + -- whose purpose is to result in an optimal profit for the investor. + fun OptionStrategy : Class ; + fun OptionStrategy_Class : SubClass OptionStrategy FinancialTransaction ; + + -- A check issued to an employee in payment of salary or wages + fun PayCheck : Class ; + fun PayCheck_Class : SubClass PayCheck Check ; + + -- The partial or complete discharge of an obligation by + -- its settlement in the form of the transfer of funds, assets, or services equal + -- to the monetary value of part or all of the debtor's obligation. + fun Payment : Class ; + fun Payment_Class : SubClass Payment FinancialTransaction ; + + -- A fee charged as a penalty. + fun Penalty : Class ; + fun Penalty_Class : SubClass Penalty ChargingAFee ; + + fun Pending : Ind StatusAttribute ; + + -- Extremely speculative, high_risk Stock, usually + -- with a price of less than 5 dollars per share. In the U.S., nearly all + -- are traded on the over_the_counter bulletin board. + fun PennyStock : Class ; + fun PennyStock_Class : SubClass PennyStock Stock ; + + -- A bond issued by an insurance company to + -- guarantee satisfactory completion of a project by a contractor. + fun PerformanceBond : Class ; + fun PerformanceBond_Class : SubClass PerformanceBond Bond ; + + fun PerformanceMeasure : Class ; + fun PerformanceMeasure_Class : SubClass PerformanceMeasure PhysicalQuantity ; + + -- This is the class of personal accounts, as opposed to + -- CorporateAccounts. + fun PersonalAccount : Class ; + fun PersonalAccount_Class : SubClass PersonalAccount FinancialAccount ; + + -- Two lenders participating in the same loan. + fun PiggybankLoan : Class ; + fun PiggybankLoan_Class : SubClass PiggybankLoan Loan ; + + fun PlacingAnOrder : Class ; + fun PlacingAnOrder_Class : SubClass PlacingAnOrder FinancialTransaction ; + + -- CapitalStock which provides a specific Dividend + -- that is paid before any dividends are paid to common stock holders, and which takes + -- precedence over common stock in the event of a liquidation. Usually does not carry + -- voting rights. + fun PreferredStock : Class ; + fun PreferredStock_Class : SubClass PreferredStock Stock ; + + -- Prepayment is the payment of all or part of a debt + -- prior to its due date. + fun Prepayment : Class ; + fun Prepayment_Class : SubClass Prepayment Payment ; + + -- A stock index in which each stock affects the index + -- in proportion to its price per share. + fun PriceWeightedIndex : Class ; + fun PriceWeightedIndex_Class : SubClass PriceWeightedIndex Index ; + + -- An activity of paying the amount specified on the + -- check from funds on deposit. + fun ProcessingACheck : Class ; + fun ProcessingACheck_Class : SubClass ProcessingACheck (both AuthorizationOfTransaction ControllingAnAccount) ; + + -- An inflationary indicator published by the U.S. Bureau + -- of Labor Statistics to evaluate wholesale price levels in the economy. + fun ProducerPriceIndex : Class ; + fun ProducerPriceIndex_Class : SubClass ProducerPriceIndex InflationIndex ; + + -- An option contract that gives the holder the + -- right to sell a certain quantity of an underlying security to the writer + -- of the option, at a specified price (strike price) up to a specified date + -- (expiration date). + fun PutOption : Class ; + fun PutOption_Class : SubClass PutOption Option ; + + -- Land, including all the natural resources and permanent buildings on it. + fun RealEstate : Class ; + fun RealEstate_Class : SubClass RealEstate (both CorpuscularObject (both FinancialAsset Region)) ; + + -- A written acknowledgment that a specified article, + -- sum of money, or shipment of merchandise has been received. + fun Receipt : Ind FinancialInstrument ; + + -- Paying off an existing loan with the proceeds from a new loan, using + -- the same property as collateral. + fun Refinancing : Class ; + fun Refinancing_Class : SubClass Refinancing FinancialTransaction ; + + -- A bond issued with the name of the owner printed on the + -- face of the certificate. It can be transferred to another individual only with the + -- owner's endorsement. + fun RegisteredBond : Class ; + fun RegisteredBond_Class : SubClass RegisteredBond Bond ; + + -- Securities, usually issued in private placements, that + -- have limited transferability. + fun RestrictedStock : Class ; + fun RestrictedStock_Class : SubClass RestrictedStock Stock ; + + -- A class of attributes which describe the degree of risk + -- of a particular investment. + fun RiskAttribute : Class ; + fun RiskAttribute_Class : SubClass RiskAttribute RelationalAttribute ; + + -- A tax_free reinvestment of a distribution from a + -- qualified retirement plan into an IRA or other qualified plan within 60 days. + -- Also called IRA rollover. Or more generally, a movement of funds from one investment + -- to another. + fun Rollover : Class ; + fun Rollover_Class : SubClass Rollover FinancialTransaction ; + + -- An individual retirement account in which a person + -- can set aside after_tax income up to a specified amount each year. Earnings on the + -- account are tax_free, and tax_free withdrawals may be made at retirement age. + fun RothIRAAccount : Class ; + fun RothIRAAccount_Class : SubClass RothIRAAccount IndividualRetirementAccount ; + + fun SARSEPPlan : Class ; + fun SARSEPPlan_Class : SubClass SARSEPPlan DefinedContributionPlan ; + + -- An account in a bank on which interest is usually paid and from + -- which withdrawals can be made usually only by presentation of a passbook or by written authorization + -- on a prescribed form. + fun SavingsAccount : Class ; + fun SavingsAccount_Class : SubClass SavingsAccount (both DepositAccount InterestBearingAccount) ; + + -- A federally or state chartered FinancialOrganization + -- that takes Deposits from individuals, funds Mortgages, and pays Dividends. + fun SavingsAndLoans : Class ; + fun SavingsAndLoans_Class : SubClass SavingsAndLoans FinancialOrganization ; + + -- A defined contribution plan offered by a + -- corporation to its employees, which allows employees to set aside + -- tax_deferred income for retirement purposes. The name 401(k) comes from + -- the IRS section describing the program. + fun SavingsPlan_401K : Class ; + fun SavingsPlan_401K_Class : SubClass SavingsPlan_401K DefinedContributionPlan ; + + -- A retirement plan similar to a 401(k) plan, but + -- one which is offered by non_profit organizations, such as universities and + -- some charitable organizations, rather than corporations. + fun SavingsPlan_403B : Class ; + fun SavingsPlan_403B_Class : SubClass SavingsPlan_403B DefinedContributionPlan ; + + -- A simpler alternative to a 401(k) plan available + -- only to companies with 25 or fewer employees, which gives employees the + -- opportunity to make contributions to their SEP accounts with pre_tax + -- dollars and reduce their current year's net income. + fun SavingsPlan_408K : Class ; + fun SavingsPlan_408K_Class : SubClass SavingsPlan_408K PensionPlan ; + + -- Bond backed by collateral, such as a mortgage + -- or lien, the title to which would be transferred to the bondholders in the + -- event of default. + fun SecuredBond : Class ; + fun SecuredBond_Class : SubClass SecuredBond Bond ; + + fun SecuredLoan : Class ; + fun SecuredLoan_Class : SubClass SecuredLoan Loan ; + + -- An investment instrument, other than an insurance policy or + -- FixedAnnuity insurance policy or fixed annuity issued by a corporation, government, + -- or other organization which offers evidence of debt or equity. + fun Security : Class ; + fun Security_Class : SubClass Security FinancialInstrument ; + + -- The class of attributes which describe + -- CommercialServices, such as OpenService and ClosedService. + fun ServiceAttribute : Class ; + fun ServiceAttribute_Class : SubClass ServiceAttribute RelationalAttribute ; + + -- A Contract where an Agent agrees to + -- perform a service for another Agent (usually for a price). + fun ServiceContract : Class ; + fun ServiceContract_Class : SubClass ServiceContract Contract ; + + -- Certificate, representing one unit of ownership in a corporation, + -- MutualFund, or limited partnership. + fun Share : Class ; + fun Share_Class : SubClass Share (both CurrencyMeasure Security) ; + + -- Borrowing a security (or commodity futures + -- contract) from a broker and selling it, with the understanding that it + -- must later be bought back (hopefully at a lower price) and returned to the + -- broker. SEC rules allow investors to sell short only on an uptick or a + -- zero_plus tick, to prevent 'pool operators' from driving down a stock + -- price through heavy short_selling, then buying the shares for a large + -- profit. + fun ShortSale : Class ; + fun ShortSale_Class : SubClass ShortSale FinancialTransaction ; + + -- A put or call option by itself, as opposed to + -- multiple options as used in a spread or straddle. + fun SingleOption : Class ; + fun SingleOption_Class : SubClass SingleOption OptionStrategy ; + + -- A loan whose principal is due in total with a single + -- payment at maturity. + fun SinglePaymentLoan : Class ; + fun SinglePaymentLoan_Class : SubClass SinglePaymentLoan Loan ; + + -- The purchase of one option and the + -- simultaneous sale of a related option, such as two options of the same + -- class but different strike prices and/or expiration dates. + fun SpreadOption : Class ; + fun SpreadOption_Class : SubClass SpreadOption OptionStrategy ; + + -- A class of four Attributes indicating the + -- status of a FinancialAccount, viz. Active, Locked, New, and Pending. + fun StatusAttribute : Class ; + fun StatusAttribute_Class : SubClass StatusAttribute RelationalAttribute ; + + -- Any index which is intended to gauge upward or downward trends + -- in stock prices. + fun StockIndex : Class ; + fun StockIndex_Class : SubClass StockIndex Index ; + + -- General term for the organized trading of stocks through + -- exchanges and over_the_counter. + fun StockMarket : Class ; + fun StockMarket_Class : SubClass StockMarket Organization ; + + -- Any FinancialTransaction which involves + -- Stock and which occurs in a StockMarket. + fun StockMarketTransaction : Class ; + fun StockMarketTransaction_Class : SubClass StockMarketTransaction FinancialTransaction ; + + -- An option in which the underlier is the + -- common stock of a corporation, giving the holder the right to buy or + -- sell its stock, at a specified price, by a specific date. + fun StockOption : Class ; + fun StockOption_Class : SubClass StockOption Option ; + + -- Exchange of the number of shares of stock outstanding + -- for a larger number. + fun StockSplit : Class ; + fun StockSplit_Class : SubClass StockSplit FinancialTransaction ; + + -- A market order to buy or sell a certain quantity of + -- a certain security if a specified price (the stopPrice) is reached or passed. + fun StopOrder : Class ; + fun StopOrder_Class : SubClass StopOrder FinancialOrder ; + + -- The purchase or sale of an equal number of puts and + -- calls, with the same strike price and expiration dates. + fun Straddle : Class ; + fun Straddle_Class : SubClass Straddle OptionStrategy ; + + fun TaxFreeInvestment : Class ; + fun TaxFreeInvestment_Class : SubClass TaxFreeInvestment Investment ; + + fun TaxableInvestment : Class ; + fun TaxableInvestment_Class : SubClass TaxableInvestment Investment ; + + -- The instrument, such as a deed, that constitutes evidence + -- of a legal right of possession or control. + fun Title : Class ; + fun Title_Class : SubClass Title FinancialInstrument ; + + -- Accounts that pay interest, usually at below_market + -- interest rates, that do not have a specific maturity, and that usually can be withdrawn upon demand + fun TraditionalSavingsAccount : Class ; + fun TraditionalSavingsAccount_Class : SubClass TraditionalSavingsAccount SavingsAccount ; + + -- A negotiable debt obligation issued by the U.S. government and backed + -- by its full faith and credit, having a maturity of one year or less. Exempt from state and local taxes + fun TreasuryBill : Class ; + fun TreasuryBill_Class : SubClass TreasuryBill SavingsAccount ; + + -- A negotiable, coupon_bearing debt obligation + -- issued by the U.S. government and backed by its full faith and credit, having + -- a maturity of more than 7 years. Interest is paid semi_annually. Exempt from + -- state and local taxes. + fun TreasuryBond : Class ; + fun TreasuryBond_Class : SubClass TreasuryBond Bond ; + + fun UnsecuredLoan : Class ; + fun UnsecuredLoan_Class : SubClass UnsecuredLoan Loan ; + + -- To change data in a file or database + fun Update : Class ; + fun Update_Class : SubClass Update (both ContentDevelopment FinancialTransaction) ; + + -- A stock market transaction (or sometimes, a quote) + -- at a price higher than the preceding one for the same security. + fun Uptick : Class ; + fun Uptick_Class : SubClass Uptick StockMarketTransaction ; + + -- An activity of using a financial account + fun UsingAnAccount : Class ; + fun UsingAnAccount_Class : SubClass UsingAnAccount FinancialTransaction ; + + -- A class of valid BankCards + fun ValidCard : Class ; + fun ValidCard_Class : SubClass ValidCard BankCard ; + + -- When the shares in a company are considered attractive because + -- the company is undervalue, usually because it has a low P/E ratio. + fun ValueStock : Class ; + fun ValueStock_Class : SubClass ValueStock Stock ; + + -- An investment vehicle offered by an insurance company that + -- does not guarantee a payment amount but does have the potential for greater returns than + -- a FixedAnnuity. + fun VariableAnnuity : Class ; + fun VariableAnnuity_Class : SubClass VariableAnnuity Annuity ; + + -- A subclass of AuthorizationOfTransaction + -- where an ATM machine checks the code of the BankCard inserted to this machine. + fun VerifyingCardCode : Class ; + fun VerifyingCardCode_Class : SubClass VerifyingCardCode AuthorizationOfTransaction ; + + fun VisaCard : Class ; + fun VisaCard_Class : SubClass VisaCard CreditCard ; + + -- An activity of money being transferred from a customer's + -- account at a financial institution. + fun Withdrawal : Class ; + fun Withdrawal_Class : SubClass Withdrawal FinancialTransaction ; + + -- A class of attributes which describe the degree to which + -- accounts are profitable. + fun YieldAttribute : Class ; + fun YieldAttribute_Class : SubClass YieldAttribute RelationalAttribute ; + + -- A bond in which no periodic coupon is paid over the + -- life of the contract. Instead, both the principal and the interest are paid at the + -- maturity date. + fun ZeroCouponBond : Class ; + fun ZeroCouponBond_Class : SubClass ZeroCouponBond Bond ; + + -- (accountAt ?Account ?Bank) means that ?Account is a + -- FinancialAccount opened in the FinancialOrganization ?Bank. + fun accountAt : El FinancialAccount -> El FinancialOrganization -> Formula ; + + -- (accountHolder ?Account ?Agent) means that ?Agent + -- is the account holder of the FinancialAccount ?Account. + fun accountHolder : El FinancialAccount -> El CognitiveAgent -> Formula ; + + fun accountNumber : El FinancialAccount -> El PositiveInteger -> Formula ; + + -- (accountStatus ?Account ?Status) holds if + -- ?Status describes the status of the account, such as Active, Locked, + -- New or Pending. + fun accountStatus : El FinancialAccount -> El StatusAttribute -> Formula ; + -- The accumulated coupon interest, paid to the seller of a + -- bond by the buyer unless the bond is in default. + fun accruedInterest : El Bond -> El Interest -> Formula ; + fun administrator : El FinancialAccount -> El Position -> Formula ; + + -- (administratorStatus ?Administrator ?Status) + -- holds is ?Status describes the status of the administrator. + fun administratorStatus : El Position -> El StatusAttribute -> Formula ; + + -- An amount (usually income) after taxes + -- have been subtracted. + fun afterTaxIncome : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; + + -- (agreementActive ?Agreement ?Date) holds if + -- ?Agreement is in force at the time specified by ?Date. + fun agreementActive : El Contract -> El TimePosition -> Formula ; + -- (agreementMember ?Agreement ?Agent) means that + -- ?Agent is one of the participants of the Agreement. + fun agreementMember : El Contract -> El CognitiveAgent -> Formula ; --- The highest rating given by bond rating agencies -fun AAA_Rating : Ind FinancialRating ; + -- (agreementPeriod ?Agreement ?Period) holds if + -- ?Period specifies a Time interval during which ?Agreement is in force. + fun agreementPeriod : El Contract -> El TimeInterval -> Formula ; + -- (amountCharged ?Fee ?Amount) means that ?Amount is the amount of + -- the fee charged. + fun amountCharged : El ChargingAFee -> El CurrencyMeasure -> Formula ; --- All_or_none order (AON) is a type of option order --- which requires that the order be executed completely or not at all. An AON --- order may be either a day order or a GTC order. -fun AONOrder : Class ; -fun AONOrder_Class : SubClass AONOrder FinancialOrder ; + -- (amountDue ?ACCOUNT ?AMOUNT ?DATE) means ?DATE is the + -- date on which the amount of Money ?AMOUNT of a particular ?ACCOUNT is due and payable + fun amountDue : El FinancialAccount -> El CurrencyMeasure -> El TimePosition -> Formula ; --- (Automatic Teller Machine) A banking terminal that --- accepts deposits and dispenses cash. ATMs are activated by inserting a cash or --- credit card that contains the user's account number and PIN on a magnetic stripe. --- The ATM calls up the bank's computers to verify the balance, dispenses the cash --- and then transmits a completed transaction notice. -fun ATMMachine : Class ; -fun ATMMachine_Class : SubClass ATMMachine StationaryArtifact ; + fun appraisedValue : El Collateral -> El CurrencyMeasure -> Formula ; --- A narrow opening in an ATM machine where cards are inserted. -fun ATMSlot : Class ; -fun ATMSlot_Class : SubClass ATMSlot Hole ; + -- (askPrice ?Obj ?Money ?Agent) means that ?Agent offers to sell + -- ?Obj for the amount of ?Money. + fun askPrice : El Object -> El CurrencyMeasure -> El Agent -> Formula ; --- A unary function that maps a FinancialAsset to the FinancialAccount --- associated with the Asset. -fun AccountFn : El FinancialAsset -> Ind FinancialAccount ; + -- A term that describes an option with a strike + -- price that is equal to the current market price of the underlying stock. + fun atTheMoney : El Option -> El TimePosition -> Formula ; + -- (availableBalance ?Account ?Day ?Amount) means that ?Amount is + -- the balance which is available for withdrawal from the FinancialAccount ?Account. + fun availableBalance : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; -fun Active : Ind StatusAttribute ; + -- (availableCash ?Account ?Day ?Cash) holds if ?Cash is + -- a cash amount available for withdrawal from the FinancialAccount ?Account. + fun availableCash : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; --- An InterestBearingAccount in which --- the interest rate is adjusted periodically, usually based on a standard --- market rate outside the control of the bank or savings institution, such --- as that prevailing on TreasuryBill or the primeInterestRate. -fun AdjustableRateAccount : Class ; -fun AdjustableRateAccount_Class : SubClass AdjustableRateAccount InterestBearingAccount ; + -- (bankAccount ?Type ?Bank) holds if ?Type is a + -- type of the financial accounts offered by the bank. + fun bankAccount: Desc FinancialAccount -> El Bank_FinancialOrganization -> Formula ; -fun AmericanExpressCard : Class ; -fun AmericanExpressCard_Class : SubClass AmericanExpressCard CreditCard ; --- An option that can be exercised at any time --- prior to its expiration date -fun AmericanStyleOption : Ind Option ; + -- Income before taxes are deducted + fun beforeTaxIncome : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; + -- A standard by which something can be measured or judged. + fun benchmark : El Abstract -> El PerformanceMeasure -> Formula ; --- A contract sold by an insurance company designed to provide --- payments to the holder at specified intervals, usually after retirement. FixedAnnuities --- guarantee a certain payment amount, while VariableAnnuities do not, but do have the --- potential for greater returns, but both are relatively safe, low_yielding investments. -fun Annuity : Class ; -fun Annuity_Class : SubClass Annuity FinancialContract ; + -- (bidPrice ?Obj ?Money ?Agent) means that ?Agent offers to buy ?Obj for the amount of ?Money. + fun bidPrice : El Object -> El CurrencyMeasure -> El Agent -> Formula ; --- The process of dividing investments among different kinds of --- assets, such as Stocks, Bonds, RealEstate and cash, to optimize the risk/reward tradeoff based --- on an individual's or institution's specific situation and goals. -fun AssetAllocation : Class ; -fun AssetAllocation_Class : SubClass AssetAllocation FinancialTransaction ; - --- An activity which approves or --- disapproves a transaction. -fun AuthorizationOfTransaction : Class ; -fun AuthorizationOfTransaction_Class : SubClass AuthorizationOfTransaction (both ControllingAnAccount (both FinancialService RegulatoryProcess)) ; + -- A measure of the quality and safety of a bond, + -- based on the issuer's financial condition. More specifically, an + -- evaluation from a rating service indicating the likelihood that a debt + -- issuer will be able to meet scheduled interest and principal repayments. + -- Typically, AAA is highest (best), and D is lowest (worst). + fun bondRating : El Bond -> El FinancialRating -> Formula ; + -- (borrower ?Loan ?Agent) means that ?Agent is a borrower of the ?Loan + fun borrower : El Loan -> El CognitiveAgent -> Formula ; --- Transactions which occur through computer --- networks and which do not require direct management. -fun AutomaticTransaction : Class ; -fun AutomaticTransaction_Class : SubClass AutomaticTransaction FinancialTransaction ; - --- A mid_range rating given by bond rating agencies. -fun B_Rating : Ind FinancialRating ; - - --- A long_term loan, often a mortgage, that has --- one large payment (the balloon payment) due upon maturity. Often done --- when refinancing or a major cash flow event is anticipated. -fun BalloonLoan : Class ; -fun BalloonLoan_Class : SubClass BalloonLoan Loan ; - --- A CreditCard or a DebitCard issued by a --- FinancialOrganization. -fun BankCard : Class ; -fun BankCard_Class : SubClass BankCard FinancialInstrument ; - --- A monthly report sent to a debtor or bank depositor. -fun BankStatement : Class ; -fun BankStatement_Class : SubClass BankStatement Proposition ; - --- A bank loan terminating in one year or more. -fun BankTermLoan : Class ; -fun BankTermLoan_Class : SubClass BankTermLoan Loan ; - --- An organization, chartered by a state or --- federal government, which does most or all of the following: receives Deposits, --- honors FinancialInstruments drawn on them, and pays Interest on them, discounts --- Notes, makes Loans, and invests in SecuredLoans, collects Checks, Drafts --- and Notes, certifies depositor's checks, and issues drafts and Cashier's checks. -fun Bank_FinancialOrganization : Class ; -fun Bank_FinancialOrganization_Class : SubClass Bank_FinancialOrganization FinancialOrganization ; - --- An adjective describing the opinion that a stock, or --- a market in general, will decline in price __ a negative or pessimistic outlook. -fun Bearish : Class ; -fun Bearish_Class : SubClass Bearish InvestmentAttribute ; - --- Stock with a solid and stable earnings record from a --- company that either leads or dominates or is a major player in a specific industry. -fun BlueChipStock : Class ; -fun BlueChipStock_Class : SubClass BlueChipStock Stock ; - --- A debt instrument issued for a period of more than one year with --- the purpose of raising capital by borrowing. The Federal government, states, cities, --- corporations, and many other types of institutions sell bonds. A bond is generally a --- promise to repay the principal along with interest on a specified maturityDate. -fun Bond : Class ; -fun Bond_Class : SubClass Bond (both FinancialInstrument Investment) ; - - --- Stock in a short sale. -fun BorrowedStock : Class ; -fun BorrowedStock_Class : SubClass BorrowedStock Stock ; - --- Short_term financing which is expected to be paid back relatively --- quickly, such as by a subsequent longer_term loan. -fun BridgeLoan : Class ; -fun BridgeLoan_Class : SubClass BridgeLoan Loan ; - --- An individual or firm which acts as an intermediary between --- a buyer and seller, usually charging a commisssion. -fun Broker : Class ; -fun Broker_Class : SubClass Broker CognitiveAgent ; - --- Money lent to brokers by banks, for financing --- the underwriting of new issues, financing customer margin accounts, and --- other purposes. -fun BrokerLoan : Class ; -fun BrokerLoan_Class : SubClass BrokerLoan Loan ; - --- A fund that a customer has entrusted to --- a securities brokerage. -fun BrokerageAccount : Ind InvestmentAccount ; - - --- An attribute describing the opinion that a stock, or the --- market in general, will rise in price __ a positive or optimistic outlook. -fun Bullish : Class ; -fun Bullish_Class : SubClass Bullish InvestmentAttribute ; - --- A complex option strategy that involves --- selling two calls and buying two calls on the same or different markets, --- with several maturity dates. One of the options has a higher exercise --- price and the other has a lower exercise price than the other two options. --- The payoff diagram resembles the shape of a butterfly. -fun ButterflySpread : Class ; -fun ButterflySpread_Class : SubClass ButterflySpread SpreadOption ; - --- A mid_range rating given by bond rating agencies. -fun C_Rating : Ind FinancialRating ; - - -fun Call : Class ; -fun Call_Class : SubClass Call FinancialTransaction ; --- An option contract that gives the holder the --- right to buy a certain quantity (usually 100 shares) of an underlying --- security from the writer of the option, at a specified price (the strike --- price) up to a specified date (the expiration date). -fun CallOption : Class ; -fun CallOption_Class : SubClass CallOption Option ; - --- A bond which the issuer has the right to redeem --- prior to its maturity date, under certain conditions. -fun CallableBond : Class ; -fun CallableBond_Class : SubClass CallableBond Bond ; - --- A loan that must repaid upon the lender's demand. -fun CallableLoan : Class ; -fun CallableLoan_Class : SubClass CallableLoan Loan ; - -fun CancellingAnOrder : Class ; -fun CancellingAnOrder_Class : SubClass CancellingAnOrder FinancialTransaction ; --- Circulating paper money -fun Cash : Class ; -fun Cash_Class : SubClass Cash (both FinancialAsset FinancialInstrument) ; - - --- CDs (certificates of deposit) are bank, credit union or savings --- and loan instruments that allow the depositor to lock in an interest rate for a specific period of --- time (e.g. six months, one year, five years). If the money is withdrawn from the CD before the CD --- matures, there is likely to be an early_withdrawal penalty __ often three month's interest. Generally, --- the longer the time period of the CD, the higher the interest paid. -fun CertificateOfDeposit : Class ; -fun CertificateOfDeposit_Class : SubClass CertificateOfDeposit SavingsAccount ; - --- A FinancialInstrument drawn against deposited funds, --- to pay a specified amount of money to a specific person upon demand. -fun Check : Class ; -fun Check_Class : SubClass Check FinancialInstrument ; - --- A bank account against which the depositor can draw checks -fun CheckingAccount : Class ; -fun CheckingAccount_Class : SubClass CheckingAccount DepositAccount ; - --- The attribute which describes services that are --- shut or closed. -fun ClosedService : Ind ServiceAttribute ; - - --- An activity of closing a financial account -fun ClosingAnAccount : Class ; -fun ClosingAnAccount_Class : SubClass ClosingAnAccount FinancialTransaction ; - --- Assets pledged by a borrower to secure a loan or other credit, and --- subject to seizure in the event of FinancialDefault. -fun Collateral : Class ; -fun Collateral_Class : SubClass Collateral FinancialAsset ; - --- Securities representing equity, ownership in a --- Corporation, providing voting rights, and entitling the holder to a share --- of the company's success through dividends and/or capital appreciation. --- In the event of liquidation, common stock holders have rights to a --- company's assets only after bondholders, other debt holders, and --- PreferredStock holders have been satisfied. -fun CommonStock : Class ; -fun CommonStock_Class : SubClass CommonStock Stock ; - --- The replacement of multiple loans with a single loan, often --- with a lower monthly payment and a longer repayment period. -fun ConsolidationLoan : Class ; -fun ConsolidationLoan_Class : SubClass ConsolidationLoan Loan ; - --- An inflationary indicator that measures --- the change in the cost of a fixed basket of products and services, --- including housing, electricity, food, and transportation. The CPI is --- published monthly. -fun ConsumerPriceIndex : Class ; -fun ConsumerPriceIndex_Class : SubClass ConsumerPriceIndex InflationIndex ; - --- Attribute that applies to Propositions where --- something is promised in return, i.e. a reciprocal promise. -fun Contract : Class ; -- make subclass with Promise - - --- An activity of controlling a financial account -fun ControllingAnAccount : Class ; -fun ControllingAnAccount_Class : SubClass ControllingAnAccount FinancialTransaction ; - --- A mortgage that is not insured or guaranteed --- by the government. -fun ConventionalMortgage : Class ; -fun ConventionalMortgage_Class : SubClass ConventionalMortgage Mortgage ; - --- Short_term option contracts. -fun ConventionalOption : Class ; -fun ConventionalOption_Class : SubClass ConventionalOption Option ; - --- This is the class of accounts held by corporations. This class --- is disjoint with PersonalAccounts. -fun CorporateAccount : Class ; -fun CorporateAccount_Class : SubClass CorporateAccount FinancialAccount ; - --- A bond issued by a corporation. Such bonds usually have --- a par value of 1,000, are taxable, have a term maturity, are paid for out of a sinking --- fund accumulated for that purpose, and are traded on major exchanges. -fun CorporateBond : Class ; -fun CorporateBond_Class : SubClass CorporateBond (both Bond TaxableInvestment) ; - - --- An unregistered, negotiable bond on which interest and principal --- are payable to the holder, regardless of whom it was originally issued to. The coupons are --- attached to the bond, and each coupon represents a single interest payment. The holder submits --- a coupon, usually semi_annually, to the issuer or paying agent to receive payment. Coupon bonds --- are being phased out in favor of registered bonds. -fun CouponBond : Class ; -fun CouponBond_Class : SubClass CouponBond Bond ; - --- Credit extended by a business to a customer -fun CreditAccount : Class ; -fun CreditAccount_Class : SubClass CreditAccount LiabilityAccount ; - --- Any card that may be used repeatedly to borrow money --- or buy products and services on credit. Issued by banks, savings and loans, retail --- stores, and other businesses. -fun CreditCard : Class ; -fun CreditCard_Class : SubClass CreditCard BankCard ; - --- A type of CreditAccount which uses a CreditCard for --- FinancialTransactions. -fun CreditCardAccount : Class ; -fun CreditCardAccount_Class : SubClass CreditCardAccount CreditAccount ; - --- Credit unions are non_profit, member_owned, financial --- cooperatives. They are operated entirely by and for their members. When you deposit --- money in a credit union, you become a member of the union because your deposit is --- considered partial ownership in the credit union. Many large organizations have --- established credit unions for their employees. -fun CreditUnion : Class ; -fun CreditUnion_Class : SubClass CreditUnion FinancialOrganization ; - --- A unary function that maps a FinancialAccount to the --- currency linked to the account. -fun CurrencyFn : El FinancialAccount -> Ind FinancialInstrument ; - - --- The lowest rating given by bond rating agencies. -fun D_Rating : Ind FinancialRating ; - - --- A bank loan to a broker for the purchase of securities pending delivery --- through clearing later the same day. -fun DayLoan : Class ; -fun DayLoan_Class : SubClass DayLoan Loan ; - --- A type of option order which instructs the broker --- to cancel any unfilled portion of the order at the close of trading on the --- day the order is first entered. -fun DayOrder : Class ; -fun DayOrder_Class : SubClass DayOrder FinancialOrder ; - --- A card which allows customers to access their funds --- immediately, electronically. Unlike a credit card, a debit card does not have --- any float. -fun DebitCard : Class ; -fun DebitCard_Class : SubClass DebitCard BankCard ; - --- DefensiveStocks are stocks of food companies, drug --- manufacturers and utility companies. -fun DefensiveStock : Class ; -fun DefensiveStock_Class : SubClass DefensiveStock Stock ; - --- A company retirement plan, such as --- a 401(k) or 403(b), in which the employee elects to defer some amount of --- his/her salary into the plan and bears the investment risk. -fun DefinedContributionPlan : Class ; -fun DefinedContributionPlan_Class : SubClass DefinedContributionPlan PensionPlan ; - --- An Activity of money being transferred into a customer's --- account at a financial institution. -fun Deposit : Class ; -fun Deposit_Class : SubClass Deposit FinancialTransaction ; - --- An account where money is deposited for checking, savings or --- brokerage use. -fun DepositAccount : Class ; -fun DepositAccount_Class : SubClass DepositAccount FinancialAccount ; - --- An activity of depositing a check into a --- FinancialOrganization. -fun DepositingACheck : Class ; -fun DepositingACheck_Class : SubClass DepositingACheck UsingAnAccount ; - --- A distribution from qualified pension plan, 401(k) --- plan, or 403(b) plan, that is remitted directly to the trustee, custodian, or --- issuer of the receiving IRA and is reported to the IRS as a rollover. This can only --- be done once per year, per account. -fun DirectRollover : Class ; -fun DirectRollover_Class : SubClass DirectRollover Rollover ; - -fun DiscoverCard : Class ; -fun DiscoverCard_Class : SubClass DiscoverCard CreditCard ; --- A taxable payment declared by a company's board of directors --- and given to its shareHolders out of the company's current or retained earnings. --- Usually quarterly. Usually given as cash, but it can also take the form of Stock or --- other property. -fun Dividend : Class ; -fun Dividend_Class : SubClass Dividend Payment ; - --- A stock market transaction (or sometimes, a quote) --- at a price lower than the preceding one for the same security. -fun Downtick : Class ; -fun Downtick_Class : SubClass Downtick StockMarketTransaction ; - --- An activity of paying by a check. -fun DrawingACheck : Class ; -fun DrawingACheck_Class : SubClass DrawingACheck UsingAnAccount ; - --- Data which provide information about or --- predict the overall health of the economy or the financial markets, --- examples are inflation, interest rates, employment, etc. -fun EconomicIndicator : Class ; -fun EconomicIndicator_Class : SubClass EconomicIndicator Proposition ; - -fun Employment : Class ; -fun Employment_Class : SubClass Employment (both FinancialContract ServiceContract) ; - --- A subclass of AuthorizationOfTransaction where --- a customer enters his/her personal identification number. -fun EnteringAPin : Class ; -fun EnteringAPin_Class : SubClass EnteringAPin AuthorizationOfTransaction ; - -fun EnteringAPing : Class ; -fun EnteringAPing_Class : SubClass EnteringAPing ContentDevelopment ; --- An option on shares of an individual common stock. -fun EquityOption : Class ; -fun EquityOption_Class : SubClass EquityOption Option ; - --- An option that can be exercised only during --- a specified period of time just prior to its expiration. -fun EuropeanStyleOption : Ind Option ; - - --- A short_term loan which is continually renewed rather than repaid. -fun EvergreenLoan : Class ; -fun EvergreenLoan_Class : SubClass EvergreenLoan Loan ; - --- An activity when the owner of the the Option --- contract invokes his rights. In the case of a call, the option owner buys the --- underlying stock. In the case of a put, the option owner sells the underlying stock. -fun ExerciseAnOption : Ind FinancialTransaction ; - - --- A class of expired BankCards. -fun ExpiredCard : Class ; -fun ExpiredCard_Class : SubClass ExpiredCard BankCard ; - --- A subclass of FinancialTransactions from one --- FinancialOrganization to another. -fun ExternalTransfer : Class ; -fun ExternalTransfer_Class : SubClass ExternalTransfer FinancialTransaction ; - --- A government mortgage that is insured by the Federal Housing --- Administration (FHA). -fun FHALoan : Class ; -fun FHALoan_Class : SubClass FHALoan Mortgage ; - --- Fill_or_kill order is a type of option order --- which requires that the order be executed completely or not at all. A --- fill_or_kill order is similar to an all_or_none (AON) order. The --- difference is that if the order cannot be completely executed (i.e., --- filled in its entirety) as soon as it is announced in the trading crowd, --- it is to be 'killed' (i.e., cancelled) immediately. Unlike an AON order, --- a FOK order cannot be used as part of a GTC order. -fun FOKOrder : Class ; -fun FOKOrder_Class : SubClass FOKOrder FinancialOrder ; - --- The communication of a printed page between remote locations. -fun Fax : Class ; -fun Fax_Class : SubClass Fax Communication ; - --- Fax machines scan a paper form and transmit a coded --- image over the telephone system. The receiving machine prints a facsimile of --- the original. A fax machine is made up of a scanner, printer and modem with --- fax signaling. -fun FaxMachine : Class ; -fun FaxMachine_Class : SubClass FaxMachine Device ; - -fun FederalHousingAdministration : Class ; -fun FederalHousingAdministration_Class : SubClass FederalHousingAdministration Government ; --- Execute an order or buy or sell a security --- or commodity. -fun FillingAnOrder : Class ; -fun FillingAnOrder_Class : SubClass FillingAnOrder FinancialTransaction ; - --- A financial agreement between two or more parties -fun FinancialContract : Class ; - - --- Failure to make required debt payments on a timely basis --- or to comply with other conditions of an obligation or agreement. -fun FinancialDefault : Class ; -fun FinancialDefault_Class : SubClass FinancialDefault FinancialTransaction ; - --- A request from a client to a broker to buy (buy order) or sell --- (sell order) a specified amount of a particular security or commodity at a specific --- price or at the market price. -fun FinancialOrder : Class ; -fun FinancialOrder_Class : SubClass FinancialOrder ServiceContract ; - --- The class FinancialOrganization includes, --- as subclasses, Bank_FinancialOrganization, CreditUnion and SavingsAnLoans. -fun FinancialOrganization : Class ; -fun FinancialOrganization_Class : SubClass FinancialOrganization Organization ; - --- The highest rating is usually AAA_Rating, --- and the lowest is D_Rating. -fun FinancialRating : Class ; -fun FinancialRating_Class : SubClass FinancialRating RelationalAttribute ; - --- A request for financial data sent in order --- to get a FinancialResponse. -fun FinancialRequest : Class ; -fun FinancialRequest_Class : SubClass FinancialRequest FinancialTransaction ; - --- The response data provided to fulfil a FinancialRequest. -fun FinancialResponse : Class ; -fun FinancialResponse_Class : SubClass FinancialResponse FinancialTransaction ; - --- An investment vehicle offered by an insurance company, that --- guarantees a stream of fixed payments over the life of the annuity. The insurer, not the --- insured, takes the investment risk. -fun FixedAnnuity : Class ; -fun FixedAnnuity_Class : SubClass FixedAnnuity Annuity ; - --- An InterestBearingAccount in which the interest rate does not --- change during the entire term of the loan. -fun FixedRateAccount : Class ; -fun FixedRateAccount_Class : SubClass FixedRateAccount InterestBearingAccount ; - --- Good_'til_cancelled (GTC) order is a type of limit order --- that remains in effect until it is either executed (filled) or cancelled, as opposed --- to a day order, which expires if not executed by the end of the trading day. A GTC --- option order is an order which if not executed will be automatically cancelled at the --- option's expiration -fun GTCOrder : Class ; -fun GTCOrder_Class : SubClass GTCOrder FinancialOrder ; - --- A bond sold by the U.S. government. -fun GovernmentBond : Class ; -fun GovernmentBond_Class : SubClass GovernmentBond Bond ; - --- Investment term that is applied to a Stock that is expected --- to appreciate in value at a high rate, pay big dividends or split. -fun GrowthStock : Class ; -fun GrowthStock_Class : SubClass GrowthStock Stock ; - --- An Attribute of FinancialAccounts which can be easily --- converted to cash. -fun HighLiquidity : Ind LiquidityAttribute ; - - --- An Attribute that characterizes investments which are likely --- to lose their principal. -fun HighRisk : Ind RiskAttribute ; - - --- An Attribute that characterizes accounts that are very profitable. -fun HighYield : Ind YieldAttribute ; - - --- Immediate or cancel Order is a type of option order --- which gives the trading crowd one opportunity to take the other side of the --- trade. After being announced, the order will be either partially or totally --- filled with any remaining balance immediately cancelled. An IOC order, which --- can be considered a type of day order, cannot be used as part of a GTC order --- since it will be cancelled shortly after being entered. The difference between --- fill_or_kill (FOK) orders and IOC orders is that a IOC order may be partially --- executed. -fun IOCOrder : Class ; -fun IOCOrder_Class : SubClass IOCOrder FinancialOrder ; - --- A benchmark against which financial or economic performance is measured, --- such as the S&P 500 or the Consumer Price Index. -fun Index : Class ; -fun Index_Class : SubClass Index PerformanceMeasure ; - --- A bond whose cash flow is inflation_adjusted, by --- being linked to the purchasing power of a particular currency. -fun IndexBond : Class ; -fun IndexBond_Class : SubClass IndexBond Bond ; - --- An option whose underlying interest is an index. --- Generally, index options are cash_settled. -fun IndexOption : Class ; -fun IndexOption_Class : SubClass IndexOption Option ; - --- A loan in which payments change in response to --- changes in an index such as the Consumer Price Index. -fun IndexedLoan : Class ; -fun IndexedLoan_Class : SubClass IndexedLoan Loan ; - --- A tax_deferred retirement --- account for an individual that permits individuals to set aside up to --- 2,000 per year, with earnings tax_deferred until withdrawals begin at age --- 59 1/2 or later (or earlier, with a 10% penalty). Only those who do not --- participate in a pension plan at work or who do participate and meet --- certain income guidelines can make deductible contributions to an IRA. --- All others can make contributions to an IRA on a non_deductible basis. --- Such contributions qualify as a deduction against income earned in that --- year and interest accumulates tax_deferred until the funds are withdrawn. -fun IndividualRetirementAccount : Class ; -fun IndividualRetirementAccount_Class : SubClass IndividualRetirementAccount (both PensionPlan (both PersonalAccount SavingsAccount)) ; - - --- The overall general upward price movement of --- goods and services in an economy, usually as measured by the Consumer --- Price Index and the Producer Price Index. -fun Inflation : Class ; -fun Inflation_Class : SubClass Inflation EconomicIndicator ; - -fun InflationIndex : Class ; -fun InflationIndex_Class : SubClass InflationIndex Index ; --- Money paid for the use of money. -fun Interest : Class ; -fun Interest_Class : SubClass Interest CurrencyMeasure ; - --- FinancialAccounts that have a fixed or adjustable interest rate. -fun InterestBearingAccount : Class ; -fun InterestBearingAccount_Class : SubClass InterestBearingAccount FinancialAccount ; - --- A non_amortized loan in which interest is --- due at regular intervals until maturity, when the full principal on the --- loan is due. -fun InterestOnlyLoan : Class ; -fun InterestOnlyLoan_Class : SubClass InterestOnlyLoan Loan ; - --- The usual way of calculating Interest, as a --- percentage of the sum borrowed. -fun InterestRate : Class ; -fun InterestRate_Class : SubClass InterestRate (both ConstantQuantity EconomicIndicator) ; - - --- A subclass of FinancialTransactions within --- one FinancialOrganization. -fun InternalTransfer : Class ; -fun InternalTransfer_Class : SubClass InternalTransfer FinancialTransaction ; - --- An activity of commiting money or capital in order to --- gain a financial return. -fun Investing : Class ; -fun Investing_Class : SubClass Investing FinancialTransaction ; - --- An account acquired for future financial return or benefit -fun InvestmentAccount : Class ; -fun InvestmentAccount_Class : SubClass InvestmentAccount DepositAccount ; - -fun InvestmentAttribute : Class ; -fun InvestmentAttribute_Class : SubClass InvestmentAttribute RelationalAttribute ; --- A person who purchases income_producing assets. -fun Investor : Class ; -fun Investor_Class : SubClass Investor SocialRole ; - --- An account owned by two or more people, usually sharing a household --- and expenses. Each co_owner has equal access to the account. Most types of accounts, whether it's --- basic checking, savings or money market, allow for joint use -fun JointAccount : Class ; -fun JointAccount_Class : SubClass JointAccount PersonalAccount ; - --- A high_risk, non_investment_grade bond with a low --- credit rating, usually BB or lower, as a consequence, it usually has a high --- yield. -fun JunkBond : Class ; -fun JunkBond_Class : SubClass JunkBond CorporateBond ; - --- Calls and puts with an expiration as long as --- thirty_nine months. Currently, equity LEAPS have two series at any --- time with a January expiration. For example, in October 2000, LEAPS --- are available with expirations of January 2002 and January 2003. -fun LEAPS : Class ; -fun LEAPS_Class : SubClass LEAPS Option ; - --- A financial obligation, debt, claim, or potential loss -fun Liability : Class ; -fun Liability_Class : SubClass Liability FinancialContract ; - --- An account for which a person is liable -fun LiabilityAccount : Class ; -fun LiabilityAccount_Class : SubClass LiabilityAccount FinancialAccount ; - --- LimitOrder is an order to a Broker to buy a specified quantity --- of a Security at or below a specified price, or to sell it at or above a specified limitPrice. -fun LimitOrder : Class ; -fun LimitOrder_Class : SubClass LimitOrder FinancialOrder ; - --- The class of events of selling all of a company's assets, --- paying outstanding debts, and distribution of the remainder to shareholders, and them --- going out of business. -fun Liquidation : Class ; -fun Liquidation_Class : SubClass Liquidation FinancialTransaction ; - --- A class of attributes which describe the degree to --- which accounts can be easily converted to cash. -fun LiquidityAttribute : Class ; -fun LiquidityAttribute_Class : SubClass LiquidityAttribute RelationalAttribute ; - --- An arrangement in which a lender gives money or property to a borrower, --- and the borrower agrees to return the property or repay the money, usually along with interest, --- at some future point(s) in time. -fun Loan : Class ; -fun Loan_Class : SubClass Loan LiabilityAccount ; - --- A formal offer by a lender making explicit --- the terms under which it agrees to lend money to a borrower over a certain --- period of time. -fun LoanCommitment : Class ; -fun LoanCommitment_Class : SubClass LoanCommitment Contract ; - -fun Locked : Ind StatusAttribute ; - --- A straddle in which a long position is taken in --- both a put and a call option -fun LongStraddle : Class ; -fun LongStraddle_Class : SubClass LongStraddle Straddle ; - --- An Attribute of FinancialAccounts which cannot be easily --- converted to cash. -fun LowLiquidity : Ind LiquidityAttribute ; - - -fun LowRisk : Ind RiskAttribute ; - --- An Attribute that characterizes accounts that are not very profitable. -fun LowYield : Ind YieldAttribute ; - - --- A Market_not_held order is a type of market order --- which allows the investor to give discretion to the floor broker regarding --- the price and/or time at which a trade is executed. -fun MNHOrder : Class ; -fun MNHOrder_Class : SubClass MNHOrder FinancialOrder ; - --- A Market_on_close order is a type of option order --- which requires that an order be executed at or near the close of trading on --- the day the order is entered. A MOC order, which can be considered a type of --- day order, cannot be used as part of a GTC order -fun MOCOrder : Class ; -fun MOCOrder_Class : SubClass MOCOrder FinancialOrder ; - --- One who directs a business or other enterprise. -fun Manager : Ind Position ; - - --- An order to buy or sell security at the best prices available. -fun MarketOrder : Class ; -fun MarketOrder_Class : SubClass MarketOrder FinancialOrder ; - --- A stock index in which each stock affects the --- index in proportion to its number of shares outstanding. -fun MarketShareWeightedIndex : Class ; -fun MarketShareWeightedIndex_Class : SubClass MarketShareWeightedIndex Index ; - --- A stock index in which each stock --- affects the index in proportion to its market value. Examples include --- NASDAQ Composite Index, S&P 500, Wilshire 5000 Equity Index, Hang Seng --- Index, and EAFE Index. -fun MarketValueWeightedIndex : Class ; -fun MarketValueWeightedIndex_Class : SubClass MarketValueWeightedIndex Index ; - -fun MasterCard : Class ; -fun MasterCard_Class : SubClass MasterCard CreditCard ; --- MoneyMarket is for borrowing and lending money for three years --- or less. The securities in a money market can be U.S. government bonds, TreasuryBills and commercial --- paper from banks and companies. -fun MoneyMarket : Class ; -fun MoneyMarket_Class : SubClass MoneyMarket SavingsAccount ; - --- A loan to finance the purchase of real estate, usually with specified payment --- periods and interest rates. -fun Mortgage : Class ; -fun Mortgage_Class : SubClass Mortgage SecuredLoan ; - --- These are bonds generally bought through a --- government agency that deals in the real estate market. They are bonds --- issued by mortgage lenders. -fun MortgageBond : Class ; -fun MortgageBond_Class : SubClass MortgageBond CorporateBond ; - --- Bond issued by a state, city, or local government to --- finance operations or special projects, interest on it is often tax_free. -fun MunicipalBond : Class ; -fun MunicipalBond_Class : SubClass MunicipalBond (both Bond TaxFreeInvestment) ; - - --- An open_ended fund operated by an investment company which --- raises money from shareholders and invests in a group of assets, in accordance with a stated --- set of objectives. Benefits include diversification and professional money management. Shares --- are issued and redeemed on demand, based on the fund's net asset value which is determined at --- the end of each trading session. -fun MutualFundAccount : Class ; -fun MutualFundAccount_Class : SubClass MutualFundAccount InvestmentAccount ; - --- National Association of Securities Dealers Automated Quotations --- system. -fun NASDAQ : Ind Organization ; - - --- A market_value weighted index of all common stocks --- listed on NASDAQ. -fun NASDAQCompositeIndex : Class ; -fun NASDAQCompositeIndex_Class : SubClass NASDAQCompositeIndex Index ; - --- A not_held order is a type of order which releases --- normal obligations implied by the other terms of the order. For example, a --- limit order designated as 'not_held' allows discretion to the floor trader in --- filling the order when the market trades at the limit price of the order. In --- this case, there is no obligation to provide the customer with an execution if --- the market trades through the limit price on the order. -fun NHOrder : Class ; -fun NHOrder_Class : SubClass NHOrder FinancialOrder ; - -fun New : Ind StatusAttribute ; - --- Index of 225 leading stocks traded on the Tokyo Stock --- Exchange. -fun NikkeiIndex : Class ; -fun NikkeiIndex_Class : SubClass NikkeiIndex Index ; - --- A legal document that obligates a borrower to repay a loan --- at a specified interestRate during a specified period of time or on demand -fun Note : Class ; -fun Note_Class : SubClass Note FinancialInstrument ; - --- One_cancels_other order (OCO) is a type of option --- order which treats two or more option orders as a package, whereby the execution --- of any one of the orders causes all the orders to be reduced by the same amount. --- For example, the investor would enter an OCO order if he/she wished to buy --- 10 May 60 calls or 10 June 60 calls or any combination of the two which when --- summed equaled 10 contracts. An OCO order may be either a day order or a GTC order -fun OCOOrder : Class ; -fun OCOOrder_Class : SubClass OCOOrder FinancialOrder ; - --- The attribute which describes services that --- are ready to transact business. -fun OpenService : Ind ServiceAttribute ; - - --- An activity of opening a financial account -fun OpeningAnAccount : Class ; -fun OpeningAnAccount_Class : SubClass OpeningAnAccount FinancialTransaction ; - --- An option is a contract to buy or sell 100 shares --- of a stock at a fixed price (the strike price) on or before a fixed date. -fun Option : Class ; -fun Option_Class : SubClass Option FinancialContract ; - --- A collection of buying/selling options --- whose purpose is to result in an optimal profit for the investor. -fun OptionStrategy : Class ; -fun OptionStrategy_Class : SubClass OptionStrategy FinancialTransaction ; - --- A check issued to an employee in payment of salary or wages -fun PayCheck : Class ; -fun PayCheck_Class : SubClass PayCheck Check ; - --- The partial or complete discharge of an obligation by --- its settlement in the form of the transfer of funds, assets, or services equal --- to the monetary value of part or all of the debtor's obligation. -fun Payment : Class ; -fun Payment_Class : SubClass Payment FinancialTransaction ; - --- A fee charged as a penalty. -fun Penalty : Class ; -fun Penalty_Class : SubClass Penalty ChargingAFee ; - -fun Pending : Ind StatusAttribute ; - --- Extremely speculative, high_risk Stock, usually --- with a price of less than 5 dollars per share. In the U.S., nearly all --- are traded on the over_the_counter bulletin board. -fun PennyStock : Class ; -fun PennyStock_Class : SubClass PennyStock Stock ; - --- A bond issued by an insurance company to --- guarantee satisfactory completion of a project by a contractor. -fun PerformanceBond : Class ; -fun PerformanceBond_Class : SubClass PerformanceBond Bond ; - -fun PerformanceMeasure : Class ; -fun PerformanceMeasure_Class : SubClass PerformanceMeasure PhysicalQuantity ; --- This is the class of personal accounts, as opposed to --- CorporateAccounts. -fun PersonalAccount : Class ; -fun PersonalAccount_Class : SubClass PersonalAccount FinancialAccount ; - --- Two lenders participating in the same loan. -fun PiggybankLoan : Class ; -fun PiggybankLoan_Class : SubClass PiggybankLoan Loan ; - -fun PlacingAnOrder : Class ; -fun PlacingAnOrder_Class : SubClass PlacingAnOrder FinancialTransaction ; --- CapitalStock which provides a specific Dividend --- that is paid before any dividends are paid to common stock holders, and which takes --- precedence over common stock in the event of a liquidation. Usually does not carry --- voting rights. -fun PreferredStock : Class ; -fun PreferredStock_Class : SubClass PreferredStock Stock ; - --- Prepayment is the payment of all or part of a debt --- prior to its due date. -fun Prepayment : Class ; -fun Prepayment_Class : SubClass Prepayment Payment ; - --- A stock index in which each stock affects the index --- in proportion to its price per share. -fun PriceWeightedIndex : Class ; -fun PriceWeightedIndex_Class : SubClass PriceWeightedIndex Index ; - --- An activity of paying the amount specified on the --- check from funds on deposit. -fun ProcessingACheck : Class ; -fun ProcessingACheck_Class : SubClass ProcessingACheck (both AuthorizationOfTransaction ControllingAnAccount) ; - - --- An inflationary indicator published by the U.S. Bureau --- of Labor Statistics to evaluate wholesale price levels in the economy. -fun ProducerPriceIndex : Class ; -fun ProducerPriceIndex_Class : SubClass ProducerPriceIndex InflationIndex ; - --- An option contract that gives the holder the --- right to sell a certain quantity of an underlying security to the writer --- of the option, at a specified price (strike price) up to a specified date --- (expiration date). -fun PutOption : Class ; -fun PutOption_Class : SubClass PutOption Option ; - --- Land, including all the natural resources and permanent buildings on it. -fun RealEstate : Class ; -fun RealEstate_Class : SubClass RealEstate (both CorpuscularObject (both FinancialAsset Region)) ; - - --- A written acknowledgment that a specified article, --- sum of money, or shipment of merchandise has been received. -fun Receipt : Ind FinancialInstrument ; - - --- Paying off an existing loan with the proceeds from a new loan, using --- the same property as collateral. -fun Refinancing : Class ; -fun Refinancing_Class : SubClass Refinancing FinancialTransaction ; - --- A bond issued with the name of the owner printed on the --- face of the certificate. It can be transferred to another individual only with the --- owner's endorsement. -fun RegisteredBond : Class ; -fun RegisteredBond_Class : SubClass RegisteredBond Bond ; - --- Securities, usually issued in private placements, that --- have limited transferability. -fun RestrictedStock : Class ; -fun RestrictedStock_Class : SubClass RestrictedStock Stock ; - --- A class of attributes which describe the degree of risk --- of a particular investment. -fun RiskAttribute : Class ; -fun RiskAttribute_Class : SubClass RiskAttribute RelationalAttribute ; - --- A tax_free reinvestment of a distribution from a --- qualified retirement plan into an IRA or other qualified plan within 60 days. --- Also called IRA rollover. Or more generally, a movement of funds from one investment --- to another. -fun Rollover : Class ; -fun Rollover_Class : SubClass Rollover FinancialTransaction ; - --- An individual retirement account in which a person --- can set aside after_tax income up to a specified amount each year. Earnings on the --- account are tax_free, and tax_free withdrawals may be made at retirement age. -fun RothIRAAccount : Class ; -fun RothIRAAccount_Class : SubClass RothIRAAccount IndividualRetirementAccount ; - -fun SARSEPPlan : Class ; -fun SARSEPPlan_Class : SubClass SARSEPPlan DefinedContributionPlan ; --- An account in a bank on which interest is usually paid and from --- which withdrawals can be made usually only by presentation of a passbook or by written authorization --- on a prescribed form. -fun SavingsAccount : Class ; -fun SavingsAccount_Class : SubClass SavingsAccount (both DepositAccount InterestBearingAccount) ; - - --- A federally or state chartered FinancialOrganization --- that takes Deposits from individuals, funds Mortgages, and pays Dividends. -fun SavingsAndLoans : Class ; -fun SavingsAndLoans_Class : SubClass SavingsAndLoans FinancialOrganization ; - --- A defined contribution plan offered by a --- corporation to its employees, which allows employees to set aside --- tax_deferred income for retirement purposes. The name 401(k) comes from --- the IRS section describing the program. -fun SavingsPlan_401K : Class ; -fun SavingsPlan_401K_Class : SubClass SavingsPlan_401K DefinedContributionPlan ; - --- A retirement plan similar to a 401(k) plan, but --- one which is offered by non_profit organizations, such as universities and --- some charitable organizations, rather than corporations. -fun SavingsPlan_403B : Class ; -fun SavingsPlan_403B_Class : SubClass SavingsPlan_403B DefinedContributionPlan ; - --- A simpler alternative to a 401(k) plan available --- only to companies with 25 or fewer employees, which gives employees the --- opportunity to make contributions to their SEP accounts with pre_tax --- dollars and reduce their current year's net income. -fun SavingsPlan_408K : Class ; -fun SavingsPlan_408K_Class : SubClass SavingsPlan_408K PensionPlan ; - --- Bond backed by collateral, such as a mortgage --- or lien, the title to which would be transferred to the bondholders in the --- event of default. -fun SecuredBond : Class ; -fun SecuredBond_Class : SubClass SecuredBond Bond ; - -fun SecuredLoan : Class ; -fun SecuredLoan_Class : SubClass SecuredLoan Loan ; --- An investment instrument, other than an insurance policy or --- FixedAnnuity insurance policy or fixed annuity issued by a corporation, government, --- or other organization which offers evidence of debt or equity. -fun Security : Class ; -fun Security_Class : SubClass Security FinancialInstrument ; - --- The class of attributes which describe --- CommercialServices, such as OpenService and ClosedService. -fun ServiceAttribute : Class ; -fun ServiceAttribute_Class : SubClass ServiceAttribute RelationalAttribute ; - --- A Contract where an Agent agrees to --- perform a service for another Agent (usually for a price). -fun ServiceContract : Class ; -fun ServiceContract_Class : SubClass ServiceContract Contract ; - --- Certificate, representing one unit of ownership in a corporation, --- MutualFund, or limited partnership. -fun Share : Class ; -fun Share_Class : SubClass Share (both CurrencyMeasure Security) ; - - --- Borrowing a security (or commodity futures --- contract) from a broker and selling it, with the understanding that it --- must later be bought back (hopefully at a lower price) and returned to the --- broker. SEC rules allow investors to sell short only on an uptick or a --- zero_plus tick, to prevent 'pool operators' from driving down a stock --- price through heavy short_selling, then buying the shares for a large --- profit. -fun ShortSale : Class ; -fun ShortSale_Class : SubClass ShortSale FinancialTransaction ; - --- A put or call option by itself, as opposed to --- multiple options as used in a spread or straddle. -fun SingleOption : Class ; -fun SingleOption_Class : SubClass SingleOption OptionStrategy ; - --- A loan whose principal is due in total with a single --- payment at maturity. -fun SinglePaymentLoan : Class ; -fun SinglePaymentLoan_Class : SubClass SinglePaymentLoan Loan ; - --- The purchase of one option and the --- simultaneous sale of a related option, such as two options of the same --- class but different strike prices and/or expiration dates. -fun SpreadOption : Class ; -fun SpreadOption_Class : SubClass SpreadOption OptionStrategy ; - --- A class of four Attributes indicating the --- status of a FinancialAccount, viz. Active, Locked, New, and Pending. -fun StatusAttribute : Class ; -fun StatusAttribute_Class : SubClass StatusAttribute RelationalAttribute ; - --- Any index which is intended to gauge upward or downward trends --- in stock prices. -fun StockIndex : Class ; -fun StockIndex_Class : SubClass StockIndex Index ; - --- General term for the organized trading of stocks through --- exchanges and over_the_counter. -fun StockMarket : Class ; -fun StockMarket_Class : SubClass StockMarket Organization ; - --- Any FinancialTransaction which involves --- Stock and which occurs in a StockMarket. -fun StockMarketTransaction : Class ; -fun StockMarketTransaction_Class : SubClass StockMarketTransaction FinancialTransaction ; - --- An option in which the underlier is the --- common stock of a corporation, giving the holder the right to buy or --- sell its stock, at a specified price, by a specific date. -fun StockOption : Class ; -fun StockOption_Class : SubClass StockOption Option ; - --- Exchange of the number of shares of stock outstanding --- for a larger number. -fun StockSplit : Class ; -fun StockSplit_Class : SubClass StockSplit FinancialTransaction ; - --- A market order to buy or sell a certain quantity of --- a certain security if a specified price (the stopPrice) is reached or passed. -fun StopOrder : Class ; -fun StopOrder_Class : SubClass StopOrder FinancialOrder ; - --- The purchase or sale of an equal number of puts and --- calls, with the same strike price and expiration dates. -fun Straddle : Class ; -fun Straddle_Class : SubClass Straddle OptionStrategy ; - -fun TaxFreeInvestment : Class ; -fun TaxFreeInvestment_Class : SubClass TaxFreeInvestment Investment ; -fun TaxableInvestment : Class ; -fun TaxableInvestment_Class : SubClass TaxableInvestment Investment ; --- The instrument, such as a deed, that constitutes evidence --- of a legal right of possession or control. -fun Title : Class ; -fun Title_Class : SubClass Title FinancialInstrument ; - --- Accounts that pay interest, usually at below_market --- interest rates, that do not have a specific maturity, and that usually can be withdrawn upon demand -fun TraditionalSavingsAccount : Class ; -fun TraditionalSavingsAccount_Class : SubClass TraditionalSavingsAccount SavingsAccount ; - --- A negotiable debt obligation issued by the U.S. government and backed --- by its full faith and credit, having a maturity of one year or less. Exempt from state and local taxes -fun TreasuryBill : Class ; -fun TreasuryBill_Class : SubClass TreasuryBill SavingsAccount ; - --- A negotiable, coupon_bearing debt obligation --- issued by the U.S. government and backed by its full faith and credit, having --- a maturity of more than 7 years. Interest is paid semi_annually. Exempt from --- state and local taxes. -fun TreasuryBond : Class ; -fun TreasuryBond_Class : SubClass TreasuryBond Bond ; - -fun UnsecuredLoan : Class ; -fun UnsecuredLoan_Class : SubClass UnsecuredLoan Loan ; --- To change data in a file or database -fun Update : Class ; -fun Update_Class : SubClass Update (both ContentDevelopment FinancialTransaction) ; - - --- A stock market transaction (or sometimes, a quote) --- at a price higher than the preceding one for the same security. -fun Uptick : Class ; -fun Uptick_Class : SubClass Uptick StockMarketTransaction ; - --- An activity of using a financial account -fun UsingAnAccount : Class ; -fun UsingAnAccount_Class : SubClass UsingAnAccount FinancialTransaction ; + -- (buyingPowerAmount ?Account ?Day ?Amount) holds if ?Amount is + -- the buying power amount of the FinancialAccount ?Account on the Day ?Day. + fun buyingPowerAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; --- A class of valid BankCards -fun ValidCard : Class ; -fun ValidCard_Class : SubClass ValidCard BankCard ; + -- Date, prior to maturity, on which a callable bond may be redeemed. + fun callDate : El Bond -> El Day -> Formula ; --- When the shares in a company are considered attractive because --- the company is undervalue, usually because it has a low P/E ratio. -fun ValueStock : Class ; -fun ValueStock_Class : SubClass ValueStock Stock ; + -- (cardAccount ?Card ?Account) means that ?Account is + -- the FinancialAccount linked to a BankCard ?Card. + fun cardAccount : El BankCard -> El FinancialAccount -> Formula ; --- An investment vehicle offered by an insurance company that --- does not guarantee a payment amount but does have the potential for greater returns than --- a FixedAnnuity. -fun VariableAnnuity : Class ; -fun VariableAnnuity_Class : SubClass VariableAnnuity Annuity ; + -- (cardCode ?Code ?Card) means that ?Code represents + -- the account number of the BankCard ?Card. + fun cardCode : El ContentBearingObject -> El BankCard -> Formula ; --- A subclass of AuthorizationOfTransaction --- where an ATM machine checks the code of the BankCard inserted to this machine. -fun VerifyingCardCode : Class ; -fun VerifyingCardCode_Class : SubClass VerifyingCardCode AuthorizationOfTransaction ; + -- (checkAccount ?Check ?Account) means that ?Account + -- is the FinancialAccount from which the amount specifed on the check is paid. + fun checkAccount : El Check -> El FinancialAccount -> Formula ; -fun VisaCard : Class ; -fun VisaCard_Class : SubClass VisaCard CreditCard ; --- An activity of money being transferred from a customer's --- account at a financial institution. -fun Withdrawal : Class ; -fun Withdrawal_Class : SubClass Withdrawal FinancialTransaction ; + fun checkNumber : El Check -> El PositiveInteger -> Formula; --- A class of attributes which describe the degree to which --- accounts are profitable. -fun YieldAttribute : Class ; -fun YieldAttribute_Class : SubClass YieldAttribute RelationalAttribute ; + -- (closingPrice ?Stock ?Amount ?Day) means that the closing + -- price of the Stock ?Stock on the Day ?Day was ?Amount. + fun closingPrice : El Stock -> El CurrencyMeasure -> El Day -> Formula ; --- A bond in which no periodic coupon is paid over the --- life of the contract. Instead, both the principal and the interest are paid at the --- maturity date. -fun ZeroCouponBond : Class ; -fun ZeroCouponBond_Class : SubClass ZeroCouponBond Bond ; + -- The total monetary value an employee receives during a certain time period. + fun compensationPackage : El Human -> El CurrencyMeasure -> El TimePosition -> Formula ; --- (accountAt ?Account ?Bank) means that ?Account is a --- FinancialAccount opened in the FinancialOrganization ?Bank. -fun accountAt : El FinancialAccount -> El FinancialOrganization -> Formula ; + -- (compoundInterest ?Account ?Amount ?Time) means + -- that ?Amount is the interest which is calculated not only on the initial principal + -- but also the accumulated interest of prior periods. Compound interest can be + -- calculated annually, semi_annually, quartely, monthly, or daily. + fun compoundInterest : El FinancialAccount -> El Interest -> El TimeInterval -> Formula ; + fun confirmationNumber : El FinancialTransaction -> El SymbolicString -> Formula ; --- (accountHolder ?Account ?Agent) means that ?Agent --- is the account holder of the FinancialAccount ?Account. -fun accountHolder : El FinancialAccount -> El CognitiveAgent -> Formula ; + -- (couponInterest ?BOND ?INTEREST) means that ?INTEREST is + -- the periodic interest payment made to bondholders during the life of the ?BOND. + fun couponInterest : El Bond -> El Interest -> Formula ; + -- (creditLimit ?ACCOUNT ?AMNT) holds if ?AMNT is the + -- maximum amount of credit that a bank or other lender will extend to a customer. + fun creditLimit : El CreditAccount -> El CurrencyMeasure -> Formula ; -fun accountNumber : El FinancialAccount -> El PositiveInteger -> Formula ; + -- (creditRanking ?Agent ?Rating) holds if ?Rating is a FinancialRating + -- based on financial analysis by a credit bureau, of one's financial history, + -- specifically as it relates to one's ability to meet debt obligations. + -- Lenders use this information to decide whether to approve a loan. + fun creditRanking : El CognitiveAgent -> El FinancialRating -> Formula ; --- (accountStatus ?Account ?Status) holds if --- ?Status describes the status of the account, such as Active, Locked, --- New or Pending. -fun accountStatus : El FinancialAccount -> El StatusAttribute -> Formula ; + -- (creditsPerPeriod ?Account ?Amount ?Period) holds if ?Amount is the amount credited to + -- the FinancialAccount ?Account during the time period ?Period. + fun creditsPerPeriod : El FinancialAccount -> El CurrencyMeasure -> El TimeInterval -> Formula ; + -- (currentAccountBalance ?Account ?Date ?Amount) means that ?Amount is the balance of + -- the FinancialAccount ?Account as of the date ?Date. + fun currentAccountBalance : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; --- The accumulated coupon interest, paid to the seller of a --- bond by the buyer unless the bond is in default. -fun accruedInterest : El Bond -> El Interest -> Formula ; + -- (currentInterestRate ?Account ?Day ?Rate) means that ?Rate is the interest rate of + -- the Account on a specific day ?Day. + fun currentInterestRate : El FinancialAccount -> El Day -> El InterestRate -> Formula ; + -- A very general relation that exists whenever there is a FinancialTransaction between + -- the two Agents such that the first is the destination of the FinancialTransaction and + -- the second is the agent. + fun customer : El CognitiveAgent -> El CognitiveAgent -> Formula ; -fun administrator : El FinancialAccount -> El Position -> Formula ; + -- (customerRepresentative ?PERSON1 ?PERSON2 ?ORG) means that ?PERSON1 acts as a representative + -- of Organization ?ORG in a SocialInteraction involving ?PERSON2. + fun customerRepresentative : El CognitiveAgent -> El CognitiveAgent -> El Organization -> Formula ; --- (administratorStatus ?Administrator ?Status) --- holds is ?Status describes the status of the administrator. -fun administratorStatus : El Position -> El StatusAttribute -> Formula ; + -- (dailyLimit ?Account ?TransactionType ?Amount) means that ?Amount is the daily limit of + -- the ?Account for the type of FinancialTransactions ?TransactionType. + fun dailyLimit: El FinancialAccount -> Desc FinancialTransaction -> El CurrencyMeasure -> Formula ; + -- (dateOfStatement ?Statement ?Date) holds if ?Date is the date when BankStatement was issued. + fun dateOfStatement : El BankStatement -> El Day -> Formula ; --- An amount (usually income) after taxes --- have been subtracted. -fun afterTaxIncome : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; + -- (dayPhone ?Phone ?Agent) means that ?Phone is a phone + -- number corresponding to the location where ?Agent can be reached during the day. + fun dayPhone : El SymbolicString -> El Agent -> Formula ; + -- The part of the purchase price paid in cash up front, + -- reducing the amount of the loan or mortgage. + fun downPayment : El Loan -> El CurrencyMeasure -> Formula ; --- (agreementActive ?Agreement ?Date) holds if --- ?Agreement is in force at the time specified by ?Date. -fun agreementActive : El Contract -> El TimePosition -> Formula ; + -- Legal date an agreement or document goes into force. + fun effectiveDate : El Contract -> El Day -> Formula ; + -- (emailAddress ?Address ?Agent) means that ?Address is + -- an electronic address of the location where ?Agent can be reached. + fun emailAddress : El SymbolicString -> El Agent -> Formula ; --- (agreementMember ?Agreement ?Agent) means that --- ?Agent is one of the participants of the Agreement. -fun agreementMember : El Contract -> El CognitiveAgent -> Formula ; + -- An individual's contribution to his/her + -- own retirement plan, often tax_deferred. + fun employeeContribution : El Human -> El CurrencyMeasure -> El TimeInterval -> Formula ; + -- (eveningPhone ?Phone ?Agent) means that ?Phone is a phone number + -- corresponidng to the location where ?Agent can be reached during the evening. + fun eveningPhone : El SymbolicString -> El Agent -> Formula ; --- (agreementPeriod ?Agreement ?Period) holds if --- ?Period specifies a Time interval during which ?Agreement is in force. -fun agreementPeriod : El Contract -> El TimeInterval -> Formula ; + -- (expirationDate ?Contract ?Date) means that ?Date is the date on which ?Contract expires. + fun expirationDate : El Contract -> El Day -> Formula ; + -- The nominal dollar amount assigned to a security by the issuer. + -- For an equity security, par is usually a very small amount that bears no relationship to + -- its market price, except for preferred stock, in which case par is used to calculate dividend + -- payments. For a debt security, par is the amount repaid to the investor when the bond matures + -- (usually, corporate bonds have a par value of 1000, municipal bonds 5000, and federal bonds + -- 10,000). + fun faceValue : El Collateral -> El CurrencyMeasure -> Formula ; --- (amountCharged ?Fee ?Amount) means that ?Amount is the amount of --- the fee charged. -fun amountCharged : El ChargingAFee -> El CurrencyMeasure -> Formula ; + fun finalPrice : El Stock -> El CurrencyMeasure -> Formula ; + -- (financialResponseTo ?Response ?Request) means that + -- ?Response is a FinancialResponse to the FinancialRequest ?Request. + fun financialResponseTo : El FinancialResponse -> El FinancialRequest -> Formula ; --- (amountDue ?ACCOUNT ?AMOUNT ?DATE) means ?DATE is the --- date on which the amount of Money ?AMOUNT of a particular ?ACCOUNT is due and payable -fun amountDue : El FinancialAccount -> El CurrencyMeasure -> El TimePosition -> Formula ; + -- (fixedInterestRate ?Account ?Rate) holds if ?Rate is the interest rate that + -- does not change during the entire term of the account. + fun fixedInterestRate : El FinancialAccount -> El InterestRate -> Formula ; + -- A minimum amount that a lender is willing to loan + fun floorLoan : El Loan -> El CurrencyMeasure -> Formula ; -fun appraisedValue : El Collateral -> El CurrencyMeasure -> Formula ; + -- A call option is in the money if the stock + -- price is above the strike price. A put option is in the money if the + -- stock price is below the strike price. + fun inTheMoney : El Option -> El TimePosition -> Formula ; --- (askPrice ?Obj ?Money ?Agent) means that ?Agent offers to sell --- ?Obj for the amount of ?Money. -fun askPrice : El Object -> El CurrencyMeasure -> El Agent -> Formula ; + -- (incomeOf ?Agent ?Money ?Period) means that + -- ?Money is the amount of money or its equivalent received during a period + -- of time in exchange for labor or services, from the sale of goods or + -- property, or as profit from financial investments + fun income : El Human -> El CurrencyMeasure -> El TimeInterval -> Formula ; + -- (incomeEarned ?Agent ?Money ?Action) means that ?Agent earned + -- the amount of money ?Money from performing ?Action. Note that incomeEarned + -- denotes that amount of money made before taxes are deducted. + fun incomeEarned : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; --- A term that describes an option with a strike --- price that is equal to the current market price of the underlying stock. -fun atTheMoney : El Option -> El TimePosition -> Formula ; + -- The percentage increase in the price of goods and services, usually annually. + fun inflationRate : El Inflation -> El RealNumber -> Formula ; + -- The annually percentage increase + -- in the price of goods and services for the given Nation. + fun inflationRateInCountry : El Nation -> El RealNumber -> Formula ; --- (availableBalance ?Account ?Day ?Amount) means --- that ?Amount is the balance which is available for withdrawal from the FinancialAccount --- ?Account. -fun availableBalance : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; + -- (insured ?Contract ?Org) means that ?Contract is insured + -- by the ?Organization. + fun insured : El Contract -> El Organization -> Formula ; + -- (interestEarned ?Account ?Interest ?Period) means that ?Interest is + -- the amount earned on the FinancialAccount ?Account, for the duration ?Period. + fun interestEarned : El FinancialAccount -> El Interest -> El TimeInterval -> Formula ; --- (availableCash ?Account ?Day ?Cash) holds if --- ?Cash is a cash amount available for withdrawal from the FinancialAccount --- ?Account. -fun availableCash : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; + -- (interestRatePerPeriod ?ACCOUNT ?RATE ?TIME) means that ?RATE is the interest + -- per the period TIME divided by principal amount, expressed as a percentage + fun interestRatePerPeriod : El FinancialAccount -> El InterestRate -> El TimeInterval -> Formula ; + -- (issuedBy ?Instrument ?Agent) means that a + -- FinancialInstrument ?Instrument is produced and offered by ?Agent. + fun issuedBy : El FinancialInstrument -> El CognitiveAgent -> Formula ; --- (bankAccount ?Type ?Bank) holds if ?Type is a --- type of the financial accounts offered by the bank. -fun bankAccount: Desc FinancialAccount -> El Bank_FinancialOrganization -> Formula ; + -- (lastStatement ?Account ?Statement) means that + -- ?Statement is the most recent monthly report sent to a debtor or bank depositor. + fun lastStatement : El FinancialAccount -> El BankStatement -> Formula ; + -- (lastStatementBalance ?Account ?Amount) holds if ?Amount is the balance + -- shown on the last statement. + fun lastStatementBalance : El FinancialAccount -> El CurrencyMeasure -> Formula ; --- Income before taxes are deducted -fun beforeTaxIncome : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; + -- (lender ?Loan ?Agent) means that ?Agent is a private, public or + -- institutional entity that put up the funds for the ?Loan. + fun lender : El Loan -> El CognitiveAgent -> Formula ; + -- (limitPrice ?Order ?Money) means that ?Money is the limit price + -- for the limit order ?Order. If ?Order is a buy order, then ?Money specifies the maximum price + -- to be paid. If ?Order is a sell order, then ?Money specifies the minimum price to be paid. + fun limitPrice : El LimitOrder -> El CurrencyMeasure -> Formula ; --- A standard by which something can be measured or judged. -fun benchmark : El Abstract -> El PerformanceMeasure -> Formula ; + -- Degree to which accounts can be easily converted to cash. + fun liquidity : El FinancialAccount -> El LiquidityAttribute -> Formula ; + fun listedOn : El Stock -> El Organization -> Formula ; --- (bidPrice ?Obj ?Money ?Agent) means that ?Agent offers to buy --- ?Obj for the amount of ?Money. -fun bidPrice : El Object -> El CurrencyMeasure -> El Agent -> Formula ; + -- (loanFeeAmount ?Loan ?Amount) means that + -- ?Amount is the fee amount of the Loan ?Loan. + fun loanFeeAmount : El Loan -> El CurrencyMeasure -> Formula ; + -- (loanForPurchase ?ACCOUNT ?PRODUCT) means that ?ACCOUNT is a + -- loan to finance the purchase of ?PRODUCT. + fun loanForPurchase : El Loan -> El Object -> Formula ; --- A measure of the quality and safety of a bond, --- based on the issuer's financial condition. More specifically, an --- evaluation from a rating service indicating the likelihood that a debt --- issuer will be able to meet scheduled interest and principal repayments. --- Typically, AAA is highest (best), and D is lowest (worst). -fun bondRating : El Bond -> El FinancialRating -> Formula ; + fun loanInterest : El Loan -> El CurrencyMeasure -> Formula ; + -- (marginBalanceAmount ?Account ?Day ?Amount) + -- holds if ?Amount is the margin balance amount of the FinancialAccount ?Account + -- on the Day ?Day. + fun marginBalanceAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; --- (borrower ?Loan ?Agent) means that ?Agent is a borrower of the ?Loan -fun borrower : El Loan -> El CognitiveAgent -> Formula ; + fun marketValueAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; + -- The date on which the principal amount of the account + -- becomes due and payable. + fun maturityDate : El FinancialAccount -> El Day -> Formula ; --- (buyingPowerAmount ?Account ?Day ?Amount) holds --- if ?Amount is the buying power amount of the FinancialAccount ?Account on the Day --- ?Day. -fun buyingPowerAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; + -- (minimumBalance ?Account ?ActivityType ?Amount) + -- means that ?Amount is the mimimum amount required by the type of + -- FinancialTransaction ?ActivityType. + fun minimumBalance: El FinancialAccount -> Desc FinancialTransaction -> El CurrencyMeasure -> Formula ; + -- The smallest amount which can be paid on a revolving + -- charge account to avoid a penalty. + fun minimumPayment : El LiabilityAccount -> El CurrencyMeasure -> El TimeDuration -> Formula ; --- Date, prior to maturity, on which a callable bond --- may be redeemed. -fun callDate : El Bond -> El Day -> Formula ; + -- (monthlyIncome ?Agent ?Money) means that ?Money is the amount of money received + -- during one month period + fun monthlyIncome : El Human -> El CurrencyMeasure -> Formula ; + -- The amount due the supplier after commissions have been deducted. + fun netAmount : El Investment -> El CurrencyMeasure -> Formula ; --- (cardAccount ?Card ?Account) means that ?Account is --- the FinancialAccount linked to a BankCard ?Card. -fun cardAccount : El BankCard -> El FinancialAccount -> Formula ; + -- Total assets minus total liabilities of an individual or company. + fun netWorth : El CognitiveAgent -> El CurrencyMeasure -> El Day -> Formula ; + -- (optionHolder ?Option ?Agent) means that ?Agent is the holder of the option. + fun optionHolder : El Option -> El CognitiveAgent -> Formula ; --- (cardCode ?Code ?Card) means that ?Code represents --- the account number of the BankCard ?Card. -fun cardCode : El ContentBearingObject -> El BankCard -> Formula ; + -- (optionSeller ?Option ?Agent) means that ?Agent is the writer of the option. + fun optionSeller : El Option -> El CognitiveAgent -> Formula ; + -- (orderFor ?Order ?Transaction ?Security) means that the content of ?Order + -- is to realize an instance of ?Transaction where ?Security is the patient of ?Transaction. + fun orderFor: El FinancialTransaction -> Desc FinancialTransaction -> El Security -> Formula ; --- (checkAccount ?Check ?Account) means that ?Account --- is the FinancialAccount from which the amount specifed on the check is paid. -fun checkAccount : El Check -> El FinancialAccount -> Formula ; + -- (originalBalance ?ACCOUNT ?BALANCE) means that ?BALANCE is + -- the balance of the account at the time the account is opened. + fun originalBalance : El FinancialAccount -> El CurrencyMeasure -> Formula ; + -- A call option is out of the money if the + -- stock price is below its strike price. A put option is out of the money + -- if the stock price is above its strike price. + fun outOfTheMoney : El Option -> El TimePosition -> Formula ; -fun checkNumber : El Check -> El PositiveInteger -> Formula; + -- The amount by which withdrawals exceed deposits. + fun overdraft : El FinancialAccount -> El CurrencyMeasure -> El Day -> Formula ; --- (closingPrice ?Stock ?Amount ?Day) means that the closing --- price of the Stock ?Stock on the Day ?Day was ?Amount. -fun closingPrice : El Stock -> El CurrencyMeasure -> El Day -> Formula ; + -- (paymentsPerPeriod ?Account ?Amount ?Period) holds if ?Amount is + -- the amount paid on the FinancialAccount ?Account during the time period ?Period. + fun paymentsPerPeriod : El FinancialAccount -> El CurrencyMeasure -> El TimeInterval -> Formula ; + -- (periodicPayment ?Pay ?Amount ?Period) holds if ?Pay is one of the periodic payments for the amount ?Amount. + fun periodicPayment : El FinancialAccount -> El CurrencyMeasure -> El TimeDuration -> Formula ; --- The total monetary value an employee --- receives during a certain time period. -fun compensationPackage : El Human -> El CurrencyMeasure -> El TimePosition -> Formula ; + -- (phoneNumber ?Phone ?Agent) holds if ?Phone is a phone number corresponding to the Telephone ?Phone. + fun phoneNumber : El SymbolicString -> El Telephone -> Formula ; + -- (pin ?PIN ?Card) means that ?PIN is a personal identification number linked to the ?Card. + fun pin : El SymbolicString -> El BankCard -> Formula ; --- (compoundInterest ?Account ?Amount ?Time) means --- that ?Amount is the interest which is calculated not only on the initial principal --- but also the accumulated interest of prior periods. Compound interest can be --- calculated annually, semi_annually, quartely, monthly, or daily. -fun compoundInterest : El FinancialAccount -> El Interest -> El TimeInterval -> Formula ; + -- The maximum amount of money the Agent can lose by choosing this type of Investment. + fun potentialLoss : El CognitiveAgent -> El Investment -> El CurrencyMeasure -> Formula ; + -- Total price of an option. + fun premium : El Option -> El CurrencyMeasure -> Formula ; -fun confirmationNumber : El FinancialTransaction -> El SymbolicString -> Formula ; + -- (price ?Obj ?Money ?Agent) means that ?Agent pays the amount of + -- money ?Money for ?Obj. + fun price : El Physical -> El CurrencyMeasure -> El Agent -> Formula ; --- (couponInterest ?BOND ?INTEREST) means that ?INTEREST is --- the periodic interest payment made to bondholders during the life of the ?BOND. -fun couponInterest : El Bond -> El Interest -> Formula ; + -- The interest rate that commercial banks charge their most creditworthy borrowers, + -- such as large corporations. The prime rate is a lagging indicator. + fun primeInterestRate : El Day -> El InterestRate -> Formula ; + -- (principalAmount ?ACCOUNT ?BALANCE) means that ?BALANCE is the amount borrowed, + -- or the part of the amount borrowed which remains unpaid (excluding interest). + fun principalAmount : El FinancialAccount -> El CurrencyMeasure -> Formula ; --- (creditLimit ?ACCOUNT ?AMNT) holds if ?AMNT is the --- maximum amount of credit that a bank or other lender will extend to a customer. -fun creditLimit : El CreditAccount -> El CurrencyMeasure -> Formula ; + -- The positive gain from an investment or business operation after + -- subtracting for all expenses. + fun profit : El FinancialTransaction -> El CurrencyMeasure -> Formula ; + -- (purchasesPerPeriod ?Account ?Amount ?Period) + -- holds if ?Amount is the amount of purchases added to the FinancialAccount ?Account + -- during the time period ?Period. + fun purchasesPerPeriod : El FinancialAccount -> El CurrencyMeasure -> El TimeInterval -> Formula ; --- (creditRanking ?Agent ?Rating) holds if --- ?Rating is a FinancialRating based on financial analysis by a credit --- bureau, of one's financial history, specifically as it relates to one's --- ability to meet debt obligations. Lenders use this information to decide --- whether to approve a loan. -fun creditRanking : El CognitiveAgent -> El FinancialRating -> Formula ; + -- Relates an instance of Investing to the level of risk associated + -- with the investment. + fun riskLevel : El Investment -> El RiskAttribute -> Formula ; + fun riskTolerance : El Investor -> El RiskAttribute -> Formula ; --- (creditsPerPeriod ?Account ?Amount ?Period) --- holds if ?Amount is the amount credited to the FinancialAccount ?Account during --- the time period ?Period. -fun creditsPerPeriod : El FinancialAccount -> El CurrencyMeasure -> El TimeInterval -> Formula ; + -- Assets pledged by a borrower to secure a loan + -- or other credit, and subject to seizure in the event of FinancialDefault. + fun securedBy : El FinancialAccount -> El Collateral -> Formula ; + -- A charge to the customer levied by a FinancialOrganization + -- for a FinancialTransaction, such as OpeningAnAccount or UsingAnAccount. + fun serviceFee : El FinancialOrganization -> El FinancialTransaction -> El CurrencyMeasure -> Formula ; --- (currentAccountBalance ?Account ?Date ?Amount) means that ?Amount is the balance of the FinancialAccount ?Account as of the date --- ?Date. -fun currentAccountBalance : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; + -- (shareHolder ?Stock ?Agent) means that ?Agent possesses + -- shares of Stock in a corporation or mutual fund. + fun shareHolder : El Share -> El CognitiveAgent -> Formula ; + fun shareOf : El Share -> El Organization -> Formula ; --- (currentInterestRate ?Account ?Day ?Rate) --- means that ?Rate is the interest rate of the Account on a specific day ?Day. -fun currentInterestRate : El FinancialAccount -> El Day -> El InterestRate -> Formula ; + -- (marketvalueAmount ?Account ?Day ?Amount) holds + -- if ?Amount is the market value amount of the FinancialAccount ?Account on the Day + -- ?Day. shortBalanceAmount (shortBalanceAmount ?Account ?Day ?Amount) + -- holds if ?Amount is the short balance amount of the FinancialAccount ?Account + -- on the Day ?Day. + fun shortBalanceAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; + -- (signedBy ?Instrument ?Agent) means that ?Instrument + -- has been signed by ?Agent. + fun signedBy : El Certificate -> El CognitiveAgent -> Formula ; --- A very general relation that exists whenever there --- is a FinancialTransaction between the two Agents such that the first is --- the destination of the FinancialTransaction and the second is the --- agent. -fun customer : El CognitiveAgent -> El CognitiveAgent -> Formula ; + -- (simpleInterest ?Account ?Amount ?Time) means + -- that ?Amount is the interest calculated on a principal sum, not compounded on + -- earned interest, for the duration ?Time. + fun simpleInterest : El FinancialAccount -> El Interest -> El TimeInterval -> Formula ; + fun splitFor : El StockSplit -> El Integer -> El Integer -> Formula ; --- (customerRepresentative --- ?PERSON1 ?PERSON2 ?ORG) means that ?PERSON1 acts as a representative --- of Organization ?ORG in a SocialInteraction involving ?PERSON2. -fun customerRepresentative : El CognitiveAgent -> El CognitiveAgent -> El Organization -> Formula ; + -- (statementAccount ?Statement ?Account) means + -- that ?Account is the account of the BankStatement ?Statement. + fun statementAccount : El BankStatement -> El FinancialAccount -> Formula ; + -- (statementInterest ?Statement ?Amount) holds + -- if ?Amount is the interest amount as shown on the BankStatement ?Statement. + fun statementInterest : El BankStatement -> El CurrencyMeasure -> Formula ; --- (dailyLimit ?Account ?TransactionType ?Amount) --- means that ?Amount is the daily limit of the ?Account for the type of --- FinancialTransactions ?TransactionType. -fun dailyLimit: El FinancialAccount -> Desc FinancialTransaction -> El CurrencyMeasure -> Formula ; + -- (statementPeriod ?Statement ?Period) means that + -- ?Period is the time period of the BankStatement ?Statement. + fun statementPeriod : El BankStatement -> El TimeInterval -> Formula ; + -- A unique symbol assigned to a security. NYSE and + -- AMEX listed stocks have symbols of three characters or less. NASDAQ_listed + -- securities have four or five characters. + fun stockSymbol : El Stock -> El SymbolicString -> Formula ; --- (dateOfStatement ?Statement ?Date) holds if --- ?Date is the date when BankStatement was issued. -fun dateOfStatement : El BankStatement -> El Day -> Formula ; + -- The specified price on an option contract at + -- which the contract may be exercised, whereby a call option buyer can buy + -- the underlier or a put option buyer can sell the underlier. + fun strikePrice : El FinancialInstrument -> El CurrencyMeasure -> Formula ; + -- Income whose taxes can be postponed + -- until a later date. Examples include IRA, 401(k), Keogh Plan, annuity, + -- Savings Bond and Employee Stock Ownership Plan. + fun taxDeferredIncome : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; --- (dayPhone ?Phone ?Agent) means that ?Phone is a phone --- number corresponding to the location where ?Agent can be reached during the day. -fun dayPhone : El SymbolicString -> El Agent -> Formula ; + -- (underlier ?Option ?Instrument) means that + -- ?Instrument is a security which is subject to delivery upon exercise of + -- ?Option. + fun underlier : El Option -> El FinancialInstrument -> Formula ; + -- The annual rate of return on an investment, expressed as a + -- percentage. For bonds and notes, it is the coupon rate divided by the market price. + fun yield : El Investment -> El FunctionQuantity -> Formula ; --- The part of the purchase price paid in cash up front, --- reducing the amount of the loan or mortgage. -fun downPayment : El Loan -> El CurrencyMeasure -> Formula ; + -- A profit obtained from an investment. yieldLevel Relates a FinancialAccount to + -- the yield level (i.e. the type of profit) which can be expected from the account. + fun yieldLevel : El FinancialAccount -> El YieldAttribute -> Formula ; - --- Legal date an agreement or document goes into force. -fun effectiveDate : El Contract -> El Day -> Formula ; - - --- (emailAddress ?Address ?Agent) means that ?Address is --- an electronic address of the location where ?Agent can be reached. -fun emailAddress : El SymbolicString -> El Agent -> Formula ; - - --- An individual's contribution to his/her --- own retirement plan, often tax_deferred. -fun employeeContribution : El Human -> El CurrencyMeasure -> El TimeInterval -> Formula ; - - --- (eveningPhone ?Phone ?Agent) means that ?Phone --- is a phone number corresponidng to the location where ?Agent can be reached --- during the evening. -fun eveningPhone : El SymbolicString -> El Agent -> Formula ; - - --- (expirationDate ?Contract ?Date) means that --- ?Date is the date on which ?Contract expires. -fun expirationDate : El Contract -> El Day -> Formula ; - - --- The nominal dollar amount assigned to a security by the issuer. --- For an equity security, par is usually a very small amount that bears no relationship to --- its market price, except for preferred stock, in which case par is used to calculate dividend --- payments. For a debt security, par is the amount repaid to the investor when the bond matures --- (usually, corporate bonds have a par value of 1000, municipal bonds 5000, and federal bonds --- 10,000). -fun faceValue : El Collateral -> El CurrencyMeasure -> Formula ; - - -fun finalPrice : El Stock -> El CurrencyMeasure -> Formula ; - --- (financialResponseTo ?Response ?Request) means that --- ?Response is a FinancialResponse to the FinancialRequest ?Request. -fun financialResponseTo : El FinancialResponse -> El FinancialRequest -> Formula ; - - --- (fixedInterestRate ?Account ?Rate) holds if --- ?Rate is the interest rate that does not change during the entire term of the --- account. -fun fixedInterestRate : El FinancialAccount -> El InterestRate -> Formula ; - - --- A minimum amount that a lender is willing to loan -fun floorLoan : El Loan -> El CurrencyMeasure -> Formula ; - - --- A call option is in the money if the stock --- price is above the strike price. A put option is in the money if the --- stock price is below the strike price. -fun inTheMoney : El Option -> El TimePosition -> Formula ; - - --- (incomeOf ?Agent ?Money ?Period) means that --- ?Money is the amount of money or its equivalent received during a period --- of time in exchange for labor or services, from the sale of goods or --- property, or as profit from financial investments -fun income : El Human -> El CurrencyMeasure -> El TimeInterval -> Formula ; - - --- (incomeEarned ?Agent ?Money ?Action) means --- that ?Agent earned the amount of money ?Money from performing ?Action. Note --- that incomeEarned denotes that amount of money made before taxes are --- deducted. -fun incomeEarned : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; - - --- The percentage increase in the price of goods and services, --- usually annually. -fun inflationRate : El Inflation -> El RealNumber -> Formula ; - - --- The annually percentage increase --- in the price of goods and services for the given Nation. -fun inflationRateInCountry : El Nation -> El RealNumber -> Formula ; - - --- (insured ?Contract ?Org) means that ?Contract is insured --- by the ?Organization. -fun insured : El Contract -> El Organization -> Formula ; - - --- (interestEarned ?Account ?Interest ?Period) means --- that ?Interest is the amount earned on the FinancialAccount ?Account, for the --- duration ?Period. -fun interestEarned : El FinancialAccount -> El Interest -> El TimeInterval -> Formula ; - - --- (interestRatePerPeriod ?ACCOUNT ?RATE ?TIME) means that ?RATE is the interest --- per the period TIME divided by principal amount, expressed as a percentage -fun interestRatePerPeriod : El FinancialAccount -> El InterestRate -> El TimeInterval -> Formula ; - - --- (issuedBy ?Instrument ?Agent) means that a --- FinancialInstrument ?Instrument is produced and offered by ?Agent. -fun issuedBy : El FinancialInstrument -> El CognitiveAgent -> Formula ; - - --- (lastStatement ?Account ?Statement) means that --- ?Statement is the most recent monthly report sent to a debtor or bank depositor. -fun lastStatement : El FinancialAccount -> El BankStatement -> Formula ; - - --- (lastStatementBalance ?Account ?Amount) --- holds if ?Amount is the balance shown on the last statement. -fun lastStatementBalance : El FinancialAccount -> El CurrencyMeasure -> Formula ; - - --- (lender ?Loan ?Agent) means that ?Agent is a private, public or --- institutional entity that put up the funds for the ?Loan. -fun lender : El Loan -> El CognitiveAgent -> Formula ; - - --- (limitPrice ?Order ?Money) means that ?Money is the limit price --- for the limit order ?Order. If ?Order is a buy order, then ?Money specifies the maximum price --- to be paid. If ?Order is a sell order, then ?Money specifies the minimum price to be paid. -fun limitPrice : El LimitOrder -> El CurrencyMeasure -> Formula ; - - --- Degree to which accounts can be easily converted to cash. -fun liquidity : El FinancialAccount -> El LiquidityAttribute -> Formula ; - - -fun listedOn : El Stock -> El Organization -> Formula ; - --- (loanFeeAmount ?Loan ?Amount) means that --- ?Amount is the fee amount of the Loan ?Loan. -fun loanFeeAmount : El Loan -> El CurrencyMeasure -> Formula ; - - --- (loanForPurchase ?ACCOUNT ?PRODUCT) means that ?ACCOUNT is a --- loan to finance the purchase of ?PRODUCT. -fun loanForPurchase : El Loan -> El Object -> Formula ; - - -fun loanInterest : El Loan -> El CurrencyMeasure -> Formula ; - --- (marginBalanceAmount ?Account ?Day ?Amount) --- holds if ?Amount is the margin balance amount of the FinancialAccount ?Account --- on the Day ?Day. -fun marginBalanceAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; - - -fun marketValueAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; - --- The date on which the principal amount of the account --- becomes due and payable. -fun maturityDate : El FinancialAccount -> El Day -> Formula ; - - --- (minimumBalance ?Account ?ActivityType ?Amount) --- means that ?Amount is the mimimum amount required by the type of --- FinancialTransaction ?ActivityType. -fun minimumBalance: El FinancialAccount -> Desc FinancialTransaction -> El CurrencyMeasure -> Formula ; - - --- The smallest amount which can be paid on a revolving --- charge account to avoid a penalty. -fun minimumPayment : El LiabilityAccount -> El CurrencyMeasure -> El TimeDuration -> Formula ; - - --- (monthlyIncome ?Agent ?Money) means that --- ?Money is the amount of money received during one month period -fun monthlyIncome : El Human -> El CurrencyMeasure -> Formula ; - - --- The amount due the supplier after commissions --- have been deducted. -fun netAmount : El Investment -> El CurrencyMeasure -> Formula ; - - --- Total assets minus total liabilities of an individual or company. -fun netWorth : El CognitiveAgent -> El CurrencyMeasure -> El Day -> Formula ; - - --- (optionHolder ?Option ?Agent) means that --- ?Agent is the holder of the option. -fun optionHolder : El Option -> El CognitiveAgent -> Formula ; - - --- (optionSeller ?Option ?Agent) means that --- ?Agent is the writer of the option. -fun optionSeller : El Option -> El CognitiveAgent -> Formula ; - - --- (orderFor ?Order ?Transaction ?Security) means that the content of ?Order --- is to realize an instance of ?Transaction where ?Security is the patient of ?Transaction. -fun orderFor: El FinancialTransaction -> Desc FinancialTransaction -> El Security -> Formula ; - - --- (originalBalance ?ACCOUNT ?BALANCE) means that --- ?BALANCE is the balance of the account at the time the account is opened. -fun originalBalance : El FinancialAccount -> El CurrencyMeasure -> Formula ; - - --- A call option is out of the money if the --- stock price is below its strike price. A put option is out of the money --- if the stock price is above its strike price. -fun outOfTheMoney : El Option -> El TimePosition -> Formula ; - - --- The amount by which withdrawals exceed deposits. -fun overdraft : El FinancialAccount -> El CurrencyMeasure -> El Day -> Formula ; - - --- (paymentsPerPeriod ?Account ?Amount ?Period) --- holds if ?Amount is the amount paid on the FinancialAccount ?Account during the --- time period ?Period. -fun paymentsPerPeriod : El FinancialAccount -> El CurrencyMeasure -> El TimeInterval -> Formula ; - - --- (periodicPayment ?Pay ?Amount ?Period) holds if --- ?Pay is one of the periodic payments for the amount ?Amount. -fun periodicPayment : El FinancialAccount -> El CurrencyMeasure -> El TimeDuration -> Formula ; - - --- (phoneNumber ?Phone ?Agent) holds if ?Phone is --- a phone number corresponding to the Telephone ?Phone. -fun phoneNumber : El SymbolicString -> El Telephone -> Formula ; - - --- (pin ?PIN ?Card) means that ?PIN is a personal identification --- number linked to the ?Card. -fun pin : El SymbolicString -> El BankCard -> Formula ; - - --- The maximum amount of money the Agent can lose by choosing --- this type of Investment. -fun potentialLoss : El CognitiveAgent -> El Investment -> El CurrencyMeasure -> Formula ; - - --- Total price of an option. -fun premium : El Option -> El CurrencyMeasure -> Formula ; - - --- (price ?Obj ?Money ?Agent) means that ?Agent pays the amount of --- money ?Money for ?Obj. -fun price : El Physical -> El CurrencyMeasure -> El Agent -> Formula ; - - --- The interest rate that commercial banks charge --- their most creditworthy borrowers, such as large corporations. The prime rate is --- a lagging indicator. -fun primeInterestRate : El Day -> El InterestRate -> Formula ; - - --- (principalAmount ?ACCOUNT ?BALANCE) means --- that ?BALANCE is the amount borrowed, or the part of the amount borrowed --- which remains unpaid (excluding interest). -fun principalAmount : El FinancialAccount -> El CurrencyMeasure -> Formula ; - - --- The positive gain from an investment or business operation after --- subtracting for all expenses. -fun profit : El FinancialTransaction -> El CurrencyMeasure -> Formula ; - - --- (purchasesPerPeriod ?Account ?Amount ?Period) --- holds if ?Amount is the amount of purchases added to the FinancialAccount ?Account --- during the time period ?Period. -fun purchasesPerPeriod : El FinancialAccount -> El CurrencyMeasure -> El TimeInterval -> Formula ; - - --- Relates an instance of Investing to the level of risk associated --- with the investment. -fun riskLevel : El Investment -> El RiskAttribute -> Formula ; - - -fun riskTolerance : El Investor -> El RiskAttribute -> Formula ; - --- Assets pledged by a borrower to secure a loan --- or other credit, and subject to seizure in the event of FinancialDefault. -fun securedBy : El FinancialAccount -> El Collateral -> Formula ; - - --- A charge to the customer levied by a FinancialOrganization --- for a FinancialTransaction, such as OpeningAnAccount or UsingAnAccount. -fun serviceFee : El FinancialOrganization -> El FinancialTransaction -> El CurrencyMeasure -> Formula ; - - --- (shareHolder ?Stock ?Agent) means that ?Agent possesses --- shares of Stock in a corporation or mutual fund. -fun shareHolder : El Share -> El CognitiveAgent -> Formula ; - - -fun shareOf : El Share -> El Organization -> Formula ; - --- (marketvalueAmount ?Account ?Day ?Amount) holds --- if ?Amount is the market value amount of the FinancialAccount ?Account on the Day --- ?Day. shortBalanceAmount (shortBalanceAmount ?Account ?Day ?Amount) --- holds if ?Amount is the short balance amount of the FinancialAccount ?Account --- on the Day ?Day. -fun shortBalanceAmount : El FinancialAccount -> El Day -> El CurrencyMeasure -> Formula ; - - --- (signedBy ?Instrument ?Agent) means that ?Instrument --- has been signed by ?Agent. -fun signedBy : El Certificate -> El CognitiveAgent -> Formula ; - - --- (simpleInterest ?Account ?Amount ?Time) means --- that ?Amount is the interest calculated on a principal sum, not compounded on --- earned interest, for the duration ?Time. -fun simpleInterest : El FinancialAccount -> El Interest -> El TimeInterval -> Formula ; - - -fun splitFor : El StockSplit -> El Integer -> El Integer -> Formula ; - --- (statementAccount ?Statement ?Account) means --- that ?Account is the account of the BankStatement ?Statement. -fun statementAccount : El BankStatement -> El FinancialAccount -> Formula ; - - --- (statementInterest ?Statement ?Amount) holds --- if ?Amount is the interest amount as shown on the BankStatement ?Statement. -fun statementInterest : El BankStatement -> El CurrencyMeasure -> Formula ; - - --- (statementPeriod ?Statement ?Period) means that --- ?Period is the time period of the BankStatement ?Statement. -fun statementPeriod : El BankStatement -> El TimeInterval -> Formula ; - - --- A unique symbol assigned to a security. NYSE and --- AMEX listed stocks have symbols of three characters or less. NASDAQ_listed --- securities have four or five characters. -fun stockSymbol : El Stock -> El SymbolicString -> Formula ; - - --- The specified price on an option contract at --- which the contract may be exercised, whereby a call option buyer can buy --- the underlier or a put option buyer can sell the underlier. -fun strikePrice : El FinancialInstrument -> El CurrencyMeasure -> Formula ; - - --- Income whose taxes can be postponed --- until a later date. Examples include IRA, 401(k), Keogh Plan, annuity, --- Savings Bond and Employee Stock Ownership Plan. -fun taxDeferredIncome : El Human -> El CurrencyMeasure -> El OrganizationalProcess -> Formula ; - - --- (underlier ?Option ?Instrument) means that --- ?Instrument is a security which is subject to delivery upon exercise of --- ?Option. -fun underlier : El Option -> El FinancialInstrument -> Formula ; - - --- The annual rate of return on an investment, expressed as a --- percentage. For bonds and notes, it is the coupon rate divided by the market price. -fun yield : El Investment -> El FunctionQuantity -> Formula ; - - --- A profit obtained from an investment. yieldLevel Relates a FinancialAccount to the yield level (i.e. the type of profit) ---which can be expected from the account. -fun yieldLevel : El FinancialAccount -> El YieldAttribute -> Formula ; } diff --git a/examples/SUMO/Geography.gf b/examples/SUMO/Geography.gf index 6ff3bde4d..421f6278d 100644 --- a/examples/SUMO/Geography.gf +++ b/examples/SUMO/Geography.gf @@ -1,3062 +1,2888 @@ -abstract Geography = open Merge, Mid_level_ontology, Transportation in { +abstract Geography = MidLevelOntology ** { + fun AcidRainIssue : Ind EnvironmentalIssue ; + -- AcidRainfall is the subclass of + -- Raining in which the precipitate contains harmful amounts of + -- sulfur dioxide or nitrogen oxide. The standard for acid rain + -- is below 5.6 pH. + fun AcidRainfall : Class ; + fun AcidRainfall_Class : SubClass AcidRainfall WeatherProcess ; + -- Acidification is the process of + -- lowering soil and water pH due to acid rain or other types of + -- acid deposition. Potential harmful effects include killing + -- freshwater fish and plants. + fun Acidification : Class ; + fun Acidification_Class : SubClass Acidification Combining ; -fun AcidRainIssue : Ind EnvironmentalIssue ; + fun AcidificationIssue : Ind EnvironmentalIssue ; --- AcidRainfall is the subclass of --- Raining in which the precipitate contains harmful amounts of --- sulfur dioxide or nitrogen oxide. The standard for acid rain --- is below 5.6 pH. -fun AcidRainfall : Class ; -fun AcidRainfall_Class : SubClass AcidRainfall WeatherProcess ; + -- AerosolParticulate is a + -- Substance that includes aerosol_dispersed particles + -- that are mixed with air, gas, or smoke. A form of Pollution. + fun AerosolParticulate : Class ; + fun AerosolParticulate_Class : SubClass AerosolParticulate Substance ; --- Acidification is the process of --- lowering soil and water pH due to acid rain or other types of --- acid deposition. Potential harmful effects include killing --- freshwater fish and plants. -fun Acidification : Class ; -fun Acidification_Class : SubClass Acidification Combining ; + fun AerosolParticulateIssue : Ind EnvironmentalIssue ; -fun AcidificationIssue : Ind EnvironmentalIssue ; + -- Afforestation is the process of + -- planting trees and plants on spaces that are either empty or in + -- agricultural use. + fun Afforestation : Class ; + fun Afforestation_Class : SubClass Afforestation Planting ; --- AerosolParticulate is a --- Substance that includes aerosol_dispersed particles --- that are mixed with air, gas, or smoke. A form of Pollution. -fun AerosolParticulate : Class ; -fun AerosolParticulate_Class : SubClass AerosolParticulate Substance ; + fun Africa : Ind Continent ; -fun AerosolParticulateIssue : Ind EnvironmentalIssue ; + -- Aftershock is the subclass of EarthTremors + -- that occur after the main tremor(s) of an Earthquake. + fun Aftershock : Class ; + fun Aftershock_Class : SubClass Aftershock EarthTremor ; --- Afforestation is the process of --- planting trees and plants on spaces that are either empty or in --- agricultural use. -fun Afforestation : Class ; -fun Afforestation_Class : SubClass Afforestation Planting ; + -- Agreement is the class of + -- Propositions that express the contents of agreements + -- entered into by CognitiveAgents. Agreement includes + -- treaties, contracts, purchase orders, pledges, marriage + -- vows, etc. An Agreement may be written down in a document + -- or other ContentBearingObject. + fun Agreement : Class ; + fun Agreement_Class : SubClass Agreement Proposition ; -fun Africa : Ind Continent ; + -- (AgreementOrganizationFn ?AGR) + -- denotes the official Organization established by the Agreement ?AGR + -- to administer or enforce the terms of that agreement. + fun AgreementOrganizationFn : El Agreement -> Ind Organization ; --- Aftershock is the subclass of EarthTremors --- that occur after the main tremor(s) of an Earthquake. -fun Aftershock : Class ; -fun Aftershock_Class : SubClass Aftershock EarthTremor ; + fun AgriculturalChemicalsIssue : Ind EnvironmentalIssue ; --- Agreement is the class of --- Propositions that express the contents of agreements --- entered into by CognitiveAgents. Agreement includes --- treaties, contracts, purchase orders, pledges, marriage --- vows, etc. An Agreement may be written down in a document --- or other ContentBearingObject. -fun Agreement : Class ; -fun Agreement_Class : SubClass Agreement Proposition ; + fun AgriculturalExpansionIssue : Ind EnvironmentalIssue ; --- (AgreementOrganizationFn ?AGR) --- denotes the official Organization established by the Agreement ?AGR --- to administer or enforce the terms of that agreement. -fun AgreementOrganizationFn : El Agreement -> Ind Organization ; + -- Agriculture is a class of Processes + -- in which land, plants, or animals are cultivated in order to produce + -- food or other organic products. + fun Agriculture : Class ; + fun Agriculture_Class : SubClass Agriculture Maintaining ; + -- AirPollution is the subclass of + -- Pollution processes in which air is contaminated. + fun AirPollution : Class ; + fun AirPollution_Class : SubClass AirPollution Pollution ; -fun AgriculturalChemicalsIssue : Ind EnvironmentalIssue ; + fun AirPollutionConvention : Ind Agreement ; -fun AgriculturalExpansionIssue : Ind EnvironmentalIssue ; + fun AirPollutionIssue : Ind PollutionIssue ; --- Agriculture is a class of Processes --- in which land, plants, or animals are cultivated in order to produce --- food or other organic products. -fun Agriculture : Class ; -fun Agriculture_Class : SubClass Agriculture Maintaining ; + fun AirPollution_NitrogenOxidesProtocol : Ind Agreement ; --- AirPollution is the subclass of --- Pollution processes in which air is contaminated. -fun AirPollution : Class ; -fun AirPollution_Class : SubClass AirPollution Pollution ; + fun AirPollution_PeristentOrganicPollutantsProtocol : Ind Agreement ; -fun AirPollutionConvention : Ind Agreement ; + fun AirPollution_Sulphur85Protocol : Ind Agreement ; -fun AirPollutionIssue : Ind PollutionIssue ; + fun AirPollution_Sulphur94Protocol : Ind Agreement ; -fun AirPollution_NitrogenOxidesProtocol : Ind Agreement ; + fun AirPollution_VolatileOrganicCompoundsProtocol : Ind Agreement ; -fun AirPollution_PeristentOrganicPollutantsProtocol : Ind Agreement ; + -- AirStream is the class of FlowRegions that consist of air. + fun AirStream : Class ; + fun AirStream_Class : SubClass AirStream (both Air FlowRegion) ; -fun AirPollution_Sulphur85Protocol : Ind Agreement ; + -- The area below the AntarcticCircle, which is + -- 66 degrees 33 minutes and 38 seconds south latitude. It is dark + -- for at least 24 hours at some point during the year, with an + -- increasing period of yearly continuous darkness as one gets closer + -- to the South Pole. + fun AntarcticArea : Class ; + fun AntarcticArea_Class : SubClass AntarcticArea LandArea ; -fun AirPollution_Sulphur94Protocol : Ind Agreement ; + fun AntarcticCircumpolarCurrent : Ind WaterMotion ; -fun AirPollution_VolatileOrganicCompoundsProtocol : Ind Agreement ; + fun AntarcticSealsConvention : Ind Agreement ; --- AirStream is the class of FlowRegions that consist of air. -fun AirStream : Class ; -fun AirStream_Class : SubClass AirStream (both Air FlowRegion) ; + fun AntarcticTreaty : Ind Agreement ; + fun Antarctic_EnvironmentalProtocol : Ind Agreement ; --- The area below the AntarcticCircle, which is --- 66 degrees 33 minutes and 38 seconds south latitude. It is dark --- for at least 24 hours at some point during the year, with an --- increasing period of yearly continuous darkness as one gets closer --- to the South Pole. -fun AntarcticArea : Class ; -fun AntarcticArea_Class : SubClass AntarcticArea LandArea ; + fun Antarctic_MarineLivingResourcesConvention : Ind Agreement ; -fun AntarcticCircumpolarCurrent : Ind WaterMotion ; + fun ArabianSea : Ind Sea ; -fun AntarcticSealsConvention : Ind Agreement ; + -- ArableLand is the subclass of + -- LandArea that represents land in cultivation with crops that + -- are replanted after each harvest, e.g., wheat and rice. + fun ArableLand : Class ; + fun ArableLand_Class : SubClass ArableLand LandArea ; -fun AntarcticTreaty : Ind Agreement ; + fun AralSea : Ind SaltLake ; -fun Antarctic_EnvironmentalProtocol : Ind Agreement ; + -- ArcMinute represents a UnitOfMeasure + -- equivalent to 1/60th of an AngularDegree. + fun ArcMinute : Ind UnitOfAngularMeasure ; -fun Antarctic_MarineLivingResourcesConvention : Ind Agreement ; + -- ArcSecond represents a UnitOfMeasure + -- equivalent to 1/60th of an ArcMinute. + fun ArcSecond : Ind UnitOfAngularMeasure ; -fun ArabianSea : Ind Sea ; + -- An ArchipelagicArea is a GeographicArea + -- including an Archipelago and the surrounding WaterArea. + fun ArchipelagicArea : Class ; + fun ArchipelagicArea_Class : SubClass ArchipelagicArea GeographicArea ; --- ArableLand is the subclass of --- LandArea that represents land in cultivation with crops that --- are replanted after each harvest, e.g., wheat and rice. -fun ArableLand : Class ; -fun ArableLand_Class : SubClass ArableLand LandArea ; + -- An Archipelago is a group of islands. + fun Archipelago : Class ; + fun Archipelago_Class : SubClass Archipelago (both Collection LandForm) ; -fun AralSea : Ind SaltLake ; + -- ArcticOcean represents the Arctic Ocean. + fun ArcticOcean : Ind Ocean ; --- ArcMinute represents a UnitOfMeasure --- equivalent to 1/60th of an AngularDegree. -fun ArcMinute : Ind UnitOfAngularMeasure ; + -- The area above the Artic Circle, which is + -- 66 degrees 33 minutes and 38 seconds north latitude. It is dark + -- for at least 24 hours at some point during the year, with an + -- increasing period of yearly continuous darkness as one gets closer + -- to the North Pole. + fun ArcticRegion : Class ; + -- AreaOfConcern is a subclass of + -- Attributes that represent and classify the kinds of interests that + -- agents have. + fun AreaOfConcern : Class ; + fun AreaOfConcern_Class : SubClass AreaOfConcern RelationalAttribute ; --- ArcSecond represents a UnitOfMeasure --- equivalent to 1/60th of an ArcMinute. -fun ArcSecond : Ind UnitOfAngularMeasure ; + -- AridClimateZone is the + -- class of regions in which the climate is characterized by + -- a distinct dry season. Annual rate of moisture evaporation + -- exceeds annual rate of precipitation. This is Class B in the + -- Koeppen climate system. + fun AridClimateZone : Class ; + fun AridClimateZone_Class : SubClass AridClimateZone ClimateZone ; + -- Asbestos is a Mineral. + fun Asbestos : Class ; + fun Asbestos_Class : SubClass Asbestos Mineral ; --- An ArchipelagicArea is a GeographicArea --- including an Archipelago and the surrounding WaterArea. -fun ArchipelagicArea : Class ; -fun ArchipelagicArea_Class : SubClass ArchipelagicArea GeographicArea ; + fun AsbestosDisposalIssue : Ind EnvironmentalIssue ; --- An Archipelago is a group of islands. -fun Archipelago : Class ; -fun Archipelago_Class : SubClass Archipelago (both Collection LandForm) ; + fun Asia : Ind Continent ; + -- AtlanticOcean represents the Atlantic Ocean. + fun AtlanticOcean : Ind Ocean ; --- ArcticOcean represents the Arctic Ocean. -fun ArcticOcean : Ind Ocean ; + -- Atmosphere is a mixture of gases + -- surrounding any celestial object that has a gravitational field + -- strong enough to prevent the gases from escaping. + fun Atmosphere : Class ; + fun Atmosphere_Class : SubClass Atmosphere Region ; + fun AtmosphericHazing : Class ; + fun AtmosphericHazing_Class : SubClass AtmosphericHazing WeatherProcess ; --- The area above the Artic Circle, which is --- 66 degrees 33 minutes and 38 seconds north latitude. It is dark --- for at least 24 hours at some point during the year, with an --- increasing period of yearly continuous darkness as one gets closer --- to the North Pole. -fun ArcticRegion : Class ; + -- Atoll is the class of CoralReefs which surround a lagoon. + fun Atoll : Class ; + fun Atoll_Class : SubClass Atoll CoralReef ; + -- AvalancheProcess is a subclass of + -- Motion that represents events in which a loosened mass of snow, ice, + -- rock, or earth rapidly descends a steep slope, with a destructive force. + fun AvalancheProcess : Class ; + fun AvalancheProcess_Class : SubClass AvalancheProcess Impelling ; --- AreaOfConcern is a subclass of --- Attributes that represent and classify the kinds of interests that --- agents have. -fun AreaOfConcern : Class ; -fun AreaOfConcern_Class : SubClass AreaOfConcern RelationalAttribute ; + fun BalticSea : Ind Sea ; --- AridClimateZone is the --- class of regions in which the climate is characterized by --- a distinct dry season. Annual rate of moisture evaporation --- exceeds annual rate of precipitation. This is Class B in the --- Koeppen climate system. -fun AridClimateZone : Class ; -fun AridClimateZone_Class : SubClass AridClimateZone ClimateZone ; + -- Barite is Barium Sulfate occurring as a mineral. + fun Barite : Class ; + fun Barite_Class : SubClass Barite (both CompoundSubstance Mineral) ; --- Asbestos is a Mineral. -fun Asbestos : Class ; -fun Asbestos_Class : SubClass Asbestos Mineral ; + -- A Basin is an area of land enclosed or partially + -- enclosed by higher land. + fun Basin : Class ; + fun Basin_Class : SubClass Basin LandForm ; -fun AsbestosDisposalIssue : Ind EnvironmentalIssue ; + -- Bay is the class of extensions of a body of water + -- (salt or fresh) that reach into the land, usually smaller than a + -- Gulf. + fun Bay : Class ; + fun Bay_Class : SubClass Bay Inlet ; -fun Asia : Ind Continent ; + -- BeaufortNumber is the + -- Attribute for indicating wind force, according to + -- classifications based on observable weather conditions and later + -- related to wind speed ranges. + fun BeaufortNumber : Class ; + fun BeaufortNumber_Class : SubClass BeaufortNumber RelationalAttribute ; --- AtlanticOcean represents the Atlantic --- Ocean. -fun AtlanticOcean : Ind Ocean ; + fun BeaufortNumberEight : Ind BeaufortNumber ; + fun BeaufortNumberEleven : Ind BeaufortNumber ; --- Atmosphere is a mixture of gases --- surrounding any celestial object that has a gravitational field --- strong enough to prevent the gases from escaping. -fun Atmosphere : Class ; -fun Atmosphere_Class : SubClass Atmosphere Region ; + fun BeaufortNumberFive : Ind BeaufortNumber ; -fun AtmosphericHazing : Class ; -fun AtmosphericHazing_Class : SubClass AtmosphericHazing WeatherProcess ; + fun BeaufortNumberFour : Ind BeaufortNumber ; --- Atoll is the class of CoralReefs which surround --- a lagoon. -fun Atoll : Class ; -fun Atoll_Class : SubClass Atoll CoralReef ; + fun BeaufortNumberNine : Ind BeaufortNumber ; --- AvalancheProcess is a subclass of --- Motion that represents events in which a loosened mass of snow, ice, --- rock, or earth rapidly descends a steep slope, with a destructive force. -fun AvalancheProcess : Class ; -fun AvalancheProcess_Class : SubClass AvalancheProcess Impelling ; + fun BeaufortNumberOne : Ind BeaufortNumber ; -fun BalticSea : Ind Sea ; + fun BeaufortNumberSeven : Ind BeaufortNumber ; --- Barite is Barium Sulfate occurring as a mineral. -fun Barite : Class ; -fun Barite_Class : SubClass Barite (both CompoundSubstance Mineral) ; + fun BeaufortNumberSix : Ind BeaufortNumber ; + fun BeaufortNumberTen : Ind BeaufortNumber ; --- A Basin is an area of land enclosed or partially --- enclosed by higher land. -fun Basin : Class ; -fun Basin_Class : SubClass Basin LandForm ; + fun BeaufortNumberThree : Ind BeaufortNumber ; --- Bay is the class of extensions of a body of water --- (salt or fresh) that reach into the land, usually smaller than a --- Gulf. -fun Bay : Class ; -fun Bay_Class : SubClass Bay Inlet ; + fun BeaufortNumberTwelve : Ind BeaufortNumber ; --- BeaufortNumber is the --- Attribute for indicating wind force, according to --- classifications based on observable weather conditions and later --- related to wind speed ranges. -fun BeaufortNumber : Class ; -fun BeaufortNumber_Class : SubClass BeaufortNumber RelationalAttribute ; + fun BeaufortNumberTwo : Ind BeaufortNumber ; -fun BeaufortNumberEight : Ind BeaufortNumber ; + fun BeringSea : Ind Sea ; -fun BeaufortNumberEleven : Ind BeaufortNumber ; + -- BiodiversityAttribute is the + -- class of Attributes that describe the level of biodiversity present + -- in a GeographicArea or Ecosystem. + fun BiodiversityAttribute : Class ; + fun BiodiversityAttribute_Class : SubClass BiodiversityAttribute InternalAttribute ; -fun BeaufortNumberFive : Ind BeaufortNumber ; + fun BiodiversityConvention : Ind Agreement ; -fun BeaufortNumberFour : Ind BeaufortNumber ; + fun BiodiversityIssue : Class ; + fun BiodiversityIssue_Class : SubClass BiodiversityIssue EnvironmentalIssue ; -fun BeaufortNumberNine : Ind BeaufortNumber ; + -- Biome is the class of GeographicAreas + -- representing major kinds of ecological communities, that is, areas in + -- which certain kinds of plants, animals, weather, and terrain interact + -- to produce and support a distinctive ecosystem. + fun Biome : Class ; + fun Biome_Class : SubClass Biome Ecosystem ; -fun BeaufortNumberOne : Ind BeaufortNumber ; + fun BlackSea : Ind Sea ; -fun BeaufortNumberSeven : Ind BeaufortNumber ; + fun Blizzard : Class ; + fun Blizzard_Class : SubClass Blizzard WeatherProcess ; -fun BeaufortNumberSix : Ind BeaufortNumber ; + -- (BorderFn ?AREA1 ?AREA2) denotes the + -- border area where the GeographicAreas ?AREA1 and ?AREA2 meet. + fun BorderFn : El GeographicArea -> El GeographicArea -> Ind GeographicArea ; -fun BeaufortNumberTen : Ind BeaufortNumber ; + fun BorealForest : Class ; + fun BorealForest_Class : SubClass BorealForest (both Biome Forest) ; -fun BeaufortNumberThree : Ind BeaufortNumber ; + -- BrownCoal is a soft Coal harder than + -- peat and softer than bituminous coal. Also called lignite, it is + -- brownish in color. + fun BrownCoal : Class ; + fun BrownCoal_Class : SubClass BrownCoal Coal ; -fun BeaufortNumberTwelve : Ind BeaufortNumber ; + -- A Butte is an Upland raised sharply from the + -- surrounding region. Smaller in area than a Mesa. + fun Butte : Class ; + fun Butte_Class : SubClass Butte (both LandForm UplandArea) ; -fun BeaufortNumberTwo : Ind BeaufortNumber ; + -- A CanalStructure is the constructed + -- framework, including Locks, that contains the waters of a Canal. + fun CanalStructure : Class ; + fun CanalStructure_Class : SubClass CanalStructure StationaryArtifact ; -fun BeringSea : Ind Sea ; + -- CanopiedVegetation describes the + -- density of vegetation in a RainForest or Jungle. + fun CanopiedVegetation : Ind Attribute ; --- BiodiversityAttribute is the --- class of Attributes that describe the level of biodiversity present --- in a GeographicArea or Ecosystem. -fun BiodiversityAttribute : Class ; -fun BiodiversityAttribute_Class : SubClass BiodiversityAttribute InternalAttribute ; + -- A Canyon is a narrow valley with steep sides, usually + -- created by erosion. + fun Canyon : Class ; + fun Canyon_Class : SubClass Canyon LandForm ; -fun BiodiversityConvention : Ind Agreement ; + -- A Cape is a piece of land projecting into a body of water. + fun Cape : Class ; + fun Cape_Class : SubClass Cape LandForm ; -fun BiodiversityIssue : Class ; -fun BiodiversityIssue_Class : SubClass BiodiversityIssue EnvironmentalIssue ; --- Biome is the class of GeographicAreas --- representing major kinds of ecological communities, that is, areas in --- which certain kinds of plants, animals, weather, and terrain interact --- to produce and support a distinctive ecosystem. -fun Biome : Class ; -fun Biome_Class : SubClass Biome Ecosystem ; + -- CarbonCycle is the class of + -- GeologicalProcesses in which carbon in various forms is passed + -- between air, water, earth, and the biosphere. + fun CarbonCycle : Class ; + fun CarbonCycle_Class : SubClass CarbonCycle GeologicalProcess ; -fun BlackSea : Ind Sea ; + fun CarbonDioxideEmission : Class ; + fun CarbonDioxideEmission_Class : SubClass CarbonDioxideEmission Separating ; -fun Blizzard : Class ; -fun Blizzard_Class : SubClass Blizzard WeatherProcess ; -fun BodyOfWater_WaterArea : SubClass BodyOfWater WaterArea ; + fun CaribbeanRegion : Ind GeographicArea ; --- (BorderFn ?AREA1 ?AREA2) denotes the --- border area where the GeographicAreas ?AREA1 and ?AREA2 meet. -fun BorderFn : El GeographicArea -> El GeographicArea -> Ind GeographicArea ; + fun CaribbeanSea : Ind Sea ; + fun CaspianSea : Ind SaltLake ; -fun BorealForest : Class ; -fun BorealForest_Class : SubClass BorealForest (both Biome Forest) ; + -- A CaveMatrix is the framework of earth or + -- rock in which a Cave is embedded. + fun CaveMatrix : Class ; + fun CaveMatrix_Class : SubClass CaveMatrix LandForm ; --- BrownCoal is a soft Coal harder than --- peat and softer than bituminous coal. Also called lignite, it is --- brownish in color. -fun BrownCoal : Class ; -fun BrownCoal_Class : SubClass BrownCoal Coal ; + fun CentralAfrica : Ind GeographicArea ; --- A Butte is an Upland raised sharply from the --- surrounding region. Smaller in area than a Mesa. -fun Butte : Class ; -fun Butte_Class : SubClass Butte (both LandForm UplandArea) ; + fun CentralAsia : Ind GeographicArea ; + fun CentralEurope : Ind GeographicArea ; --- Canal is the subclass of navigable Waterways --- flowing through an artificial course. Typically, a canal is a --- Transitway connecting two bodies of water. -fun Canal : Class ; -fun Canal_Class : SubClass Canal (both StationaryArtifact Waterway) ; + fun CentralSouthAmerica : Ind GeographicArea ; + fun ChinookWind : Class ; + fun ChinookWind_Class : SubClass ChinookWind WindProcess ; --- A CanalStructure is the constructed --- framework, including Locks, that contains the waters of a Canal. -fun CanalStructure : Class ; -fun CanalStructure_Class : SubClass CanalStructure StationaryArtifact ; + -- A mineral that consists of an oxide of + -- iron and chromium. + fun Chromite : Class ; + fun Chromite_Class : SubClass Chromite (both CompoundSubstance Mineral) ; + + -- Fine_grained soil consisting of mineral particles, not + -- necessarily clay minerals, that are less than 0.002 mm in their maximum dimension. + fun Clay : Class ; + fun Clay_Class : SubClass Clay Soil ; + + -- ClearWeather represents a condition + -- in which less than 30% of the sky is covered with clouds. + fun ClearWeather : Class ; + fun ClearWeather_Class : SubClass ClearWeather WeatherProcess ; + + -- A Cliff is any high, very_steep_to_perpendicular + -- or overhanging face of rock or earth, a precipice. + fun Cliff : Class ; + fun Cliff_Class : SubClass Cliff SlopedArea ; + + fun ClimateChangeConvention : Ind Agreement ; + + fun ClimateChangeIssue : Ind EnvironmentalIssue ; + + fun ClimateChange_KyotoProtocol : Ind Agreement ; + + -- &ClimateZone is a subclass of GeographicArea in which regions + -- are classified according to their long_term weather conditions. + -- The subclasses of ClimateZone are based on the Koeppen Climate + -- Classification system. In the Koeppen system, climate zones are + -- distinguished based on temperatures and rainfall. + fun ClimateZone : Class ; + fun ClimateZone_Class : SubClass ClimateZone GeographicArea ; + + -- Coal is a black or brownish black solid combustible + -- substance formed by the partial decomposition of vegetable matter without + -- free access of air and under the influence of moisture and often increased + -- pressure and temperature. Coal is a sedimentary rock containing a high + -- proportion of carbon. + fun Coal : Class ; + fun Coal_Class : SubClass Coal (both FossilFuel (both Mineral Rock)) ; + + fun CoastalDegradation : Ind EnvironmentalIssue ; + + fun CoastalFlooding : Class ; + fun CoastalFlooding_Class : SubClass CoastalFlooding Flooding ; + + fun CoastalMarinePollutionIssue : Ind EnvironmentalIssue ; + + -- CoastalPlain is the class of broad plains + -- areas adjacent to a Sea or Ocean. A coastal plain includes a narrower + -- ShoreArea adjacent to a body of water. + fun CoastalPlain : Class ; + fun CoastalPlain_Class : SubClass CoastalPlain Plain ; + + -- ColdClimateZone is the subclass + -- of ClimateZone that is characterized by a warmest month with average + -- temperature less than 10 degrees Celsius and a coldest month with + -- average temperature less than _3 degrees Celsius. This is + -- Koeppen climate system Type D. + fun ColdClimateZone : Class ; + fun ColdClimateZone_Class : SubClass ColdClimateZone ClimateZone ; + + -- ColdDampClimateZone is the + -- subclass of ColdClimateZone that is characterized by having more + -- than 30 mm of precipitation in the driest month. This is subtype + -- 'Df' in the Koeppen climate system. + fun ColdDampClimateZone : Class ; + fun ColdDampClimateZone_Class : SubClass ColdDampClimateZone ColdClimateZone ; + + -- ColdFront is the class of transitional + -- weather processes occurring between a cold air mass that is advancing + -- upon a warm air mass. + fun ColdFront : Class ; + fun ColdFront_Class : SubClass ColdFront WeatherFront ; + + -- ContinentalClimateZone is a subclass of TemperateClimateZone that is + -- characterized by cold winters and hot summers. + fun ContinentalClimateZone : Class ; + fun ContinentalClimateZone_Class : SubClass ContinentalClimateZone TemperateClimateZone ; + + -- ContinentalMargin is class of + -- SubmergedLandAreas that are the extension of land underwater at + -- the edge of a continent, before a drop to the sea floor. A + -- ContinentalMargin includes the ContinentalShelf and the + -- continental break, slope, or rise at the outer edge. + fun ContinentalMargin : Class ; + fun ContinentalMargin_Class : SubClass ContinentalMargin SubmergedLandArea ; + + -- A ContinentalShelf is a natural + -- undersea extension of land around a Continent. The shelf is a + -- gently sloped (average less than one percent) plain that is an extension + -- of the CoastalPlain found off the coast of most continents. + fun ContinentalShelf : Class ; + fun ContinentalShelf_Class : SubClass ContinentalShelf SubmergedLandArea ; + + -- Corals are gastrovascular marine cnidarians (phylum + -- Cnidaria, class Anthozoa) existing as small anemone_like polyps, typically + -- forming colonies of many individuals. The group includes the important + -- reef builders known as hermatypic corals, found in tropical oceans, and + -- belonging to the subclass Zoantharia of order Scleractinia (formerly + -- Madreporaria). The hermatypic corals obtain much of their nutrient + -- requirement from symbiotic unicellular algae called zooxanthellae, and so + -- are dependent upon growing in sunlight. As a result, these corals are + -- usually found not far beneath the surface, although in clear waters corals + -- can grow at depths of 60 m (200 ft). Corals breed by spawning, with all + -- corals of the same species in a region releasing gametes simultaneously + -- over a period of one to several nights around a full moon. (from Wikipedia) + fun Coral : Class ; + fun Coral_Class : SubClass Coral Invertebrate ; + + -- CoralReef is the subclass of Reefs that are + -- formed from living organisms that produce the limestone formations of the + -- reef. Coral reefs include fringing reefs, barrier reefs, and Atolls. + fun CoralReef : Class ; + fun CoralReef_Class : SubClass CoralReef Reef ; + + fun CoralReefDecayIssue : Ind EnvironmentalIssue ; + + -- A Cove is a small part of a body of water that + -- reaches into a coast. + fun Cove : Class ; + fun Cove_Class : SubClass Cove Inlet ; + + -- Crosswind is the relative attribute of a + -- Wind to an object when the force of the wind is applied to a lateral + -- side of the object. + fun Crosswind : Ind Attribute ; + + -- CyclonicStorm is the class of + -- LowPressureWeatherSystems that involve a low pressure area + -- surrounded by rapidly rotating winds, with the whole system + -- typically moving forward at 20_30 mph. + fun CyclonicStorm : Class ; + fun CyclonicStorm_Class : SubClass CyclonicStorm (both LowPressureWeatherSystem Windstorm) ; + + -- DDT (dichoro_diphenyl_trichloro_ethane) + -- is a highly toxic insecticide also harmful to most other animal + -- species. DDT was banned in the UnitedStates in 1972. + fun DDT : Class ; + fun DDT_Class : SubClass DDT CompoundSubstance ; + + -- (DatumFn ?place) denotes the point of MLLW (Mean Lower Low + -- Water) used as the initial data point for a coastal or WaterArea given on a nautical + -- chart. High and low tides are calculated with reference to this point. + fun DatumFn : El GeographicArea -> Ind LengthMeasure ; + + fun DeadSea : Ind SaltLake ; + + -- Defoliant is the class of substances + -- that are used to make plants lose their leaves, typically used + -- in agriculture or warfare. Defoliants may have detrimental + -- environmental side effects. + fun Defoliant : Class ; + fun Defoliant_Class : SubClass Defoliant PureSubstance ; + + fun Deforestation : Class ; + fun Deforestation_Class : SubClass Deforestation (both ForestDamage Removing) ; + + fun DeforestationIssue : Ind EnvironmentalIssue ; + + -- A Delta is a LandForm composed of silt or other + -- alluvium, deposited at or near the mouth of a river or stream as it enters + -- a body of relatively static water. Typically a delta is flat and fan_shaped. + fun Delta : Class ; + fun Delta_Class : SubClass Delta LandForm ; + + -- DenseVegetation describes the + -- density of vegetation in a Forest. + fun DenseVegetation : Ind Attribute ; + + -- Desert is a subclass of LandAreas that are + -- arid regions having sparse or no vegetation. + fun Desert : Class ; + fun Desert_Class : SubClass Desert LandArea ; + + -- DesertClimateZone + -- is the class of AridClimateZones characterized by + -- sparse, desert vegetation. Koeppen system 'BW'. + fun DesertClimateZone : Class ; + fun DesertClimateZone_Class : SubClass DesertClimateZone AridClimateZone ; + + -- Desertification represents the + -- Process by which desert conditions are spread over an area. + fun Desertification : Class ; + fun Desertification_Class : SubClass Desertification WeatherProcess ; + + fun DesertificationConvention : Ind Agreement ; + + fun DesertificationIssue : Ind EnvironmentalIssue ; + + fun DipSlipFault : Class ; + fun DipSlipFault_Class : SubClass DipSlipFault GeologicalFault ; + + -- (DirectionalSubregionFn ?DIRECTION ?AREA) denotes the part + -- of GeographicArea ?AREA that lies in ?DIRECTION from the + -- geographic center of ?AREA. For example, + -- (DirectionalSubregionFn Iraq North) denotes the Northern + -- part of Iraq. Such subregions are defined purely by geographical + -- points of reference, not by sociological ones. For example, + -- (DirectionalSubregionFn UnitedStatesOfAmerica South) denotes + -- the Southern half of the United States, it does not denote the + -- American South as distinguished for historical, literary, or + -- cultural purposes. + fun DirectionalSubregionFn : El DirectionalAttribute -> El GeographicArea -> Ind GeographicArea ; + + fun DiseaseConditionsIssue : Class ; + fun DiseaseConditionsIssue_Class : SubClass DiseaseConditionsIssue EnvironmentalIssue ; + + -- (DocumentFn ?PROP) denotes a class + -- of Text objects that contain the information ?PROP. + fun DocumentFn: El Proposition -> Desc Text ; + + -- Downhill is a PositionalAttribute that + -- describes the relation between two things, one of which is located + -- down a slope from the other. + fun Downhill : Ind PositionalAttribute ; + + fun Downstream : Ind PositionalAttribute ; + + -- Downwind is a PositionalAttribute that indicates relative position + -- downwind (leeward) with respect to the direction that the Wind is + -- blowing. + fun Downwind : Ind PositionalAttribute ; + + fun Dredging : Class ; + fun Dredging_Class : SubClass Dredging Removing ; --- CanopiedVegetation describes the --- density of vegetation in a RainForest or Jungle. -fun CanopiedVegetation : Ind Attribute ; + fun DriftNetFishingIssue : Ind EnvironmentalIssue ; + fun DriftnetFishing : Class ; + fun DriftnetFishing_Class : SubClass DriftnetFishing Fishing ; --- A Canyon is a narrow valley with steep sides, usually --- created by erosion. -fun Canyon : Class ; -fun Canyon_Class : SubClass Canyon LandForm ; + -- Drought is the subclass of WeatherProcess + -- that represents long periods without precipitation, which is damaging + -- to crops, livestock, and human life. + fun Drought : Class ; + fun Drought_Class : SubClass Drought WeatherProcess ; --- A Cape is a piece of land projecting into a body of water. -fun Cape : Class ; -fun Cape_Class : SubClass Cape LandForm ; + fun DroughtIssue : Ind EnvironmentalIssue ; --- CarbonCycle is the class of --- GeologicalProcesses in which carbon in various forms is passed --- between air, water, earth, and the biosphere. -fun CarbonCycle : Class ; -fun CarbonCycle_Class : SubClass CarbonCycle GeologicalProcess ; + -- DryWinterColdClimateZone + -- is a subclass of ColdClimateZone that is characterized by having + -- at least ten times as much precipitation in the wettest summer month + -- as in the driest winter month. This is Koeppen climate system subtype + -- 'Dw'. + fun DryWinterColdClimateZone : Class ; + fun DryWinterColdClimateZone_Class : SubClass DryWinterColdClimateZone ColdClimateZone ; + + fun DustStorm : Class ; + fun DustStorm_Class : SubClass DustStorm WeatherProcess ; + + -- An EarthTremor is an individual seismic + -- event in which the earth shakes due to release of seismic pressures. + fun EarthTremor : Class ; + fun EarthTremor_Class : SubClass EarthTremor (both GeologicalProcess Tremor) ; + + -- Earthquake is the class of events in + -- which the earth shakes while its layers readjust due to tensional + -- stresses in the surface of the earth. A single earthquake may consist + -- of one or more EarthTremors. + fun Earthquake : Class ; + fun Earthquake_Class : SubClass Earthquake GeologicalProcess ; + + -- EarthsAtmosphere is the layer of gases, a mixture of mainly oxygen and nitrogen, + -- surrounding PlanetEarth. See also Air. + fun EarthsAtmosphere : Ind Atmosphere ; + + -- EarthsMoon is the Moon of PlanetEarth. + fun EarthsMoon : Ind Moon ; + + fun EasternAfrica : Ind GeographicArea ; + + fun EasternAsia : Ind GeographicArea ; -fun CarbonDioxideEmission : Class ; -fun CarbonDioxideEmission_Class : SubClass CarbonDioxideEmission Separating ; -fun CaribbeanRegion : Ind GeographicArea ; + fun EasternEurope : Ind GeographicArea ; + + -- The half of the Earth that includes Europe, + -- Asia, Africa, and Australia. + fun EasternHemisphere : Ind Hemisphere ; -fun CaribbeanSea : Ind Sea ; + fun EasternSouthAmerica : Ind GeographicArea ; -fun CaspianSea : Ind SaltLake ; + -- Ecosystem is a subclass of GeographicAreas considered together with + -- their organisms and environment as a functioning whole. + fun Ecosystem : Class ; + fun Ecosystem_Class : SubClass Ecosystem GeographicArea ; + + -- Effluent is a Substance + -- that generically covers any waste matter that is released into + -- the environment, including sewage and industrial pollutants. + fun Effluent : Class ; + fun Effluent_Class : SubClass Effluent Substance ; + + fun ElNino : Class ; + fun ElNino_Class : SubClass ElNino WeatherSeason ; + + -- (ElevationHighPointFn ?AREA) + -- denotes the area within the GeographicArea ?AREA that has the + -- highest elevation. + fun ElevationHighPointFn : El GeographicArea -> Ind GeographicArea ; --- A CaveMatrix is the framework of earth or --- rock in which a Cave is embedded. -fun CaveMatrix : Class ; -fun CaveMatrix_Class : SubClass CaveMatrix LandForm ; + -- (ElevationLowPointFn ?AREA) + -- denotes the area within the GeographicArea ?AREA that has the + -- lowest elevation. + fun ElevationLowPointFn : El GeographicArea -> Ind GeographicArea ; -fun Cave_Hole : SubClass Cave Hole ; -fun CentralAfrica : Ind GeographicArea ; + fun EndangeredMarineWildlifeIssue : Ind BiodiversityIssue ; -fun CentralAsia : Ind GeographicArea ; + -- EndangeredSpecies is the + -- subclass of Organism that includes plants and animals that + -- are in danger of extinction from destruction of individuals + -- or of habitat. + fun EndangeredSpecies : Class ; + fun EndangeredSpecies_Class : SubClass EndangeredSpecies Organism ; -fun CentralEurope : Ind GeographicArea ; + fun EndangeredSpeciesConvention : Ind Agreement ; -fun CentralSouthAmerica : Ind GeographicArea ; + fun EndangeredSpeciesIssue : Ind BiodiversityIssue ; -fun Channel_BodyOfWater : SubClass Channel BodyOfWater ; + fun EnvironmentalIssue : Class ; + fun EnvironmentalIssue_Class : SubClass EnvironmentalIssue AreaOfConcern ; -fun ChinookWind : Class ; -fun ChinookWind_Class : SubClass ChinookWind WindProcess ; --- A mineral that consists of an oxide of --- iron and chromium. -fun Chromite : Class ; -fun Chromite_Class : SubClass Chromite (both CompoundSubstance Mineral) ; - - --- Fine_grained soil consisting of mineral particles, not --- necessarily clay minerals, that are less than 0.002 mm in their maximum dimension. -fun Clay : Class ; -fun Clay_Class : SubClass Clay Soil ; - --- ClearWeather represents a condition --- in which less than 30% of the sky is covered with clouds. -fun ClearWeather : Class ; -fun ClearWeather_Class : SubClass ClearWeather WeatherProcess ; - --- A Cliff is any high, very_steep_to_perpendicular --- or overhanging face of rock or earth, a precipice. -fun Cliff : Class ; -fun Cliff_Class : SubClass Cliff SlopedArea ; - -fun ClimateChangeConvention : Ind Agreement ; - -fun ClimateChangeIssue : Ind EnvironmentalIssue ; - -fun ClimateChange_KyotoProtocol : Ind Agreement ; - --- &ClimateZone is a subclass of GeographicArea in which regions --- are classified according to their long_term weather conditions. --- The subclasses of ClimateZone are based on the Koeppen Climate --- Classification system. In the Koeppen system, climate zones are --- distinguished based on temperatures and rainfall. -fun ClimateZone : Class ; -fun ClimateZone_Class : SubClass ClimateZone GeographicArea ; - --- Coal is a black or brownish black solid combustible --- substance formed by the partial decomposition of vegetable matter without --- free access of air and under the influence of moisture and often increased --- pressure and temperature. Coal is a sedimentary rock containing a high --- proportion of carbon. -fun Coal : Class ; -fun Coal_Class : SubClass Coal (both FossilFuel (both Mineral Rock)) ; - - -fun CoastalDegradation : Ind EnvironmentalIssue ; - -fun CoastalFlooding : Class ; -fun CoastalFlooding_Class : SubClass CoastalFlooding Flooding ; -fun CoastalMarinePollutionIssue : Ind EnvironmentalIssue ; - --- CoastalPlain is the class of broad plains --- areas adjacent to a Sea or Ocean. A coastal plain includes a narrower --- ShoreArea adjacent to a body of water. -fun CoastalPlain : Class ; -fun CoastalPlain_Class : SubClass CoastalPlain Plain ; - --- ColdClimateZone is the subclass --- of ClimateZone that is characterized by a warmest month with average --- temperature less than 10 degrees Celsius and a coldest month with --- average temperature less than _3 degrees Celsius. This is Koeppen climate --- system Type D. -fun ColdClimateZone : Class ; -fun ColdClimateZone_Class : SubClass ColdClimateZone ClimateZone ; - --- ColdDampClimateZone is the --- subclass of ColdClimateZone that is characterized by having more --- than 30 mm of precipitation in the driest month. This is subtype --- 'Df' in the Koeppen climate system. -fun ColdDampClimateZone : Class ; -fun ColdDampClimateZone_Class : SubClass ColdDampClimateZone ColdClimateZone ; - --- ColdFront is the class of transitional --- weather processes occurring between a cold air mass that is advancing --- upon a warm air mass. -fun ColdFront : Class ; -fun ColdFront_Class : SubClass ColdFront WeatherFront ; - --- ContinentalClimateZone is a subclass of TemperateClimateZone that is --- characterized by cold winters and hot summers. -fun ContinentalClimateZone : Class ; -fun ContinentalClimateZone_Class : SubClass ContinentalClimateZone TemperateClimateZone ; - --- ContinentalMargin is class of --- SubmergedLandAreas that are the extension of land underwater at --- the edge of a continent, before a drop to the sea floor. A --- ContinentalMargin includes the ContinentalShelf and the --- continental break, slope, or rise at the outer edge. -fun ContinentalMargin : Class ; -fun ContinentalMargin_Class : SubClass ContinentalMargin SubmergedLandArea ; - --- A ContinentalShelf is a natural --- undersea extension of land around a Continent. The shelf is a --- gently sloped (average less than one percent) plain that is an extension --- of the CoastalPlain found off the coast of most continents. -fun ContinentalShelf : Class ; -fun ContinentalShelf_Class : SubClass ContinentalShelf SubmergedLandArea ; - --- Corals are gastrovascular marine cnidarians (phylum --- Cnidaria, class Anthozoa) existing as small anemone_like polyps, typically --- forming colonies of many individuals. The group includes the important --- reef builders known as hermatypic corals, found in tropical oceans, and --- belonging to the subclass Zoantharia of order Scleractinia (formerly --- Madreporaria). The hermatypic corals obtain much of their nutrient --- requirement from symbiotic unicellular algae called zooxanthellae, and so --- are dependent upon growing in sunlight. As a result, these corals are --- usually found not far beneath the surface, although in clear waters corals --- can grow at depths of 60 m (200 ft). Corals breed by spawning, with all --- corals of the same species in a region releasing gametes simultaneously --- over a period of one to several nights around a full moon. (from Wikipedia) -fun Coral : Class ; -fun Coral_Class : SubClass Coral Invertebrate ; - --- CoralReef is the subclass of Reefs that are --- formed from living organisms that produce the limestone formations of the --- reef. Coral reefs include fringing reefs, barrier reefs, and Atolls. -fun CoralReef : Class ; -fun CoralReef_Class : SubClass CoralReef Reef ; - -fun CoralReefDecayIssue : Ind EnvironmentalIssue ; - --- A Cove is a small part of a body of water that --- reaches into a coast. -fun Cove : Class ; -fun Cove_Class : SubClass Cove Inlet ; - --- Crosswind is the relative attribute of a --- Wind to an object when the force of the wind is applied to a lateral --- side of the object. -fun Crosswind : Ind Attribute ; - - --- CyclonicStorm is the class of --- LowPressureWeatherSystems that involve a low pressure area --- surrounded by rapidly rotating winds, with the whole system --- typically moving forward at 20_30 mph. -fun CyclonicStorm : Class ; -fun CyclonicStorm_Class : SubClass CyclonicStorm (both LowPressureWeatherSystem Windstorm) ; - - --- DDT (dichoro_diphenyl_trichloro_ethane) --- is a highly toxic insecticide also harmful to most other animal --- species. DDT was banned in the UnitedStates in 1972. -fun DDT : Class ; -fun DDT_Class : SubClass DDT CompoundSubstance ; - -fun Dam_StationaryArtifact : SubClass Dam StationaryArtifact ; - --- (DatumFn ?place) denotes the point of MLLW (Mean Lower Low --- Water) used as the initial data point for a coastal or WaterArea given on a nautical --- chart. High and low tides are calculated with reference to this point. -fun DatumFn : El GeographicArea -> Ind LengthMeasure ; - - -fun DeadSea : Ind SaltLake ; - --- Defoliant is the class of substances --- that are used to make plants lose their leaves, typically used --- in agriculture or warfare. Defoliants may have detrimental --- environmental side effects. -fun Defoliant : Class ; -fun Defoliant_Class : SubClass Defoliant PureSubstance ; - -fun Deforestation : Class ; -fun Deforestation_Class : SubClass Deforestation (both ForestDamage Removing) ; - -fun DeforestationIssue : Ind EnvironmentalIssue ; - --- A Delta is a LandForm composed of silt or other --- alluvium, deposited at or near the mouth of a river or stream as it enters --- a body of relatively static water. Typically a delta is flat and fan_shaped. -fun Delta : Class ; -fun Delta_Class : SubClass Delta LandForm ; - --- DenseVegetation describes the --- density of vegetation in a Forest. -fun DenseVegetation : Ind Attribute ; - - --- Desert is a subclass of LandAreas that are --- arid regions having sparse or no vegetation. -fun Desert : Class ; -fun Desert_Class : SubClass Desert LandArea ; - --- DesertClimateZone --- is the class of AridClimateZones characterized by --- sparse, desert vegetation. Koeppen system 'BW'. -fun DesertClimateZone : Class ; -fun DesertClimateZone_Class : SubClass DesertClimateZone AridClimateZone ; - --- Desertification represents the --- Process by which desert conditions are spread over an area. -fun Desertification : Class ; -fun Desertification_Class : SubClass Desertification WeatherProcess ; + fun EnvironmentalModificationConvention : Ind Agreement ; -fun DesertificationConvention : Ind Agreement ; + fun EnvironmentalWaterIssue : Class ; + fun EnvironmentalWaterIssue_Class : SubClass EnvironmentalWaterIssue EnvironmentalIssue ; -fun DesertificationIssue : Ind EnvironmentalIssue ; + -- Erosion is a wearing process on + -- LandForms by wind, running water, ice, heat, and other processes, + -- in which rock and soil material are removed from one area and + -- deposited elsewhere. + fun Erosion : Class ; + fun Erosion_Class : SubClass Erosion (both GeologicalProcess Removing) ; -fun DipSlipFault : Class ; -fun DipSlipFault_Class : SubClass DipSlipFault GeologicalFault ; --- (DirectionalSubregionFn ?DIRECTION ?AREA) denotes the part --- of GeographicArea ?AREA that lies in ?DIRECTION from the --- geographic center of ?AREA. For example, --- (DirectionalSubregionFn Iraq North) denotes the Northern --- part of Iraq. Such subregions are defined purely by geographical --- points of reference, not by sociological ones. For example, --- (DirectionalSubregionFn UnitedStatesOfAmerica South) denotes --- the Southern half of the United States, it does not denote the --- American South as distinguished for historical, literary, or --- cultural purposes. -fun DirectionalSubregionFn : El DirectionalAttribute -> El GeographicArea -> Ind GeographicArea ; + -- Estuary is the subclass of BodyOfWater that + -- represents WaterAreas where a sea or ocean Tide meets a River + -- current. + fun Estuary : Class ; + fun Estuary_Class : SubClass Estuary (both BodyOfWater (both Inlet SaltWaterArea)) ; + -- ExclusiveFishingZone is the + -- subclass of MaritimeClaimArea including offshore areas over which a + -- nation claims exclusive jurisdiction only for fishing purposes (cf. + -- MaritimeExclusiveEconomicZone). Zone widths vary up to 200 miles + -- (NM). + fun ExclusiveFishingZone : Class ; + fun ExclusiveFishingZone_Class : SubClass ExclusiveFishingZone (both MaritimeClaimArea SaltWaterArea) ; -fun DiseaseConditionsIssue : Class ; -fun DiseaseConditionsIssue_Class : SubClass DiseaseConditionsIssue EnvironmentalIssue ; --- (DocumentFn ?PROP) denotes a class --- of Text objects that contain the information ?PROP. -fun DocumentFn: El Proposition -> Desc Text ; + -- (ExclusiveFishingZoneFn ?POLITY) denotes the + -- ExclusiveFishingZone that is claimed by the + -- GeopoliticalArea ?POLITY. + fun ExclusiveFishingZoneFn : El GeopoliticalArea -> Ind ExclusiveFishingZone ; + -- ExtendedFishingZone is the subclass of MaritimeClaimArea + -- that includes offshore areas over which a nation claims fishing rights, + -- beyond that nation's ExclusiveFishingZone. Zone widths vary, + -- from as little as 12 miles (NM) up to a width of 200 miles (NM). + fun ExtendedFishingZone : Class ; + fun ExtendedFishingZone_Class : SubClass ExtendedFishingZone (both MaritimeClaimArea SaltWaterArea) ; --- Downhill is a PositionalAttribute that --- describes the relation between two things, one of which is located --- down a slope from the other. -fun Downhill : Ind PositionalAttribute ; + -- (ExtendedFishingZoneFn ?POLITY) denotes the + -- ExtendedFishingZoneFn that is claimed by the + -- GeopoliticalArea ?POLITY, beyond its ExclusiveFishingZone. + fun ExtendedFishingZoneFn : El GeopoliticalArea -> Ind ExtendedFishingZone ; + fun Famine : Class ; + fun Famine_Class : SubClass Famine SocialInteraction ; -fun Downstream : Ind PositionalAttribute ; + fun FamineIssue : Ind EnvironmentalIssue ; --- Downwind is a PositionalAttribute that indicates relative position --- downwind (leeward) with respect to the direction that the Wind is --- blowing. -fun Downwind : Ind PositionalAttribute ; + fun FarmingPracticesIssue : Ind EnvironmentalIssue ; + -- Fathom is a UnitOfMeasure used for measuring + -- water depth. One fathom is equal to six feet. + fun Fathom : Ind UnitOfLength ; -fun Dredging : Class ; -fun Dredging_Class : SubClass Dredging Removing ; -fun DriftNetFishingIssue : Ind EnvironmentalIssue ; + -- FertileTerrain describes an area + -- that has the type of soil and climate conditions needed to produce + -- good quality crops. + fun FertileTerrain : Ind TerrainAttribute ; -fun DriftnetFishing : Class ; -fun DriftnetFishing_Class : SubClass DriftnetFishing Fishing ; --- Drought is the subclass of WeatherProcess --- that represents long periods without precipitation, which is damaging --- to crops, livestock, and human life. -fun Drought : Class ; -fun Drought_Class : SubClass Drought WeatherProcess ; + -- Fire is the subclass of Combustion events in + -- which flames are present. Fires are slower combustion processes than + -- explosions, though some fires may include explosive episodes. + fun Fire : Class ; + fun Fire_Class : SubClass Fire Combustion ; -fun DroughtIssue : Ind EnvironmentalIssue ; + fun FishStockDepletionIssue : Ind EnvironmentalIssue ; --- DryWinterColdClimateZone --- is a subclass of ColdClimateZone that is characterized by having --- at least ten times as much precipitation in the wettest summer month --- as in the driest winter month. This is Koeppen climate system subtype --- 'Dw'. -fun DryWinterColdClimateZone : Class ; -fun DryWinterColdClimateZone_Class : SubClass DryWinterColdClimateZone ColdClimateZone ; + -- Fishing is the class of Processes in which + -- Fish are hunted. + fun Fishing : Class ; + fun Fishing_Class : SubClass Fishing Hunting ; -fun DustStorm : Class ; -fun DustStorm_Class : SubClass DustStorm WeatherProcess ; --- An EarthTremor is an individual seismic --- event in which the earth shakes due to release of seismic pressures. -fun EarthTremor : Class ; -fun EarthTremor_Class : SubClass EarthTremor (both GeologicalProcess Tremor) ; + fun FlashFlooding : Class ; + fun FlashFlooding_Class : SubClass FlashFlooding Flooding ; + -- FlatTerrain is a TerrainAttribute + -- describing regions within which there is very little variation in + -- altitude. + fun FlatTerrain : Ind TerrainAttribute ; --- Earthquake is the class of events in --- which the earth shakes while its layers readjust due to tensional --- stresses in the surface of the earth. A single earthquake may consist --- of one or more EarthTremors. -fun Earthquake : Class ; -fun Earthquake_Class : SubClass Earthquake GeologicalProcess ; + fun Flooding_WeatherProcess : SubClass Flooding WeatherProcess ; --- EarthsAtmosphere is the layer of gases, --- a mixture of mainly oxygen and nitrogen, surrounding PlanetEarth. See --- also Air. -fun EarthsAtmosphere : Ind Atmosphere ; + -- (FlowFn ?FLUID) denotes the Motion process + -- associated with the constitutive pieces of the FlowRegion ?FLUID. + fun FlowFn : El FlowRegion -> Ind Motion ; + -- (FlowRegionFn ?FLOW) denotes the region + -- in which the coherent LiquidMotion process ?FLOW is occurring. + fun FlowRegionFn : El LiquidMotion -> Ind Region ; --- EarthsMoon is the Moon of PlanetEarth. -fun EarthsMoon : Ind Moon ; + fun FlowRegion_Region : SubClass FlowRegion Region ; + fun Fogging : Class ; + fun Fogging_Class : SubClass Fogging WeatherProcess ; -fun EasternAfrica : Ind GeographicArea ; + -- Forest is the class of large LandAreas that + -- are covered by trees and associated undergrowth, either growing wild or + -- managed for the purpose of timber production. + fun Forest : Class ; + fun Forest_Class : SubClass Forest LandArea ; -fun EasternAsia : Ind GeographicArea ; + fun ForestDamage : Class ; + fun ForestDamage_Class : SubClass ForestDamage Damaging ; -fun EasternEurope : Ind GeographicArea ; + fun ForestDegradation : Ind EnvironmentalIssue ; --- The half of the Earth that includes Europe, --- Asia, Africa, and Australia. -fun EasternHemisphere : Ind Hemisphere ; + fun ForestFire : Class ; + fun ForestFire_Class : SubClass ForestFire (both Combustion ForestDamage) ; + fun FragileEcosystemIssue : Ind BiodiversityIssue ; -fun EasternSouthAmerica : Ind GeographicArea ; + fun FreezingRain : Class ; + fun FreezingRain_Class : SubClass FreezingRain Precipitation ; --- Ecosystem is a subclass of GeographicAreas --- considered together with their organisms and environment as a functioning --- whole. -fun Ecosystem : Class ; -fun Ecosystem_Class : SubClass Ecosystem GeographicArea ; + -- Freshwater is the subclass of Water + -- that has low soluble mineral content. See also PotableWater. + fun Freshwater : Class ; + fun Freshwater_Class : SubClass Freshwater Water ; --- Effluent is a Substance --- that generically covers any waste matter that is released into --- the environment, including sewage and industrial pollutants. -fun Effluent : Class ; -fun Effluent_Class : SubClass Effluent Substance ; + fun FreshwaterOverutilization : Class ; + fun FreshwaterOverutilization_Class : SubClass FreshwaterOverutilization SocialInteraction ; -fun ElNino : Class ; -fun ElNino_Class : SubClass ElNino WeatherSeason ; --- (ElevationHighPointFn ?AREA) --- denotes the area within the GeographicArea ?AREA that has the --- highest elevation. -fun ElevationHighPointFn : El GeographicArea -> Ind GeographicArea ; + -- (GeographicCenterFn ?REGION) denotes the geographical center + -- of the GeographicArea ?REGION. + fun GeographicCenterFn : El GeographicArea -> Ind GeographicArea ; + fun GeographicRegion : Class ; --- (ElevationLowPointFn ?AREA) --- denotes the area within the GeographicArea ?AREA that has the --- lowest elevation. -fun ElevationLowPointFn : El GeographicArea -> Ind GeographicArea ; + -- GeologicalFault is the subclass of + -- GeographicAreas in which there is a fracture in the Earth's crust + -- and differential movement can occur on the two sides of the fault. + -- Such movement results in EarthTremors and is the cause of + -- Earthquakes. + fun GeologicalFault : Class ; + fun GeologicalFault_Class : SubClass GeologicalFault GeographicArea ; + -- GeologicallyStable is a + -- TerrainAttribute of a GeographicArea in which the geological + -- substructure is stable, i.e., there are no active Volcanoes, + -- no major fault lines, no blasting or other destabilizing activity. + fun GeologicallyStable : Ind TerrainAttribute ; -fun EndangeredMarineWildlifeIssue : Ind BiodiversityIssue ; + fun Ghibli : Class ; + fun Ghibli_Class : SubClass Ghibli WindProcess ; --- EndangeredSpecies is the --- subclass of Organism that includes plants and animals that --- are in danger of extinction from destruction of individuals --- or of habitat. -fun EndangeredSpecies : Class ; -fun EndangeredSpecies_Class : SubClass EndangeredSpecies Organism ; + -- A Glacier is a large body of slow_moving ice. + -- Glaciers displace soil and rock while moving over land surfaces and break + -- apart, forming Icebergs, when they reach the sea. + fun Glacier : Class ; + fun Glacier_Class : SubClass Glacier LandForm ; -fun EndangeredSpeciesConvention : Ind Agreement ; + fun GrassFire : Class ; + fun GrassFire_Class : SubClass GrassFire Combustion ; -fun EndangeredSpeciesIssue : Ind BiodiversityIssue ; + -- Grassland is the class of LandAreas + -- where the predominant vegetation is some kind of grass. + fun Grassland : Class ; + fun Grassland_Class : SubClass Grassland (both Biome LandArea) ; -fun EnvironmentalIssue : Class ; -fun EnvironmentalIssue_Class : SubClass EnvironmentalIssue AreaOfConcern ; -fun EnvironmentalModificationConvention : Ind Agreement ; + -- Gravel is small rounded stones, often mixed with sand. + fun Gravel : Class ; + fun Gravel_Class : SubClass Gravel Rock ; -fun EnvironmentalWaterIssue : Class ; -fun EnvironmentalWaterIssue_Class : SubClass EnvironmentalWaterIssue EnvironmentalIssue ; --- Erosion is a wearing process on --- LandForms by wind, running water, ice, heat, and other processes, --- in which rock and soil material are removed from one area and --- deposited elsewhere. -fun Erosion : Class ; -fun Erosion_Class : SubClass Erosion (both GeologicalProcess Removing) ; + fun GreatSaltLake : Ind SaltLake ; + -- GreenhouseGas is the subclass of + -- substances that, when present in the atmosphere, trap infrared + -- radiation and cause global warming. Greenhouse gases include + -- carbon dioxide, hydrofluorocarbons, methane, nitrous oxide, ozone, + -- and water vapor. + fun GreenhouseGas : Class ; + fun GreenhouseGas_Class : SubClass GreenhouseGas PureSubstance ; --- Estuary is the subclass of BodyOfWater that --- represents WaterAreas where a sea or ocean Tide meets a River --- current. -fun Estuary : Class ; -fun Estuary_Class : SubClass Estuary (both BodyOfWater (both Inlet SaltWaterArea)) ; + fun GreenwichEnglandUK : Ind City ; + -- GroundCoverVegetation + -- describes the density of uniform low vegetation in a field or meadow. + fun GroundCoverVegetation : Ind Attribute ; --- ExclusiveFishingZone is the --- subclass of MaritimeClaimArea including offshore areas over which a --- nation claims exclusive jurisdiction only for fishing purposes (cf. --- MaritimeExclusiveEconomicZone). Zone widths vary up to 200 miles --- (NM). -fun ExclusiveFishingZone : Class ; -fun ExclusiveFishingZone_Class : SubClass ExclusiveFishingZone (both MaritimeClaimArea SaltWaterArea) ; + -- Groundwater is the subclass of + -- Water that is found in deposits in the earth. + fun Groundwater : Class ; + fun Groundwater_Class : SubClass Groundwater Water ; + fun GroundwaterPollutionIssue : Ind EnvironmentalWaterIssue ; --- (ExclusiveFishingZoneFn ?POLITY) denotes the --- ExclusiveFishingZone that is claimed by the --- GeopoliticalArea ?POLITY. -fun ExclusiveFishingZoneFn : El GeopoliticalArea -> Ind ExclusiveFishingZone ; + -- Gulf is the class of extensions of a Sea or + -- Ocean that reach into a land mass or are partially enclosed by a + -- LandArea. A Gulf is typically larger than a Bay. + fun Gulf : Class ; + fun Gulf_Class : SubClass Gulf (both BodyOfWater SaltWaterArea) ; + fun GulfOfAden : Ind (both Gulf SaltWaterArea) ; --- ExtendedFishingZone is the subclass of MaritimeClaimArea --- that includes offshore areas over which a nation claims fishing rights, --- beyond that nation's ExclusiveFishingZone. Zone widths vary, --- from as little as 12 miles (NM) up to a width of 200 miles (NM). -fun ExtendedFishingZone : Class ; -fun ExtendedFishingZone_Class : SubClass ExtendedFishingZone (both MaritimeClaimArea SaltWaterArea) ; + fun GulfOfMexico : Ind (both Gulf SaltWaterArea) ; + fun GulfOfOman : Ind (both Gulf SaltWaterArea) ; --- (ExtendedFishingZoneFn ?POLITY) denotes the --- ExtendedFishingZoneFn that is claimed by the --- GeopoliticalArea ?POLITY, beyond its ExclusiveFishingZone. -fun ExtendedFishingZoneFn : El GeopoliticalArea -> Ind ExtendedFishingZone ; + -- Hailing is a precipitation process + -- in which Water falls in a Solid state with round, hard pellets. + fun Hailing : Class ; + fun Hailing_Class : SubClass Hailing Precipitation ; + fun HarmattanWind : Class ; + fun HarmattanWind_Class : SubClass HarmattanWind WindProcess ; -fun Famine : Class ; -fun Famine_Class : SubClass Famine SocialInteraction ; -fun FamineIssue : Ind EnvironmentalIssue ; + fun HazardousWastesConvention : Ind Agreement ; -fun FarmingPracticesIssue : Ind EnvironmentalIssue ; + -- Headwind is the relative attribute of a + -- Wind to an object when the force of the wind is applied to the front + -- of the object (FrontFn). A headwind can negatively affect the speed + -- capability of a vehicle. + fun Headwind : Ind Attribute ; + + fun HeavyRaining : Class ; + fun HeavyRaining_Class : SubClass HeavyRaining Raining ; + + fun HeavySurf : Class ; + fun HeavySurf_Class : SubClass HeavySurf (both WaterMotion WeatherProcess) ; + + -- Hemisphere is the class of GeographicAreas + -- that are halves of the Earth, as traditionally divided into the Northern + -- and Southern Hemispheres along the equator and into the Eastern and Western + -- Hemispheres along a north_south line running 20°W and 160°E. + fun Hemisphere : Class ; + fun Hemisphere_Class : SubClass Hemisphere GeographicArea ; + + fun HighBiodiversity : Ind BiodiversityAttribute ; + + -- HighPressureWeatherSystem is + -- the class of weather systems characterized by high barometricPressures. + -- High pressure systems typically cause clear weather. + fun HighPressureWeatherSystem : Class ; + fun HighPressureWeatherSystem_Class : SubClass HighPressureWeatherSystem WeatherSystem ; + + -- HighTide is the class of TidalProcesses that + -- occur twice a day in marine waters, in which the water level rises above + -- the mean sea level. + fun HighTide : Class ; + fun HighTide_Class : SubClass HighTide TidalProcess ; + + -- HigherHighTide is the subclass of + -- HighTide processes that occur in marine waters with a + -- MixedTideProcess. + fun HigherHighTide : Class ; + fun HigherHighTide_Class : SubClass HigherHighTide HighTide ; + + -- A Hill is a raised part of the earth's surface with + -- sloping sides _ an old mountain which because of erosion has become shorter + -- and more rounded. + fun Hill : Class ; + fun Hill_Class : SubClass Hill (both LandForm UplandArea) ; + + -- Humus is decaying organic matter found in Soil + -- and derived from dead animal and plant material. + fun Humus : Class ; + fun Humus_Class : SubClass Humus Mixture ; + + fun Hurricane : Class ; + fun Hurricane_Class : SubClass Hurricane (both TropicalCyclone WeatherProcess) ; + + fun HurricaneSeason : Class ; + fun HurricaneSeason_Class : SubClass HurricaneSeason WeatherSeason ; + + -- HydropowerWaterArea is the class of WaterAreas with waterflow strength adequate + -- for the production of hydropower. + fun HydropowerWaterArea : Class ; + fun HydropowerWaterArea_Class : SubClass HydropowerWaterArea WaterArea ; + + -- An Iceberg is a large chunk of ice that has + -- broken off from a glacier and fallen into the sea. The larger part of + -- an Iceberg floats underwater. + fun Iceberg : Class ; + fun Iceberg_Class : SubClass Iceberg (both SelfConnectedObject Water) ; + + fun Icing : Class ; + fun Icing_Class : SubClass Icing (both Freezing WeatherProcess) ; + + fun IllegalWildlifeTradeIssue : Ind EnvironmentalIssue ; + + fun InadequatePotableWaterIssue : Ind EnvironmentalWaterIssue ; + + fun InadequateSanitationIssue : Ind EnvironmentalIssue ; + + -- IndianOcean represents the Indian Ocean. + fun IndianOcean : Ind Ocean ; + + fun IndigenousPeoplesPreservationIssue : Ind EnvironmentalIssue ; + + -- IndustrialPollution is + -- the subclass of Pollution characterized by pollutants that + -- originate in industrial processes. + fun IndustrialPollution : Class ; + fun IndustrialPollution_Class : SubClass IndustrialPollution Pollution ; + + fun IndustrialPollutionIssue : Ind PollutionIssue ; + + -- An instance of InlandWaterSystem + -- comprises two or more lakes or rivers, canals, or other waterways that + -- are interconnected. + fun InlandWaterSystem : Class ; + fun InlandWaterSystem_Class : SubClass InlandWaterSystem (both Collection WaterArea) ; + + -- Inlet is the class of bays or other recesses + -- into the shore of a lake, sea, or river, includes InletPassages, which + -- are passages leading from open water through some barrier to a bay or + -- lagoon. + fun Inlet : Class ; + fun Inlet_Class : SubClass Inlet BodyOfWater ; + + -- InletPassage is the class of water + -- passages connecting an area of open water to a bay or lagoon, through + -- some land barrier(s) close on either side. + fun InletPassage : Class ; + fun InletPassage_Class : SubClass InletPassage Inlet ; + + -- (InnerBoundaryFn ?REGION) denotes the + -- inner boundary of the Region ?REGION, where ?REGION has an inner and + -- outer orientation with respect to another object. + fun InnerBoundaryFn : El Region -> Ind Region ; + + -- InternationalAgreement is the + -- subclass of Agreements which are made by and between Nations. + fun InternationalAgreement : Class ; + fun InternationalAgreement_Class : SubClass InternationalAgreement Agreement ; + + -- InternationalBorder is the + -- subclass of GeographicAreas where the areas of two Nations meet. + fun InternationalBorder : Class ; + fun InternationalBorder_Class : SubClass InternationalBorder GeographicArea ; + + fun InvasiveSpeciesIssue : Ind EnvironmentalIssue ; + + -- IrrigatedLand is the subclass of + -- LandArea representing land whose water supply is artificially + -- supplied or supplemented. + fun IrrigatedLand : Class ; + fun IrrigatedLand_Class : SubClass IrrigatedLand LandArea ; + + -- Irrigating is the process of transporting + -- and applying water to crops by artificial means. + fun Irrigating : Class ; + fun Irrigating_Class : SubClass Irrigating Motion ; + + -- IrrigationChannel is the class of + -- artificially created channels used for transporting water to agricultural + -- fields for Irrigating crops. + fun IrrigationChannel : Class ; + fun IrrigationChannel_Class : SubClass IrrigationChannel Artifact ; + + -- An Isthmus is a narrow strip of land that + -- connects two larger land masses and is bordered on two sides by water. + fun Isthmus : Class ; + fun Isthmus_Class : SubClass Isthmus LandArea ; + + -- JetStream is the class of high_velocity + -- AirStreams that blow constantly in the upper atmosphere with constant + -- speed and direction, though their location shifts somewhat. There are + -- four JetStreams in EarthsAtmosphere. + fun JetStream : Class ; + fun JetStream_Class : SubClass JetStream AirStream ; + + -- Jungle is a subclass of fertile LandAreas + -- that are overgrown with tropical vegetation. + fun Jungle : Class ; + fun Jungle_Class : SubClass Jungle (both Biome LandArea) ; + + fun Khamsin : Class ; + fun Khamsin_Class : SubClass Khamsin Windstorm ; + + -- KnotUnitOfSpeed is a unit for measuring + -- speed. One KnotUnitOfSpeed is equal to one NauticalMile per one + -- HourDuration. + fun KnotUnitOfSpeed : Ind CompositeUnitOfMeasure ; + + fun KokoNor : Ind SaltLake ; + + -- Lake is the subclass of BodyOfWater whose instances are naturally + -- occurring static bodies of water surrounded by land. + fun Lake : Class ; + fun Lake_Class : SubClass Lake StaticWaterArea ; + + fun LakeBakhtegan : Ind SaltLake ; + + fun LakeEyre : Ind SaltLake ; + + fun LakeMareotis : Ind SaltLake ; + + -- A LakeRegion is a GeographicArea + -- including land surrounding one or more Lakes. + fun LakeRegion : Class ; + fun LakeRegion_Class : SubClass LakeRegion GeographicArea ; + + fun LakeTorrens : Ind SaltLake ; + + fun LakeWalker : Ind SaltLake ; + + fun LandClearingIssue : Ind BiodiversityIssue ; + + -- A LandForm is the class of geographically and/or geologically + -- distinct areas that occur on Earth's surface, including mountains, hills, plains, valleys, + -- deltas, and features of submerged land areas such as the ocean floor. + fun LandForm : Class ; + fun LandForm_Class : SubClass LandForm GeographicArea ; + + fun LandSubsidence : Class ; + fun LandSubsidence_Class : SubClass LandSubsidence GeologicalProcess ; + + -- LandlockedArea is the class of + -- LandAreas that lack access to an Ocean or to a Waterway + -- providing a link to the ocean. + fun LandlockedArea : Class ; + fun LandlockedArea_Class : SubClass LandlockedArea LandArea ; + + -- LandlockedWater includes water + -- areas that are surrounded by land, including salt lakes, fresh + -- water lakes, ponds, reservoirs, and (more or less) wetlands. + fun LandlockedWater : Class ; + fun LandlockedWater_Class : SubClass LandlockedWater BodyOfWater ; + + fun LandminesIssue : Ind EnvironmentalIssue ; + + fun Landslide : Class ; + fun Landslide_Class : SubClass Landslide GeologicalProcess ; + + -- LandslideProcess is a subclass + -- of Motion that represents events in which a loosened mass of mud, + -- dirt, or rock slides down a slope, by the force of gravity. + fun LandslideProcess : Class ; + fun LandslideProcess_Class : SubClass LandslideProcess Impelling ; + + -- Latitude is the class of Regions, + -- associated with areas on the Earth's surface, which are parallels + -- measured in PlaneAngleDegrees from the Equator. + fun Latitude : Class ; + fun Latitude_Class : SubClass Latitude Region ; + + -- LatitudeFn is a VariableArityRelation + -- used to denote a parallel of latitude. Examples: + -- (LatitudeFn North (MeasureFn 38 AngularDegree)), (LatitudeFn + -- South (MeasureFn 23 AngularDegree) (MeasureFn 30 ArcMinute)), + -- (LatitudeFn South (MeasureFn 60 AngularDegree) (MeasureFn 0 ArcMinute) + -- (MeasureFn 0 ArcSecond)), (LatitudeFn North + -- (MeasureFn 42 AngularDegree) (MeasureFn 7.89 ArcMinute)). + fun LatitudeFn : El DirectionalAttribute -> El AngleMeasure -> El AngleMeasure -> El AngleMeasure -> Ind Region ; + + fun LawOfTheSeaConvention : Ind Agreement ; + + -- Lichen is the class of complex thallyphytic + -- plants made up of Alga and Fungus growing symbiotically. + fun Lichen : Class ; + fun Lichen_Class : SubClass Lichen NonFloweringPlant ; + + fun LimitedFreshWaterIssue : Ind EnvironmentalWaterIssue ; + + -- LittoralCurrent is the subclass of + -- WaterCurrents that occur near a ShoreArea. Examples include + -- TidalEbb, TidalFlow, and RipCurrents. + fun LittoralCurrent : Class ; + fun LittoralCurrent_Class : SubClass LittoralCurrent WaterCurrent ; + + -- A LittoralZone is an area along the shore + -- of a large body of water, especially an Ocean or Sea, including the area + -- extending from the high tide mark out to a depth of 200 meters. The littoral + -- zone is of interest for its land features, e.g., slope gradient and soil + -- composition, including features of its SubmergedLandArea. + fun LittoralZone : Class ; + fun LittoralZone_Class : SubClass LittoralZone GeographicArea ; + + -- Type of soil intermediate in texture between clay and sand, + -- consisting of a mixture of clay, sand, gravel, silt, and organic matter. + fun Loam : Class ; + fun Loam_Class : SubClass Loam Soil ; + + fun Locust : Class ; + fun Locust_Class : SubClass Locust Animal ; + + -- Longitude is the class of Regions, + -- associated with areas on the Earth's surface, which are meridians + -- measured in PlaneAngleDegrees from the PrimeMeridian through + -- GreenwichEnglandUK. + fun Longitude : Class ; + fun Longitude_Class : SubClass Longitude Region ; + + -- (LongitudeFn ?DIRECTION @ROW) + -- denotes a meridian of longitude. Note that LongitudeFn is + -- a VariableArityRelation. Examples: + -- (LongitudeFn East (MeasureFn 180 AngularDegree)), (LongitudeFn + -- West (MeasureFn 122 AngularDegree) (MeasureFn 24 ArcMinute)), + -- (LongitudeFn East (MeasureFn 121 AngularDegree) + -- (MeasureFn 0 ArcMinute) (MeasureFn 15 ArcSecond)), + -- (LongitudeFn West (MeasureFn 80 AngularDegree) + -- (MeasureFn 6.78 ArcMinute)). + fun LongitudeFn : El DirectionalAttribute -> El AngleMeasure -> El AngleMeasure -> El AngleMeasure -> Ind GeographicArea ; + + fun LossOfHabitatIssue : Ind EnvironmentalIssue ; + + fun LowBiodiversity : Ind BiodiversityAttribute ; + + -- LowPressureWeatherSystem is + -- the class of weather systems characterized by low or unstable + -- barometricPressures. Low pressure systems typically introduce + -- unsettled weather, frequently including storms. + fun LowPressureWeatherSystem : Class ; + fun LowPressureWeatherSystem_Class : SubClass LowPressureWeatherSystem WeatherSystem ; + + -- LowTerrain is terrain in which the slope + -- is less than 3%. + fun LowTerrain : Ind TerrainAttribute ; + + -- LowTide is the class of TidalProcesses that + -- occur twice a day in marine waters, in which the water level falls below + -- the mean sea level. + fun LowTide : Class ; + fun LowTide_Class : SubClass LowTide TidalProcess ; + + -- LowerLowTide is the subclass of LowTide + -- processes that occur in marine waters with a MixedTideProcess. + fun LowerLowTide : Class ; + fun LowerLowTide_Class : SubClass LowerLowTide LowTide ; + + -- A LowlandArea is a land area lower than the surrounding region, + -- and usually level land. + fun LowlandArea : Class ; + fun LowlandArea_Class : SubClass LowlandArea LandForm ; + + fun MarineDumpingConvention : Ind Agreement ; + + fun MarineLifeConservationConvention : Ind Agreement ; + + -- A MaritimeClaimArea is a GeographicArea + -- delimited by a geopolitical state's claim, under the LawOfTheSea, of rights + -- to certain resources, activities, or jurisdiction in the claimed area. + -- MaritimeClaimAreas can pertain to WaterAreas, SubmergedLandAreas, and Airspace. + fun MaritimeClaimArea : Class ; + fun MaritimeClaimArea_Class : SubClass MaritimeClaimArea GeographicArea ; + + -- (MaritimeClaimsTerritorialSeaFn ?REGION) denotes a + -- peripheral zones of maritime control extending outward from the Region + -- ?REGION. + fun MaritimeClaimsTerritorialSeaFn : El Region -> Ind PerimeterArea ; + + -- MaritimeContiguousZone + -- is the subclass of MaritimeClaimArea that includes areas over + -- which a geopolitical state may exercise some control of activities + -- beyond the 12_mile zone of its TerritorialSea. In general, + -- the authorized control is for preventing or punishing activities + -- that would violate laws applying within the 12_mile zone (that is, + -- authorization to chase and intercept). According to the LawOfTheSea, + -- a MaritimeContiguousZone may extend up to 24 nautical miles from the coast. + fun MaritimeContiguousZone : Class ; + fun MaritimeContiguousZone_Class : SubClass MaritimeContiguousZone (both MaritimeClaimArea SaltWaterArea) ; + + -- (MaritimeContiguousZoneFn ?POLITY) denotes the MaritimeContiguousZone + -- that is claimed by the GeopoliticalArea ?POLITY. + fun MaritimeContiguousZoneFn : El GeopoliticalArea -> Ind MaritimeContiguousZone ; + + -- MaritimeExclusiveEconomicZone is the subclass of MaritimeClaimArea + -- that represents the offshore area that coastal nations can claim for + -- fishing and other uses of the ocean water and seabed found there. + fun MaritimeExclusiveEconomicZone : Class ; + fun MaritimeExclusiveEconomicZone_Class : SubClass MaritimeExclusiveEconomicZone (both MaritimeClaimArea SaltWaterArea) ; + + -- (MaritimeExclusiveEconomicZoneFn ?POLITY) denotes the + -- MaritimeExclusiveEconomicZone that is claimed by the + -- GeopoliticalArea ?POLITY. + fun MaritimeExclusiveEconomicZoneFn : El GeopoliticalArea -> Ind MaritimeExclusiveEconomicZone ; + + fun MaritimeHazard : Class ; + fun MaritimeHazard_Class : SubClass MaritimeHazard LandForm ; + + -- MaritimeShelfArea + -- is a subclass of MaritimeClaimArea that covers SubmergedLandAreas + -- claimed by an adjacent geopolitical area. The LawOfTheSea defines + -- the continental shelf as extending up to 200 miles (NM) offshore and + -- including the resources found therein. The defined claim area does not + -- correspond exactly to a geological ContinentalShelf, but if there is one, + -- the two areas will overlap spatially. + fun MaritimeShelfArea : Class ; + fun MaritimeShelfArea_Class : SubClass MaritimeShelfArea (both MaritimeClaimArea SubmergedLandArea) ; + + -- (MaritimeShelfAreaFn ?POLITY) denotes the MaritimeShelfArea + -- that is claimed by the GeopoliticalArea ?POLITY. + fun MaritimeShelfAreaFn : El GeopoliticalArea -> Ind MaritimeShelfArea ; + + -- MediterraneanClimateZone + -- is a subclass of TemperateClimateZone that is characterized by + -- mild, cool, wet winters and warm dry summers. Mediterranean shores + -- are the archetype, but the Mediterranean climate is also found elsewhere. + fun MediterraneanClimateZone : Class ; + fun MediterraneanClimateZone_Class : SubClass MediterraneanClimateZone TemperateClimateZone ; + + fun MediterraneanSea : Ind Sea ; + + fun MediumBiodiversity : Ind BiodiversityAttribute ; + + -- A Mesa is a land formation having a relatively flat + -- top and steep rock walls. + fun Mesa : Class ; + fun Mesa_Class : SubClass Mesa (both LandForm UplandArea) ; + + -- MetallurgicalPlant is the + -- subclass of Organization that includes metal refining and + -- manufacturing plants. Such plants typically release extremely + -- toxic waste which can pollute air and groundwater if not + -- properly treated. + fun MetallurgicalPlant : Class ; + fun MetallurgicalPlant_Class : SubClass MetallurgicalPlant Organization ; + + fun MiddleAmerica : Ind GeographicArea ; + + -- MiddleEastRegion is a + -- GeopoliticalArea that comprises countries of Southwestern Asia + -- and (in some definitions) Northwestern Africa. Here this term is + -- defined as in the CIA World Fact Book, in which the Middle East + -- includes: Bahrain, Cyprus, the Gaza Strip, Iran, Iraq, Israel, + -- Jordan, Kuwait, Lebanon, Oman, Qatar, Saudi Arabia, Syria, the United + -- Arab Emirates, the West Bank, and Yemen. + fun MiddleEastRegion : Ind (both GeographicArea GeopoliticalArea) ; + + -- MiddleLatitudeDesertClimateZone is the subclass of + -- DesertClimateZone characterized by a cool dry climate + -- typical of middle latitude deserts. This is subtype 'BWk' + -- in the Keoppen climate system. + fun MiddleLatitudeDesertClimateZone : Class ; + fun MiddleLatitudeDesertClimateZone_Class : SubClass MiddleLatitudeDesertClimateZone DesertClimateZone ; + + -- MidlatitudeContinentalClimateZone is a subclass of + -- TemperateClimateZone that is characterized by cool winters + -- and hot summers. + fun MidlatitudeContinentalClimateZone : Class ; + fun MidlatitudeContinentalClimateZone_Class : SubClass MidlatitudeContinentalClimateZone ClimateZone ; + + fun MiningPollutionIssue : Ind EnvironmentalIssue ; + + fun Mistral : Class ; + fun Mistral_Class : SubClass Mistral WindProcess ; + + -- MixedTideProcess is the subclass of + -- TidalProcesses consisting of daily cycles in which the two low and + -- two high tides are of unequal height. In areas with this kind of + -- pattern, the chart (based on average low water) is determined by the + -- Mean Lower Low Water. + fun MixedTideProcess : Class ; + fun MixedTideProcess_Class : SubClass MixedTideProcess TidalProcess ; + + fun Monsoon : Class ; + fun Monsoon_Class : SubClass Monsoon WeatherSeason ; + + -- MonsoonClimateZone is the class + -- of TropicalClimateZones in which there is a short dry season between + -- rains heavy enough to keep the ground wet all through the year. This + -- is Koeppen climate system subtype 'Aw'. + fun MonsoonClimateZone : Class ; + fun MonsoonClimateZone_Class : SubClass MonsoonClimateZone TropicalClimateZone ; + + -- Moon is the class of NaturalSatellites that + -- orbit planets or large asteroids. + fun Moon : Class ; + fun Moon_Class : SubClass Moon NaturalSatellite ; + + -- A Mountain is a high, rocky LandForm, usually + -- with steep sides and a pointed or rounded top, and higher than a Hill. + fun Mountain : Class ; + fun Mountain_Class : SubClass Mountain (both LandForm UplandArea) ; + + -- A MountainRange is a row or chain of connected mountains. + fun MountainRange : Class ; + fun MountainRange_Class : SubClass MountainRange (both LandForm UplandArea) ; + + -- An area of MountainousTerrain + -- is an area of rugged terrain in which there are many mountains. + fun MountainousTerrain : Ind TerrainAttribute ; + + fun Mudflow : Class ; + fun Mudflow_Class : SubClass Mudflow Landslide ; + + fun Mudslide : Class ; + fun Mudslide_Class : SubClass Mudslide Landslide ; + + -- NaturalGas is a combustible mixture + -- of methane and higher hydrocarbons. + fun NaturalGas : Class ; + fun NaturalGas_Class : SubClass NaturalGas CompoundSubstance ; + + -- NaturalSatellite is the class of + -- large, naturally occurring astronomical bodies orbiting some other + -- AstronomicalBody. + fun NaturalSatellite : Class ; + fun NaturalSatellite_Class : SubClass NaturalSatellite (both AstronomicalBody Satellite) ; --- Fathom is a UnitOfMeasure used for measuring --- water depth. One fathom is equal to six feet. -fun Fathom : Ind UnitOfLength ; + -- NauticalMile represents the international + -- unit used for measuring distance in sea and air navigation. The unit is + -- based on the length of a minute of arc of a great circle of + -- PlanetEarth. + fun NauticalMile : Ind UnitOfLength ; + fun NormalFault : Class ; + fun NormalFault_Class : SubClass NormalFault DipSlipFault ; --- FertileTerrain describes an area --- that has the type of soil and climate conditions needed to produce --- good quality crops. -fun FertileTerrain : Ind TerrainAttribute ; + fun NorthAmerica : Ind (both GeographicArea Continent) ; + -- NorthAtlanticOcean denotes the northern geographicSubregion + -- of the AtlanticOcean. + fun NorthAtlanticOcean : Ind (both SaltWaterArea BodyOfWater) ; --- Fire is the subclass of Combustion events in --- which flames are present. Fires are slower combustion processes than --- explosions, though some fires may include explosive episodes. -fun Fire : Class ; -fun Fire_Class : SubClass Fire Combustion ; + -- NorthPacificOcean denotes the northern geographicSubregion + -- of the PacificOcean. + fun NorthPacificOcean : Ind (both SaltWaterArea BodyOfWater) ; -fun FishStockDepletionIssue : Ind EnvironmentalIssue ; + fun NorthSea : Ind Sea ; --- Fishing is the class of Processes in which --- Fish are hunted. -fun Fishing : Class ; -fun Fishing_Class : SubClass Fishing Hunting ; + -- Northeast represents the compass direction of Northeast. + fun Northeast : Ind DirectionalAttribute ; -fun FlashFlooding : Class ; -fun FlashFlooding_Class : SubClass FlashFlooding Flooding ; --- FlatTerrain is a TerrainAttribute --- describing regions within which there is very little variation in --- altitude. -fun FlatTerrain : Ind TerrainAttribute ; + fun NorthernAfrica : Ind GeographicArea ; + fun NorthernAsia : Ind GeographicArea ; -fun Flooding_WeatherProcess : SubClass Flooding WeatherProcess ; + fun NorthernEurope : Ind GeographicArea ; --- (FlowFn ?FLUID) denotes the Motion process --- associated with the constitutive pieces of the FlowRegion ?FLUID. -fun FlowFn : El FlowRegion -> Ind Motion ; + -- The half of the Earth that lies above the equator. + fun NorthernHemisphere : Ind Hemisphere ; + fun NorthernNorthAmerica : Ind GeographicArea ; --- (FlowRegionFn ?FLOW) denotes the region --- in which the coherent LiquidMotion process ?FLOW is occurring. -fun FlowRegionFn : El LiquidMotion -> Ind Region ; + fun NorthernSouthAmerica : Ind GeographicArea ; + -- Northwest represents the compass direction of Northwest. + fun Northwest : Ind DirectionalAttribute ; -fun FlowRegion_Region : SubClass FlowRegion Region ; + -- NoxiousSubstance is + -- the class of Substances that are harmful to Humans. + fun NoxiousSubstance : Class ; + fun NoxiousSubstance_Class : SubClass NoxiousSubstance Substance ; -fun Fogging : Class ; -fun Fogging_Class : SubClass Fogging WeatherProcess ; --- Forest is the class of large LandAreas that --- are covered by trees and associated undergrowth, either growing wild or --- managed for the purpose of timber production. -fun Forest : Class ; -fun Forest_Class : SubClass Forest LandArea ; + fun NuclearEnvironmentalIssue : Ind PollutionIssue ; -fun ForestDamage : Class ; -fun ForestDamage_Class : SubClass ForestDamage Damaging ; -fun ForestDegradation : Ind EnvironmentalIssue ; + fun NuclearPollutionIssue : Ind EnvironmentalIssue ; -fun ForestFire : Class ; -fun ForestFire_Class : SubClass ForestFire (both Combustion ForestDamage) ; + fun NuclearTestBanTreaty : Ind Agreement ; -fun FragileEcosystemIssue : Ind BiodiversityIssue ; + -- Oasis is a subclass of LandAreas that are + -- fertile places within a desert, which have water and some vegetation. + fun Oasis : Class ; + fun Oasis_Class : SubClass Oasis (both Biome LandArea) ; -fun FreezingRain : Class ; -fun FreezingRain_Class : SubClass FreezingRain Precipitation ; --- Freshwater is the subclass of Water --- that has low soluble mineral content. See also PotableWater. -fun Freshwater : Class ; -fun Freshwater_Class : SubClass Freshwater Water ; + -- OccludedFront is the class of complex + -- weather transition processes in which a cold air mass overtakes a warm + -- air mass. + fun OccludedFront : Class ; + fun OccludedFront_Class : SubClass OccludedFront WeatherFront ; -fun FreshwaterOverutilization : Class ; -fun FreshwaterOverutilization_Class : SubClass FreshwaterOverutilization SocialInteraction ; --- (GeographicCenterFn ?REGION) denotes the geographical center --- of the GeographicArea ?REGION. -fun GeographicCenterFn : El GeographicArea -> Ind GeographicArea ; + -- Ocean is the class containing the oceans + -- that are the major subdivisions of the WorldOcean. According to + -- the International Hydrographic Association, there are five oceans: + -- the AtlanticOcean, PacificOcean, IndianOcean, SouthernOcean, + -- and ArcticOcean. Note: The largest oceans, the Atlantic and Pacific, + -- are subdivided into Northern and Southern regions, but those regions + -- are not separate Oceans. + fun Ocean : Class ; + fun Ocean_Class : SubClass Ocean (both BodyOfWater SaltWaterArea) ; + fun Oceania : Ind (both GeographicArea Continent) ; -fun GeographicRegion : Class ; + fun OilPollutionIssue : Ind PollutionIssue ; --- GeologicalFault is the subclass of --- GeographicAreas in which there is a fracture in the Earth's crust --- and differential movement can occur on the two sides of the fault. --- Such movement results in EarthTremors and is the cause of --- Earthquakes. -fun GeologicalFault : Class ; -fun GeologicalFault_Class : SubClass GeologicalFault GeographicArea ; + -- OpenSea is the Attribute of a WaterArea + -- that is open ocean beyond five NauticalMiles of land, also known as + -- 'blue water'. + fun OpenSea : Ind Attribute ; --- GeologicallyStable is a --- TerrainAttribute of a GeographicArea in which the geological --- substructure is stable, i.e., there are no active Volcanoes, --- no major fault lines, no blasting or other destabilizing activity. -fun GeologicallyStable : Ind TerrainAttribute ; + -- (OuterBoundaryFn ?REGION) denotes the + -- outer boundary of the Region ?REGION, where ?REGION has an inner and + -- outer orientation with respect to another object. + fun OuterBoundaryFn : El Region -> Ind Region ; + -- OvercastWeather represents + -- a condition in which more than 70% of the sky is covered + -- with clouds. + fun OvercastWeather : Class ; + fun OvercastWeather_Class : SubClass OvercastWeather WeatherProcess ; -fun Ghibli : Class ; -fun Ghibli_Class : SubClass Ghibli WindProcess ; --- A Glacier is a large body of slow_moving ice. --- Glaciers displace soil and rock while moving over land surfaces and break --- apart, forming Icebergs, when they reach the sea. -fun Glacier : Class ; -fun Glacier_Class : SubClass Glacier LandForm ; + -- Overgrazing is the class of processes + -- in which grazing animals consume vegetation faster than it can regrow. + fun Overgrazing : Class ; + fun Overgrazing_Class : SubClass Overgrazing Eating ; -fun GrassFire : Class ; -fun GrassFire_Class : SubClass GrassFire Combustion ; --- Grassland is the class of LandAreas --- where the predominant vegetation is some kind of grass. -fun Grassland : Class ; -fun Grassland_Class : SubClass Grassland (both Biome LandArea) ; + fun OvergrazingIssue : Ind EnvironmentalIssue ; + fun OverhuntingIssue : Ind EnvironmentalIssue ; --- Gravel is small rounded stones, often mixed with sand. -fun Gravel : Class ; -fun Gravel_Class : SubClass Gravel Rock ; + fun OverpopulationIssue : Ind EnvironmentalIssue ; -fun GreatSaltLake : Ind SaltLake ; + fun OzoneDepletionIssue : Ind EnvironmentalIssue ; --- GreenhouseGas is the subclass of --- substances that, when present in the atmosphere, trap infrared --- radiation and cause global warming. Greenhouse gases include --- carbon dioxide, hydrofluorocarbons, methane, nitrous oxide, ozone, --- and water vapor. -fun GreenhouseGas : Class ; -fun GreenhouseGas_Class : SubClass GreenhouseGas PureSubstance ; + fun OzoneLayerProtectionProtocol : Ind Agreement ; -fun GreenwichEnglandUK : Ind City ; + -- The OzoneShield is a layer in + -- EarthsAtmosphere, located about 25 miles above Earth's surface, + -- composed of ozone gas that absorbs ultraviolent radiation from + -- the Sun that can be damaging to living things. + fun OzoneShield : Ind (both AtmosphericRegion CompoundSubstance) ; --- GroundCoverVegetation --- describes the density of uniform low vegetation in a field or meadow. -fun GroundCoverVegetation : Ind Attribute ; + -- PHValue ('pH') is a UnitOfMeasure + -- used to measure the acidity or alkalinity of a solution. The pH + -- scale ranges from 0 to 14. The pH of a neutral solution is 7. + -- Acid solutions have a pH value less than seven. Alkaline solutions + -- have a value greater than seven. + fun PHValue : Ind NonCompositeUnitOfMeasure ; + -- PacificOcean represents the Pacific Ocean. + fun PacificOcean : Ind Ocean ; --- Groundwater is the subclass of --- Water that is found in deposits in the earth. -fun Groundwater : Class ; -fun Groundwater_Class : SubClass Groundwater Water ; + -- Pampa is a class of vast, level, typically grassy + -- Plains of land in South America. + fun Pampa : Class ; + fun Pampa_Class : SubClass Pampa (both Grassland Plain) ; -fun GroundwaterPollutionIssue : Ind EnvironmentalWaterIssue ; + fun Pampero : Class ; + fun Pampero_Class : SubClass Pampero Windstorm ; --- Gulf is the class of extensions of a Sea or --- Ocean that reach into a land mass or are partially enclosed by a --- LandArea. A Gulf is typically larger than a Bay. -fun Gulf : Class ; -fun Gulf_Class : SubClass Gulf (both BodyOfWater SaltWaterArea) ; + -- PartlyCloudyWeather + -- represents a condition in which between 30% and 70% of the + -- sky is covered with clouds. + fun PartlyCloudyWeather : Class ; + fun PartlyCloudyWeather_Class : SubClass PartlyCloudyWeather WeatherProcess ; + -- A Peninsula is a piece of land that extends + -- into a body of water and is surrounded on three sides by water. Typically + -- connected by an Isthmus or neck of land that is narrower than its main + -- portion (contrast with Cape). + fun Peninsula : Class ; + fun Peninsula_Class : SubClass Peninsula LandForm ; -fun GulfOfAden : Ind (both Gulf SaltWaterArea) ; + -- A PerimeterArea is a region that + -- extends outward from a boundary with another region, surrounding or + -- partially surrounding it, but which is not part of that other region. + -- See BorderFn and PerimeterAreaFn. + fun PerimeterArea : Class ; + fun PerimeterArea_Class : SubClass PerimeterArea Region ; + + -- (PerimeterAreaFn ?REGION) denotes a + -- class including any peripheral zones extending outward from the Region + -- ?REGION. + fun PerimeterAreaFn: El Region -> Desc PerimeterArea ; + + fun Permafrost : Ind CompoundSubstance ; + + -- PermanentCropLand is the subclass + -- of LandArea that represents land cultivated for crops that are produced + -- without replanting after every harvest, such as fruit trees, coffee, rubber, + -- nuts, and vineyards. Does not include timberland. Cf. arableLandArea. + fun PermanentCropLand : Class ; + fun PermanentCropLand_Class : SubClass PermanentCropLand LandArea ; -fun GulfOfMexico : Ind (both Gulf SaltWaterArea) ; + fun PersianGulf : Ind (both Gulf SaltWaterArea) ; -fun GulfOfOman : Ind (both Gulf SaltWaterArea) ; + fun PesticideIssue : Ind EnvironmentalIssue ; --- Hailing is a precipitation process --- in which Water falls in a Solid state with round, hard pellets. -fun Hailing : Class ; -fun Hailing_Class : SubClass Hailing Precipitation ; + -- PesticidePollution is + -- the subclass of Pollution in which the pollutant is a pesticide. + fun PesticidePollution : Class ; + fun PesticidePollution_Class : SubClass PesticidePollution Pollution ; -fun HarmattanWind : Class ; -fun HarmattanWind_Class : SubClass HarmattanWind WindProcess ; -fun HazardousWastesConvention : Ind Agreement ; + -- Phospate is a salt or ester of a + -- phosphoric acid. + fun Phosphate : Class ; + fun Phosphate_Class : SubClass Phosphate CompoundSubstance ; --- Headwind is the relative attribute of a --- Wind to an object when the force of the wind is applied to the front --- of the object (FrontFn). A headwind can negatively affect the speed --- capability of a vehicle. -fun Headwind : Ind Attribute ; + -- A Piedmont is a LandArea at the foot of mountains. + fun Piedmont : Class ; + fun Piedmont_Class : SubClass Piedmont LandArea ; + -- Pines are coniferous BotanicalTrees of the + -- genus Pinus, in the family Pinaceae. They are evergreens, with needle_ + -- shaped leaves and propagate by dropping pine cones, which contains + -- seeds. (from Wikipedia) + fun PineTree : Class ; + fun PineTree_Class : SubClass PineTree BotanicalTree ; -fun HeavyRaining : Class ; -fun HeavyRaining_Class : SubClass HeavyRaining Raining ; -fun HeavySurf : Class ; -fun HeavySurf_Class : SubClass HeavySurf (both WaterMotion WeatherProcess) ; + -- A Plain is a broad, flat or gently rolling area, + -- usually low in elevation. + fun Plain : Class ; + fun Plain_Class : SubClass Plain LowlandArea ; --- Hemisphere is the class of GeographicAreas --- that are halves of the Earth, as traditionally divided into the Northern --- and Southern Hemispheres along the equator and into the Eastern and Western --- Hemispheres along a north_south line running 20°W and 160°E. -fun Hemisphere : Class ; -fun Hemisphere_Class : SubClass Hemisphere GeographicArea ; + -- Planet is the class of large + -- NaturalSatellites that revolve around a star. + fun Planet : Class ; + fun Planet_Class : SubClass Planet NaturalSatellite ; -fun HighBiodiversity : Ind BiodiversityAttribute ; + fun PlanetEarth : Ind Planet ; --- HighPressureWeatherSystem is --- the class of weather systems characterized by high barometricPressures. --- High pressure systems typically cause clear weather. -fun HighPressureWeatherSystem : Class ; -fun HighPressureWeatherSystem_Class : SubClass HighPressureWeatherSystem WeatherSystem ; + fun PlanetJupiter : Ind Planet ; + + fun PlanetMars : Ind Planet ; + + fun PlanetMercury : Ind Planet ; + + fun PlanetNeptune : Ind Planet ; + + fun PlanetPluto : Ind Planet ; + + fun PlanetSaturn : Ind Planet ; + + fun PlanetUranus : Ind Planet ; + + fun PlanetVenus : Ind Planet ; + + -- Planting is the class of processes in + -- which botanical Plants are planted or transplanted, whether as + -- seeds, seedlings, or mature plants. + fun Planting : Class ; + fun Planting_Class : SubClass Planting Putting ; + + -- A Plateau is a flat upland area with one steep + -- face, elevated plain. + fun Plateau : Class ; + fun Plateau_Class : SubClass Plateau (both LandForm UplandArea) ; + + -- Poaching is the illegal killing + -- of non_human animals. + fun Poaching : Class ; + fun Poaching_Class : SubClass Poaching Killing ; + + -- PolarClimateZone is a subclass of + -- ClimateZone characterized by having an average temperature less than + -- 10 degrees Celsius in the warmest month. This is Koeppen climate system + -- Type E. No agriculture is supported in polar climates. + fun PolarClimateZone : Class ; + fun PolarClimateZone_Class : SubClass PolarClimateZone ClimateZone ; + + -- PolarTypeFClimateZone is a + -- subclass of PolarClimateZone characterized by having no month in + -- which the temperature rises to 10 degrees Celsius or above. + fun PolarTypeFClimateZone : Class ; + fun PolarTypeFClimateZone_Class : SubClass PolarTypeFClimateZone PolarClimateZone ; + + fun PollutedFishStocksIssue : Ind EnvironmentalIssue ; + + -- Pollution is the contamination of an + -- environment by man_made wastes. + fun Pollution : Class ; + fun Pollution_Class : SubClass Pollution SocialInteraction ; + + fun PollutionIssue : Class ; + fun PollutionIssue_Class : SubClass PollutionIssue EnvironmentalIssue ; + fun PoopoLake : Ind SaltLake ; + + fun PopulationMigrationIssue : Ind EnvironmentalIssue ; + + -- PotableWater is the subclass + -- of Water that represents safely drinkable water. + fun PotableWater : Class ; + fun PotableWater_Class : SubClass PotableWater Freshwater ; + + -- Potash is a Potassium carbonate from + -- wood ashes or a potassium compound. + fun Potash : Class ; + fun Potash_Class : SubClass Potash CompoundSubstance ; + + fun PowerPlantEmissionsIssue : Ind PollutionIssue ; + + -- Prairie is a class of large plains + -- LandAreas with tall grass vegetation. + fun Prairie : Class ; + fun Prairie_Class : SubClass Prairie (both Grassland Plain) ; + + -- RainForest is the subclass of LandAreas + -- that are densely planted with trees. + fun RainForest : Class ; + fun RainForest_Class : SubClass RainForest (both Biome Forest) ; + + -- Raining is a precipitation process + -- in which water falls in a Liquid state. + fun Raining : Class ; + fun Raining_Class : SubClass Raining Precipitation ; + + -- Rapids is the class of WaterAreas that are + -- parts of a StreamWaterArea where the currents move swiftly over + -- rocks. + fun Rapids : Class ; + fun Rapids_Class : SubClass Rapids StreamWaterArea ; + + fun RawSewagePollutionIssue : Ind PollutionIssue ; + + fun RedSea : Ind Sea ; + + -- A Reef is a ridge of rock, coral, or sand at or near + -- the surface of a WaterArea. + fun Reef : Class ; + fun Reef_Class : SubClass Reef (both LandForm MaritimeHazard) ; + + -- Reforestation is the process of + -- replanting trees on land where they were cut or burned. + fun Reforestation : Class ; + fun Reforestation_Class : SubClass Reforestation Planting ; + + -- A Reservoir is an artifically made (or + -- artifically enlarged) holding area where water is collected and stored + -- for future use. + fun Reservoir : Class ; + fun Reservoir_Class : SubClass Reservoir (both Artifact FreshWaterArea) ; + + -- A ReservoirLake is an artifically made + -- (or artifically enlarged) lake used for water collection and storage. + fun ReservoirLake : Class ; + fun ReservoirLake_Class : SubClass ReservoirLake (both Lake Reservoir) ; + + -- A RichterMagnitude is a measure + -- of the severity of an EarthTremor. For example, + -- (MeasureFn 6.5 RichterMagnitude) denotes the value of 6.5 on the + -- Richter scale. + fun RichterMagnitude : Ind CompositeUnitOfMeasure ; + + -- A RipCurrent is a fast narrow surface current + -- that flows seaward from a ShoreArea. + fun RipCurrent : Class ; + fun RipCurrent_Class : SubClass RipCurrent LittoralCurrent ; + + -- River is the class of large streams of fresh + -- water flowing through land into a lake, ocean, or other body of water. + fun River : Class ; + fun River_Class : SubClass River (both BodyOfWater (both FreshWaterArea StreamWaterArea)) ; + + -- A RiverBank is the ShoreArea adjacent to a river. + fun RiverBank : Class ; + fun RiverBank_Class : SubClass RiverBank (both LandForm ShoreArea) ; + + -- RiverMouth is the subclass of WaterAreas + -- that are the outfalls of a river or stream into another body of water. + fun RiverMouth : Class ; + fun RiverMouth_Class : SubClass RiverMouth (both StreamWaterArea WaterArea) ; + + -- A RiverSystem comprises all the tributary + -- streams and rivers (StreamWaterAreas) that drain along converging + -- paths into the main river of the system, which discharges into a + -- StaticWaterArea. + fun RiverSystem : Class ; + fun RiverSystem_Class : SubClass RiverSystem (both Collection WaterArea) ; + + fun Rockslide : Class ; + fun Rockslide_Class : SubClass Rockslide Landslide ; + + -- Salination is the class of processes + -- in which either Freshwater or Topsoil becomes imbued with + -- SodiumChloride from sea water or from the evaporation of irrigation water. + fun Salination : Class ; + fun Salination_Class : SubClass Salination Combining ; + + -- A Salt is a chemical substance which is a combination + -- of a metal or a base with an acid. + fun Salt : Class ; + fun Salt_Class : SubClass Salt CompoundSubstance ; + + -- SaltLake is the class of landlocked + -- bodies of salt water, including those referred to as 'Seas', e.g., + -- the CaspianSea. But note that the MediterraneanSea is a Sea. + fun SaltLake : Class ; + fun SaltLake_Class : SubClass SaltLake (both LandlockedWater SaltWaterArea) ; + + fun SaltonSea : Ind SaltLake ; + + -- Sand is loose fragments of minerals or rocks. Smaller than + -- gravel and larger than silt and clay, sand particles range from 8/10,000 to 8/100 + -- inch (0.02 to 2 millimeters) in diameter. Sand is formed by the Erosion of rocks + -- through the action of water, ice, or air. + fun Sand : Class ; + fun Sand_Class : SubClass Sand Soil ; + + fun Sandstorm : Class ; + fun Sandstorm_Class : SubClass Sandstorm WeatherProcess ; + + -- Sanitation is the class of processes + -- by which human waste and garbage are disposed of. + fun Sanitation : Class ; + fun Sanitation_Class : SubClass Sanitation Removing ; + + -- Satellite is the collection of bodies that + -- revolve around some astronomical body, e.g., planets around a star. + -- This class includes both artificial and NaturalSatellites. + fun Satellite : Class ; + fun Satellite_Class : SubClass Satellite AstronomicalBody ; + + -- Savanna is a class of tropical or subtropical + -- Grasslands, typically treeless. + fun Savanna : Class ; + fun Savanna_Class : SubClass Savanna (both Grassland Plain) ; + + -- ScatteredVegetation describes + -- the pattern of vegetation in which plants appear at intervals. + fun ScatteredVegetation : Ind Attribute ; + + -- Sea is the class of smaller subdivisions of + -- the WorldOcean, typically partially surrounded by land. However, + -- for inland salt water bodies that are sometimes called 'Sea', see + -- SaltLake. + fun Sea : Class ; + fun Sea_Class : SubClass Sea (both BodyOfWater SaltWaterArea) ; + + fun SeaIce : Class ; + fun SeaIce_Class : SubClass SeaIce Ice ; + + -- SeaLevel designates the global Mean Sea Surface + -- (MSS). Note that SeaLevel represents a GeographicArea that comprises all + -- the local Mean Sea Level (MSL) areas used as references for measuring altitude. + -- In fact, there are local variations in MSL, due to tides and long_ and short_ + -- term weather conditions. + fun SeaLevel : Ind GeographicArea ; + + -- SeabedArea is the class of SubmergedLandAreas that are part of + -- the sea floor. + fun SeabedArea : Class ; + fun SeabedArea_Class : SubClass SeabedArea SubmergedLandArea ; + + -- A Seacoast is the ShoreArea along the + -- margin of an ocean, extending inland approximately 1_3 km from the low + -- water mark. + fun Seacoast : Class ; + fun Seacoast_Class : SubClass Seacoast (both LandForm ShoreArea) ; + + fun SemiaridClimateZone : Class ; + fun SemiaridClimateZone_Class : SubClass SemiaridClimateZone ClimateZone ; + + fun SevereThunderstorm : Class ; + fun SevereThunderstorm_Class : SubClass SevereThunderstorm WeatherProcess ; + + fun SewageDisposal : Class ; + fun SewageDisposal_Class : SubClass SewageDisposal Sanitation ; + + fun ShipPollutionProtocol : Ind Agreement ; + + fun Shoal : Class ; + fun Shoal_Class : SubClass Shoal MaritimeHazard ; + + -- Shoreline is the class of LandAreas that + -- are the edge of a larger land mass abutting a bordering WaterArea. + fun Shoreline : Class ; + fun Shoreline_Class : SubClass Shoreline LandArea ; + + -- (ShorelineFn ?LAND ?WATER) denotes + -- the Shoreline where the GeographicArea ?LAND borders the + -- WaterArea ?WATER. + fun ShorelineFn : El GeographicArea -> El WaterArea -> Ind LandArea ; + + -- (ShortageFn ?TYPE) means that there + -- is a shortage of objects of ?TYPE, which are used as resources. + fun ShortageFn: Desc Object -> Ind Entity ; + + -- Shrub is the class of low, perennial, + -- typically multi_stemmed woody plants, called shrubs or bushes. + fun Shrub : Class ; + fun Shrub_Class : SubClass Shrub FloweringPlant ; + + -- SigningADocument is the class of + -- actions in which an agent affixes a signature, stamp, or other evidence + -- of authorization or attestation to a document. The document and signature + -- may be electronic. Signings count as SocialInteractions even if done in + -- private, because their significance derives from a social context. + fun SigningADocument : Class ; + fun SigningADocument_Class : SubClass SigningADocument Committing ; + + -- Silt is sand or earth which is carried along by flowing + -- water and deposited at a bend in a river or at a river's opening. + fun Silt : Class ; + fun Silt_Class : SubClass Silt Soil ; + + -- Siltation is the class of processes + -- in which WaterAreas become filled in with silt or mud, due to + -- soil Erosion. + fun Siltation : Class ; + fun Siltation_Class : SubClass Siltation Putting ; + + fun SiltationIssue : Ind EnvironmentalIssue ; + + fun Sirocco : Class ; + fun Sirocco_Class : SubClass Sirocco WindProcess ; + + -- SlashAndBurnAgriculture + -- is the subclass of Agriculture processes in which land is + -- cleared by cutting and burning trees, and crops are farmed until + -- the soil is depleted, at which point the plot is abandoned to + -- regrowth. This rotational technique is viable only with low + -- populations and infrequent re_use. + fun SlashAndBurnAgriculture : Class ; + fun SlashAndBurnAgriculture_Class : SubClass SlashAndBurnAgriculture Agriculture ; --- HighTide is the class of TidalProcesses that --- occur twice a day in marine waters, in which the water level rises above --- the mean sea level. -fun HighTide : Class ; -fun HighTide_Class : SubClass HighTide TidalProcess ; + fun Sleeting : Class ; + fun Sleeting_Class : SubClass Sleeting Precipitation ; --- HigherHighTide is the subclass of --- HighTide processes that occur in marine waters with a --- MixedTideProcess. -fun HigherHighTide : Class ; -fun HigherHighTide_Class : SubClass HigherHighTide HighTide ; + -- A SlopedArea is a land surface which lies at + -- an angle to the horizontal so that some points on it are higher than + -- others, a slope. + fun SlopedArea : Class ; + fun SlopedArea_Class : SubClass SlopedArea LandForm ; --- A Hill is a raised part of the earth's surface with --- sloping sides _ an old mountain which because of erosion has become shorter --- and more rounded. -fun Hill : Class ; -fun Hill_Class : SubClass Hill (both LandForm UplandArea) ; + -- Snowing is a precipitation process + -- in which water falls in a Solid state. + fun Snowing : Class ; + fun Snowing_Class : SubClass Snowing Precipitation ; + fun SocialInteractions : Class ; --- Humus is decaying organic matter found in Soil --- and derived from dead animal and plant material. -fun Humus : Class ; -fun Humus_Class : SubClass Humus Mixture ; + -- Soil is a substance composed of fine rock material + -- disintegrated by geological processes, mixed with humus, the organic remains of decomposed vegetation. + fun Soil : Class ; + fun Soil_Class : SubClass Soil Mixture ; -fun Hurricane : Class ; -fun Hurricane_Class : SubClass Hurricane (both TropicalCyclone WeatherProcess) ; + -- SoilDegradation is a class of + -- processes in which the productive capacity of soil is lowered by + -- over_fertilization, overuse of pesticides, erosion, or soil + -- compaction. + fun SoilDegradation : Class ; + fun SoilDegradation_Class : SubClass SoilDegradation SocialInteractions ; -fun HurricaneSeason : Class ; -fun HurricaneSeason_Class : SubClass HurricaneSeason WeatherSeason ; --- HydropowerWaterArea --- is the class of WaterAreas with waterflow strength adequate --- for the production of hydropower. -fun HydropowerWaterArea : Class ; -fun HydropowerWaterArea_Class : SubClass HydropowerWaterArea WaterArea ; + fun SoilDegradationIssue : Ind SoilQualityIssue ; --- An Iceberg is a large chunk of ice that has --- broken off from a glacier and fallen into the sea. The larger part of --- an Iceberg floats underwater. -fun Iceberg : Class ; -fun Iceberg_Class : SubClass Iceberg (both SelfConnectedObject Water) ; + -- SoilErosion is the subclass of + -- Erosion in which the matter removed by wind or water is topsoil. + fun SoilErosion : Class ; + fun SoilErosion_Class : SubClass SoilErosion Erosion ; + fun SoilErosionIssue : Ind SoilQualityIssue ; -fun Icing : Class ; -fun Icing_Class : SubClass Icing (both Freezing WeatherProcess) ; + fun SoilExhaustionIssue : Ind SoilQualityIssue ; -fun IllegalWildlifeTradeIssue : Ind EnvironmentalIssue ; + fun SoilPollutionIssue : Ind (both PollutionIssue SoilQualityIssue) ; -fun InadequatePotableWaterIssue : Ind EnvironmentalWaterIssue ; + fun SoilQualityIssue : Class ; + fun SoilQualityIssue_Class : SubClass SoilQualityIssue EnvironmentalIssue ; -fun InadequateSanitationIssue : Ind EnvironmentalIssue ; + fun SoilSalination : Class ; + fun SoilSalination_Class : SubClass SoilSalination Salination ; --- IndianOcean represents the Indian Ocean. -fun IndianOcean : Ind Ocean ; + fun SoilSalinityIssue : Ind SoilQualityIssue ; + -- SoilSolution is the liquid component of soils, + -- which is largely water containing a number of mineral substances in solution, + -- as well as comparatively large amounts of dissolved oxygen and carbon dioxide. + fun SoilSolution : Class ; + fun SoilSolution_Class : SubClass SoilSolution Solution ; -fun IndigenousPeoplesPreservationIssue : Ind EnvironmentalIssue ; + -- Sol is the nearest Star to PlanetEarth and + -- the focus of its SolarSystem. + fun Sol : Ind Star ; --- IndustrialPollution is --- the subclass of Pollution characterized by pollutants that --- originate in industrial processes. -fun IndustrialPollution : Class ; -fun IndustrialPollution_Class : SubClass IndustrialPollution Pollution ; + -- SolarSystem is the class of systems that + -- consist of a star or stars and any encircling astronomical bodies. + fun SolarSystem : Class ; + fun SolarSystem_Class : SubClass SolarSystem Collection ; -fun IndustrialPollutionIssue : Ind PollutionIssue ; + fun SolidWasteDisposal : Class ; + fun SolidWasteDisposal_Class : SubClass SolidWasteDisposal Sanitation ; --- An instance of InlandWaterSystem --- comprises two or more lakes or rivers, canals, or other waterways that --- are interconnected. -fun InlandWaterSystem : Class ; -fun InlandWaterSystem_Class : SubClass InlandWaterSystem (both Collection WaterArea) ; + fun SolidWasteDisposalIssue : Ind PollutionIssue ; + -- A Sound is a long, relatively narrow waterway + -- lying along the shore of a land mass and protected from open water by + -- another land area, an island or group of islands. Some sounds open at + -- both ends into the same body of water (e.g., Long Island Sound), while + -- others connect two different bodies of water (e.g., Melville Sound). + -- A Sound may occur in salt or fresh water bodies. Generally wider than + -- a Strait. + fun Sound : Class ; + fun Sound_Class : SubClass Sound BodyOfWater ; --- Inlet is the class of bays or other recesses --- into the shore of a lake, sea, or river, includes InletPassages, which --- are passages leading from open water through some barrier to a bay or --- lagoon. -fun Inlet : Class ; -fun Inlet_Class : SubClass Inlet BodyOfWater ; + fun SouthAmerica : Ind Continent ; --- InletPassage is the class of water --- passages connecting an area of open water to a bay or lagoon, through --- some land barrier(s) close on either side. -fun InletPassage : Class ; -fun InletPassage_Class : SubClass InletPassage Inlet ; + -- SouthAtlanticOcean denotes the southern geographicSubregion + -- of the AtlanticOcean. + fun SouthAtlanticOcean : Ind (both SaltWaterArea BodyOfWater) ; --- (InnerBoundaryFn ?REGION) denotes the --- inner boundary of the Region ?REGION, where ?REGION has an inner and --- outer orientation with respect to another object. -fun InnerBoundaryFn : El Region -> Ind Region ; + -- SouthPacificOcean denotes the southern geographicSubregion + -- of the PacificOcean. + fun SouthPacificOcean : Ind (both SaltWaterArea BodyOfWater) ; + fun SouthSandwichTrench : Ind Hole ; --- InternationalAgreement is the --- subclass of Agreements which are made by and between Nations. -fun InternationalAgreement : Class ; -fun InternationalAgreement_Class : SubClass InternationalAgreement Agreement ; + -- Southeast represents the compass direction of Southeast. + fun Southeast : Ind DirectionalAttribute ; --- InternationalBorder is the --- subclass of GeographicAreas where the areas of two Nations meet. -fun InternationalBorder : Class ; -fun InternationalBorder_Class : SubClass InternationalBorder GeographicArea ; + fun SoutheasternAsia : Ind GeographicArea ; -fun InvasiveSpeciesIssue : Ind EnvironmentalIssue ; + fun SoutheasternEurope : Ind GeographicArea ; --- IrrigatedLand is the subclass of --- LandArea representing land whose water supply is artificially --- supplied or supplemented. -fun IrrigatedLand : Class ; -fun IrrigatedLand_Class : SubClass IrrigatedLand LandArea ; + fun SouthernAfrica : Ind GeographicArea ; --- Irrigating is the process of transporting --- and applying water to crops by artificial means. -fun Irrigating : Class ; -fun Irrigating_Class : SubClass Irrigating Motion ; - --- IrrigationChannel is the class of --- artificially created channels used for transporting water to agricultural --- fields for Irrigating crops. -fun IrrigationChannel : Class ; -fun IrrigationChannel_Class : SubClass IrrigationChannel Artifact ; + fun SouthernAsia : Ind GeographicArea ; --- An Isthmus is a narrow strip of land that --- connects two larger land masses and is bordered on two sides by water. -fun Isthmus : Class ; -fun Isthmus_Class : SubClass Isthmus LandArea ; + fun SouthernEurope : Ind GeographicArea ; --- JetStream is the class of high_velocity --- AirStreams that blow constantly in the upper atmosphere with constant --- speed and direction, though their location shifts somewhat. There are --- four JetStreams in EarthsAtmosphere. -fun JetStream : Class ; -fun JetStream_Class : SubClass JetStream AirStream ; + -- The half of the Earth that lies below the + -- equator. + fun SouthernHemisphere : Ind Hemisphere ; --- Jungle is a subclass of fertile LandAreas --- that are overgrown with tropical vegetation. -fun Jungle : Class ; -fun Jungle_Class : SubClass Jungle (both Biome LandArea) ; + -- SouthernOcean represents the Southern Ocean. + fun SouthernOcean : Ind (both Ocean PolarClimateZone) ; + fun SouthernSouthAmerica : Ind GeographicArea ; -fun Khamsin : Class ; -fun Khamsin_Class : SubClass Khamsin Windstorm ; --- KnotUnitOfSpeed is a unit for measuring --- speed. One KnotUnitOfSpeed is equal to one NauticalMile per one --- HourDuration. -fun KnotUnitOfSpeed : Ind CompositeUnitOfMeasure ; + -- Southwest represents the compass direction of Southwest. + fun Southwest : Ind DirectionalAttribute ; + fun SouthwesternAsia : Ind GeographicArea ; -fun KokoNor : Ind SaltLake ; - --- Lake is the subclass of BodyOfWater whose --- instances are naturally occurring static bodies of water surrounded --- by land. -fun Lake : Class ; -fun Lake_Class : SubClass Lake StaticWaterArea ; - -fun LakeBakhtegan : Ind SaltLake ; - -fun LakeEyre : Ind SaltLake ; - -fun LakeMareotis : Ind SaltLake ; - --- A LakeRegion is a GeographicArea --- including land surrounding one or more Lakes. -fun LakeRegion : Class ; -fun LakeRegion_Class : SubClass LakeRegion GeographicArea ; - -fun LakeTorrens : Ind SaltLake ; - -fun LakeWalker : Ind SaltLake ; - -fun LandClearingIssue : Ind BiodiversityIssue ; - --- A LandForm is the class of geographically and/or geologically --- distinct areas that occur on Earth's surface, including mountains, hills, plains, valleys, --- deltas, and features of submerged land areas such as the ocean floor. -fun LandForm : Class ; -fun LandForm_Class : SubClass LandForm GeographicArea ; - -fun LandSubsidence : Class ; -fun LandSubsidence_Class : SubClass LandSubsidence GeologicalProcess ; --- LandlockedArea is the class of --- LandAreas that lack access to an Ocean or to a Waterway --- providing a link to the ocean. -fun LandlockedArea : Class ; -fun LandlockedArea_Class : SubClass LandlockedArea LandArea ; - --- LandlockedWater includes water --- areas that are surrounded by land, including salt lakes, fresh --- water lakes, ponds, reservoirs, and (more or less) wetlands. -fun LandlockedWater : Class ; -fun LandlockedWater_Class : SubClass LandlockedWater BodyOfWater ; - -fun LandminesIssue : Ind EnvironmentalIssue ; - -fun Landslide : Class ; -fun Landslide_Class : SubClass Landslide GeologicalProcess ; --- LandslideProcess is a subclass --- of Motion that represents events in which a loosened mass of mud, --- dirt, or rock slides down a slope, by the force of gravity. -fun LandslideProcess : Class ; -fun LandslideProcess_Class : SubClass LandslideProcess Impelling ; - --- Latitude is the class of Regions, --- associated with areas on the Earth's surface, which are parallels --- measured in PlaneAngleDegrees from the Equator. -fun Latitude : Class ; -fun Latitude_Class : SubClass Latitude Region ; - --- LatitudeFn is a VariableArityRelation --- used to denote a parallel of latitude. Examples: --- (LatitudeFn North (MeasureFn 38 AngularDegree)), (LatitudeFn --- South (MeasureFn 23 AngularDegree) (MeasureFn 30 ArcMinute)), --- (LatitudeFn South (MeasureFn 60 AngularDegree) (MeasureFn 0 ArcMinute) --- (MeasureFn 0 ArcSecond)), (LatitudeFn North --- (MeasureFn 42 AngularDegree) (MeasureFn 7.89 ArcMinute)). -fun LatitudeFn : El DirectionalAttribute -> El AngleMeasure -> El AngleMeasure -> El AngleMeasure -> Ind Region ; - - -fun LawOfTheSeaConvention : Ind Agreement ; - --- Lichen is the class of complex thallyphytic --- plants made up of Alga and Fungus growing symbiotically. -fun Lichen : Class ; -fun Lichen_Class : SubClass Lichen NonFloweringPlant ; - -fun LimitedFreshWaterIssue : Ind EnvironmentalWaterIssue ; - --- LittoralCurrent is the subclass of --- WaterCurrents that occur near a ShoreArea. Examples include --- TidalEbb, TidalFlow, and RipCurrents. -fun LittoralCurrent : Class ; -fun LittoralCurrent_Class : SubClass LittoralCurrent WaterCurrent ; - --- A LittoralZone is an area along the shore --- of a large body of water, especially an Ocean or Sea, including the area --- extending from the high tide mark out to a depth of 200 meters. The littoral --- zone is of interest for its land features, e.g., slope gradient and soil --- composition, including features of its SubmergedLandArea. -fun LittoralZone : Class ; -fun LittoralZone_Class : SubClass LittoralZone GeographicArea ; - --- Type of soil intermediate in texture between clay and sand, --- consisting of a mixture of clay, sand, gravel, silt, and organic matter. -fun Loam : Class ; -fun Loam_Class : SubClass Loam Soil ; - -fun Locust : Class ; -fun Locust_Class : SubClass Locust Animal ; --- Longitude is the class of Regions, --- associated with areas on the Earth's surface, which are meridians --- measured in PlaneAngleDegrees from the PrimeMeridian through --- GreenwichEnglandUK. -fun Longitude : Class ; -fun Longitude_Class : SubClass Longitude Region ; - --- (LongitudeFn ?DIRECTION @ROW) --- denotes a meridian of longitude. Note that LongitudeFn is --- a VariableArityRelation. Examples: --- (LongitudeFn East (MeasureFn 180 AngularDegree)), (LongitudeFn --- West (MeasureFn 122 AngularDegree) (MeasureFn 24 ArcMinute)), --- (LongitudeFn East (MeasureFn 121 AngularDegree) --- (MeasureFn 0 ArcMinute) (MeasureFn 15 ArcSecond)), --- (LongitudeFn West (MeasureFn 80 AngularDegree) --- (MeasureFn 6.78 ArcMinute)). -fun LongitudeFn : El DirectionalAttribute -> El AngleMeasure -> El AngleMeasure -> El AngleMeasure -> Ind GeographicArea ; - - -fun LossOfHabitatIssue : Ind EnvironmentalIssue ; - -fun LowBiodiversity : Ind BiodiversityAttribute ; - --- LowPressureWeatherSystem is --- the class of weather systems characterized by low or unstable --- barometricPressures. Low pressure systems typically introduce --- unsettled weather, frequently including storms. -fun LowPressureWeatherSystem : Class ; -fun LowPressureWeatherSystem_Class : SubClass LowPressureWeatherSystem WeatherSystem ; - --- LowTerrain is terrain in which the slope --- is less than 3%. -fun LowTerrain : Ind TerrainAttribute ; - - --- LowTide is the class of TidalProcesses that --- occur twice a day in marine waters, in which the water level falls below --- the mean sea level. -fun LowTide : Class ; -fun LowTide_Class : SubClass LowTide TidalProcess ; - --- LowerLowTide is the subclass of LowTide --- processes that occur in marine waters with a MixedTideProcess. -fun LowerLowTide : Class ; -fun LowerLowTide_Class : SubClass LowerLowTide LowTide ; - --- A LowlandArea is a land area lower than the surrounding region, --- and usually level land. -fun LowlandArea : Class ; -fun LowlandArea_Class : SubClass LowlandArea LandForm ; - -fun MarineDumpingConvention : Ind Agreement ; - -fun MarineLifeConservationConvention : Ind Agreement ; - --- A MaritimeClaimArea is a GeographicArea --- delimited by a geopolitical state's claim, under the LawOfTheSea, of rights --- to certain resources, activities, or jurisdiction in the claimed area. --- MaritimeClaimAreas can pertain to WaterAreas, SubmergedLandAreas, and Airspace. -fun MaritimeClaimArea : Class ; -fun MaritimeClaimArea_Class : SubClass MaritimeClaimArea GeographicArea ; - --- (MaritimeClaimsTerritorialSeaFn ?REGION) denotes a --- peripheral zones of maritime control extending outward from the Region --- ?REGION. -fun MaritimeClaimsTerritorialSeaFn : El Region -> Ind PerimeterArea ; - - --- MaritimeContiguousZone --- is the subclass of MaritimeClaimArea that includes areas over --- which a geopolitical state may exercise some control of activities --- beyond the 12_mile zone of its TerritorialSea. In general, --- the authorized control is for preventing or punishing activities --- that would violate laws applying within the 12_mile zone (that is, --- authorization to chase and intercept). According to the LawOfTheSea, --- a MaritimeContiguousZone may extend up to 24 nautical miles from the coast. -fun MaritimeContiguousZone : Class ; -fun MaritimeContiguousZone_Class : SubClass MaritimeContiguousZone (both MaritimeClaimArea SaltWaterArea) ; - - --- (MaritimeContiguousZoneFn ?POLITY) denotes the MaritimeContiguousZone --- that is claimed by the GeopoliticalArea ?POLITY. -fun MaritimeContiguousZoneFn : El GeopoliticalArea -> Ind MaritimeContiguousZone ; - - --- MaritimeExclusiveEconomicZone is the subclass of MaritimeClaimArea --- that represents the offshore area that coastal nations can claim for --- fishing and other uses of the ocean water and seabed found there. -fun MaritimeExclusiveEconomicZone : Class ; -fun MaritimeExclusiveEconomicZone_Class : SubClass MaritimeExclusiveEconomicZone (both MaritimeClaimArea SaltWaterArea) ; - - --- (MaritimeExclusiveEconomicZoneFn ?POLITY) denotes the --- MaritimeExclusiveEconomicZone that is claimed by the --- GeopoliticalArea ?POLITY. -fun MaritimeExclusiveEconomicZoneFn : El GeopoliticalArea -> Ind MaritimeExclusiveEconomicZone ; - - -fun MaritimeHazard : Class ; -fun MaritimeHazard_Class : SubClass MaritimeHazard LandForm ; --- MaritimeShelfArea --- is a subclass of MaritimeClaimArea that covers SubmergedLandAreas --- claimed by an adjacent geopolitical area. The LawOfTheSea defines --- the continental shelf as extending up to 200 miles (NM) offshore and --- including the resources found therein. The defined claim area does not --- correspond exactly to a geological ContinentalShelf, but if there is one, --- the two areas will overlap spatially. -fun MaritimeShelfArea : Class ; -fun MaritimeShelfArea_Class : SubClass MaritimeShelfArea (both MaritimeClaimArea SubmergedLandArea) ; - - --- (MaritimeShelfAreaFn ?POLITY) denotes the MaritimeShelfArea --- that is claimed by the GeopoliticalArea ?POLITY. -fun MaritimeShelfAreaFn : El GeopoliticalArea -> Ind MaritimeShelfArea ; - - --- MediterraneanClimateZone --- is a subclass of TemperateClimateZone that is characterized by --- mild, cool, wet winters and warm dry summers. Mediterranean shores --- are the archetype, but the Mediterranean climate is also found elsewhere. -fun MediterraneanClimateZone : Class ; -fun MediterraneanClimateZone_Class : SubClass MediterraneanClimateZone TemperateClimateZone ; - -fun MediterraneanSea : Ind Sea ; - -fun MediumBiodiversity : Ind BiodiversityAttribute ; - --- A Mesa is a land formation having a relatively flat --- top and steep rock walls. -fun Mesa : Class ; -fun Mesa_Class : SubClass Mesa (both LandForm UplandArea) ; - - --- MetallurgicalPlant is the --- subclass of Organization that includes metal refining and --- manufacturing plants. Such plants typically release extremely --- toxic waste which can pollute air and groundwater if not --- properly treated. -fun MetallurgicalPlant : Class ; -fun MetallurgicalPlant_Class : SubClass MetallurgicalPlant Organization ; - -fun MiddleAmerica : Ind GeographicArea ; - --- MiddleEastRegion is a --- GeopoliticalArea that comprises countries of Southwestern Asia --- and (in some definitions) Northwestern Africa. Here this term is --- defined as in the CIA World Fact Book, in which the Middle East --- includes: Bahrain, Cyprus, the Gaza Strip, Iran, Iraq, Israel, --- Jordan, Kuwait, Lebanon, Oman, Qatar, Saudi Arabia, Syria, the United --- Arab Emirates, the West Bank, and Yemen. -fun MiddleEastRegion : Ind (both GeographicArea GeopoliticalArea) ; - + fun SouthwesternEurope : Ind GeographicArea ; --- MiddleLatitudeDesertClimateZone is the subclass of --- DesertClimateZone characterized by a cool dry climate --- typical of middle latitude deserts. This is subtype 'BWk' --- in the Keoppen climate system. -fun MiddleLatitudeDesertClimateZone : Class ; -fun MiddleLatitudeDesertClimateZone_Class : SubClass MiddleLatitudeDesertClimateZone DesertClimateZone ; + -- SparseVegetation describes the + -- pattern of vegetation in an area where there is very little vegetation. + fun SparseVegetation : Ind Attribute ; --- MidlatitudeContinentalClimateZone is a subclass of --- TemperateClimateZone that is characterized by cool winters --- and hot summers. -fun MidlatitudeContinentalClimateZone : Class ; -fun MidlatitudeContinentalClimateZone_Class : SubClass MidlatitudeContinentalClimateZone ClimateZone ; + fun Squall : Class ; + fun Squall_Class : SubClass Squall WeatherProcess ; -fun MiningPollutionIssue : Ind EnvironmentalIssue ; + -- SquareKilometer represents a + -- UnitOfMeasure equal to one square kilometer. + fun SquareKilometer : Ind UnitOfArea ; -fun Mistral : Class ; -fun Mistral_Class : SubClass Mistral WindProcess ; --- MixedTideProcess is the subclass of --- TidalProcesses consisting of daily cycles in which the two low and --- two high tides are of unequal height. In areas with this kind of --- pattern, the chart (based on average low water) is determined by the --- Mean Lower Low Water. -fun MixedTideProcess : Class ; -fun MixedTideProcess_Class : SubClass MixedTideProcess TidalProcess ; + -- SquareMeter represents a UnitOfMeasure + -- equal to one square Meter. + fun SquareMeter : Ind UnitOfArea ; -fun Monsoon : Class ; -fun Monsoon_Class : SubClass Monsoon WeatherSeason ; --- MonsoonClimateZone is the class --- of TropicalClimateZones in which there is a short dry season between --- rains heavy enough to keep the ground wet all through the year. This --- is Koeppen climate system subtype 'Aw'. -fun MonsoonClimateZone : Class ; -fun MonsoonClimateZone_Class : SubClass MonsoonClimateZone TropicalClimateZone ; + -- (SquareUnitFn ?UNIT) denotes the + -- UnitOfMeasure that is the square of the UnitOfMeasure ?UNIT. + -- For example, (SquareUnitFn (KiloFn Meter)) denotes the unit + -- of a square kilometer. + fun SquareUnitFn : El UnitOfMeasure -> Ind UnitOfMeasure ; --- Moon is the class of NaturalSatellites that --- orbit planets or large asteroids. -fun Moon : Class ; -fun Moon_Class : SubClass Moon NaturalSatellite ; + -- Star is the class of hot gaseous astronomical bodies. + fun Star : Class ; + fun Star_Class : SubClass Star AstronomicalBody ; --- A Mountain is a high, rocky LandForm, usually --- with steep sides and a pointed or rounded top, and higher than a Hill. -fun Mountain : Class ; -fun Mountain_Class : SubClass Mountain (both LandForm UplandArea) ; + -- StationaryFront is the class of + -- boundary areas between two air masses that are stationary, with neither + -- mass presently replacing the other. + fun StationaryFront : Class ; + fun StationaryFront_Class : SubClass StationaryFront WeatherFront ; + + -- A TerrainAttribute of a region in + -- which there is a wide variation in elevation and slopeGradients + -- of more than 10%. + fun SteepTerrain : Ind TerrainAttribute ; + + -- Steppe is a subclass of Plain, representing + -- vast, level, treeless areas of land in Asia or SE Europe. + fun Steppe : Class ; + fun Steppe_Class : SubClass Steppe Plain ; + + -- SteppeClimateZone + -- is the class of AridClimateZones where the dominant + -- vegetation type is grasses, with no trees. Koeppen + -- system 'BS'. + fun SteppeClimateZone : Class ; + fun SteppeClimateZone_Class : SubClass SteppeClimateZone AridClimateZone ; + + -- A Stone is any small fragment of rock or mineral matter. + fun Stone : Class ; + fun Stone_Class : SubClass Stone Rock ; + + fun StormSystem : Class ; + fun StormSystem_Class : SubClass StormSystem WeatherSystem ; + + -- Strait is the subclass of BodyOfWater that + -- consists of narrow water areas connecting two larger bodies of water. + -- Straits are naturally occurring bodies of water. + fun Strait : Class ; + fun Strait_Class : SubClass Strait BodyOfWater ; + + fun StraitOfHormuz : Ind (both Strait SaltWaterArea) ; + + -- A StreamWaterConfluence is the + -- place where a stream or other tributary joins a river. + fun StreamWaterConfluence : Class ; + fun StreamWaterConfluence_Class : SubClass StreamWaterConfluence WaterArea ; + + fun StrikeSlipFault : Class ; + fun StrikeSlipFault_Class : SubClass StrikeSlipFault GeologicalFault ; + + fun StrongWind : Class ; + fun StrongWind_Class : SubClass StrongWind WindProcess ; + + -- SubmergedLandArea is the class of land + -- regions that are located beneath bodies of water. + fun SubmergedLandArea : Class ; + fun SubmergedLandArea_Class : SubClass SubmergedLandArea GeographicArea ; + + -- SubtropicalDesertClimateZone is a subclass of DesertClimateZone + -- that is characterized by an average temperature greater than 18 + -- degrees Celsius, as well as very low rainfall. This is Koeppen + -- system 'BWh'. + fun SubtropicalDesertClimateZone : Class ; + fun SubtropicalDesertClimateZone_Class : SubClass SubtropicalDesertClimateZone DesertClimateZone ; + + -- SurfaceGroundArea is a subclass of + -- GeographicArea that is restricted to regions whose surface is solid + -- ground. A SurfaceGroundArea may be a discontinuous region overlapping + -- a larger, continuous GeographicArea but excluding any WaterAreas + -- enclosed therein. Rivers, lakes, reservoirs and other surface water areas + -- are not part of any SurfaceGroundArea. + fun SurfaceGroundArea : Class ; + fun SurfaceGroundArea_Class : SubClass SurfaceGroundArea GeographicArea ; + + fun Swarming : Class ; + fun Swarming_Class : SubClass Swarming Motion ; + + -- Tailwind is the relative attribute of a + -- Wind to an object when the force of the wind is applied to the back + -- of the object (BackFn). A tailwind can positively affect the speed + -- capability of a vehicle. + fun Tailwind : Ind Attribute ; + + -- Talc is a very soft Mineral that is + -- a basic silicate of magnesium. + fun Talc : Class ; + fun Talc_Class : SubClass Talc Mineral ; + + -- TemperateClimateZone is the + -- subclass of ClimateZone whose warmest month has an average + -- temperature greater than 10 degrees Celsius and whose coolest month + -- has an average temperature between 18 degrees and _3 degrees Celsius. + -- This is Class C in the Koeppen climate system. + fun TemperateClimateZone : Class ; + fun TemperateClimateZone_Class : SubClass TemperateClimateZone ClimateZone ; + + fun TemperateHardwoodForest : Class ; + fun TemperateHardwoodForest_Class : SubClass TemperateHardwoodForest (both Biome Forest) ; + + fun TemperateRainForest : Class ; + fun TemperateRainForest_Class : SubClass TemperateRainForest (both RainForest TemperateHardwoodForest) ; + + -- TemperateSummerDryClimateZone is the subclass of TemperateClimateZone + -- that is characterized by dry summers, and in which the wettest winter month + -- has at least three times the moisture of the driest summer month. The + -- driest month has less than an average of 30 mm of precipitation. Koeppen + -- climate system type 'Cs'. + fun TemperateSummerDryClimateZone : Class ; + fun TemperateSummerDryClimateZone_Class : SubClass TemperateSummerDryClimateZone TemperateClimateZone ; + + -- TemperateWinterDryClimateZone is a subclass of TemperateClimateZone + -- characterized by having at least 10 times as much precipitation in the + -- wettest summer month as in the driest winter month. Koeppen climate + -- system type 'Cw'. + fun TemperateWinterDryClimateZone : Class ; + fun TemperateWinterDryClimateZone_Class : SubClass TemperateWinterDryClimateZone TemperateClimateZone ; + + -- TerrainAttribute is a class of + -- Attributes that describe terrain. + fun TerrainAttribute : Class ; + fun TerrainAttribute_Class : SubClass TerrainAttribute InternalAttribute ; + + -- TerritorialSea is the class + -- of contiguous waters over which a GeopoliticalArea claims + -- jurisdiction in accordance with the United Nations Convention + -- on the LawOfTheSea (LOS), Part II. A territorial sea may be + -- up to 12 miles (NauticalMiles) in breadth. A subclass of + -- MaritimeClaimArea. + fun TerritorialSea : Class ; + fun TerritorialSea_Class : SubClass TerritorialSea (both MaritimeClaimArea SaltWaterArea) ; + + -- (TerritorialSeaFn ?POLITY) denotes + -- the TerritorialSea that is claimed by the GeopoliticalArea ?POLITY. + fun TerritorialSeaFn : El GeopoliticalArea -> Ind TerritorialSea ; + + fun ThrustFault : Class ; + fun ThrustFault_Class : SubClass ThrustFault DipSlipFault ; + + fun Thunderstorm : Class ; + fun Thunderstorm_Class : SubClass Thunderstorm WeatherProcess ; + + -- A TidalBore is an unusally high, fast tidal + -- inflow from the sea, resulting from a high volume of water rushing from + -- a wide_mouthed bay or Estuary into narrower landward areas. + fun TidalBore : Class ; + fun TidalBore_Class : SubClass TidalBore LittoralCurrent ; + + -- TidalEbb is the subclass of WaterCurrents that are temporary and variable, + -- but regular, currents of ocean water flowing seaward up to and during + -- the time of low tide. Alternating with TidalFlow. + fun TidalEbb : Class ; + fun TidalEbb_Class : SubClass TidalEbb LittoralCurrent ; + + -- TidalFlow is the subclass of WaterCurrents + -- that are temporary and variable, but regular, currents of ocean water + -- flowing landward up to and during the time of high tide. Alternating + -- with TidalEbb. + fun TidalFlow : Class ; + fun TidalFlow_Class : SubClass TidalFlow LittoralCurrent ; + + -- TidalProcess is the class of daily + -- recurring events in which the water level in a BodyOfWater rises + -- and falls with the changing position between Earth and the Moon. + fun TidalProcess : Class ; + fun TidalProcess_Class : SubClass TidalProcess InternalChange ; + + -- A Tide is a vertical movement of the water level + -- in a BodyOfWater due to the gravitational attraction between Earth and + -- the moon. Tides are diurnally recurrent events. In most regions with + -- tides, every day there are two high tides and two low tides. MixedTide + -- represents a process in which the tides at either extreme are unequal. + fun Tide : Class ; + fun Tide_Class : SubClass Tide (both FlowRegion SaltWaterArea) ; + + fun Tornado : Class ; + fun Tornado_Class : SubClass Tornado WeatherProcess ; + + fun ToxicChemicalPollutionIssue : Ind PollutionIssue ; + + fun ToxicWasteDisposalIssue : Ind PollutionIssue ; + + -- TreatyDocument is the subclass of + -- Texts that represent written agreements between Nations. + fun TreatyDocument : Class ; + fun TreatyDocument_Class : SubClass TreatyDocument Text ; + + -- TropicalClimateZone is a + -- subclass of ClimateZone in which the average temperature of the + -- coldest month is greater than 18 degrees Celsius. This is Class + -- 'A' in the Koeppen climate classification system. + fun TropicalClimateZone : Class ; + fun TropicalClimateZone_Class : SubClass TropicalClimateZone ClimateZone ; + + -- TropicalCyclone is the class of + -- CyclonicStorms that occur in the Tropics and typically have + -- rotational winds of hurricane force (74 mph or higher). + fun TropicalCyclone : Class ; + fun TropicalCyclone_Class : SubClass TropicalCyclone CyclonicStorm ; + + fun TropicalRainForest : Class ; + fun TropicalRainForest_Class : SubClass TropicalRainForest RainForest ; + + fun TropicalTimber83Agreement : Ind Agreement ; + + fun TropicalTimber94Agreement : Ind Agreement ; + + -- The Tropics is the region of + -- PlanetEarth that lies between approximately 23 and one half degrees + -- North latitude and 23 and one half degrees South latitude, + -- encircling the globe. 'The Tropics'. See also TropicArea. + fun Tropics : Ind GeographicArea ; + + -- Tsunami is the class of highly destructive + -- ocean waves caused by offshore seismic processes. + fun Tsunami : Class ; + fun Tsunami_Class : SubClass Tsunami WeatherProcess ; + + -- Tundra is a subclass of flat, treeless Plains + -- areas lying within the ArcticRegion. Subsoil in Tundra is permanently + -- frozen. + fun Tundra : Class ; + fun Tundra_Class : SubClass Tundra (both ArcticRegion (both Biome Plain)) ; + + -- TundraClimateZone is a subclass of + -- PolarClimateZone characterized by having an average temperature + -- above zero degrees Celsius (but below 10 degrees) in the warmest month. + -- Koeppen subtype 'ET'. + fun TundraClimateZone : Class ; + fun TundraClimateZone_Class : SubClass TundraClimateZone PolarClimateZone ; + + fun Typhoon : Class ; + fun Typhoon_Class : SubClass Typhoon TropicalCyclone ; + + fun UVLevelsIssue : Ind EnvironmentalIssue ; + + -- The class of regions located Below the surface of the earth. + fun UndergroundArea : Class ; + fun UndergroundArea_Class : SubClass UndergroundArea GeographicArea ; + + fun UnexplodedOrdinanceIssue : Ind EnvironmentalIssue ; + + -- A UniformPerimeterArea is one + -- that has a defined uniform width. + fun UniformPerimeterArea : Class ; + fun UniformPerimeterArea_Class : SubClass UniformPerimeterArea PerimeterArea ; + + -- Uphill is a PositionalAttribute that + -- describes the relation between two things, one of which is located + -- up a slope from the other. + fun Uphill : Ind PositionalAttribute ; + + -- An UplandArea is a LandArea elevated above the surrounding + -- terrain. + fun UplandArea : Class ; + fun UplandArea_Class : SubClass UplandArea LandForm ; + + fun Upstream : Ind PositionalAttribute ; + + -- Upwind is a PositionalAttribute that indicates relative position + -- upwind (windward) with respect to the direction that the Wind is + -- blowing. + fun Upwind : Ind PositionalAttribute ; + + fun UrbanizationIssue : Ind EnvironmentalIssue ; + + -- A Valley is an area of low_lying land flanked by + -- higher ground. Valleys typically contain a stream or river flowing along the valley floor. + fun Valley : Class ; + fun Valley_Class : SubClass Valley (both LandForm LowlandArea) ; + + fun VehicleEmissionsIssue : Ind PollutionIssue ; + + -- VehicularPollution is the + -- subclass of Pollution in which the pollutants are vehicle emissions. + fun VehicularPollution : Class ; + fun VehicularPollution_Class : SubClass VehicularPollution Pollution ; + + -- Veldt is a subclass of Grasslands which have + -- scattered shrubs or trees. + fun Veldt : Class ; + fun Veldt_Class : SubClass Veldt (both Grassland Plain) ; + + -- A VolcanicCone is a hill of lava or + -- pyroclastics surrounding a volcanic vent. Not as high as a + -- VolcanicMountain. + fun VolcanicCone : Class ; + fun VolcanicCone_Class : SubClass VolcanicCone (both Hill Volcano) ; + + -- VolcanicEruption is the subclass of + -- GeologicalProcesses in which Volcanoes erupt. + fun VolcanicEruption : Class ; + fun VolcanicEruption_Class : SubClass VolcanicEruption GeologicalProcess ; + + fun VolcanicGasRelease : Class ; + fun VolcanicGasRelease_Class : SubClass VolcanicGasRelease VolcanicEruption ; + + -- A VolcanicMountain is a cone_shaped + -- mountain formed out of rock or ash thrown up from inside the earth, + -- frequently with an opening or depression at the top. + fun VolcanicMountain : Class ; + fun VolcanicMountain_Class : SubClass VolcanicMountain (both Mountain Volcano) ; + + fun VolcanicallyActive : Ind VolcanoStatus ; + + fun VolcanicallyDormant : Ind VolcanoStatus ; + + fun VolcanicallyExtinct : Ind VolcanoStatus ; + + -- A Volcano in the broadest sense, i.e., a region + -- containing a vent through which magmous and/or pyroclastic materials are + -- passed from the interior of the Earth to its surface (atmospheric or + -- underwater). + fun Volcano : Class ; + fun Volcano_Class : SubClass Volcano LandForm ; + + fun VolcanoStatus : Class ; + fun VolcanoStatus_Class : SubClass VolcanoStatus InternalAttribute ; + + -- WarmFront is the class of transitional + -- weather processes occurring between a warm air mass that is advancing + -- upon a cool air mass. + fun WarmFront : Class ; + fun WarmFront_Class : SubClass WarmFront WeatherFront ; + + fun WaterBorneDiseaseIssue : Ind EnvironmentalIssue ; + + -- WaterCatchment is the subclass of + -- Artifacts used to capture rainwater or runoff as a source + -- of Freshwater. + fun WaterCatchment : Class ; + fun WaterCatchment_Class : SubClass WaterCatchment Artifact ; + -- WaterCurrent is a subclass of FlowRegions + -- consisting of moving water, especially those currents found within a + -- well_identified area and having an established pattern of movement, such + -- as an OceanCurrent, a RipTide, or a River. WaterCurrent is + -- disjoint with StaticWaterArea. As a consequence, Lakes for example + -- cannot be FlowRegions, however, currents may be present in a lake. + fun WaterCurrent : Class ; + fun WaterCurrent_Class : SubClass WaterCurrent (both FlowRegion WaterArea) ; + + fun WaterInfrastructureIssue : Ind EnvironmentalIssue ; + + fun WaterManagementIssue : Ind EnvironmentalIssue ; + + -- WaterOnlyArea is a subclass of + -- GeographicArea that is restricted to regions whose surface is water. + -- A WaterOnlyArea may be a discontinuous region overlapping a larger, + -- continuous GeographicArea but excluding any LandAreas enclosed therein. + -- Dry land areas, including islands, are not part of any WaterOnlyArea. + fun WaterOnlyArea : Class ; + fun WaterOnlyArea_Class : SubClass WaterOnlyArea GeographicArea ; + + fun WaterOverutilization : Class ; + fun WaterOverutilization_Class : SubClass WaterOverutilization SocialInteraction ; + + -- WaterPollution is the subclass + -- of Pollution processes in which Water is the polluted substance. + fun WaterPollution : Class ; + fun WaterPollution_Class : SubClass WaterPollution Pollution ; + + fun WaterPollutionIssue : Ind EnvironmentalWaterIssue ; + + -- Waterfall is the subclass of StreamWaterAreas where running water + -- falls steeply downhill. + fun Waterfall : Class ; + fun Waterfall_Class : SubClass Waterfall StreamWaterArea ; + + -- A WatershedDivide is a summit area, or + -- narrow tract of higher ground that constitutes the watershed boundary + -- between two adjacent drainage basins, it divides the surface waters that + -- flow naturally in one direction from those that flow in the opposite + -- direction. + fun WatershedDivide : Class ; + fun WatershedDivide_Class : SubClass WatershedDivide (both LandArea UplandArea) ; + + fun Waterspout : Class ; + fun Waterspout_Class : SubClass Waterspout WeatherProcess ; + + -- WeatherFront is the class of weather + -- processes that are involve relationships between two air masses, such + -- as a high pressure weather system or a low pressure system. + fun WeatherFront : Class ; + fun WeatherFront_Class : SubClass WeatherFront WeatherProcess ; + + -- WeatherSeason is the class of seasonal + -- processes that are characterized by various weather patterns. + -- WeatherSeasons may recur on a regular annual basis, on a different + -- pattern, or irregularly. + fun WeatherSeason : Class ; + fun WeatherSeason_Class : SubClass WeatherSeason WeatherProcess ; + + -- WeatherSystem is the class of + -- large_scale atmospheric processes that influence weather in a region + -- for 2_5 days. + fun WeatherSystem : Class ; + fun WeatherSystem_Class : SubClass WeatherSystem WeatherProcess ; + + fun WesternAfrica : Ind GeographicArea ; + + fun WesternEurope : Ind GeographicArea ; + + -- The half of the Earth that includes North + -- and South America. + fun WesternHemisphere : Ind Hemisphere ; + + fun WesternSouthAmerica : Ind GeographicArea ; + + -- WetTropicalClimateZone is + -- the subclass of TropicalClimateZone that is characterized by having + -- no dry months. At least 60 mm of rainfall occur in the driest month. + -- This is subtype 'Af' in the Koeppen climate system. + fun WetTropicalClimateZone : Class ; + fun WetTropicalClimateZone_Class : SubClass WetTropicalClimateZone TropicalClimateZone ; + + fun WetlandDegradationIssue : Ind EnvironmentalIssue ; + + fun WetlandsConvention : Ind Agreement ; + + fun WhalingConvention : Ind Agreement ; + + fun WildlifePoachingIssue : Ind EnvironmentalIssue ; + + -- WindFlow is the class of variable AirStreams + -- that are in the EarthsAtmosphere. + fun WindFlow : Class ; + fun WindFlow_Class : SubClass WindFlow AirStream ; + + fun WindProcess : Class ; + fun WindProcess_Class : SubClass WindProcess WeatherProcess ; + + fun Windstorm : Class ; + fun Windstorm_Class : SubClass Windstorm WindProcess ; + + -- The WorldOcean is the collective mass of + -- sea water that covers 70% of the surface of PlanetEarth, surrounding + -- all of its dry land areas. Earth's individual Oceans are parts of + -- the WorldOcean. + fun WorldOcean : Ind (both SaltWaterArea BodyOfWater) ; + + fun Zud : Class ; + fun Zud_Class : SubClass Zud WeatherProcess ; + + -- (airTemperature ?AREA ?TEMP) means that the temperature of the + -- air at ?AREA is ?TEMP. Temperature may be expressed in units of + -- TemperatureMeasure, including CelsiusDegree and FahrenheitDegree, + -- among others. + fun airTemperature : El Object -> El TemperatureMeasure -> Formula ; + + -- (arableLandArea ?REGION ?AMOUNT) + -- means that the GeographicArea ?REGION has ?AMOUNT of land under + -- cultivation with crops that are replanted after each harvest. ?AMOUNT + -- may be expressed in physical units or with a percent or fraction. + -- Cf. permanentCropLandArea. + fun arableLandArea : El GeographicArea -> El ConstantQuantity -> Formula ; + + -- (averagePrecipitationForPeriod ?PLACE ?PERIOD ?AMOUNT) means + -- that at the GeographicArea ?PLACE, and during the TimeDuration + -- ?PERIOD, the average daily precipitation was ?AMOUNT. + fun averagePrecipitationForPeriod : El GeographicArea -> El TimeDuration -> El ConstantQuantity -> Formula ; + + -- (averageRainfallForPeriod ?AREA ?MO ?AMOUNT) + -- means that ?AREA receives ?AMOUNT of rain in month ?MO in an average + -- year. Note that ?AMOUNT is a linear measure indicating the depth of water that + -- would accumulate over ?AREA if all water were captured. + fun averageRainfallForPeriod : El GeographicArea -> El Month -> El LengthMeasure -> Formula ; + + -- (averageTemperatureForPeriod ?PLACE ?PERIOD ?AMOUNT) means that + -- at the GeographicArea ?PLACE, and during the TimeDuration + -- ?PERIOD, the average daily temperature was ?AMOUNT. Temperature + -- may be expressed in some UnitOfTemperature, including + -- CelsiusDegree and FahrenheitDegree, among others. + fun averageTemperatureForPeriod : El GeographicArea -> El TimeDuration -> El TemperatureMeasure -> Formula ; + + -- (bioindicatorForHabitat ?AREA ?SPECIES) means that the health + -- of the individuals in ?SPECIES indicates the condition of their + -- habitat in the GeographicArea ?AREA. + fun bioindicatorForHabitat: El GeographicArea -> Desc OrganicObject -> Formula ; + + -- (claimedTerritory ?AREA ?POLITY) + -- means that some right over the GeographicArea ?AREA is claimed by + -- the Agent or GeopoliticalArea ?POLITY. If two politically independent + -- states or agents claim the same area, that area is a 'disputed + -- territory'. + fun claimedTerritory : El GeographicArea -> El Agent -> Formula ; + + -- (climateTypeInArea ?TYPE ?REGION) + -- means that all or part of the GeographicArea ?REGION is of the + -- ClimateZone ?TYPE. + fun climateTypeInArea: El GeographicArea -> Desc ClimateZone -> Formula ; + + -- (cloudCoverFraction ?AREA ?AMOUNT) + -- means that in the Region ?AREA, the fraction ?AMOUNT of the sky is + -- covered with clouds. + fun cloudCoverFraction : El Region -> El NonnegativeRealNumber -> Formula ; + + -- (coldSeasonInArea ?AREA ?INTERVAL) + -- means that in the GeographicArea ?AREA, the cold season occurs + -- during the TimeInterval ?INTERVAL. + fun coldSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; + + -- (connectedDownstream ?OBJ1 ?OBJ2) + -- means that ?OBJ1 is connected, remotely or immediately, with ?OBJ2 along + -- a directed system such as a RiverSystem. + fun connectedDownstream : El Object -> El Object -> Formula ; + + -- (coolSeasonInArea ?AREA ?INTERVAL) + -- means that in the GeographicArea ?AREA, the cool season occurs + -- during the TimeInterval ?INTERVAL. For example, (coolSeasonInArea + -- Angola (RecurringTimeIntervalFn May October + fun coolSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; + + -- (courseWRTCompassNorth ?OBJ1 ?OBJ2 ?HEADING) means that the course + -- heading from ?OBJ1 to ?OBJ2 is ?HEADING in AngularDegrees, with + -- the reference point of 000 degrees North as measured by compass on + -- or at ?OBJ1. + fun courseWRTCompassNorth : El Physical -> El Physical -> El PlaneAngleMeasure -> Formula ; + + -- (courseWRTMagneticNorth ?OBJ1 ?OBJ2 ?HEADING) means that the course + -- heading from ?OBJ1 to ?OBJ2 is ?HEADING in AngularDegrees, with + -- the reference point of 000 degrees being the magnetic North pole. + fun courseWRTMagneticNorth : El Physical -> El Physical -> El PlaneAngleMeasure -> Formula ; + + -- (courseWRTTrueNorth ?OBJ1 ?OBJ2 ?HEADING) means that the course + -- heading or track from ?OBJ1 to ?OBJ2 is ?HEADING, in AngularDegrees, + -- with the reference point of 000 degrees being true North. + fun courseWRTTrueNorth : El Physical -> El Physical -> El PlaneAngleMeasure -> Formula ; + + -- (dateOpenedForSignature ?PROP ?DATE) means that as of a date + -- indicated by ?DATE, document(s) may officially be signed (by the + -- appropriate agents) to effect commitments to the Agreement ?PROP. + fun dateOpenedForSignature: El Proposition -> Desc TimePosition -> Formula ; + + -- (daylightHoursInterval ?PLACE ?DAY ?INTERVAL) means that in the + -- Region ?PLACE, on the Day indicated by ?DAY, there is daylight + -- during the TimeInterval ?INTERVAL. + fun daylightHoursInterval: El Region -> Desc Day -> El TimeInterval -> Formula ; + + -- (daylightHoursTotal ?PLACE ?DAY ?TIME) means that in the Region + -- ?PLACE, on the Day indicated by ?DAY, there is daylight for a + -- total TimeDuration ?LENGTH. + fun daylightHoursTotal: El Region -> Desc Day -> El TimeDuration -> Formula ; + + -- (dependentGeopoliticalArea + -- ?AREA1 ?AREA2) means that ?AREA1 is a geopolitical possession of the + -- GeopoliticalArea ?AREA2 and is not a geopoliticalSubdivision of + -- ?AREA2. For example, (dependentGeopoliticalArea Guam UnitedStates), + -- because Guam is a territory of the UnitedStates, not one of the fifty + -- U.S. states. Contrast primaryGeopoliticalSubdivision. + fun dependentGeopoliticalArea : El GeographicArea -> El Agent -> Formula ; + + -- (drySeasonInArea ?AREA ?INTERVAL) + -- means that in the GeographicArea ?AREA, the dry season occurs + -- during the TimeInterval ?INTERVAL. For example, (drySeasonInArea + -- Angola (RecurringTimeIntervalFn May October)). + fun drySeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; + + -- The altitude of an object + -- above the sea level of PlanetEarth + fun earthAltitude : El Physical -> El Physical -> El LengthMeasure -> Formula ; + + -- (elevation ?OBJECT ?HEIGHT) means that the + -- physical Object ?OBJECT is located on the surface of PlanetEarth + -- at the vertical distance ?HEIGHT above (or below, for a negative + -- quantity) SeaLevel. ?OBJECT may be a superficialPart of Earth's + -- surface, such as a GeographicArea. Elevation is measured from + -- SeaLevel to the vertical top of the object. + fun elevation : El Object -> El LengthMeasure -> Formula ; + + -- (environmentalProblemTypeInArea ?AREA ?PROBLEM) means that + -- objects or processes of type ?PROBLEM is an environmental + -- problem in the GeographicArea ?AREA. + fun environmentalProblemTypeInArea: El GeographicArea -> Desc Physical -> Formula ; + + -- The relation between WaterMotion Processes + -- and the region in which they occur continuously over at least hours, but + -- typically months or years. A water balloon bursting and flowing downhill + -- would not use this relation, because there would be no StreamWaterArea + -- to relate to. + fun flowCurrent : El WaterMotion -> El WaterArea -> Formula ; + + -- (groundSubsurfaceType ?area ?subsoil) + -- means that the predominant Substance in the subsoil or subsurface layer of + -- the LandArea ?area is of type ?subsoil. + fun groundSubsurfaceType: El LandArea -> Desc Substance -> Formula ; + + -- (%&groundSurfaceType ?area ?substance) means + -- that the predominant Substance at the ground surface of the LandArea ?area is ?substance. + fun groundSurfaceType: El LandArea -> Desc Substance -> Formula ; + + -- (headingWRTCompassNorth ?OBJ ?DEGREE) + -- means that the front_to_back axis of the Object ?OBJ points in + -- the direction ?DEGREE, according to the compass carried by ?OBJ. + fun headingWRTCompassNorth : El Object -> El PlaneAngleMeasure -> Formula ; + + -- (headingWRTMagneticNorth ?OBJ ?DEGREE) + -- means that the front_to_back axis of the Object ?OBJ points in + -- the direction ?DEGREE, with respect to magnetic North. + fun headingWRTMagneticNorth : El Object -> El PlaneAngleMeasure -> Formula ; + + -- (headingWRTTrueNorth ?OBJ ?DEGREE) + -- means that the front_to_back axis of the Object ?OBJ points in + -- the direction ?DEGREE, with respect to true North. + fun headingWRTTrueNorth : El Object -> El PlaneAngleMeasure -> Formula ; + + -- (highAltitudeWindSpeed ?PLACE ?RATE) means that the Wind + -- blowing above 25,000 feet at ?PLACE has a speed of ?RATE. + fun highAltitudeWindSpeed : El Object -> El ConstantQuantity -> Formula ; + + -- (highAltitudeWindVelocity ?PLACE ?SPEED ?TOWARD) means that the + -- Wind blowing above 25,000 feet at ?PLACE has a speed of ?SPEED + -- and is moving toward the DirectionalAttribute ?TOWARD. + fun highAltitudeWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; + + -- (highTide ?PLACE ?TIME ?AMOUNT) means that + -- there is a HighTide at the Region ?PLACE at the TimeInterval ?TIME + -- with the relative height ?AMOUNT. The height is given in relation to + -- the datum on a standard chart. + fun highTide : El Region -> El TimeInterval -> El LengthMeasure -> Formula ; + + -- (highestTemperatureForPeriod ?PLACE ?PERIOD ?AMOUNT) means that + -- at the GeographicArea ?PLACE, during the TimeDuration ?PERIOD, + -- the highest temperature was ?AMOUNT. Temperature may be expressed + -- in some UnitOfTemperature, including CelsiusDegree and + -- FahrenheitDegree, among others. + fun highestTemperatureForPeriod : El GeographicArea -> El TimeDuration -> El TemperatureMeasure -> Formula ; + + -- (hotSeasonInArea ?AREA ?INTERVAL) + -- means that in the GeographicArea ?AREA, the hot season occurs + -- during the TimeInterval ?INTERVAL. For example, (hotSeasonInArea + -- Angola (RecurringTimeIntervalFn November April)). + fun hotSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; + + -- (irrigatedLandArea ?REGION ?AMOUNT) + -- means that the GeographicArea ?REGION has the ?AMOUNT of irrigated land. + -- ?AMOUNT may be expressed in physical units or with a percent or fraction. + fun irrigatedLandArea : El GeographicArea -> El ConstantQuantity -> Formula ; + + -- (landAreaOnly ?REGION ?MEASURE) means + -- that the total area(s) of solid ground within the GeographicArea + -- ?REGION has the AreaMeasure ?AMOUNT. The pieces of solid ground need + -- not be continuous within the region. + fun landAreaOnly : El GeographicArea -> El AreaMeasure -> Formula ; + + -- (lowAltitudeWindSpeed ?PLACE ?RATE) means that the Wind blowing + -- between 500_10,000 feet at ?PLACE has a speed of ?RATE. Wind speed + -- may be expressed in knots (KnotUnitOfSpeed) or as any distance per + -- time unit (using (SpeedFn ?DISTANCE ?TIME)). + fun lowAltitudeWindSpeed : El Object -> El PhysicalQuantity -> Formula ; + + -- (lowAltitudeWindVelocity ?PLACE ?SPEED ?DIRECTION) means that the + -- low_altitude Wind blowing at ?PLACE has a speed of ?SPEED and comes + -- from the compass point ?DIRECTION. Low_altitude wind is wind blowing + -- between 500_10,000 feet. + fun lowAltitudeWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; + + -- (lowTide ?PLACE ?TIME ?AMOUNT) means that + -- there is a LowTide at the Region ?PLACE at the TimeInterval ?TIME + -- with the relative height ?AMOUNT. The height is given in relation to + -- the datum on a standard chart. + fun lowTide : El Region -> El TimeInterval -> El LengthMeasure -> Formula ; + + -- (lowestTemperatureForPeriod ?PLACE ?PERIOD ?AMOUNT) means that + -- at the GeographicArea ?PLACE, during the TimeDuration ?PERIOD, + -- the highest temperature was ?AMOUNT. Temperature may be expressed + -- in some UnitOfTemperature, including CelsiusDegree and + -- FahrenheitDegree, among others. + fun lowestTemperatureForPeriod : El GeographicArea -> El TimeDuration -> El TemperatureMeasure -> Formula ; + + -- (magneticVariation ?AREA ?DEGREE ?DIRECTION) means that in the + -- GeographicArea ?AREA, the magnetic variation of a compass from + -- 000 degrees true is ?DEGREE AngularDegrees in ?DIRECTION (East + -- or West). + fun magneticVariation : El GeographicArea -> El PlaneAngleMeasure -> El DirectionalAttribute -> Formula ; + + -- (mapOfArea ?AREA ?POINTER) means that a map + -- of the Region ?AREA can be found at the location ?POINTER. + fun mapOfArea : El Region -> El SymbolicString -> Formula ; + + -- (maritimeClaimType ?POLITY ?TYPE) + -- means that the GeopoliticalArea ?POLITY claims rights over a + -- MaritimeClaimArea of ?TYPE. + fun maritimeClaimType: El GeopoliticalArea -> Desc MaritimeClaimArea -> Formula ; + + -- (meanSeaLevel ?place ?measure) means that the Mean Sea + -- Level (MSL) at ?place is ?measure. ?measure is a distance representing the sea level + -- at ?place measured against a benchmark (and averaged over a long time). MSL is measured + -- by tide gauges for maritime purposes, while geodesists use the difference between the + -- local sea surface and an ideal level ocean surface (the geoid). + fun meanSeaLevel : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (mediumAltitudeWindSpeed ?PLACE ?RATE) means that the Wind + -- blowing between 10,000_25,000 feet at ?PLACE has a speed of ?RATE. + fun mediumAltitudeWindSpeed : El Object -> El ConstantQuantity -> Formula ; + + -- (mediumAltitudeWindVelocity ?PLACE ?SPEED ?TOWARD) means that the + -- Wind blowing between 10,000_25,000 feet at ?PLACE has a speed of + -- ?SPEED and is moving toward the DirectionalAttribute ?TOWARD. + fun mediumAltitudeWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; + + -- (naturalHazardTypeInArea ?AREA ?TYPE) means that in the + -- GeographicArea ?AREA, Processes of ?TYPE occur with some + -- frequency and may cause damage or danger to human lives and property. + fun naturalHazardTypeInArea: El GeographicArea -> Desc Physical -> Formula ; + + -- (naturalResourceTypeInArea ?REGION ?TYPE) means that the + -- GeographicArea ?REGION has resources of the kind ?TYPE. + fun naturalResourceTypeInArea: El GeographicArea -> Desc Object -> Formula ; + + -- (objectGeographicCoordinates ?OBJECT ?LAT ?LONG) means that + -- the Object ?OBJECT is found at the geographic coordinates + -- ?LAT and ?LONG. + fun objectGeographicCoordinates : El Object -> El Latitude -> El Longitude -> Formula ; + + -- (oppositeDirection ?DIR1 ?DIR2) + -- means that the PositionalAttribute ?DIR1 points in the compass + -- direction opposite to the DirectionalAttribute ?DIR2. + fun oppositeDirection : El PositionalAttribute -> El PositionalAttribute -> Formula ; + + -- (orbits ?SATELLITE ?FOCUS) means that the Object + -- ?SATELLITE revolves around the AstronomicalBody ?FOCUS. + fun orbits : El Object -> El AstronomicalBody -> Formula ; + + -- This predicate is used to represent information from the CIA + -- World Fact Book. (otherLandUseArea ?REGION ?AMOUNT) means that + -- in the GeographicArea ?REGION, the ?AMOUNT of land has some + -- use other than planting seasonal or permanent crops. ?AMOUNT may be + -- expressed in physical units or with a percent or fraction. See also + -- arableLandArea and permanentLandArea. + fun otherLandUseArea : El GeographicArea -> El ConstantQuantity -> Formula ; + + -- (overcastDaysInPeriod ?AREA ?PERIOD ?NUMBER) means that during the + -- time ?PERIOD, the GeographicArea ?AREA experienced ?NUMBER of + -- OvercastWeather days. + fun overcastDaysInPeriod : El GeographicArea -> El TimeDuration -> El NonnegativeRealNumber -> Formula ; + + -- (partyToAgreement ?AGENT ?PROP) + -- means that the Agent ?AGENT has committed to the agreement ?PROP. + fun partyToAgreement : El Agent -> El Proposition -> Formula ; + + -- (permanentCropLandArea ?REGION ?AMOUNT) means that the GeographicArea + -- ?REGION has ?AMOUNT of land under cultivation with crops that are not + -- replanted after each harvest. This includes orchards, vineyards, coffee + -- and rubber plantations. Timberland is excluded. ?AMOUNT may be expressed + -- in physical units or with a percent or fraction. Cf. permanentCropLandArea. + fun permanentCropLandArea : El GeographicArea -> El ConstantQuantity -> Formula ; + + -- (precipitationAmount ?EVENT ?AMOUNT) means that in the + -- Precipitation process ?EVENT, the quantity of precipitation + -- that fell was ?AMOUNT. + fun precipitationAmount : El Precipitation -> El ConstantQuantity -> Formula ; + + -- (precipitationRate ?EVENT ?RATE) means that in the + -- Precipitation ?EVENT, the precipitation falls at a rate + -- of ?RATE. + fun precipitationRate : El Precipitation -> El FunctionQuantity -> Formula ; + + -- (precipitationState ?EVENT ?STATE) means that in the Precipitation + -- ?EVENT, the stuff falling is in the PhysicalState ?STATE (e.g., + -- Liquid or Solid ice). + fun precipitationState : El WeatherProcess -> El PhysicalState -> Formula ; + + -- (rainySeasonInArea ?AREA ?INTERVAL) + -- means that in the GeographicArea ?AREA, the rainy or wet season occurs + -- during the TimeInterval ?INTERVAL. For example, (rainySeasonInArea + -- Angola (RecurringTimeIntervalFn November April)). + fun rainySeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; + + -- (regionalIssue ?AREA ?ISSUE) means + -- that the AreaOfConcern ?ISSUE is relevant to a problem in the + -- GeographicArea ?AREA. + fun regionalIssue : El GeographicArea -> El AreaOfConcern -> Formula ; + + -- (relativeBearing ?OBJ1?OBJ2 ?DEGREES) + -- means that ?OBJ1 and ?OBJ2 are separated by the amount ?DEGREES of + -- PlaneAngleMeasure. + fun relativeBearing : El Object -> El Object -> El PlaneAngleMeasure -> Formula ; + + -- (relativeHumidity ?AREA ?AMOUNT) + -- means that the amount of moisture in the air at ?AREA is ?AMOUNT. + -- Relative humidity expresses the amount of moisture as a percentage, + -- or ratio, between the actual moisture saturation of the air compared + -- to the potential moisture saturation of the air. At full (potential) + -- saturation, precipitation would occur. + fun relativeHumidity : El Object -> El NonnegativeRealNumber -> Formula ; + + -- (seaSurfaceTemperature ?AREA ?TEMP) means that the + -- temperature of the sea surface at ?AREA is ?TEMP. + -- Temperature may be expressed in some UnitOfTemperature, + -- including CelsiusDegree and FahrenheitDegree, among others. + fun seaSurfaceTemperature : El WaterArea -> El ConstantQuantity -> Formula ; + + -- The length of the boundary + -- between two GeographicRegions. + fun sharedBorderLength : El GeographicRegion -> El GeographicRegion -> El LengthMeasure -> Formula ; + + -- (slopeGradient ?AREA ?SLOPE) means that + -- in the LandArea ?AREA there is an incline of ?slope, where ?SLOPE is + -- the percent of vertical rise over horizontal distance. slopeGradient + -- gives an approximate value for nonzero slope over ?AREA, without regard + -- to orientation. For example, (slopeGradient ?AREA 0.10) means that + -- there is a 10% incline across the area, without specifying the + -- orientation in which the land rises or falls. Also see + -- slopeGradientTowardsOrientation. + fun slopeGradient : El LandArea -> El NonnegativeRealNumber -> Formula ; + + -- (slopeGradientTowardsOrientation ?AREA ?DIRECTION ?SLOPE) means that + -- in the LandArea ?AREA, there is an incline of ?SLOPE towards the + -- DirectionalAttribute ?DIRECTION. ?SLOPE is a RationalNumber + -- representing the percent of vertical rise over horizontal distance. + fun slopeGradientTowardsOrientation : El LandArea -> El DirectionalAttribute -> El RationalNumber -> Formula ; + + -- (streamOutfall ?WATER ?RIVER) means that + -- the WaterArea ?MOUTH is the outfall of the River ?RIVER. + fun streamOutfall : El WaterArea -> El River -> Formula ; + + -- (surfaceWindDirection ?PLACE ?DIRECTION) means that at ?PLACE + -- the wind is coming from the compass point ?DIRECTION. For example, + -- (surfaceWindDirection SanFranciscoBay Northwest) means that the + -- wind in San Francisco Bay is coming from the Northwest. The wind is + -- within 500 feet of Earth's surface. + fun surfaceWindDirection : El Object -> El DirectionalAttribute -> Formula ; + + -- (surfaceWindSpeed ?PLACE ?RATE) + -- means that the speed of the surface Wind at the GeographicArea + -- ?PLACE is ?RATE. Wind speed may be expressed in knots (KnotUnitOfSpeed) + -- or as any distance per time unit (using (SpeedFn ?DISTANCE ?TIME)). + -- Surface wind is found at the surface of the planet, everyday wind. + -- Technically, Winds moving through the atmosphere up to an altitude + -- of 500 feet. + fun surfaceWindSpeed : El Object -> El PhysicalQuantity -> Formula ; + + -- (surfaceWindVelocity ?PLACE ?SPEED ?TOWARD) means that the + -- surface Wind blowing at ?PLACE has a speed of ?SPEED and is moving + -- toward the DirectionalAttribute ?TOWARD. Surface wind is found at the + -- surface of the planet, everyday wind. Technically, Winds moving + -- through the atmosphere up to an altitude of 500 feet. + fun surfaceWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; + + -- (terrainInArea ?AREA ?ATTRIBUTE) + -- means that the GeographicArea ?AREA is or includes a region with + -- the features of TerrainArea ?ATTRIBUTE. + fun terrainInArea : El GeographicArea -> El TerrainAttribute -> Formula ; + + -- (totalArea ?REGION ?AMOUNT) means that + -- the total area of ?REGION is the AreaMeasure ?AMOUNT. + fun totalArea : El Region -> El AreaMeasure -> Formula ; + + -- (totalBiomass ?PLACE ?MASS) means that the + -- total amount (in weight or volume) of living matter in the Region + -- ?PLACE is ?MASS. + fun totalBiomass : El GeographicArea -> El PhysicalQuantity -> Formula ; + + -- (totalCoastline ?AREA ?COASTLENGTH) + -- means that the total length of all boundaries between the GeographicArea + -- ?AREA and the ocean is the LengthMeasure ?COASTLENGTH. The coastline + -- counted may be discontinuous and may even be along different oceans (as + -- in Columbia). A totalCoastline of zero indicates a LandlockedArea. + -- Note that only Ocean coastlines are counted, not any shores with inland + -- waters. + fun totalCoastline : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (totalLandBoundary ?REGION ?LENGTH) + -- means that the GeographicArea ?REGION has a total LengthMeasure + -- ?LENGTH of land boundaries between it and other countries. Note that + -- the boundaries included in the total length may be discontinuous, as when + -- interrupted by stretches of Seacoast. + fun totalLandBoundary : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (totalPrecipitationForPeriod ?PLACE ?PERIOD ?AMOUNT) means that + -- at the GeographicArea ?PLACE, and during the TimeDuration ?PERIOD, + -- the total amount of precipitation was ?AMOUNT. + fun totalPrecipitationForPeriod : El GeographicArea -> El TimeDuration -> El ConstantQuantity -> Formula ; + + -- (unratifiedSignatoryToAgreement ?AGENT ?PROP) means that + -- the Agent ?AGENT has signed a document to begin the process of + -- committing to the Agreement ?PROP, but that a ratification + -- process required to complete the commitment has not yet occurred. + fun unratifiedSignatoryToAgreement : El Agent -> El Proposition -> Formula ; + + -- (vegetationType ?area ?type) associates + -- a particular GeographicArea with a type of Plant that is found there. + fun vegetationType : El GeographicArea -> Desc Plant -> Formula ; + + -- (vegetationTypePattern ?AREA ?TYPE ?DENSITY) means that in the + -- GeographicArea ?AREA the Plant ?TYPE is found with ?DENSITY. + fun vegetationTypePattern: El GeographicArea -> Desc Plant -> El Attribute -> Formula ; + + -- (warmSeasonInArea ?AREA ?INTERVAL) + -- means that in the GeographicArea ?AREA, the warm season occurs + -- during the TimeInterval ?INTERVAL. + fun warmSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; + + -- (waterAreaOnly ?REGION ?MEASURE) means + -- that the total area(s) of surface water within the GeographicArea + -- ?REGION has the AreaMeasure ?AMOUNT. The pieces of water need not be + -- continuous within the region. + fun waterAreaOnly : El GeographicArea -> El AreaMeasure -> Formula ; + + -- (waterDepth ?AREA ?LENGTH) means that the + -- depth of water at the Region ?AREA is ?LENGTH. + fun waterDepth : El WaterArea -> El LengthMeasure -> Formula ; + + -- (windRelativePosition ?OBJECT ?POSITION) means that the Wind blows + -- at ?OBJECT from the relative vector ?POSITION. E.g., Crosswind, + -- Headwind, Tailwind. + fun windRelativePosition : El Object -> El Attribute -> Formula ; --- A MountainRange is a row or chain of connected mountains. -fun MountainRange : Class ; -fun MountainRange_Class : SubClass MountainRange (both LandForm UplandArea) ; - - --- An area of MountainousTerrain --- is an area of rugged terrain in which there are many mountains. -fun MountainousTerrain : Ind TerrainAttribute ; - - -fun Mudflow : Class ; -fun Mudflow_Class : SubClass Mudflow Landslide ; -fun Mudslide : Class ; -fun Mudslide_Class : SubClass Mudslide Landslide ; --- NaturalGas is a combustible mixture --- of methane and higher hydrocarbons. -fun NaturalGas : Class ; -fun NaturalGas_Class : SubClass NaturalGas CompoundSubstance ; - --- NaturalSatellite is the class of --- large, naturally occurring astronomical bodies orbiting some other --- AstronomicalBody. -fun NaturalSatellite : Class ; -fun NaturalSatellite_Class : SubClass NaturalSatellite (both AstronomicalBody Satellite) ; - - --- NauticalMile represents the international --- unit used for measuring distance in sea and air navigation. The unit is --- based on the length of a minute of arc of a great circle of --- PlanetEarth. -fun NauticalMile : Ind UnitOfLength ; - - -fun NormalFault : Class ; -fun NormalFault_Class : SubClass NormalFault DipSlipFault ; -fun NorthAmerica : Ind (both GeographicArea Continent) ; - --- NorthAtlanticOcean denotes the northern geographicSubregion --- of the AtlanticOcean. -fun NorthAtlanticOcean : Ind (both SaltWaterArea BodyOfWater) ; - - --- NorthPacificOcean denotes the northern geographicSubregion --- of the PacificOcean. -fun NorthPacificOcean : Ind (both SaltWaterArea BodyOfWater) ; - - -fun NorthSea : Ind Sea ; - --- Northeast represents the compass direction of Northeast. -fun Northeast : Ind DirectionalAttribute ; - - -fun NorthernAfrica : Ind GeographicArea ; - -fun NorthernAsia : Ind GeographicArea ; - -fun NorthernEurope : Ind GeographicArea ; - --- The half of the Earth that lies above the --- equator. -fun NorthernHemisphere : Ind Hemisphere ; - - -fun NorthernNorthAmerica : Ind GeographicArea ; - -fun NorthernSouthAmerica : Ind GeographicArea ; - --- Northwest represents the compass direction of Northwest. -fun Northwest : Ind DirectionalAttribute ; - - --- NoxiousSubstance is --- the class of Substances that are harmful to Humans. -fun NoxiousSubstance : Class ; -fun NoxiousSubstance_Class : SubClass NoxiousSubstance Substance ; - -fun NuclearEnvironmentalIssue : Ind PollutionIssue ; - -fun NuclearPollutionIssue : Ind EnvironmentalIssue ; - -fun NuclearTestBanTreaty : Ind Agreement ; - --- Oasis is a subclass of LandAreas that are --- fertile places within a desert, which have water and some vegetation. -fun Oasis : Class ; -fun Oasis_Class : SubClass Oasis (both Biome LandArea) ; - - --- OccludedFront is the class of complex --- weather transition processes in which a cold air mass overtakes a warm --- air mass. -fun OccludedFront : Class ; -fun OccludedFront_Class : SubClass OccludedFront WeatherFront ; - --- Ocean is the class containing the oceans --- that are the major subdivisions of the WorldOcean. According to --- the International Hydrographic Association, there are five oceans: --- the AtlanticOcean, PacificOcean, IndianOcean, SouthernOcean, --- and ArcticOcean. Note: The largest oceans, the Atlantic and Pacific, --- are subdivided into Northern and Southern regions, but those regions --- are not separate Oceans. -fun Ocean : Class ; -fun Ocean_Class : SubClass Ocean (both BodyOfWater SaltWaterArea) ; - - -fun Oceania : Ind (both GeographicArea Continent) ; - -fun OilPollutionIssue : Ind PollutionIssue ; - --- OpenSea is the Attribute of a WaterArea --- that is open ocean beyond five NauticalMiles of land, also known as --- 'blue water'. -fun OpenSea : Ind Attribute ; - - --- (OuterBoundaryFn ?REGION) denotes the --- outer boundary of the Region ?REGION, where ?REGION has an inner and --- outer orientation with respect to another object. -fun OuterBoundaryFn : El Region -> Ind Region ; - - --- OvercastWeather represents --- a condition in which more than 70% of the sky is covered --- with clouds. -fun OvercastWeather : Class ; -fun OvercastWeather_Class : SubClass OvercastWeather WeatherProcess ; - --- Overgrazing is the class of processes --- in which grazing animals consume vegetation faster than it can regrow. -fun Overgrazing : Class ; -fun Overgrazing_Class : SubClass Overgrazing Eating ; - -fun OvergrazingIssue : Ind EnvironmentalIssue ; - -fun OverhuntingIssue : Ind EnvironmentalIssue ; - -fun OverpopulationIssue : Ind EnvironmentalIssue ; - -fun OzoneDepletionIssue : Ind EnvironmentalIssue ; - -fun OzoneLayerProtectionProtocol : Ind Agreement ; - --- The OzoneShield is a layer in --- EarthsAtmosphere, located about 25 miles above Earth's surface, --- composed of ozone gas that absorbs ultraviolent radiation from --- the Sun that can be damaging to living things. -fun OzoneShield : Ind (both AtmosphericRegion CompoundSubstance) ; - - --- PHValue ('pH') is a UnitOfMeasure --- used to measure the acidity or alkalinity of a solution. The pH --- scale ranges from 0 to 14. The pH of a neutral solution is 7. --- Acid solutions have a pH value less than seven. Alkaline solutions --- have a value greater than seven. -fun PHValue : Ind NonCompositeUnitOfMeasure ; - - --- PacificOcean represents the Pacific --- Ocean. -fun PacificOcean : Ind Ocean ; - - --- Pampa is a class of vast, level, typically grassy --- Plains of land in South America. -fun Pampa : Class ; -fun Pampa_Class : SubClass Pampa (both Grassland Plain) ; - - -fun Pampero : Class ; -fun Pampero_Class : SubClass Pampero Windstorm ; --- PartlyCloudyWeather --- represents a condition in which between 30% and 70% of the --- sky is covered with clouds. -fun PartlyCloudyWeather : Class ; -fun PartlyCloudyWeather_Class : SubClass PartlyCloudyWeather WeatherProcess ; - --- A Peninsula is a piece of land that extends --- into a body of water and is surrounded on three sides by water. Typically --- connected by an Isthmus or neck of land that is narrower than its main --- portion (contrast with Cape). -fun Peninsula : Class ; -fun Peninsula_Class : SubClass Peninsula LandForm ; - --- A PerimeterArea is a region that --- extends outward from a boundary with another region, surrounding or --- partially surrounding it, but which is not part of that other region. --- See BorderFn and PerimeterAreaFn. -fun PerimeterArea : Class ; -fun PerimeterArea_Class : SubClass PerimeterArea Region ; - --- (PerimeterAreaFn ?REGION) denotes a --- class including any peripheral zones extending outward from the Region --- ?REGION. -fun PerimeterAreaFn: El Region -> Desc PerimeterArea ; - - -fun Permafrost : Ind CompoundSubstance ; - --- PermanentCropLand is the subclass --- of LandArea that represents land cultivated for crops that are produced --- without replanting after every harvest, such as fruit trees, coffee, rubber, --- nuts, and vineyards. Does not include timberland. Cf. arableLandArea. -fun PermanentCropLand : Class ; -fun PermanentCropLand_Class : SubClass PermanentCropLand LandArea ; - -fun PersianGulf : Ind (both Gulf SaltWaterArea) ; - -fun PesticideIssue : Ind EnvironmentalIssue ; - --- PesticidePollution is --- the subclass of Pollution in which the pollutant is a pesticide. -fun PesticidePollution : Class ; -fun PesticidePollution_Class : SubClass PesticidePollution Pollution ; - --- Phospate is a salt or ester of a --- phosphoric acid. -fun Phosphate : Class ; -fun Phosphate_Class : SubClass Phosphate CompoundSubstance ; - --- A Piedmont is a LandArea at the foot of mountains. -fun Piedmont : Class ; -fun Piedmont_Class : SubClass Piedmont LandArea ; - --- Pines are coniferous BotanicalTrees of the --- genus Pinus, in the family Pinaceae. They are evergreens, with needle_ --- shaped leaves and propagate by dropping pine cones, which contains --- seeds. (from Wikipedia) -fun PineTree : Class ; -fun PineTree_Class : SubClass PineTree BotanicalTree ; - --- A Plain is a broad, flat or gently rolling area, --- usually low in elevation. -fun Plain : Class ; -fun Plain_Class : SubClass Plain LowlandArea ; - --- Planet is the class of large --- NaturalSatellites that revolve around a star. -fun Planet : Class ; -fun Planet_Class : SubClass Planet NaturalSatellite ; - -fun PlanetEarth : Ind Planet ; - -fun PlanetJupiter : Ind Planet ; - -fun PlanetMars : Ind Planet ; - -fun PlanetMercury : Ind Planet ; - -fun PlanetNeptune : Ind Planet ; - -fun PlanetPluto : Ind Planet ; - -fun PlanetSaturn : Ind Planet ; - -fun PlanetUranus : Ind Planet ; - -fun PlanetVenus : Ind Planet ; - --- Planting is the class of processes in --- which botanical Plants are planted or transplanted, whether as --- seeds, seedlings, or mature plants. -fun Planting : Class ; -fun Planting_Class : SubClass Planting Putting ; - --- A Plateau is a flat upland area with one steep --- face, elevated plain. -fun Plateau : Class ; -fun Plateau_Class : SubClass Plateau (both LandForm UplandArea) ; - - --- Poaching is the illegal killing --- of non_human animals. -fun Poaching : Class ; -fun Poaching_Class : SubClass Poaching Killing ; - --- PolarClimateZone is a subclass of --- ClimateZone characterized by having an average temperature less than --- 10 degrees Celsius in the warmest month. This is Koeppen climate system --- Type E. No agriculture is supported in polar climates. -fun PolarClimateZone : Class ; -fun PolarClimateZone_Class : SubClass PolarClimateZone ClimateZone ; - --- PolarTypeFClimateZone is a --- subclass of PolarClimateZone characterized by having no month in --- which the temperature rises to 10 degrees Celsius or above. -fun PolarTypeFClimateZone : Class ; -fun PolarTypeFClimateZone_Class : SubClass PolarTypeFClimateZone PolarClimateZone ; - -fun PollutedFishStocksIssue : Ind EnvironmentalIssue ; - --- Pollution is the contamination of an --- environment by man_made wastes. -fun Pollution : Class ; -fun Pollution_Class : SubClass Pollution SocialInteraction ; - -fun PollutionIssue : Class ; -fun PollutionIssue_Class : SubClass PollutionIssue EnvironmentalIssue ; -fun PoopoLake : Ind SaltLake ; - -fun PopulationMigrationIssue : Ind EnvironmentalIssue ; - --- PotableWater is the subclass --- of Water that represents safely drinkable water. -fun PotableWater : Class ; -fun PotableWater_Class : SubClass PotableWater Freshwater ; - --- Potash is a Potassium carbonate from --- wood ashes or a potassium compound. -fun Potash : Class ; -fun Potash_Class : SubClass Potash CompoundSubstance ; - -fun PowerPlantEmissionsIssue : Ind PollutionIssue ; - --- Prairie is a class of large plains --- LandAreas with tall grass vegetation. -fun Prairie : Class ; -fun Prairie_Class : SubClass Prairie (both Grassland Plain) ; - - --- RainForest is the subclass of LandAreas --- that are densely planted with trees. -fun RainForest : Class ; -fun RainForest_Class : SubClass RainForest (both Biome Forest) ; - - --- Raining is a precipitation process --- in which water falls in a Liquid state. -fun Raining : Class ; -fun Raining_Class : SubClass Raining Precipitation ; - --- Rapids is the class of WaterAreas that are --- parts of a StreamWaterArea where the currents move swiftly over --- rocks. -fun Rapids : Class ; -fun Rapids_Class : SubClass Rapids StreamWaterArea ; - -fun RawSewagePollutionIssue : Ind PollutionIssue ; - -fun RedSea : Ind Sea ; - --- A Reef is a ridge of rock, coral, or sand at or near --- the surface of a WaterArea. -fun Reef : Class ; -fun Reef_Class : SubClass Reef (both LandForm MaritimeHazard) ; - - --- Reforestation is the process of --- replanting trees on land where they were cut or burned. -fun Reforestation : Class ; -fun Reforestation_Class : SubClass Reforestation Planting ; - --- A Reservoir is an artifically made (or --- artifically enlarged) holding area where water is collected and stored --- for future use. -fun Reservoir : Class ; -fun Reservoir_Class : SubClass Reservoir (both Artifact FreshWaterArea) ; - - --- A ReservoirLake is an artifically made --- (or artifically enlarged) lake used for water collection and storage. -fun ReservoirLake : Class ; -fun ReservoirLake_Class : SubClass ReservoirLake (both Lake Reservoir) ; - - --- A RichterMagnitude is a measure --- of the severity of an EarthTremor. For example, --- (MeasureFn 6.5 RichterMagnitude) denotes the value of 6.5 on the --- Richter scale. -fun RichterMagnitude : Ind CompositeUnitOfMeasure ; - - --- A RipCurrent is a fast narrow surface current --- that flows seaward from a ShoreArea. -fun RipCurrent : Class ; -fun RipCurrent_Class : SubClass RipCurrent LittoralCurrent ; - --- River is the class of large streams of fresh --- water flowing through land into a lake, ocean, or other body of water. -fun River : Class ; -fun River_Class : SubClass River (both BodyOfWater (both FreshWaterArea StreamWaterArea)) ; - - --- A RiverBank is the ShoreArea adjacent to a river. -fun RiverBank : Class ; -fun RiverBank_Class : SubClass RiverBank (both LandForm ShoreArea) ; - - --- RiverMouth is the subclass of WaterAreas --- that are the outfalls of a river or stream into another body of water. -fun RiverMouth : Class ; -fun RiverMouth_Class : SubClass RiverMouth (both StreamWaterArea WaterArea) ; - - --- A RiverSystem comprises all the tributary --- streams and rivers (StreamWaterAreas) that drain along converging --- paths into the main river of the system, which discharges into a --- StaticWaterArea. -fun RiverSystem : Class ; -fun RiverSystem_Class : SubClass RiverSystem (both Collection WaterArea) ; - - -fun Rockslide : Class ; -fun Rockslide_Class : SubClass Rockslide Landslide ; --- Salination is the class of processes --- in which either Freshwater or Topsoil becomes imbued with --- SodiumChloride from sea water or from the evaporation of irrigation water. -fun Salination : Class ; -fun Salination_Class : SubClass Salination Combining ; - --- A Salt is a chemical substance which is a combination --- of a metal or a base with an acid. -fun Salt : Class ; -fun Salt_Class : SubClass Salt CompoundSubstance ; - --- SaltLake is the class of landlocked --- bodies of salt water, including those referred to as 'Seas', e.g., --- the CaspianSea. But note that the MediterraneanSea is a Sea. -fun SaltLake : Class ; -fun SaltLake_Class : SubClass SaltLake (both LandlockedWater SaltWaterArea) ; - - -fun SaltonSea : Ind SaltLake ; - --- Sand is loose fragments of minerals or rocks. Smaller than --- gravel and larger than silt and clay, sand particles range from 8/10,000 to 8/100 --- inch (0.02 to 2 millimeters) in diameter. Sand is formed by the Erosion of rocks --- through the action of water, ice, or air. -fun Sand : Class ; -fun Sand_Class : SubClass Sand Soil ; - -fun Sandstorm : Class ; -fun Sandstorm_Class : SubClass Sandstorm WeatherProcess ; --- Sanitation is the class of processes --- by which human waste and garbage are disposed of. -fun Sanitation : Class ; -fun Sanitation_Class : SubClass Sanitation Removing ; - --- Satellite is the collection of bodies that --- revolve around some astronomical body, e.g., planets around a star. --- This class includes both artificial and NaturalSatellites. -fun Satellite : Class ; -fun Satellite_Class : SubClass Satellite AstronomicalBody ; - --- Savanna is a class of tropical or subtropical --- Grasslands, typically treeless. -fun Savanna : Class ; -fun Savanna_Class : SubClass Savanna (both Grassland Plain) ; - - --- ScatteredVegetation describes --- the pattern of vegetation in which plants appear at intervals. -fun ScatteredVegetation : Ind Attribute ; - - --- Sea is the class of smaller subdivisions of --- the WorldOcean, typically partially surrounded by land. However, --- for inland salt water bodies that are sometimes called 'Sea', see --- SaltLake. -fun Sea : Class ; -fun Sea_Class : SubClass Sea (both BodyOfWater SaltWaterArea) ; - - -fun SeaIce : Class ; -fun SeaIce_Class : SubClass SeaIce Ice ; --- SeaLevel designates the global Mean Sea Surface --- (MSS). Note that SeaLevel represents a GeographicArea that comprises all --- the local Mean Sea Level (MSL) areas used as references for measuring altitude. --- In fact, there are local variations in MSL, due to tides and long_ and short_ --- term weather conditions. -fun SeaLevel : Ind GeographicArea ; - - --- SeabedArea is the class of SubmergedLandAreas that are part of --- the sea floor. -fun SeabedArea : Class ; -fun SeabedArea_Class : SubClass SeabedArea SubmergedLandArea ; - --- A Seacoast is the ShoreArea along the --- margin of an ocean, extending inland approximately 1_3 km from the low --- water mark. -fun Seacoast : Class ; -fun Seacoast_Class : SubClass Seacoast (both LandForm ShoreArea) ; - - -fun SemiaridClimateZone : Class ; -fun SemiaridClimateZone_Class : SubClass SemiaridClimateZone ClimateZone ; -fun SevereThunderstorm : Class ; -fun SevereThunderstorm_Class : SubClass SevereThunderstorm WeatherProcess ; -fun SewageDisposal : Class ; -fun SewageDisposal_Class : SubClass SewageDisposal Sanitation ; -fun ShipPollutionProtocol : Ind Agreement ; - -fun Shoal : Class ; -fun Shoal_Class : SubClass Shoal MaritimeHazard ; --- Shoreline is the class of LandAreas that --- are the edge of a larger land mass abutting a bordering WaterArea. -fun Shoreline : Class ; -fun Shoreline_Class : SubClass Shoreline LandArea ; - --- (ShorelineFn ?LAND ?WATER) denotes --- the Shoreline where the GeographicArea ?LAND borders the --- WaterArea ?WATER. -fun ShorelineFn : El GeographicArea -> El WaterArea -> Ind LandArea ; - - --- (ShortageFn ?TYPE) means that there --- is a shortage of objects of ?TYPE, which are used as resources. -fun ShortageFn: Desc Object -> Ind Entity ; - - --- Shrub is the class of low, perennial, --- typically multi_stemmed woody plants, called shrubs or bushes. -fun Shrub : Class ; -fun Shrub_Class : SubClass Shrub FloweringPlant ; - --- SigningADocument is the class of --- actions in which an agent affixes a signature, stamp, or other evidence --- of authorization or attestation to a document. The document and signature --- may be electronic. Signings count as SocialInteractions even if done in --- private, because their significance derives from a social context. -fun SigningADocument : Class ; -fun SigningADocument_Class : SubClass SigningADocument Committing ; - --- Silt is sand or earth which is carried along by flowing --- water and deposited at a bend in a river or at a river's opening. -fun Silt : Class ; -fun Silt_Class : SubClass Silt Soil ; - --- Siltation is the class of processes --- in which WaterAreas become filled in with silt or mud, due to --- soil Erosion. -fun Siltation : Class ; -fun Siltation_Class : SubClass Siltation Putting ; - -fun SiltationIssue : Ind EnvironmentalIssue ; - -fun Sirocco : Class ; -fun Sirocco_Class : SubClass Sirocco WindProcess ; --- SlashAndBurnAgriculture --- is the subclass of Agriculture processes in which land is --- cleared by cutting and burning trees, and crops are farmed until --- the soil is depleted, at which point the plot is abandoned to --- regrowth. This rotational technique is viable only with low --- populations and infrequent re_use. -fun SlashAndBurnAgriculture : Class ; -fun SlashAndBurnAgriculture_Class : SubClass SlashAndBurnAgriculture Agriculture ; - -fun Sleeting : Class ; -fun Sleeting_Class : SubClass Sleeting Precipitation ; --- A SlopedArea is a land surface which lies at --- an angle to the horizontal so that some points on it are higher than --- others, a slope. -fun SlopedArea : Class ; -fun SlopedArea_Class : SubClass SlopedArea LandForm ; - --- Snowing is a precipitation process --- in which water falls in a Solid state. -fun Snowing : Class ; -fun Snowing_Class : SubClass Snowing Precipitation ; - -fun SocialInteractions : Class ; - --- Soil is a substance composed of fine rock material --- disintegrated by geological processes, mixed with humus, the organic remains of decomposed vegetation. -fun Soil : Class ; -fun Soil_Class : SubClass Soil Mixture ; - --- SoilDegradation is a class of --- processes in which the productive capacity of soil is lowered by --- over_fertilization, overuse of pesticides, erosion, or soil --- compaction. -fun SoilDegradation : Class ; -fun SoilDegradation_Class : SubClass SoilDegradation SocialInteractions ; - -fun SoilDegradationIssue : Ind SoilQualityIssue ; - --- SoilErosion is the subclass of --- Erosion in which the matter removed by wind or water is topsoil. -fun SoilErosion : Class ; -fun SoilErosion_Class : SubClass SoilErosion Erosion ; - -fun SoilErosionIssue : Ind SoilQualityIssue ; - -fun SoilExhaustionIssue : Ind SoilQualityIssue ; - -fun SoilPollutionIssue : Ind (both PollutionIssue SoilQualityIssue) ; - -fun SoilQualityIssue : Class ; -fun SoilQualityIssue_Class : SubClass SoilQualityIssue EnvironmentalIssue ; -fun SoilSalination : Class ; -fun SoilSalination_Class : SubClass SoilSalination Salination ; -fun SoilSalinityIssue : Ind SoilQualityIssue ; - --- SoilSolution is the liquid component of soils, --- which is largely water containing a number of mineral substances in solution, --- as well as comparatively large amounts of dissolved oxygen and carbon dioxide. -fun SoilSolution : Class ; -fun SoilSolution_Class : SubClass SoilSolution Solution ; - --- Sol is the nearest Star to PlanetEarth and --- the focus of its SolarSystem. -fun Sol : Ind Star ; - - --- SolarSystem is the class of systems that --- consist of a star or stars and any encircling astronomical bodies. -fun SolarSystem : Class ; -fun SolarSystem_Class : SubClass SolarSystem Collection ; - -fun SolidWasteDisposal : Class ; -fun SolidWasteDisposal_Class : SubClass SolidWasteDisposal Sanitation ; -fun SolidWasteDisposalIssue : Ind PollutionIssue ; - --- A Sound is a long, relatively narrow waterway --- lying along the shore of a land mass and protected from open water by --- another land area, an island or group of islands. Some sounds open at --- both ends into the same body of water (e.g., Long Island Sound), while --- others connect two different bodies of water (e.g., Melville Sound). --- A Sound may occur in salt or fresh water bodies. Generally wider than --- a Strait. -fun Sound : Class ; -fun Sound_Class : SubClass Sound BodyOfWater ; - -fun SouthAmerica : Ind Continent ; - --- SouthAtlanticOcean denotes the southern geographicSubregion --- of the AtlanticOcean. -fun SouthAtlanticOcean : Ind (both SaltWaterArea BodyOfWater) ; - - --- SouthPacificOcean denotes the southern geographicSubregion --- of the PacificOcean. -fun SouthPacificOcean : Ind (both SaltWaterArea BodyOfWater) ; - - -fun SouthSandwichTrench : Ind Hole ; - --- Southeast represents the compass direction of Southeast. -fun Southeast : Ind DirectionalAttribute ; - - -fun SoutheasternAsia : Ind GeographicArea ; - -fun SoutheasternEurope : Ind GeographicArea ; - -fun SouthernAfrica : Ind GeographicArea ; - -fun SouthernAsia : Ind GeographicArea ; - -fun SouthernEurope : Ind GeographicArea ; - --- The half of the Earth that lies below the --- equator. -fun SouthernHemisphere : Ind Hemisphere ; - - --- SouthernOcean represents the Southern --- Ocean. -fun SouthernOcean : Ind (both Ocean PolarClimateZone) ; - - -fun SouthernSouthAmerica : Ind GeographicArea ; - --- Southwest represents the compass direction of Southwest. -fun Southwest : Ind DirectionalAttribute ; - - -fun SouthwesternAsia : Ind GeographicArea ; - -fun SouthwesternEurope : Ind GeographicArea ; - --- SparseVegetation describes the --- pattern of vegetation in an area where there is very little vegetation. -fun SparseVegetation : Ind Attribute ; - - -fun Squall : Class ; -fun Squall_Class : SubClass Squall WeatherProcess ; --- SquareKilometer represents a --- UnitOfMeasure equal to one square kilometer. -fun SquareKilometer : Ind UnitOfArea ; - - --- SquareMeter represents a UnitOfMeasure --- equal to one square Meter. -fun SquareMeter : Ind UnitOfArea ; - - --- (SquareUnitFn ?UNIT) denotes the --- UnitOfMeasure that is the square of the UnitOfMeasure ?UNIT. --- For example, (SquareUnitFn (KiloFn Meter)) denotes the unit --- of a square kilometer. -fun SquareUnitFn : El UnitOfMeasure -> Ind UnitOfMeasure ; - - --- Star is the class of hot gaseous astronomical bodies. -fun Star : Class ; -fun Star_Class : SubClass Star AstronomicalBody ; - --- StationaryFront is the class of --- boundary areas between two air masses that are stationary, with neither --- mass presently replacing the other. -fun StationaryFront : Class ; -fun StationaryFront_Class : SubClass StationaryFront WeatherFront ; - --- A TerrainAttribute of a region in --- which there is a wide variation in elevation and slopeGradients --- of more than 10%. -fun SteepTerrain : Ind TerrainAttribute ; - - --- Steppe is a subclass of Plain, representing --- vast, level, treeless areas of land in Asia or SE Europe. -fun Steppe : Class ; -fun Steppe_Class : SubClass Steppe Plain ; - --- SteppeClimateZone --- is the class of AridClimateZones where the dominant --- vegetation type is grasses, with no trees. Koeppen --- system 'BS'. -fun SteppeClimateZone : Class ; -fun SteppeClimateZone_Class : SubClass SteppeClimateZone AridClimateZone ; - --- A Stone is any small fragment of rock or mineral matter. -fun Stone : Class ; -fun Stone_Class : SubClass Stone Rock ; - -fun StormSystem : Class ; -fun StormSystem_Class : SubClass StormSystem WeatherSystem ; --- Strait is the subclass of BodyOfWater that --- consists of narrow water areas connecting two larger bodies of water. --- Straits are naturally occurring bodies of water. -fun Strait : Class ; -fun Strait_Class : SubClass Strait BodyOfWater ; - -fun StraitOfHormuz : Ind (both Strait SaltWaterArea) ; - --- A StreamWaterConfluence is the --- place where a stream or other tributary joins a river. -fun StreamWaterConfluence : Class ; -fun StreamWaterConfluence_Class : SubClass StreamWaterConfluence WaterArea ; - -fun StrikeSlipFault : Class ; -fun StrikeSlipFault_Class : SubClass StrikeSlipFault GeologicalFault ; -fun StrongWind : Class ; -fun StrongWind_Class : SubClass StrongWind WindProcess ; --- SubmergedLandArea is the class of land --- regions that are located beneath bodies of water. -fun SubmergedLandArea : Class ; -fun SubmergedLandArea_Class : SubClass SubmergedLandArea GeographicArea ; - --- SubtropicalDesertClimateZone is a subclass of DesertClimateZone --- that is characterized by an average temperature greater than 18 --- degrees Celsius, as well as very low rainfall. This is Koeppen --- system 'BWh'. -fun SubtropicalDesertClimateZone : Class ; -fun SubtropicalDesertClimateZone_Class : SubClass SubtropicalDesertClimateZone DesertClimateZone ; - --- SurfaceGroundArea is a subclass of --- GeographicArea that is restricted to regions whose surface is solid --- ground. A SurfaceGroundArea may be a discontinuous region overlapping --- a larger, continuous GeographicArea but excluding any WaterAreas --- enclosed therein. Rivers, lakes, reservoirs and other surface water areas --- are not part of any SurfaceGroundArea. -fun SurfaceGroundArea : Class ; -fun SurfaceGroundArea_Class : SubClass SurfaceGroundArea GeographicArea ; - -fun Swarming : Class ; -fun Swarming_Class : SubClass Swarming Motion ; --- Tailwind is the relative attribute of a --- Wind to an object when the force of the wind is applied to the back --- of the object (BackFn). A tailwind can positively affect the speed --- capability of a vehicle. -fun Tailwind : Ind Attribute ; - - --- Talc is a very soft Mineral that is --- a basic silicate of magnesium. -fun Talc : Class ; -fun Talc_Class : SubClass Talc Mineral ; - --- TemperateClimateZone is the --- subclass of ClimateZone whose warmest month has an average --- temperature greater than 10 degrees Celsius and whose coolest month --- has an average temperature between 18 degrees and _3 degrees Celsius. --- This is Class C in the Koeppen climate system. -fun TemperateClimateZone : Class ; -fun TemperateClimateZone_Class : SubClass TemperateClimateZone ClimateZone ; - -fun TemperateHardwoodForest : Class ; -fun TemperateHardwoodForest_Class : SubClass TemperateHardwoodForest (both Biome Forest) ; - -fun TemperateRainForest : Class ; -fun TemperateRainForest_Class : SubClass TemperateRainForest (both RainForest TemperateHardwoodForest) ; - --- TemperateSummerDryClimateZone is the subclass of TemperateClimateZone --- that is characterized by dry summers, and in which the wettest winter month --- has at least three times the moisture of the driest summer month. The --- driest month has less than an average of 30 mm of precipitation. Koeppen --- climate system type 'Cs'. -fun TemperateSummerDryClimateZone : Class ; -fun TemperateSummerDryClimateZone_Class : SubClass TemperateSummerDryClimateZone TemperateClimateZone ; - --- TemperateWinterDryClimateZone is a subclass of TemperateClimateZone --- characterized by having at least 10 times as much precipitation in the --- wettest summer month as in the driest winter month. Koeppen climate --- system type 'Cw'. -fun TemperateWinterDryClimateZone : Class ; -fun TemperateWinterDryClimateZone_Class : SubClass TemperateWinterDryClimateZone TemperateClimateZone ; - --- TerrainAttribute is a class of --- Attributes that describe terrain. -fun TerrainAttribute : Class ; -fun TerrainAttribute_Class : SubClass TerrainAttribute InternalAttribute ; - --- TerritorialSea is the class --- of contiguous waters over which a GeopoliticalArea claims --- jurisdiction in accordance with the United Nations Convention --- on the LawOfTheSea (LOS), Part II. A territorial sea may be --- up to 12 miles (NauticalMiles) in breadth. A subclass of --- MaritimeClaimArea. -fun TerritorialSea : Class ; -fun TerritorialSea_Class : SubClass TerritorialSea (both MaritimeClaimArea SaltWaterArea) ; - - --- (TerritorialSeaFn ?POLITY) denotes --- the TerritorialSea that is claimed by the GeopoliticalArea ?POLITY. -fun TerritorialSeaFn : El GeopoliticalArea -> Ind TerritorialSea ; - - -fun ThrustFault : Class ; -fun ThrustFault_Class : SubClass ThrustFault DipSlipFault ; -fun Thunderstorm : Class ; -fun Thunderstorm_Class : SubClass Thunderstorm WeatherProcess ; --- A TidalBore is an unusally high, fast tidal --- inflow from the sea, resulting from a high volume of water rushing from --- a wide_mouthed bay or Estuary into narrower landward areas. -fun TidalBore : Class ; -fun TidalBore_Class : SubClass TidalBore LittoralCurrent ; - --- TidalEbb is the subclass of WaterCurrents --- that are temporary and variable, but regular, currents of ocean water --- flowing seaward up to and during the time of low tide. Alternating with --- TidalFlow. -fun TidalEbb : Class ; -fun TidalEbb_Class : SubClass TidalEbb LittoralCurrent ; - --- TidalFlow is the subclass of WaterCurrents --- that are temporary and variable, but regular, currents of ocean water --- flowing landward up to and during the time of high tide. Alternating --- with TidalEbb. -fun TidalFlow : Class ; -fun TidalFlow_Class : SubClass TidalFlow LittoralCurrent ; - --- TidalProcess is the class of daily --- recurring events in which the water level in a BodyOfWater rises --- and falls with the changing position between Earth and the Moon. -fun TidalProcess : Class ; -fun TidalProcess_Class : SubClass TidalProcess InternalChange ; - --- A Tide is a vertical movement of the water level --- in a BodyOfWater due to the gravitational attraction between Earth and --- the moon. Tides are diurnally recurrent events. In most regions with --- tides, every day there are two high tides and two low tides. MixedTide --- represents a process in which the tides at either extreme are unequal. -fun Tide : Class ; -fun Tide_Class : SubClass Tide (both FlowRegion SaltWaterArea) ; - - -fun Tornado : Class ; -fun Tornado_Class : SubClass Tornado WeatherProcess ; -fun ToxicChemicalPollutionIssue : Ind PollutionIssue ; - -fun ToxicWasteDisposalIssue : Ind PollutionIssue ; - --- TreatyDocument is the subclass of --- Texts that represent written agreements between Nations. -fun TreatyDocument : Class ; -fun TreatyDocument_Class : SubClass TreatyDocument Text ; - --- TropicalClimateZone is a --- subclass of ClimateZone in which the average temperature of the --- coldest month is greater than 18 degrees Celsius. This is Class --- 'A' in the Koeppen climate classification system. -fun TropicalClimateZone : Class ; -fun TropicalClimateZone_Class : SubClass TropicalClimateZone ClimateZone ; - --- TropicalCyclone is the class of --- CyclonicStorms that occur in the Tropics and typically have --- rotational winds of hurricane force (74 mph or higher). -fun TropicalCyclone : Class ; -fun TropicalCyclone_Class : SubClass TropicalCyclone CyclonicStorm ; - -fun TropicalRainForest : Class ; -fun TropicalRainForest_Class : SubClass TropicalRainForest RainForest ; -fun TropicalTimber83Agreement : Ind Agreement ; - -fun TropicalTimber94Agreement : Ind Agreement ; - --- The Tropics is the region of --- PlanetEarth that lies between approximately 23 and one half degrees --- North latitude and 23 and one half degrees South latitude, --- encircling the globe. 'The Tropics'. See also TropicArea. -fun Tropics : Ind GeographicArea ; - - --- Tsunami is the class of highly destructive --- ocean waves caused by offshore seismic processes. -fun Tsunami : Class ; -fun Tsunami_Class : SubClass Tsunami WeatherProcess ; - --- Tundra is a subclass of flat, treeless Plains --- areas lying within the ArcticRegion. Subsoil in Tundra is permanently --- frozen. -fun Tundra : Class ; -fun Tundra_Class : SubClass Tundra (both ArcticRegion (both Biome Plain)) ; - - --- TundraClimateZone is a subclass of --- PolarClimateZone characterized by having an average temperature --- above zero degrees Celsius (but below 10 degrees) in the warmest month. --- Koeppen subtype 'ET'. -fun TundraClimateZone : Class ; -fun TundraClimateZone_Class : SubClass TundraClimateZone PolarClimateZone ; - -fun Typhoon : Class ; -fun Typhoon_Class : SubClass Typhoon TropicalCyclone ; -fun UVLevelsIssue : Ind EnvironmentalIssue ; - --- The class of regions located Below the surface of the earth. -fun UndergroundArea : Class ; -fun UndergroundArea_Class : SubClass UndergroundArea GeographicArea ; - -fun UnexplodedOrdinanceIssue : Ind EnvironmentalIssue ; - --- A UniformPerimeterArea is one --- that has a defined uniform width. -fun UniformPerimeterArea : Class ; -fun UniformPerimeterArea_Class : SubClass UniformPerimeterArea PerimeterArea ; - --- Uphill is a PositionalAttribute that --- describes the relation between two things, one of which is located --- up a slope from the other. -fun Uphill : Ind PositionalAttribute ; - - --- An UplandArea is a LandArea elevated above the surrounding --- terrain. -fun UplandArea : Class ; -fun UplandArea_Class : SubClass UplandArea LandForm ; - -fun Upstream : Ind PositionalAttribute ; - --- Upwind is a PositionalAttribute that indicates relative position --- upwind (windward) with respect to the direction that the Wind is --- blowing. -fun Upwind : Ind PositionalAttribute ; - - -fun UrbanizationIssue : Ind EnvironmentalIssue ; - --- A Valley is an area of low_lying land flanked by --- higher ground. Valleys typically contain a stream or river flowing along the valley floor. -fun Valley : Class ; -fun Valley_Class : SubClass Valley (both LandForm LowlandArea) ; - - -fun VehicleEmissionsIssue : Ind PollutionIssue ; - --- VehicularPollution is the --- subclass of Pollution in which the pollutants are vehicle emissions. -fun VehicularPollution : Class ; -fun VehicularPollution_Class : SubClass VehicularPollution Pollution ; - --- Veldt is a subclass of Grasslands which have --- scattered shrubs or trees. -fun Veldt : Class ; -fun Veldt_Class : SubClass Veldt (both Grassland Plain) ; - - --- A VolcanicCone is a hill of lava or --- pyroclastics surrounding a volcanic vent. Not as high as a --- VolcanicMountain. -fun VolcanicCone : Class ; -fun VolcanicCone_Class : SubClass VolcanicCone (both Hill Volcano) ; - - --- VolcanicEruption is the subclass of --- GeologicalProcesses in which Volcanoes erupt. -fun VolcanicEruption : Class ; -fun VolcanicEruption_Class : SubClass VolcanicEruption GeologicalProcess ; - -fun VolcanicGasRelease : Class ; -fun VolcanicGasRelease_Class : SubClass VolcanicGasRelease VolcanicEruption ; --- A VolcanicMountain is a cone_shaped --- mountain formed out of rock or ash thrown up from inside the earth, --- frequently with an opening or depression at the top. -fun VolcanicMountain : Class ; -fun VolcanicMountain_Class : SubClass VolcanicMountain (both Mountain Volcano) ; - - -fun VolcanicallyActive : Ind VolcanoStatus ; - -fun VolcanicallyDormant : Ind VolcanoStatus ; - -fun VolcanicallyExtinct : Ind VolcanoStatus ; - --- A Volcano in the broadest sense, i.e., a region --- containing a vent through which magmous and/or pyroclastic materials are --- passed from the interior of the Earth to its surface (atmospheric or --- underwater). -fun Volcano : Class ; -fun Volcano_Class : SubClass Volcano LandForm ; - -fun VolcanoStatus : Class ; -fun VolcanoStatus_Class : SubClass VolcanoStatus InternalAttribute ; --- WarmFront is the class of transitional --- weather processes occurring between a warm air mass that is advancing --- upon a cool air mass. -fun WarmFront : Class ; -fun WarmFront_Class : SubClass WarmFront WeatherFront ; - -fun WaterBorneDiseaseIssue : Ind EnvironmentalIssue ; - --- WaterCatchment is the subclass of --- Artifacts used to capture rainwater or runoff as a source --- of Freshwater. -fun WaterCatchment : Class ; -fun WaterCatchment_Class : SubClass WaterCatchment Artifact ; - --- WaterCurrent is a subclass of FlowRegions --- consisting of moving water, especially those currents found within a --- well_identified area and having an established pattern of movement, such --- as an OceanCurrent, a RipTide, or a River. WaterCurrent is --- disjoint with StaticWaterArea. As a consequence, Lakes for example --- cannot be FlowRegions, however, currents may be present in a lake. -fun WaterCurrent : Class ; -fun WaterCurrent_Class : SubClass WaterCurrent (both FlowRegion WaterArea) ; - - -fun WaterInfrastructureIssue : Ind EnvironmentalIssue ; - -fun WaterManagementIssue : Ind EnvironmentalIssue ; - --- WaterOnlyArea is a subclass of --- GeographicArea that is restricted to regions whose surface is water. --- A WaterOnlyArea may be a discontinuous region overlapping a larger, --- continuous GeographicArea but excluding any LandAreas enclosed therein. --- Dry land areas, including islands, are not part of any WaterOnlyArea. -fun WaterOnlyArea : Class ; -fun WaterOnlyArea_Class : SubClass WaterOnlyArea GeographicArea ; - -fun WaterOverutilization : Class ; -fun WaterOverutilization_Class : SubClass WaterOverutilization SocialInteraction ; --- WaterPollution is the subclass --- of Pollution processes in which Water is the polluted substance. -fun WaterPollution : Class ; -fun WaterPollution_Class : SubClass WaterPollution Pollution ; - -fun WaterPollutionIssue : Ind EnvironmentalWaterIssue ; - --- Waterfall is the subclass of StreamWaterAreas where running water --- falls steeply downhill. -fun Waterfall : Class ; -fun Waterfall_Class : SubClass Waterfall StreamWaterArea ; - --- A WatershedDivide is a summit area, or --- narrow tract of higher ground that constitutes the watershed boundary --- between two adjacent drainage basins, it divides the surface waters that --- flow naturally in one direction from those that flow in the opposite --- direction. -fun WatershedDivide : Class ; -fun WatershedDivide_Class : SubClass WatershedDivide (both LandArea UplandArea) ; - - -fun Waterspout : Class ; -fun Waterspout_Class : SubClass Waterspout WeatherProcess ; --- WeatherFront is the class of weather --- processes that are involve relationships between two air masses, such --- as a high pressure weather system or a low pressure system. -fun WeatherFront : Class ; -fun WeatherFront_Class : SubClass WeatherFront WeatherProcess ; - --- WeatherSeason is the class of seasonal --- processes that are characterized by various weather patterns. --- WeatherSeasons may recur on a regular annual basis, on a different --- pattern, or irregularly. -fun WeatherSeason : Class ; -fun WeatherSeason_Class : SubClass WeatherSeason WeatherProcess ; - --- WeatherSystem is the class of --- large_scale atmospheric processes that influence weather in a region --- for 2_5 days. -fun WeatherSystem : Class ; -fun WeatherSystem_Class : SubClass WeatherSystem WeatherProcess ; - -fun WesternAfrica : Ind GeographicArea ; - -fun WesternEurope : Ind GeographicArea ; - --- The half of the Earth that includes North --- and South America. -fun WesternHemisphere : Ind Hemisphere ; - - -fun WesternSouthAmerica : Ind GeographicArea ; - --- WetTropicalClimateZone is --- the subclass of TropicalClimateZone that is characterized by having --- no dry months. At least 60 mm of rainfall occur in the driest month. --- This is subtype 'Af' in the Koeppen climate system. -fun WetTropicalClimateZone : Class ; -fun WetTropicalClimateZone_Class : SubClass WetTropicalClimateZone TropicalClimateZone ; - -fun WetlandDegradationIssue : Ind EnvironmentalIssue ; - -fun WetlandsConvention : Ind Agreement ; - -fun WhalingConvention : Ind Agreement ; - -fun WildlifePoachingIssue : Ind EnvironmentalIssue ; - --- WindFlow is the class of variable AirStreams --- that are in the EarthsAtmosphere. -fun WindFlow : Class ; -fun WindFlow_Class : SubClass WindFlow AirStream ; - -fun WindProcess : Class ; -fun WindProcess_Class : SubClass WindProcess WeatherProcess ; -fun Windstorm : Class ; -fun Windstorm_Class : SubClass Windstorm WindProcess ; --- The WorldOcean is the collective mass of --- sea water that covers 70% of the surface of PlanetEarth, surrounding --- all of its dry land areas. Earth's individual Oceans are parts of --- the WorldOcean. -fun WorldOcean : Ind (both SaltWaterArea BodyOfWater) ; - - -fun Zud : Class ; -fun Zud_Class : SubClass Zud WeatherProcess ; --- (airTemperature ?AREA ?TEMP) means that the temperature of the --- air at ?AREA is ?TEMP. Temperature may be expressed in units of --- TemperatureMeasure, including CelsiusDegree and FahrenheitDegree, --- among others. -fun airTemperature : El Object -> El TemperatureMeasure -> Formula ; - - --- (arableLandArea ?REGION ?AMOUNT) --- means that the GeographicArea ?REGION has ?AMOUNT of land under --- cultivation with crops that are replanted after each harvest. ?AMOUNT --- may be expressed in physical units or with a percent or fraction. --- Cf. permanentCropLandArea. -fun arableLandArea : El GeographicArea -> El ConstantQuantity -> Formula ; - - --- (averagePrecipitationForPeriod ?PLACE ?PERIOD ?AMOUNT) means --- that at the GeographicArea ?PLACE, and during the TimeDuration --- ?PERIOD, the average daily precipitation was ?AMOUNT. -fun averagePrecipitationForPeriod : El GeographicArea -> El TimeDuration -> El ConstantQuantity -> Formula ; - - --- (averageRainfallForPeriod ?AREA ?MO ?AMOUNT) --- means that ?AREA receives ?AMOUNT of rain in month ?MO in an average --- year. Note that ?AMOUNT is a linear measure indicating the depth of water that --- would accumulate over ?AREA if all water were captured. -fun averageRainfallForPeriod : El GeographicArea -> El Month -> El LengthMeasure -> Formula ; - - --- (averageTemperatureForPeriod ?PLACE ?PERIOD ?AMOUNT) means that --- at the GeographicArea ?PLACE, and during the TimeDuration --- ?PERIOD, the average daily temperature was ?AMOUNT. Temperature --- may be expressed in some UnitOfTemperature, including --- CelsiusDegree and FahrenheitDegree, among others. -fun averageTemperatureForPeriod : El GeographicArea -> El TimeDuration -> El TemperatureMeasure -> Formula ; - - --- (bioindicatorForHabitat ?AREA ?SPECIES) means that the health --- of the individuals in ?SPECIES indicates the condition of their --- habitat in the GeographicArea ?AREA. -fun bioindicatorForHabitat: El GeographicArea -> Desc OrganicObject -> Formula ; - - --- (claimedTerritory ?AREA ?POLITY) --- means that some right over the GeographicArea ?AREA is claimed by --- the Agent or GeopoliticalArea ?POLITY. If two politically independent --- states or agents claim the same area, that area is a 'disputed --- territory'. -fun claimedTerritory : El GeographicArea -> El Agent -> Formula ; - - --- (climateTypeInArea ?TYPE ?REGION) --- means that all or part of the GeographicArea ?REGION is of the --- ClimateZone ?TYPE. -fun climateTypeInArea: El GeographicArea -> Desc ClimateZone -> Formula ; - - --- (cloudCoverFraction ?AREA ?AMOUNT) --- means that in the Region ?AREA, the fraction ?AMOUNT of the sky is --- covered with clouds. -fun cloudCoverFraction : El Region -> El NonnegativeRealNumber -> Formula ; - - --- (coldSeasonInArea ?AREA ?INTERVAL) --- means that in the GeographicArea ?AREA, the cold season occurs --- during the TimeInterval ?INTERVAL. -fun coldSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; - - --- (connectedDownstream ?OBJ1 ?OBJ2) --- means that ?OBJ1 is connected, remotely or immediately, with ?OBJ2 along --- a directed system such as a RiverSystem. -fun connectedDownstream : El Object -> El Object -> Formula ; - - --- (coolSeasonInArea ?AREA ?INTERVAL) --- means that in the GeographicArea ?AREA, the cool season occurs --- during the TimeInterval ?INTERVAL. For example, (coolSeasonInArea --- Angola (RecurringTimeIntervalFn May October -fun coolSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; - - --- (courseWRTCompassNorth ?OBJ1 ?OBJ2 ?HEADING) means that the course --- heading from ?OBJ1 to ?OBJ2 is ?HEADING in AngularDegrees, with --- the reference point of 000 degrees North as measured by compass on --- or at ?OBJ1. -fun courseWRTCompassNorth : El Physical -> El Physical -> El PlaneAngleMeasure -> Formula ; - - --- (courseWRTMagneticNorth ?OBJ1 ?OBJ2 ?HEADING) means that the course --- heading from ?OBJ1 to ?OBJ2 is ?HEADING in AngularDegrees, with --- the reference point of 000 degrees being the magnetic North pole. -fun courseWRTMagneticNorth : El Physical -> El Physical -> El PlaneAngleMeasure -> Formula ; - - --- (courseWRTTrueNorth ?OBJ1 ?OBJ2 ?HEADING) means that the course --- heading or track from ?OBJ1 to ?OBJ2 is ?HEADING, in AngularDegrees, --- with the reference point of 000 degrees being true North. -fun courseWRTTrueNorth : El Physical -> El Physical -> El PlaneAngleMeasure -> Formula ; - - --- (dateOpenedForSignature ?PROP ?DATE) means that as of a date --- indicated by ?DATE, document(s) may officially be signed (by the --- appropriate agents) to effect commitments to the Agreement ?PROP. -fun dateOpenedForSignature: El Proposition -> Desc TimePosition -> Formula ; - - --- (daylightHoursInterval ?PLACE ?DAY ?INTERVAL) means that in the --- Region ?PLACE, on the Day indicated by ?DAY, there is daylight --- during the TimeInterval ?INTERVAL. -fun daylightHoursInterval: El Region -> Desc Day -> El TimeInterval -> Formula ; - - --- (daylightHoursTotal ?PLACE ?DAY ?TIME) means that in the Region --- ?PLACE, on the Day indicated by ?DAY, there is daylight for a --- total TimeDuration ?LENGTH. -fun daylightHoursTotal: El Region -> Desc Day -> El TimeDuration -> Formula ; - - --- (dependentGeopoliticalArea --- ?AREA1 ?AREA2) means that ?AREA1 is a geopolitical possession of the --- GeopoliticalArea ?AREA2 and is not a geopoliticalSubdivision of --- ?AREA2. For example, (dependentGeopoliticalArea Guam UnitedStates), --- because Guam is a territory of the UnitedStates, not one of the fifty --- U.S. states. Contrast primaryGeopoliticalSubdivision. -fun dependentGeopoliticalArea : El GeographicArea -> El Agent -> Formula ; - - --- (drySeasonInArea ?AREA ?INTERVAL) --- means that in the GeographicArea ?AREA, the dry season occurs --- during the TimeInterval ?INTERVAL. For example, (drySeasonInArea --- Angola (RecurringTimeIntervalFn May October)). -fun drySeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; - - --- The altitude of an object --- above the sea level of PlanetEarth -fun earthAltitude : El Physical -> El Physical -> El LengthMeasure -> Formula ; - - --- (elevation ?OBJECT ?HEIGHT) means that the --- physical Object ?OBJECT is located on the surface of PlanetEarth --- at the vertical distance ?HEIGHT above (or below, for a negative --- quantity) SeaLevel. ?OBJECT may be a superficialPart of Earth's --- surface, such as a GeographicArea. Elevation is measured from --- SeaLevel to the vertical top of the object. -fun elevation : El Object -> El LengthMeasure -> Formula ; - - --- (environmentalProblemTypeInArea ?AREA ?PROBLEM) means that --- objects or processes of type ?PROBLEM is an environmental --- problem in the GeographicArea ?AREA. -fun environmentalProblemTypeInArea: El GeographicArea -> Desc Physical -> Formula ; - - --- The relation between WaterMotion Processes --- and the region in which they occur continuously over at least hours, but --- typically months or years. A water balloon bursting and flowing downhill --- would not use this relation, because there would be no StreamWaterArea --- to relate to. -fun flowCurrent : El WaterMotion -> El WaterArea -> Formula ; - - --- (groundSubsurfaceType ?area ?subsoil) --- means that the predominant Substance in the subsoil or subsurface layer of --- the LandArea ?area is of type ?subsoil. -fun groundSubsurfaceType: El LandArea -> Desc Substance -> Formula ; - - --- (%&groundSurfaceType ?area ?substance) means --- that the predominant Substance at the ground surface of the LandArea ?area is ?substance. -fun groundSurfaceType: El LandArea -> Desc Substance -> Formula ; - - --- (headingWRTCompassNorth ?OBJ ?DEGREE) --- means that the front_to_back axis of the Object ?OBJ points in --- the direction ?DEGREE, according to the compass carried by ?OBJ. -fun headingWRTCompassNorth : El Object -> El PlaneAngleMeasure -> Formula ; - - --- (headingWRTMagneticNorth ?OBJ ?DEGREE) --- means that the front_to_back axis of the Object ?OBJ points in --- the direction ?DEGREE, with respect to magnetic North. -fun headingWRTMagneticNorth : El Object -> El PlaneAngleMeasure -> Formula ; - - --- (headingWRTTrueNorth ?OBJ ?DEGREE) --- means that the front_to_back axis of the Object ?OBJ points in --- the direction ?DEGREE, with respect to true North. -fun headingWRTTrueNorth : El Object -> El PlaneAngleMeasure -> Formula ; - - --- (highAltitudeWindSpeed ?PLACE ?RATE) means that the Wind --- blowing above 25,000 feet at ?PLACE has a speed of ?RATE. -fun highAltitudeWindSpeed : El Object -> El ConstantQuantity -> Formula ; - - --- (highAltitudeWindVelocity ?PLACE ?SPEED ?TOWARD) means that the --- Wind blowing above 25,000 feet at ?PLACE has a speed of ?SPEED --- and is moving toward the DirectionalAttribute ?TOWARD. -fun highAltitudeWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; - - --- (highTide ?PLACE ?TIME ?AMOUNT) means that --- there is a HighTide at the Region ?PLACE at the TimeInterval ?TIME --- with the relative height ?AMOUNT. The height is given in relation to --- the datum on a standard chart. -fun highTide : El Region -> El TimeInterval -> El LengthMeasure -> Formula ; - - --- (highestTemperatureForPeriod ?PLACE ?PERIOD ?AMOUNT) means that --- at the GeographicArea ?PLACE, during the TimeDuration ?PERIOD, --- the highest temperature was ?AMOUNT. Temperature may be expressed --- in some UnitOfTemperature, including CelsiusDegree and --- FahrenheitDegree, among others. -fun highestTemperatureForPeriod : El GeographicArea -> El TimeDuration -> El TemperatureMeasure -> Formula ; - - --- (hotSeasonInArea ?AREA ?INTERVAL) --- means that in the GeographicArea ?AREA, the hot season occurs --- during the TimeInterval ?INTERVAL. For example, (hotSeasonInArea --- Angola (RecurringTimeIntervalFn November April)). -fun hotSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; - - --- (irrigatedLandArea ?REGION ?AMOUNT) --- means that the GeographicArea ?REGION has the ?AMOUNT of irrigated land. --- ?AMOUNT may be expressed in physical units or with a percent or fraction. -fun irrigatedLandArea : El GeographicArea -> El ConstantQuantity -> Formula ; - - --- (landAreaOnly ?REGION ?MEASURE) means --- that the total area(s) of solid ground within the GeographicArea --- ?REGION has the AreaMeasure ?AMOUNT. The pieces of solid ground need --- not be continuous within the region. -fun landAreaOnly : El GeographicArea -> El AreaMeasure -> Formula ; - - --- (lowAltitudeWindSpeed ?PLACE ?RATE) means that the Wind blowing --- between 500_10,000 feet at ?PLACE has a speed of ?RATE. Wind speed --- may be expressed in knots (KnotUnitOfSpeed) or as any distance per --- time unit (using (SpeedFn ?DISTANCE ?TIME)). -fun lowAltitudeWindSpeed : El Object -> El PhysicalQuantity -> Formula ; - - --- (lowAltitudeWindVelocity ?PLACE ?SPEED ?DIRECTION) means that the --- low_altitude Wind blowing at ?PLACE has a speed of ?SPEED and comes --- from the compass point ?DIRECTION. Low_altitude wind is wind blowing --- between 500_10,000 feet. -fun lowAltitudeWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; - - --- (lowTide ?PLACE ?TIME ?AMOUNT) means that --- there is a LowTide at the Region ?PLACE at the TimeInterval ?TIME --- with the relative height ?AMOUNT. The height is given in relation to --- the datum on a standard chart. -fun lowTide : El Region -> El TimeInterval -> El LengthMeasure -> Formula ; - - --- (lowestTemperatureForPeriod ?PLACE ?PERIOD ?AMOUNT) means that --- at the GeographicArea ?PLACE, during the TimeDuration ?PERIOD, --- the highest temperature was ?AMOUNT. Temperature may be expressed --- in some UnitOfTemperature, including CelsiusDegree and --- FahrenheitDegree, among others. -fun lowestTemperatureForPeriod : El GeographicArea -> El TimeDuration -> El TemperatureMeasure -> Formula ; - - --- (magneticVariation ?AREA ?DEGREE ?DIRECTION) means that in the --- GeographicArea ?AREA, the magnetic variation of a compass from --- 000 degrees true is ?DEGREE AngularDegrees in ?DIRECTION (East --- or West). -fun magneticVariation : El GeographicArea -> El PlaneAngleMeasure -> El DirectionalAttribute -> Formula ; - - --- (mapOfArea ?AREA ?POINTER) means that a map --- of the Region ?AREA can be found at the location ?POINTER. -fun mapOfArea : El Region -> El SymbolicString -> Formula ; - - --- (maritimeClaimType ?POLITY ?TYPE) --- means that the GeopoliticalArea ?POLITY claims rights over a --- MaritimeClaimArea of ?TYPE. -fun maritimeClaimType: El GeopoliticalArea -> Desc MaritimeClaimArea -> Formula ; - - --- (meanSeaLevel ?place ?measure) means that the Mean Sea --- Level (MSL) at ?place is ?measure. ?measure is a distance representing the sea level --- at ?place measured against a benchmark (and averaged over a long time). MSL is measured --- by tide gauges for maritime purposes, while geodesists use the difference between the --- local sea surface and an ideal level ocean surface (the geoid). -fun meanSeaLevel : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (mediumAltitudeWindSpeed ?PLACE ?RATE) means that the Wind --- blowing between 10,000_25,000 feet at ?PLACE has a speed of ?RATE. -fun mediumAltitudeWindSpeed : El Object -> El ConstantQuantity -> Formula ; - - --- (mediumAltitudeWindVelocity ?PLACE ?SPEED ?TOWARD) means that the --- Wind blowing between 10,000_25,000 feet at ?PLACE has a speed of --- ?SPEED and is moving toward the DirectionalAttribute ?TOWARD. -fun mediumAltitudeWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; - - --- (naturalHazardTypeInArea ?AREA ?TYPE) means that in the --- GeographicArea ?AREA, Processes of ?TYPE occur with some --- frequency and may cause damage or danger to human lives and property. -fun naturalHazardTypeInArea: El GeographicArea -> Desc Physical -> Formula ; - - --- (naturalResourceTypeInArea ?REGION ?TYPE) means that the --- GeographicArea ?REGION has resources of the kind ?TYPE. -fun naturalResourceTypeInArea: El GeographicArea -> Desc Object -> Formula ; - - --- (objectGeographicCoordinates ?OBJECT ?LAT ?LONG) means that --- the Object ?OBJECT is found at the geographic coordinates --- ?LAT and ?LONG. -fun objectGeographicCoordinates : El Object -> El Latitude -> El Longitude -> Formula ; - - --- (oppositeDirection ?DIR1 ?DIR2) --- means that the PositionalAttribute ?DIR1 points in the compass --- direction opposite to the DirectionalAttribute ?DIR2. -fun oppositeDirection : El PositionalAttribute -> El PositionalAttribute -> Formula ; - - --- (orbits ?SATELLITE ?FOCUS) means that the Object --- ?SATELLITE revolves around the AstronomicalBody ?FOCUS. -fun orbits : El Object -> El AstronomicalBody -> Formula ; - - --- This predicate is used to represent information from the CIA --- World Fact Book. (otherLandUseArea ?REGION ?AMOUNT) means that --- in the GeographicArea ?REGION, the ?AMOUNT of land has some --- use other than planting seasonal or permanent crops. ?AMOUNT may be --- expressed in physical units or with a percent or fraction. See also --- arableLandArea and permanentLandArea. -fun otherLandUseArea : El GeographicArea -> El ConstantQuantity -> Formula ; - - --- (overcastDaysInPeriod ?AREA ?PERIOD ?NUMBER) means that during the --- time ?PERIOD, the GeographicArea ?AREA experienced ?NUMBER of --- OvercastWeather days. -fun overcastDaysInPeriod : El GeographicArea -> El TimeDuration -> El NonnegativeRealNumber -> Formula ; - - --- (partyToAgreement ?AGENT ?PROP) --- means that the Agent ?AGENT has committed to the agreement ?PROP. -fun partyToAgreement : El Agent -> El Proposition -> Formula ; - - --- (permanentCropLandArea ?REGION ?AMOUNT) means that the GeographicArea --- ?REGION has ?AMOUNT of land under cultivation with crops that are not --- replanted after each harvest. This includes orchards, vineyards, coffee --- and rubber plantations. Timberland is excluded. ?AMOUNT may be expressed --- in physical units or with a percent or fraction. Cf. permanentCropLandArea. -fun permanentCropLandArea : El GeographicArea -> El ConstantQuantity -> Formula ; - - --- (precipitationAmount ?EVENT ?AMOUNT) means that in the --- Precipitation process ?EVENT, the quantity of precipitation --- that fell was ?AMOUNT. -fun precipitationAmount : El Precipitation -> El ConstantQuantity -> Formula ; - - --- (precipitationRate ?EVENT ?RATE) means that in the --- Precipitation ?EVENT, the precipitation falls at a rate --- of ?RATE. -fun precipitationRate : El Precipitation -> El FunctionQuantity -> Formula ; - - --- (precipitationState ?EVENT ?STATE) means that in the Precipitation --- ?EVENT, the stuff falling is in the PhysicalState ?STATE (e.g., --- Liquid or Solid ice). -fun precipitationState : El WeatherProcess -> El PhysicalState -> Formula ; - - --- (rainySeasonInArea ?AREA ?INTERVAL) --- means that in the GeographicArea ?AREA, the rainy or wet season occurs --- during the TimeInterval ?INTERVAL. For example, (rainySeasonInArea --- Angola (RecurringTimeIntervalFn November April)). -fun rainySeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; - - --- (regionalIssue ?AREA ?ISSUE) means --- that the AreaOfConcern ?ISSUE is relevant to a problem in the --- GeographicArea ?AREA. -fun regionalIssue : El GeographicArea -> El AreaOfConcern -> Formula ; - - --- (relativeBearing ?OBJ1?OBJ2 ?DEGREES) --- means that ?OBJ1 and ?OBJ2 are separated by the amount ?DEGREES of --- PlaneAngleMeasure. -fun relativeBearing : El Object -> El Object -> El PlaneAngleMeasure -> Formula ; - - --- (relativeHumidity ?AREA ?AMOUNT) --- means that the amount of moisture in the air at ?AREA is ?AMOUNT. --- Relative humidity expresses the amount of moisture as a percentage, --- or ratio, between the actual moisture saturation of the air compared --- to the potential moisture saturation of the air. At full (potential) --- saturation, precipitation would occur. -fun relativeHumidity : El Object -> El NonnegativeRealNumber -> Formula ; - - --- (seaSurfaceTemperature ?AREA ?TEMP) means that the --- temperature of the sea surface at ?AREA is ?TEMP. --- Temperature may be expressed in some UnitOfTemperature, --- including CelsiusDegree and FahrenheitDegree, among others. -fun seaSurfaceTemperature : El WaterArea -> El ConstantQuantity -> Formula ; - - --- The length of the boundary --- between two GeographicRegions. -fun sharedBorderLength : El GeographicRegion -> El GeographicRegion -> El LengthMeasure -> Formula ; - - --- (slopeGradient ?AREA ?SLOPE) means that --- in the LandArea ?AREA there is an incline of ?slope, where ?SLOPE is --- the percent of vertical rise over horizontal distance. slopeGradient --- gives an approximate value for nonzero slope over ?AREA, without regard --- to orientation. For example, (slopeGradient ?AREA 0.10) means that --- there is a 10% incline across the area, without specifying the --- orientation in which the land rises or falls. Also see --- slopeGradientTowardsOrientation. -fun slopeGradient : El LandArea -> El NonnegativeRealNumber -> Formula ; - - --- (slopeGradientTowardsOrientation ?AREA ?DIRECTION ?SLOPE) means that --- in the LandArea ?AREA, there is an incline of ?SLOPE towards the --- DirectionalAttribute ?DIRECTION. ?SLOPE is a RationalNumber --- representing the percent of vertical rise over horizontal distance. -fun slopeGradientTowardsOrientation : El LandArea -> El DirectionalAttribute -> El RationalNumber -> Formula ; - - --- (streamOutfall ?WATER ?RIVER) means that --- the WaterArea ?MOUTH is the outfall of the River ?RIVER. -fun streamOutfall : El WaterArea -> El River -> Formula ; - - --- (surfaceWindDirection ?PLACE ?DIRECTION) means that at ?PLACE --- the wind is coming from the compass point ?DIRECTION. For example, --- (surfaceWindDirection SanFranciscoBay Northwest) means that the --- wind in San Francisco Bay is coming from the Northwest. The wind is --- within 500 feet of Earth's surface. -fun surfaceWindDirection : El Object -> El DirectionalAttribute -> Formula ; - - --- (surfaceWindSpeed ?PLACE ?RATE) --- means that the speed of the surface Wind at the GeographicArea --- ?PLACE is ?RATE. Wind speed may be expressed in knots (KnotUnitOfSpeed) --- or as any distance per time unit (using (SpeedFn ?DISTANCE ?TIME)). --- Surface wind is found at the surface of the planet, everyday wind. --- Technically, Winds moving through the atmosphere up to an altitude --- of 500 feet. -fun surfaceWindSpeed : El Object -> El PhysicalQuantity -> Formula ; - - --- (surfaceWindVelocity ?PLACE ?SPEED ?TOWARD) means that the --- surface Wind blowing at ?PLACE has a speed of ?SPEED and is moving --- toward the DirectionalAttribute ?TOWARD. Surface wind is found at the --- surface of the planet, everyday wind. Technically, Winds moving --- through the atmosphere up to an altitude of 500 feet. -fun surfaceWindVelocity : El Object -> El PhysicalQuantity -> El DirectionalAttribute -> Formula ; - - --- (terrainInArea ?AREA ?ATTRIBUTE) --- means that the GeographicArea ?AREA is or includes a region with --- the features of TerrainArea ?ATTRIBUTE. -fun terrainInArea : El GeographicArea -> El TerrainAttribute -> Formula ; - - --- (totalArea ?REGION ?AMOUNT) means that --- the total area of ?REGION is the AreaMeasure ?AMOUNT. -fun totalArea : El Region -> El AreaMeasure -> Formula ; - - --- (totalBiomass ?PLACE ?MASS) means that the --- total amount (in weight or volume) of living matter in the Region --- ?PLACE is ?MASS. -fun totalBiomass : El GeographicArea -> El PhysicalQuantity -> Formula ; - - --- (totalCoastline ?AREA ?COASTLENGTH) --- means that the total length of all boundaries between the GeographicArea --- ?AREA and the ocean is the LengthMeasure ?COASTLENGTH. The coastline --- counted may be discontinuous and may even be along different oceans (as --- in Columbia). A totalCoastline of zero indicates a LandlockedArea. --- Note that only Ocean coastlines are counted, not any shores with inland --- waters. -fun totalCoastline : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (totalLandBoundary ?REGION ?LENGTH) --- means that the GeographicArea ?REGION has a total LengthMeasure --- ?LENGTH of land boundaries between it and other countries. Note that --- the boundaries included in the total length may be discontinuous, as when --- interrupted by stretches of Seacoast. -fun totalLandBoundary : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (totalPrecipitationForPeriod ?PLACE ?PERIOD ?AMOUNT) means that --- at the GeographicArea ?PLACE, and during the TimeDuration ?PERIOD, --- the total amount of precipitation was ?AMOUNT. -fun totalPrecipitationForPeriod : El GeographicArea -> El TimeDuration -> El ConstantQuantity -> Formula ; - - --- (unratifiedSignatoryToAgreement ?AGENT ?PROP) means that --- the Agent ?AGENT has signed a document to begin the process of --- committing to the Agreement ?PROP, but that a ratification --- process required to complete the commitment has not yet occurred. -fun unratifiedSignatoryToAgreement : El Agent -> El Proposition -> Formula ; - - --- (vegetationType ?area ?type) associates --- a particular GeographicArea with a type of Plant that is found there. -fun vegetationType : El GeographicArea -> Desc Plant -> Formula ; - - --- (vegetationTypePattern ?AREA ?TYPE ?DENSITY) means that in the --- GeographicArea ?AREA the Plant ?TYPE is found with ?DENSITY. -fun vegetationTypePattern: El GeographicArea -> Desc Plant -> El Attribute -> Formula ; - - --- (warmSeasonInArea ?AREA ?INTERVAL) --- means that in the GeographicArea ?AREA, the warm season occurs --- during the TimeInterval ?INTERVAL. -fun warmSeasonInArea: El GeographicArea -> Desc TimeInterval -> Formula ; - - --- (waterAreaOnly ?REGION ?MEASURE) means --- that the total area(s) of surface water within the GeographicArea --- ?REGION has the AreaMeasure ?AMOUNT. The pieces of water need not be --- continuous within the region. -fun waterAreaOnly : El GeographicArea -> El AreaMeasure -> Formula ; - - --- (waterDepth ?AREA ?LENGTH) means that the --- depth of water at the Region ?AREA is ?LENGTH. -fun waterDepth : El WaterArea -> El LengthMeasure -> Formula ; - - --- (windRelativePosition ?OBJECT ?POSITION) means that the Wind blows --- at ?OBJECT from the relative vector ?POSITION. E.g., Crosswind, --- Headwind, Tailwind. -fun windRelativePosition : El Object -> El Attribute -> Formula ; } diff --git a/examples/SUMO/Government.gf b/examples/SUMO/Government.gf index 1e0aed1b2..9e9697191 100644 --- a/examples/SUMO/Government.gf +++ b/examples/SUMO/Government.gf @@ -1,1856 +1,1649 @@ -abstract Government = open Merge, Mid_level_ontology, Geography in { +abstract Government = MidLevelOntology, Geography ** { + fun ASEANRegionalForum : Ind OrganizationOfNations ; + fun AbsoluteMonarchy : Ind FormOfGovernment ; + -- AcceptsICJJurisdiction is the + -- Attribute of a legal system that accepts rulings of the + -- InternationalCourtOfJustice. + fun AcceptsICJJurisdiction : Ind LegalSystemAttribute ; -fun ASEANRegionalForum : Ind OrganizationOfNations ; + fun ActingConsulGeneral : Ind ForeignServicePosition ; -fun AbsoluteMonarchy : Ind FormOfGovernment ; + fun AdministrationAndManagement : Ind AreaOfConcern ; --- AcceptsICJJurisdiction is the --- Attribute of a legal system that accepts rulings of the --- InternationalCourtOfJustice. -fun AcceptsICJJurisdiction : Ind LegalSystemAttribute ; + fun AdvisoryCommittee : Ind MemberStatus ; + fun AfricanCaribbeanAndPacificGroupOfStates : Ind OrganizationOfNations ; -fun ActingConsulGeneral : Ind ForeignServicePosition ; + fun AfricanDevelopmentBank : Ind OrganizationOfNations ; -fun AdministrationAndManagement : Ind AreaOfConcern ; + fun AgencyForTheFrenchSpeakingCommunity : Ind OrganizationOfNations ; -fun AdvisoryCommittee : Ind MemberStatus ; + fun AgencyForTheProhibitionOfNuclearWeaponsInLatinAmericaAndTheCaribbean : Ind OrganizationOfNations ; -fun AfricanCaribbeanAndPacificGroupOfStates : Ind OrganizationOfNations ; + fun AgriculturalDevelopment : Ind AreaOfConcern ; -fun AfricanDevelopmentBank : Ind OrganizationOfNations ; + -- Ambassador is the Attribute of the most + -- highly_ranked foreign service representatives from the government of one + -- country to another. + fun Ambassador : Ind ForeignServicePosition ; -fun AgencyForTheFrenchSpeakingCommunity : Ind OrganizationOfNations ; + -- The AmericanInstituteInTaiwan + -- is a private, nonprofit corporation under United States government + -- oversight that conducts relations with Taiwan. + fun AmericanInstituteInTaiwan : Ind Organization ; -fun AgencyForTheProhibitionOfNuclearWeaponsInLatinAmericaAndTheCaribbean : Ind OrganizationOfNations ; + fun Anarchy : Ind FormOfGovernment ; -fun AgriculturalDevelopment : Ind AreaOfConcern ; + fun AndeanCommunityOfNations : Ind OrganizationOfNations ; --- Ambassador is the Attribute of the most --- highly_ranked foreign service representatives from the government of one --- country to another. -fun Ambassador : Ind ForeignServicePosition ; + fun AntarcticTreatyCouncil : Ind OrganizationOfNations ; + -- Antiterrorism and Effective + -- Death Penalty Act modifies the Immigration and Nationality Act + -- was enacted in 1996 and specifies that: + -- (1) It is unlawful to provide funds or other material support to a + -- designated FTO. + -- (2) Representatives and certain members of a designated FTO can be denied + -- visas or excluded from the United States. + -- (3) US financial institutions must block funds of designated FTOs and their + -- agents and must report the blockage to the US Department of the Treasury. + fun AntiterrorismAndEffectiveDeathPenaltyAct : Ind Proposition ; --- The AmericanInstituteInTaiwan --- is a private, nonprofit corporation under United States government --- oversight that conducts relations with Taiwan. -fun AmericanInstituteInTaiwan : Ind Organization ; + -- AppealsCourt is the class of + -- JudicialOrganizations that review cases from lower courts on appeal. + fun AppealsCourt : Class ; + fun AppealsCourt_Class : SubClass AppealsCourt JudicialOrganization ; + fun ArabBankForEconomicDevelopmentInAfrica : Ind OrganizationOfNations ; -fun Anarchy : Ind FormOfGovernment ; + fun ArabCooperationCouncil : Ind OrganizationOfNations ; -fun AndeanCommunityOfNations : Ind OrganizationOfNations ; + fun ArabFundForEconomicAndSocialDevelopment : Ind OrganizationOfNations ; -fun AntarcticTreatyCouncil : Ind OrganizationOfNations ; + fun ArabLeague : Ind OrganizationOfNations ; --- Antiterrorism and Effective --- Death Penalty Act modifies the Immigration and Nationality Act --- was enacted in 1996 and specifies that: --- (1) It is unlawful to provide funds or other material support to a --- designated FTO. --- (2) Representatives and certain members of a designated FTO can be denied --- visas or excluded from the United States. --- (3) US financial institutions must block funds of designated FTOs and their --- agents and must report the blockage to the US Department of the Treasury. -fun AntiterrorismAndEffectiveDeathPenaltyAct : Ind Proposition ; + fun ArabMaghrebUnion : Ind OrganizationOfNations ; + fun ArabMonetaryFund : Ind OrganizationOfNations ; --- AppealsCourt is the class of --- JudicialOrganizations that review cases from lower courts on appeal. -fun AppealsCourt : Class ; -fun AppealsCourt_Class : SubClass AppealsCourt JudicialOrganization ; + fun ArmsControl : Ind TransnationalIssue ; -fun ArabBankForEconomicDevelopmentInAfrica : Ind OrganizationOfNations ; + fun AsiaPacificEconomicCooperation : Ind OrganizationOfNations ; -fun ArabCooperationCouncil : Ind OrganizationOfNations ; + fun AsianDevelopmentBank : Ind OrganizationOfNations ; -fun ArabFundForEconomicAndSocialDevelopment : Ind OrganizationOfNations ; + fun AssociateMember : Ind MemberStatus ; -fun ArabLeague : Ind OrganizationOfNations ; + fun AssociatePartner : Ind MemberStatus ; -fun ArabMaghrebUnion : Ind OrganizationOfNations ; + fun AssociationOfSoutheastAsianNations : Ind OrganizationOfNations ; -fun ArabMonetaryFund : Ind OrganizationOfNations ; + fun AustraliaGroup : Ind OrganizationOfNations ; -fun ArmsControl : Ind TransnationalIssue ; + fun AustraliaNewZealandUnitedStatesSecurityTreaty : Ind OrganizationOfNations ; -fun AsiaPacificEconomicCooperation : Ind OrganizationOfNations ; + -- AuthoritarianRegime is the + -- attribute of a government that rules autocratically, not allowing + -- opposition. + fun AuthoritarianRegime : Ind FormOfGovernment ; -fun AsianDevelopmentBank : Ind OrganizationOfNations ; + fun AuthoritarianSocialist : Ind FormOfGovernment ; -fun AssociateMember : Ind MemberStatus ; + fun BankForInternationalSettlements : Ind OrganizationOfNations ; -fun AssociatePartner : Ind MemberStatus ; + fun BeneluxEconomicUnion : Ind OrganizationOfNations ; -fun AssociationOfSoutheastAsianNations : Ind OrganizationOfNations ; + -- BicameralLegislature is the + -- Attribute of governments whose legislative branches have two + -- legislative chambers. For example, in the UnitedStates the legislative + -- branch comprises the Senate and the House of Representatives. + fun BicameralLegislature : Ind FormOfGovernment ; -fun AustraliaGroup : Ind OrganizationOfNations ; + fun BigSeven : Ind OrganizationOfNations ; -fun AustraliaNewZealandUnitedStatesSecurityTreaty : Ind OrganizationOfNations ; + fun BigSix : Ind OrganizationOfNations ; --- AuthoritarianRegime is the --- attribute of a government that rules autocratically, not allowing --- opposition. -fun AuthoritarianRegime : Ind FormOfGovernment ; + fun BlackSeaEconomicCooperationZone : Ind OrganizationOfNations ; + fun BoardOfTrusteesMember : Ind MemberStatus ; -fun AuthoritarianSocialist : Ind FormOfGovernment ; + fun BoundaryDetermination : Ind TransnationalIssue ; -fun BankForInternationalSettlements : Ind OrganizationOfNations ; + fun BritishCrownColony : Class ; + fun BritishCrownColony_Class : SubClass BritishCrownColony OverseasArea ; -fun BeneluxEconomicUnion : Ind OrganizationOfNations ; + fun CBWExportControls : Ind TransnationalIssue ; --- BicameralLegislature is the --- Attribute of governments whose legislative branches have two --- legislative chambers. For example, in the UnitedStates the legislative --- branch comprises the Senate and the House of Representatives. -fun BicameralLegislature : Ind FormOfGovernment ; + -- (CabinetFn ?AREA) denotes the + -- GovernmentCabinet associated with the government of the + -- GeopoliticalArea ?AREA. + fun CabinetFn : El GeopoliticalArea -> Ind GovernmentOrganization ; + fun CaribbeanCommunityAndCommonMarket : Ind OrganizationOfNations ; -fun BigSeven : Ind OrganizationOfNations ; + fun CaribbeanDevelopmentBank : Ind OrganizationOfNations ; -fun BigSix : Ind OrganizationOfNations ; + fun CategoryIIIMember : Ind MemberStatus ; -fun BlackSeaEconomicCooperationZone : Ind OrganizationOfNations ; + fun CategoryIIMember : Ind MemberStatus ; -fun BoardOfTrusteesMember : Ind MemberStatus ; + fun CategoryIMember : Ind MemberStatus ; -fun BoundaryDetermination : Ind TransnationalIssue ; + fun CentralAfricanStatesDevelopmentBank : Ind OrganizationOfNations ; -fun BritishCrownColony : Class ; -fun BritishCrownColony_Class : SubClass BritishCrownColony OverseasArea ; -fun CBWExportControls : Ind TransnationalIssue ; + fun CentralAmericanBankForEconomicIntegration : Ind OrganizationOfNations ; --- (CabinetFn ?AREA) denotes the --- GovernmentCabinet associated with the government of the --- GeopoliticalArea ?AREA. -fun CabinetFn : El GeopoliticalArea -> Ind GovernmentOrganization ; + fun CentralAmericanCommonMarket : Ind OrganizationOfNations ; + fun CentralEuropeanInitiative : Ind OrganizationOfNations ; -fun CaribbeanCommunityAndCommonMarket : Ind OrganizationOfNations ; + fun Chairman : Ind Position ; -fun CaribbeanDevelopmentBank : Ind OrganizationOfNations ; + -- ChargeDAffaires is the Attribute of + -- foreign servicer officers representing their governments abroad as + -- Charges d'Affaires. + fun ChargeDAffaires : Ind ForeignServicePosition ; -fun CategoryIIIMember : Ind MemberStatus ; + fun Chiefdom : Ind FormOfGovernment ; -fun CategoryIIMember : Ind MemberStatus ; + fun ChildHealthServices : Ind AreaOfConcern ; -fun CategoryIMember : Ind MemberStatus ; + -- CivilLaw is the attribute of legal systems + -- based ultimately on the code of civil law developed in Ancient Rome. + -- Civil law systems are characterized by their expression of laws in written + -- code and statute and by their effort to use general principles to define + -- and rationalize the laws. + fun CivilLaw : Ind LegalSystemAttribute ; -fun CentralAfricanStatesDevelopmentBank : Ind OrganizationOfNations ; + fun CivilPoliceTraining : Ind AreaOfConcern ; -fun CentralAmericanBankForEconomicIntegration : Ind OrganizationOfNations ; + fun ColomboPlan : Ind OrganizationOfNations ; -fun CentralAmericanCommonMarket : Ind OrganizationOfNations ; + fun CommissionForSocialDevelopment : Ind InternationalOrganization ; -fun CentralEuropeanInitiative : Ind OrganizationOfNations ; + fun CommissionOnCrimePreventionAndCriminalJustice : Ind InternationalOrganization ; -fun Chairman : Ind Position ; + fun CommissionOnHumanRights : Ind InternationalOrganization ; --- ChargeDAffaires is the Attribute of --- foreign servicer officers representing their governments abroad as --- Charges d'Affaires. -fun ChargeDAffaires : Ind ForeignServicePosition ; + fun CommissionOnNarcoticsDrugs : Ind InternationalOrganization ; + fun CommissionOnPopulationAndDevelopment : Ind InternationalOrganization ; -fun Chiefdom : Ind FormOfGovernment ; + fun CommissionOnScienceAndTechnologyForDevelopment : Ind InternationalOrganization ; -fun ChildHealthServices : Ind AreaOfConcern ; + fun CommissionOnSustainableDevelopment : Ind InternationalOrganization ; --- CivilLaw is the attribute of legal systems --- based ultimately on the code of civil law developed in Ancient Rome. --- Civil law systems are characterized by their expression of laws in written --- code and statute and by their effort to use general principles to define --- and rationalize the laws. -fun CivilLaw : Ind LegalSystemAttribute ; + fun CommissionOnTheStatusOfWomen : Ind InternationalOrganization ; + fun Commissioner : Ind MemberStatus ; -fun CivilPoliceTraining : Ind AreaOfConcern ; + fun Commonwealth : Ind FormOfGovernment ; -fun ColomboPlan : Ind OrganizationOfNations ; + fun CommonwealthOfIndependentStates : Ind OrganizationOfNations ; -fun CommissionForSocialDevelopment : Ind InternationalOrganization ; + fun CommonwealthOfNations : Ind OrganizationOfNations ; -fun CommissionOnCrimePreventionAndCriminalJustice : Ind InternationalOrganization ; + fun CommunicationsCoordination : Ind AreaOfConcern ; -fun CommissionOnHumanRights : Ind InternationalOrganization ; + fun CommunistState : Ind FormOfGovernment ; -fun CommissionOnNarcoticsDrugs : Ind InternationalOrganization ; + fun CompactOfFreeAssociationWithNewZealand : Ind FormOfGovernment ; -fun CommissionOnPopulationAndDevelopment : Ind InternationalOrganization ; + fun CompactOfFreeAssociationWithUnitedStates : Ind FormOfGovernment ; -fun CommissionOnScienceAndTechnologyForDevelopment : Ind InternationalOrganization ; + fun CompensationAndReparation : Ind AreaOfConcern ; -fun CommissionOnSustainableDevelopment : Ind InternationalOrganization ; + -- CompulsorySuffrageLaw is a law that + -- requires all eligible voters in a country to vote, under threat of some + -- penalty. + fun CompulsorySuffrageLaw : Ind SuffrageLaw ; -fun CommissionOnTheStatusOfWomen : Ind InternationalOrganization ; + -- The class Constitution includes the bodies of + -- abstract principles formulated to guide the laws, institutions and practices + -- of various Governments. Also see ConstitutionDocument. + fun Constitution : Class ; + fun Constitution_Class : SubClass Constitution Proposition ; -fun Commissioner : Ind MemberStatus ; + -- ConstitutionDocument is the class + -- of information_containing objects in which the Constitution of a + -- government is encoded. + fun ConstitutionDocument : Class ; + fun ConstitutionDocument_Class : SubClass ConstitutionDocument ContentBearingObject ; -fun Commonwealth : Ind FormOfGovernment ; + -- (ConstitutionFn ?AREA) denotes a class + -- containing all Constitutions adopted by the government of the + -- GeopoliticalArea ?AREA. For example, (ConstitutionFn UnitedStates) + -- contains the ConstitutionOfTheUnitedStates. + fun ConstitutionFn: El GeopoliticalArea -> Desc Constitution ; -fun CommonwealthOfIndependentStates : Ind OrganizationOfNations ; + -- ConstitutionalCourt is the class of + -- JudicialOrganizations that rule on constitutional matters, in countries + -- that have a Constitution. + fun ConstitutionalCourt : Class ; + fun ConstitutionalCourt_Class : SubClass ConstitutionalCourt JudicialOrganization ; -fun CommonwealthOfNations : Ind OrganizationOfNations ; + fun ConstitutionalDemocracy : Ind FormOfGovernment ; -fun CommunicationsCoordination : Ind AreaOfConcern ; + fun ConstitutionalDemocraticRepublic : Ind FormOfGovernment ; -fun CommunistState : Ind FormOfGovernment ; + -- ConstitutionalGovernment is + -- the attribute of a government whose authority and rule are guided by + -- principles expressed in a written Constitution. + fun ConstitutionalGovernment : Ind FormOfGovernment ; -fun CompactOfFreeAssociationWithNewZealand : Ind FormOfGovernment ; + fun ConstitutionalMonarchy : Ind FormOfGovernment ; -fun CompactOfFreeAssociationWithUnitedStates : Ind FormOfGovernment ; + fun ConstitutionalParliamentaryDemocracy : Ind FormOfGovernment ; -fun CompensationAndReparation : Ind AreaOfConcern ; + fun ConstitutionalRepublic : Ind FormOfGovernment ; --- CompulsorySuffrageLaw is a law that --- requires all eligible voters in a country to vote, under threat of some --- penalty. -fun CompulsorySuffrageLaw : Ind SuffrageLaw ; + -- Consul is the Attribute of foreign service + -- officers representing their governments abroad as Consuls. + fun Consul : Ind ForeignServicePosition ; + -- ConsulGeneral is the Attribute of + -- foreign service officers representing their governments abroad as + -- Consuls General. + fun ConsulGeneral : Ind ForeignServicePosition ; --- The class Constitution includes the bodies of --- abstract principles formulated to guide the laws, institutions and practices --- of various Governments. Also see ConstitutionDocument. -fun Constitution : Class ; -fun Constitution_Class : SubClass Constitution Proposition ; + -- Consulate is a class of government + -- organizations that represent one nation within the territory of a second + -- nation. Consulates offer services for citizens of their own country + -- abroad, as well as for citizens of the host country who have dealings + -- with the country represented by the consulate general. See also + -- ConsulateGeneral. + fun Consulate : Class ; + fun Consulate_Class : SubClass Consulate DiplomaticOrganization ; --- ConstitutionDocument is the class --- of information_containing objects in which the Constitution of a --- government is encoded. -fun ConstitutionDocument : Class ; -fun ConstitutionDocument_Class : SubClass ConstitutionDocument ContentBearingObject ; + -- ConsulateGeneral is a class of + -- government organizations that represent one nation within the territory of + -- a second nation. Consulates General offer a wider variety of services + -- than do Consulates. + fun ConsulateGeneral : Class ; + fun ConsulateGeneral_Class : SubClass ConsulateGeneral DiplomaticOrganization ; --- (ConstitutionFn ?AREA) denotes a class --- containing all Constitutions adopted by the government of the --- GeopoliticalArea ?AREA. For example, (ConstitutionFn UnitedStates) --- contains the ConstitutionOfTheUnitedStates. -fun ConstitutionFn: El GeopoliticalArea -> Desc Constitution ; + fun ControlBiologicalAndChemicalWeapons : Ind TransnationalIssue ; + fun ControlNuclearWeapons : Ind TransnationalIssue ; --- ConstitutionalCourt is the class of --- JudicialOrganizations that rule on constitutional matters, in countries --- that have a Constitution. -fun ConstitutionalCourt : Class ; -fun ConstitutionalCourt_Class : SubClass ConstitutionalCourt JudicialOrganization ; + fun ControlWeaponsOfMassDestruction : Ind TransnationalIssue ; -fun ConstitutionalDemocracy : Ind FormOfGovernment ; + fun ConventionalArmsControl : Ind TransnationalIssue ; -fun ConstitutionalDemocraticRepublic : Ind FormOfGovernment ; + fun CooperatingState : Ind MemberStatus ; --- ConstitutionalGovernment is --- the attribute of a government whose authority and rule are guided by --- principles expressed in a written Constitution. -fun ConstitutionalGovernment : Ind FormOfGovernment ; + fun CooperationInCivilAviation : Ind AreaOfConcern ; + fun CoordinateCreditPolicy : Ind TransnationalIssue ; -fun ConstitutionalMonarchy : Ind FormOfGovernment ; + -- The + -- CoordinatingCommitteeOnExportControls was abolished as of March 31, + -- 1994, and its members formed the WassenaarArrangement on July 12, 1996, + -- with expanded membership and a post_Cold War aim of voluntary export + -- controls on conventional arms and dual_use goods and technologies. + fun CoordinatingCommitteeOnExportControls : Ind OrganizationOfNations ; -fun ConstitutionalParliamentaryDemocracy : Ind FormOfGovernment ; + fun Coprincipality : Ind FormOfGovernment ; -fun ConstitutionalRepublic : Ind FormOfGovernment ; + fun CorrespondentMember : Ind MemberStatus ; --- Consul is the Attribute of foreign service --- officers representing their governments abroad as Consuls. -fun Consul : Ind ForeignServicePosition ; + fun CouncilForMutualEconomicAssistance : Ind OrganizationOfNations ; + -- The + -- CouncilOfArabEconomicUnity was established in 1957 but did not become + -- effective until May 30, 1964. + fun CouncilOfArabEconomicUnity : Ind OrganizationOfNations ; --- ConsulGeneral is the Attribute of --- foreign service officers representing their governments abroad as --- Consuls General. -fun ConsulGeneral : Ind ForeignServicePosition ; + fun CouncilOfEurope : Ind OrganizationOfNations ; + fun CouncilOfTheBalticSeaStates : Ind OrganizationOfNations ; --- Consulate is a class of government --- organizations that represent one nation within the territory of a second --- nation. Consulates offer services for citizens of their own country --- abroad, as well as for citizens of the host country who have dealings --- with the country represented by the consulate general. See also --- ConsulateGeneral. -fun Consulate : Class ; -fun Consulate_Class : SubClass Consulate DiplomaticOrganization ; + fun CouncilOfTheEntente : Ind OrganizationOfNations ; --- ConsulateGeneral is a class of --- government organizations that represent one nation within the territory of --- a second nation. Consulates General offer a wider variety of services --- than do Consulates. -fun ConsulateGeneral : Class ; -fun ConsulateGeneral_Class : SubClass ConsulateGeneral DiplomaticOrganization ; + fun CrimePrevention : Ind AreaOfConcern ; -fun ControlBiologicalAndChemicalWeapons : Ind TransnationalIssue ; + fun CulturalCooperation : Ind TransnationalIssue ; -fun ControlNuclearWeapons : Ind TransnationalIssue ; + -- Democracy is the attribute of a government + -- whose authority and rule are based in the will of the people governed. + -- The will of the people is usually expressed through Elections, direct or + -- indirect. + fun Democracy : Ind FormOfGovernment ; -fun ControlWeaponsOfMassDestruction : Ind TransnationalIssue ; + -- The US Government + -- organization founded in 2002 to consolidate and organize + -- national_level preparations to thwart security threats, primarily + -- terrorist attacks, against the United States of America. + fun DepartmentOfHomelandSecurity : Ind GovernmentOrganization ; -fun ConventionalArmsControl : Ind TransnationalIssue ; + -- DependencyOrSpecialSovereigntyArea is a subclass of + -- GeopoliticalArea, representing the classification 'Dependency or Special + -- Sovereignty Area' used by the CIA World Fact Book. Cf. + -- IndependentState. + fun DependencyOrSpecialSovereigntyArea : Class ; + fun DependencyOrSpecialSovereigntyArea_Class : SubClass DependencyOrSpecialSovereigntyArea GeopoliticalArea ; -fun CooperatingState : Ind MemberStatus ; + fun DialoguePartner : Ind MemberStatus ; -fun CooperationInCivilAviation : Ind AreaOfConcern ; + fun Dictatorship : Ind FormOfGovernment ; -fun CoordinateCreditPolicy : Ind TransnationalIssue ; + -- DiplomaticAgent is a generic Attribute + -- of persons charged to represent one national government to another nation + -- or international organization. This includes any Ambassador or head of + -- a diplomatic mission. Individuals with this attribute may also hold a + -- career diplomatic position (see ForeignServicePosition). + fun DiplomaticAgent : Ind ForeignServicePosition ; --- The --- CoordinatingCommitteeOnExportControls was abolished as of March 31, --- 1994, and its members formed the WassenaarArrangement on July 12, 1996, --- with expanded membership and a post_Cold War aim of voluntary export --- controls on conventional arms and dual_use goods and technologies. -fun CoordinatingCommitteeOnExportControls : Ind OrganizationOfNations ; + -- DiplomaticOrganization is the + -- general class of government organizations that represent one nation in + -- official government business with other nations. + fun DiplomaticOrganization : Class ; + fun DiplomaticOrganization_Class : SubClass DiplomaticOrganization GovernmentOrganization ; + fun EastAfricanDevelopmentBank : Ind OrganizationOfNations ; -fun Coprincipality : Ind FormOfGovernment ; + fun EcclesiasticalGovernment : Ind FormOfGovernment ; -fun CorrespondentMember : Ind MemberStatus ; + fun EconomicAndSocialCommissionForAsiaAndThePacific : Ind InternationalOrganization ; -fun CouncilForMutualEconomicAssistance : Ind OrganizationOfNations ; + fun EconomicAndSocialCommissionForWesternAsia : Ind InternationalOrganization ; --- The --- CouncilOfArabEconomicUnity was established in 1957 but did not become --- effective until May 30, 1964. -fun CouncilOfArabEconomicUnity : Ind OrganizationOfNations ; + -- The EconomicAndSocialCouncil is + -- the coordinating organization for the social and economic work of the + -- UnitedNations. It comprises five regional commissions and nine + -- functional commissions. + fun EconomicAndSocialCouncil : Ind OrganizationOfNations ; + fun EconomicCommissionForAfrica : Ind InternationalOrganization ; -fun CouncilOfEurope : Ind OrganizationOfNations ; + fun EconomicCommissionForEurope : Ind InternationalOrganization ; -fun CouncilOfTheBalticSeaStates : Ind OrganizationOfNations ; + fun EconomicCommissionForLatinAmericaAndTheCaribbean : Ind InternationalOrganization ; -fun CouncilOfTheEntente : Ind OrganizationOfNations ; + fun EconomicCommunityOfTheGreatLakesCountries : Ind OrganizationOfNations ; -fun CrimePrevention : Ind AreaOfConcern ; + fun EconomicCommunityOfWestAfricanStates : Ind OrganizationOfNations ; -fun CulturalCooperation : Ind TransnationalIssue ; + fun EconomicCooperation : Ind TransnationalIssue ; --- Democracy is the attribute of a government --- whose authority and rule are based in the will of the people governed. --- The will of the people is usually expressed through Elections, direct or --- indirect. -fun Democracy : Ind FormOfGovernment ; + fun EconomicCooperationOrganization : Ind OrganizationOfNations ; + fun EconomicDevelopment : Ind AreaOfConcern ; --- The US Government --- organization founded in 2002 to consolidate and organize --- national_level preparations to thwart security threats, primarily --- terrorist attacks, against the United States of America. -fun DepartmentOfHomelandSecurity : Ind GovernmentOrganization ; + fun EconomicIntegration : Ind TransnationalIssue ; + fun EconomicPolicyCoordination : Ind TransnationalIssue ; --- DependencyOrSpecialSovereigntyArea is a subclass of --- GeopoliticalArea, representing the classification 'Dependency or Special --- Sovereignty Area' used by the CIA World Fact Book. Cf. --- IndependentState. -fun DependencyOrSpecialSovereigntyArea : Class ; -fun DependencyOrSpecialSovereigntyArea_Class : SubClass DependencyOrSpecialSovereigntyArea GeopoliticalArea ; + fun EducationalCooperation : Ind (both TransnationalIssue AreaOfConcern) ; -fun DialoguePartner : Ind MemberStatus ; + fun EfficientCustomsAdministration : Ind (both TransnationalIssue AreaOfConcern ) ; -fun Dictatorship : Ind FormOfGovernment ; + -- (ElectionFn ?ORG) denotes the class of + -- Elections conducted by the GeopoliticalArea or Organization ?ORG, + -- in which offices or issues pertaining to ?ORG are voted upon. + fun ElectionFn: El Agent -> Desc Election ; --- DiplomaticAgent is a generic Attribute --- of persons charged to represent one national government to another nation --- or international organization. This includes any Ambassador or head of --- a diplomatic mission. Individuals with this attribute may also hold a --- career diplomatic position (see ForeignServicePosition). -fun DiplomaticAgent : Ind ForeignServicePosition ; + fun EliminateChemicalWeapons : Ind TransnationalIssue ; + -- Embassy is the class of top_ranked + -- GovernmentOrganizations that represent one nation within the boundaries + -- of another. Not all nations have embassy_level representation from other + -- nations. + fun Embassy : Class ; + fun Embassy_Class : SubClass Embassy DiplomaticOrganization ; --- DiplomaticOrganization is the --- general class of government organizations that represent one nation in --- official government business with other nations. -fun DiplomaticOrganization : Class ; -fun DiplomaticOrganization_Class : SubClass DiplomaticOrganization GovernmentOrganization ; + fun EmergingDemocracy : Ind FormOfGovernment ; -fun EastAfricanDevelopmentBank : Ind OrganizationOfNations ; + fun EmigrationAndImmigrationIssues : Ind (both TransnationalIssue AreaOfConcern) ; -fun EcclesiasticalGovernment : Ind FormOfGovernment ; + fun EnergyAndTheEnvironment : Ind TransnationalIssue ; -fun EconomicAndSocialCommissionForAsiaAndThePacific : Ind InternationalOrganization ; + fun EnergyCooperation : Ind (both TransnationalIssue AreaOfConcern) ; -fun EconomicAndSocialCommissionForWesternAsia : Ind InternationalOrganization ; + -- EnglishCommonLaw is the attribute of + -- legal systems based on the common law developed in England and influential + -- in its English_speaking colonies. Common law is characterized by laws and + -- rulings based on precedent and custom, rather than on written statute. + fun EnglishCommonLaw : Ind LegalSystemAttribute ; --- The EconomicAndSocialCouncil is --- the coordinating organization for the social and economic work of the --- UnitedNations. It comprises five regional commissions and nine --- functional commissions. -fun EconomicAndSocialCouncil : Ind OrganizationOfNations ; + fun EnvironmentalCooperation : Ind TransnationalIssue ; + fun EuroAtlanticPartnershipCouncil : Ind OrganizationOfNations ; -fun EconomicCommissionForAfrica : Ind InternationalOrganization ; + fun EuropeanBankForReconstructionAndDevelopment : Ind OrganizationOfNations ; -fun EconomicCommissionForEurope : Ind InternationalOrganization ; + -- The EuropeanCommunity was merged into + -- the EuropeanUnion on February 7, 1992. + fun EuropeanCommunity : Ind OrganizationOfNations ; -fun EconomicCommissionForLatinAmericaAndTheCaribbean : Ind InternationalOrganization ; + fun EuropeanFreeTradeAssociation : Ind OrganizationOfNations ; -fun EconomicCommunityOfTheGreatLakesCountries : Ind OrganizationOfNations ; + fun EuropeanInvestmentBank : Ind OrganizationOfNations ; -fun EconomicCommunityOfWestAfricanStates : Ind OrganizationOfNations ; + fun EuropeanMonetaryUnion : Ind OrganizationOfNations ; -fun EconomicCooperation : Ind TransnationalIssue ; + fun EuropeanOrganizationForNuclearResearch : Ind OrganizationOfNations ; -fun EconomicCooperationOrganization : Ind OrganizationOfNations ; + fun EuropeanSpaceAgency : Ind OrganizationOfNations ; -fun EconomicDevelopment : Ind AreaOfConcern ; + fun EuropeanUnion : Ind OrganizationOfNations ; -fun EconomicIntegration : Ind TransnationalIssue ; + fun ExclusiveMaleSuffrage : Ind RestrictedSuffrage ; -fun EconomicPolicyCoordination : Ind TransnationalIssue ; + fun ExecutiveBoardMember : Ind MemberStatus ; -fun EducationalCooperation : Ind (both TransnationalIssue AreaOfConcern) ; + -- (ExecutiveBranchFn ?ORG) denotes the + -- executive branch of ?ORG, with all its officials and agencies, considered + -- as a whole. + fun ExecutiveBranchFn : El Agent -> Ind Organization ; -fun EfficientCustomsAdministration : Ind (both TransnationalIssue AreaOfConcern ) ; + fun ExecutiveCommitteeMember : Ind MemberStatus ; --- (ElectionFn ?ORG) denotes the class of --- Elections conducted by the GeopoliticalArea or Organization ?ORG, --- in which offices or issues pertaining to ?ORG are voted upon. -fun ElectionFn: El Agent -> Desc Election ; + fun Factionalism : Ind FormOfGovernment ; + fun FederalDemocraticRepublic : Ind FormOfGovernment ; -fun EliminateChemicalWeapons : Ind TransnationalIssue ; + -- FederalGovernment is the attribute of + -- a government that is formed by agreement between a collection of political + -- units that agree to give up some of their power to the central government, + -- while reserving some powers to themselves. The government of the + -- UnitedStates is a federal government, in which power is shared between + -- the states and the central goverment, as set out in the U.S. + -- Constitution. + fun FederalGovernment : Ind FormOfGovernment ; --- Embassy is the class of top_ranked --- GovernmentOrganizations that represent one nation within the boundaries --- of another. Not all nations have embassy_level representation from other --- nations. -fun Embassy : Class ; -fun Embassy_Class : SubClass Embassy DiplomaticOrganization ; + fun FederalParliamentaryDemocracy : Ind FormOfGovernment ; -fun EmergingDemocracy : Ind FormOfGovernment ; + fun FederalRepublic : Ind FormOfGovernment ; -fun EmigrationAndImmigrationIssues : Ind (both TransnationalIssue AreaOfConcern) ; + fun Federation : Ind FormOfGovernment ; -fun EnergyAndTheEnvironment : Ind TransnationalIssue ; + fun FinancialCooperation : Ind TransnationalIssue ; -fun EnergyCooperation : Ind (both TransnationalIssue AreaOfConcern) ; + -- FixedHoliday is the class of Holidays + -- whose observance is fixed to recurrences of the calendar day that the + -- holiday commemorates. See commemoratesDate. + fun FixedHoliday : Class ; + fun FixedHoliday_Class : SubClass FixedHoliday Holiday ; --- EnglishCommonLaw is the attribute of --- legal systems based on the common law developed in England and influential --- in its English_speaking colonies. Common law is characterized by laws and --- rulings based on precedent and custom, rather than on written statute. -fun EnglishCommonLaw : Ind LegalSystemAttribute ; + fun FoodAid : Ind TransnationalIssue ; + fun FoodAndAgricultureOrganization : Ind OrganizationOfNations ; -fun EnvironmentalCooperation : Ind TransnationalIssue ; + -- ForeignServicePosition is the + -- subclass of Positions that belong to foreign service personnel working + -- for a national government or international organization. + fun ForeignServicePosition : Class ; + fun ForeignServicePosition_Class : SubClass ForeignServicePosition Position ; -fun EuroAtlanticPartnershipCouncil : Ind OrganizationOfNations ; + -- A Foreign Terrorist Organization + -- is an Organization designated by the USStateDeparment as one which + -- conducts acts of terrorism. This designation makes it subject to the + -- AntiterrorismAndEffectiveDeathPenaltyAct. + fun ForeignTerroristOrganization : Class ; + fun ForeignTerroristOrganization_Class : SubClass ForeignTerroristOrganization TerroristOrganization ; -fun EuropeanBankForReconstructionAndDevelopment : Ind OrganizationOfNations ; + fun FrancZone : Ind OrganizationOfNations ; --- The EuropeanCommunity was merged into --- the EuropeanUnion on February 7, 1992. -fun EuropeanCommunity : Ind OrganizationOfNations ; + fun FullMember : Ind MemberStatus ; + fun GenderEquality : Ind AreaOfConcern ; -fun EuropeanFreeTradeAssociation : Ind OrganizationOfNations ; + -- GovernmentCabinet is the class of + -- GovernmentOrganizations whose purpose is to advise a President, + -- Governor, or other political leader(s) on policy matters. + fun GovernmentCabinet : Class ; + fun GovernmentCabinet_Class : SubClass GovernmentCabinet GovernmentOrganization ; -fun EuropeanInvestmentBank : Ind OrganizationOfNations ; + fun GovernmentDeputy : Ind Position ; -fun EuropeanMonetaryUnion : Ind OrganizationOfNations ; + -- The GroupOf10 (also known as the Paris Club) + -- is a group of (now) 11 major creditor nations that manage the repayment of + -- loans by debtor countries. The Group of 10 works closely with the + -- InternationalMonetaryFund. + fun GroupOf10 : Ind OrganizationOfNations ; -fun EuropeanOrganizationForNuclearResearch : Ind OrganizationOfNations ; + fun GroupOf11 : Ind OrganizationOfNations ; -fun EuropeanSpaceAgency : Ind OrganizationOfNations ; + -- The GroupOf15 was a result of the NonalignedMovement. + fun GroupOf15 : Ind OrganizationOfNations ; -fun EuropeanUnion : Ind OrganizationOfNations ; + -- The GroupOf24 promotes the interests of + -- developing countries in Africa, Asia, and Latin America within the + -- InternationalMonetaryFund. + fun GroupOf24 : Ind OrganizationOfNations ; -fun ExclusiveMaleSuffrage : Ind RestrictedSuffrage ; + fun GroupOf3 : Ind OrganizationOfNations ; -fun ExecutiveBoardMember : Ind MemberStatus ; + fun GroupOf5 : Ind OrganizationOfNations ; --- (ExecutiveBranchFn ?ORG) denotes the --- executive branch of ?ORG, with all its officials and agencies, considered --- as a whole. -fun ExecutiveBranchFn : El Agent -> Ind Organization ; + fun GroupOf6 : Ind OrganizationOfNations ; + -- The memberships of the BigSeven and the + -- GroupOf7 include the same Nations. + fun GroupOf7 : Ind OrganizationOfNations ; -fun ExecutiveCommitteeMember : Ind MemberStatus ; + fun GroupOf77 : Ind OrganizationOfNations ; -fun Factionalism : Ind FormOfGovernment ; + -- The GroupOf8 members were participants in the + -- Conference on International Economic Cooperation (CIEC) between + -- 1975_1977. + fun GroupOf8 : Ind OrganizationOfNations ; -fun FederalDemocraticRepublic : Ind FormOfGovernment ; + fun GroupOf9 : Ind OrganizationOfNations ; --- FederalGovernment is the attribute of --- a government that is formed by agreement between a collection of political --- units that agree to give up some of their power to the central government, --- while reserving some powers to themselves. The government of the --- UnitedStates is a federal government, in which power is shared between --- the states and the central goverment, as set out in the U.S. --- Constitution. -fun FederalGovernment : Ind FormOfGovernment ; + fun GuestStatus : Ind MemberStatus ; + fun GulfCooperationCouncil : Ind OrganizationOfNations ; -fun FederalParliamentaryDemocracy : Ind FormOfGovernment ; + fun HereditaryMonarchy : Ind FormOfGovernment ; -fun FederalRepublic : Ind FormOfGovernment ; + -- Holiday is the class of time periods that are + -- observed as holidays in a country, culture, or religion. Holidays may + -- recur annually on the same date, or they may be moveable, for example, + -- UnitedStatesThanksgivingDay falls on the last Thursday of each + -- November. + fun Holiday : Class ; + fun Holiday_Class : SubClass Holiday TimeInterval ; -fun Federation : Ind FormOfGovernment ; + fun HumanRightsIssues : Ind TransnationalIssue ; -fun FinancialCooperation : Ind TransnationalIssue ; + fun HumanitarianAid : Ind TransnationalIssue ; --- FixedHoliday is the class of Holidays --- whose observance is fixed to recurrences of the calendar day that the --- holiday commemorates. See commemoratesDate. -fun FixedHoliday : Class ; -fun FixedHoliday_Class : SubClass FixedHoliday Holiday ; + fun HumanitarianAssistance : Ind TransnationalIssue ; -fun FoodAid : Ind TransnationalIssue ; + fun ImmigrationAndNationalityAct_Section219_US : Ind Proposition ; -fun FoodAndAgricultureOrganization : Ind OrganizationOfNations ; + fun ImmigrationAndNationalityAct_US : Ind Proposition ; --- ForeignServicePosition is the --- subclass of Positions that belong to foreign service personnel working --- for a national government or international organization. -fun ForeignServicePosition : Class ; -fun ForeignServicePosition_Class : SubClass ForeignServicePosition Position ; + fun ImproveHumanSettlementConditions : Ind AreaOfConcern ; --- A Foreign Terrorist Organization --- is an Organization designated by the USStateDeparment as one which --- conducts acts of terrorism. This designation makes it subject to the --- AntiterrorismAndEffectiveDeathPenaltyAct. -fun ForeignTerroristOrganization : Class ; -fun ForeignTerroristOrganization_Class : SubClass ForeignTerroristOrganization TerroristOrganization ; + -- IndependentState is a subclass of + -- GeopoliticalArea, representing the classification 'Independent State' + -- used by the CIA World Fact Book. Cf. + -- DependencyOrSpecialSovereigntyArea. + fun IndependentState : Class ; + fun IndependentState_Class : SubClass IndependentState (both GeopoliticalArea Nation) ; -fun FrancZone : Ind OrganizationOfNations ; + fun IndianOceanCommission : Ind OrganizationOfNations ; -fun FullMember : Ind MemberStatus ; + fun IndustryStandards : Ind AreaOfConcern ; -fun GenderEquality : Ind AreaOfConcern ; + fun InformationCooperation : Ind AreaOfConcern ; --- GovernmentCabinet is the class of --- GovernmentOrganizations whose purpose is to advise a President, --- Governor, or other political leader(s) on policy matters. -fun GovernmentCabinet : Class ; -fun GovernmentCabinet_Class : SubClass GovernmentCabinet GovernmentOrganization ; + fun InformationStandards : Ind AreaOfConcern ; -fun GovernmentDeputy : Ind Position ; + fun InfrastructureCooperation : Ind AreaOfConcern ; --- The GroupOf10 (also known as the Paris Club) --- is a group of (now) 11 major creditor nations that manage the repayment of --- loans by debtor countries. The Group of 10 works closely with the --- InternationalMonetaryFund. -fun GroupOf10 : Ind OrganizationOfNations ; + fun IntellectualPropertyProtection : Ind AreaOfConcern ; + fun InterAmericanDevelopmentBank : Ind OrganizationOfNations ; -fun GroupOf11 : Ind OrganizationOfNations ; + -- The + -- InterGovernmentalAuthorityOnDevelopment is the revitalized successor + -- organization of the Inter_Governmental Authority on Development, which had + -- been established 15_16 January 1986. + fun InterGovernmentalAuthorityOnDevelopment : Ind OrganizationOfNations ; --- The GroupOf15 was a result of the NonalignedMovement. -fun GroupOf15 : Ind OrganizationOfNations ; + fun InternationalAtomicEnergyAgency : Ind OrganizationOfNations ; + fun InternationalBankForReconstructionAndDevelopment : Ind OrganizationOfNations ; --- The GroupOf24 promotes the interests of --- developing countries in Africa, Asia, and Latin America within the --- InternationalMonetaryFund. -fun GroupOf24 : Ind OrganizationOfNations ; + fun InternationalCenterForSecretariatOfInvestmentDisputes : Ind InternationalOrganization ; + fun InternationalChamberOfCommerce : Ind OrganizationOfNations ; -fun GroupOf3 : Ind OrganizationOfNations ; + fun InternationalCivilAviationOrganization : Ind OrganizationOfNations ; -fun GroupOf5 : Ind OrganizationOfNations ; + fun InternationalCommitteeOfTheRedCross : Ind InternationalOrganization ; -fun GroupOf6 : Ind OrganizationOfNations ; + fun InternationalConfederationOfFreeTradeUnions : Ind OrganizationOfNations ; --- The memberships of the BigSeven and the --- GroupOf7 include the same Nations. -fun GroupOf7 : Ind OrganizationOfNations ; + -- The InternationalCourtOfJustice superseded the Permanent Court of International Justice. + fun InternationalCourtOfJustice : Ind (both InternationalOrganization JudicialOrganization) ; + -- Interpol is the + -- successor organization to the International Criminal Police Organization, + -- which had been established in 1923. + fun InternationalCriminalPoliceOrganization : Ind OrganizationOfNations ; -fun GroupOf77 : Ind OrganizationOfNations ; + fun InternationalCriminalTribunalForRwanda : Ind InternationalOrganization ; --- The GroupOf8 members were participants in the --- Conference on International Economic Cooperation (CIEC) between --- 1975_1977. -fun GroupOf8 : Ind OrganizationOfNations ; + fun InternationalCriminalTribunalForTheFormerYugoslavia : Ind InternationalOrganization ; + fun InternationalDevelopmentAssociation : Ind OrganizationOfNations ; -fun GroupOf9 : Ind OrganizationOfNations ; + -- The InternationalEnergyAgency + -- was established by the OrganizationForEconomicAndCulturalDevelopment. + fun InternationalEnergyAgency : Ind OrganizationOfNations ; -fun GuestStatus : Ind MemberStatus ; + fun InternationalFederationOfRedCrossAndRedCrescentSocieties : Ind OrganizationOfNations ; -fun GulfCooperationCouncil : Ind OrganizationOfNations ; + -- The InternationalFinanceCorporation is affiliated with the InternationalBankForReconstructionAndDevelopment. + fun InternationalFinanceCorporation : Ind OrganizationOfNations ; -fun HereditaryMonarchy : Ind FormOfGovernment ; + fun InternationalFundForAgriculturalDevelopment : Ind OrganizationOfNations ; --- Holiday is the class of time periods that are --- observed as holidays in a country, culture, or religion. Holidays may --- recur annually on the same date, or they may be moveable, for example, --- UnitedStatesThanksgivingDay falls on the last Thursday of each --- November. -fun Holiday : Class ; -fun Holiday_Class : SubClass Holiday TimeInterval ; + fun InternationalHydrographicOrganization : Ind OrganizationOfNations ; -fun HumanRightsIssues : Ind TransnationalIssue ; + fun InternationalJustice : Ind (both AreaOfConcern TransnationalIssue) ; -fun HumanitarianAid : Ind TransnationalIssue ; + -- The InternationalLaborOrganization became affiliated with + -- the UnitedNations in 1946. + fun InternationalLaborOrganization : Ind OrganizationOfNations ; -fun HumanitarianAssistance : Ind TransnationalIssue ; + fun InternationalMaritimeAffairs : Ind AreaOfConcern ; -fun ImmigrationAndNationalityAct_Section219_US : Ind Proposition ; + -- The InternationalMaritimeOrganization was established in 1948 but became + -- effective ten years later. + fun InternationalMaritimeOrganization : Ind OrganizationOfNations ; -fun ImmigrationAndNationalityAct_US : Ind Proposition ; + fun InternationalMonetaryFund : Ind OrganizationOfNations ; -fun ImproveHumanSettlementConditions : Ind AreaOfConcern ; + fun InternationalOlympicCommittee : Ind OrganizationOfNations ; --- IndependentState is a subclass of --- GeopoliticalArea, representing the classification 'Independent State' --- used by the CIA World Fact Book. Cf. --- DependencyOrSpecialSovereigntyArea. -fun IndependentState : Class ; -fun IndependentState_Class : SubClass IndependentState (both GeopoliticalArea Nation) ; + fun InternationalOrNonregionalMember : Ind MemberStatus ; + -- InternationalOrganization is + -- the class of Organizations whose activities have international scope and + -- which typically have members who are, or are from, different Nations. + fun InternationalOrganization : Class ; + fun InternationalOrganization_Class : SubClass InternationalOrganization Organization ; -fun IndianOceanCommission : Ind OrganizationOfNations ; + fun InternationalOrganizationForMigration : Ind OrganizationOfNations ; -fun IndustryStandards : Ind AreaOfConcern ; + fun InternationalOrganizationForStandardization : Ind OrganizationOfNations ; -fun InformationCooperation : Ind AreaOfConcern ; + fun InternationalPeaceAndSecurity : Ind TransnationalIssue ; -fun InformationStandards : Ind AreaOfConcern ; + fun InternationalRedCrossAndRedCrescentMovement : Ind InternationalOrganization ; -fun InfrastructureCooperation : Ind AreaOfConcern ; + fun InternationalResearchAndTrainingInstituteForTheAdvancementOfWomen : Ind OrganizationOfNations ; -fun IntellectualPropertyProtection : Ind AreaOfConcern ; + -- The InternationalTelecommunicationUnion became affiliated with the + -- UnitedNations on November 15, 1947. + fun InternationalTelecommunicationUnion : Ind OrganizationOfNations ; -fun InterAmericanDevelopmentBank : Ind OrganizationOfNations ; + fun InternationalTradeSupport : Ind TransnationalIssue ; --- The --- InterGovernmentalAuthorityOnDevelopment is the revitalized successor --- organization of the Inter_Governmental Authority on Development, which had --- been established 15_16 January 1986. -fun InterGovernmentalAuthorityOnDevelopment : Ind OrganizationOfNations ; + fun IslamicDevelopmentBank : Ind OrganizationOfNations ; + fun IslamicGovernment : Ind FormOfGovernment ; -fun InternationalAtomicEnergyAgency : Ind OrganizationOfNations ; + -- IslamicLaw is the Attribute of + -- legal systems that are based on religious principles of Islam. + fun IslamicLaw : Ind LegalSystemAttribute ; -fun InternationalBankForReconstructionAndDevelopment : Ind OrganizationOfNations ; + -- IslamicLawCourt is the subclass of + -- JudicialOrganizations that are conducted according to principles of + -- Islamic Law. + fun IslamicLawCourt : Class ; + fun IslamicLawCourt_Class : SubClass IslamicLawCourt JudicialOrganization ; -fun InternationalCenterForSecretariatOfInvestmentDisputes : Ind InternationalOrganization ; + -- JudgeAtLaw is the Position of a person who + -- is a public official with the authority to decide legal matters in a + -- governmental JudicialOrganization. + fun JudgeAtLaw : Ind Position ; -fun InternationalChamberOfCommerce : Ind OrganizationOfNations ; + -- JudicialReviewOfExecutiveActs is an attribute of legal systems + -- in which the judiciary has authority to review acts of the executive + -- branch. + fun JudicialReviewOfExecutiveActs : Ind LegalSystemAttribute ; -fun InternationalCivilAviationOrganization : Ind OrganizationOfNations ; + -- JudicialReviewOfLegislativeActs is an attribute of legal systems + -- in which the judiciary has authority to review acts of the legislature. + fun JudicialReviewOfLegislativeActs : Ind LegalSystemAttribute ; -fun InternationalCommitteeOfTheRedCross : Ind InternationalOrganization ; + -- (JudiciaryFn ?AREA) denotes the judicial + -- branch of the GeopoliticalArea ?AREA, that is, the + -- JudicialOrganization(s) associated with the government of ?AREA, + -- considered as a whole. + fun JudiciaryFn : El GeopoliticalArea -> Ind GovernmentOrganization ; -fun InternationalConfederationOfFreeTradeUnions : Ind OrganizationOfNations ; + fun JusticeIssues : Ind AreaOfConcern ; --- The --- InternationalCourtOfJustice superseded the Permanent Court of --- International Justice. -fun InternationalCourtOfJustice : Ind (both InternationalOrganization JudicialOrganization) ; + fun King : Ind Position ; + fun LaborIssues : Ind AreaOfConcern ; --- Interpol is the --- successor organization to the International Criminal Police Organization, --- which had been established in 1923. -fun InternationalCriminalPoliceOrganization : Ind OrganizationOfNations ; + fun LatinAmericanEconomicSystem : Ind OrganizationOfNations ; + fun LatinAmericanIntegrationAssociation : Ind OrganizationOfNations ; -fun InternationalCriminalTribunalForRwanda : Ind InternationalOrganization ; + fun Leader : Ind Position ; -fun InternationalCriminalTribunalForTheFormerYugoslavia : Ind InternationalOrganization ; + -- LegalSystemAttribute is the class + -- of Attributes that are used to characterize legal systems, as, e.g., + -- according to their sources, areas of concern, or principles of + -- organization. + fun LegalSystemAttribute : Class ; + fun LegalSystemAttribute_Class : SubClass LegalSystemAttribute RelationalAttribute ; -fun InternationalDevelopmentAssociation : Ind OrganizationOfNations ; + -- LegislativeChamber is the class of + -- LegislativeOrganizations which are a coherent body that considers and + -- votes upon legislation in common session. For example, the United States + -- Senate. + fun LegislativeChamber : Class ; + fun LegislativeChamber_Class : SubClass LegislativeChamber LegislativeOrganization ; --- The InternationalEnergyAgency --- was established by the OrganizationForEconomicAndCulturalDevelopment. -fun InternationalEnergyAgency : Ind OrganizationOfNations ; + -- (LegislatureFn ?AREA) denotes the + -- legislative branch of the GeopoliticalArea ?AREA. + fun LegislatureFn : El GeopoliticalArea -> Ind LegislativeOrganization ; + -- (MemberFn ?ORG) denotes the Position of + -- a member in the Organization ?ORG. + fun MemberFn : El Organization -> Ind Position ; -fun InternationalFederationOfRedCrossAndRedCrescentSocieties : Ind OrganizationOfNations ; + -- (MemberRoleFn ?ORG ?POSITION) denotes the + -- role of having the Position ?POSITION the Organization ?ORG. + fun MemberRoleFn : El Organization -> El Position -> Ind Position ; --- The --- InternationalFinanceCorporation is affiliated with the --- InternationalBankForReconstructionAndDevelopment. -fun InternationalFinanceCorporation : Ind OrganizationOfNations ; + -- MemberStatus is the class of + -- RelationalAttributes that represent the different kinds of status + -- that may be held in various organizations. Included in this class are + -- membership types for InternationalOrganizations covered by the CIA World + -- Fact Book. + fun MemberStatus : Class ; + fun MemberStatus_Class : SubClass MemberStatus RelationalAttribute ; + fun MembershipApplicant : Ind MemberStatus ; -fun InternationalFundForAgriculturalDevelopment : Ind OrganizationOfNations ; + fun MembershipPending : Ind MemberStatus ; -fun InternationalHydrographicOrganization : Ind OrganizationOfNations ; + fun MilitaryCommander : Ind Position ; -fun InternationalJustice : Ind (both AreaOfConcern TransnationalIssue) ; + fun MilitaryCooperation : Ind TransnationalIssue ; --- The --- InternationalLaborOrganization became affiliated with the --- UnitedNations in 1946. -fun InternationalLaborOrganization : Ind OrganizationOfNations ; + fun MilitaryDictatorship : Ind FormOfGovernment ; + fun Monarch : Ind Position ; -fun InternationalMaritimeAffairs : Ind AreaOfConcern ; + -- Monarchy is the attribute of a government + -- that is ruled by a monarch, which is usually a hereditary role. + fun Monarchy : Ind FormOfGovernment ; --- The --- InternationalMaritimeOrganization was established in 1948 but became --- effective ten years later. -fun InternationalMaritimeOrganization : Ind OrganizationOfNations ; + fun MonetaryAndEconomicCommunityOfCentralAfrica : Ind OrganizationOfNations ; + fun MonetaryStability : Ind AreaOfConcern ; -fun InternationalMonetaryFund : Ind OrganizationOfNations ; + fun MonetaryUnion : Ind TransnationalIssue ; -fun InternationalOlympicCommittee : Ind OrganizationOfNations ; + -- MoveableHoliday is the class of + -- Holidays whose observance is not fixed to recurrences of any particular + -- calendar day. For example, UnitedStatesMemorialDay is observed on the + -- last Monday of May. + fun MoveableHoliday : Class ; + fun MoveableHoliday_Class : SubClass MoveableHoliday Holiday ; -fun InternationalOrNonregionalMember : Ind MemberStatus ; + fun MulitlateralInvestmentGeographicAgency : Ind InternationalOrganization ; --- InternationalOrganization is --- the class of Organizations whose activities have international scope and --- which typically have members who are, or are from, different Nations. -fun InternationalOrganization : Class ; -fun InternationalOrganization_Class : SubClass InternationalOrganization Organization ; + fun MultipartyDemocracy : Ind FormOfGovernment ; -fun InternationalOrganizationForMigration : Ind OrganizationOfNations ; + fun MutualDefensePact : Ind TransnationalIssue ; -fun InternationalOrganizationForStandardization : Ind OrganizationOfNations ; + -- NapoleonicCode is the specialization of + -- CivilLaw developed in France under Napoleon Bonaparte. It is still the + -- basis of French law as well as of legal systems developed under French + -- influence. + fun NapoleonicCode : Ind LegalSystemAttribute ; -fun InternationalPeaceAndSecurity : Ind TransnationalIssue ; + fun NationalCommitteeChairman : Ind Position ; -fun InternationalRedCrossAndRedCrescentMovement : Ind InternationalOrganization ; + -- NationalGovernment is the class of + -- national_level governments of Nations. + fun NationalGovernment : Class ; + fun NationalGovernment_Class : SubClass NationalGovernment Government ; -fun InternationalResearchAndTrainingInstituteForTheAdvancementOfWomen : Ind OrganizationOfNations ; + -- The NonalignedMovement was + -- established to promote political and military cooperation outside of the + -- traditional East and West power groups. + fun NonalignedMovement : Ind OrganizationOfNations ; --- The --- InternationalTelecommunicationUnion became affiliated with the --- UnitedNations on November 15, 1947. -fun InternationalTelecommunicationUnion : Ind OrganizationOfNations ; + fun NonpermanentStatus : Ind MemberStatus ; + fun NonregionalMember : Ind MemberStatus ; -fun InternationalTradeSupport : Ind TransnationalIssue ; + fun NonstateParticipant : Ind MemberStatus ; -fun IslamicDevelopmentBank : Ind OrganizationOfNations ; + fun NordicCouncil : Ind OrganizationOfNations ; -fun IslamicGovernment : Ind FormOfGovernment ; + fun NordicInvestmentBank : Ind OrganizationOfNations ; --- IslamicLaw is the Attribute of --- legal systems that are based on religious principles of Islam. -fun IslamicLaw : Ind LegalSystemAttribute ; + fun NorthAtlanticTreatyOrganization : Ind OrganizationOfNations ; + fun NuclearDisarmament : Ind TransnationalIssue ; --- IslamicLawCourt is the subclass of --- JudicialOrganizations that are conducted according to principles of --- Islamic Law. -fun IslamicLawCourt : Class ; -fun IslamicLawCourt_Class : SubClass IslamicLawCourt JudicialOrganization ; + fun NuclearEnergyAgency : Ind OrganizationOfNations ; --- JudgeAtLaw is the Position of a person who --- is a public official with the authority to decide legal matters in a --- governmental JudicialOrganization. -fun JudgeAtLaw : Ind Position ; + fun NuclearExportControls : Ind TransnationalIssue ; + fun NuclearNonproliferation : Ind TransnationalIssue ; --- JudicialReviewOfExecutiveActs is an attribute of legal systems --- in which the judiciary has authority to review acts of the executive --- branch. -fun JudicialReviewOfExecutiveActs : Ind LegalSystemAttribute ; + fun NuclearSuppliersGroup : Ind OrganizationOfNations ; + fun ObservationAndMonitoring : Ind AreaOfConcern ; --- JudicialReviewOfLegislativeActs is an attribute of legal systems --- in which the judiciary has authority to review acts of the legislature. -fun JudicialReviewOfLegislativeActs : Ind LegalSystemAttribute ; + fun ObserverStatus : Ind MemberStatus ; + fun OrganizationForEconomicCooperationAndDevelopment : Ind OrganizationOfNations ; --- (JudiciaryFn ?AREA) denotes the judicial --- branch of the GeopoliticalArea ?AREA, that is, the --- JudicialOrganization(s) associated with the government of ?AREA, --- considered as a whole. -fun JudiciaryFn : El GeopoliticalArea -> Ind GovernmentOrganization ; + -- The OrganizationForSecurityAndCooperationInEurope, established January 1, + -- 1995, grew out of the Conference on Security and Cooperation in Europe, + -- which began meeting in 1975. + fun OrganizationForSecurityAndCooperationInEurope : Ind OrganizationOfNations ; + fun OrganizationForTheProhibitionOfChemicalWeapons : Ind OrganizationOfNations ; -fun JusticeIssues : Ind AreaOfConcern ; + -- The OrganizationOfAfricanUnity was renamed to African Union + -- (Union_Africaine) in July, 2002. + fun OrganizationOfAfricanUnity : Ind OrganizationOfNations ; -fun King : Ind Position ; + -- The OrganizationOfAmericanStates adopted its present charter on April 30, 1948. + fun OrganizationOfAmericanStates : Ind OrganizationOfNations ; -fun LaborIssues : Ind AreaOfConcern ; + fun OrganizationOfArabPetroleumExportingCountries : Ind OrganizationOfNations ; -fun LatinAmericanEconomicSystem : Ind OrganizationOfNations ; + fun OrganizationOfEasternCaribbeanStates : Ind OrganizationOfNations ; -fun LatinAmericanIntegrationAssociation : Ind OrganizationOfNations ; + -- This is the class of Organizations whose members are Nations. + fun OrganizationOfNations : Class ; + fun OrganizationOfNations_Class : SubClass OrganizationOfNations InternationalOrganization ; -fun Leader : Ind Position ; + fun OrganizationOfPetroleumExportingCountries : Ind OrganizationOfNations ; --- LegalSystemAttribute is the class --- of Attributes that are used to characterize legal systems, as, e.g., --- according to their sources, areas of concern, or principles of --- organization. -fun LegalSystemAttribute : Class ; -fun LegalSystemAttribute_Class : SubClass LegalSystemAttribute RelationalAttribute ; + fun OrganizationOfTheIslamicConference : Ind OrganizationOfNations ; --- LegislativeChamber is the class of --- LegislativeOrganizations which are a coherent body that considers and --- votes upon legislation in common session. For example, the United States --- Senate. -fun LegislativeChamber : Class ; -fun LegislativeChamber_Class : SubClass LegislativeChamber LegislativeOrganization ; + fun OrganizeOlympicGames : Ind TransnationalIssue ; --- (LegislatureFn ?AREA) denotes the --- legislative branch of the GeopoliticalArea ?AREA. -fun LegislatureFn : El GeopoliticalArea -> Ind LegislativeOrganization ; + -- OverseasArea is the class of + -- GeopoliticalAreas that are related to a Nation as overseas + -- territories, possessions, protectorates, or departments. + fun OverseasArea : Class ; + fun OverseasArea_Class : SubClass OverseasArea (both DependencyOrSpecialSovereigntyArea GeopoliticalArea) ; + -- (OverseasAreaFn ?AREA) denotes the class + -- of OverseasAreas that belong to the GeopoliticalArea ?AREA. + fun OverseasAreaFn: El GeopoliticalArea -> Desc OverseasArea ; --- (MemberFn ?ORG) denotes the Position of --- a member in the Organization ?ORG. -fun MemberFn : El Organization -> Ind Position ; + fun PacificCommunity : Ind OrganizationOfNations ; + fun PacificIslandForum : Ind OrganizationOfNations ; --- (MemberRoleFn ?ORG ?POSITION) denotes the --- role of having the Position ?POSITION the Organization ?ORG. -fun MemberRoleFn : El Organization -> El Position -> Ind Position ; + -- Parliament is the subclass of + -- LegislativeOrganizations similar to that of the United Kingdom. + fun Parliament : Class ; + fun Parliament_Class : SubClass Parliament LegislativeOrganization ; + fun ParliamentaryDemocracy : Ind FormOfGovernment ; --- MemberStatus is the class of --- RelationalAttributes that represent the different kinds of status --- that may be held in various organizations. Included in this class are --- membership types for InternationalOrganizations covered by the CIA World --- Fact Book. -fun MemberStatus : Class ; -fun MemberStatus_Class : SubClass MemberStatus RelationalAttribute ; + fun ParliamentaryDemocraticRepublic : Ind FormOfGovernment ; -fun MembershipApplicant : Ind MemberStatus ; + -- ParliamentaryGovernment is the + -- attribute of a government whose chief LegislativeOrganization is a + -- Parliament. A parliamentary government is compatible with various + -- other government types, including Monarchy. + fun ParliamentaryGovernment : Ind FormOfGovernment ; -fun MembershipPending : Ind MemberStatus ; + fun ParliamentaryRepublic : Ind FormOfGovernment ; -fun MilitaryCommander : Ind Position ; + fun ParliamentaryTerritory : Class ; + fun ParliamentaryTerritory_Class : SubClass ParliamentaryTerritory GeopoliticalArea ; -fun MilitaryCooperation : Ind TransnationalIssue ; + fun PartIMember : Ind MemberStatus ; -fun MilitaryDictatorship : Ind FormOfGovernment ; + fun PartIIMember : Ind MemberStatus ; -fun Monarch : Ind Position ; + fun PartnersForCooperation : Ind MemberStatus ; --- Monarchy is the attribute of a government --- that is ruled by a monarch, which is usually a hereditary role. -fun Monarchy : Ind FormOfGovernment ; + fun PartnershipForPeace : Ind OrganizationOfNations ; + fun PeacefulUseOfAtomicPower : Ind TransnationalIssue ; -fun MonetaryAndEconomicCommunityOfCentralAfrica : Ind OrganizationOfNations ; + fun PeacekeepingOperation : Ind (both TransnationalIssue AreaOfConcern) ; -fun MonetaryStability : Ind AreaOfConcern ; + fun PermanentChargeDAffaires : Ind ForeignServicePosition ; -fun MonetaryUnion : Ind TransnationalIssue ; + fun PermanentCourtOfArbitration : Ind OrganizationOfNations ; --- MoveableHoliday is the class of --- Holidays whose observance is not fixed to recurrences of any particular --- calendar day. For example, UnitedStatesMemorialDay is observed on the --- last Monday of May. -fun MoveableHoliday : Class ; -fun MoveableHoliday_Class : SubClass MoveableHoliday Holiday ; + fun PermanentRepresentative : Ind Position ; -fun MulitlateralInvestmentGeographicAgency : Ind InternationalOrganization ; + fun PermanentStatus : Ind MemberStatus ; -fun MultipartyDemocracy : Ind FormOfGovernment ; + -- PoliticalCoalition is the class of + -- political organizations that are constituted by political parties joined + -- together for some common interest(s). + fun PoliticalCoalition : Class ; + fun PoliticalCoalition_Class : SubClass PoliticalCoalition (both PoliticalOrganization PoliticalParty) ; -fun MutualDefensePact : Ind TransnationalIssue ; + fun PoliticalCooperation : Ind AreaOfConcern ; --- NapoleonicCode is the specialization of --- CivilLaw developed in France under Napoleon Bonaparte. It is still the --- basis of French law as well as of legal systems developed under French --- influence. -fun NapoleonicCode : Ind LegalSystemAttribute ; + fun PoliticalDevelopment : Ind AreaOfConcern ; + fun PoliticalIntegration : Ind AreaOfConcern ; -fun NationalCommitteeChairman : Ind Position ; + -- PoliticalPressureGroup is the + -- class of Organizations that exert political pressure and have leaders + -- who are involved in politics but not standing for election. For example, + -- corporate lobbying groups, Mothers Against Drunk Driving (MADD), or the + -- American Civil Liberties Union (ACLU). + fun PoliticalPressureGroup : Class ; + fun PoliticalPressureGroup_Class : SubClass PoliticalPressureGroup PoliticalOrganization ; --- NationalGovernment is the class of --- national_level governments of Nations. -fun NationalGovernment : Class ; -fun NationalGovernment_Class : SubClass NationalGovernment Government ; + fun PopulationPolicySupport : Ind AreaOfConcern ; --- The NonalignedMovement was --- established to promote political and military cooperation outside of the --- traditional East and West power groups. -fun NonalignedMovement : Ind OrganizationOfNations ; + fun President : Ind Position ; + fun PresidentialGovernment : Ind FormOfGovernment ; -fun NonpermanentStatus : Ind MemberStatus ; + fun PrimeMinister : Ind Position ; -fun NonregionalMember : Ind MemberStatus ; + fun PrincipalOfficer : Ind ForeignServicePosition ; -fun NonstateParticipant : Ind MemberStatus ; + fun PromotePrivateEnterprise : Ind AreaOfConcern ; -fun NordicCouncil : Ind OrganizationOfNations ; + fun PromoteRegionalStability : Ind TransnationalIssue ; -fun NordicInvestmentBank : Ind OrganizationOfNations ; + fun PromoteSustainableDevelopment : Ind AreaOfConcern ; -fun NorthAtlanticTreatyOrganization : Ind OrganizationOfNations ; + fun PromoteTradeUnionism : Ind AreaOfConcern ; -fun NuclearDisarmament : Ind TransnationalIssue ; + fun PromotionOfFreeTrade : Ind TransnationalIssue ; -fun NuclearEnergyAgency : Ind OrganizationOfNations ; + fun PromotionOfPrivateEnterprise : Ind AreaOfConcern ; -fun NuclearExportControls : Ind TransnationalIssue ; + fun PromotionOfTourism : Ind AreaOfConcern ; -fun NuclearNonproliferation : Ind TransnationalIssue ; + fun PromotionOfTradeAndInvestment : Ind TransnationalIssue ; -fun NuclearSuppliersGroup : Ind OrganizationOfNations ; + fun PublicHealthConcern : Ind AreaOfConcern ; -fun ObservationAndMonitoring : Ind AreaOfConcern ; + fun Queen : Ind Position ; -fun ObserverStatus : Ind MemberStatus ; + fun ReducePoverty : Ind AreaOfConcern ; -fun OrganizationForEconomicCooperationAndDevelopment : Ind OrganizationOfNations ; + fun ReducingCrime : Ind AreaOfConcern ; --- The --- OrganizationForSecurityAndCooperationInEurope, established January 1, --- 1995, grew out of the Conference on Security and Cooperation in Europe, --- which began meeting in 1975. -fun OrganizationForSecurityAndCooperationInEurope : Ind OrganizationOfNations ; + fun RefugeeAssistance : Ind (both TransnationalIssue AreaOfConcern) ; + -- RegionalLaw is the class of regional + -- laws, considered as a body, established by particular Governments + -- to regulate activities under their jurisdictions. For example, + -- (RegionalLawFn UnitedStates) represents the content of the laws, + -- statutes, and rulings of the United States. + fun RegionalLaw : Class ; + fun RegionalLaw_Class : SubClass RegionalLaw Proposition ; -fun OrganizationForTheProhibitionOfChemicalWeapons : Ind OrganizationOfNations ; + -- (RegionalLawFn ?AREA) denotes the laws + -- pertaining in the GeopoliticalArea ?AREA that are established and + -- enforced by the Government of ?AREA. For example, (RegionalLawFn + -- UnitedStates) denotes the laws of the government of the UnitedStates + -- and its constituent units. + fun RegionalLawFn : El GeopoliticalArea -> Ind RegionalLaw ; --- The --- OrganizationOfAfricanUnity was renamed to African Union --- (Union_Africaine) in July, 2002. -fun OrganizationOfAfricanUnity : Ind OrganizationOfNations ; + fun RegionalMember : Ind MemberStatus ; + fun RegionalSecurity : Ind AreaOfConcern ; --- The --- OrganizationOfAmericanStates adopted its present charter on April 30, --- 1948. -fun OrganizationOfAmericanStates : Ind OrganizationOfNations ; + fun ReproductiveHealthAndFamilyPlannning : Ind AreaOfConcern ; + -- Republic is the attribute of a government + -- whose power and authority are vested in its members, who elect + -- representatives to exercise that power. + fun Republic : Ind FormOfGovernment ; -fun OrganizationOfArabPetroleumExportingCountries : Ind OrganizationOfNations ; + -- RestrictedSuffrage is a subclass of + -- SuffrageLaw covering laws that restrict suffrage by further + -- conditions beyond the basics of citizenship and age. + fun RestrictedSuffrage : Class ; + fun RestrictedSuffrage_Class : SubClass RestrictedSuffrage SuffrageLaw ; -fun OrganizationOfEasternCaribbeanStates : Ind OrganizationOfNations ; + -- The RioGroup was the result of fusing the + -- Contadora Group and the Lima (or Support) Group. + fun RioGroup : Ind OrganizationOfNations ; --- This is the --- class of Organizations whose members are Nations. -fun OrganizationOfNations : Class ; -fun OrganizationOfNations_Class : SubClass OrganizationOfNations InternationalOrganization ; + -- RomanCanonLaw is the attribute of legal + -- systems based on the Ecclesiastical law developed by the Roman Catholic + -- Church. + fun RomanCanonLaw : Ind LegalSystemAttribute ; -fun OrganizationOfPetroleumExportingCountries : Ind OrganizationOfNations ; + fun ScientificCooperation : Ind AreaOfConcern ; -fun OrganizationOfTheIslamicConference : Ind OrganizationOfNations ; + fun SelfGoverningTerritory : Class ; + fun SelfGoverningTerritory_Class : SubClass SelfGoverningTerritory GeopoliticalArea ; -fun OrganizeOlympicGames : Ind TransnationalIssue ; + fun SignatoryMember : Ind MemberStatus ; --- OverseasArea is the class of --- GeopoliticalAreas that are related to a Nation as overseas --- territories, possessions, protectorates, or departments. -fun OverseasArea : Class ; -fun OverseasArea_Class : SubClass OverseasArea (both DependencyOrSpecialSovereigntyArea GeopoliticalArea) ; + fun SocialCooperation : Ind TransnationalIssue ; + fun SocialDevelopment : Ind AreaOfConcern ; --- (OverseasAreaFn ?AREA) denotes the class --- of OverseasAreas that belong to the GeopoliticalArea ?AREA. -fun OverseasAreaFn: El GeopoliticalArea -> Desc OverseasArea ; + fun SocioeconomicResearch : Ind AreaOfConcern ; + fun SouthAsianAssociationForRegionalCooperation : Ind OrganizationOfNations ; -fun PacificCommunity : Ind OrganizationOfNations ; + fun SouthPacificRegionalTradeAndEconomicCooperationAgreement : Ind OrganizationOfNations ; -fun PacificIslandForum : Ind OrganizationOfNations ; + fun SouthernAfricanCustomsUnion : Ind OrganizationOfNations ; --- Parliament is the subclass of --- LegislativeOrganizations similar to that of the United Kingdom. -fun Parliament : Class ; -fun Parliament_Class : SubClass Parliament LegislativeOrganization ; + fun SouthernAfricanDevelopmentCommunity : Ind OrganizationOfNations ; -fun ParliamentaryDemocracy : Ind FormOfGovernment ; + fun SouthernConeCommonMarket : Ind OrganizationOfNations ; -fun ParliamentaryDemocraticRepublic : Ind FormOfGovernment ; + fun SpaceResearchAndTechnology : Ind AreaOfConcern ; --- ParliamentaryGovernment is the --- attribute of a government whose chief LegislativeOrganization is a --- Parliament. A parliamentary government is compatible with various --- other government types, including Monarchy. -fun ParliamentaryGovernment : Ind FormOfGovernment ; + fun Spokesperson : Ind Position ; + fun StatisticalCommission : Ind InternationalOrganization ; -fun ParliamentaryRepublic : Ind FormOfGovernment ; + fun SubbureauMember : Ind MemberStatus ; -fun ParliamentaryTerritory : Class ; -fun ParliamentaryTerritory_Class : SubClass ParliamentaryTerritory GeopoliticalArea ; -fun PartIIMember : Ind MemberStatus ; + fun SubscriberMember : Ind MemberStatus ; -fun PartIMember : Ind MemberStatus ; + -- SuffrageLaw is a class that includes the + -- various types of suffrage rules of different Nations. Instances of + -- SuffrageLaw represent the propositional content of various suffrage + -- laws. + fun SuffrageLaw : Class ; + fun SuffrageLaw_Class : SubClass SuffrageLaw Proposition ; -fun PartnersForCooperation : Ind MemberStatus ; + fun SupportLawEnforcement : Ind AreaOfConcern ; -fun PartnershipForPeace : Ind OrganizationOfNations ; + -- SupremeCourt is the subclass of + -- JudicialOrganizations that are the ultimate judicial authority for the + -- matters on which they rule. For example, the UnitedStatesSupremeCourt, + -- or the InternationalCourtOfJustice (World Court). + fun SupremeCourt : Class ; + fun SupremeCourt_Class : SubClass SupremeCourt JudicialOrganization ; -fun PeacefulUseOfAtomicPower : Ind TransnationalIssue ; + -- (SupremeCourtFn ?AREA) denotes the class + -- of the highest court(s) in the judicial system of GeopoliticalArea + -- ?AREA. For example, the UnitedStatesSupremeCourt belongs to the class + -- (SupremeCourtFn UnitedStates). + fun SupremeCourtFn: El GeopoliticalArea -> Desc SupremeCourt ; -fun PeacekeepingOperation : Ind (both TransnationalIssue AreaOfConcern) ; + -- SupremeCourtJudge is the Position + -- of a person who is a JudgeAtLaw on some SupremeCourt. + fun SupremeCourtJudge : Ind Position ; -fun PermanentChargeDAffaires : Ind ForeignServicePosition ; + fun SuspendedMember : Ind MemberStatus ; -fun PermanentCourtOfArbitration : Ind OrganizationOfNations ; + fun TechnologyCooperation : Ind AreaOfConcern ; -fun PermanentRepresentative : Ind Position ; + -- TheocraticGovernment is the + -- attribute of a government that bases its authority on Religion. + fun TheocraticGovernment : Ind FormOfGovernment ; -fun PermanentStatus : Ind MemberStatus ; + fun TheocraticRepublic : Ind FormOfGovernment ; --- PoliticalCoalition is the class of --- political organizations that are constituted by political parties joined --- together for some common interest(s). -fun PoliticalCoalition : Class ; -fun PoliticalCoalition_Class : SubClass PoliticalCoalition (both PoliticalOrganization PoliticalParty) ; + fun TransitionalAdministration : Ind (both AreaOfConcern TransnationalIssue) ; + -- TransitionalGovernment is the + -- attribute of a government that is changing from one form of government + -- to another. This may be accompanied by social unrest or instability. + fun TransitionalGovernment : Ind FormOfGovernment ; -fun PoliticalCooperation : Ind AreaOfConcern ; + -- TransnationalIssue is a class of + -- Attributes that characterize the concerns of Nations, international + -- Non_Governmental Institutions (NGOs), and other transnational agents. + fun TransnationalIssue : Class ; + fun TransnationalIssue_Class : SubClass TransnationalIssue AreaOfConcern ; -fun PoliticalDevelopment : Ind AreaOfConcern ; + fun TransportationCoordination : Ind AreaOfConcern ; -fun PoliticalIntegration : Ind AreaOfConcern ; + -- The US government organization charged with protecting the + -- integrity of US national borders, primarily by detecting and + -- preventing attempts at illegal immigration. + fun USCustomsAndBorderProtection : Ind (both GovernmentOrganization PoliceOrganization) ; --- PoliticalPressureGroup is the --- class of Organizations that exert political pressure and have leaders --- who are involved in politics but not standing for election. For example, --- corporate lobbying groups, Mothers Against Drunk Driving (MADD), or the --- American Civil Liberties Union (ACLU). -fun PoliticalPressureGroup : Class ; -fun PoliticalPressureGroup_Class : SubClass PoliticalPressureGroup PoliticalOrganization ; + -- The branch of the US Government that + -- handles relations with foreign governments and entities. It is the chief + -- diplomatic instrument of US foreign policy. It controls US embassies and + -- consuls. + fun USStateDepartment : Ind Government ; -fun PopulationPolicySupport : Ind AreaOfConcern ; + fun UnicameralLegislature : Ind FormOfGovernment ; -fun President : Ind Position ; + fun UnincorporatedUnitedStatesTerritory : Class ; + fun UnincorporatedUnitedStatesTerritory_Class : SubClass UnincorporatedUnitedStatesTerritory OverseasArea ; -fun PresidentialGovernment : Ind FormOfGovernment ; + -- UnitaryRule is a FormOfGovernment in which + -- the central government controls affairs at all levels, including the local + -- level. + fun UnitaryRule : Ind FormOfGovernment ; -fun PrimeMinister : Ind Position ; + -- The UnitedNations has six principal + -- subOrganizations: the Secretariat, the General Assembly, the Security + -- Council, the Economic and Social Council, the Trusteeship Council + -- (currently inactive), and the International Court of Justice. The United + -- Nations has numerous subordinate agencies and bodies within those six + -- major subdivisions. + fun UnitedNations : Ind OrganizationOfNations ; -fun PrincipalOfficer : Ind ForeignServicePosition ; + fun UnitedNationsCenterForHumanSettlements : Ind OrganizationOfNations ; -fun PromotePrivateEnterprise : Ind AreaOfConcern ; + fun UnitedNationsChildrensFund : Ind OrganizationOfNations ; -fun PromoteRegionalStability : Ind TransnationalIssue ; + fun UnitedNationsCivilianPoliceMissionInHaiti : Ind OrganizationOfNations ; -fun PromoteSustainableDevelopment : Ind AreaOfConcern ; + -- The UnitedNationsCompensationCommission was created to process claims and + -- pay compensation for losses and damage suffered as a direct result of + -- the unlawful invasion and occupation of Kuwait by Iraq. + fun UnitedNationsCompensationCommission : Ind InternationalOrganization ; -fun PromoteTradeUnionism : Ind AreaOfConcern ; + fun UnitedNationsConferenceOnTradeAndDevelopment : Ind OrganizationOfNations ; -fun PromotionOfFreeTrade : Ind TransnationalIssue ; + fun UnitedNationsDevelopmentProgram : Ind OrganizationOfNations ; -fun PromotionOfPrivateEnterprise : Ind AreaOfConcern ; + -- The UnitedNationsDisengagementObserverForce was formed by the UN Security + -- Council in order to observe the 1973 Arab_Israeli cease_fire. + fun UnitedNationsDisengagementObserverForce : Ind OrganizationOfNations ; -fun PromotionOfTourism : Ind AreaOfConcern ; + fun UnitedNationsEducationalScientificAndCulturalOrganization : Ind OrganizationOfNations ; -fun PromotionOfTradeAndInvestment : Ind TransnationalIssue ; + fun UnitedNationsEnvironmentProgram : Ind OrganizationOfNations ; -fun PublicHealthConcern : Ind AreaOfConcern ; + -- The UnitedNationsGeneralAssembly is the primary deliberative body of the UnitedNations. + fun UnitedNationsGeneralAssembly : Ind OrganizationOfNations ; -fun Queen : Ind Position ; + fun UnitedNationsHighCommissionerForHumanRights : Ind InternationalOrganization ; -fun ReducePoverty : Ind AreaOfConcern ; + fun UnitedNationsHighCommissionerForRefugees : Ind OrganizationOfNations ; -fun ReducingCrime : Ind AreaOfConcern ; + fun UnitedNationsIndustrialDevelopmentOrganization : Ind OrganizationOfNations ; -fun RefugeeAssistance : Ind (both TransnationalIssue AreaOfConcern) ; + fun UnitedNationsInstituteForDisarmamentResearch : Ind InternationalOrganization ; --- RegionalLaw is the class of regional --- laws, considered as a body, established by particular Governments --- to regulate activities under their jurisdictions. For example, --- (RegionalLawFn UnitedStates) represents the content of the laws, --- statutes, and rulings of the United States. -fun RegionalLaw : Class ; -fun RegionalLaw_Class : SubClass RegionalLaw Proposition ; + fun UnitedNationsInstituteForTrainingAndResearch : Ind OrganizationOfNations ; --- (RegionalLawFn ?AREA) denotes the laws --- pertaining in the GeopoliticalArea ?AREA that are established and --- enforced by the Government of ?AREA. For example, (RegionalLawFn --- UnitedStates) denotes the laws of the government of the UnitedStates --- and its constituent units. -fun RegionalLawFn : El GeopoliticalArea -> Ind RegionalLaw ; + fun UnitedNationsInterimAdministrationMissionInKosovo : Ind InternationalOrganization ; + fun UnitedNationsInterimAdminstrationMissionInKosovo : Ind OrganizationOfNations ; -fun RegionalMember : Ind MemberStatus ; + fun UnitedNationsInterimForceInLebanon : Ind OrganizationOfNations ; -fun RegionalSecurity : Ind AreaOfConcern ; + -- The UnitedNationsInterregionalCrimeAndJusticeResearchInstitute was + -- reconstituted (from UNSDRI) into its present form in 1989 to address + -- broader demands introduced by the participation of more developing + -- countries in the UnitedNations. + fun UnitedNationsInterregionalCrimeAndJusticeResearchInstitute : Ind InternationalOrganization ; -fun ReproductiveHealthAndFamilyPlannning : Ind AreaOfConcern ; + fun UnitedNationsIraqKuwaitBoundaryDemarcationCommission : Ind InternationalOrganization ; --- Republic is the attribute of a government --- whose power and authority are vested in its members, who elect --- representatives to exercise that power. -fun Republic : Ind FormOfGovernment ; + fun UnitedNationsIraqKuwaitObservationMission : Ind OrganizationOfNations ; + fun UnitedNationsMilitaryObserverGroupInIndiaAndPakistan : Ind OrganizationOfNations ; --- RestrictedSuffrage is a subclass of --- SuffrageLaw covering laws that restrict suffrage by further --- conditions beyond the basics of citizenship and age. -fun RestrictedSuffrage : Class ; -fun RestrictedSuffrage_Class : SubClass RestrictedSuffrage SuffrageLaw ; + fun UnitedNationsMissionForTheReferendumInWesternSahara : Ind OrganizationOfNations ; --- The RioGroup was the result of fusing the --- Contadora Group and the Lima (or Support) Group. -fun RioGroup : Ind OrganizationOfNations ; + fun UnitedNationsMissionInBosniaAndHerzegovina : Ind OrganizationOfNations ; + fun UnitedNationsMissionInEthiopiaAndEritrea : Ind OrganizationOfNations ; --- RomanCanonLaw is the attribute of legal --- systems based on the Ecclesiastical law developed by the Roman Catholic --- Church. -fun RomanCanonLaw : Ind LegalSystemAttribute ; + fun UnitedNationsMissionInSierraLeone : Ind OrganizationOfNations ; + fun UnitedNationsMissionOfObserversInPrevlaka : Ind OrganizationOfNations ; -fun ScientificCooperation : Ind AreaOfConcern ; + fun UnitedNationsMissionOfObserversInTajikistan : Ind OrganizationOfNations ; -fun SelfGoverningTerritory : Class ; -fun SelfGoverningTerritory_Class : SubClass SelfGoverningTerritory GeopoliticalArea ; -fun SignatoryMember : Ind MemberStatus ; + fun UnitedNationsMonitoringAndVerificationCommission : Ind OrganizationOfNations ; -fun SocialCooperation : Ind TransnationalIssue ; + fun UnitedNationsObserverMissionInGeorgia : Ind OrganizationOfNations ; -fun SocialDevelopment : Ind AreaOfConcern ; + fun UnitedNationsOfficeOfProjectServices : Ind InternationalOrganization ; -fun SocioeconomicResearch : Ind AreaOfConcern ; + fun UnitedNationsOrganizationMissionInTheDemocraticRepublicOfTheCongo : Ind OrganizationOfNations ; -fun SouthAsianAssociationForRegionalCooperation : Ind OrganizationOfNations ; + fun UnitedNationsPeaceKeepingForceInCyprus : Ind OrganizationOfNations ; -fun SouthPacificRegionalTradeAndEconomicCooperationAgreement : Ind OrganizationOfNations ; + fun UnitedNationsPopulationFund : Ind OrganizationOfNations ; -fun SouthernAfricanCustomsUnion : Ind OrganizationOfNations ; + fun UnitedNationsPreventiveDeploymentForce : Ind OrganizationOfNations ; -fun SouthernAfricanDevelopmentCommunity : Ind OrganizationOfNations ; + fun UnitedNationsReliefAndWorksAgencyForPalestineRefugeesInTheNearEast : Ind OrganizationOfNations ; -fun SouthernConeCommonMarket : Ind OrganizationOfNations ; + -- The UnitedNationsResearchInstituteForSocialDevelopment conducts research + -- into problems of social and economic development. The Chair of its Board + -- of Directors is appointed by the UN Secretary General. (No country + -- members.) + fun UnitedNationsResearchInstituteForSocialDevelopment : Ind InternationalOrganization ; -fun SpaceResearchAndTechnology : Ind AreaOfConcern ; + -- The UnitedNationsSecretariat is + -- the primary administrative body of the UnitedNations. It is headed by + -- the United Nations' Secretary General, and constituted by him and his + -- staff. The UN General Assembly appoints the Secretary General for a + -- five_year term. + fun UnitedNationsSecretariat : Ind InternationalOrganization ; -fun Spokesperson : Ind Position ; + fun UnitedNationsSecurityCouncil : Ind OrganizationOfNations ; -fun StatisticalCommission : Ind InternationalOrganization ; + fun UnitedNationsSystemStaffCollege : Ind OrganizationOfNations ; -fun SubbureauMember : Ind MemberStatus ; + fun UnitedNationsTransitionalAdministrationInEastTimor : Ind OrganizationOfNations ; -fun SubscriberMember : Ind MemberStatus ; + fun UnitedNationsTruceSupervisionOrganization : Ind OrganizationOfNations ; --- SuffrageLaw is a class that includes the --- various types of suffrage rules of different Nations. Instances of --- SuffrageLaw represent the propositional content of various suffrage --- laws. -fun SuffrageLaw : Class ; -fun SuffrageLaw_Class : SubClass SuffrageLaw Proposition ; + -- The UnitedNationsTrusteeshipCouncil is one of the six major organs of the + -- UnitedNations, but it is currently inactive (though not dissolved) + -- following the transition of the last UN trust territory to an independent + -- government. + fun UnitedNationsTrusteeshipCouncil : Ind OrganizationOfNations ; -fun SupportLawEnforcement : Ind AreaOfConcern ; + -- The Rector and 24 members of the + -- UnitedNationsUniversity Council are appointed by the UN Secretary + -- General and the Director General of UNESCO. + fun UnitedNationsUniversity : Ind InternationalOrganization ; --- SupremeCourt is the subclass of --- JudicialOrganizations that are the ultimate judicial authority for the --- matters on which they rule. For example, the UnitedStatesSupremeCourt, --- or the InternationalCourtOfJustice (World Court). -fun SupremeCourt : Class ; -fun SupremeCourt_Class : SubClass SupremeCourt JudicialOrganization ; + -- Provides services to farmers in the UnitedStates. + fun UnitedStatesDepartmentOfAgriculture : Ind GovernmentOrganization ; --- (SupremeCourtFn ?AREA) denotes the class --- of the highest court(s) in the judicial system of GeopoliticalArea --- ?AREA. For example, the UnitedStatesSupremeCourt belongs to the class --- (SupremeCourtFn UnitedStates). -fun SupremeCourtFn: El GeopoliticalArea -> Desc SupremeCourt ; + -- Entrusted with the national security of the UnitedStates. + fun UnitedStatesDepartmentOfDefense : Ind GovernmentOrganization ; + -- One of the two legislatures that make up the UnitedStatesCongress. + fun UnitedStatesHouseOfRepresentatives : Ind LegislativeOrganization ; --- SupremeCourtJudge is the Position --- of a person who is a JudgeAtLaw on some SupremeCourt. -fun SupremeCourtJudge : Ind Position ; + -- The GovernmentOrganization of the + -- UnitedStates that is entrusted with delivering the mail. + fun UnitedStatesPostalService : Ind GovernmentOrganization ; + -- One of the two legislatures that make up the UnitedStatesCongress. + fun UnitedStatesSenate : Ind LegislativeOrganization ; -fun SuspendedMember : Ind MemberStatus ; + -- The UniversalPostalUnion became + -- affiliated with the UnitedNations on November 15, 1947. + fun UniversalPostalUnion : Ind OrganizationOfNations ; -fun TechnologyCooperation : Ind AreaOfConcern ; + -- UniversalSuffrageLaw is a law that + -- enfranchises all citizens of a country who have achieved the applicable + -- age of maturity (suffrageAgeMinumum). + fun UniversalSuffrageLaw : Ind SuffrageLaw ; --- TheocraticGovernment is the --- attribute of a government that bases its authority on Religion. -fun TheocraticGovernment : Ind FormOfGovernment ; + fun ViceChairman : Ind Position ; + fun VicePresident : Ind Position ; -fun TheocraticRepublic : Ind FormOfGovernment ; + fun VoterAgeRequirement : Class ; + fun VoterAgeRequirement_Class : SubClass VoterAgeRequirement SuffrageLaw ; -fun TransitionalAdministration : Ind (both AreaOfConcern TransnationalIssue) ; + fun VoterCitizenshipRequirement : Ind SuffrageLaw ; --- TransitionalGovernment is the --- attribute of a government that is changing from one form of government --- to another. This may be accompanied by social unrest or instability. -fun TransitionalGovernment : Ind FormOfGovernment ; + -- (VotingFn ?ELECTION) denotes the class of + -- voting events that occur as part of the Election ?ELECTION. + fun VotingFn: El Election -> Desc Voting ; + fun WarCrimesProsecution : Ind (both AreaOfConcern TransnationalIssue) ; --- TransnationalIssue is a class of --- Attributes that characterize the concerns of Nations, international --- Non_Governmental Institutions (NGOs), and other transnational agents. -fun TransnationalIssue : Class ; -fun TransnationalIssue_Class : SubClass TransnationalIssue AreaOfConcern ; + fun WarsawPact : Ind OrganizationOfNations ; -fun TransportationCoordination : Ind AreaOfConcern ; + fun WassenaarArrangement : Ind OrganizationOfNations ; --- The US government organization charged with protecting the --- integrity of US national borders, primarily by detecting and --- preventing attempts at illegal immigration. -fun USCustomsAndBorderProtection : Ind (both GovernmentOrganization PoliceOrganization) ; + fun WeaponsInspection : Ind (both AreaOfConcern TransnationalIssue) ; + fun WestAfricanDevelopmentBank : Ind OrganizationOfNations ; --- The branch of the US Government that --- handles relations with foreign governments and entities. It is the chief --- diplomatic instrument of US foreign policy. It controls US embassies and --- consuls. -fun USStateDepartment : Ind Government ; + fun WestAfricanEconomicAndMonetaryUnion : Ind OrganizationOfNations ; + fun WesternEuropeanUnion : Ind OrganizationOfNations ; -fun UnicameralLegislature : Ind FormOfGovernment ; + fun WorldBankGroup : Ind OrganizationOfNations ; -fun UnincorporatedUnitedStatesTerritory : Class ; -fun UnincorporatedUnitedStatesTerritory_Class : SubClass UnincorporatedUnitedStatesTerritory OverseasArea ; --- UnitaryRule is a FormOfGovernment in which --- the central government controls affairs at all levels, including the local --- level. -fun UnitaryRule : Ind FormOfGovernment ; + -- The WorldConfederationOfLabor + -- was previously named the International Federation of Christian Trade + -- Unions. It was renamed on October 4, 1968. + fun WorldConfederationOfLabor : Ind OrganizationOfNations ; + fun WorldCustomsOrganization : Ind OrganizationOfNations ; --- The UnitedNations has six principal --- subOrganizations: the Secretariat, the General Assembly, the Security --- Council, the Economic and Social Council, the Trusteeship Council --- (currently inactive), and the International Court of Justice. The United --- Nations has numerous subordinate agencies and bodies within those six --- major subdivisions. -fun UnitedNations : Ind OrganizationOfNations ; + fun WorldFederationOfTradeUnions : Ind OrganizationOfNations ; + fun WorldFoodProgram : Ind OrganizationOfNations ; -fun UnitedNationsCenterForHumanSettlements : Ind OrganizationOfNations ; + fun WorldHealthOrganization : Ind OrganizationOfNations ; -fun UnitedNationsChildrensFund : Ind OrganizationOfNations ; + fun WorldIntellectualPropertyOrganization : Ind OrganizationOfNations ; -fun UnitedNationsCivilianPoliceMissionInHaiti : Ind OrganizationOfNations ; + fun WorldLaborIssues : Ind (both AreaOfConcern TransnationalIssue) ; --- The --- UnitedNationsCompensationCommission was created to process claims and --- pay compensation for losses and damage suffered as a direct result of --- the unlawful invasion and occupation of Kuwait by Iraq. -fun UnitedNationsCompensationCommission : Ind InternationalOrganization ; + fun WorldMeteorologicalOrganization : Ind OrganizationOfNations ; + fun WorldTourismOrganization : Ind OrganizationOfNations ; -fun UnitedNationsConferenceOnTradeAndDevelopment : Ind OrganizationOfNations ; + -- The WorldTradeOrganization + -- succeeded the General Agreement on Tariff and Trade (GATT). + fun WorldTradeOrganization : Ind OrganizationOfNations ; -fun UnitedNationsDevelopmentProgram : Ind OrganizationOfNations ; + -- The ZanggerCommittee was established during the 1970s. + fun ZanggerCommittee : Ind OrganizationOfNations ; --- The --- UnitedNationsDisengagementObserverForce was formed by the UN Security --- Council in order to observe the 1973 Arab_Israeli cease_fire. -fun UnitedNationsDisengagementObserverForce : Ind OrganizationOfNations ; + -- (abbreviation ?STRING ?THING) means that + -- ?STRING is an abbreviation used to refer to ?THING. Abbreviations include + -- acronyms and other abbreviated forms. + fun abbreviation : El SymbolicString -> El Entity -> Formula ; + -- (administrativeCenter ?CENTER + -- ?REGION) means that ?CENTER is the City (or other area) from which + -- the larger GeopoliticalArea ?REGION is administered. + fun administrativeCenter : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; -fun UnitedNationsEducationalScientificAndCulturalOrganization : Ind OrganizationOfNations ; + -- (agentOperatesInArea ?AGENT ?AREA) + -- means that the individual or Organization ?AGENT operates in the + -- GeographicArea ?AREA. + fun agentOperatesInArea : El Agent -> El GeographicArea -> Formula ; -fun UnitedNationsEnvironmentProgram : Ind OrganizationOfNations ; + -- (agreementAdoptionDate ?AGR ?TIME) + -- means that the agreement ?AGR was adopted on the date indicated by ?TIME. + -- For example, (agreementAdoptionDate ConstitutionOfTheUnitedStates + -- (DayFn 17 (MonthFn September (YearFn 1787)))). + fun agreementAdoptionDate: El Proposition -> Desc TimePosition -> Formula ; --- The --- UnitedNationsGeneralAssembly is the primary deliberative body of the --- UnitedNations. -fun UnitedNationsGeneralAssembly : Ind OrganizationOfNations ; + -- (agreementEffectiveDate ?AGR ?TIME) means that the agreement ?AGR + -- becomes effective on the date indicated by ?TIME. + -- For example, (agreementEffectiveDate ConstitutionOfTheUnitedStates (DayFn 4 (MonthFn March (YearFn 1789)))). + fun agreementEffectiveDate: El Proposition -> Desc TimePosition -> Formula ; + -- (agreementEffectiveDuring ?AGR ?DATE) means that the agreement ?AGR is effective during the time + -- indicated by ?DATE. The agreement may be effective for longer than ?DATE, + -- but it is in effect at least throughout the time indicated by ?DATE. + fun agreementEffectiveDuring: El Proposition -> Desc TimePosition -> Formula ; -fun UnitedNationsHighCommissionerForHumanRights : Ind InternationalOrganization ; + -- (agreementRevisionDate ?AGR ?DATE ?CHANGE) means that the agreement + -- ?AGR was revised at the time indicated by ?DATE, with respect to the + -- part ?CHANGE. Revisions cover additions and removals. + fun agreementRevisionDate: El Proposition -> Desc TimePosition -> El Proposition -> Formula ; -fun UnitedNationsHighCommissionerForRefugees : Ind OrganizationOfNations ; + -- (aimOfOrganization ?GROUP ?DESCRIPTION) means that the Organization + -- ?GROUP has the purpose ?DESCRIPTION, formulated as a quoted text. + fun aimOfOrganization : El Organization -> El SymbolicString -> Formula ; -fun UnitedNationsIndustrialDevelopmentOrganization : Ind OrganizationOfNations ; + -- (associateInOrganization ?AGENT ?GROUP) means that ?AGENT is associated in some way + -- with the Group ?GROUP. This includes participation as a guest or observer, + -- as well as being a full member. See member for a more specific relation. + fun associateInOrganization : El Agent -> El Group -> Formula ; -fun UnitedNationsInstituteForDisarmamentResearch : Ind InternationalOrganization ; + -- (associateWithStatus ?AGT ?STATUS ?GROUP) means that the Agent + -- ?AGT has the RelationalAttribute ?STATUS in the Group ?GROUP. + -- For example, (associateWithStatus UnitedStates PermanentMember UnitedNationsSecurityCouncil) + -- means that the &UnitedStates has the status of a permanent member in the U.N. Security Council. + fun associateWithStatus : El Agent -> El RelationalAttribute -> El Group -> Formula ; -fun UnitedNationsInstituteForTrainingAndResearch : Ind OrganizationOfNations ; + -- (candidateForPosition ?ELECTION ?POSITION ?CONTENDER) means that in the Election ?ELECTION for + -- ?POSITION, the Agent ?CONTENDER was one of the candidates. + fun candidateForPosition : El Election -> El SocialRole -> El Agent -> Formula ; -fun UnitedNationsInterimAdministrationMissionInKosovo : Ind InternationalOrganization ; + -- (capitalCity ?CITY ?REGION) means that the + -- City ?CITY is the capital of the GeopoliticalArea ?REGION. + fun capitalCity : El City -> El GeopoliticalArea -> Formula ; + + -- (cardinality ?SET ?NUMBER) means that there + -- are ?NUMBER of elements in the SetOrClass ?SET. + fun cardinality : El SetOrClass -> El NonnegativeInteger -> Formula ; + + -- (chamberOfLegislature ?CHAMBER ?LEGISLATURE) means that ?CHAMBER is a legislative body + -- within the ?LEGISLATURE. + fun chamberOfLegislature : El Organization -> El Organization -> Formula ; + + -- (chanceryAddressInArea ?AREA1 ?ADDRESS ?AREA2) means that the address of the main foreign service + -- organization of the GeopoliticalArea ?AREA1 for ?AREA2 is the SymbolicString ?ADDRESS. + fun chanceryAddressInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; + + -- (chanceryFAXNumberInArea ?AREA1 ?FAX ?AREA2) means that the FAX number of the main diplomatic office of + -- the GeopoliticalArea ?AREA1 located in ?AREA2 is ?FAX. + fun chanceryFAXNumberInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; + + -- (chanceryMailingAddressInArea ?AREA1 ?ADDRESS ?AREA2) means that the mailing address of + -- the main foreign service organization of the GeopoliticalArea ?AREA1 located in ?AREA2 is + -- the SymbolicString ?ADDRESS. + fun chanceryMailingAddressInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; + + -- (chanceryTelephoneNumberInArea ?AREA1 ?TELEPHONE ?AREA2) means that the + -- telephone number of the main diplomatic office of the GeopoliticalArea + -- ?AREA1 located in ?AREA2 is ?TELEPHONE. + fun chanceryTelephoneNumberInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; + + -- (chiefOfDiplomaticMission ?AGENT1 ?PERSON ?RANK ?AGENT2) means that + -- the chief diplomatic representative sent by the Agent ?AGENT1 to the + -- Agent ?AGENT2 is ?PERSON, whose official position is ?RANK. + fun chiefOfDiplomaticMission : El Agent -> El Human -> El Position -> El Agent -> Formula ; + + -- (chiefOfState ?POLITY ?ROLE ?PERSON) means + -- that ?PERSON is the titular leader of the government of the + -- GeopoliticalArea ?POLITY and represents it at official functions. The + -- office held by this chief of state is ?ROLE (e.g., President, Queen, + -- Chairman). Note: this term is defined as in the CIA World Fact Book. + fun chiefOfState : El GeopoliticalArea -> El Position -> El Human -> Formula ; + + -- (chiefOfStateType ?NATION ?ROLE) means + -- that the chiefOfState of the GeopoliticalArea ?NATION holds the + -- Position ?ROLE in its government. + fun chiefOfStateType : El GeopoliticalArea -> El Position -> Formula ; + + -- (commemoratesDate ?HOLIDAY ?DATE) means + -- that instances of the Holiday ?HOLIDAY are observed to commemorate + -- something that happened during the TimeInterval specified by ?DATE. + -- For example, (commemoratesDate BastilleDay (DayFn 14 (MonthFn July (YearFn 1789)))). + fun commemoratesDate: El Holiday -> Desc TimeInterval -> Formula ; + + -- (conventionalLongName ?NAME ?THING) + -- means that the string ?NAME is the long form of the name conventionally + -- used for ?THING. + fun conventionalLongName : El SymbolicString -> El Entity -> Formula ; + + -- (conventionalShortName ?NAME ?THING) means that the string ?NAME is + -- the short form of the name conventionally used for ?THING. + -- For a more specialized subset of short names, see abbreviation. + fun conventionalShortName : El SymbolicString -> El Entity -> Formula ; + + -- (dateDissolved ?THING ?TIME) means that the Physical ?THING was dissolved, + -- disbanded, or superseded on the date indicated by ?TIME. + -- For example, (dateDissolved UnitedNationsPreventiveDeploymentForce (DayFn 25 (MonthFn March (YearFn 1999)))). + fun dateDissolved: El Physical -> Desc TimePosition -> Formula ; + + -- (dateEstablished ?THING ?TIME) means + -- that the Physical ?THING was founded on the date indicated by ?TIME. + -- For example, (dateEstablished UnitedNations (DayFn 26 (MonthFn June (YearFn 1945)))). + fun dateEstablished: El Physical -> Desc TimePosition -> Formula ; + + -- (dependentAreaOfType ?AREA ?COUNTRY ?TYPE) means that + -- the GeopoliticalArea ?AREA is a dependency of the independent Nation ?COUNTRY, + -- administered as a unit of ?TYPE. + -- For example, (dependentAreaOfType SaintHelena UnitedKingdom OverseasArea). + fun dependentAreaOfType: El GeopoliticalArea -> El GeopoliticalArea -> Desc GeopoliticalArea -> Formula ; + + -- (diplomaticOrganizationType ?AGENT1 ?ORG ?AGENT2) means that the + -- Agent ?AGENT1 has a diplomatic organization of the type ?ORG + -- in Agent ?AGENT2. For example, + -- (diplomaticOrganizationType UnitedStates Embassy France), or + -- (diplomaticOrganizationType UnitedStates ConsulateGeneral + -- ShanghaiChina). + fun diplomaticOrganizationType: El Agent -> Desc Organization -> El Agent -> Formula ; + + -- (diplomaticRelations ?COUNTRY1 ?COUNTRY2) means that there are official + -- diplomatic relations between the two Nations ?COUNTRY1 and ?COUNTRY2. + fun diplomaticRelations : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; + + -- (diplomaticRepresentationType ?AGENT1 ?RANK ?AGENT2) means that the + -- Agent ?AGENT1 sends a representative with the Position ?RANK + -- to the Agent ?AGENT2. + fun diplomaticRepresentationType : El Agent -> El Position -> El Agent -> Formula ; + + -- (diplomaticRepresentativeInRole ?AGENT1 ?PERSON ?RANK ?AGENT2) means + -- that the Agent ?AGENT1 sends the individual ?PERSON with the + -- Position ?RANK as its representative to the Agent ?AGENT2. + -- Note: it is possible for ?PERSON to be diplomatically accredited to more + -- than one area. For example, currently the United States Ambassador to + -- Papua New Guinea is also accredited to Vanuatu, and there is no embassy + -- in Vanuatu. + fun diplomaticRepresentativeInRole : El Agent -> El Human -> El Position -> El Agent -> Formula ; + + -- (electionDatePlannedForPosition ?AGENT ?TIME ?POSITION) means that the + -- Agent ?AGENT (a Nation, Government, or Organization) plans to hold + -- an Election on the date indicated by ?TIME for position(s) ?POSITION. + fun electionDatePlannedForPosition: El Agent -> Desc TimePosition -> El SocialRole -> Formula ; + + -- (electionForOrganization ?ELECTION ?GROUP) means that in the + -- Election ?ELECTION, candidates run for election to the organization ?GROUP. + fun electionForOrganization : El Election -> El Organization -> Formula ; + + -- (electionForPosition ?ELECTION ?POSITION) means that in the Election ?ELECTION, + -- candidates run for election to the role(s) ?POSITION. + fun electionForPosition : El Election -> El SocialRole -> Formula ; + + -- (electionWinner ?ELECTION ?POSITION ?CONTENDER) means that in the Election ?ELECTION, + -- ?POSITION was won by the Agent ?CONTENDER. Contenders may be either persons or political parties. + fun electionWinner : El Election -> El SocialRole -> El Agent -> Formula ; + + -- (executiveBranch ?BRANCH ?ORG) means + -- that the Organization ?BRANCH is the executive branch of the + -- GeopoliticalArea or Organization ?ORG, that is, its executive offices + -- and bodies, considered as a whole. + fun executiveBranch : El Organization -> El Agent -> Formula ; + + -- (flagDescription ?AREA ?DESCRIPTION) + -- means that the SymbolicString ?DESCRIPTION is a verbal description of + -- the flag of the GeopoliticalArea ?AREA. + fun flagDescription : El GeopoliticalArea -> El SymbolicString -> Formula ; + + -- (flagImage ?AREA ?POINTER) means that an image + -- of the flag of the GeopoliticalArea ?AREA is found at the location given + -- in the SymbolicString ?POINTER. + fun flagImage : El GeopoliticalArea -> El SymbolicString -> Formula ; + + -- (governmentType ?BODY ?FORM) means that + -- the GeopoliticalArea or Organization ?BODY has a government with + -- characteristic(s) of the type ?FORM. + fun governmentType : El Agent -> El FormOfGovernment -> Formula ; + + -- (headOfGovernment ?POLITY ?ROLE ?PERSON) means that ?PERSON is + -- the top administrative leader of the Government of the GeopoliticalArea ?POLITY, with + -- authority for managing its day_to_day functions. The office held by this person + -- is the Position ?ROLE (e.g., President, Prime Minister, Governor). + -- Note: this term is defined as in the CIA World Fact Book. + fun headOfGovernment : El GeopoliticalArea -> El Position -> El Human -> Formula ; + + -- (holidayTimeInArea ?AREA ?TIME) means that ?TIME is a particular time period during which Holiday + -- is observed, thus during which normal government, business, and other services may not operate. + fun holidayTimeInArea : El GeopoliticalArea -> El TimePosition -> Formula ; + + -- (independenceDate ?AREA ?DATE) means + -- that the GeopoliticalArea ?AREA achieved its sovereignty on the date ?DATE. + -- For example, (independenceDate Afghanistan (DayFn 19 (MonthFn August (YearFn 1919)))). + fun independenceDate: El GeopoliticalArea -> Desc TimeInterval -> Formula ; + + -- (judicialBranch ?BRANCH ?ORG) means that + -- the Organization ?BRANCH is the judicial branch of the + -- GeopoliticalArea or Organization ?ORG, that is, all of its courts and + -- judicial offices, considered as a whole. + fun judicialBranch : El Organization -> El Agent -> Formula ; + + -- (leaderPosition ?ORG ?ROLE) + -- means that in the organization ?ORG, the leader is the person + -- who holds the Position ?ROLE in the organization. + fun leaderPosition : El Agent -> El Position -> Formula ; + + -- (legalSystemType ?AREA ?TYPE) means + -- that the GeopoliticalArea ?AREA has a legal system characterized by + -- the LegalSystemAttribute ?TYPE. For example, (legalSystemType + -- UnitedStates EnglishCommonLaw). A legal system may have multiple characteristics. + fun legalSystemType : El GeopoliticalArea -> El LegalSystemAttribute -> Formula ; + + -- (legislativeBranch ?BRANCH ?ORG) means + -- that the Organization ?BRANCH is the legislative branch of the + -- GeopoliticalArea or Organization ?ORG. + fun legislativeBranch : El Organization -> El Agent -> Formula ; + + -- (nationalCelebration ?AREA ?HOLIDAY) + -- means that the primary day of national celebration in the + -- GeopoliticalArea ?AREA is ?HOLIDAY. + -- For example, (nationalCelebration Afghanistan AfghanIndependenceDay). + fun nationalCelebration: El GeopoliticalArea -> Desc Holiday -> Formula ; + + -- (nationalHoliday ?AREA ?HOLIDAY) means + -- that ?HOLIDAY is a national holiday observed in ?AREA. The + -- GeopoliticalArea ?AREA observes a holiday on days specified as a + -- ?HOLIDAY, during which national government offices and other facilities + -- typically are closed. There may be multiple nationalHolidays. + -- For example, (nationalHoliday UnitedStates UnitedStatesMemorialDay). + fun nationalHoliday: El GeopoliticalArea -> Desc Holiday -> Formula ; + + -- (organizationalObjective ?AGENT ?FOCUS) means that the Agent ?AGENT has + -- significant aims and concerns characterized by the AreaOfConcern ?FOCUS. + fun organizationalObjective : El Agent -> El AreaOfConcern -> Formula ; + + -- (politicalPartyOfCountry ?PARTY ?AREA) means that the PoliticalParty ?PARTY participates + -- in politics in the GeopoliticalArea ?AREA. + fun politicalPartyOfCountry : El PoliticalParty -> El GeopoliticalArea -> Formula ; + + -- (primaryGeopoliticalSubdivision ?AREA ?COUNTRY) means that the + -- GeopoliticalArea ?AREA is one of the first_order administrative + -- divisions of the Nation ?COUNTRY. For example, in the United States, + -- any of the fifty states. This does not include subordinate regions that + -- have a lesser status, such as British Crown colonies, U.S. territories, + -- or protectorates. See geopoliticalSubdivision. + fun primaryGeopoliticalSubdivision : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; + + -- (primaryGeopoliticalSubdivisionType ?COUNTRY ?TYPE) means that the + -- first_order administrative divisons of ?COUNTRY are of the type ?TYPE. + fun primaryGeopoliticalSubdivisionType: El GeopoliticalArea -> Desc GeopoliticalArea -> Formula ; + + -- (representativeAgentToAgent ?SENDER ?REP ?RECEIVER) means that + -- the Agent ?SENDER has the Agent ?REP as its representative + -- to the Agent ?RECEIVER. ?REP works for ?SENDER and is not assumed + -- to be an impartial mediator. + fun representativeAgentToAgent : El Agent -> El Agent -> El Agent -> Formula ; + + -- (roleAppointsRole ?ORG ?APPOINTER ?APPOINTED) means that in the Organization or + -- GeopoliticalArea ?ORG, the agent holding the SocialRole ?APPOINTER has the authority to + -- appoint a person to fill the role ?APPOINTED. + fun roleAppointsRole : El Agent -> El SocialRole -> El SocialRole -> Formula ; + + -- (roleApprovesRole ?ORG ?APPROVER ?APPOINTED) means that in the Organization or GeopoliticalArea ?ORG, + -- the agent holding the SocialRole ?APPROVER has the authority to approve (or disapprove) of an appointee for + -- the role ?APPOINTED. + fun roleApprovesRole : El Agent -> El SocialRole -> El SocialRole -> Formula ; + + -- (roleNominatesRole ?ORG ?NOMINATOR ?NOMINATED) means that in the Organization or GeopoliticalArea ?ORG, + -- the agent holding the SocialRole ?NOMINATOR has the authority to nominate one or more persons to + -- fill the role ?NOMINATED. + fun roleNominatesRole : El Agent -> El SocialRole -> El SocialRole -> Formula ; + + -- (seatsHeldInOrganization ?GROUP ?PARTY ?NUMBER) means that in the Organization ?GROUP, + -- the PoliticalParty or other Agent ?AGENT, holds or controls this ?NUMBER of seats. + fun seatsHeldInOrganization : El Organization -> El Agent -> El NonnegativeInteger -> Formula ; + + -- (seatsInOrganizationCount ?ORG ?NUMBER) means that there is a total ?NUMBER of seats in + -- the Organization ?ORG. + fun seatsInOrganizationCount : El Organization -> El Integer -> Formula ; + + -- (seatsWonInElection ?ELECTION ?AGENT ?NUMBER) means that in the Election ?ELECTION, + -- the PoliticalParty ?AGENT won this ?NUMBER of seats. + fun seatsWonInElection : El Election -> El Agent -> El Integer -> Formula ; + + -- (successorOrganization ?OLD ?NEW) + -- means that the Organization ?OLD was transformed or merged into, or + -- otherwise succeeded by, the Organization ?NEW. + fun successorOrganization : El Organization -> El Organization -> Formula ; + + -- (suffrageAgeMaximum ?POLITY ?AGE) + -- means that in the Organization or GeopoliticalArea ?POLITY, a person + -- must be ?AGE or younger in order to vote in the elections of ?POLITY. + fun suffrageAgeMaximum : El Agent -> El TimeDuration -> Formula ; + + -- (suffrageAgeMinimum ?POLITY ?AGE) + -- means that in the Organization or GeopoliticalArea ?POLITY, a person + -- must be ?AGE or older in order to vote in the elections of ?POLITY. + fun suffrageAgeMinimum : El Agent -> El TimeDuration -> Formula ; + + -- (termLength ?ORG ?ROLE ?LENGTH) means + -- that in the Organization or GeopoliticalArea ?ORG, the term of office + -- for the position ?ROLE is the TimeDuration ?LENGTH. + fun termLength : El Agent -> El SocialRole -> El TimeDuration -> Formula ; + + -- (voteFractionReceived ?ELECTION ?POSITION ?CONTENDER ?FRACTION) means + -- that in the Election ?ELECTION for ?POSITION, the Agent ?CONTENDER + -- received ?FRACTION of the votes cast. Contenders may be either persons or political parties. + fun voteFractionReceived : El Election -> El SocialRole -> El Agent -> El RealNumber -> Formula ; -fun UnitedNationsInterimAdminstrationMissionInKosovo : Ind OrganizationOfNations ; - -fun UnitedNationsInterimForceInLebanon : Ind OrganizationOfNations ; - --- The UnitedNationsInterregionalCrimeAndJusticeResearchInstitute was --- reconstituted (from UNSDRI) into its present form in 1989 to address --- broader demands introduced by the participation of more developing --- countries in the UnitedNations. -fun UnitedNationsInterregionalCrimeAndJusticeResearchInstitute : Ind InternationalOrganization ; - - -fun UnitedNationsIraqKuwaitBoundaryDemarcationCommission : Ind InternationalOrganization ; - -fun UnitedNationsIraqKuwaitObservationMission : Ind OrganizationOfNations ; - -fun UnitedNationsMilitaryObserverGroupInIndiaAndPakistan : Ind OrganizationOfNations ; - -fun UnitedNationsMissionForTheReferendumInWesternSahara : Ind OrganizationOfNations ; - -fun UnitedNationsMissionInBosniaAndHerzegovina : Ind OrganizationOfNations ; - -fun UnitedNationsMissionInEthiopiaAndEritrea : Ind OrganizationOfNations ; - -fun UnitedNationsMissionInSierraLeone : Ind OrganizationOfNations ; - -fun UnitedNationsMissionOfObserversInPrevlaka : Ind OrganizationOfNations ; - -fun UnitedNationsMissionOfObserversInTajikistan : Ind OrganizationOfNations ; - -fun UnitedNationsMonitoringAndVerificationCommission : Ind OrganizationOfNations ; - -fun UnitedNationsObserverMissionInGeorgia : Ind OrganizationOfNations ; - -fun UnitedNationsOfficeOfProjectServices : Ind InternationalOrganization ; - -fun UnitedNationsOrganizationMissionInTheDemocraticRepublicOfTheCongo : Ind OrganizationOfNations ; - -fun UnitedNationsPeaceKeepingForceInCyprus : Ind OrganizationOfNations ; - -fun UnitedNationsPopulationFund : Ind OrganizationOfNations ; - -fun UnitedNationsPreventiveDeploymentForce : Ind OrganizationOfNations ; - -fun UnitedNationsReliefAndWorksAgencyForPalestineRefugeesInTheNearEast : Ind OrganizationOfNations ; - --- The --- UnitedNationsResearchInstituteForSocialDevelopment conducts research --- into problems of social and economic development. The Chair of its Board --- of Directors is appointed by the UN Secretary General. (No country --- members.) -fun UnitedNationsResearchInstituteForSocialDevelopment : Ind InternationalOrganization ; - - --- The UnitedNationsSecretariat is --- the primary administrative body of the UnitedNations. It is headed by --- the United Nations' Secretary General, and constituted by him and his --- staff. The UN General Assembly appoints the Secretary General for a --- five_year term. -fun UnitedNationsSecretariat : Ind InternationalOrganization ; - - -fun UnitedNationsSecurityCouncil : Ind OrganizationOfNations ; - -fun UnitedNationsSystemStaffCollege : Ind OrganizationOfNations ; - -fun UnitedNationsTransitionalAdministrationInEastTimor : Ind OrganizationOfNations ; - -fun UnitedNationsTruceSupervisionOrganization : Ind OrganizationOfNations ; - --- The --- UnitedNationsTrusteeshipCouncil is one of the six major organs of the --- UnitedNations, but it is currently inactive (though not dissolved) --- following the transition of the last UN trust territory to an independent --- government. -fun UnitedNationsTrusteeshipCouncil : Ind OrganizationOfNations ; - - --- The Rector and 24 members of the --- UnitedNationsUniversity Council are appointed by the UN Secretary --- General and the Director General of UNESCO. -fun UnitedNationsUniversity : Ind InternationalOrganization ; - - --- Provides services to farmers in --- the UnitedStates. -fun UnitedStatesDepartmentOfAgriculture : Ind GovernmentOrganization ; - - --- Entrusted with the national --- security of the UnitedStates. -fun UnitedStatesDepartmentOfDefense : Ind GovernmentOrganization ; - - --- One of the two legislatures --- that make up the UnitedStatesCongress. -fun UnitedStatesHouseOfRepresentatives : Ind LegislativeOrganization ; - - --- The GovernmentOrganization of the --- UnitedStates that is entrusted with delivering the mail. -fun UnitedStatesPostalService : Ind GovernmentOrganization ; - - --- One of the two legislatures that make --- up the UnitedStatesCongress. -fun UnitedStatesSenate : Ind LegislativeOrganization ; - - --- The UniversalPostalUnion became --- affiliated with the UnitedNations on November 15, 1947. -fun UniversalPostalUnion : Ind OrganizationOfNations ; - - --- UniversalSuffrageLaw is a law that --- enfranchises all citizens of a country who have achieved the applicable --- age of maturity (suffrageAgeMinumum). -fun UniversalSuffrageLaw : Ind SuffrageLaw ; - - -fun ViceChairman : Ind Position ; - -fun VicePresident : Ind Position ; - -fun VoterAgeRequirement : Class ; -fun VoterAgeRequirement_Class : SubClass VoterAgeRequirement SuffrageLaw ; -fun VoterCitizenshipRequirement : Ind SuffrageLaw ; - --- (VotingFn ?ELECTION) denotes the class of --- voting events that occur as part of the Election ?ELECTION. -fun VotingFn: El Election -> Desc Voting ; - - -fun WarCrimesProsecution : Ind (both AreaOfConcern TransnationalIssue) ; - -fun WarsawPact : Ind OrganizationOfNations ; - -fun WassenaarArrangement : Ind OrganizationOfNations ; - -fun WeaponsInspection : Ind (both AreaOfConcern TransnationalIssue) ; - -fun WestAfricanDevelopmentBank : Ind OrganizationOfNations ; - -fun WestAfricanEconomicAndMonetaryUnion : Ind OrganizationOfNations ; - -fun WesternEuropeanUnion : Ind OrganizationOfNations ; - -fun WorldBankGroup : Ind OrganizationOfNations ; - --- The WorldConfederationOfLabor --- was previously named the International Federation of Christian Trade --- Unions. It was renamed on October 4, 1968. -fun WorldConfederationOfLabor : Ind OrganizationOfNations ; - - -fun WorldCustomsOrganization : Ind OrganizationOfNations ; - -fun WorldFederationOfTradeUnions : Ind OrganizationOfNations ; - -fun WorldFoodProgram : Ind OrganizationOfNations ; - -fun WorldHealthOrganization : Ind OrganizationOfNations ; - -fun WorldIntellectualPropertyOrganization : Ind OrganizationOfNations ; - -fun WorldLaborIssues : Ind (both AreaOfConcern TransnationalIssue) ; - -fun WorldMeteorologicalOrganization : Ind OrganizationOfNations ; - -fun WorldTourismOrganization : Ind OrganizationOfNations ; - --- The WorldTradeOrganization --- succeeded the General Agreement on Tariff and Trade (GATT). -fun WorldTradeOrganization : Ind OrganizationOfNations ; - - --- The ZanggerCommittee was established --- during the 1970s. -fun ZanggerCommittee : Ind OrganizationOfNations ; - - --- (abbreviation ?STRING ?THING) means that --- ?STRING is an abbreviation used to refer to ?THING. Abbreviations include --- acronyms and other abbreviated forms. -fun abbreviation : El SymbolicString -> El Entity -> Formula ; - - --- (administrativeCenter ?CENTER --- ?REGION) means that ?CENTER is the City (or other area) from which --- the larger GeopoliticalArea ?REGION is administered. -fun administrativeCenter : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; - - --- (agentOperatesInArea ?AGENT ?AREA) --- means that the individual or Organization ?AGENT operates in the --- GeographicArea ?AREA. -fun agentOperatesInArea : El Agent -> El GeographicArea -> Formula ; - - --- (agreementAdoptionDate ?AGR ?TIME) --- means that the agreement ?AGR was adopted on the date indicated by ?TIME. --- For example, (agreementAdoptionDate ConstitutionOfTheUnitedStates --- (DayFn 17 (MonthFn September (YearFn 1787)))). -fun agreementAdoptionDate: El Proposition -> Desc TimePosition -> Formula ; - - --- (agreementEffectiveDate ?AGR --- ?TIME) means that the agreement ?AGR becomes effective on the date --- indicated by ?TIME. For example, (agreementEffectiveDate --- ConstitutionOfTheUnitedStates (DayFn 4 (MonthFn March (YearFn --- 1789)))). -fun agreementEffectiveDate: El Proposition -> Desc TimePosition -> Formula ; - - --- (agreementEffectiveDuring ?AGR --- ?DATE) means that the agreement ?AGR is effective during the time --- indicated by ?DATE. The agreement may be effective for longer than ?DATE, --- but it is in effect at least throughout the time indicated by ?DATE. -fun agreementEffectiveDuring: El Proposition -> Desc TimePosition -> Formula ; - - --- (agreementRevisionDate ?AGR ?DATE ?CHANGE) means that the agreement --- ?AGR was revised at the time indicated by ?DATE, with respect to the --- part ?CHANGE. Revisions cover additions and removals. -fun agreementRevisionDate: El Proposition -> Desc TimePosition -> El Proposition -> Formula ; - - --- (aimOfOrganization ?GROUP ?DESCRIPTION) means that the Organization --- ?GROUP has the purpose ?DESCRIPTION, formulated as a quoted text. -fun aimOfOrganization : El Organization -> El SymbolicString -> Formula ; - - --- (associateInOrganization --- ?AGENT ?GROUP) means that ?AGENT is associated in some way with the --- Group ?GROUP. This includes participation as a guest or observer, --- as well as being a full member. See member for a more specific --- relation. -fun associateInOrganization : El Agent -> El Group -> Formula ; - - --- (associateWithStatus ?AGT ?STATUS ?GROUP) means that the Agent --- ?AGT has the RelationalAttribute ?STATUS in the Group ?GROUP. --- For example, (associateWithStatus UnitedStates PermanentMember --- UnitedNationsSecurityCouncil) means that the &UnitedStates has the status --- of a permanent member in the U.N. Security Council. -fun associateWithStatus : El Agent -> El RelationalAttribute -> El Group -> Formula ; - - --- (candidateForPosition ?ELECTION --- ?POSITION ?CONTENDER) means that in the Election ?ELECTION for --- ?POSITION, the Agent ?CONTENDER was one of the candidates. -fun candidateForPosition : El Election -> El SocialRole -> El Agent -> Formula ; - - --- (capitalCity ?CITY ?REGION) means that the --- City ?CITY is the capital of the GeopoliticalArea ?REGION. -fun capitalCity : El City -> El GeopoliticalArea -> Formula ; - - --- (cardinality ?SET ?NUMBER) means that there --- are ?NUMBER of elements in the SetOrClass ?SET. -fun cardinality : El SetOrClass -> El NonnegativeInteger -> Formula ; - - --- (chamberOfLegislature ?CHAMBER --- ?LEGISLATURE) means that ?CHAMBER is a legislative body within the --- ?LEGISLATURE. -fun chamberOfLegislature : El Organization -> El Organization -> Formula ; - - --- (chanceryAddressInArea ?AREA1 --- ?ADDRESS ?AREA2) means that the address of the main foreign service --- organization of the GeopoliticalArea ?AREA1 for ?AREA2 is the --- SymbolicString ?ADDRESS. -fun chanceryAddressInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; - - --- (chanceryFAXNumberInArea ?AREA1 --- ?FAX ?AREA2) means that the FAX number of the main diplomatic office of --- the GeopoliticalArea ?AREA1 located in ?AREA2 is ?FAX. -fun chanceryFAXNumberInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; - - --- (chanceryMailingAddressInArea ?AREA1 ?ADDRESS ?AREA2) means that the --- mailing address of the main foreign service organization of the --- GeopoliticalArea ?AREA1 located in ?AREA2 is the SymbolicString --- ?ADDRESS. -fun chanceryMailingAddressInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; - - --- (chanceryTelephoneNumberInArea ?AREA1 ?TELEPHONE ?AREA2) means that the --- telephone number of the main diplomatic office of the GeopoliticalArea --- ?AREA1 located in ?AREA2 is ?TELEPHONE. -fun chanceryTelephoneNumberInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ; - - --- (chiefOfDiplomaticMission ?AGENT1 ?PERSON ?RANK ?AGENT2) means that --- the chief diplomatic representative sent by the Agent ?AGENT1 to the --- Agent ?AGENT2 is ?PERSON, whose official position is ?RANK. -fun chiefOfDiplomaticMission : El Agent -> El Human -> El Position -> El Agent -> Formula ; - - --- (chiefOfState ?POLITY ?ROLE ?PERSON) means --- that ?PERSON is the titular leader of the government of the --- GeopoliticalArea ?POLITY and represents it at official functions. The --- office held by this chief of state is ?ROLE (e.g., President, Queen, --- Chairman). Note: this term is defined as in the CIA World Fact Book. -fun chiefOfState : El GeopoliticalArea -> El Position -> El Human -> Formula ; - - --- (chiefOfStateType ?NATION ?ROLE) means --- that the chiefOfState of the GeopoliticalArea ?NATION holds the --- Position ?ROLE in its government. -fun chiefOfStateType : El GeopoliticalArea -> El Position -> Formula ; - - --- (commemoratesDate ?HOLIDAY ?DATE) means --- that instances of the Holiday ?HOLIDAY are observed to commemorate --- something that happened during the TimeInterval specified by ?DATE. For --- example, (commemoratesDate BastilleDay (DayFn 14 (MonthFn July --- (YearFn 1789)))). -fun commemoratesDate: El Holiday -> Desc TimeInterval -> Formula ; - - --- (conventionalLongName ?NAME ?THING) --- means that the string ?NAME is the long form of the name conventionally --- used for ?THING. -fun conventionalLongName : El SymbolicString -> El Entity -> Formula ; - - --- (conventionalShortName ?NAME --- ?THING) means that the string ?NAME is the short form of the name --- conventionally used for ?THING. For a more specialized subset of short --- names, see abbreviation. -fun conventionalShortName : El SymbolicString -> El Entity -> Formula ; - - --- (dateDissolved ?THING ?TIME) means that --- the Physical ?THING was dissolved, disbanded, or superseded on the date --- indicated by ?TIME. For example, (dateDissolved --- UnitedNationsPreventiveDeploymentForce (DayFn 25 (MonthFn March --- (YearFn 1999)))). -fun dateDissolved: El Physical -> Desc TimePosition -> Formula ; - - --- (dateEstablished ?THING ?TIME) means --- that the Physical ?THING was founded on the date indicated by ?TIME. --- For example, (dateEstablished UnitedNations --- (DayFn 26 (MonthFn June (YearFn 1945)))). -fun dateEstablished: El Physical -> Desc TimePosition -> Formula ; - - --- (dependentAreaOfType ?AREA ?COUNTRY --- ?TYPE) means that the GeopoliticalArea ?AREA is a dependency of the --- independent Nation ?COUNTRY, administered as a unit of ?TYPE. For --- example, (dependentAreaOfType SaintHelena --- UnitedKingdom OverseasArea). -fun dependentAreaOfType: El GeopoliticalArea -> El GeopoliticalArea -> Desc GeopoliticalArea -> Formula ; - - --- (diplomaticOrganizationType ?AGENT1 ?ORG ?AGENT2) means that the --- Agent ?AGENT1 has a diplomatic organization of the type ?ORG --- in Agent ?AGENT2. For example, --- (diplomaticOrganizationType UnitedStates Embassy France), or --- (diplomaticOrganizationType UnitedStates ConsulateGeneral --- ShanghaiChina). -fun diplomaticOrganizationType: El Agent -> Desc Organization -> El Agent -> Formula ; - - --- (diplomaticRelations ?COUNTRY1 ?COUNTRY2) means that there are official --- diplomatic relations between the two Nations ?COUNTRY1 and ?COUNTRY2. -fun diplomaticRelations : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; - - --- (diplomaticRepresentationType ?AGENT1 ?RANK ?AGENT2) means that the --- Agent ?AGENT1 sends a representative with the Position ?RANK --- to the Agent ?AGENT2. -fun diplomaticRepresentationType : El Agent -> El Position -> El Agent -> Formula ; - - --- (diplomaticRepresentativeInRole ?AGENT1 ?PERSON ?RANK ?AGENT2) means --- that the Agent ?AGENT1 sends the individual ?PERSON with the --- Position ?RANK as its representative to the Agent ?AGENT2. --- Note: it is possible for ?PERSON to be diplomatically accredited to more --- than one area. For example, currently the United States Ambassador to --- Papua New Guinea is also accredited to Vanuatu, and there is no embassy --- in Vanuatu. -fun diplomaticRepresentativeInRole : El Agent -> El Human -> El Position -> El Agent -> Formula ; - - --- (electionDatePlannedForPosition ?AGENT ?TIME ?POSITION) means that the --- Agent ?AGENT (a Nation, Government, or Organization) plans to hold --- an Election on the date indicated by ?TIME for position(s) ?POSITION. -fun electionDatePlannedForPosition: El Agent -> Desc TimePosition -> El SocialRole -> Formula ; - - --- (electionForOrganization ?ELECTION ?GROUP) means that in the --- Election ?ELECTION, candidates run for election to the organization --- ?GROUP. -fun electionForOrganization : El Election -> El Organization -> Formula ; - - --- (electionForPosition ?ELECTION --- ?POSITION) means that in the Election ?ELECTION, candidates run for --- election to the role(s) ?POSITION. -fun electionForPosition : El Election -> El SocialRole -> Formula ; - - --- (electionWinner ?ELECTION ?POSITION --- ?CONTENDER) means that in the Election ?ELECTION, ?POSITION was won by --- the Agent ?CONTENDER. Contenders may be either persons or political --- parties. -fun electionWinner : El Election -> El SocialRole -> El Agent -> Formula ; - - --- (executiveBranch ?BRANCH ?ORG) means --- that the Organization ?BRANCH is the executive branch of the --- GeopoliticalArea or Organization ?ORG, that is, its executive offices --- and bodies, considered as a whole. -fun executiveBranch : El Organization -> El Agent -> Formula ; - - --- (flagDescription ?AREA ?DESCRIPTION) --- means that the SymbolicString ?DESCRIPTION is a verbal description of --- the flag of the GeopoliticalArea ?AREA. -fun flagDescription : El GeopoliticalArea -> El SymbolicString -> Formula ; - - --- (flagImage ?AREA ?POINTER) means that an image --- of the flag of the GeopoliticalArea ?AREA is found at the location given --- in the SymbolicString ?POINTER. -fun flagImage : El GeopoliticalArea -> El SymbolicString -> Formula ; - - --- (governmentType ?BODY ?FORM) means that --- the GeopoliticalArea or Organization ?BODY has a government with --- characteristic(s) of the type ?FORM. -fun governmentType : El Agent -> El FormOfGovernment -> Formula ; - - --- (headOfGovernment ?POLITY ?ROLE --- ?PERSON) means that ?PERSON is the top administrative leader of the --- Government of the GeopoliticalArea ?POLITY, with authority for --- managing its day_to_day functions. The office held by this person --- is the Position ?ROLE (e.g., President, Prime Minister, Governor). --- Note: this term is defined as in the CIA World Fact Book. -fun headOfGovernment : El GeopoliticalArea -> El Position -> El Human -> Formula ; - - --- (holidayTimeInArea ?AREA --- ?TIME) means that ?TIME is a particular time period during which Holiday --- is observed, thus during which normal government, business, and other --- services may not operate. -fun holidayTimeInArea : El GeopoliticalArea -> El TimePosition -> Formula ; - - --- (independenceDate ?AREA ?DATE) means --- that the GeopoliticalArea ?AREA achieved its sovereignty on the date --- ?DATE. For example, (independenceDate Afghanistan (DayFn 19 --- (MonthFn August (YearFn 1919)))). -fun independenceDate: El GeopoliticalArea -> Desc TimeInterval -> Formula ; - - --- (judicialBranch ?BRANCH ?ORG) means that --- the Organization ?BRANCH is the judicial branch of the --- GeopoliticalArea or Organization ?ORG, that is, all of its courts and --- judicial offices, considered as a whole. -fun judicialBranch : El Organization -> El Agent -> Formula ; - - --- (leaderPosition ?ORG ?ROLE) --- means that in the organization ?ORG, the leader is the person --- who holds the Position ?ROLE in the organization. -fun leaderPosition : El Agent -> El Position -> Formula ; - - --- (legalSystemType ?AREA ?TYPE) means --- that the GeopoliticalArea ?AREA has a legal system characterized by --- the LegalSystemAttribute ?TYPE. For example, (legalSystemType --- UnitedStates EnglishCommonLaw). A legal system may have multiple --- characteristics. -fun legalSystemType : El GeopoliticalArea -> El LegalSystemAttribute -> Formula ; - - --- (legislativeBranch ?BRANCH ?ORG) means --- that the Organization ?BRANCH is the legislative branch of the --- GeopoliticalArea or Organization ?ORG. -fun legislativeBranch : El Organization -> El Agent -> Formula ; - - --- (nationalCelebration ?AREA ?HOLIDAY) --- means that the primary day of national celebration in the --- GeopoliticalArea ?AREA is ?HOLIDAY. For example, (nationalCelebration --- Afghanistan AfghanIndependenceDay). -fun nationalCelebration: El GeopoliticalArea -> Desc Holiday -> Formula ; - - --- (nationalHoliday ?AREA ?HOLIDAY) means --- that ?HOLIDAY is a national holiday observed in ?AREA. The --- GeopoliticalArea ?AREA observes a holiday on days specified as a --- ?HOLIDAY, during which national government offices and other facilities --- typically are closed. There may be multiple nationalHolidays. For --- example, (nationalHoliday UnitedStates UnitedStatesMemorialDay). -fun nationalHoliday: El GeopoliticalArea -> Desc Holiday -> Formula ; - - --- (organizationalObjective ?AGENT --- ?FOCUS) means that the Agent ?AGENT has significant aims and --- concerns characterized by the AreaOfConcern ?FOCUS. -fun organizationalObjective : El Agent -> El AreaOfConcern -> Formula ; - - --- (politicalPartyOfCountry ?PARTY --- ?AREA) means that the PoliticalParty ?PARTY participates in politics in --- the GeopoliticalArea ?AREA. -fun politicalPartyOfCountry : El PoliticalParty -> El GeopoliticalArea -> Formula ; - - --- (primaryGeopoliticalSubdivision ?AREA ?COUNTRY) means that the --- GeopoliticalArea ?AREA is one of the first_order administrative --- divisions of the Nation ?COUNTRY. For example, in the United States, --- any of the fifty states. This does not include subordinate regions that --- have a lesser status, such as British Crown colonies, U.S. territories, --- or protectorates. See geopoliticalSubdivision. -fun primaryGeopoliticalSubdivision : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; - - --- (primaryGeopoliticalSubdivisionType ?COUNTRY ?TYPE) means that the --- first_order administrative divisons of ?COUNTRY are of the type ?TYPE. -fun primaryGeopoliticalSubdivisionType: El GeopoliticalArea -> Desc GeopoliticalArea -> Formula ; - - --- representativeAgentToAgent ?SENDER ?REP ?RECEIVER) means that --- the Agent ?SENDER has the Agent ?REP as its representative --- to the Agent ?RECEIVER. ?REP works for ?SENDER and is not assumed --- to be an impartial mediator. -fun representativeAgentToAgent : El Agent -> El Agent -> El Agent -> Formula ; - - --- (roleAppointsRole ?ORG ?APPOINTER --- ?APPOINTED) means that in the Organization or GeopoliticalArea ?ORG, --- the agent holding the SocialRole ?APPOINTER has the authority to --- appoint a person to fill the role ?APPOINTED. -fun roleAppointsRole : El Agent -> El SocialRole -> El SocialRole -> Formula ; - - --- (roleApprovesRole ?ORG ?APPROVER --- ?APPOINTED) means that in the Organization or GeopoliticalArea ?ORG, --- the agent holding the SocialRole ?APPROVER has the authority to --- approve (or disapprove) of an appointee for the role ?APPOINTED. -fun roleApprovesRole : El Agent -> El SocialRole -> El SocialRole -> Formula ; - - --- (roleNominatesRole ?ORG ?NOMINATOR --- ?NOMINATED) means that in the Organization or GeopoliticalArea ?ORG, --- the agent holding the SocialRole ?NOMINATOR has the authority to --- nominate one or more persons to fill the role ?NOMINATED. -fun roleNominatesRole : El Agent -> El SocialRole -> El SocialRole -> Formula ; - - --- (seatsHeldInOrganization ?GROUP ?PARTY --- ?NUMBER) means that in the Organization ?GROUP, the PoliticalParty or other --- Agent ?AGENT, holds or controls this ?NUMBER of seats. -fun seatsHeldInOrganization : El Organization -> El Agent -> El NonnegativeInteger -> Formula ; - - --- (seatsInOrganizationCount ?ORG --- ?NUMBER) means that there is a total ?NUMBER of seats in the --- Organization ?ORG. -fun seatsInOrganizationCount : El Organization -> El Integer -> Formula ; - - --- (seatsWonInElection ?ELECTION ?AGENT --- ?NUMBER) means that in the Election ?ELECTION, the PoliticalParty --- ?AGENT won this ?NUMBER of seats. -fun seatsWonInElection : El Election -> El Agent -> El Integer -> Formula ; - - --- (successorOrganization ?OLD ?NEW) --- means that the Organization ?OLD was transformed or merged into, or --- otherwise succeeded by, the Organization ?NEW. -fun successorOrganization : El Organization -> El Organization -> Formula ; - - --- (suffrageAgeMaximum ?POLITY ?AGE) --- means that in the Organization or GeopoliticalArea ?POLITY, a person --- must be ?AGE or younger in order to vote in the elections of ?POLITY. -fun suffrageAgeMaximum : El Agent -> El TimeDuration -> Formula ; - - --- (suffrageAgeMinimum ?POLITY ?AGE) --- means that in the Organization or GeopoliticalArea ?POLITY, a person --- must be ?AGE or older in order to vote in the elections of ?POLITY. -fun suffrageAgeMinimum : El Agent -> El TimeDuration -> Formula ; - - --- (termLength ?ORG ?ROLE ?LENGTH) means --- that in the Organization or GeopoliticalArea ?ORG, the term of office --- for the position ?ROLE is the TimeDuration ?LENGTH. -fun termLength : El Agent -> El SocialRole -> El TimeDuration -> Formula ; - - --- (voteFractionReceived ?ELECTION --- ?POSITION ?CONTENDER ?FRACTION) means that in the Election ?ELECTION for --- ?POSITION, the Agent ?CONTENDER received ?FRACTION of the votes cast. --- Contenders may be either persons or political parties. -fun voteFractionReceived : El Election -> El SocialRole -> El Agent -> El RealNumber -> Formula ; } diff --git a/examples/SUMO/HigherOrder.gf b/examples/SUMO/HigherOrder.gf deleted file mode 100644 index fef66885e..000000000 --- a/examples/SUMO/HigherOrder.gf +++ /dev/null @@ -1,98 +0,0 @@ ---# -path=.:englishExtended -abstract HigherOrder = Merge ** { - -fun SingleValuedRelation : (c : Class) -> (El c -> Formula) -> Formula; -def SingleValuedRelation c f = forall c (\x -> forall c (\y -> impl (and (f (var c c ? x)) (f (var c c ? y))) (equal (var c Entity ? x) (var c Entity ? y)))); - -fun AntisymmetricRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def AntisymmetricRelation c f = forall c (\x -> forall c (\y -> impl (and (f (var c c ? x) (var c c ? y)) (f (var c c ? y) (var c c ? x))) (equal (var c Entity ? x) (var c Entity ? y)))); - -fun IntentionalRelation : (c1,c2 : Class) -> (El c1 -> El c2 -> Formula) -> Formula ; -def IntentionalRelation c1 c2 f = forall c1 (\x -> forall c2 (\y -> inScopeOfInterest (var c1 CognitiveAgent ? x) (var c2 Entity ? y))); --- assume binary predicate, since it is mostly used for that - -fun ReflexiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def ReflexiveRelation c f = forall c (\x -> f (var c c ? x) (var c c ? x)); - -fun SymmetricRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def SymmetricRelation c f = forall c (\x -> forall c(\y -> impl (f (var c c ? x) (var c c ? y)) (f (var c c ? y) (var c c ? x)))); - -fun EquivalenceRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def EquivalenceRelation c f = and (and (ReflexiveRelation c f) (SymmetricRelation c f)) (TransitiveRelation c f); - -fun TransitiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def TransitiveRelation c f = forall c (\x -> forall c (\y -> forall c(\z -> impl (and (f (var c c ? x) (var c c ? y)) (f (var c c ? y) (var c c ? z))) (f (var c c ? x) (var c c ? z))))); - -fun IrreflexiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def IrreflexiveRelation c f = forall c (\x -> not (f (var c c ? x) (var c c ? x))); - -fun AsymmetricRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def AsymmetricRelation c f = and (AntisymmetricRelation c f) (IrreflexiveRelation c f); - -fun PropositionalAttitude : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def PropositionalAttitude c f = (AsymmetricRelation c f); - -fun ObjectAttitude : (c1,c2 : Class) -> (El c1 -> El c2 -> Formula) -> Formula ; -def ObjectAttitude c1 c2 f = IntentionalRelation c1 c2 f ; - -fun IntransitiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def IntransitiveRelation c f = forall c (\x -> forall c (\y -> forall c(\z -> impl (and (f (var c c ? x) (var c c ? y)) (f (var c c ? y) (var c c ? z))) (not (f (var c c ? x) (var c c ? z)))))); - -fun PartialOrderingRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def PartialOrderingRelation c f = and (and (TransitiveRelation c f) (AntisymmetricRelation c f)) (ReflexiveRelation c f); - -fun TrichotomizingRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def TrichotomizingRelation c f = forall c (\x -> forall c (\y -> -or -(or -(and -(and (f (var c c ? x) (var c c ? y)) -(not (equal (var c Entity ? x) (var c Entity ? y)))) -(not (f (var c c ? y) (var c c ? x)))) -(and -(and (not (f (var c c ? x) (var c c ? y))) -(equal (var c Entity ? x) (var c Entity ? y))) -(not (f (var c c ? y) (var c c ? x))))) -(and -(and (f (var c c ? y) (var c c ? x)) -(not (equal (var c Entity ? x) (var c Entity ? y)))) -(not (f (var c c ? x) (var c c ? y)))))); - -fun TotalOrderingRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; -def TotalOrderingRelation c f = and (PartialOrderingRelation c f) (TrichotomizingRelation c f) ; - -fun OneToOneFunction : (c1, c2 : Class) -> (El c1 -> Ind c2) -> Formula ; -def OneToOneFunction c1 c2 f = forall c1(\x -> - forall c1(\y -> impl (not(equal (var c1 Entity ? x) (var c1 Entity ? y))) (not (equal (el c2 Entity ? (f (var c1 c1 ? x))) (el c2 Entity ? (f (var c1 c1 ? y))))))); - -fun SequenceFunction : (c : Class) -> (El Integer -> Ind c) -> Formula ; -def SequenceFunction c f = OneToOneFunction Integer c f ; - -fun AssociativeFunction : (c : Class) -> (El c -> El c -> Ind c) -> Formula ; -def AssociativeFunction c f = forall c(\x -> - forall c(\y -> - forall c(\z -> equal (el c Entity ? (f (var c c ? x) (el c c ? (f (var c c ? y) (var c c ? z))))) (el c Entity ? (f (el c c ? (f (var c c ? x) (var c c ? y))) (var c c ? z)))))); - -fun CommutativeFunction : (c1,c2 : Class) -> (El c1 -> El c1 -> Ind c2) -> Formula ; -def CommutativeFunction c1 c2 f = forall c1 (\x -> - forall c1 (\y -> - equal (el c2 Entity ? (f (var c1 c1 ? x) (var c1 c1 ? y))) (el c2 Entity ? (f (var c1 c1 ? y) (var c1 c1 ? y))))); - -fun identityElement : (c : Class) -> (El c -> El c -> Ind c) -> El c -> Formula ; -def identityElement c f elem = forall c(\x -> equal (el c Entity ? (f (var c c ? x) elem)) (var c Entity ? x)); - -fun distributes : (c : Class) -> (El c -> El c -> Ind c) -> (El c -> El c -> Ind c) -> Formula ; -def distributes c f g = forall c (\x -> forall c (\y -> forall c (\z -> equal (el c Entity ? (g (el c c ? (f (var c c ? x) (var c c ? y))) (var c c ? z))) (el c Entity ? (f (el c c ? (g (var c c ? x) (var c c ? z))) (el c c ? (g (var c c ? y) (var c c ? z)))))))); - -fun inverse : (c : Class) -> (El c -> El c -> Formula) -> (El c -> El c -> Formula) -> Formula ; -def inverse c f g = forall c (\x -> forall c (\y -> equiv (f (var c c ? x) (var c c ? y)) (g (var c c ? y) (var c c ? x)))); - -fun subRelation2El : (c1,c2,c3,c4 : Class) -> (El c1 -> El c2 -> Formula) -> (El c3 -> El c4 -> Formula) -> Formula ; -def subRelation2El c1 c2 c3 c4 f g = forall c1 (\x -> forall c2 (\y -> impl (f (var c1 c1 ? x) (var c2 c2 ? y)) (g (var c1 c3 ? x) (var c2 c4 ? y)))); - -fun KappaFn : (c : Class) -> (Ind c -> Formula) -> Class ; - - - - -}; \ No newline at end of file diff --git a/examples/SUMO/HigherOrderEng.gf b/examples/SUMO/HigherOrderEng.gf deleted file mode 100644 index ea7284b1e..000000000 --- a/examples/SUMO/HigherOrderEng.gf +++ /dev/null @@ -1,21 +0,0 @@ ---# -path=.:englishExtended -concrete HigherOrderEng of HigherOrder = BasicEng ** open DictLangEng, DictEng, ParadigmsEng, ResEng, ParamBasic in { - -lin - - -AsymmetricRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA asymmetric_A) (UseN relation_N)))))) ; -EquivalenceRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN equivalence_N) (MassNP (UseN relation_N))))))) ; -IntransitiveRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA intransitive_A) (UseN relation_N)))))) ; --- OneToOneFunction c1 c2 f = mkPolSent(PredVP f (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdvCN (UseN one_N) (PrepNP to_Prep (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01))))))) (UseN function_N)))))))) ; -PartialOrderingRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA partial_A) (ApposCN (UseN2 (VerbToNounV2 order_V2)) (MassNP (UseN relation_N)))))))) ; -SequenceFunction c f = mkPolSent(PredVP f (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sequence_N) (MassNP (UseN function_N))))))) ; -ReflexiveRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA reflexive_A) (UseN relation_N)))))) ; -SymmetricRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA symmetric_A) (UseN relation_N)))))) ; -TotalOrderingRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA total_A) (ApposCN (UseN2 (VerbToNounV2 order_V2)) (MassNP (UseN relation_N)))))))) ; -TransitiveRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA transitive_A) (UseN relation_N)))))) ; -IntentionalRelation c1 c2 f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA intentional_A) (UseN relation_N)))))) ; -subRelation2El c1 c2 c3 c4 f g = mkPolSent (PredVP (sentToNoun f) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN relation_N)))))) (PrepNP part_Prep (sentToNoun g)))) ; -identityElement c f elem = mkPolSent (PredVP elem (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN identity_N) (MassNP (UseN element_N)))))) (PrepNP part_Prep f))) ; -inverse c f g = mkPolSent (PredVP (sentToNoun f) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN inverse_N)))) (PrepNP part_Prep (sentToNoun g)))) ; -}; \ No newline at end of file diff --git a/examples/SUMO/Merge.gf b/examples/SUMO/Merge.gf index d7035e6ac..37e2b708a 100644 --- a/examples/SUMO/Merge.gf +++ b/examples/SUMO/Merge.gf @@ -1,6829 +1,6367 @@ --- # -path=.:englishExtended abstract Merge = Basic ** { + -- Any AnatomicalStructure which + -- is not normally found in the Organism of which it is a part, i.e. it is + -- the result of a PathologicProcess. This class covers tumors, birth marks, + -- goiters, etc. + fun AbnormalAnatomicalStructure : Class ; + fun AbnormalAnatomicalStructure_Class : SubClass AbnormalAnatomicalStructure AnatomicalStructure ; + + -- This is a PositionalAttribute derived from the + -- up/down schema and not involving contact. Note that this means directly + -- above, i.e., if one object is Above another object, then the projections + -- of the two objects overlap. + fun Above : Ind AntiSymmetricPositionalAttribute ; + + -- The value of (AbsoluteValueFn ?NUMBER) + -- is the absolute value of the RealNumber ?NUMBER. + fun AbsoluteValueFn : El RealNumber -> Ind NonnegativeRealNumber ; + + -- Properties or qualities as distinguished from any + -- particular embodiment of the properties/qualities in a physical medium. + -- Instances of Abstract can be said to exist in the same sense as mathematical + -- objects such as sets and relations, but they cannot exist at a particular + -- place and time without some physical encoding or embodiment. + fun Abstract : Class ; + fun Abstract_Class : SubClass Abstract Entity ; + + -- A UnaryFunction that maps a Class into + -- the instance of Attribute that specifies the condition(s) for membership + -- in the Class. + fun AbstractionFn : Class -> Ind Attribute ; + + -- If ?NUMBER1 and ?NUMBER2 are Numbers, then + -- (AdditionFn ?NUMBER1 ?NUMBER2) is the arithmetical sum of these + -- numbers. + fun AdditionFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- Used to assert that an object ?OBJ1 is close + -- to, near or abutting ?OBJ2. This PositionalAttribute covers the + -- following common sense notions: adjoins, abuts, is contiguous to, + -- is juxtaposed, and is close to. + fun Adjacent : Ind SymmetricPositionalAttribute ; + + -- One of the parts of speech. The Class of + -- Words that conventionally denote Attributes of Objects. + fun Adjective : Class ; + fun Adjective_Class : SubClass Adjective Word ; + + -- One of the parts of speech. The Class of Words + -- that conventionally denote Attributes of Processes. + fun Adverb : Class ; + fun Adverb_Class : SubClass Adverb Word ; + + -- A Disseminating whose purpose is to + -- promote the sale of an Object represented in a Text or Icon + -- (the advertisement). + fun Advertising : Class ; + fun Advertising_Class : SubClass Advertising Disseminating ; + + -- A GroupOfPeople whose members all have the + -- same age. + fun AgeGroup : Class ; + fun AgeGroup_Class : SubClass AgeGroup GroupOfPeople ; + + -- Something or someone that can act on its own and + -- produce changes in the world. + fun Agent : Class ; + fun Agent_Class : SubClass Agent Object ; + + -- Air is the gaseous stuff that makes up the + -- atmosphere surrounding Earth. + fun Air : Class ; + fun Air_Class : SubClass Air GasMixture ; + + -- A Class containing all of the Attributes + -- relating to the notions of possibility and necessity. + fun AlethicAttribute : Class ; + fun AlethicAttribute_Class : SubClass AlethicAttribute ObjectiveNorm ; + + -- A chiefly aquatic plant that contains chlorophyll, + -- but does not form embryos during development and lacks vascular tissue. + fun Alga : Class ; + fun Alga_Class : SubClass Alga NonFloweringPlant ; + + -- Any BodyMotion which is accomplished by + -- means of the legs of an Animal for the purpose of moving from one + -- point to another. + fun Ambulating : Class ; + fun Ambulating_Class : SubClass Ambulating (both BodyMotion Translocation) ; + + -- SI electric current measure. Symbol: A. It is + -- one of the base units in SI. It is defined as follows: the Ampere is + -- that constant current which, if maintained in two straight parallel + -- conductors of infinite length, of negligible circular cross_section, and + -- placed 1 Meter apart in a vacuum, would produce between these conductors + -- a force equal to 2*10^(_7) Newton per Meter of length. + fun Ampere : Ind CompositeUnitOfMeasure ; + + -- A cold_blooded, smooth_skinned Vertebrate + -- which characteristically hatches as an aquatic larva, breathing by + -- gills. When mature, the Amphibian breathes with Lungs. + fun Amphibian : Class ; + fun Amphibian_Class : SubClass Amphibian ColdBloodedVertebrate ; + + -- Atomic mass unit. Symbol: u. It is the mass of + -- the twelfth part of an atom of the Carbon 12 isotope. + fun Amu : Ind UnitOfMass ; + + -- A normal or pathological part + -- of the anatomy or structural organization of an Organism. This + -- class covers BodyParts, as well as structures that are given off + -- by Organisms, e.g. ReproductiveBodies. + fun AnatomicalStructure : Class ; + fun AnatomicalStructure_Class : SubClass AnatomicalStructure OrganicObject ; + + -- The value of an angle in a plane or in a + -- solid. + fun AngleMeasure : Class ; + fun AngleMeasure_Class : SubClass AngleMeasure ConstantQuantity ; + + -- The Angstrom is a LengthMeasure. + -- 1 Angstrom = 10^(_10) m + fun Angstrom : Ind UnitOfLength ; + + -- A plane angle measure. + fun AngularDegree : Ind UnitOfAngularMeasure ; + + -- Attributes that indicate whether an + -- Organism is alive or not. + fun AnimacyAttribute : Class ; + fun AnimacyAttribute_Class : SubClass AnimacyAttribute BiologicalAttribute ; + + -- An Organism with eukaryotic Cells, and lacking + -- stiff cell walls, plastids, and photosynthetic pigments. + fun Animal : Class ; + fun Animal_Organism : SubClassC Animal Organism (\ANIMAL -> and (forall AnimalSubstance (\SUBSTANCE -> part(var AnimalSubstance Object ? SUBSTANCE)(var Organism Object ? ANIMAL))) (forall AnimalAnatomicalStructure (\STRUCTURE -> part(var AnimalAnatomicalStructure Object ? STRUCTURE)(var Organism Object ? ANIMAL)))) ; + + -- AnatomicalStructures that + -- are possessed exclusively by Animals. + fun AnimalAnatomicalStructure : Class ; + fun AnimalAnatomicalStructure_Class : SubClass AnimalAnatomicalStructure AnatomicalStructure ; + + -- The subclass of Languages used by + -- Animals other than Humans. + fun AnimalLanguage : Class ; + fun AnimalLanguage_Class : SubClass AnimalLanguage Language ; + + -- BodySubstances that are produced + -- exclusively by Animals. + fun AnimalSubstance : Class ; + fun AnimalSubstance_Class : SubClass AnimalSubstance BodySubstance ; + + -- AntiSymmetricPositionalAttribute is the class of + -- PositionalAttribute that hold in only one direction. I.e. two objects cannot + -- simulataneously be On each other. + fun AntiSymmetricPositionalAttribute : Class ; + fun AntiSymmetricPositionalAttribute_Class : SubClass AntiSymmetricPositionalAttribute PositionalAttribute ; + + -- Various Primates with no tails or only short + -- tails. + fun Ape : Class ; + fun Ape_Class : SubClass Ape Primate ; + + -- The Class of all Months which are April. + fun April : Class ; + fun April_Class : SubClass April Month ; + + -- The Class of Mammals that dwell chiefly + -- in the water. Includes whales, dolphins, manatees, seals, and walruses. + fun AquaticMammal : Class ; + fun AquaticMammal_Class : SubClass AquaticMammal Mammal ; + + -- A Class of Arthropods that includes + -- ticks and spiders. + fun Arachnid : Class ; + fun Arachnid_Class : SubClass Arachnid Arthropod ; + + -- Measures of the amount of space in two + -- dimensions. + fun AreaMeasure : Class ; + fun AreaMeasure_Class : SubClass AreaMeasure FunctionQuantity ; + + -- Any proposition which has the form of a deductive + -- or inductive argument, i.e. a set of premises which, it is claimed, imply + -- a conclusion. + fun Argument : Class ; + fun Argument_Class : SubClass Argument Proposition ; + + -- Artifacts that are created primarily for + -- aesthetic appreciation. Note that this Class does not include + -- most examples of architecture, which belong under StationaryArtifact. + fun ArtWork : Class ; + fun ArtWork_Class : SubClass ArtWork Artifact ; + + -- A Class of Invertebrate that includes + -- Arachnids and Insects. + fun Arthropod : Class ; + fun Arthropod_Class : SubClass Arthropod Invertebrate ; + + -- A relatively short Text that either is unbound or is + -- bound with other Articles in a Book. + fun Article : Class ; + fun Article_Class : SubClass Article Text ; + + -- A CorpuscularObject that is the product of a + -- Making. + fun Artifact : Class ; + fun Artifact_Class : SubClass Artifact CorpuscularObject ; + + -- The subclass of Languages that are + -- designed by Humans. + fun ArtificialLanguage : Class ; + fun ArtificialLanguage_Class : SubClass ArtificialLanguage Language ; + + -- Asexual Processes of biological + -- reproduction. + fun AsexualReproduction : Class ; + fun AsexualReproduction_Class : SubClass AsexualReproduction Replication ; + + -- Attribute that applies to Organisms that are + -- sleeping. + fun Asleep : Ind ConsciousnessAttribute ; + + -- The Class of all astronomical + -- objects of significant size. It includes SelfConnectedObjects + -- like planets, stars, and asteroids, as well as Collections like + -- nebulae, galaxies, and constellations. Note that the planet Earth + -- is an AstronomicalBody, but every Region of Earth is a + -- GeographicArea. + fun AstronomicalBody : Class ; + fun AstronomicalBody_Class : SubClass AstronomicalBody Region ; + + -- An extremely small unit of matter that retains its + -- identity in Chemical reactions. It consists of an AtomicNucleus and + -- Electrons surrounding the AtomicNucleus. + fun Atom : Class ; + fun Atom_Class : SubClass Atom ElementalSubstance ; + + -- MassMeasure that is also known as the gram_atom. + -- Defined as the mass in grams of 1 Mole of pure substance. For example, + -- 1 AtomGram of Carbon 12 will be 12 Grams of pure Carbon 12. 2 AtomGrams + -- of the same substance will be 24 Grams of it. This is an unusual unit in + -- that it is essentially 1 Mole of 'stuff' measured in grams, so that the + -- actual value (i.e. mass) depends on the type of substance. + fun AtomGram : Ind UnitOfMass ; + + -- The core of the Atom. It is composed of + -- Protons and Neutrons. + fun AtomicNucleus : Class ; + fun AtomicNucleus_Class : SubClass AtomicNucleus SubatomicParticle ; + + -- A Process where one Object becomes attached + -- to another Object. Note that this differs from Putting in that two + -- things which are attached may already be in the same location. Note that + -- Combining is different from Attaching in that the former applies to + -- Substances, while the latter applies to CorpuscularObjects. Note too + -- that Attaching is different from Putting in that one or both of the + -- two things which are attached may or may not be moved from the location + -- where they were combined. + fun Attaching : Class ; + fun Attaching_Class : SubClass Attaching DualObjectProcess ; + + -- A Device whose purpose is to attach one thing + -- to something else, e.g. nails, screws, buttons, etc. + fun AttachingDevice : Class ; + fun AttachingDevice_Class : SubClass AttachingDevice Device ; + + -- A Maneuver in a ViolentContest where the + -- agent attempts to inflict damage on the patient. + fun Attack : Class ; + fun Attack_Class : SubClass Attack Maneuver ; + + -- Qualities which we cannot or choose not to + -- reify into subclasses of Object. + fun Attribute : Class ; + fun Attribute_Class : SubClass Attribute Abstract ; + + -- A sound level capable of being heard by a Human. + fun Audible : Ind SoundAttribute ; + + -- The Class of all Months which are August. + fun August : Class ; + fun August_Class : SubClass August Month ; + + -- The class of PhysiologicProcesses of + -- which there is not conscious awareness and control. + fun AutonomicProcess : Class ; + fun AutonomicProcess_Class : SubClass AutonomicProcess PhysiologicProcess ; + + -- Attribute that applies to Organisms that are + -- neither Unconscious nor Asleep. + fun Awake : Ind ConsciousnessAttribute ; + + -- A Function that maps an Object to the side + -- that is opposite the FrontFn of the Object. Note that this is a + -- partial function, since some Objects do not have sides, e.g. apples + -- and spheres. Note too that the range of this Function is indefinite in + -- much the way that ImmediateFutureFn and ImmediatePastFn are indefinite. + -- Although this indefiniteness is undesirable from a theoretical standpoint, + -- it does not have significant practical implications, since there is + -- widespread intersubjective agreement about the most common cases. + fun BackFn : El SelfConnectedObject -> Ind SelfConnectedObject ; + + -- A small, typically one_celled, prokaryotic + -- Microorganism. + fun Bacterium : Class ; + fun Bacterium_Class : SubClass Bacterium Microorganism ; + + -- A ViolentContest between two or more military + -- units within the context of a war. Note that this does not cover the + -- metaphorical sense of 'battle', which simply means a struggle of some + -- sort. This sense should be represented with the more general concept of + -- Contest. + fun Battle : Class ; + fun Battle_Class : SubClass Battle ViolentContest ; + + -- SI activity measure. Symbol: Bq. It measures + -- the amount of radioactivity contained in a given sample of matter. It is + -- that quantity of a radioactive element in which there is one atomic + -- disintegration per SecondDuration. Becquerel = s^(_1). + fun Becquerel : Ind CompositeUnitOfMeasure ; + + -- A UnaryFunction that maps a TimeInterval to + -- the TimePoint at which the interval begins. + fun BeginFn : El TimeInterval -> Ind TimePoint ; + + -- A UnaryFunction that maps a GraphPath + -- to the GraphNode that is the beginning of the GraphPath. Note that, + -- unlike InitialNodeFn (which relates a GraphArc to a GraphNode), + -- BeginNodeFn is a total function _ every GraphPath has a beginning. + fun BeginNodeFn : El GraphPath -> Ind GraphNode ; + + -- A GroupOfPeople whose members share a belief + -- or set of beliefs. + fun BeliefGroup : Class ; + fun BeliefGroup_Class : SubClass BeliefGroup GroupOfPeople ; + + -- This PositionalAttribute is derived from the + -- up/down schema and may or may not involve contact. Note that this means + -- directly below, i.e., if one object is Below another object, then the + -- projections of the two objects overlap. + fun Below : Ind AntiSymmetricPositionalAttribute ; + + -- A FinancialTransaction where an instance of + -- CurrencyMeasure is exchanged for the possibility of winning a larger + -- instance of CurrencyMeasure within the context of some sort of + -- Game. + fun Betting : Class ; + fun Betting_Class : SubClass Betting FinancialTransaction ; + + -- Any Food that is ingested by Drinking. + -- Note that this class is disjoint with the other subclasses of Food, + -- i.e. Meat and FruitOrVegetable. + fun Beverage : Class ; + fun Beverage_Class : SubClass Beverage Food ; + + -- Elements from the number system with base 2. + -- Every BinaryNumber is expressed as a sequence of the digits 1 and 0. + fun BinaryNumber : Class ; + fun BinaryNumber_Class : SubClass BinaryNumber RealNumber ; + + -- Attributes that apply specifically + -- to instances of Organism. + fun BiologicalAttribute : Class ; + fun BiologicalAttribute_Class : SubClass BiologicalAttribute InternalAttribute ; + + -- A Process embodied in an Organism. + fun BiologicalProcess : Class ; + fun BiologicalProcess_Class : SubClass BiologicalProcess InternalChange ; + + -- A Substance that is capable of inducing a change in the structure or functioning of an + -- Organism. This Class includes Substances used in the treatment, + -- diagnosis, prevention or analysis of normal and abnormal body function. + -- This Class also includes Substances that occur naturally in the body + -- and are administered therapeutically. Finally, BiologicallyActiveSubstance + -- includes Nutrients, most drugs of abuse, and agents that require special + -- handling because of their toxicity. + fun BiologicallyActiveSubstance : Class ; + fun BiologicallyActiveSubstance_Class : SubClass BiologicallyActiveSubstance Substance ; + + -- A Vertebrate having a constant body temperature + -- and characterized by the presence of feathers. + fun Bird : Class ; + fun Bird_Class : SubClass Bird WarmBloodedVertebrate ; + + -- The Process of being born. + fun Birth : Class ; + fun Birth_Class : SubClass Birth OrganismProcess ; + + -- One Bit of information. A one or a zero. + fun Bit : Ind UnitOfInformation ; + + -- The Attribute of being black in color. + fun Black : Ind PrimaryColor ; + + -- A fluid present in Animals that transports + -- Nutrients to and waste products away from various BodyParts. + fun Blood : Class ; + fun Blood_Class : SubClass Blood BodySubstance ; + + -- The Attribute of being blue in color. + fun Blue : Ind PrimaryColor ; + + -- Any BodyPart which contains an unfilled space, + -- e.g. BodyVessels, the atria and ventricles of the heart, the lungs, etc. + fun BodyCavity : Class ; + fun BodyCavity_Class : SubClass BodyCavity BodyPart ; + + -- Any BodyPart which is a covering of another + -- BodyPart or of an entire Organism. This would include the rinds of + -- FruitOrVegetables and the skins of Animals. + fun BodyCovering : Class ; + fun BodyCovering_Class : SubClass BodyCovering BodyPart ; + + -- The place where two BodyParts + -- meet or connect. + fun BodyJunction : Class ; + fun BodyJunction_Class : SubClass BodyJunction BodyPart ; + + -- Any Motion where the agent is an Organism + -- and the patient is a BodyPart. + fun BodyMotion : Class ; + fun BodyMotion_Class : SubClass BodyMotion Motion ; + + -- A collection of Cells and Tissues which + -- are localized to a specific area of an Organism and which are not + -- pathological. The instances of this Class range from gross structures + -- to small components of complex Organs. + fun BodyPart : Class ; + fun BodyPart_Class : SubClass BodyPart AnatomicalStructure ; + + -- The class of Attributes expressing + -- configurations of bodies or parts of bodies of animals or humans, + -- e.g. standing, sitting, kneeling, lying down, etc. + fun BodyPosition : Class ; + fun BodyPosition_Class : SubClass BodyPosition BiologicalAttribute ; + + -- Extracellular material and mixtures of + -- cells and extracellular material that are produced, excreted or accreted + -- by an Organism. Included here are Substances such as saliva, dental + -- enamel, sweat, hormones, and gastric acid. + fun BodySubstance : Class ; + fun BodySubstance_Class : SubClass BodySubstance Substance ; + + -- Any tube_like structure which occurs naturally in + -- an Organism and through which a BodySubstance can circulate. + fun BodyVessel : Class ; + fun BodyVessel_Class : SubClass BodyVessel BodyCavity ; + + -- The Class of Processes where a Substance is + -- heated and converted from a Liquid to a Gas. + fun Boiling : Class ; + fun Boiling_Class : SubClass Boiling StateChange ; + + -- Rigid Tissue composed largely of calcium that makes up + -- the skeleton of Vertebrates. Note that this Class also includes teeth. + fun Bone : Class ; + fun Bone_Class : SubClass Bone (both AnimalSubstance Tissue) ; + + -- A Text that has pages and is bound. + fun Book : Class ; + fun Book_Class : SubClass Book Text ; + + -- The subclass of Getting Processes where + -- the agent gets something for a limited period of time with the expectation + -- that it will be returned later (perhaps with interest). + fun Borrowing : Class ; + fun Borrowing_Class : SubClass Borrowing Getting ; + + -- The Process of respiration, by which oxygen + -- is made available to an Animal. This covers processes of inhalation, + -- exhalation, and alternations between the two. + fun Breathing : Class ; + fun Breathing_Class : SubClass Breathing (both AutonomicProcess OrganismProcess) ; + + -- An energy measure. + fun BritishThermalUnit : Ind CompositeUnitOfMeasure ; + + -- The Class of StationaryArtifacts which are + -- intended to house Humans and their activities. + fun Building : Class ; + fun Building_Class : SubClass Building StationaryArtifact ; + + -- A FinancialTransaction in which an instance of + -- CurrencyMeasure is exchanged for an instance of Physical. + fun Buying : Class ; + fun Buying_Class : SubClass Buying FinancialTransaction ; + + -- One Byte of information. A Byte is eight Bits. + fun Byte : Ind UnitOfInformation ; + + -- IntentionalPsychologicalProcesses which involve + -- the consideration and/or manipulation of instances of Quantity. + fun Calculating : Class ; + fun Calculating_Class : SubClass Calculating IntentionalPsychologicalProcess ; + + -- A Calorie is an energy measure. + fun Calorie : Ind CompositeUnitOfMeasure ; + + -- SI luminosity intensity measure. Symbol: cd. + -- It is one of the base units in SI, and it is currently defined as + -- follows: the Candela is the luminous intensity, in a given direction, + -- of a source that emits monochromatic radiation of frequency 540*10^12 + -- Hertz and that has a radiant intensity in that direction of 1/683 + -- Watt per Steradian. + fun Candela : Ind CompositeUnitOfMeasure ; + + -- The Class of Carnivores with completely + -- separable toes, nonretractable claws, and long muzzles. + fun Canine : Class ; + fun Canine_Class : SubClass Canine Carnivore ; + + -- An element of living cells and a source of + -- energy for Animals. This class includes both simple Carbohydrates, + -- i.e. sugars, and complex Carbohydrates, i.e. starches. + fun Carbohydrate : Class ; + fun Carbohydrate_Class : SubClass Carbohydrate Nutrient ; + + fun CardinalityFn : El (either SetOrClass Collection) -> Ind Number ; + + -- The Class of flesh_eating Mammals. Members + -- of this Class typically have four or five claws on each paw. Includes + -- cats, dogs, bears, racoons, and skunks. + fun Carnivore : Class ; + fun Carnivore_Class : SubClass Carnivore Mammal ; + + -- Transfer from one point to another by means of + -- an Animal or Human. + fun Carrying : Class ; + fun Carrying_Class : SubClass Carrying Transfer ; + + -- (CeilingFn ?NUMBER) returns the smallest + -- Integer greater than or equal to the RealNumber ?NUMBER. + fun CeilingFn : El RealNumber -> Ind Integer ; + + -- The fundamental structural and functional unit of + -- living Organisms. + fun Cell : Class ; + fun Cell_Class : SubClass Cell BodyPart ; + + -- A TemperatureMeasure. The freezing point + -- and the boiling point of water are, respectively, 0 CelsiusDegrees and 100 + -- CelsiusDegrees. + fun CelsiusDegree : Ind (both TemperatureMeasure UnitOfMeasure) ; + + -- (CenterOfCircleFn ?CIRCLE) denotes the + -- GeometricPoint that is the center of the Circle ?CIRCLE. + fun CenterOfCircleFn : El Circle -> Ind GeometricPoint ; + + -- Submultiple of Meter. Symbol: cm. It is + -- the 100th part of a Meter + fun Centimeter : Ind UnitOfLength ; + + -- A TimeZone that covers much of the + -- midwestern United States. + fun CentralTimeZone : Ind TimeZone ; + + -- A Text that confers a right or obligation + -- on the holder of the Certificate. Note that the right or obligation + -- need not be a legal one, as in the case of an academic diploma that grants + -- certain privileges in the professional world. + fun Certificate : Class ; + fun Certificate_Class : SubClass Certificate Text ; + + -- The Class of Processes where + -- ownership of something is transferred from one Agent to another. + fun ChangeOfPossession : Class ; + fun ChangeOfPossession_Class : SubClass ChangeOfPossession SocialInteraction ; + + -- An element of an alphabet, a set of numerals, etc. + -- Note that a Character may or may not be part of a Language. Character + -- is a subclass of SymbolicString, because every instance of Character is + -- an alphanumeric sequence consisting of a single element. + fun Character : Class ; + fun Character_Class : SubClass Character SymbolicString ; + + -- The Class of ChemicalProcesses + -- in which a CompoundSubstance breaks down into simpler products. + fun ChemicalDecomposition : Class ; + fun ChemicalDecomposition_Class : SubClass ChemicalDecomposition (both ChemicalProcess Separating) ; + + -- A ChemicalProcess occurs whenever + -- chemical compounds (CompoundSubstances) are formed or decomposed. + -- For example, reactants disappear as chemical change occurs, and products + -- appear as chemical change occurs. In a chemical change a chemical + -- reaction takes place. Catalysts in a ChemicalProcess may speed up the + -- reaction, but aren't themselves produced or consumed. Examples: rusting of + -- iron and the decomposition of water, induced by an electric current, to + -- gaseous hydrogen and gaseous oxygen. + fun ChemicalProcess : Class ; + fun ChemicalProcess_Class : SubClass ChemicalProcess InternalChange ; + + -- The Class of ChemicalProcesses in + -- which a CompoundSubstance is formed from simpler reactants. + fun ChemicalSynthesis : Class ; + fun ChemicalSynthesis_Class : SubClass ChemicalSynthesis (both ChemicalProcess Combining) ; + + -- The class of Ovals such that all GeometricPoints + -- that make up the Circle are equidistant from a single GeometricPoint, + -- known as the center of the Circle. + fun Circle : Class ; + fun Circle_Class : SubClass Circle Oval ; + + -- A LandArea of relatively small size, inhabited + -- by a community of people, and having some sort of political structure. + -- Note that this class includes both large cities and small settlements + -- like towns, villages, hamlets, etc. + fun City : Class ; + fun City_Class : SubClass City (both GeopoliticalArea LandArea) ; + + -- The Class of IntentionalPsychologicalProcesses + -- which involve attaching a name or category to a thing or set of things. + -- Note that Classifying is distinguished from Learning by the fact + -- that the latter covers the acquisition by a CognitiveAgent of any + -- Proposition, while the former involves the assignment of a label + -- or category. + fun Classifying : Class ; + fun Classifying_Class : SubClass Classifying IntentionalPsychologicalProcess ; + + -- Any TwoDimensionalFigure which + -- has a well defined interior and exterior. + fun ClosedTwoDimensionalFigure : Class ; + fun ClosedTwoDimensionalFigure_Class : SubClass ClosedTwoDimensionalFigure TwoDimensionalFigure ; + + -- Artifact made out of fabrics and possibly other + -- materials that are used to cover the bodies of Humans. + fun Clothing : Class ; + fun Clothing_Class : SubClass Clothing WearableItem ; + + -- Any GasMixture that is visible, e.g. Smoke produced + -- by a fire or clouds of water vapor in the sky. + fun Cloud : Class ; + fun Cloud_Class : SubClass Cloud GasMixture ; + + -- A SentientAgent with responsibilities + -- and the ability to reason, deliberate, make plans, etc. This is + -- essentially the legal/ethical notion of a person. Note that, although + -- Human is a subclass of CognitiveAgent, there may be instances of + -- CognitiveAgent which are not also instances of Human. For example, + -- chimpanzees, gorillas, dolphins, whales, and some extraterrestrials + -- (if they exist) may be CognitiveAgents. + fun CognitiveAgent : Class ; + fun CognitiveAgent_Class : SubClass CognitiveAgent SentientAgent ; + + -- Vertebrates whose body temperature + -- is not internally regulated. + fun ColdBloodedVertebrate : Class ; + fun ColdBloodedVertebrate_Class : SubClass ColdBloodedVertebrate Vertebrate ; + + -- Collections have members like Classes, but, unlike Classes, + -- they have a position in space_time and members can be + -- added and subtracted without thereby changing the identity of the + -- Collection. Some examples are toolkits, football teams, and flocks + -- of sheep. + fun Collection : Class ; + fun Collection_Class : SubClass Collection Object ; + + -- The Class of Attributes relating to the + -- color of Objects. + fun ColorAttribute : Class ; + fun ColorAttribute_Class : SubClass ColorAttribute InternalAttribute ; + + -- The subclass of SurfaceChange where a + -- ColorAttribute of the patient is altered. Note that the change in + -- color may apply to just part of the object. + fun Coloring : Class ; + fun Coloring_Class : SubClass Coloring SurfaceChange ; + + -- A Process where two or more SelfConnectedObjects + -- are incorporated into a single SelfConnectedObject. Note that Combining + -- is different from Attaching in that the former results in one of the objects + -- being part of the other, while Attaching only results in the two objects + -- being connected with one another. Note too that Combining is different + -- from Putting in that one or both of the two things which are combined may or + -- may not be moved from the location where they were combined. + fun Combining : Class ; + fun Combining_Class : SubClass Combining DualObjectProcess ; + + -- The Class of ChemicalProcesses in which an Object + -- reacts with oxygen and gives off heat. This includes all Processes in which + -- something is burning. + fun Combustion : Class ; + fun Combustion_Class : SubClass Combustion ChemicalDecomposition ; + + -- An Agent that provides products and/or + -- services for a fee with the aim of making a profit. + fun CommercialAgent : Class ; + fun CommercialAgent_Class : SubClass CommercialAgent Agent ; + + -- Any FinancialTransaction by a + -- CommercialAgent where the aim is to produce a profit. + fun CommercialService : Class ; + fun CommercialService_Class : SubClass CommercialService (both FinancialTransaction ServiceProcess) ; + + -- Instances of this Class commit the agent to some + -- future course. For example, Bob promised Susan that he would be home by 11pm. + fun Committing : Class ; + fun Committing_Class : SubClass Committing LinguisticCommunication ; + + -- A SocialInteraction that involves + -- the transfer of information between two or more CognitiveAgents. + -- Note that Communication is closely related to, but essentially + -- different from, ContentDevelopment. The latter involves the creation + -- or modification of a ContentBearingObject, while Communication is + -- the transfer of information for the purpose of conveying a message. + fun Communication : Class ; + fun Communication_Class : SubClass Communication (both ContentBearingProcess SocialInteraction) ; + + -- The Class of IntentionalPsychologicalProcesses + -- which involve comparing, relating, contrasting, etc. the properties of + -- two or more Entities. + fun Comparing : Class ; + fun Comparing_Class : SubClass Comparing (both DualObjectProcess IntentionalPsychologicalProcess) ; + + -- The complement of a given SetOrClass C is the + -- SetOrClass of all things that are not instances of C. In other words, an + -- object is an instance of the complement of a SetOrClass C just in case it + -- is not an instance of C. + fun ComplementFn : El SetOrClass -> Ind SetOrClass ; + + -- A Number that has the form: x + yi, where x + -- and y are RealNumbers and i is the square root of _1. + fun ComplexNumber : Class ; + fun ComplexNumber_Class : SubClass ComplexNumber Number ; + + -- Instances + -- of this Class are UnitsOfMeasure defined by the functional + -- composition of other units, each of which might be a + -- CompositeUnitOfMeasure or a NonCompositeUnitOfMeasure. + fun CompositeUnitOfMeasure : Class ; + fun CompositeUnitOfMeasure_Class : SubClass CompositeUnitOfMeasure UnitOfMeasure ; + + -- The Class of Substances that contain + -- two or more elements (ElementalSubstances), in definite proportion by weight. + -- The composition of a pure compound will be invariant, regardless of the method + -- of preparation. Compounds are composed of more than one kind of atom (element). + -- The term molecule is often used for the smallest unit of a compound that still + -- retains all of the properties of the compound. Examples: Table salt (sodium + -- chloride, NaCl), sugar (sucrose, C_{12}H_{22}O_{11}), and water (H_2O). + fun CompoundSubstance : Class ; + fun CompoundSubstance_Class : SubClass CompoundSubstance PureSubstance ; + + -- The class of Languages designed for + -- and interpreted by a computer. + fun ComputerLanguage : Class ; + fun ComputerLanguage_Class : SubClass ComputerLanguage ArtificialLanguage ; + + -- A set of instructions in a computer + -- programming language that can be executed by a computer. + fun ComputerProgram : Class ; + fun ComputerProgram_Class : SubClass ComputerProgram Procedure ; + + -- The process of developing a + -- ComputerProgram + fun ComputerProgramming : Class ; + fun ComputerProgramming_Class : SubClass ComputerProgramming ContentDevelopment ; + + -- The Class of Processes where an Object is + -- cooled and converted from a Gas to a Liquid. + fun Condensing : Class ; + fun Condensing_Class : SubClass Condensing StateChange ; + + -- The Class of Keeping Processes where the + -- patient is a Human or an Animal and is kept involuntarily. This covers + -- caging, imprisonment, jailing, etc. + fun Confining : Class ; + fun Confining_Class : SubClass Confining Keeping ; + + -- Attributes that indicate whether + -- an Organism is conscious or the qualitative degree of consciousness of + -- an Organism. + fun ConsciousnessAttribute : Class ; + fun ConsciousnessAttribute_Class : SubClass ConsciousnessAttribute StateOfMind ; + + -- A ConstantQuantity is a PhysicalQuantity that has a constant value, e.g. + -- 3 Meters and 5 HourDurations. The magnitude (see MagnitudeFn) of every + -- ConstantQuantity is a RealNumber. ConstantQuantity is + -- distinguished from FunctionQuantity, in that each instance of the + -- latter is formed through the mapping of one PhysicalQuantity to + -- another PhysicalQuantity. Each instance of ConstantQuantity is + -- expressed with the BinaryFunction MeasureFn, which takes a + -- Number and a UnitOfMeasure as arguments. For example, 3 Meters + -- is expressed as (MeasureFn 3 Meter). Instances of + -- ConstantQuantity form a partial order (see + -- PartialOrderingRelation) with the lessThan relation, since + -- lessThan is a RelationExtendedToQuantities and lessThan is + -- defined over the RealNumbers. The lessThan relation is not a + -- total order (see TotalOrderingRelation) over the class + -- ConstantQuantity since elements of some subclasses of + -- ConstantQuantity (such as length quantities) are incomparable to + -- elements of other subclasses of ConstantQuantity + -- (such as mass quantities). + fun ConstantQuantity : Class ; + fun ConstantQuantity_Class : SubClass ConstantQuantity PhysicalQuantity ; + + -- An ConstructedLanguage is a + -- HumanLanguage that did not evolve spontaneously within a language + -- community, but rather had its core grammar and vocabulary invented by + -- one or more language experts, often with an aim to produce a more + -- grammatically regular language than any language that has evolved + -- naturally. This Class includes languages like Esperanto that were + -- created to facilitate international communication + fun ConstructedLanguage : Class ; + fun ConstructedLanguage_Class : SubClass ConstructedLanguage (both ArtificialLanguage HumanLanguage) ; + + -- The subclass of Making in which a + -- StationaryArtifact is built. + fun Constructing : Class ; + fun Constructing_Class : SubClass Constructing Making ; + + -- Any SelfConnectedObject that expresses + -- content. This content may be a Proposition, e.g. when the ContentBearingObject + -- is a Sentence or Text, or it may be a representation of an abstract or + -- physical object, as with an Icon, a Word or a Phrase. + fun ContentBearingObject : Class ; + fun ContentBearingObject_Class : SubClass ContentBearingObject (both ContentBearingPhysical CorpuscularObject) ; + + -- Any Object or Process that + -- expresses content. This covers Objects that contain a Proposition, + -- such as a book, as well as ManualSignLanguage, which may similarly + -- contain a Proposition. + fun ContentBearingPhysical : Class ; + fun ContentBearingPhysical_Class : SubClass ContentBearingPhysical Physical ; + + -- Any Process, for example + -- ManualHumanLanguage, which may contain a Proposition. + fun ContentBearingProcess : Class ; + fun ContentBearingProcess_Class : SubClass ContentBearingProcess ContentBearingPhysical ; + + -- A subclass of IntentionalProcess in + -- which content is modified, its form is altered or it is created anew. + fun ContentDevelopment : Class ; + fun ContentDevelopment_Class : SubClass ContentDevelopment IntentionalProcess ; + + -- A SocialInteraction where the agent and + -- patient are CognitiveAgents who are trying to defeat one another. + -- Note that this concept is often applied in a metaphorical sense in natural + -- language, when we speak, e.g., of the struggle of plants for space or + -- sunlight, or of bacteria for food resources in some environment. + fun Contest : Class ; + fun Contest_Class : SubClass Contest SocialInteraction ; + + -- A Class containing Attributes that are + -- specific to participants in a Contest. In particular, these Attributes + -- indicate the position of one of the agents in the Contest with respect + -- to other agent(s) in the Contest. Some examples of these Attributes + -- are winning, losing, won, lost, etc. + fun ContestAttribute : Class ; + fun ContestAttribute_Class : SubClass ContestAttribute ObjectiveNorm ; + + -- As defined in the CIA World Fact Book, + -- Continent covers seven land masses: Africa, NorthAmerica, + -- SouthAmerica, Antarctica, Europe, Asia, and Oceania. + -- Note that Australia, counted as a continent in some other systems, + -- is included in Oceania in the Fact Book. As a consequence, there + -- is no Nation which is also a Continent. + fun Continent : Class ; + fun Continent_Class : SubClass Continent LandArea ; + + -- The Making of an instance of Food. Note + -- that this can cover any preparation of Food, e.g. making a salad, + -- cutting up fruit, etc. It does not necessarily involve the application + -- of heat. + fun Cooking : Class ; + fun Cooking_Class : SubClass Cooking Making ; + + -- Any Decreasing Process where the PhysicalQuantity + -- decreased is a TemperatureMeasure. + fun Cooling : Class ; + fun Cooling_Class : SubClass Cooling Decreasing ; + + -- The subclass of SocialInteraction where + -- the participants involved work together for the achievement of a common + -- goal. + fun Cooperation : Class ; + fun Cooperation_Class : SubClass Cooperation SocialInteraction ; + + -- A TimeZone which functions + -- as the standard time zone. It is also known as Zulu time (in the military), + -- Greenwich Mean Time, and the Western European time zone. Note that whenever + -- a TimeZone is not specified, the TimePosition is understood to be with + -- respect to the CoordinatedUniversalTimeZone. + fun CoordinatedUniversalTimeZone : Ind TimeZone ; + + -- An Organization that has a special legal status + -- that allows a group of persons to act as a CommercialAgent and that insulates + -- the owners (shareholders) from many liabilities that might result from the + -- corporation's operation. + fun Corporation : Class ; + fun Corporation_Class : SubClass Corporation (both CommercialAgent Organization) ; + + -- A SelfConnectedObject whose parts have + -- properties that are not shared by the whole. + fun CorpuscularObject : Class ; + fun CorpuscularObject_Class : SubClass CorpuscularObject SelfConnectedObject ; + + -- (CosineFn ?DEGREE) returns the cosine of the + -- PlaneAngleMeasure ?DEGREE. The cosine of ?DEGREE is the ratio of the + -- side next to ?DEGREE to the hypotenuse in a right_angled triangle. + fun CosineFn : El PlaneAngleMeasure -> Ind RealNumber ; + + -- SI electric charge measure. Symbol: C. It is + -- the quantity of electric charge transported through a cross section of + -- a conductor in an electric circuit during each SecondDuration by a + -- current of 1 Ampere. Coulomb = s*A. + fun Coulomb : Ind CompositeUnitOfMeasure ; + + -- Enumerating something. The Class of Calculating + -- Processes where the aim is to determine the Number corresponding to the + -- patient. + fun Counting : Class ; + fun Counting_Class : SubClass Counting Calculating ; + + -- A GeopoliticalArea that is larger than a city, + -- usually encompassing several cities, and smaller than a StateOrProvince. + -- Aside from City, this is the smallest geopolitical subdivision, and it is + -- known by various names in various counties, e.g. parrish, commune, etc. + fun County : Class ; + fun County_Class : SubClass County (both GeopoliticalArea LandArea) ; + + -- The Class of Putting processes where the agent + -- covers the patient, either completely or only partially, with something + -- else. + fun Covering : Class ; + fun Covering_Class : SubClass Covering Putting ; + + -- The subclass of Process in which + -- something is created. Note that the thing created is specified + -- with the result CaseRole. + fun Creation : Class ; + fun Creation_Class : SubClass Creation InternalChange ; + + -- A Class of Arthropods that mainly dwells + -- in water and has a segmented body and a chitinous exoskeleton. Includes + -- lobsters, crabs, shrimp, and barnacles. + fun Crustacean : Class ; + fun Crustacean_Class : SubClass Crustacean Arthropod ; + + -- English unit of volume equal to 1/2 of a Pint. + fun Cup : Ind UnitOfVolume ; + + -- Any element of the official currrency of some + -- Nation. This covers both CurrencyBills and CurrencyCoins. + fun Currency : Class ; + fun Currency_Class : SubClass Currency FinancialInstrument ; + + -- Instances of this + -- subclass of ConstantQuantity are measures of monetaryValue + -- stated in terms of some UnitOfCurrency such as UnitedStatesDollar, + -- UnitedStatesCent, Lire, Yen, etc. + fun CurrencyMeasure : Class ; + fun CurrencyMeasure_Class : SubClass CurrencyMeasure ConstantQuantity ; + + -- A UnaryFunction that assigns a Graph the + -- Class of GraphPaths that partition the graph into two separate + -- graphs if cut. There may be more than one cutset for a given graph. + fun CutSetFn : El Graph -> Desc GraphPath ; + + -- The subclass of Poking Processes which + -- involve a sharp instrument. + fun Cutting : Class ; + fun Cutting_Class : SubClass Cutting Poking ; + + -- The Class of Processes where the agent brings about a situation + -- where the patient no longer functions normally or as intended. + fun Damaging : Class ; + fun Damaging_Class : SubClass Damaging InternalChange ; + + -- An Attribute which indicates that the associated + -- Object contains some Liquid. + fun Damp : Ind SaturationAttribute ; + + -- Any BodyMotion of Humans which is deliberately coordinated with music. + fun Dancing : Class ; + fun Dancing_Class : SubClass Dancing BodyMotion ; + + -- The Class of all calendar Days. + fun Day : Class ; + fun Day_Class : SubClass Day TimeInterval ; + + -- Time unit. 1 day = 24 hours. + fun DayDuration : Ind UnitOfDuration ; + + -- A BinaryFunction that assigns a PositiveRealNumber and + -- a subclass of Months to the Days within each Month corresponding to that + -- PositiveRealNumber. For example, (DayFn 16 August) is the Class of all + -- sixteenth days of August. For another example, (DayFn 9 Month) would return + -- the class of all ninth days of any month. For still another example, (DayFn 18 + -- (MonthFn August (YearFn 1912))) denotes the 18th day of August 1912. + fun DayFn : El PositiveInteger -> Desc Month -> Desc Day ; + + -- This Attribute applies to Organisms that are + -- not alive. + fun Dead : Ind (both AnimacyAttribute ConsciousnessAttribute) ; + + -- The Process of dying. + fun Death : Class ; + fun Death_Class : SubClass Death OrganismProcess ; + + -- The Class of all Months which are December. + fun December : Class ; + fun December_Class : SubClass December Month ; + + -- The subclass of Selecting where the agent + -- opts for one course of action out of a set of multiple possibilities + -- that are open to him/her. + fun Deciding : Class ; + fun Deciding_Class : SubClass Deciding Selecting ; + + -- The Class of LinguisticCommunications that + -- effect an institutional alteration when performed by competent authority. + -- Some examples are nominating, marrying, and excommunicating. + fun Declaring : Class ; + fun Declaring_Class : SubClass Declaring LinguisticCommunication ; + + -- Converting a document or message that has previously + -- been encoded (see Encoding) into a Language that can be understood by a + -- relatively large number of speakers. + fun Decoding : Class ; + fun Decoding_Class : SubClass Decoding Writing ; + + -- Any QuantityChange where the PhysicalQuantity is decreased. + fun Decreasing : Class ; + fun Decreasing_Class : SubClass Decreasing QuantityChange ; + + -- An Argument which has the form of a deduction, i.e. + -- it is claimed that the set of premises entails the conclusion. + fun DeductiveArgument : Class ; + fun DeductiveArgument_Class : SubClass DeductiveArgument Argument ; + + -- A Maneuver in a ViolentContest + -- where the agent attempts to avoid being damaged. + fun DefensiveManeuver : Class ; + fun DefensiveManeuver_Class : SubClass DefensiveManeuver Maneuver ; + + -- Exhibiting something or a range of things + -- before the public in a particular location. This would cover software + -- demos, theatrical plays, lectures, dance and music recitals, museum + -- exhibitions, etc. + fun Demonstrating : Class ; + fun Demonstrating_Class : SubClass Demonstrating Disseminating ; + + -- (DenominatorFn ?NUMBER) returns the + -- denominator of the canonical reduced form of the RealNumber ?NUMBER. + fun DenominatorFn : El RealNumber -> Ind Integer ; + + -- DensityFn maps an instance of MassMeasure + -- and an instance of VolumeMeasure to the density represented by this + -- proportion of mass and volume. For example, (DensityFn (MeasureFn 3 Gram) + -- (MeasureFn 1 Liter)) represents the density of 3 grams per liter. + fun DensityFn : El MassMeasure -> El VolumeMeasure -> Ind FunctionQuantity; + + -- A Class containing all of the Attributes + -- relating to the notions of permission, obligation, and prohibition. + fun DeonticAttribute : Class ; + fun DeonticAttribute_Class : SubClass DeonticAttribute ObjectiveNorm ; + + -- The spatial analogue of Planning. Designing a + -- Collection of Objects involves determining a placement of the Objects + -- with respect to one another and perhaps other Objects as well, in order to + -- satisfy a particular purpose. + fun Designing : Class ; + fun Designing_Class : SubClass Designing IntentionalPsychologicalProcess ; + + -- The subclass of Damagings in which the patient (or an essential element of the patient) is destroyed. + -- Note that the difference between this concept and its superclass is solely one of extent. + fun Destruction : Class ; + fun Destruction_Class : SubClass Destruction Damaging ; + + -- A Process where the agent detaches one thing + -- from something else. Note that Detaching is different from Separating + -- in that the latter applies to Substances, while the former applies to + -- CorpuscularObjects. Note too that Detaching is different from + -- Removing in that one or both of the two things which are detached may or + -- may not be moved from the location where they were attached. + fun Detaching : Class ; + fun Detaching_Class : SubClass Detaching DualObjectProcess ; + + -- Attributes that indicate the stage of development of an Organism. + fun DevelopmentalAttribute : Class ; + fun DevelopmentalAttribute_Class : SubClass DevelopmentalAttribute BiologicalAttribute ; + + -- A Device is an Artifact whose purpose is to + -- serve as an instrument in a specific subclass of Process. + fun Device : Class ; + fun Device_Class : SubClass Device Artifact ; + + -- A Process that is carried out for + -- the purpose of determining the nature of a DiseaseOrSyndrome. + fun DiagnosticProcess : Class ; + fun DiagnosticProcess_Class : SubClass DiagnosticProcess Investigating ; + + -- The Process by which Food that has been ingested is broken down + -- into simpler chemical compounds and absorbed by the Organism. + fun Digesting : Class ; + fun Digesting_Class : SubClass Digesting (both AutonomicProcess OrganismProcess) ; + + + -- The Class of directed graphs. A directed graph is a Graph in which all GraphArcs + -- have direction, i.e. every GraphArc has an initial node (see + -- InitialNodeFn) and a terminal node (see TerminalNodeFn). + fun DirectedGraph : Class ; + fun DirectedGraph_Class : SubClass DirectedGraph Graph ; + + -- Instances of this Class urge some further action + -- among the receivers. A Directing can be an Ordering, a Requesting or + -- a Questioning. + fun Directing : Class ; + fun Directing_Class : SubClass Directing LinguisticCommunication ; + + -- The act of changing the direction in + -- which the patient of the act is oriented. + fun DirectionChange : Class ; + fun DirectionChange_Class : SubClass DirectionChange Motion ; + + -- The subclass of PositionalAttributes + -- that concern compass directions. + fun DirectionalAttribute : Class ; + fun DirectionalAttribute_Class : SubClass DirectionalAttribute PositionalAttribute ; + + -- A Stating in which two Agents have + -- contradictory statements. This is distinguished from Arguing in + -- that the statement in dispute may be a simple assertion, rather than + -- a chain of deduction, and that two entities must be disagreeing with + -- each other, whereas a single entity may craft an argument for a given + -- point of view, without the need for another agent to disagree with. + fun Disagreeing : Class ; + fun Disagreeing_Class : SubClass Disagreeing Stating ; + + -- Finding something that was sought. Note that + -- this class is restricted to cases of discovering something Physical. + -- For cases involving the acquisition of knowledge, the class Learning + -- should be used. + fun Discovering : Class ; + fun Discovering_Class : SubClass Discovering IntentionalPsychologicalProcess ; + + -- A BiologicalAttribute which qualifies + -- something that alters or interferes with a normal process, state or activity + -- of an Organism. It is usually characterized by the abnormal functioning of + -- one or more of the host's systems, parts, or Organs. + fun DiseaseOrSyndrome : Class ; + fun DiseaseOrSyndrome_Class : SubClass DiseaseOrSyndrome BiologicalAttribute ; + + -- Any Communication that involves a + -- single agent and many destinations. This covers the release + -- of a published book, broadcasting, a theatrical performance, giving + -- orders to assembled troops, delivering a public lecture, etc. + fun Disseminating : Class ; + fun Disseminating_Class : SubClass Disseminating Communication ; + + -- If ?NUMBER1 and ?NUMBER2 are Numbers, then + -- (DivisionFn ?NUMBER1 ?NUMBER2) is the result of dividing ?NUMBER1 by + -- ?NUMBER2. Note that when ?NUMBER1 = 1 (DivisionFn ?NUMBER1 ?NUMBER2) + -- is the reciprocal of ?NUMBER2. Note too that (DivisionFn ?NUMBER1 ?NUMBER2) + -- is undefined when ?NUMBER2 = 0. + fun DivisionFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- The Process by which liquid Food, i.e. + -- Beverages, are incorporated into an Animal. + fun Drinking : Class ; + fun Drinking_Class : SubClass Drinking Ingesting ; + + -- Controlling the direction and/or speed of a + -- Vehicle. This includes navigating a ship, driving a car or truck, + -- operating a train, etc. + fun Driving : Class ; + fun Driving_Class : SubClass Driving Guiding ; + + -- An Attribute which indicates that the associated + -- Object contains no Liquid. + fun Dry : Ind SaturationAttribute ; + + -- The Class of Processes where a Liquid is removed + -- from an Object. + fun Drying : Class ; + fun Drying_Class : SubClass Drying Removing ; + + -- Any Process that requires two, + -- nonidentical patients. + fun DualObjectProcess : Class ; + fun DualObjectProcess_Class : SubClass DualObjectProcess Process ; + + -- The compass direction of East. + fun East : Ind DirectionalAttribute ; + + -- A TimeZone that covers much of the eastern United States. + fun EasternTimeZone : Ind TimeZone ; + + -- The Process by which solid Food is incorporated into an Animal. + fun Eating : Class ; + fun Eating_Class : SubClass Eating Ingesting ; + + -- A binary function that maps a type of text + -- (e.g. Agatha Christie's Murder_on_the_Orient_Express) and a number + -- to the edition of the text type corresponding to the number. + fun EditionFn : Desc ContentBearingObject -> El PositiveInteger -> Desc ContentBearingObject ; + + -- A EducationalOrganization is an institution of learning. + -- Some examples are public and private K_12 schools, and colleges and universities. + fun EducationalOrganization : Class ; + fun EducationalOrganization_Class : SubClass EducationalOrganization Organization ; + + -- Any Process which is intended to result in Learning. + fun EducationalProcess : Class ; + fun EducationalProcess_Class : SubClass EducationalProcess Guiding ; + + -- The fertilized or unfertilized female ReproductiveBody of an Animal. + -- This includes Bird and Reptile eggs, as well as mammalian ova. + fun Egg : Class ; + fun Egg_Class : SubClass Egg (both AnimalAnatomicalStructure ReproductiveBody) ; + + -- Election is the class of events conducted by an + -- organization, in which qualified participants vote for officers, adopt + -- resolutions, or settle other issues in that Organization. + fun Election : Class ; + fun Election_Class : SubClass Election OrganizationalProcess ; + + -- SubatomicParticles that surround the AtomicNucleus. They have a negative charge. + fun Electron : Class ; + fun Electron_Class : SubClass Electron SubatomicParticle ; + + -- The ElectronVolt is an energy measure. + -- Symbol: eV. It is the kinetic energy acquired by an electron in passing + -- through a potential difference of 1 Volt in a vacuum. + fun ElectronVolt : Ind CompositeUnitOfMeasure ; + + -- The Class of PureSubstances that + -- cannot be separated into two or more Substances by ordinary chemical + -- (or physical) means. This excludes nuclear reactions. ElementalSubstances + -- are composed of only one kind of atom. Examples: Iron (Fe), copper (Cu), + -- and oxygen (O_2). ElementalSubstances are the simplest + -- PureSubstances. + fun ElementalSubstance : Class ; + fun ElementalSubstance_Class : SubClass ElementalSubstance PureSubstance ; + + -- The stage of an Organism or an + -- AnatomicalStructure that exists only before the Organism is born. + -- Mammals, for example, have this Attribute only prior to + -- their birth. + fun Embryonic : Ind DevelopmentalAttribute ; + + -- The Class of Attributes that denote emotional states of Organisms. + fun EmotionalState : Class ; + fun EmotionalState_Class : SubClass EmotionalState StateOfMind ; + + -- Converting a document or message into a formal + -- language or into a code that can be understood only by a relatively small + -- body of Agents. Generally speaking, this hinders wide dissemination of + -- the content in the original document or message. + fun Encoding : Class ; + fun Encoding_Class : SubClass Encoding Writing ; + + -- A UnaryFunction that maps a TimeInterval to + -- the TimePoint at which the interval ends. + fun EndFn : El TimeInterval -> Ind TimePoint ; + + -- A UnaryFunction that maps a GraphPath + -- to the GraphNode that is the end of the GraphPath. Note that, unlike + -- TerminalNodeFn (which relates a GraphArc to a GraphNode), + -- EndNodeFn is a total function _ every GraphPath has a end. + fun EndNodeFn : El GraphPath -> Ind GraphNode ; + + -- A fundamental concept that applies + -- in many engineering domains. An EngineeringComponent is an element of + -- a Device that is a physically whole object, such as one might + -- see listed as standard parts in a catalog. The main difference betweeen + -- EngineeringComponents and arbitrary globs of matter is that + -- EngineeringComponents are object_like in a modeling sense. Thus, an + -- EngineeringComponent is not an arbtrary subregion, but a part of a + -- system with a stable identity. + fun EngineeringComponent : Class ; + fun EngineeringComponent_Class : SubClass EngineeringComponent Device ; + + -- An EngineeringConnection is an + -- EngineeringComponent that represents a connection relationship between + -- two other EngineeringComponents. It is a reification of the + -- Predicate connectedEngineeringComponents. That means that whenever + -- this Predicate holds between two EngineeringComponents, there exists an + -- EngineeringConnection. The practical reason for reifying a relationship + -- is to be able to attach other information about it. For example, one + -- might want to say that a particular connection is associated with some + -- shared parameters, or that it is of a particular type. + -- EngineeringConnections are EngineeringComponents and can therefore be + -- an engineeringSubcomponent of other EngineeringComponents. However, + -- to provide for modular regularity in component systems, + -- EngineeringConnections cannot be connected. For each pair of + -- EngineeringComponents related by connectedEngineeringComponents, there + -- exists at least one EngineeringConnection. However, that object may not + -- be unique, and the same EngineeringConnection may be associated with + -- several pairs of EngineeringComponents. + fun EngineeringConnection : Class ; + fun EngineeringConnection_Class : SubClass EngineeringConnection EngineeringComponent ; + + -- The universal class of individuals. This is the root + -- node of the ontology. + fun Entity : Class ; + + -- A complex Protein that is produced by living cells and which + -- catalyzes specific biochemical reactions. There are six + -- main types of enzymes: oxidoreductases, transferases, hydrolases, + -- lyases, isomerases, and ligases. + fun Enzyme : Class ; + fun Enzyme_Class : SubClass Enzyme Protein ; + + -- A GroupOfPeople whose members originate + -- from the same GeographicArea or share the same Language and/or cultural + -- practices. + fun EthnicGroup : Class ; + fun EthnicGroup_Class : SubClass EthnicGroup GroupOfPeople ; + + -- A currency measure. 1 EuroCent is equal to .01 EuroDollars. + fun EuroCent : Ind UnitOfCurrency ; + + -- A currency measure of most European Union countries. + fun EuroDollar : Ind UnitOfCurrency ; + + -- The Class of Processes where a Substance is converted + -- from a Liquid to a Gas at a temperature below its Boiling point. + fun Evaporating : Class ; + fun Evaporating_Class : SubClass Evaporating StateChange ; + + -- An Integer that is evenly divisible + -- by 2. + fun EvenInteger : Class ; + fun EvenInteger_Class : SubClass EvenInteger Integer ; + + -- The system of Bones that are on the Outside of an organism and + -- make up the supporting structure of many Invertebrates. + fun Exoskeleton : Class ; + fun Exoskeleton_Class : SubClass Exoskeleton (both AnimalAnatomicalStructure BodyPart) ; + + -- Investigating the truth of a Proposition + -- by constructing and observing a trial. Note that the trial may be either + -- controlled or uncontrolled, blind or not blind. + fun Experimenting : Class ; + fun Experimenting_Class : SubClass Experimenting Investigating ; + + -- An Argument where the conclusion is an + -- observed fact and the premises are other facts which collectively imply + -- the conclusion. Note that this is the they hypothetico_deductive model + -- of explanation. + fun Explanation : Class ; + fun Explanation_Class : SubClass Explanation DeductiveArgument ; + + -- (ExponentiationFn ?NUMBER ?INT) returns + -- the RealNumber ?NUMBER raised to the power of the Integer ?INT. + fun ExponentiationFn : El Quantity -> El Integer -> Ind Quantity ; + + -- Instances of this Class express a state of the agent. + -- For example, Jane thanked Barbara for the present she had given her. The thanking + -- in this case expresses the gratitude of Jane towards Barbara. Note that Expressing, + -- unlike the other speech act types, is not a subclass of LinguisticCommunication. + -- This is because emotions, for example, can be expressed without language, e.g. by + -- smiling. + fun Expressing : Class ; + fun Expressing_Class : SubClass Expressing Communication ; + + -- A UnaryFunction that maps an Attribute + -- into the Class whose condition for membership is the Attribute. + fun ExtensionFn : El Attribute -> Class ; + + -- Artifacts that are created by weaving together + -- natural or synthetic fibers or by treating the skins of certain sorts of + -- Animals. Note that this Class includes articles that are created by + -- stitching together various types of fabrics, e.g. bedspreads. On the other + -- hand, Clothing is not a subclass of Fabric, because many clothing items + -- contain elements that are not fabrics. + fun Fabric : Class ; + fun Fabric_Class : SubClass Fabric Artifact ; + + -- The class of Texts that purport to + -- reveal facts about the world. Such texts are often known as information + -- or as non_fiction. Note that something can be an instance of + -- FactualText, even if it is wholly inaccurate. Whether something + -- is a FactualText is determined by the beliefs of the agent creating + -- the text. + fun FactualText : Class ; + fun FactualText_Class : SubClass FactualText Text ; + + -- A UnitOfTemperature that is commonly + -- used in the United States. On the Fahrenheit scale, the freezing point + -- of water is 32 FahrenheitDegrees, and the boiling point of water is + -- 212 FahrenheitDegrees. + fun FahrenheitDegree : Ind UnitOfTemperature ; + + -- Falling is the class of events in which something moves + -- from a higher location to a lower location under the force of gravity. + fun Falling : Class ; + fun Falling_Class : SubClass Falling (both MotionDownward Translocation) ; + + -- The TruthValue of being false. + fun False : Ind TruthValue ; + + -- A GroupOfPeople whose members bear + -- familyRelations to one another. + fun FamilyGroup : Class ; + fun FamilyGroup_Class : SubClass FamilyGroup GroupOfPeople ; + + -- SI capacitance measure. Symbol: F. It is the + -- capacitance of a capacitator between the plates of which there appears + -- a difference of potential of 1 Volt when it is charged by a quantity + -- of electricity equal to 1 Coulomb. Farad = C/V = + -- m^(_2)*kg(_1)*s^4*A^2. + fun Farad : Ind CompositeUnitOfMeasure ; + + -- Nonrigid Tissue that is composed largely of fat cells. + fun FatTissue : Class ; + fun FatTissue_Class : SubClass FatTissue Tissue ; + + -- The Class of all Months which are February. + fun February : Class ; + fun February_Class : SubClass February Month ; + + -- The Class of Carnivores with completely + -- separable toes, slim bodies, and rounded heads. All felines other than + -- the cheetah have retractable claws. + fun Feline : Class ; + fun Feline_Class : SubClass Feline Carnivore ; + + -- An Attribute indicating that an Organism is + -- female in nature. + fun Female : Ind SexAttribute ; + + -- A NonFloweringPlant that contains vascular tissue. + -- This class includes true ferns, as well as horsetails, club mosses, and + -- whisk ferns. + fun Fern : Class ; + fun Fern_Class : SubClass Fern NonFloweringPlant ; + + -- The class of Texts that purport to + -- be largely a product of the author's imagination, i.e. the author + -- does not believe that most of the content conveyed by the text is + -- an accurate depiction of the real world. Note that something can + -- be an instance of FictionalText, even if it is completely true. + -- Whether something is a FictionalText is determined by the beliefs + -- of the agent creating the text. + fun FictionalText : Class ; + fun FictionalText_Class : SubClass FictionalText Text ; + + -- An academic or applied discipline with + -- recognized experts and with a core of accepted theory or practice. Note + -- that FieldOfStudy is a subclass of Proposition, because a + -- FieldOfStudy is understood to be a body of abstract, informational + -- content, with varying degrees of certainty attached to each element of + -- this content. + fun FieldOfStudy : Class ; + fun FieldOfStudy_Class : SubClass FieldOfStudy Proposition ; + + -- Something is Fillable if it can be filled by + -- something else. Note that 'filled' here means perfectly filled. + -- Something is fillable just in case it is part of a hole, i.e., + -- fillability is an exclusive property of holes and their parts. + fun Fillable : Ind ShapeAttribute ; + + -- A document having monetary value + -- or recording a monetary transaction + fun FinancialInstrument : Class ; + fun FinancialInstrument_Class : SubClass FinancialInstrument Certificate ; + + -- A Transaction where an instance + -- of Currency is exchanged for something else. + fun FinancialTransaction : Class ; + fun FinancialTransaction_Class : SubClass FinancialTransaction Transaction ; + + -- A Set containing a finite number of elements. + fun FiniteSet : Class ; + fun FiniteSet_Class : SubClass FiniteSet Set ; + + -- A cold_blooded aquatic Vertebrate characterized by + -- fins and breathing by gills. Included here are Fish having either a bony + -- skeleton, such as a perch, or a cartilaginous skeleton, such as a shark. + -- Also included are those Fish lacking a jaw, such as a lamprey or + -- hagfish. + fun Fish : Class ; + fun Fish_Class : SubClass Fish ColdBloodedVertebrate ; + + -- The Attribute of being flammable at normal temperatures + -- (i.e. not while a Plasma). + fun Flammable : Ind PhysicalAttribute ; + + -- (FloorFn ?NUMBER) returns the largest Integer + -- less than or equal to the RealNumber ?NUMBER. + fun FloorFn : El RealNumber -> Ind Integer ; + + -- FlowRegion is a class of things whose + -- boundaries are relatively stable but whose constitutive material is continuously moving + -- through the region itself and being replaced by + -- other, similar material. Each FlowRegion is constituted by a stream + -- of matter moving as a whole. A FlowRegion may be liquid or gaseous. + -- A wind may be considered as a Process or as a FlowRegion, similarly + -- an OceanCurrent or a WaterWave. The motion process associated with a + -- FlowRegion F is denoted by (FlowFn F). Note that certain + -- properties belong to the FlowRegion itself (e.g., mass, length, volume, + -- temperature, and speed or velocity of the region moving as a whole), + -- while other properties of interest belong to the Motion of its + -- constitutive stuff (e.g., velocity, direction). The motion of + -- a FlowRegion as a whole (e.g., JetStream moves within the atmosphere) + -- is distinguished from the motion of the pieces of stuff constituting the + -- FlowRegion. See FlowFn and FlowRegionFn. + fun FlowRegion : Class ; + + -- A Plant that produces seeds and flowers. + -- This class includes trees, shrubs, herbs, and flowers. + fun FloweringPlant : Class ; + fun FloweringPlant_Class : SubClass FloweringPlant Plant ; + + -- Fluid is the PhysicalState attribute of an + -- Object that does not have a fixed shape and thus tends to flow or to + -- conform to the shape of a container. + fun Fluid : Ind PhysicalState ; + + -- Any SelfConnectedObject containing Nutrients, + -- such as carbohydrates, proteins, and fats, that can be ingested by a + -- living Animal and metabolized into energy and body tissue. + fun Food : Class ; + fun Food_Class : SubClass Food SelfConnectedObject ; + + -- English length unit of feet. + fun FootLength : Ind UnitOfLength ; + + -- The Class of Processes where an Object is + -- cooled and converted from a Liquid to a Solid. + fun Freezing : Class ; + fun Freezing_Class : SubClass Freezing StateChange ; + + -- A subclass of + -- TimeDependentQuantity, instances of which are measures of the + -- frequency with which some Process occurs. + fun FrequencyMeasure : Class ; + fun FrequencyMeasure_Class : SubClass FrequencyMeasure TimeDependentQuantity ; + + -- A WaterArea whose Water is not saline, + -- e.g. most rivers and lakes. + fun FreshWaterArea : Class ; + fun FreshWaterArea_Class : SubClass FreshWaterArea WaterArea ; + + -- The Class of all calendar Fridays. + fun Friday : Class ; + fun Friday_Class : SubClass Friday Day ; + + -- A Function that maps an Object to the side + -- that generally receives the most attention or that typically faces the + -- direction in which the Object moves. Note that this is a partial + -- function, since some Objects do not have sides, e.g. apples and + -- spheres. Note too that the range of this Function is indefinite in + -- much the way that ImmediateFutureFn and ImmediatePastFn are indefinite. + -- Although this indefiniteness is undesirable from a theoretical standpoint, + -- it does not have significant practical implications, since there is + -- widespread intersubjective agreement about the most common cases. + fun FrontFn : El SelfConnectedObject -> Ind SelfConnectedObject ; + + -- Any fruit or vegetable, i.e. a + -- ripened ReproductiveBody of a Plant. Note that FruitOrVegetable + -- is not a subclass of Food, because some fruits, e.g. poisonous + -- berries, are not edible. + fun FruitOrVegetable : Class ; + fun FruitOrVegetable_Class : SubClass FruitOrVegetable (both PlantAnatomicalStructure ReproductiveBody) ; + + -- The stage of an Organism when it has reached + -- the end of its growth phase. + fun FullyFormed : Ind DevelopmentalAttribute ; + + -- A FunctionQuantity + -- is a PhysicalQuantity that is returned by a Function that maps + -- from one or more instances of ConstantQuantity to another instance + -- of ConstantQuantity. For example, the velocity of a particle would + -- be represented by a FunctionQuantity relating values of time (which + -- are instances of ConstantQuantity) to values of distance + -- (also instances of ConstantQuantity). Note that all elements of the + -- range of the Function corresponding to a FunctionQuantity have the + -- same physical dimension as the FunctionQuantity itself. + fun FunctionQuantity : Class ; + fun FunctionQuantity_Class : SubClass FunctionQuantity PhysicalQuantity ; + + -- Any instance of Giving where the patient is an + -- instance of Currency. Note that this class covers both financing, e.g. + -- where a firm funds a software company with venture capital with the agreement + -- that a certain percentage of the profits on the investment will be returned + -- to the firm, and instances of UnilateralGiving, e.g. providing a tuition + -- waiver and/or a stipend to a student as part of scholarship or fellowship. + fun Funding : Class ; + fun Funding_Class : SubClass Funding Giving ; + + -- A eukaryotic Organism characterized by the + -- absence of chlorophyll and the presence of rigid cell walls. Included + -- here are both slime molds and true fungi such as yeasts, molds, mildews, + -- and mushrooms. + fun Fungus : Class ; + fun Fungus_Class : SubClass Fungus Organism ; + + -- A UnaryFunction that maps a TimePosition + -- to the TimeInterval which it meets and which ends at + -- PositiveInfinity. + fun FutureFn : El TimePosition -> Ind TimeInterval ; + + -- A Contest whose purpose is the + -- enjoyment/stimulation of the participants or spectators of the Game. + fun Game : Class ; + fun Game_Class : SubClass Game (both Contest RecreationOrExercise) ; + + -- An Object has the Attribute of Gas if it has + -- neither a fixed volume nor a fixed shape. + fun Gas : Ind PhysicalState ; + + -- Any Mixture that satisfies two conditions, + -- viz. it is made up predominantly of things which are a Gas and any + -- component other than Gas in the Mixture is in the form of fine particles + -- which are suspended in the Gas. + fun GasMixture : Class ; + fun GasMixture_Class : SubClass GasMixture Mixture ; + + -- Any Motion where the patient is a + -- Gas. This class would cover, in particular, the motion of + -- Air, e.g. a breeze or wind. + fun GasMotion : Class ; + fun GasMotion_Class : SubClass GasMotion Motion ; + + -- A UnaryFunction that takes a + -- SetOrClass of Classes as its single argument and returns a SetOrClass which + -- is the intersection of all of the Classes in the original SetOrClass, i.e. + -- the SetOrClass containing just those instances which are instances of all + -- instances of the original SetOrClass. + fun GeneralizedIntersectionFn : Desc SetOrClass -> Ind SetOrClass ; + + -- A UnaryFunction that takes a SetOrClass + -- of Classes as its single argument and returns a SetOrClass which is the + -- merge of all of the Classes in the original SetOrClass, i.e. the SetOrClass + -- containing just those instances which are instances of an instance of the + -- original SetOrClass. + fun GeneralizedUnionFn : Desc SetOrClass -> Ind SetOrClass ; + + -- A geographic location, generally having + -- definite boundaries. Note that this differs from its immediate superclass + -- Region in that a GeographicArea is a three_dimensional Region of the + -- earth. Accordingly, all astronomical objects other than earth and all + -- one_dimensional and two_dimensional Regions are not classed under + -- GeographicArea. + fun GeographicArea : Class ; + fun GeographicArea_Class : SubClass GeographicArea Region ; + + -- The class of activities that + -- are caused by geological forces and affect geological features, + -- and which may affect the biosphere as well. + fun GeologicalProcess : Class ; + fun GeologicalProcess_Class : SubClass GeologicalProcess (both InternalChange Motion) ; + + -- The class of all geometric figures, i.e. the + -- class of all abstract, spatial representations. The instances of this class + -- are GeometricPoints, TwoDimensionalFigures or ThreeDimensionalFigures. + fun GeometricFigure : Class ; + fun GeometricFigure_Class : SubClass GeometricFigure ShapeAttribute ; + + -- The class of zero_dimensional + -- GeometricFigures, i.e. the class of GeometricFigures that have position + -- but lack extension in any dimension. + fun GeometricPoint : Class ; + fun GeometricPoint_Class : SubClass GeometricPoint GeometricFigure ; + + -- Any GeographicArea which is associated + -- with some sort of political structure. This class includes Lands, + -- Cities, districts of cities, counties, etc. Note that the identity + -- of a GeopoliticalArea may remain constant after a change in borders. + fun GeopoliticalArea : Class ; + fun GeopoliticalArea_Class : SubClass GeopoliticalArea (both Agent GeographicArea) ; + + -- Any BodyMotion, e.g. a hand wave, a nod of the + -- head, a smile, which is also an instance of Communication. + fun Gesture : Class ; + fun Gesture_Class : SubClass Gesture (both BodyMotion Communication) ; + + -- The subclass of ChangeOfPossession where the + -- agent gets something. Note that the source from which something is + -- obtained is specified with the origin CaseRole. + fun Getting : Class ; + fun Getting_Class : SubClass Getting ChangeOfPossession ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to 1,000,000,000 units of the original + -- UnitOfMeasure. For example, (GigaFn Hertz) is 1,000,000,000 Hertz. + fun GigaFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- The subclass of ChangeOfPossession where the + -- agent gives the destination something. + fun Giving : Class ; + fun Giving_Class : SubClass Giving ChangeOfPossession ; + + -- Any instance of Giving where the agent gives + -- something to the destination which was previously given to the agent by + -- the destination, e.g. returing a book that was borrowed from someone. + fun GivingBack : Class ; + fun GivingBack_Class : SubClass GivingBack Giving ; + + -- An Organ that removes Substances from the Blood, + -- alters them in some way, and then releases them. + fun Gland : Class ; + fun Gland_Class : SubClass Gland Organ ; + + -- The ruling body of a GeopoliticalArea. + fun Government : Class ; + fun Government_Class : SubClass Government GovernmentOrganization ; + + -- (GovernmentFn ?AREA) denotes the + -- Government of the GeopoliticalArea ?AREA. For example, + -- (GovernmentFn UnitedStates) denotes the Federal_level government of + -- the United States, (GovernmentFn PuertoRico) denotes the government of + -- the Commonwealth of Puerto Rico. + fun GovernmentFn : El GeopoliticalArea -> Ind Government ; + + -- GovernmentOrganization is the + -- class of official Organizations that are concerned with the government + -- of a GeopoliticalArea at some level. They may be a subOrganization + -- of a government. + fun GovernmentOrganization : Class ; + fun GovernmentOrganization_Class : SubClass GovernmentOrganization Organization ; + + -- Any instance of Touching which results in + -- a situation where the agent grasps the patient of the Touching. + fun Grabbing : Class ; + fun Grabbing_Class : SubClass Grabbing (both Attaching Touching) ; + + -- The OrganizationalProcess of graduating + -- from an EducationalOrganization. + fun Graduation : Class ; + fun Graduation_Class : SubClass Graduation LeavingAnOrganization ; + + -- Submultiple of kilogram. Symbol: g. + -- 1 kilogram = 1000 Grams. + fun Gram : Ind UnitOfMass ; + + -- The Class of graphs, where a graph is understood + -- to be a set of GraphNodes connected by GraphArcs. Note that this + -- Class includes only connected graphs, i.e. graphs in which there is a + -- GraphPath between any two GraphNodes. Note too that every Graph + -- is required to contain at least two GraphArcs and three GraphNodes. + fun Graph : Class ; + fun Graph_Class : SubClass Graph Abstract ; + + -- Graphs are comprised of GraphNodes + -- and GraphArcs. Every GraphArc links two GraphNodes. + fun GraphArc : Class ; + fun GraphArc_Class : SubClass GraphArc GraphElement ; + + -- A GraphPath that begins (see + -- BeginNodeFn) and ends (see EndNodeFn) at the same + -- GraphNode. + fun GraphCircuit : Class ; + fun GraphCircuit_Class : SubClass GraphCircuit GraphPath ; + + -- Noncompositional parts of Graphs. + -- These parts are restricted to GraphNodes and GraphArcs. + fun GraphElement : Class ; + fun GraphElement_Class : SubClass GraphElement Abstract ; + + -- A GraphArc in which a GraphNode is + -- linked to itself. + fun GraphLoop : Class ; + fun GraphLoop_Class : SubClass GraphLoop GraphArc ; + + -- Graphs are comprised of GraphNodes + -- and GraphArcs. Every GraphNode is linked by a GraphArc. + fun GraphNode : Class ; + fun GraphNode_Class : SubClass GraphNode GraphElement ; + + -- Informally, a single, directed route between + -- two GraphNodes in a Graph. Formally, a DirectedGraph that is a + -- subGraph of the original Graph and such that no two GraphArcs in + -- the DirectedGraph have the same intial node (see InitialNodeFn) or + -- the same terminal node (see TerminalNodeFn). + fun GraphPath : Class ; + fun GraphPath_Class : SubClass GraphPath DirectedGraph ; + + -- A BinaryFunction that maps two GraphNodes + -- to the Class of GraphPaths between those two nodes. Note that the two + -- GraphNodes must belong to the same Graph. + fun GraphPathFn : El GraphNode -> El GraphNode -> Desc GraphPath ; + + -- SI absorbed dose measure. Symbol: Gy. It measures + -- the dose of radiation absorbed in living tissue. It is equal approximately + -- to the absorbed dose delivered when the energy per unit mass imparted to + -- matter by ionizing radiation is 1 Joule per kilogram. Gray = J/kg + -- = m^2*s^(_2). + fun Gray : Ind CompositeUnitOfMeasure ; + + -- (GreatestCommonDivisorFn + -- ?NUMBER1 ?NUMBER2 ... ?NUMBER) returns the greatest common divisor of + -- ?NUMBER1 through ?NUMBER. + fun GreatestCommonDivisorFn : [El Integer] -> Ind Integer ; + + -- A Collection of Agents, e.g. a flock + -- of sheep, a herd of goats, or the local Boy Scout troop. + fun Group : Class ; + fun Group_Class : SubClass Group (both Agent Collection) ; + + -- Any Group whose members are + -- exclusively Humans. + fun GroupOfPeople : Class ; + fun GroupOfPeople_Class : SubClass GroupOfPeople Group ; + + -- The Process of biological development in which + -- an Organism or part of an Organism changes its form or its size. + fun Growth : Class ; + fun Growth_Class : SubClass Growth AutonomicProcess ; + + -- Any IntentionalProcess where the agent tries to + -- direct the behavior of another Object, whether an Agent or not. + fun Guiding : Class ; + fun Guiding_Class : SubClass Guiding IntentionalProcess ; + + -- The subclass of Perception in which the + -- sensing is done by an auditory Organ. + fun Hearing : Class ; + fun Hearing_Class : SubClass Hearing Perception ; + + -- Any Increasing Process where the PhysicalQuantity + -- increased is a TemperatureMeasure. + fun Heating : Class ; + fun Heating_Class : SubClass Heating Increasing ; + + -- SI inductance measure. Symbol: H. One Henry + -- is equivalent to one Volt divided by one Ampere per SecondDuration. + -- If a current changing at the rate of one Ampere per SecondDuration + -- induces an electromotive force of one Volt, the circuit has an + -- inductance of one Henry. Henry = Wb/A = m^2*kg*s^(_2)*A^(_2). + fun Henry : Ind CompositeUnitOfMeasure ; + + -- SI frequency measure. Symbol: Hz. It is the + -- number of cycles per second. Hertz = s^(_1). Note that Hertz + -- does not have a conversion function. + fun Hertz : Ind UnitOfFrequency ; + + -- OrganizationalProcesses where someone is made an + -- employee of an Organization. + fun Hiring : Class ; + fun Hiring_Class : SubClass Hiring JoiningAnOrganization ; + + -- A hole is an immaterial body located at the surface + -- of an Object. Since every Hole is ontologically dependent on its host + -- (i.e., the object in which it is a hole), being a Hole is defined as + -- being a hole in something. Note that two Holes may occupy the same + -- region, or part of the same region, without sharing any parts. Any two + -- hosts of a hole have a common proper part that entirely hosts the hole. A + -- common host of two holes hosts all parts of the sum of those holes. Any + -- object that includes the host of a hole is a host of that hole, unless its + -- parts also include parts of that very hole. Overlapping holes have + -- overlapping hosts. No hole is atomic. Holes are connected with their + -- hosts. No hole can have a proper part that is externally connected with + -- exactly the same things as the hole itself. + fun Hole : Class ; + fun Hole_Class : SubClass Hole Region ; + + -- A UnaryFunction that maps a Hole to + -- the Object which is its principal host. The principle host of a Hole + -- is its maximally connected host (a notion taken here to be defined only + -- when the argument is a hole). + fun HoleHostFn : El Hole -> Ind Object ; + + -- A UnaryFunction that maps a Hole to the skin + -- of the Hole. The skin of a Hole is the fusion of those superficial + -- parts (see superficialPart) of the Hole's principal host (see + -- HoleHostFn) with which the Hole is externally connected. + fun HoleSkinFn : El Hole -> Ind Object ; + + -- Includes Humans and relatively recent + -- ancestors of Humans. + fun Hominid : Class ; + fun Hominid_Class : SubClass Hominid Primate ; + + -- The Class of quadruped Mammals with hooves. + -- Includes horses, cows, sheep, pigs, antelope, etc. + fun HoofedMammal : Class ; + fun HoofedMammal_Class : SubClass HoofedMammal Mammal ; + + -- Attribute used to indicate that an Object + -- is positioned width_wise with respect to another Object. + fun Horizontal : Ind PositionalAttribute ; + + -- In Animals, a chemical secreted by an + -- endocrine gland whose products are released into the circulating fluid. + -- Plant hormones or synthetic hormones which are used only to alter or + -- control various physiologic processes, e.g., reproductive control agents, + -- are assigned to the Class BiologicallyActiveSubstance. Hormones act as + -- chemical messengers and regulate various physiologic processes such as + -- growth, reproduction, metabolism, etc. They usually fall into two broad + -- categories, viz. steroid hormones and peptide hormones. + fun Hormone : Class ; + fun Hormone_Class : SubClass Hormone (both BiologicallyActiveSubstance BodySubstance) ; + + -- A power measure that is equal to 746 Watts. + fun Horsepower : Ind CompositeUnitOfMeasure ; + + -- The Class of all clock Hours. + fun Hour : Class ; + fun Hour_Class : SubClass Hour TimeInterval ; + + -- Time unit. 1 hour = 60 minutes. + fun HourDuration : Ind UnitOfDuration ; + + -- A BinaryFunction that assigns a PositiveRealNumber and + -- a subclass of Days to the Hours within each Day corresponding to that + -- NonnegativeInteger. For example, (HourFn 12 Thursday) is the Class of all + -- instances of noon Thursday. For another example, (HourFn 0 Day) would return + -- the class of all instances of midnight. For still another example, (HourFn 14 + -- (DayFn 18 (MonthFn August (YearFn 1912)))) denotes 2 PM on the 18th day of + -- August 1912. + fun HourFn : El NonnegativeInteger -> Desc Day -> Desc Hour ; + + -- A ResidentialBuilding which is intended to be + -- inhabited by members of the same SocialUnit. Houses are distinguished + -- from temporary housing like hotels and multi_family dwellings like condominium + -- and apartment buildings. + fun House : Class ; + fun House_Class : SubClass House (both ResidentialBuilding SingleFamilyResidence) ; + + -- Modern man, the only remaining species of the Homo + -- genus. + fun Human : Class ; + fun Human_Class : SubClass Human (both CognitiveAgent Hominid) ; + + -- The subclass of Languages used by + -- Humans. + fun HumanLanguage : Class ; + fun HumanLanguage_Class : SubClass HumanLanguage Language ; + + -- Hunting is the class of Processes in which + -- an animal or animals are pursued and sometimes captured and/or killed. + fun Hunting : Class ; + fun Hunting_Class : SubClass Hunting Pursuing ; + + -- This is the subclass of ContentBearingPhysical + -- which are not part of a Language and which have some sort of similarity + -- with the Objects that they represent. This Class would include symbolic + -- roadway signs, representational art works, photographs, etc. + fun Icon : Class ; + fun Icon_Class : SubClass Icon ContentBearingPhysical ; + + -- The Attribute of Regions that are + -- illuminated to some degree, i.e. in which some shapes are visually + -- discernable. + fun Illuminated : Ind VisualAttribute ; + + -- Any Number that is the result of + -- multiplying a RealNumber by the square root of _1. + fun ImaginaryNumber : Class ; + fun ImaginaryNumber_Class : SubClass ImaginaryNumber Number ; + + -- (ImaginaryPartFn ?NUMBER) returns + -- the part of ?NUMBER that has the square root of _1 as its factor. + fun ImaginaryPartFn : El ComplexNumber -> Ind ImaginaryNumber ; + + -- (ImmediateFamilyFn ?PERSON) denotes the + -- immediate family of ?PERSON, i.e. the Group consisting of the parents of + -- ?PERSON and anyone of whom ?PERSON is a parent. + fun ImmediateFamilyFn : El Human -> Ind FamilyGroup ; + + -- A UnaryFunction that maps a + -- TimePosition to a short, indeterminate TimeInterval that + -- immediately follows the TimePosition. + fun ImmediateFutureFn : El TimePosition -> Ind TimeInterval ; + + -- A UnaryFunction that maps a + -- TimePosition to a short, indeterminate TimeInterval that + -- immediately precedes the TimePosition. + fun ImmediatePastFn : El TimePosition -> Ind TimeInterval ; + + -- Any Touching where something comes into + -- sudden, forceful, physical contact with something else. Some examples + -- would be striking, knocking, whipping etc. + fun Impacting : Class ; + fun Impacting_Class : SubClass Impacting Touching ; + + -- The subclass of Transfer where the patient + -- travels through space by means of a sudden, forceful event. Some examples + -- would be shooting, throwing, tossing, etc. + fun Impelling : Class ; + fun Impelling_Class : SubClass Impelling Transfer ; + + -- English length unit of inches. + fun Inch : Ind UnitOfLength ; + + -- InchMercury is a UnitOfMeasure + -- for barometricPressure. It is used to express the number of + -- inches of mercury supported in a mercurial barometer by the + -- surrounding air pressure. + fun InchMercury : Ind UnitOfAtmosphericPressure ; + + -- Any QuantityChange where the PhysicalQuantity + -- is increased. + fun Increasing : Class ; + fun Increasing_Class : SubClass Increasing QuantityChange ; + + -- An Argument which is inductive, i.e. it is + -- claimed that a set of specific cases makes the conclusion, which generalizes + -- these cases, more likely to be true. + fun InductiveArgument : Class ; + fun InductiveArgument_Class : SubClass InductiveArgument Argument ; + + -- Measures of the amount of information. + -- Includes Bit, Byte, and multiples of these, e.g. KiloByte and + -- MegaByte. + fun InformationMeasure : Class ; + fun InformationMeasure_Class : SubClass InformationMeasure ConstantQuantity ; + + -- The Process by which Food is + -- taken into an Animal. + fun Ingesting : Class ; + fun Ingesting_Class : SubClass Ingesting OrganismProcess ; + + -- A UnaryFunction that maps a + -- GraphArc to the initial node of the GraphArc. Note + -- that this is a partial function. In particular, the function is + -- undefined for GraphArcs that are not part of a DirectedGraph. + fun InitialNodeFn : El GraphArc -> Ind GraphNode ; + + -- Inserting a BiologicallyActiveSubstance into an + -- Animal or a Human with a syringe. + fun Injecting : Class ; + fun Injecting_Class : SubClass Injecting Inserting ; + + -- The process of creating a traumatic wound or + -- injury. Since Injuring is not possible without some biologic function + -- of the organism being injured, it is a subclass of BiologicalProcess. + fun Injuring : Class ; + fun Injuring_Class : SubClass Injuring PathologicProcess ; + fun Injuring_Damaging : SubClassC Injuring Damaging (\INJ -> exists Organism (\ORGANISM -> patient(var Damaging Process ? INJ)(var Organism Entity ? ORGANISM))); + + -- A Class of small Arthropods that are + -- air_breathing and that are distinguished by appearance. + fun Insect : Class ; + fun Insect_Class : SubClass Insect Arthropod ; + + -- Putting one thing inside of another thing. + fun Inserting : Class ; + fun Inserting_Class : SubClass Inserting Putting ; + + -- A negative or nonnegative whole number. + fun Integer : Class ; + fun Integer_Class : SubClass Integer RationalNumber ; + + -- (IntegerSquareRootFn ?NUMBER) + -- returns the integer square root of ?NUMBER. + fun IntegerSquareRootFn : El RealNumber -> Ind NonnegativeInteger ; + + -- A Process that has a specific + -- purpose for the CognitiveAgent who performs it. + fun IntentionalProcess : Class ; + fun IntentionalProcess_Class : SubClass IntentionalProcess Process ; + + -- An IntentionalProcess that + -- can be realized entirely within the mind or brain of an Organism. Thus, + -- for example, Reasoning is a subclass of IntentionalPsychologicalProcess, + -- because one can reason simply by exercising one's mind/brain. On the other + -- hand, RecreationOrExercise is not a subclass of IntentionalPsychologicalProcess, + -- because many instances of RecreationOrExercise necessarily have subProcesses + -- of BodyMotion. + fun IntentionalPsychologicalProcess : Class ; + fun IntentionalPsychologicalProcess_Class : SubClass IntentionalPsychologicalProcess (both IntentionalProcess PsychologicalProcess) ; + + -- Any Attribute of an Entity that is an + -- internal property of the Entity, e.g. its shape, its color, its fragility, + -- etc. + fun InternalAttribute : Class ; + fun InternalAttribute_Class : SubClass InternalAttribute Attribute ; + + -- Processes which involve altering an internal + -- property of an Object, e.g. the shape of the Object, its coloring, its + -- structure, etc. Processes that are not instances of this class include + -- changes that only affect the relationship to other objects, e.g. changes in + -- spatial or temporal location. + fun InternalChange : Class ; + fun InternalChange_Class : SubClass InternalChange Process ; + + -- Any Process of assigning a Proposition to + -- a Text, i.e. understanding the Text. + fun Interpreting : Class ; + fun Interpreting_Class : SubClass Interpreting IntentionalPsychologicalProcess ; + + -- A BinaryFunction that maps two + -- SetOrClasses to the intersection of these SetOrClasses. An object is + -- an instance of the intersection of two SetOrClasses just in case it is + -- an instance of both of those SetOrClasses. + fun IntersectionFn : El SetOrClass -> El SetOrClass -> Ind SetOrClass ; + + -- A BinaryFunction that + -- maps two instances of ConstantQuantity to the subclass of + -- ConstantQuantity that comprises the interval from the first + -- ConstantQuantity to the second ConstantQuantity. For + -- example, (IntervalFn (MeasureFn 8 Meter) (MeasureFn 14 Meter)) + -- would return the subclass of ConstantQuantity comprising quantities + -- between 8 and 14 meters in length. + fun IntervalFn : El ConstantQuantity -> El ConstantQuantity -> Desc ConstantQuantity ; + + -- A class-forming operator that takes two arguments: + -- a variable and a formula containing at least one unbound + -- occurrence of the variable. The result of applying kappa + -- to a variable and a formula is the set or class of things + -- that satisfy the formula. For example, we can denote the set or class + -- of prime numbers that are less than 100 with the following expression: + -- (KappaFn ?NUMBER (and (instance ?NUMBER PrimeNumber) + -- (lessThan ?NUMBER 100))). + -- Note that the use of this function is discouraged, since there is + -- currently no axiomatic support for it. + fun KappaFn : (c : Class) -> (Ind c -> Formula) -> Class ; + + -- DeductiveArguments that are not + -- ValidDeductiveArguments, i.e. it is not the case that the set of premises + -- in fact entails the conclusion. + fun InvalidDeductiveArgument : Class ; + fun InvalidDeductiveArgument_Class : SubClass InvalidDeductiveArgument DeductiveArgument ; + + -- An Animal which has no spinal column. + fun Invertebrate : Class ; + fun Invertebrate_Class : SubClass Invertebrate Animal ; + + -- The class of IntentionalPsychologicalProcesses + -- where the agent attempts to obtaina information (i.e. a Proposition denoted + -- by a Formula). + fun Investigating : Class ; + fun Investigating_Class : SubClass Investigating IntentionalPsychologicalProcess ; + + -- Any RealNumber that is not also a + -- RationalNumber. + fun IrrationalNumber : Class ; + fun IrrationalNumber_Class : SubClass IrrationalNumber RealNumber ; + + -- A LandArea that is completely surrounded by a WaterArea. + fun Island : Class ; + fun Island_Class : SubClass Island LandArea ; + + -- The Class of all Months which are January. + fun January : Class ; + fun January_Class : SubClass January Month ; + + -- The OrganizationalProcess of + -- becoming a member of an Organization. + fun JoiningAnOrganization : Class ; + fun JoiningAnOrganization_Class : SubClass JoiningAnOrganization OrganizationalProcess ; + + -- SI energy measure. Symbol: J. It is the work + -- done when the point of application of 1 Newton is displaced a distance + -- of 1 Meter in the direction of the force. Joule = N*m = + -- m^2*kg*s^(_2). + fun Joule : Ind CompositeUnitOfMeasure ; + + -- The subclass of Selecting where the agent opts + -- for one belief out of a set of multiple possibilities that are available to + -- him/her. + fun Judging : Class ; + fun Judging_Class : SubClass Judging Selecting ; + + -- JudicialOrganization is the class + -- of Organizations whose primary purpose is to render judgments according + -- to the statutes or regulations of a government or other organization. + -- Judicial bodies are not necessarily government organizations, for example, + -- those associated with sporting associations. + fun JudicialOrganization : Class ; + fun JudicialOrganization_Class : SubClass JudicialOrganization Organization ; + + -- Any legal proceeding which is conducted + -- by a JudicialOrganization. Note that there is an important difference + -- between the concepts LegalAction and JudicialProcess. The former + -- refers to legal claims that are brought by a plaintiff, e.g. law suits, + -- while the second refers to trials and other sorts of judicial hearings + -- where the merits of a LegalAction are decided. + fun JudicialProcess : Class ; + fun JudicialProcess_PoliticalProcess : SubClassC JudicialProcess PoliticalProcess (\PROCESS -> forall Organization (\ORG -> agent(var PoliticalProcess Process ? PROCESS)(var Organization Agent ? ORG))); + + -- The Class of all Months which are July. + fun July : Class ; + fun July_Class : SubClass July Month ; + + -- The Class of all Months which are June. + fun June : Class ; + fun June_Class : SubClass June Month ; + + -- The Class of Processes where the agent + -- keeps something in a particular location for an extended period of time. + fun Keeping : Class ; + fun Keeping_Class : SubClass Keeping IntentionalProcess ; + + -- SI UnitOfMeasure used + -- with MeasureFn to produce terms denoting instances of + -- TemperatureMeasure. Symbol: K. It is one of the base units in + -- SI (it is also a unit in the ITS system). Kelvin differs from the + -- Celsius scale in that the triple point of water is defined to be + -- 273.16 KelvinDegrees while it is 0 CelsiusDegrees. The magnitudes + -- of intervals in the two scales are the same. By definition the + -- conversion constant is 273.15. + fun KelvinDegree : Ind UnitOfTemperature ; + + -- The subclass of Destruction in which the + -- death of an Organism is caused by an Organism. Note that in cases + -- of suicide the Organism would be the same in both cases. + fun Killing : Class ; + fun Killing_Class : SubClass Killing Destruction ; + + -- One KiloByte (KB) of information. One + -- KiloByte is 1024 Bytes. Note that this sense of 'kilo' is + -- different from the one accepted in the SI system. + fun KiloByte : Ind UnitOfInformation ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to 1,000 units of the original UnitOfMeasure. + -- For example, (KiloFn Gram) is 1,000 Grams. + fun KiloFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- Supermultiple of Gramm. Symbol: kg. 1 Kilogram + -- = 1000 Grams. + fun Kilogram : Ind UnitOfMass ; + + -- Supermultiple of Meter. Symbol: km. A + -- Meter is the 1000th part of a Kilometer + fun Kilometer : Ind UnitOfLength ; + + -- An area which is predominantly solid ground, + -- e.g. a Nation, a mountain, a desert, etc. Note that a LandArea may + -- contain some relatively small WaterAreas. For example, Australia is + -- a LandArea even though it contains various rivers and lakes. + fun LandArea : Class ; + fun LandArea_Class : SubClass LandArea GeographicArea ; + + -- LandTransitway is the subclass of + -- Transitway that represents areas intended for motion over the ground. + fun LandTransitway : Class ; + fun LandTransitway_Class : SubClass LandTransitway (both LandArea Transitway) ; + + -- A system of signs for expressing thought. The + -- system can be either natural or artificial, i.e. something that emerges + -- gradually as a cultural artifact or something that is intentionally created + -- by a person or group of people. + fun Language : Class ; + fun Language_Class : SubClass Language LinguisticExpression ; + + -- Form of most Invertebrates, Amphibians, and + -- Fish immediately after they hatch. This form is fundamentally unlike + -- the adult form, and metamorphosis is required to reach the latter form. + fun Larval : Ind DevelopmentalAttribute ; + + -- Attribute that applies to Propositions that are + -- required by a government or a branch of the government and that are enforced + -- with penalties for noncompliance. These Propositions may be codified as + -- legislation or they may be more informal, as in the case of government policy. + fun Law : Ind DeonticAttribute ; + + -- The Class of all leap years. These are years + -- which are either (i.) evenly divisible by 4 and not by 100 or (ii.) evenly + -- divisible by 400 (this latter case is known as a leap century). + fun LeapYear : Class ; + fun LeapYear_Class : SubClass LeapYear Year ; + + -- The Class of Processes which relate to the + -- acquisition of information. + fun Learning : Class ; + fun Learning_Class : SubClass Learning IntentionalPsychologicalProcess ; + + -- (LeastCommonMultipleFn + -- ?NUMBER1 ?NUMBER2 ... ?NUMBER) returns the least common multiple of + -- ?NUMBER1 through ?NUMBER. + fun LeastCommonMultipleFn : [El Integer] -> Ind Integer ; + + -- The OrganizationalProcess of + -- leaving an Organization, whether voluntarily or involuntarily. + fun LeavingAnOrganization : Class ; + fun LeavingAnOrganization_Class : SubClass LeavingAnOrganization OrganizationalProcess ; + + -- This PositionalAttribute is derived from the + -- left/right schema. Note that this means directly to the left, so that, + -- if one object is to the left of another, then the projections of the + -- two objects overlap. + fun Left : Ind AntiSymmetricPositionalAttribute ; + + -- Any Process where a CognitiveAgent seeks + -- to obtain something through a court of law. + fun LegalAction : Class ; + fun LegalAction_Class : SubClass LegalAction Contest ; + + -- A decision issued by a court with respect to + -- a LegalAction. Note that a LegalDecision is the act of Declaring a + -- decision of a court, it is not the act of judge or jury Deciding the merits + -- of a particular LegalAction. + fun LegalDecision : Class ; + fun LegalDecision_Class : SubClass LegalDecision (both Declaring JudicialProcess) ; + + -- The subclass of Giving Processes where + -- the agent gives the destination something for a limited period of + -- time with the expectation that it will be returned later (perhaps with + -- interest). + fun Lending : Class ; + fun Lending_Class : SubClass Lending Giving ; + + -- A subclass of + -- ConstantQuantity, instances of which are measures of length. + fun LengthMeasure : Class ; + fun LengthMeasure_Class : SubClass LengthMeasure ConstantQuantity ; + + -- The ProbabilityAttribute of being probable, i.e. more + -- likely than not to be True. + fun Likely : Ind ProbabilityAttribute ; + + -- A Communication that involves + -- the transfer of information via a LinguisticExpression. + fun LinguisticCommunication : Class ; + fun LinguisticCommunication_Class : SubClass LinguisticCommunication Communication ; + + -- This is the subclass of + -- ContentBearingPhysical which are language_related. Note that this Class + -- encompasses both Language and the the elements of Languages, + -- e.g. Words. + fun LinguisticExpression : Class ; + fun LinguisticExpression_Class : SubClass LinguisticExpression ContentBearingPhysical ; + + -- An Object has the Attribute of Liquid if + -- it has a fixed volume but not a fixed shape. + fun Liquid : Ind PhysicalState ; + + -- Any Mixture that satisfies two conditions, + -- viz. it is made up predominantly of things which are a Liquid and any + -- component other than Liquid in the Mixture is in the form of fine particles + -- which are suspended in the Liquid. + fun LiquidMixture : Class ; + fun LiquidMixture_Class : SubClass LiquidMixture Mixture ; + + -- Any Motion where the patient is a + -- Liquid. This class would cover, in particular, the flow of + -- Water. + fun LiquidMotion : Class ; + fun LiquidMotion_Class : SubClass LiquidMotion Motion ; + + -- Every List is a particular ordered n_tuple of + -- items. Generally speaking, Lists are created by means of the ListFn + -- Function, which takes any number of items as arguments and returns a + -- List with the items in the same order. Anything, including other + -- Lists, may be an item in a List. Note too that Lists are + -- extensional _ two lists that have the same items in the same order are + -- identical. Note too that a List may contain no items. In that case, + -- the List is the NullList. + fun List : Class ; + + -- A Function that returns the concatenation + -- of the two Lists that are given as arguments. For example, the value of + -- (ListConcatenateFn (ListFn Monday Tuesday) (ListFn Wednesday + -- Thursday)) would be (ListFn Monday Tuesday Wednesday Thursday). + fun ListConcatenateFn : El List -> El List -> Ind List ; + + -- A Function that takes any number of arguments and + -- returns the List containing those arguments in exactly the same order. + fun ListFn : [El Entity] -> Ind List ; + + -- A Function that takes a List as its sole + -- argument and returns the number of items in the List. For example, + -- (ListLengthFn (ListFn Monday Tuesday Wednesday)) would return the + -- value 3. + fun ListLengthFn : El List -> Ind NonnegativeInteger ; + + -- (ListOrderFn ?LIST ?NUMBER) denotes the item + -- that is in the ?NUMBER position in the List ?LIST. For example, + -- (ListOrderFn (ListFn Monday Tuesday Wednesday) 2) would return the + -- value Tuesday. + fun ListOrderFn : El List -> El PositiveInteger -> Ind Entity ; + + -- Any instance of Hearing which is intentional. + fun Listening : Class ; + fun Listening_Class : SubClass Listening (both Hearing IntentionalProcess) ; + + -- Unit of volume in the metric + -- system. It is currently defined to be equal to one cubic + -- decimeter (0.001 cubic meter). Symbol: l. + fun Liter : Ind UnitOfVolume ; + + -- This Attribute applies to Organisms that are + -- alive. + fun Living : Ind AnimacyAttribute ; + + -- (LogFn ?NUMBER ?INT) returns the logarithm of the + -- RealNumber ?NUMBER in the base denoted by the Integer ?INT. + fun LogFn : El RealNumber -> El PositiveInteger -> Ind RealNumber ; + + -- This Class comprises all + -- of the logical operators (viz. 'and', 'or', 'not', '=>', and '<=>'). + fun LogicalOperator : Class ; + + -- Any instance of Seeing which is intentional. + fun Looking : Class ; + fun Looking_Class : SubClass Looking (both IntentionalProcess Seeing) ; + + -- SI luminous flux measure. Symbol: lm. It is the + -- amount streaming outward through one solid angle of 1 Steradian from a + -- uniform point source having an intensity of one Candela. Lumen = + -- cd*sr = cd * 1. + fun Lumen : Ind CompositeUnitOfMeasure ; + + -- SI illuminance measure. Symbol: lx. It is the + -- amount of illumination provided when one Lumen is evenly distributed + -- over an area of 1 square Meter. This is also equivalent to the + -- illumination that would exist on a surface all points of which are one + -- Meter from a point source of one Candela. Lux = lm/m^2 = + -- m^(_2)*cd. + fun Lux : Ind CompositeUnitOfMeasure ; + + -- Machines are Devices that that have a + -- well_defined resource and result and that automatically convert + -- the resource into the result. + fun Machine : Class ; + fun Machine_Class : SubClass Machine Device ; + + -- The magnitude of a PhysicalQuantity is the + -- numeric value for the quantity. In other words, MagnitudeFn converts + -- a PhysicalQuantity with an associated UnitOfMeasure into an ordinary + -- RealNumber. For example, the magnitude of the ConstantQuantity 2 + -- Kilometers is the RealNumber 2. Note that the magnitude of a + -- quantity in a given unit times that unit is equal to the original + -- quantity. + fun MagnitudeFn : El PhysicalQuantity -> Ind RealNumber ; + + -- The Class of Processes where the agent + -- cares for or maintains the Object. + fun Maintaining : Class ; + fun Maintaining_Class : SubClass Maintaining IntentionalProcess ; + + -- The subclass of Creation in which an individual + -- Artifact or a type of Artifact is made. + fun Making : Class ; + fun Making_Class : SubClass Making (both Creation IntentionalProcess) ; + + -- An Attribute indicating that an Organism is + -- male in nature. + fun Male : Ind SexAttribute ; + + -- A Vertebrate having a constant body temperature + -- and characterized by the presence of hair, mammary glands, and sweat + -- glands. + fun Mammal : Class ; + fun Mammal_Class : SubClass Mammal WarmBloodedVertebrate ; + + -- The class of Male Humans. + fun Man : Class ; + fun Man_Class : SubClass Man Human ; + + -- OrganizationalProcesses that involve overseeing + -- the activities of others. Note the key differences between RegulatoryProcess + -- and its sibling Managing. The latter implies a long_term relationship between + -- the manager and the managed, while the former implies a normative standard to which + -- the activities of the regulated are referred. + fun Managing : Class ; + fun Managing_Class : SubClass Managing (both Guiding OrganizationalProcess) ; + + -- An intentional move or play within a Contest. + -- In many cases, a Maneuver is a realization of part of a strategy for + -- winning the Contest, but it also may be just an arbitrary or semi_arbitrary + -- division of the overarching Contest, e.g. innings in a baseball game. + fun Maneuver : Class ; + fun Maneuver_Class : SubClass Maneuver IntentionalProcess ; + + -- A ManualHumanLanguage is a + -- HumanLanguage which has as its medium gestures and movement, such + -- as the shape, position, and movement of the hands. + fun ManualHumanLanguage : Class ; + fun ManualHumanLanguage_Class : SubClass ManualHumanLanguage HumanLanguage ; + + -- The Making of Artifacts on a mass + -- scale. + fun Manufacture : Class ; + fun Manufacture_Class : SubClass Manufacture Making ; + + -- Any Corporation which manufactures Products. + fun Manufacturer : Class ; + fun Manufacturer_Class : SubClass Manufacturer Corporation ; + + -- The Class of all Months which are March. + fun March : Class ; + fun March_Class : SubClass March Month ; + + -- The Class of Mammals which have a pouch for + -- their young. + fun Marsupial : Class ; + fun Marsupial_Class : SubClass Marsupial Mammal ; + + -- A subclass of + -- ConstantQuantity, instances of which are measures of the amount of + -- matter in an Object. + fun MassMeasure : Class ; + fun MassMeasure_Class : SubClass MassMeasure ConstantQuantity ; + + -- The OrganizationalProcess of joining an + -- EducationalOrganization as a student. + fun Matriculation : Class ; + fun Matriculation_Class : SubClass Matriculation JoiningAnOrganization ; + + -- (MaxFn ?NUMBER1 ?NUMBER2) is the largest of + -- ?NUMBER1 and ?NUMBER2. In cases where ?NUMBER1 is equal to ?NUMBER2, + -- MaxFn returns one of its arguments. + fun MaxFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- This BinaryFunction assigns two + -- GraphNodes to the GraphPath with the largest sum of weighted arcs + -- between the two GraphNodes. + fun MaximalWeightedPathFn : El GraphNode -> El GraphNode -> Ind GraphPath ; + + -- The Class of all Months which are May. + fun May : Class ; + fun May_Class : SubClass May Month ; + + -- This BinaryFunction maps a + -- RealNumber and a UnitOfMeasure to that Number of units. It is + -- used to express `measured' instances of PhysicalQuantity. Example: + -- the concept of three meters is represented as (MeasureFn 3 + -- Meter). + fun MeasureFn : El RealNumber -> El UnitOfMeasure -> Ind PhysicalQuantity ; + + -- The Class of Calculating Processes where + -- the aim is to determine the PhysicalQuantity of some aspect of the patient. + fun Measuring : Class ; + fun Measuring_Class : SubClass Measuring Calculating ; + + -- Any Device whose purpose is to measure a + -- PhysicalQuantity. + fun MeasuringDevice : Class ; + fun MeasuringDevice_Class : SubClass MeasuringDevice Device ; + + -- Any Food which was originally part of an + -- Animal and is not ingested by drinking, including eggs and animal + -- blood that is eaten as food. Note that this class covers both raw + -- meat and meat that has been prepared in some way, e.g. by cooking. + -- Note too that preparations involving Meat and FruitOrVegetable + -- are classed directly under Food. + fun Meat : Class ; + fun Meat_Class : SubClass Meat Food ; + + -- The coming together of two or more + -- CognitiveAgents for the purpose of Communication. This covers informal + -- meetings, e.g. visits with family members, and formal meetings, e.g. a board + -- of directors meeting. + fun Meeting : Class ; + fun Meeting_Class : SubClass Meeting SocialInteraction ; + + -- One MegaByte (MB) of information. One + -- MegaByte is 1024 KiloBytes. Note that this sense of 'mega' is + -- different from the one accepted in the SI system. + fun MegaByte : Ind UnitOfInformation ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to 1,000,000 units of the original + -- UnitOfMeasure. For example, (MegaFn Hertz) is 1,000,000 Hertz. + fun MegaFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- The Class of Processes where an Object is + -- heated and converted from a Solid to a Liquid. + fun Melting : Class ; + fun Melting_Class : SubClass Melting StateChange ; + + -- Any Corporation which sells + -- goods or services to customers for a profit. + fun MercantileOrganization : Class ; + fun MercantileOrganization_Class : SubClass MercantileOrganization Corporation ; + + -- (MereologicalDifferenceFn ?OBJ1 ?OBJ2) + -- denotes the Object consisting of the parts which belong to ?OBJ1 + -- and not to ?OBJ2. + fun MereologicalDifferenceFn : El Object -> El Object -> Ind Object ; + + -- (MereologicalProductFn ?OBJ1 ?OBJ2) + -- denotes the Object consisting of the parts which belong to both ?OBJ1 + -- and ?OBJ2. + fun MereologicalProductFn : El Object -> El Object -> Ind Object ; + + -- (MereologicalSumFn ?OBJ1 ?OBJ2) + -- denotes the Object consisting of the parts which belong to either + -- ?OBJ1 or ?OBJ2. + fun MereologicalSumFn : El Object -> El Object -> Ind Object ; + + -- A Metal is an ElementalSubstance that conducts heat + -- and electricity, is shiny and reflects many colors of light, and can be hammered + -- into sheets or drawn into wire. About 80% of the known chemical elements + -- (ElementalSubstances) are metals. + fun Metal : Class ; + fun Metal_Class : SubClass Metal ElementalSubstance ; + + -- SI UnitOfLength. Symbol: m. It is one of the + -- base units in SI, and it is currently defined as follows: the Meter + -- is the length of the path traveled by light in a vacuum during a time + -- interval of 1/299792458 of a SecondDuration. + fun Meter : Ind UnitOfLength ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to .000001 units of the original UnitOfMeasure. + -- For example, (MicroFn Meter) is .000001 Meters. + fun MicroFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- An Organism that can be seen only with the aid of a microscope. + fun Microorganism : Class ; + fun Microorganism_Class : SubClass Microorganism Organism ; + + -- English length unit of miles. + fun Mile : Ind UnitOfLength ; + + -- MilitaryForce is the subclass of + -- Organizations that are organized along military lines and for the + -- purpose of either defensive or offensive combat, whether or not + -- the force is an official GovernmentOrganization. + fun MilitaryForce : Class ; + fun MilitaryForce_Class : SubClass MilitaryForce PoliticalOrganization ; + + -- Any heavily armed Organization + -- that is part of a Government and that is charged with representing the + -- Government in international conflicts. + fun MilitaryOrganization : Class ; + fun MilitaryOrganization_Class : SubClass MilitaryOrganization (both GovernmentOrganization MilitaryForce) ; + + -- Any Process that is carried out by a + -- military organization. Note that this class covers Processes, e.g. + -- military operations, that are the result of careful planning, as well as + -- those which are unscripted. + fun MilitaryProcess : Class ; + fun MilitaryProcess_Class : SubClass MilitaryProcess PoliticalProcess ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to .001 units of the original UnitOfMeasure. + -- For example, (MilliFn Gram) is .001 Grams. + fun MilliFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- Submultiple of Meter. Symbol: mm. A millimeter + -- is the 1000th part of a meter + fun Millimeter : Ind UnitOfLength ; + + -- (MinFn ?NUMBER1 ?NUMBER2) is the smallest of + -- ?NUMBER1 and ?NUMBER2. In cases where ?NUMBER1 is equal to ?NUMBER2, + -- MinFn returns one of its arguments. + fun MinFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- Any of various naturally occurring homogeneous + -- substances (such as stone, coal, salt, sulfur, sand, petroleum), or + -- synthetic substances having the chemical composition and crystalline form + -- and properties of a naturally occurring mineral. + fun Mineral : Class ; + fun Mineral_Class : SubClass Mineral Substance ; + + -- A UnaryFunction that assigns a Graph + -- the Class of GraphPaths which comprise cutsets for the Graph and + -- which have the least number of GraphArcs. + fun MinimalCutSetFn : El Graph -> Desc GraphPath ; + + -- This BinaryFunction assigns two + -- GraphNodes to the GraphPath with the smallest sum of weighted arcs + -- between the two GraphNodes. + fun MinimalWeightedPathFn : El GraphNode -> El GraphNode -> Ind GraphPath ; + + -- The Class of all clock Minutes. + fun Minute : Class ; + fun Minute_Class : SubClass Minute TimeInterval ; + + -- Time unit. 1 minute = 60 seconds. + fun MinuteDuration : Ind UnitOfDuration ; + + -- A BinaryFunction that assigns a PositiveRealNumber and + -- a subclass of Hours to the Minutes within each Hour corresponding to that + -- NonnegativeInteger. For example, (MinuteFn 30 (HourFn 17 Day)) is the Class + -- of all 5:30's in the afternoon. For another example, (MinuteFn 15 Hour) would return + -- the class of all instances of quarter past the hour. For still another example, + -- (MinuteFn 15 (HourFn 14 (DayFn 18 (MonthFn August (YearFn 1912))))) denotes + -- 15 minutes after 2 PM on the 18th day of August 1912. + fun MinuteFn : El NonnegativeInteger -> Desc Hour -> Desc Minute ; + + -- A Mixture is two or more PureSubstances, + -- combined in varying proportions _ each retaining its own specific properties. + -- The components of a Mixture can be separated by physical means, i.e. without + -- the making and breaking of chemical bonds. Examples: Air, table salt thoroughly + -- dissolved in water, milk, wood, and concrete. + fun Mixture : Class ; + fun Mixture_Class : SubClass Mixture Substance ; + + -- MmMercury is a UnitOfMeasure + -- for barometricPressure. It is used to express the number + -- of millimeters of mercury supported in a mercurial barometer + -- by the surrounding air pressure. + fun MmMercury : Ind UnitOfAtmosphericPressure ; + + -- SI amount of substance + -- unit. symbol: mol. It is one of the base units in SI. It is defined as + -- follows: the Mole is the amount of substance of a system which + -- contains as many elementary entities as there are atoms in 0.012 + -- Kilograms of carbon 12. Note that, when this UnitOfMeasure is + -- used, the elementary entities must be specified _ they may be atoms, + -- molecules, ions, electrons, etc. or groups of such particles. + fun Mole : Ind UnitOfMass ; + + -- A molecule is the smallest unit of matter of a + -- CompoundSubstance that retains all the physical and chemical properties + -- of that substance, e.g., Ne, H2, H2O. A molecule is two or more Atoms + -- linked by a chemical bond. + fun Molecule : Class ; + fun Molecule_Class : SubClass Molecule CompoundSubstance ; + + -- Soft_bodied Invertebrate that is usually + -- contained in a shell. Includes oysters, clams, mussels, snails, slugs, + -- octopi, and squid. + fun Mollusk : Class ; + fun Mollusk_Class : SubClass Mollusk Invertebrate ; + + -- The Class of all calendar Mondays. + fun Monday : Class ; + fun Monday_Class : SubClass Monday Day ; + + -- Various Primates with relatively long + -- tails. + fun Monkey : Class ; + fun Monkey_Class : SubClass Monkey Primate ; + + -- An Object with this Attribute has + -- the same color on every part of its surface. + fun Monochromatic : Ind ColorAttribute ; + + -- The Class of all calendar Months. + fun Month : Class ; + fun Month_Class : SubClass Month TimeInterval ; + + -- Time unit. A month's duration is at least + -- 28 days, and no more than 31 days. Note that this unit is a range, rather + -- than an exact amount, unlike most other units. + fun MonthDuration : Ind UnitOfDuration ; + + -- A BinaryFunction that maps a subclass of Month and a + -- subclass of Year to the class containing the Months corresponding to thos Years. + -- For example (MonthFn January (YearFn 1912)) is the class containing the eighth + -- Month, i.e. August, of the Year 1912. For another example, (MonthFn August + -- Year) is equal to August, the class of all months of August. Note that this function + -- returns a Class as a value. The reason for this is that the related functions, viz. + -- DayFn, HourFn, MinuteFn, and SecondFn, are used to generate both specific TimeIntervals + -- and recurrent intervals, and the only way to do this is to make the domains and ranges of + -- these functions classes rather than individuals. + fun MonthFn : Desc Month -> Desc Year -> Desc Month ; + + -- Part of a Word which cannot be subdivided + -- and which expresses a meaning. + fun Morpheme : Class ; + fun Morpheme_Class : SubClass Morpheme LinguisticExpression ; + + -- A NonFloweringPlant without true roots and little + -- if any vascular tissue. + fun Moss : Class ; + fun Moss_Class : SubClass Moss NonFloweringPlant ; + + -- Any Process of movement. + fun Motion : Class ; + fun Motion_Class : SubClass Motion Process ; + + -- Motion where an Object is moving toward the + -- ground. + fun MotionDownward : Class ; + fun MotionDownward_Class : SubClass MotionDownward Motion ; + + -- A ContentBearingObject which depicts motion + -- (and which may have an audio or text component as well). This Class covers + -- films, videos, etc. + fun MotionPicture : Class ; + fun MotionPicture_Class : SubClass MotionPicture Text ; + + -- Motion where an Object is moving away from the ground. + fun MotionUpward : Class ; + fun MotionUpward_Class : SubClass MotionUpward Motion ; + + -- A TimeZone that covers much of the + -- Rocky Mountain region of the United States. + fun MountainTimeZone : Ind TimeZone ; + + -- The Class of multigraphs. A multigraph + -- is a Graph containing at least one pair of GraphNodes that are + -- connected by more than one GraphArc. + fun MultiGraph : Class ; + fun MultiGraph_Class : SubClass MultiGraph Graph ; + + -- If ?NUMBER1 and ?NUMBER2 are Numbers, + -- then (MultiplicationFn ?NUMBER1 ?NUMBER2) is the arithmetical product + -- of these numbers. + fun MultiplicationFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- Nonrigid Tissue appearing only in Animals and + -- composed largely of contractile cells. + fun Muscle : Class ; + fun Muscle_Class : SubClass Muscle (both AnimalSubstance Tissue) ; + + -- The subclass of RadiatingSound where the + -- sound is intended to be melodic and is produced deliberately. + fun Music : Class ; + fun Music_Class : SubClass Music RadiatingSound ; + + -- A Device which is manipulated by a Human + -- and whose purpose is to produce Music. + fun MusicalInstrument : Class ; + fun MusicalInstrument_Class : SubClass MusicalInstrument Device ; + + -- A SetOrClass is a MutuallyDisjointClass + -- just in case there exists nothing which is an instance of all of the instances of + -- the original SetOrClass. + fun MutuallyDisjointClass : Class ; + fun MutuallyDisjointClass_Class : SubClass MutuallyDisjointClass SetOrClass ; + + -- A Class of Arthropods that includes + -- centipedes and millipedes. + fun Myriapod : Class ; + fun Myriapod_Class : SubClass Myriapod Arthropod ; + + -- A Promise where nothing is promised in return, + -- i.e. a nudum pactum. + fun NakedPromise : Ind DeonticAttribute ; + + -- The Process of assigning a name to someone or something. + fun Naming : Class ; + fun Naming_Class : SubClass Naming Declaring ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to .000000001 units of the original + -- UnitOfMeasure. For example, (MicroFn SecondDuration) is .000000001 + -- SecondDurations. + fun NanoFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- The broadest GeopoliticalArea, i.e. Nations are + -- GeopoliticalAreas that are not part of any other overarching and + -- comprehensive governance structure (excepting commonwealths and other sorts + -- of loose international organizations). + fun Nation : Class ; + fun Nation_Class : SubClass Nation (both GeopoliticalArea LandArea) ; + + -- The subclass of HumanLanguages which + -- are not designed and which evolve from generation to generation. This + -- Class includes all of the national languages, e.g. English, Spanish, + -- Japanese, etc. Note that this class includes dialects of natural + -- languages. + fun NaturalLanguage : Class ; + fun NaturalLanguage_Class : SubClass NaturalLanguage HumanLanguage ; + + -- A Process that take place in nature + -- spontanously. + fun NaturalProcess : Class ; + fun NaturalProcess_Class : SubClass NaturalProcess Process ; + + -- Any Substance that is not the result of + -- an IntentionalProcess, i.e. any substance that occurs naturally. + fun NaturalSubstance : Class ; + fun NaturalSubstance_Class : SubClass NaturalSubstance Substance ; + + -- The relation of common sense adjacency. Note that, if + -- an object is Near another object, then the objects are not connected. + fun Near : Ind SymmetricPositionalAttribute ; + + -- Attribute that applies to Propositions that are + -- necessary, i.e. true in every possible world. + fun Necessity : Ind AlethicAttribute ; + + -- The TimePoint that is before all other TimePoints. + fun NegativeInfinity : Ind TimePoint ; + + -- An Integer that is less than zero. + fun NegativeInteger : Class ; + fun NegativeInteger_Class : SubClass NegativeInteger (both Integer NegativeRealNumber) ; + + -- A RealNumber that is less than zero. + fun NegativeRealNumber : Class ; + fun NegativeRealNumber_RealNumber : SubClassC NegativeRealNumber RealNumber + (\NUMBER -> lessThan (var RealNumber Quantity ? NUMBER) + (el Integer Quantity ? (toInt 0))); + + -- A system in Vertebrates that is made up of + -- the Brain, the spinal cord, nerves, etc. + fun NervousSystem : Class ; + fun NervousSystem_Class : SubClass NervousSystem (both AnimalAnatomicalStructure Organ) ; + + -- Components of the AtomicNucleus. They have no charge. + fun Neutron : Class ; + fun Neutron_Class : SubClass Neutron SubatomicParticle ; + + -- SI force measure. Symbol: N. It is that force + -- which gives to a mass of 1 kilogram an acceleration of 1 Meter per + -- SecondDuration. Newton = m*kg*s^(_2). + fun Newton : Ind CompositeUnitOfMeasure ; + + -- Instances of + -- this Class are UnitsOfMeasure that are applied to a single + -- dimension, and so are not intrinsically defined by the functional + -- composition of other units. + fun NonCompositeUnitOfMeasure : Class ; + fun NonCompositeUnitOfMeasure_Class : SubClass NonCompositeUnitOfMeasure UnitOfMeasure ; + + -- A Plant that reproduces with spores and + -- does not produce flowers. + fun NonFloweringPlant : Class ; + fun NonFloweringPlant_Class : SubClass NonFloweringPlant Plant ; + + -- The stage of an Organism before it is FullyFormed. + fun NonFullyFormed : Ind DevelopmentalAttribute ; + + -- Any SetOrClass that contains at least one instance. + fun NonNullSet : Class ; + fun NonNullSet_Class : SubClass NonNullSet SetOrClass ; + + -- An Integer that is greater than or equal to zero. + fun NonnegativeInteger : Class ; + fun NonnegativeInteger_Class : SubClass NonnegativeInteger (both Integer NonnegativeRealNumber) ; + + -- A RealNumber that is greater than or equal to zero. + fun NonnegativeRealNumber : Class ; + fun NonnegativeRealNumber_RealNumber : SubClassC NonnegativeRealNumber RealNumber (\NUMBER -> greaterThanOrEqualTo(var RealNumber Quantity ? NUMBER)(el Integer Quantity ? (toInt 0))); + + -- A Class containing all of the + -- Attributes that are specific to morality, legality, aesthetics, + -- etiquette, etc. Many of these attributes express a judgement that + -- something ought or ought not to be the case. + fun NormativeAttribute : Class ; + fun NormativeAttribute_Class : SubClass NormativeAttribute RelationalAttribute ; + + -- The compass direction of North. + fun North : Ind DirectionalAttribute ; + + -- One of the parts of speech. The Class of Words + -- that conventionally denote Objects. + fun Noun : Class ; + fun Noun_Class : SubClass Noun Word ; + + -- A Phrase that has the same function as a Noun. + fun NounPhrase : Class ; + fun NounPhrase_Class : SubClass NounPhrase Phrase ; + + -- The Class of all Months which are November. + fun November : Class ; + fun November_Class : SubClass November Month ; + + -- The List that has no items. The uniqueness of + -- NullList follows from the extensionality of Lists, i.e. the fact that + -- two Lists with the same items in the same order are identical. + fun NullList : Ind List ; + + -- Any SetOrClass that contains no instances. + fun NullSet : Class ; + fun NullSet_Class : SubClass NullSet SetOrClass ; + + -- A measure of how many things there are, or how + -- much there is, of a certain kind. Numbers are subclassed into + -- RealNumber, ComplexNumber, and ImaginaryNumber. + fun Number : Class ; + fun Number_Class : SubClass Number Quantity ; + + -- NumberE is the RealNumber that is the base for + -- natural logarithms. It is approximately equal to 2.718282. + fun NumberE : Ind PositiveRealNumber ; + + -- (NumeratorFn ?NUMBER) returns the numerator + -- of the canonical reduced form ?NUMBER. + fun NumeratorFn : El RealNumber -> Ind Integer ; + + -- A BiologicallyActiveSubstance required by an Organism. + -- It is generally ingested as Food, and it is of primary interest because of its role + -- in the biologic functioning of the Organism. + fun Nutrient : Class ; + fun Nutrient_Class : SubClass Nutrient BiologicallyActiveSubstance ; + + -- Corresponds roughly to the class of ordinary + -- objects. Examples include normal physical objects, geographical regions, + -- and locations of Processes, the complement of Objects in the Physical + -- class. In a 4D ontology, an Object is something whose spatiotemporal + -- extent is thought of as dividing into spatial parts roughly parallel to the + -- time_axis. + fun Object : Class ; + fun Object_Class : SubClass Object Physical ; + + -- The Class of NormativeAttributes that are + -- associated with an objective criterion for their attribution, i.e. there is + -- broad consensus about the cases where these attributes are applicable. + fun ObjectiveNorm : Class ; + fun ObjectiveNorm_Class : SubClass ObjectiveNorm NormativeAttribute ; + + -- Attribute that applies to Propositions that an + -- Agent is required, by some authority, to make true. + fun Obligation : Ind DeonticAttribute ; + + -- The Class of all Months which are October. + fun October : Class ; + fun October_Class : SubClass October Month ; + + -- An Integer that is not evenly divisible by 2. + fun OddInteger : Class ; + fun OddInteger_Class : SubClass OddInteger Integer ; + + -- The subclass of Committing in which a + -- CognitiveAgent offers something Physical to another agent. Offerings + -- may be unconditional (in which case they are a promise to effect a + -- UnilateralGiving) or conditional (in which case they are a promise to + -- effect a Transaction of some sort). + fun Offering : Class ; + fun Offering_Class : SubClass Offering Committing ; + + -- SI electric resistance measure. It is the electric + -- resistance between two points of a conductor when a constant difference + -- of potential of 1 Volt, applied between these two points, + -- produces in this conductor a current of 1 Ampere, this conductor not + -- being the force of any electromotive force. Ohm = V/A = + -- m^2*kg*s^(_3)*A^(_2). + fun Ohm : Ind CompositeUnitOfMeasure ; + + -- The Class of properties that are + -- detectable by smell. + fun OlfactoryAttribute : Class ; + fun OlfactoryAttribute_Class : SubClass OlfactoryAttribute PerceptualAttribute ; + + -- This is used to assert that an object is on top of + -- another object, and it is derived from the up/down schema and involves + -- contact. + fun On : Ind AntiSymmetricPositionalAttribute ; + + -- The class of GeometricFigures that + -- have position and an extension along a single dimension, viz. straight lines. + fun OneDimensionalFigure : Class ; + fun OneDimensionalFigure_Class : SubClass OneDimensionalFigure GeometricFigure ; + + -- The class of TwoDimensionalFigures that + -- are not ClosedTwoDimensionalFigures. + fun OpenTwoDimensionalFigure : Class ; + fun OpenTwoDimensionalFigure_Class : SubClass OpenTwoDimensionalFigure TwoDimensionalFigure ; + + -- A Directing in which the receiver is + -- commanded to realize the content of a ContentBearingObject. Orders + -- are injunctions, the disobedience of which involves sanctions, or + -- which express an obligation upon the part of the orderee. + fun Ordering : Class ; + fun Ordering_Class : SubClass Ordering Directing ; + + -- A somewhat independent BodyPart that performs a + -- specialized function. Note that this functional definition covers bodily + -- systems, e.g. the digestive system or the central nervous system. + fun Organ : Class ; + fun Organ_Class : SubClass Organ BodyPart ; + + -- A PhysiologicProcess of a + -- particular Organ or Tissue. + fun OrganOrTissueProcess : Class ; + fun OrganOrTissueProcess_Class : SubClass OrganOrTissueProcess AutonomicProcess ; + + -- This class encompasses Organisms, + -- CorpuscularObjects that are parts of Organisms, i.e. BodyParts, + -- and CorpuscularObjects that are nonintentionally produced by + -- Organisms, e.g. ReproductiveBodies. + fun OrganicObject : Class ; + fun OrganicObject_Class : SubClass OrganicObject CorpuscularObject ; + + -- Generally, a living individual, including all + -- Plants and Animals. + fun Organism : Class ; + fun Organism_Class : SubClass Organism (both Agent OrganicObject) ; + + -- A physiologic function of the + -- Organism as a whole, of multiple organ systems or of multiple + -- Organs or Tissues. + fun OrganismProcess : Class ; + fun OrganismProcess_Class : SubClass OrganismProcess PhysiologicProcess ; + + -- An Organization is a corporate or similar + -- institution. The members of an Organization typically have a common + -- purpose or function. Note that this class also covers divisions, departments, + -- etc. of organizations. For example, both the Shell Corporation and the + -- accounting department at Shell would both be instances of Organization. + -- Note too that the existence of an Organization is dependent on the existence + -- of at least one member (since Organization is a subclass of Collection). + -- Accordingly, in cases of purely legal organizations, a fictitious member + -- should be assumed. + fun Organization : Class ; + fun Organization_Class : SubClass Organization (both CognitiveAgent Group) ; + + -- An IntentionalProcess that involves an Organization. + fun OrganizationalProcess : Class ; + fun OrganizationalProcess_Class : SubClass OrganizationalProcess IntentionalProcess ; + + -- English unit of volume equal to 1/8 of a Cup. + fun Ounce : Ind UnitOfVolume ; + + -- The class of ClosedTwoDimensionalFigures that are + -- produced by the intersection of a Cone with a ClosedTwoDimensionalFigure. + fun Oval : Class ; + fun Oval_Class : SubClass Oval ClosedTwoDimensionalFigure ; + + -- A TimeZone that covers much of the + -- western part of the United States. + fun PacificTimeZone : Ind TimeZone ; + + -- A SetOrClass is a PairwiseDisjointClass + -- just in case every instance of the SetOrClass is either equal to or disjoint + -- from every other instance of the SetOrClass. + fun PairwiseDisjointClass : Class ; + fun PairwiseDisjointClass_Class : SubClass PairwiseDisjointClass SetOrClass ; + + -- An Organization which is much like + -- a MilitaryOrganization, e.g. it is made up of armed fighters, except that it + -- is not associated with a Government. + fun ParamilitaryOrganization : Class ; + fun ParamilitaryOrganization_Class : SubClass ParamilitaryOrganization MilitaryForce ; + + -- An umbrella Class for any Word that does not + -- fit into the other subclasses of Word. A ParticleWord is generally a small + -- term that serves a grammatical or logical function, e.g. 'and', 'of', + -- 'since', etc. At some point, this class might be broken up into the + -- subclasses 'Connective', 'Preposition', etc. Note that the class ParticleWord + -- includes both personal and possessive pronouns, e.g. 'she', 'hers', 'it', 'its', + -- etc. + fun ParticleWord : Class ; + fun ParticleWord_Class : SubClass ParticleWord Word ; + + -- SI pressure measure. Symbol:Pa. It is the + -- pressure of one Newton per square Meter. Pascal = N/m^2 + -- = m^(_1)*kg*s^(_2). + fun Pascal : Ind CompositeUnitOfMeasure ; + + -- A UnaryFunction that maps a TimePosition + -- to the TimeInterval that meets it and that begins at + -- NegativeInfinity. + fun PastFn : El TimePosition -> Ind TimeInterval ; + + -- A Certificate that expresses the content of an + -- invention that has been accorded legal protection by a governemental + -- entity. + fun Patent : Class ; + fun Patent_Class : SubClass Patent Certificate ; + + -- A UnaryFunction that maps a GraphPath to + -- the sum of the arcWeights on the GraphArcs in the GraphPath. + fun PathWeightFn : El GraphPath -> Ind Quantity ; + + -- A disordered process, activity, or + -- state of the Organism as a whole, of a body system or systems, or of + -- multiple Organs or Tissues. Included here are normal responses to a + -- negative stimulus as well as patholologic conditions or states that are + -- less specific than a disease. Pathologic functions frequently have + -- systemic effects. + fun PathologicProcess : Class ; + fun PathologicProcess_Class : SubClass PathologicProcess BiologicalProcess ; + + -- PerFn maps two instances of PhysicalQuantity to + -- the FunctionQuantity composed of these two instances. For example, + -- (PerFn (MeasureFn 2 (MicroFn Gram)) (MeasureFn 1 (KiloFn + -- Gram))) denotes the FunctionQuantity of 2 micrograms per kiogram. + -- This function is useful, because it allows the knowledge engineer to + -- dynamically generate instances of FunctionQuantity. + fun PerFn : El PhysicalQuantity -> El PhysicalQuantity -> Ind FunctionQuantity ; + + -- Sensing some aspect of the material world. + -- Note that the agent of this sensing is assumed to be an Animal. + fun Perception : Class ; + fun Perception_Class : SubClass Perception PsychologicalProcess ; + + -- Any Attribute whose presence is detected + -- by an act of Perception. + fun PerceptualAttribute : Class ; + fun PerceptualAttribute_Class : SubClass PerceptualAttribute InternalAttribute ; + + -- A Series whose elements are published separately + -- and on a periodic basis. + fun Periodical : Class ; + fun Periodical_Class : SubClass Periodical Series ; + + -- A BinaryFunction that maps a subclass of + -- Periodical and a number to all of the issues of the Periodical corresponding + -- to the number. + fun PeriodicalIssueFn : Desc Periodical -> El PositiveInteger -> Desc Periodical ; + + -- A Residence where people live, i.e. + -- where people have a home. + fun PermanentResidence : Class ; + fun PermanentResidence_Class : SubClass PermanentResidence Residence ; + + -- Attribute that applies to Propositions that an + -- Agent is permitted, by some authority, to make true. + fun Permission : Ind DeonticAttribute ; + + -- A set of Words in a Language which form a unit, + -- i.e. express a meaning in the Language. + fun Phrase : Class ; + fun Phrase_Class : SubClass Phrase LinguisticExpression ; + + -- An entity that has a location in space_time. + -- Note that locations are themselves understood to have a location in + -- space_time. + fun Physical : Class ; + fun Physical_Class : SubClass Physical Entity ; + + -- An InternalAttribute given by physical + -- properties of the object. + fun PhysicalAttribute : Class ; + fun PhysicalAttribute_Class : SubClass PhysicalAttribute InternalAttribute ; + + -- A PhysicalQuantity is a measure of + -- some quantifiable aspect of the modeled world, such as 'the earth's + -- diameter' (a constant length) and 'the stress in a loaded deformable + -- solid' (a measure of stress, which is a function of three spatial + -- coordinates). Every PhysicalQuantity is either a ConstantQuantity + -- or FunctionQuantity. Instances of ConstantQuantity are dependent + -- on a UnitOfMeasure, while instances of FunctionQuantity are + -- Functions that map instances of ConstantQuantity to other instances + -- of ConstantQuantity (e.g., a TimeDependentQuantity is a + -- FunctionQuantity). Although the name and definition of + -- PhysicalQuantity is borrowed from physics, a PhysicalQuantity need + -- not be material. Aside from the dimensions of length, time, velocity, + -- etc., nonphysical dimensions such as currency are also possible. + -- Accordingly, amounts of money would be instances of PhysicalQuantity. + -- A PhysicalQuantity is distinguished from a pure Number by the fact that + -- the former is associated with a dimension of measurement. + fun PhysicalQuantity : Class ; + fun PhysicalQuantity_Class : SubClass PhysicalQuantity Quantity ; + + -- The physical state of an Object. There + -- are three reified instances of this Class: Solid, Liquid, and Gas. + -- Physical changes are not characterized by the transformation of one + -- substance into another, but rather by the change of the form (physical + -- states) of a given substance. For example, melting an iron nail yields a + -- substance still called iron. + fun PhysicalState : Class ; + fun PhysicalState_Class : SubClass PhysicalState InternalAttribute ; + + -- PhysicalSystem is the class of complex + -- Physical things. A PhysicalSystem may have one or more + -- corresponding abstract Graph representations. + fun PhysicalSystem : Class ; + fun PhysicalSystem_Class : SubClass PhysicalSystem Physical ; + + -- A normal process of an Organism + -- or part of an Organism. + fun PhysiologicProcess : Class ; + fun PhysiologicProcess_Class : SubClass PhysiologicProcess BiologicalProcess ; + + -- Pi is the RealNumber that + -- is the ratio of the perimeter of a circle to its diameter. It is + -- approximately equal to 3.141592653589793. + fun Pi : Ind PositiveRealNumber ; + + -- A UnaryFunction that maps a UnitOfMeasure into + -- a UnitOfMeasure that is equal to .000000000001 units of the original + -- UnitOfMeasure. For example, (PicoFn SecondDuration) is .000000000001 + -- SecondDurations. + fun PicoFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- English unit of volume equal to 1/2 of a + -- Quart. + fun Pint : Ind UnitOfVolume ; + + -- A specification of a sequence of Processes which + -- is intended to satisfy a specified purpose at some future time. + fun Plan : Class ; + fun Plan_Class : SubClass Plan Procedure ; + + -- The value of an angle in a plane. + fun PlaneAngleMeasure : Class ; + fun PlaneAngleMeasure_Class : SubClass PlaneAngleMeasure AngleMeasure ; + + -- Specifying a set of actions in order to meet a + -- set of goals or objectives. + fun Planning : Class ; + fun Planning_Class : SubClass Planning IntentionalPsychologicalProcess ; + + -- An Organism having cellulose cell walls, growing + -- by synthesis of Substances, generally distinguished by the presence of + -- chlorophyll, and lacking the power of locomotion. + fun Plant : Class ; + fun Plant_Organism : SubClassC Plant Organism (\PLANT -> and (forall PlantSubstance (\SUBSTANCE -> part(var PlantSubstance Object ? SUBSTANCE)(var Organism Object ? PLANT))) (forall PlantAnatomicalStructure (\STRUCTURE -> part(var PlantAnatomicalStructure Object ? STRUCTURE)(var Organism Object ? PLANT)))); + + -- AnatomicalStructures that + -- are possessed exclusively by Plants. + fun PlantAnatomicalStructure : Class ; + fun PlantAnatomicalStructure_Class : SubClass PlantAnatomicalStructure AnatomicalStructure ; + + -- BodySubstances that are produced + -- exclusively by Plants. + fun PlantSubstance : Class ; + fun PlantSubstance_Class : SubClass PlantSubstance BodySubstance ; + + -- An extremely energetic PhysicalState that consists + -- of atomic nuclei stripped of electrons. That is, a plasma is composed of + -- positive ions and free electrons. Plasma behaves differently enough from + -- Gas that it is referred to as the fourth state of matter. + fun Plasma : Ind PhysicalState ; + + -- The shape of an Object with this Attribute + -- can easily be altered. + fun Pliable : Ind InternalAttribute ; + + -- A Poisoning is caused by an external + -- substance. Since Poisoning is not possible without some biologic + -- function which affects the Organism being injured, it is a subclass + -- of BiologicalProcess. + fun Poisoning : Class ; + fun Poisoning_Class : SubClass Poisoning Injuring ; + + -- The Class of Processes where the agent + -- pierces the surface of the Object with an instrument. + fun Poking : Class ; + fun Poking_Class : SubClass Poking IntentionalProcess ; + + -- Any GovernmentOrganization + -- that is charged with domestic enforcement of the laws of the Government. + fun PoliceOrganization : Class ; + fun PoliceOrganization_Class : SubClass PoliceOrganization GovernmentOrganization ; + + -- An Organization that is attempting to bring about some sort + -- of political change. + fun PoliticalOrganization : Class ; + fun PoliticalOrganization_Class : SubClass PoliticalOrganization Organization ; + + -- An OrganizationalProcess carried + -- out by, for or against officially constituted governments. Some examples + -- would be voting on proposed legislation, electing a government representative, + -- or even overthrowing a government in a revolution. + fun PoliticalProcess : Class ; + fun PoliticalProcess_Class : SubClass PoliticalProcess OrganizationalProcess ; + + -- A powder produced by FloweringPlants that contains male + -- gametes and is capable of fertilizing the seeds of FloweringPlants of the same + -- species. + fun Pollen : Class ; + fun Pollen_Class : SubClass Pollen (both PlantAnatomicalStructure ReproductiveBody) ; + + -- An Object with this Attribute has + -- different colors on different parts of its surface. + fun Polychromatic : Ind ColorAttribute ; + + -- A formal position of reponsibility within an + -- Organization. Examples of Positions include president, laboratory + -- director, senior researcher, sales representative, etc. + fun Position : Class ; + fun Position_Class : SubClass Position SocialRole ; + + -- Attributes characterizing the + -- orientation of an Object, e.g. Vertical versus Horizontal, Left + -- versus Right etc. + fun PositionalAttribute : Class ; + fun PositionalAttribute_Class : SubClass PositionalAttribute RelationalAttribute ; + + -- The TimePoint that is after all other TimePoints. + fun PositiveInfinity : Ind TimePoint ; + + -- An Integer that is greater than zero. + fun PositiveInteger : Class ; + fun PositiveInteger_Class : SubClass PositiveInteger (both NonnegativeInteger PositiveRealNumber) ; + + -- A RealNumber that is greater than + -- zero. + fun PositiveRealNumber : Class ; + fun PositiveRealNumber_NonnegativeRealNumber : SubClassC PositiveRealNumber NonnegativeRealNumber (\NUMBER -> greaterThan(var NonnegativeRealNumber Quantity ? NUMBER)(el Integer Quantity ? (toInt 0))); + + -- Attribute that applies to Propositions that are + -- possible, i.e. true in at least one possible world. + fun Possibility : Ind AlethicAttribute ; + + -- English pound of force. The conversion + -- factor depends on the local value of the acceleration of free fall. A + -- mean value is used in the conversion axiom associated with this + -- constant. + fun PoundForce : Ind CompositeUnitOfMeasure ; + + -- English mass unit of pounds. + fun PoundMass : Ind UnitOfMass ; + + -- (PowerSetFn ?CLASS) maps the SetOrClass + -- ?CLASS to the SetOrClass of all subclasses of ?CLASS. + fun PowerSetFn : El SetOrClass -> Desc SetOrClass ; + + -- Precipitation is the process of + -- water molecules falling from the air to the ground, in either a + -- liquid or frozen state. + fun Precipitation : Class ; + fun Precipitation_Class : SubClass Precipitation (both Falling (both WaterMotion WeatherProcess)) ; + + -- A unary function that maps an Integer to + -- its predecessor, e.g. the predecessor of 5 is 4. + fun PredecessorFn : El Integer -> Ind Integer ; + + -- The Class of IntentionalPsychologicalProcesses + -- which involve the formulation of a Proposition about a state of affairs + -- which might be realized in the future. + fun Predicting : Class ; + fun Predicting_Class : SubClass Predicting IntentionalPsychologicalProcess ; + + -- (PremisesFn ?ARGUMENT) returns the complete + -- set of premises of the Argument ?ARGUMENT. + fun PremisesFn : El Argument -> Ind Proposition ; + + -- A Phrase that begins with a + -- preposition and that functions as an Adjective or an Adverb. + fun PrepositionalPhrase : Class ; + fun PrepositionalPhrase_Class : SubClass PrepositionalPhrase Phrase ; + + -- Any SocialInteraction where a + -- CognitiveAgent or Group of CognitiveAgents attempts to make + -- another CognitiveAgent or Group of CognitiveAgents believe + -- something that is false. This covers deceit, affectation, + -- impersonation, and entertainment productions, to give just a few + -- examples. + fun Pretending : Class ; + fun Pretending_Class : SubClass Pretending SocialInteraction ; + + -- Colors which can be blended to form any + -- color and which cannot be derived from any other colors. + fun PrimaryColor : Class ; + fun PrimaryColor_Class : SubClass PrimaryColor ColorAttribute ; + + -- The Class of Mammals which are + -- Primates. + fun Primate : Class ; + fun Primate_Class : SubClass Primate Mammal ; + + -- An Integer that is evenly divisible only + -- by itself and 1. + fun PrimeNumber : Class ; + fun PrimeNumber_Class : SubClass PrimeNumber Integer ; + + -- A class containing all of the Attributes + -- relating to objective, qualitative assessments of probability, e.g. Likely and + -- Unlikely. + fun ProbabilityAttribute : Class ; + fun ProbabilityAttribute_Class : SubClass ProbabilityAttribute ObjectiveNorm ; + + -- One of the basic ProbabilityRelations, + -- ProbabilityFn is used to state the a priori probability of a state of + -- affairs. (ProbabilityFn ?FORMULA) denotes the a priori probability + -- of ?FORMULA. + fun ProbabilityFn : Formula -> Ind RealNumber ; + + -- A sequence_dependent specification. Some + -- examples are ComputerPrograms, finite_state machines, cooking recipes, + -- musical scores, conference schedules, driving directions, and the scripts + -- of plays and movies. + fun Procedure : Class ; + fun Procedure_Class : SubClass Procedure Proposition ; + + -- The class of things that happen + -- and have temporal parts or stages. Examples include extended events + -- like a football match or a race, actions like Pursuing and Reading, + -- and biological processes. The formal definition is: anything that occurs in + -- time but is not an Object. Note that a Process may have + -- participants 'inside' it which are Objects, such as the players + -- in a football match. In a 4D ontology, a Process is something whose + -- spatiotemporal extent is thought of as dividing into temporal stages + -- roughly perpendicular to the time_axis. + fun Process : Class ; + fun Process_Class : SubClass Process Physical ; + + -- An Artifact that is produced by Manufacture. + fun Product : Class ; + fun Product_Class : SubClass Product Artifact ; + + -- Prohibition is the DeonticAttribute that + -- applies to Formulas that an Agent is forbidden, by some authority, + -- to make true. + fun Prohibition : Ind DeonticAttribute ; + + -- Attribute that applies to Propositions that + -- an Agent promises to make true. Promises may be implicit or explicit. + -- They may be expressed in a written or verbal or gestural manner. + fun Promise : Ind DeonticAttribute ; + + -- A UnaryFunction that maps an Agent to the + -- Set of Objects owned by the Agent. + fun PropertyFn : El Agent -> Ind Set ; + + -- Propositions are Abstract entities that + -- express a complete thought or a set of such thoughts. As an example, + -- the formula '(instance Yojo Cat)' expresses the Proposition that the + -- entity named Yojo is an element of the Class of Cats. Note that + -- propositions are not restricted to the content expressed by individual + -- sentences of a Language. They may encompass the content expressed by + -- theories, books, and even whole libraries. It is important to distinguish + -- Propositions from the ContentBearingObjects that express them. A + -- Proposition is a piece of information, e.g. that the cat is on the mat, + -- but a ContentBearingObject is an Object that represents this information. + -- A Proposition is an abstraction that may have multiple representations: + -- strings, sounds, icons, etc. For example, the Proposition that the cat is + -- on the mat is represented here as a string of graphical characters displayed + -- on a monitor and/or printed on paper, but it can be represented by a sequence + -- of sounds or by some non_latin alphabet or by some cryptographic form + fun Proposition : Class ; + fun Proposition_Class : SubClass Proposition Abstract ; + + -- The BodyPosition of lying down, being in a + -- horizontal position. + fun Prostrate : Ind BodyPosition ; + + -- A Nutrient made up of amino acids joined by + -- peptide bonds. + fun Protein : Class ; + fun Protein_Class : SubClass Protein Nutrient ; + + -- Components of the AtomicNucleus. They have a + -- positive charge. + fun Proton : Class ; + fun Proton_Class : SubClass Proton SubatomicParticle ; + + -- The Class of pseudographs. A pseudograph + -- is a Graph containing at least one GraphLoop. + fun PseudoGraph : Class ; + fun PseudoGraph_Class : SubClass PseudoGraph Graph ; + + -- Attributes that characterize the mental + -- or behavioral life of an Organism. + fun PsychologicalAttribute : Class ; + fun PsychologicalAttribute_Class : SubClass PsychologicalAttribute BiologicalAttribute ; + + -- A clinically significant + -- dysfunction whose major manifestation is behavioral or psychological. + -- These dysfunctions may have identified or presumed biological etiologies + -- or manifestations. + fun PsychologicalDysfunction : Class ; + fun PsychologicalDysfunction_Class : SubClass PsychologicalDysfunction (both DiseaseOrSyndrome PsychologicalAttribute) ; + + -- A BiologicalProcess which takes place in + -- the mind or brain of an Organism and which may be manifested in the behavior + -- of the Organism. + fun PsychologicalProcess : Class ; + fun PsychologicalProcess_Class : SubClass PsychologicalProcess BiologicalProcess ; + + -- The Manufacture of Texts. Note that + -- there is no implication that the Texts are distributed. Such + -- distribution, when it occurs, is an instance of Dissemination. + fun Publication : Class ; + fun Publication_Class : SubClass Publication (both ContentDevelopment Manufacture) ; + + -- A Contract between two Agents in + -- which one Agent agrees to render the other some good or service in + -- exchange for currency. + fun PurchaseContract : Ind DeonticAttribute ; + + -- The Class of Substances with constant + -- composition. A PureSubstance can be either an element (ElementalSubstance) + -- or a compound of elements (CompoundSubstance). Examples: Table salt + -- (sodium chloride, NaCl), sugar (sucrose, C_{12}H_{22}O_{11}), water (H_2O), + -- iron (Fe), copper (Cu), and oxygen (O_2). + fun PureSubstance : Class ; + fun PureSubstance_Class : SubClass PureSubstance Substance ; + + -- The class of IntentionalProcesses where something is + -- sought. Some examples would be hunting, shopping, trawling, and stalking. + fun Pursuing : Class ; + fun Pursuing_Class : SubClass Pursuing IntentionalProcess ; + + -- The Class of Processes where something is put + -- in a location. Note that the location is specified with the CaseRole + -- destination. + fun Putting : Class ; + fun Putting_Class : SubClass Putting Transfer ; + + -- Any specification of how many or how much of + -- something there is. Accordingly, there are two subclasses of Quantity: + -- Number (how many) and PhysicalQuantity (how much). + fun Quantity : Class ; + fun Quantity_Class : SubClass Quantity Abstract ; + + -- Any InternalChange where a PhysicalQuantity + -- associated with the patient is altered. + fun QuantityChange : Class ; + fun QuantityChange_Class : SubClass QuantityChange InternalChange ; + + -- English unit of volume equal to 1/4 of a + -- UnitedStatesGallon. + fun Quart : Ind UnitOfVolume ; + + -- A request for information. For example, John asked + -- Bill if the President had said anything about taxes in his State of the Union + -- address. + fun Questioning : Class ; + fun Questioning_Class : SubClass Questioning Directing ; + + -- SI plane angle measure. Symbol: rad. It is the + -- angle of a circle subtended by an arc equal in length to the circle's + -- radius. Another definition is: the plane angle between two radii of a + -- circle which cut off on the circumference an arc equal in length to the + -- radius. Radian = m/m = 1. + fun Radian : Ind UnitOfAngularMeasure ; + + -- Processes in which some form of electromagnetic + -- radiation, e.g. radio waves, light waves, electrical energy, etc., is given + -- off or absorbed by something else. + fun Radiating : Class ; + fun Radiating_Class : SubClass Radiating Motion ; + + -- RadiatingElectromagnetic + -- is the subclass of Radiating processes in which electromagnetic + -- radiation is transmitted or absorbed. + fun RadiatingElectromagnetic : Class ; + fun RadiatingElectromagnetic_Class : SubClass RadiatingElectromagnetic Radiating ; + + -- Any instance of Radiating where the + -- wavelengths are longer than those of visible light and shorter than those + -- of radio emissions. + fun RadiatingInfrared : Class ; + fun RadiatingInfrared_Class : SubClass RadiatingInfrared RadiatingElectromagnetic ; + + -- The subclass of Radiating in which + -- light is given off or absorbed. Some examples include blinking, flashing, + -- and glittering. + fun RadiatingLight : Class ; + fun RadiatingLight_Class : SubClass RadiatingLight RadiatingElectromagnetic ; + + -- Releasing atomic energy, i.e. energy from + -- a nuclear reaction. + fun RadiatingNuclear : Class ; + fun RadiatingNuclear_Class : SubClass RadiatingNuclear Radiating ; + + -- The subclass of Radiating in which + -- sound waves are given off or absorbed. Some examples include creaking, + -- roaring, and whistling. + fun RadiatingSound : Class ; + fun RadiatingSound_Class : SubClass RadiatingSound Radiating ; + + fun RadiatingXRay : Class ; + fun RadiatingXRay_Class : SubClass RadiatingXRay RadiatingElectromagnetic ; + + -- A TemperatureMeasure. Note that 0 RankineDegrees is + -- the same as the absolute zero (i.e. 0 KelvinDegrees). + fun RankineDegree : Ind UnitOfTemperature ; + + -- Any RealNumber that is the product of + -- dividing two Integers. + fun RationalNumber : Class ; + fun RationalNumber_Class : SubClass RationalNumber RealNumber ; + + -- (RationalNumberFn ?NUMBER) returns + -- the rational representation of ?NUMBER. + fun RationalNumberFn : El Number -> Ind RationalNumber ; + + -- A subclass of ContentDevelopment in which + -- content is converted from a written form into a spoken representation. + -- Note that the class Interpreting should be used in cases where a + -- Text is read silently. + fun Reading : Class ; + fun Reading_Class : SubClass Reading ContentDevelopment ; + + -- Any Number that can be expressed as a + -- (possibly infinite) decimal, i.e. any Number that has a position + -- on the number line. + fun RealNumber : Class ; + fun RealNumber_Class : SubClass RealNumber Number ; + + -- (RealNumberFn ?NUMBER) returns the part of + -- ?NUMBER that is a RealNumber. + fun RealNumberFn : El Number -> Ind RealNumber ; + + -- The Class of IntentionalPsychologicalProcesses + -- which involve concluding, on the basis of either deductive or inductive + -- evidence, that a particular Proposition or Sentence is true. + fun Reasoning : Class ; + fun Reasoning_Class : SubClass Reasoning IntentionalPsychologicalProcess ; + + -- (ReciprocalFn ?NUMBER) is the reciprocal + -- element of ?NUMBER with respect to the multiplication operator + -- (MultiplicationFn), i.e. 1/?NUMBER. Not all numbers have a reciprocal + -- element. For example the number 0 does not. If a number ?NUMBER has a + -- reciprocal ?RECIP, then the product of ?NUMBER and ?RECIP will be + -- 1, e.g. 3*1/3 = 1. The reciprocal of an element is equal to + -- applying the ExponentiationFn function to the element to the power + -- _1. + fun ReciprocalFn : El Quantity -> Ind Quantity ; + + -- A Process that is carried out for + -- the purpose of recreation or exercise. Since RecreationOrExercise is a + -- subclass of IntentionalProcess, the intent of a process determines whether + -- or not it is an instance of the class. Hence, if John and Bill watch the same + -- program on television, and John watches it to relax while Bill watches it solely + -- to satisfy an educational requirement, then John's watching the movie is an + -- instance of RecreationOrExercise, while Bill's is not (both cases of + -- watching the television program would however be in the class of Seeing, since + -- being an instance of this latter class is not determined by intention). + fun RecreationOrExercise : Class ; + fun RecreationOrExercise_Class : SubClass RecreationOrExercise IntentionalProcess ; + + -- A function that is useful for generating + -- recurring time intervals. For example, (RecurrentTimeIntervalFn (HourFn 6 Day) + -- (HourFn 12 Day)) returns the Class of TimeIntervals beginning at 6 in the + -- morning and ending at 12 noon. For another example, (RecurrentTimeInterval + -- Saturday Sunday) returns the Class of all weekends. For still another example, + -- (RecurrentTimeInterval June August) returns the Class containing the academic + -- summer period. + fun RecurrentTimeIntervalFn : Desc TimeInterval -> Desc TimeInterval -> Desc TimeInterval ; + + -- The Attribute of redness. + fun Red : Ind PrimaryColor ; + + -- A topographic location. Regions encompass + -- surfaces of Objects, imaginary places, and GeographicAreas. Note + -- that a Region is the only kind of Object which can be located at + -- itself. Note too that Region is not a subclass of SelfConnectedObject, + -- because some Regions, e.g. archipelagos, have parts which are not + -- connected with one another. + fun Region : Class ; + fun Region_Class : SubClass Region Object ; + + -- an Guiding whose aim is the enforcement + -- of rules or regulations. Note the key differences between RegulatoryProcess + -- and the related concept Managing. The latter implies a long_term relationship + -- between a single manager and limited number of agents who are managed, while the + -- former implies a normative standard to which the activities of the regulated are + -- referred. + fun RegulatoryProcess : Class ; + fun RegulatoryProcess_Class : SubClass RegulatoryProcess Guiding ; + + -- Any Attribute that an Entity has by + -- virtue of a relationship that it bears to another Entity or set of Entities, + -- e.g. SocialRoles and PositionalAttributes. + fun RelationalAttribute : Class ; + fun RelationalAttribute_Class : SubClass RelationalAttribute Attribute ; + + -- A BinaryFunction that maps two + -- SetOrClasses to the difference between these SetOrClasses. More + -- precisely, (RelativeComplementFn ?CLASS1 ?CLASS2) denotes the instances + -- of ?CLASS1 that are not also instances of ?CLASS2. + fun RelativeComplementFn : El SetOrClass -> El SetOrClass -> Ind SetOrClass ; + + -- A means of converting TimePositions + -- between different TimeZones. (RelativeTimeFn ?TIME ?ZONE) + -- denotes the TimePosition in CoordinatedUniversalTime that is + -- contemporaneous with the TimePosition ?TIME in TimeZone ?ZONE. + -- For example, (RelativeTimeFn (MeasureFn 14 HourDuration) EasternTimeZone) + -- would return the value (MeasureFn 19 HourDuration). + fun RelativeTimeFn : El TimePosition -> El TimeZone -> Ind TimePosition ; + + -- Any instance of Transfer which results in + -- a situation where it is not the case that the agent grasps something + -- which he/she grasps previously. + fun Releasing : Class ; + fun Releasing_Class : SubClass Releasing Transfer ; + + -- An Organization whose members + -- share a set of religious beliefs. + fun ReligiousOrganization : Class ; + fun ReligiousOrganization_Class : SubClass ReligiousOrganization (both BeliefGroup Organization) ; + + -- An OrganizationalProcess that is + -- carried out within or by a ReligiousOrganization. + fun ReligiousProcess : Class ; + fun ReligiousProcess_Class : SubClass ReligiousProcess OrganizationalProcess ; + + -- (RemainderFn ?NUMBER ?DIVISOR) is the + -- remainder of the number ?NUMBER divided by the number ?DIVISOR. + -- The result has the same sign as ?DIVISOR. + fun RemainderFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- The Class of PsychologicalProcesses which + -- involve the recollection of prior experiences and/or of knowledge + -- which was previously acquired. + fun Remembering : Class ; + fun Remembering_Class : SubClass Remembering PsychologicalProcess ; + + -- The Class of Processes where something is + -- taken away from a location. Note that the thing removed and the location + -- are specified with the CaseRoles patient and origin, respectively. + fun Removing : Class ; + fun Removing_Class : SubClass Removing Transfer ; + + -- The Class of Processes where the agent + -- makes a modification or series of modifications to an Object that is not + -- functioning as intended so that it works properly. + fun Repairing : Class ; + fun Repairing_Class : SubClass Repairing IntentionalProcess ; + + -- The Process of biological reproduction. + -- This can be either a sexual or an asexual process. + fun Replication : Class ; + fun Replication_Class : SubClass Replication OrganismProcess ; + + -- Any ArtWork that represents + -- something Physical. + fun RepresentationalArtWork : Class ; + fun RepresentationalArtWork_Class : SubClass RepresentationalArtWork (both ArtWork Icon) ; + + -- Reproductive structure of Organisms. + -- Consists of an Embryonic Object and a nutritive/protective envelope. + -- Note that this class includes seeds, spores, and FruitOrVegetables, as + -- well as the eggs produced by Animals. + fun ReproductiveBody : Class ; + fun ReproductiveBody_Class : SubClass ReproductiveBody BodyPart ; + + -- A ColdBloodedVertebrate having an external + -- covering of scales or horny plates. Reptiles breathe by means of + -- Lungs and generally lay eggs. + fun Reptile : Class ; + fun Reptile_Class : SubClass Reptile ColdBloodedVertebrate ; + + -- A request expresses a desire that some future + -- action be performed. For example, the 5th Battalion requested air support + -- from the 3rd Bomber Group. Note that this class covers proposals, + -- recommendations, suggestions, etc. + fun Requesting : Class ; + fun Requesting_Class : SubClass Requesting Directing ; + + -- A Building or part of a Building which provides + -- some accomodation for sleeping. + fun Residence : Class ; + fun Residence_Class : SubClass Residence StationaryArtifact ; + + -- A Building which provides some + -- accomodation for sleeping. Note that this class does not cover just + -- permanent residences, e.g. Houses and condominium and apartment buildings, + -- but also temporary residences, e.g. hotels and dormitories. + -- ResidentialBuildings are also distinguished from CommercialBuildings, + -- which are intended to serve an organizational rather than a residential + -- function. + fun ResidentialBuilding : Class ; + fun ResidentialBuilding_Class : SubClass ResidentialBuilding (both Building Residence) ; + + -- This PositionalAttribute is derived from the + -- left/right schema. Note that this means directly to the right, so that, + -- if one object is to the right of another, then the projections of the + -- two objects overlap. + fun Right : Ind AntiSymmetricPositionalAttribute ; + + -- The shape of an Object with this Attribute + -- cannot be altered without breaking. + fun Rigid : Ind InternalAttribute ; + + -- Roadway is the subclass of LandTransitways + -- that are areas intended for surface travel by self_powered, wheeled + -- vehicles, excluding those that travel on tracks. Roadways have been + -- at least minimally improved to enable the passage of vehicles. + -- Roadways include dirt and gravelled roads, paved streets, and + -- expressways. + fun Roadway : Class ; + fun Roadway_Class : SubClass Roadway LandTransitway ; + + -- The Class of Mammals with one or two pairs + -- of incisors for gnawing. Includes rats, mice, guinea pigs, and + -- rabbits. + fun Rodent : Class ; + fun Rodent_Class : SubClass Rodent Mammal ; + + -- A properPart of a Building which is separated from + -- the exterior of the Building and/or other Rooms of the Building by walls. + -- Some Rooms may have a specific purpose, e.g. sleeping, bathing, cooking, + -- entertainment, etc. + fun Room : Class ; + fun Room_Class : SubClass Room StationaryArtifact ; + + -- An Object with this Attribute has a rough + -- surface. + fun Rough : Ind TextureAttribute ; + + -- (RoundFn ?NUMBER) is the Integer closest + -- to ?NUMBER on the number line. If ?NUMBER is halfway between two + -- Integers (for example 3.5), it denotes the larger Integer. + fun RoundFn : El Quantity -> Ind Quantity ; + + -- Ambulating relatively quickly, i.e. moving in such a + -- way that, with each step, neither foot is in contact with the ground for a + -- period of time. + fun Running : Class ; + fun Running_Class : SubClass Running Ambulating ; + + -- A WaterArea whose Water is saline, e.g. + -- oceans and seas. + fun SaltWaterArea : Class ; + fun SaltWaterArea_Class : SubClass SaltWaterArea WaterArea ; + + -- A Class of Attributes that specify, in + -- a qualitative manner, the extent of the presence of one kind of Object in + -- another kind of Object. + fun SaturationAttribute : Class ; + fun SaturationAttribute_Class : SubClass SaturationAttribute InternalAttribute ; + + -- The Class of all calendar Saturdays. + fun Saturday : Class ; + fun Saturday_Class : SubClass Saturday Day ; + + -- The Class of all clock Seconds. + fun Second : Class ; + fun Second_Class : SubClass Second TimeInterval ; + + -- SI UnitOfDuration. Symbol: s. + -- It is one of the base units in SI, and it is currently defined as + -- follows: the SecondDuration is the duration of 9192631770 periods of + -- the radiation corresponding to the transition between the two hyperfine + -- levels of the ground state of the cesium 133 atom. + fun SecondDuration : Ind UnitOfDuration ; + + -- A BinaryFunction that assigns a PositiveRealNumber and a + -- subclass of Minutes to the Seconds within each Minute corresponding to that + -- PositiveRealNumber. For example, (SecondFn 4 (MinuteFn 5 Hour)) is the Class + -- of all fourth Seconds of every fifth Minute of every hour. For another example, + -- (SecondFn 8 Minute) would return the eighth second of every minute. For still + -- another example, + -- + -- (SecondFn 9 (MinuteFn 15 (HourFn 14 (DayFn 18 (MonthFn August (YearFn 1912)))))) + -- + -- denotes 9 seconds and 15 minutes after 2 PM on the 18th day of August 1912. + fun SecondFn : El PositiveRealNumber -> Desc Minute -> Desc Second ; + + -- The fertilized or unfertilized female ReproductiveBody + -- of a FloweringPlant. + fun Seed : Class ; + fun Seed_Class : SubClass Seed (both PlantAnatomicalStructure ReproductiveBody) ; + + -- The subclass of Perception in which the + -- sensing is done by an ocular Organ. + fun Seeing : Class ; + fun Seeing_Class : SubClass Seeing Perception ; + + -- The Class of IntentionalPsychologicalProcesses + -- which involve opting for one or more Entity out of a larger set of Entities. + -- Note that this covers all cases of judging or evaluating. + fun Selecting : Class ; + fun Selecting_Class : SubClass Selecting IntentionalPsychologicalProcess ; + + -- A SelfConnectedObject is any + -- Object that does not consist of two or more disconnected parts. + fun SelfConnectedObject : Class ; + fun SelfConnectedObject_Class : SubClass SelfConnectedObject Object ; + + -- A FinancialTransaction in which an instance of + -- Physical is exchanged for an instance of CurrencyMeasure. + fun Selling : Class ; + fun Selling_Class : SubClass Selling FinancialTransaction ; + + -- A syntactically well_formed formula of a + -- Language. It includes, at minimum, a predicate and a subject (which + -- may be explicit or implicit), and it expresses a Proposition. + fun Sentence : Class ; + fun Sentence_Class : SubClass Sentence LinguisticExpression ; + + -- An Agent that has rights but may or may + -- not have responsibilities and the ability to reason. If the latter are + -- present, then the Agent is also an instance of CognitiveAgent. + -- Domesticated animals are an example of SentientAgents that are not + -- also CognitiveAgents. + fun SentientAgent : Class ; + fun SentientAgent_Class : SubClass SentientAgent Agent ; + + -- A Process where a SelfConnectedObject is + -- separated into (some of) its parts. Note that Separating is different + -- from Detaching in that the latter only results in the two objects not + -- being connected. Note too that Separating is different from + -- Removing in that one or both of the two things which are separated + -- may or may not be moved from the location where they were separated. + fun Separating : Class ; + fun Separating_Class : SubClass Separating DualObjectProcess ; + + -- The Class of all Months which are September. + fun September : Class ; + fun September_Class : SubClass September Month ; + + -- A Text consisting of multiple self_contained units. + -- Some examples are an encyclopedia containing a couple dozen volumes, a television + -- series made up of many episodes, a film serial, etc. + fun Series : Class ; + fun Series_Class : SubClass Series Text ; + + -- A BinaryFunction that maps a type of Series + -- (e.g. the Encyclopedia_Britannica or the Popular_Mechanics periodical) and a + -- number to the volumes of the text type designated by the number. + fun SeriesVolumeFn : Desc Series -> El PositiveInteger -> Desc Text ; + + -- ServiceProcess denotes the class + -- of events in which one agent performs a service for another. The + -- service need not be commercial, and it need not be the case that + -- the serviceRecipient pays or recompenses the serviceProvider + -- for the service. + fun ServiceProcess : Class ; + fun ServiceProcess_Class : SubClass ServiceProcess SocialInteraction ; + + -- A SetOrClass that satisfies extensionality as well as + -- other constraints specified by some choice of set theory. Sets differ + -- from Classes in two important respects. First, Sets are extensional _ + -- two Sets with the same elements are identical. Second, a Set can be + -- an arbitrary stock of objects. That is, there is no requirement that Sets + -- have an associated condition that determines their membership. Note that Sets + -- are not assumed to be unique sets, i.e. elements of a Set may occur more + -- than once in the Set. + fun Set : Class ; + fun Set_Class : SubClass Set SetOrClass ; + + -- The SetOrClass of Sets + -- and Classes, i.e. any instance of Abstract that has elements or + -- instances. + fun SetOrClass : Class ; + fun SetOrClass_Class : SubClass SetOrClass Abstract ; + + -- Attributes that indicate the sex of an + -- Organism. + fun SexAttribute : Class ; + fun SexAttribute_Class : SubClass SexAttribute BiologicalAttribute ; + + -- Sexual Processes of biological + -- reproduction. + fun SexualReproduction : Class ; + fun SexualReproduction_Class : SubClass SexualReproduction Replication ; + + -- Any Attribute that relates to the + -- shape of an Object. + fun ShapeAttribute : Class ; + fun ShapeAttribute_Class : SubClass ShapeAttribute InternalAttribute ; + + -- The Process of changing the shape of an Object. + fun ShapeChange : Class ; + fun ShapeChange_Class : SubClass ShapeChange InternalChange ; + + -- The subclass of Impelling where the patient + -- is a projectile that is fired through the air by means of some sort of + -- Device. + fun Shooting : Class ; + fun Shooting_Class : SubClass Shooting Impelling ; + + -- A ShoreArea is a LandArea approximately + -- 1_3 km wide bordering a body of water, such as an ocean, bay, river, + -- or lake. A ShoreArea may comprise a variety of LandForms, such as dunes, + -- sloughs, and marshes. + fun ShoreArea : Class ; + fun ShoreArea_Class : SubClass ShoreArea LandArea ; + + -- SI electric conductance measure. Symbol: S. + -- In the case of direct current, the conductance in Siemens is the + -- reciprocal of the resistance in Ohms, in the case of alternating current, + -- it is the reciprocal of the impedance in ohms. siemens = A/V = + -- m^(_2)*kg(_1)*s^(3)*A^2. + fun Siemens : Ind CompositeUnitOfMeasure ; + + -- SI dose equivalent measure. Symbol: Sv. It is + -- a unit of biologic dose of ionizing radiation. The Sievert makes it + -- possible to normalize doses of different types of radiation. It takes + -- into account the relative biologic effectiveness of ionizing radiation, + -- since each form of such radiation__e.g., X rays, gamma rays, neutrons__ + -- has a slightly different effect on living tissue for a given absorbed + -- dose. The dose equivalent of a given type of radiation (in Sievert) is + -- the dose of the radiation in Gray multiplied by a quality factor that + -- is based on the relative biologic effectiveness of the radiation. + -- Accordingly, one Sievert is generally defined as the amount of radiation + -- roughly equivalent in biologic effectiveness to one Gray of gamma + -- radiation. Sievert = J/kg = m^2*s^(_2) + fun Sievert : Ind CompositeUnitOfMeasure ; + + -- (SignumFn ?NUMBER) denotes the sign of ?NUMBER. + -- This is one of the following values: _1, 1, or 0. + fun SignumFn : El RealNumber -> Ind Integer ; + + -- (SineFn ?DEGREE) is the sine of the + -- PlaneAngleMeasure ?DEGREE. The sine of ?DEGREE is the ratio of the side + -- opposite ?DEGREE to the hypotenuse in a right_angled triangle. + fun SineFn : El PlaneAngleMeasure -> Ind RealNumber ; + + -- Speaking that is also Music. + fun Singing : Class ; + fun Singing_Class : SubClass Singing (both Music Speaking) ; + + -- SingleAgentProcess + -- is the Class of all Processes that require exactly one agent in order to occur. + fun SingleAgentProcess : Class ; + fun SingleAgentProcess_Class : SubClass SingleAgentProcess Process ; + + -- A PermanentResidence which is + -- intended to be the home of a single SocialUnit. This class covers + -- Houses, ApartmentUnits, and CondominiumUnits. + fun SingleFamilyResidence : Class ; + fun SingleFamilyResidence_Class : SubClass SingleFamilyResidence PermanentResidence ; + + -- The BodyPosition of being recumbent, i.e. + -- knees bent and back side supported. + fun Sitting : Ind BodyPosition ; + + -- The system of Bones that make up the supporting structure + -- of Vertebrates. + fun Skeleton : Class ; + fun Skeleton_Class : SubClass Skeleton (both AnimalAnatomicalStructure BodyPart) ; + + -- English mass unit of slugs. + fun Slug : Ind UnitOfMass ; + + -- The subclass of Perception in which the + -- sensing is done by an olefactory Organ. + fun Smelling : Class ; + fun Smelling_Class : SubClass Smelling Perception ; + + -- A mixture of fine particles suspended in a gas that is + -- produced by Combustion. + fun Smoke : Class ; + fun Smoke_Class : SubClass Smoke Cloud ; + + -- An Object with this Attribute has a smooth + -- surface. + fun Smooth : Ind TextureAttribute ; + + -- The subclass of + -- IntentionalProcess that involves interactions between + -- CognitiveAgents. + fun SocialInteraction : Class ; + fun SocialInteraction_Class : SubClass SocialInteraction IntentionalProcess ; + + -- The Class of all Attributes that + -- specify the position or status of a CognitiveAgent within an + -- Organization or other Group. + fun SocialRole : Class ; + fun SocialRole_Class : SubClass SocialRole RelationalAttribute ; + + -- A GroupOfPeople who all have the same home. + fun SocialUnit : Class ; + fun SocialUnit_Class : SubClass SocialUnit GroupOfPeople ; + + -- An Object has the Attribute of Solid if it + -- has a fixed shape and a fixed volume. + fun Solid : Ind PhysicalState ; + + -- The value of an angle in a solid. + fun SolidAngleMeasure : Class ; + fun SolidAngleMeasure_Class : SubClass SolidAngleMeasure AngleMeasure ; + + -- A liquid mixture. The most abundant component in + -- a solution is called the solvent. Other components are called solutes. + -- A solution, though homogeneous, may nonetheless have variable composition. + -- Any amount of salt, up to a maximum limit, can be dissolved in a given + -- amount of water. + fun Solution : Class ; + fun Solution_Class : SubClass Solution LiquidMixture ; + + -- The volume of sound relative to a listener. + fun SoundAttribute : Class ; + fun SoundAttribute_Class : SubClass SoundAttribute RelationalAttribute ; + + -- The compass direction of South. + fun South : Ind DirectionalAttribute ; + + -- Any LinguisticGeneration which is also a + -- Vocalizing, i.e. any LinguisticCommunication by a Human which + -- involves his/her vocal cords. + fun Speaking : Class ; + fun Speaking_Class : SubClass Speaking (both LinguisticCommunication Vocalizing) ; + + -- Maps an instance of LengthMeasure and an instance of + -- TimeDuration to the speed represented by this proportion of distance and time. + -- For example, (SpeedFn (MeasureFn 55 Mile)(MeasureFn 1 HourDuration)) + -- represents the velocity of 55 miles per hour. + fun SpeedFn : El LengthMeasure -> El TimeDuration -> Ind FunctionQuantity ; + + -- A flexible column made out of bones called + -- vertebrae. The main function of the SpinalColumn is to protect the + -- spinal cord. + fun SpinalColumn : Class ; + fun SpinalColumn_Class : SubClass SpinalColumn (both AnimalAnatomicalStructure Organ) ; + + -- A SpokenHumanLanguage is a + -- HumanLanguage which has as its medium the human voice. It can also + -- berepresented visually through writing, although not all + -- SpokenHumanLanguages have a codified written form. + fun SpokenHumanLanguage : Class ; + fun SpokenHumanLanguage_Class : SubClass SpokenHumanLanguage HumanLanguage ; + + -- Any ReproductiveBody of a NonFloweringPlant. + fun Spore : Class ; + fun Spore_Class : SubClass Spore (both PlantAnatomicalStructure ReproductiveBody) ; + + -- A Game which requires some degree of physical + -- exercion from the participants of the game. + fun Sport : Class ; + fun Sport_Class : SubClass Sport Game ; + + -- (SquareRootFn ?NUMBER) is the principal + -- square root of ?NUMBER. + fun SquareRootFn : El RealNumber -> Ind Number ; + + -- The BodyPosition of being upright, i.e. being + -- fully extended and supported by nothing other than one's own feet. + fun Standing : Ind BodyPosition ; + + -- Any Process where the PhysicalState + -- of part of the patient of the Process changes. + fun StateChange : Class ; + fun StateChange_Class : SubClass StateChange InternalChange ; + + -- The class StateOfMind is distinguished from + -- its complement TraitAttribute by the fact that instances of the former are + -- transient while instances of the latter are persistent features of a creature's behavioral/psychological make_up. + fun StateOfMind : Class ; + fun StateOfMind_Class : SubClass StateOfMind PsychologicalAttribute ; + + -- Administrative subdivisions of a + -- Nation that are broader than any other political subdivisions that + -- may exist. This Class includes the states of the United States, as + -- well as the provinces of Canada and European countries. + fun StateOrProvince : Class ; + fun StateOrProvince_Class : SubClass StateOrProvince (both GeopoliticalArea LandArea) ; + + -- A WaterArea in which water does not flow + -- constantly or in the same direction, e.g. most lakes and ponds. + fun StaticWaterArea : Class ; + fun StaticWaterArea_Class : SubClass StaticWaterArea WaterArea ; + + -- Instances of this Class commit the agent to some truth. + -- For example, John claimed that the moon is made of green cheese. + fun Stating : Class ; + fun Stating_Class : SubClass Stating LinguisticCommunication ; + + -- A StationaryArtifact is an Artifact + -- that has a fixed spatial location. Most instances of this Class are + -- architectural works, e.g. the Eiffel Tower, the Great Pyramids, office towers, + -- single_family houses, etc. + fun StationaryArtifact : Class ; + fun StationaryArtifact_Class : SubClass StationaryArtifact Artifact ; + + -- SI solid angle measure. Symbol: sr. It is + -- the solid angle of a sphere subtended by a portion of the surface whose + -- area is equal to the square of the sphere's radius. Another definition + -- is: the solid angle which, having its vertex in the center of the sphere, + -- cuts off an area of the surface of the sphere equal to that of a square + -- with sides of length equal to the radius of the sphere. Steradian = + -- m^2/m^2 = 1. + fun Steradian : Ind UnitOfAngularMeasure ; + + -- A relatively narrow WaterArea where the + -- water flows constantly and in the same direction, e.g. a river, a stream, + -- etc. + fun StreamWaterArea : Class ; + fun StreamWaterArea_Class : SubClass StreamWaterArea (both FlowRegion WaterArea) ; + + -- The class of ElementalSubstances that + -- are smaller than Atoms and compose Atoms. + fun SubatomicParticle : Class ; + fun SubatomicParticle_Class : SubClass SubatomicParticle ElementalSubstance ; + + -- The Class of NormativeAttributes + -- which lack an objective criterion for their attribution, i.e. the attribution of + -- these Attributes varies from subject to subject and even with respect to the + -- same subject over time. This Class is, generally speaking, only used when + -- mapping external knowledge sources to the SUMO. If a term from such a knowledge + -- source seems to lack objective criteria for its attribution, it is assigned to + -- this Class. + fun SubjectiveAssessmentAttribute : Class ; + fun SubjectiveAssessmentAttribute_Class : SubClass SubjectiveAssessmentAttribute NormativeAttribute ; + + -- An Object in which every part is similar to + -- every other in every relevant respect. More precisely, something is a + -- Substance when it has only arbitrary pieces as parts _ any parts have + -- properties which are similar to those of the whole. Note that a Substance + -- may nonetheless have physical properties that vary. For example, the + -- temperature, chemical constitution, density, etc. may change from one part + -- to another. An example would be a body of water. + fun Substance : Class ; + fun Substance_Class : SubClass Substance SelfConnectedObject ; + + -- The Class of Transfers where one thing is + -- replaced with something else. + fun Substituting : Class ; + fun Substituting_Class : SubClass Substituting (both DualObjectProcess Transfer) ; + + -- If ?NUMBER1 and ?NUMBER2 are Numbers, + -- then (SubtractionFn ?NUMBER1 ?NUMBER2) is the arithmetical difference + -- between ?NUMBER1 and ?NUMBER2, i.e. ?NUMBER1 minus ?NUMBER2. An + -- exception occurs when ?NUMBER1 is equal to 0, in which case + -- (SubtractionFn ?NUMBER1 ?NUMBER2) is the negation of ?NUMBER2. + fun SubtractionFn : El Quantity -> El Quantity -> Ind Quantity ; + + -- A UnaryFunction that maps an Integer to + -- its successor, e.g. the successor of 5 is 6. + fun SuccessorFn : El Integer -> Ind Integer ; + + -- A short Text that is a summary of another, + -- longer Text. + fun Summary : Class ; + fun Summary_Class : SubClass Summary Text ; + + -- The Class of all calendar Sundays. + fun Sunday : Class ; + fun Sunday_Class : SubClass Sunday Day ; + + -- Instances of this Class suppose, for the sake of + -- argument, that a proposition is true. For example, John considered what he + -- would do if he won the lottery. + fun Supposing : Class ; + fun Supposing_Class : SubClass Supposing LinguisticCommunication ; + + -- Processes which involve altering + -- the properties that apply to the surface of an Object. + fun SurfaceChange : Class ; + fun SurfaceChange_Class : SubClass SurfaceChange InternalChange ; + + -- Any TherapeuticProcess that involves making an + -- incision in the Animal that is the patient of the TherapeuticProcess. + fun Surgery : Class ; + fun Surgery_Class : SubClass Surgery TherapeuticProcess ; + + -- A LiquidMixture where at least one of the + -- components of the Mixture is equally distributed throughout the Mixture + -- but is not dissolved in it. + fun Suspension : Class ; + fun Suspension_Class : SubClass Suspension LiquidMixture ; + + -- Any deliberate and controlled BodyMotion + -- through water that is accomplished by an Organism. + fun Swimming : Class ; + fun Swimming_Class : SubClass Swimming BodyMotion ; + + -- The Class of alphanumeric sequences. + fun SymbolicString : Class ; + fun SymbolicString_Class : SubClass SymbolicString ContentBearingObject ; + + -- SymmetricAttribute is the class of + -- PositionalAttribute that hold between two items regardless of their + -- order or orientation. + fun SymmetricPositionalAttribute : Class ; + fun SymmetricPositionalAttribute_Class : SubClass SymmetricPositionalAttribute PositionalAttribute ; + + -- Any Substance that is the result of an + -- IntentionalProcess, i.e. any substance that is created by Humans. + fun SyntheticSubstance : Class ; + fun SyntheticSubstance_Substance : SubClassC SyntheticSubstance Substance + (\SUBSTANCE -> exists IntentionalProcess + (\PROCESS -> result (var IntentionalProcess Process ? PROCESS) + (var Substance Entity ? SUBSTANCE))); + + -- The Class of Systeme + -- International (SI) units. + fun SystemeInternationalUnit : Class ; + fun SystemeInternationalUnit_Class : SubClass SystemeInternationalUnit UnitOfMeasure ; + + -- The subclass of Perception in which + -- the sensing is done by Touching. Note that Touching need not involve + -- TactilePerception. For example, a person who has lost all sensation in + -- both of his legs would have no TactilePerception of anything his legs + -- were Touching. + fun TactilePerception : Class ; + fun TactilePerception_Class : SubClass TactilePerception Perception ; + + -- (TangentFn ?DEGREE) is the tangent of the + -- PlaneAngleMeasure ?DEGREE. The tangent of ?DEGREE is the ratio of + -- the side opposite ?DEGREE to the side next to ?DEGREE in a right_angled + -- triangle. + fun TangentFn : El PlaneAngleMeasure -> Ind RealNumber ; + + -- The Class of Attributes relating to + -- the taste of Objects. + fun TasteAttribute : Class ; + fun TasteAttribute_Class : SubClass TasteAttribute PerceptualAttribute ; + + -- The subclass of Perception in which the + -- sensing is done by of an Organ which can discriminate various tastes. + fun Tasting : Class ; + fun Tasting_Class : SubClass Tasting Perception ; + + -- Measures of temperature. + -- In scientific circles, the temperature of something is understood as the + -- average velocity of the atoms or molecules that make up the thing. + fun TemperatureMeasure : Class ; + fun TemperatureMeasure_Class : SubClass TemperatureMeasure ConstantQuantity ; + + -- The basic Function for expressing + -- the composition of larger TimeIntervals out of smaller TimeIntervals. + -- For example, if ThisSeptember is an instance of September, + -- (TemporalCompositionFn ThisSeptember Day) denotes the Class of + -- consecutive days that make up ThisSeptember. Note that one can obtain + -- the number of instances of this Class by using the function CardinalityFn. + fun TemporalCompositionFn : El TimeInterval -> Desc TimeInterval -> Desc TimeInterval ; + + -- A Residence which is strictly temporary, + -- i.e. where no one makes his/her home. + fun TemporaryResidence : Class ; + fun TemporaryResidence_Class : SubClass TemporaryResidence Residence ; + + -- A UnaryFunction that maps a UnitOfMeasure + -- into a UnitOfMeasure that is equal to 1,000,000,000,000 units of the original + -- UnitOfMeasure. For example, (TeraFn Hertz) is 1,000,000,000,000 Hertz. + fun TeraFn : El UnitOfMeasure -> Ind UnitOfMeasure; + + -- A UnaryFunction that maps a + -- GraphArc to the terminal node of the GraphArc. Note that this + -- is a partial function. In particular, the function is undefined + -- for GraphArcs that are not part of a DirectedGraph. + fun TerminalNodeFn : El GraphArc -> Ind GraphNode ; + + -- OrganizationalProcesses where someone + -- ceases to be an employee of an Organization. Note that this covers being + -- laid off, being fired, and voluntarily leaving a job. + fun TerminatingEmployment : Class ; + fun TerminatingEmployment_Class : SubClass TerminatingEmployment LeavingAnOrganization ; + + -- SI magnetic flux density measure. Symbol: T. + -- One Tesla equals one Weber per square Meter. Tesla = Wb/m^2 = + -- kg*s^(_2)*A^(_1). + fun Tesla : Ind CompositeUnitOfMeasure ; + + -- A LinguisticExpression or set of + -- LinguisticExpressions that perform a specific function related + -- to Communication, e.g. express a discourse about a particular + -- topic, and that are inscribed in a CorpuscularObject by Humans. + fun Text : Class ; + fun Text_Class : SubClass Text (both Artifact (both ContentBearingObject LinguisticExpression)) ; + + -- Any Attribute that characterizes the + -- texture of an Object. + fun TextureAttribute : Class ; + fun TextureAttribute_Class : SubClass TextureAttribute PerceptualAttribute ; + + -- A Process that is carried out + -- for the purpose of curing, improving or reducing the pain associated + -- with a DiseaseOrSyndrome. + fun TherapeuticProcess : Class ; + fun TherapeuticProcess_Class : SubClass TherapeuticProcess Repairing ; + + -- The class of GeometricFigures that + -- have position and an extension along three dimensions, viz. geometric solids + -- like polyhedrons and cylinders. + fun ThreeDimensionalFigure : Class ; + fun ThreeDimensionalFigure_Class : SubClass ThreeDimensionalFigure GeometricFigure ; + + -- The Class of all calendar Thursdays. + fun Thursday : Class ; + fun Thursday_Class : SubClass Thursday Day ; + + -- A UnaryConstantFunctionQuantity of continuous time. All instances of + -- this Class are returned by Functions that map a time quantity into + -- another ConstantQuantity such as temperature. For example, 'the + -- temperature at the top of the Empire State Building' is a + -- TimeDependentQuantity, since its value depends on the time. + fun TimeDependentQuantity : Class ; + fun TimeDependentQuantity_Class : SubClass TimeDependentQuantity UnaryConstantFunctionQuantity ; + + -- Any measure of length of time, + -- with or without respect to the universal timeline. + fun TimeDuration : Class ; + fun TimeDuration_Class : SubClass TimeDuration TimeMeasure ; + + -- An interval of time. + -- Note that a TimeInterval has both an extent and a location on the + -- universal timeline. Note too that a TimeInterval has no gaps, + -- i.e. this class contains only convex time intervals. + fun TimeInterval : Class ; + fun TimeInterval_Class : SubClass TimeInterval TimePosition ; + + -- A BinaryFunction that takes two TimePoints + -- as arguments and returns the TimeInterval defined by these two TimePoints. + -- Note that the first TimePoint must occur earlier than the second TimePoint. + fun TimeIntervalFn : El TimePoint -> El TimePoint -> Ind TimeInterval ; + + -- The class of temporal durations (instances + -- of TimeDuration) and positions of TimePoints and TimeIntervals along + -- the universal timeline (instances of TimePosition). + fun TimeMeasure : Class ; + fun TimeMeasure_Class : SubClass TimeMeasure ConstantQuantity ; + + -- An extensionless point on + -- the universal timeline. The TimePoints at which Processes occur + -- can be known with various degrees of precision and approximation, but + -- conceptually TimePoints are point_like and not interval_like. That + -- is, it doesn't make sense to talk about how long a TimePoint + -- lasts. + fun TimePoint : Class ; + fun TimePoint_Class : SubClass TimePoint TimePosition ; + + -- Any TimePoint or TimeInterval + -- along the universal timeline from NegativeInfinity to + -- PositiveInfinity. + fun TimePosition : Class ; + fun TimePosition_Class : SubClass TimePosition TimeMeasure ; + + -- An Attribute which is used to specify coordinates + -- in which time measures are uniform, i.e. all time devices are synchronized to + -- the same TimePositions. + fun TimeZone : Class ; + fun TimeZone_Class : SubClass TimeZone RelationalAttribute ; + + -- An aggregation of similarly specialized Cells + -- and the associated intercellular substance. Tissues are relatively + -- non_localized in comparison to BodyParts, Organs or Organ components. + -- The main features of Tissues are self_connectivity (see + -- SelfConnectedObject) and being a homogeneous mass (all parts in the + -- same granularity are instances of Tissue as well). + fun Tissue : Class ; + fun Tissue_Class : SubClass Tissue BodySubstance ; + + -- Any Transfer where two Objects are + -- brought into immediate physical contact with one another. + fun Touching : Class ; + fun Touching_Class : SubClass Touching Transfer ; + + -- Attributes that indicate the the + -- behavior/personality traits of an Organism. + fun TraitAttribute : Class ; + fun TraitAttribute_Class : SubClass TraitAttribute PsychologicalAttribute ; + + -- The subclass of ChangeOfPossession where + -- something is exchanged for something else. + fun Transaction : Class ; + fun Transaction_Class : SubClass Transaction (both ChangeOfPossession DualObjectProcess) ; + + -- Any instance of Translocation where the agent + -- and the patient are not the same thing. + fun Transfer : Class ; + fun Transfer_Class : SubClass Transfer Translocation ; + + -- Transitway is the broadest class + -- of regions which may be passed through as a path in instances + -- of Translocation. Transitway includes land, air, and sea + -- regions, and it includes both natural and artificial transitways. + fun Transitway : Class ; + fun Transitway_Class : SubClass Transitway (both Region SelfConnectedObject) ; + + -- Converting content from one Language into another. + -- This covers oral translation (i.e. interpreting) as well as written translation. + fun Translating : Class ; + fun Translating_Class : SubClass Translating (both ContentDevelopment DualObjectProcess) ; + + -- Translocation is that class of Motions + -- in which an object moves from one place to another. In the case of round + -- trips, the origin and destination are the same, but the intervening + -- motion passes through other locations. Translocation represents linear + -- motion, in contrast to rotation or other movement in place. A vehicle is + -- not necessary, Ambulating is a kind of Translocation. + fun Translocation : Class ; + fun Translocation_Class : SubClass Translocation Motion ; + + -- Motion from one point to another by means + -- of a TransportationDevice. + fun Transportation : Class ; + fun Transportation_Class : SubClass Transportation Translocation ; + + -- A TransportationDevice is a Device + -- which serves as the instrument in a Transportation Process which carries + -- the patient of the Process from one point to another. + fun TransportationDevice : Class ; + fun TransportationDevice_Class : SubClass TransportationDevice Device ; + + -- A Tree is a DirectedGraph that has no + -- GraphLoops. + fun Tree : Class ; + fun Tree_Class : SubClass Tree Graph ; + + -- The TruthValue of being true. + fun True : Ind TruthValue ; + + -- The Class of truth values, e.g. True and + -- False. These are Attributes of Sentences and Propositions. + fun TruthValue : Class ; + fun TruthValue_Class : SubClass TruthValue RelationalAttribute ; + + -- The Class of all calendar Tuesdays. + fun Tuesday : Class ; + fun Tuesday_Class : SubClass Tuesday Day ; + + -- Any two OneDimensionalFigures (i.e. + -- straight lines) meeting at a single GeometricPoint. + fun TwoDimensionalAngle : Class ; + fun TwoDimensionalAngle_Class : SubClass TwoDimensionalAngle OpenTwoDimensionalFigure ; + + -- The class of GeometricFigures that + -- have position and an extension along two dimensions, viz. plane figures + -- like circles and polygons. + fun TwoDimensionalFigure : Class ; + fun TwoDimensionalFigure_Class : SubClass TwoDimensionalFigure GeometricFigure ; + + -- A subclass of FunctionQuantity, instances of which are returned by + -- UnaryFunctions that map from one instance of the Class + -- ConstantQuantity to another instance of the Class + -- ConstantQuantity. + fun UnaryConstantFunctionQuantity : Class ; + fun UnaryConstantFunctionQuantity_Class : SubClass UnaryConstantFunctionQuantity FunctionQuantity ; + + -- Attribute that applies to Organisms that + -- are unconscious. An Organism may be Unconscious because it is Dead + -- or because of a blow to the head, a drug, etc. + fun Unconscious : Ind ConsciousnessAttribute ; + + -- The Class of Removing processes where the agent + -- uncovers the patient, either completely or only partially. + fun Uncovering : Class ; + fun Uncovering_Class : SubClass Uncovering Removing ; + + -- The Attribute of a CognitiveAgent when + -- he/she is unemployed. + fun Unemployed : Ind SocialRole ; + + -- Any instance of Detaching which results in + -- a situation where it is not the case that the agent grasps something + -- which he/she grasps previously. + fun Ungrasping : Class ; + fun Ungrasping_Class : SubClass Ungrasping Detaching ; + + -- Any instance of Getting that is not part + -- of a Transaction. In other words, any instance of Getting where nothing + -- is given in return. Some examples of UnilateralGetting are: appropriating, + -- commandeering, stealing, etc. + fun UnilateralGetting : Class ; + fun UnilateralGetting_Class : SubClass UnilateralGetting Getting ; + + -- Any instance of Giving that is not part + -- of a Transaction. In other words, any instance of Giving where nothing + -- is received in return. Some examples of UnilateralGiving are: honorary + -- awards, gifts, and financial grants. + fun UnilateralGiving : Class ; + fun UnilateralGiving_Class : SubClass UnilateralGiving Giving ; + + -- The Attribute of Regions that are + -- unilluminated, i.e in which no shapes are visually discernable. + fun Unilluminated : Ind VisualAttribute ; + + -- A BinaryFunction that maps two SetOrClasses to + -- the union of these SetOrClasses. An object is an element of the union + -- of two SetOrClasses just in case it is an instance of either SetOrClass. + fun UnionFn : El SetOrClass -> El SetOrClass -> Ind SetOrClass ; + + -- A List in which no item appears more than once, + -- i.e. a List for which there are no distinct numbers ?NUMBER1 and ?NUMBER2 + -- such that (ListOrderFn ?LIST ?NUMBER1) and (ListOrderFn ?LIST ?NUMBER2) + -- return the same value. + fun UniqueList : Class ; + fun UniqueList_Class : SubClass UniqueList List ; + + -- UnitFn returns just the UnitOfMeasure of a PhysicalQuantity with an associated + -- UnitOfMeasure and RealNumber magnitude. For example, the unit of + -- the ConstantQuantity (MeasureFn 2 Kilometer) is the + -- UnitOfMeasure Kilometer. + fun UnitFn : El PhysicalQuantity -> Ind UnitOfMeasure ; + + -- Every instance of this Class is a UnitOfMeasure that can be used + -- with MeasureFn to form instances of AngleMeasure. + fun UnitOfAngularMeasure : Class ; + fun UnitOfAngularMeasure_Class : SubClass UnitOfAngularMeasure NonCompositeUnitOfMeasure ; + + -- Every instance of this Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of AreaMeasure. + fun UnitOfArea : Class ; + fun UnitOfArea_Class : SubClass UnitOfArea CompositeUnitOfMeasure ; + + -- UnitOfAtmosphericPressure includes those instances of + -- UnitOfMeasure used to measure atmospheric pressure (barometricPressure), + -- e.g., InchMercury. + fun UnitOfAtmosphericPressure : Class ; + fun UnitOfAtmosphericPressure_Class : SubClass UnitOfAtmosphericPressure CompositeUnitOfMeasure ; + + -- Every instance of this Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of CurrencyMeasure. + fun UnitOfCurrency : Class ; + fun UnitOfCurrency_Class : SubClass UnitOfCurrency NonCompositeUnitOfMeasure ; + + -- Every instance of this Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of TimeDuration. Note that TimeDuration is a subclass of TimeMeasure. + fun UnitOfDuration : Class ; + fun UnitOfDuration_Class : SubClass UnitOfDuration NonCompositeUnitOfMeasure ; + + -- Every instance of this + -- Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of FrequencyMeasure. + fun UnitOfFrequency : Class ; + fun UnitOfFrequency_Class : SubClass UnitOfFrequency CompositeUnitOfMeasure ; + + -- Every instance of this + -- Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of InformationMeasure. + fun UnitOfInformation : Class ; + fun UnitOfInformation_Class : SubClass UnitOfInformation NonCompositeUnitOfMeasure ; + + -- Every instance of this + -- Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of LengthMeasure. + fun UnitOfLength : Class ; + fun UnitOfLength_Class : SubClass UnitOfLength NonCompositeUnitOfMeasure ; + + -- Every instance of this + -- Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of MassMeasure, which denote the amount of matter in + -- PhysicalObjects. + fun UnitOfMass : Class ; + fun UnitOfMass_Class : SubClass UnitOfMass NonCompositeUnitOfMeasure ; + + -- A standard of measurement for some dimension. + -- For example, the Meter is a UnitOfMeasure for the dimension of length, + -- as is the Inch. There is no intrinsic property of a UnitOfMeasure that + -- makes it primitive or fundamental, rather, a system of units (e.g. + -- SystemeInternationalUnit) defines a set of orthogonal dimensions and + -- assigns units for each. + fun UnitOfMeasure : Class ; + fun UnitOfMeasure_Class : SubClass UnitOfMeasure PhysicalQuantity ; + + -- Every instance of this Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of TemperatureMeasure. + fun UnitOfTemperature : Class ; + fun UnitOfTemperature_Class : SubClass UnitOfTemperature NonCompositeUnitOfMeasure ; + + -- Every instance of this Class is a UnitOfMeasure that can be used with MeasureFn to form + -- instances of VolumeMeasure. + fun UnitOfVolume : Class ; + fun UnitOfVolume_Class : SubClass UnitOfVolume CompositeUnitOfMeasure ; + + -- Unit of volume commonly used in the United Kingdom. + fun UnitedKingdomGallon : Ind UnitOfVolume ; + + -- A currency measure. 1 UnitedStatesCent is equal to .01 UnitedStatesDollars. + fun UnitedStatesCent : Ind UnitOfCurrency ; + + -- A currency measure. + fun UnitedStatesDollar : Ind UnitOfCurrency ; + + -- Unit of volume commonly used in the United States. + fun UnitedStatesGallon : Ind UnitOfVolume ; + + -- The ProbabilityAttribute of being improbable, i.e. more + -- likely than not to be False. + fun Unlikely : Ind ProbabilityAttribute ; + + -- A DeductiveArgument which is valid, i.e. the set of premises in fact entails the conclusion. + fun ValidDeductiveArgument : Class ; + fun ValidDeductiveArgument_Class : SubClass ValidDeductiveArgument DeductiveArgument ; + + -- Vehicle is the subclass of + -- TransportationDevices that transport passengers or goods + -- from one place to another by moving from one place to the other + -- with them, e.g., cars, trucks, ferries, and airplanes. Contrast + -- with devices such as pipelines, escalators, or supermarket + -- checkout belts, which carry items from one place to another by means + -- of a moving part, without the device removing from the origin to + -- the destination. + fun Vehicle : Class ; + fun Vehicle_Class : SubClass Vehicle TransportationDevice ; + + -- Specifies the velocity of an object, i.e. the speed + -- and the direction of the speed. For example (VelocityFn (MeasureFn 55 Mile) + -- (MeasureFn 2 HourDuration) ?REFERENCE North) denotes the velocity of 55 miles + -- per hour North of the given reference point ?REFERENCE. + fun VelocityFn : El LengthMeasure -> El TimeDuration -> El Region -> El DirectionalAttribute -> Ind FunctionQuantity ; + + -- One of the parts of speech. The Class of Words + -- that conventionally denote Processes. + fun Verb : Class ; + fun Verb_Class : SubClass Verb Word ; + + -- A Phrase that has the same function as a Verb. + fun VerbPhrase : Class ; + fun VerbPhrase_Class : SubClass VerbPhrase Phrase ; + + -- An Animal which has a spinal column. + fun Vertebrate : Class ; + fun Vertebrate_Animal : SubClassC Vertebrate Animal + (\VERT -> and (and (and (exists SpinalColumn (\SPINE -> component (var SpinalColumn CorpuscularObject ? SPINE) + (var Animal CorpuscularObject ? VERT))) + (forall NervousSystem (\S -> part (var NervousSystem Object ? S) + (var Animal Object ? VERT)))) + (forall Skeleton (\SKELETON -> part (var Skeleton Object ? SKELETON) + (var Animal Object ? VERT)))) + (forall Exoskeleton (\SKELETON -> part (var Exoskeleton Object ? SKELETON) + (var Animal Object ? VERT)))); + + -- Attribute used to indicate that an Object + -- is positioned height_wise with respect to another Object. + fun Vertical : Ind PositionalAttribute ; + + -- A Contest where one participant attempts to + -- physically injure another participant. + fun ViolentContest : Class ; + fun ViolentContest_Class : SubClass ViolentContest Contest ; + + -- An Organism consisting of a core of a single + -- nucleic acid enclosed in a protective coat of protein. A virus may replicate + -- only inside a host living cell. A virus exhibits some but not all of the + -- usual characteristics of living things. + fun Virus : Class ; + fun Virus_Class : SubClass Virus Microorganism ; + + -- The Class of visually discernible + -- properties. + fun VisualAttribute : Class ; + fun VisualAttribute_Class : SubClass VisualAttribute PerceptualAttribute ; + + -- A Nutrient present in natural products or made + -- synthetically, which is essential in the diet of Humans and other higher + -- Animals. Included here are Vitamin precursors and provitamins. + fun Vitamin : Class ; + fun Vitamin_Class : SubClass Vitamin Nutrient ; + + -- The vocal cords, are composed + -- of two folds of mucous membrane stretched horizontally across the + -- larynx. They vibrate, modulating the flow of air being expelled from the + -- lungs during Vocalizing. + fun VocalCords : Class ; + fun VocalCords_Class : SubClass VocalCords Organ ; + + -- Any instance of RadiatingSound where the + -- instrument is the Human vocal cords. This covers grunts, screams, + -- roars, as well as Speaking. + fun Vocalizing : Class ; + fun Vocalizing_Class : SubClass Vocalizing (both BodyMotion RadiatingSound) ; + + -- SI electric potential measure. Symbol: V. It is + -- the difference of electric potential between two points of a conducting + -- wire carrying a constant current of 1 Ampere, when the power dissipated + -- between these points is equal to 1 Watt. Volt = W/A = + -- m^2*kg*s^(_3)*A^(_1). + fun Volt : Ind CompositeUnitOfMeasure ; + + -- Measures of the amount of space in three dimensions. + fun VolumeMeasure : Class ; + fun VolumeMeasure_Class : SubClass VolumeMeasure FunctionQuantity ; + + -- Voting is the activity of voting in an + -- Election. Voting is typically done by individuals, while Elections + -- are conducted by Organizations. The voting process by an individual + -- voter is part of an Election process. + fun Voting : Class ; + fun Voting_Class : SubClass Voting Deciding ; + + -- Ambulating relatively slowly, i.e. moving in such a + -- way that at least one foot is always in contact with the ground. + fun Walking : Class ; + fun Walking_Class : SubClass Walking Ambulating ; + + -- A military confrontation between two or more + -- GeopoliticalAreas or Organizations whose members are GeopoliticalAreas. + -- As the corresponding axiom specifies, a War is made up of Battles. + fun War : Class ; + fun War_Class : SubClass War ViolentContest ; + + -- Vertebrates whose body temperature + -- is internally regulated. + fun WarmBloodedVertebrate : Class ; + fun WarmBloodedVertebrate_Class : SubClass WarmBloodedVertebrate Vertebrate ; + + -- A Contract that states the cirumstances + -- under which defects in the product will be corrected for no charge. + -- A Warranty is usually limited to a length of time that is specified + -- in the Warranty itself. A Warranty also includes information about + -- what is not covered and actions that invalidate the Warranty. + fun Warranty : Ind DeonticAttribute ; + + -- The Class of samples of the compound H20. Note + -- that this Class covers both pure and impure Water. + fun Water : Class ; + fun Water_Class : SubClass Water CompoundSubstance ; + + -- A body which is made up predominantly of water, + -- e.g. rivers, lakes, oceans, etc. + fun WaterArea : Class ; + fun WaterArea_Class : SubClass WaterArea GeographicArea ; + + -- Any Cloud that is composed primarily of water vapor. + fun WaterCloud : Class ; + fun WaterCloud_Class : SubClass WaterCloud Cloud ; + + -- Any LiquidMotion where the Liquid is Water. + fun WaterMotion : Class ; + fun WaterMotion_Class : SubClass WaterMotion LiquidMotion ; + + -- SI power measure. Symbol: W. A UnitOfMeasure + -- that measures power, i.e. energy produced or expended divided by + -- TimeDuration. It is the power which gives rise to the production + -- of energy (or work) at the rate of one Joule per SecondDuration. + -- Watt = J/s = m^2*kg*s^(_3). + fun Watt : Ind CompositeUnitOfMeasure ; + + -- A UnaryFunction that maps an Agent to a + -- CurrencyMeasure specifying the value of the property owned by the Agent. + -- Note that this Function is generally used in conjunction with the + -- Function PropertyFn, e.g. (WealthFn (PropertyFn BillGates)) would + -- return the monetary value of the sum of Bill Gates' holdings. + fun WealthFn : El Agent -> Ind CurrencyMeasure ; + + -- The Class of Devices that are designed + -- primarily to damage or destroy Humans/Animals, StationaryArtifacts or + -- the places inhabited by Humans/Animals. + fun Weapon : Class ; + fun Weapon_Class : SubClass Weapon Device ; + + -- WearableItem is the subclass of + -- Artifacts that are made to be worn on the body. + fun WearableItem : Class ; + fun WearableItem_Class : SubClass WearableItem Artifact ; + + -- WeatherProcess is the broadest class of + -- processes that involve weather, including weather seasons (not to be confused + -- with instances of SeasonOfYear), weather systems, and short_term weather + -- events. + fun WeatherProcess : Class ; + fun WeatherProcess_Class : SubClass WeatherProcess Motion ; + + -- SI magnetic flux measure. Symbol: Wb. It is the + -- magnetic flux which, linking a circuit of one turn, produces in it an + -- electromotive force of 1 Volt as it is reduced to zero at a uniform + -- rate in 1 SecondDuration. Weber = V*s = m^2*kg*s^(_2)*A^(_1). + fun Weber : Ind CompositeUnitOfMeasure ; + + -- Any Declaring that leads to one person being + -- the spouse of another. + fun Wedding : Class ; + fun Wedding_Class : SubClass Wedding Declaring ; + + -- The Class of all calendar Wednesdays. + fun Wednesday : Class ; + fun Wednesday_Class : SubClass Wednesday Day ; + + -- The Class of all calendar weeks. + fun Week : Class ; + fun Week_Class : SubClass Week TimeInterval ; + + -- Time unit. A week's duration is seven days. + fun WeekDuration : Ind UnitOfDuration ; + + -- The compass direction of West. + fun West : Ind DirectionalAttribute ; + + -- An Attribute which indicates that the + -- associated Object is fully saturated with a Liquid, i.e. + -- every part of the Object has a subpart which is a Liquid. + fun Wet : Ind SaturationAttribute ; + + -- The Class of Processes where a Liquid is + -- added to an Object. + fun Wetting : Class ; + fun Wetting_Class : SubClass Wetting Putting ; + + -- A UnaryFunction that maps an Object or + -- Process to the exact TimeInterval during which it exists. Note + -- that, for every TimePoint ?TIME outside of the TimeInterval + -- (WhenFn ?THING), (time ?THING ?TIME) does not hold. + fun WhenFn : El Physical -> Ind TimeInterval ; + + -- Maps an Object and a TimePoint at which the Object exists to + -- the Region where the Object existed at that TimePoint. + fun WhereFn : El Physical -> El TimePoint -> Ind Region ; + + -- The Attribute of being white in color. + fun White : Ind PrimaryColor ; + + -- Any Motion of Air. + fun Wind : Class ; + fun Wind_Class : SubClass Wind GasMotion ; + + -- The class of Female Humans. + fun Woman : Class ; + fun Woman_Class : SubClass Woman Human ; + + -- A term of a Language that represents a concept. + fun Word : Class ; + fun Word_Class : SubClass Word LinguisticExpression ; + + -- Long, narrow, soft_bodied Invertebrates. + fun Worm : Class ; + fun Worm_Class : SubClass Worm Invertebrate ; + + -- A subclass of ContentDevelopment in which + -- content is converted from one form (e.g. uttered, written or represented + -- mentally) into a written form. Note that this class covers both + -- transcription and original creation of written Texts. + fun Writing : Class ; + fun Writing_Class : SubClass Writing ContentDevelopment ; + + -- The Class of all calendar Years. + fun Year : Class ; + fun Year_Class : SubClass Year TimeInterval ; + + -- Time unit. one calendar year. 1 year = 365 days = 31536000 seconds. + fun YearDuration : Ind UnitOfDuration ; + + -- A UnaryFunction that maps a number to the corresponding calendar + -- Year. For example, (YearFn 1912) returns the Class containing just one instance, + -- the year of 1912. As might be expected, positive integers return years in the Common Era, + -- while negative integers return years in B.C.E. Note that this function returns a Class + -- as a value. The reason for this is that the related functions, viz. MonthFn, DayFn, + -- HourFn, MinuteFn, and SecondFn, are used to generate both specific TimeIntervals + -- and recurrent intervals, and the only way to do this is to make the domains and ranges of + -- these functions classes rather than individuals. + fun YearFn : El Integer -> Desc Year ; + + -- The Attribute of being yellow in color. + fun Yellow : Ind PrimaryColor ; + + -- (abstractCounterpart ?AB ?PHYS + -- relates a Physical entity to an Abstract one which is an idealized + -- model in some dimension of the Physical entity. For example, an + -- Abstract GraphNode could be stated to be the counterpart of an + -- actual Computer in a ComputerNetwork. + fun abstractCounterpart : El Abstract -> El Physical -> Formula ; + + -- (acquaintance ?H1 ?H2) means that ?H1 has + -- met and knows something about ?H2, such as ?H2's name and appearance. + -- Statements made with this predicate should be temporally specified with + -- holdsDuring. Note that acquaintance is not symmetric. For the + -- symmetric version, see mutualAcquaintance. + fun acquaintance : El Human -> El Human -> Formula ; + + -- Simply relates an Object to a ConstantQuantity + -- specifying the age of the Object. + fun age : El Object -> El TimeDuration -> Formula ; + + -- (agent ?PROCESS ?AGENT) means that ?AGENT is + -- an active determinant, either animate or inanimate, of the Process + -- ?PROCESS, with or without voluntary intention. For example, Eve is an + -- agent in the following proposition: Eve bit an apple. + fun agent : El Process -> El Agent -> Formula ; + + -- A TernaryPredicate that is + -- used to state the distance between the top of an Object and + -- another point that is below the top of the Object (often this + -- other point will be sea level). Note that this Predicate can be + -- used to specify, for example, the height of geographic features, + -- e.g. mountains, the altitude of aircraft, and the orbit of satellites + -- around the Earth. + fun altitude : El Physical -> El Physical -> El LengthMeasure -> Formula ; + + -- The transitive closure of the parent predicate. + -- (ancestor ?DESCENDANT ?ANCESTOR) means that ?ANCESTOR is either the + -- parent of ?DESCENDANT or the parent of the parent of DESCENDANT or etc. + fun ancestor : El Organism -> El Organism -> Formula ; + + -- (angleOfFigure ?ANGLE ?FIGURE) means that + -- the TwoDimensionalAngle ?ANGLE is part of the GeometricFigure ?FIGURE. + fun angleOfFigure : El GeometricFigure -> El GeometricFigure -> Formula ; + + -- (angularMeasure ?ANGLE ?MEASURE) means that + -- the two_dimensional geometric angle ?ANGLE has the PlaneAngleMeasure of + -- ?MEASURE. + fun angularMeasure : El TwoDimensionalAngle -> El PlaneAngleMeasure -> Formula ; + + -- This predicate indicates the value of a + -- GraphArc in a Graph. This could map to the length of a road in + -- a road network or the flow rate of a pipe in a plumbing system. + fun arcWeight : El GraphArc -> El Quantity -> Formula ; + + -- (atomicNumber ?ELEMENT ?NUMBER) means that + -- the ElementalSubstance ?ELEMENT has the atomic number ?NUMBER. The + -- atomic number is the number of Protons in the nucleus of an Atom. + fun atomicNumber : Desc ElementalSubstance -> El PositiveInteger -> Formula ; + + -- (attends ?DEMO ?PERSON) means that ?PERSON attends, + -- i.e. is a member of the audience, of the performance event ?DEMO. + fun attends : El Demonstrating -> El Human -> Formula ; + + -- (attribute ?OBJECT ?PROPERTY) means that + -- ?PROPERTY is a Attribute of ?OBJECT. For example, + -- (attribute MyLittleRedWagon Red). + fun attribute : El Object -> El Attribute -> Formula ; + + -- (authors ?AGENT ?TEXT) means that ?AGENT is + -- creatively responsible for ?TEXT. For example, Agatha Christie is + -- author of Murder_on_the_Orient_Express. + fun authors : El Agent -> Desc Text -> Formula ; + + -- A partial function that relates a List to a + -- RealNumber, provided that the List only has list elements that are + -- RealNumbers. The RealNumber associated with the List is equal to the + -- mathematical average of the RealNumbers in the List divided by the total + -- number of list elements. + fun average : El List -> El RealNumber -> Formula ; + + -- (barometricPressure ?AREA ?PRESSURE) means that the atmospheric + -- pressure measured at ?AREA is ?PRESSURE. Barometric pressure is + -- typically expressed in units of InchMercury or MmMercury. For + -- example, standard sea level pressure is 29.92 inches (760 mm) of mercury: + -- (barometricPressure SeaLevel (MeasureFn 29.92 InchMercury)). + fun barometricPressure : El Object -> El UnitOfAtmosphericPressure -> Formula ; + + -- (before ?POINT1 ?POINT2) means that ?POINT1 + -- precedes ?POINT2 on the universal timeline. + fun before : El TimePoint -> El TimePoint -> Formula ; + + -- (beforeOrEqual ?POINT1 ?POINT2) means that ?POINT1 + -- is identical with ?POINT2 or occurs before it on the universal timeline. + fun beforeOrEqual : El TimePoint -> El TimePoint -> Formula ; + + -- The epistemic predicate of belief. (believes ?AGENT ?FORMULA) means + -- that ?AGENT believes the proposition expressed by ?FORMULA. + fun believes : El CognitiveAgent -> Formula -> Formula ; + + -- (between ?OBJ1 ?OBJ2 ?OBJ3) means that ?OBJ2 is + -- spatially located between ?OBJ1 and ?OBJ3. Note that this implies that + -- ?OBJ2 is directly between ?OBJ1 and ?OBJ3, i.e. the projections of ?OBJ1 + -- and ?OBJ3 overlap with ?OBJ2. + fun between : El Object -> El Object -> El Object -> Formula ; + + -- The temperature at which a PureSubstance changes + -- state from a Liquid to a Gas. + fun boilingPoint : Desc PureSubstance -> El TemperatureMeasure -> Formula ; + + -- (bottom ?BOTTOM ?OBJECT) holds if ?BOTTOM is the + -- lowest or deepest maximal superficial part of ?OBJECT. + fun bottom : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; + + -- The general relationship of being a brother. + -- (brother ?MAN ?PERSON) means that ?MAN is the brother of ?PERSON. + fun brother : El Man -> El Human -> Formula ; + + -- The causation relation between instances of Process. + -- (causes ?PROCESS1 ?PROCESS2) means that the instance of Process ?PROCESS1 + -- brings about the instance of Process ?PROCESS2. + fun causes : El Process -> El Process -> Formula ; + + -- (causesProposition ?FORMULA1 ?FORMULA2) means + -- that the state of affairs described by ?FORMULA1 + -- causes, or mechanistically brings about, the state of affairs + -- described by ?FORMULA2. Note that unlike entails, the time + -- during which ?FORMULA2 holds cannot precede the time during which + -- ?FORMULA1 holds, although ?FORMULA1 and ?FORMULA2 can hold + -- simultaneously. Note, also, that causesProposition is a + -- predicate, not a truth function. The following rule + -- (contraposition) does not hold: (=> (causesProp ?FORMULA1 + -- ?FORMULA2) (causesProp (not ?FORMULA2) (not ?FORMULA1))). + fun causesProposition : Formula -> Formula -> Formula ; + + -- The causation relation between subclasses of Process. + -- (causesSubclass ?PROCESS1 ?PROCESS2) means that the subclass of Process ?PROCESS1 + -- brings about the subclass of Process ?PROCESS2, e.g. (causesSubclass Killing + -- Death). + fun causesSubclass : Desc Process -> Desc Process -> Formula ; + + -- (citizen ?PERSON ?NATION) means that the + -- Human ?PERSON is a citizen of Nation ?NATION. + fun citizen : El Human -> El Nation -> Formula ; + + -- (completelyFills ?OBJ ?HOLE) + -- means that some part of the Object ?OBJ fills the Hole ?HOLE. + -- Note that if (completelyFills ?OBJ1 ?HOLE) and (part ?OBJ1 ?OBJ2), + -- then (completelyFills ?OBJ2 ?HOLE). A complete filler of (a part of) a hole + -- is connected with everything with which (that part of) the hole itself is connected. + -- A perfect filler of (a part of) a hole completely fills every proper + -- part of (that part of) that hole. + fun completelyFills : El Object -> El Hole -> Formula ; + + -- A specialized common sense notion of part + -- for heterogeneous parts of complexes. (component ?COMPONENT ?WHOLE) + -- means that ?COMPONENT is a component of ?WHOLE. Examples of component + -- include the doors and walls of a house, the states or provinces of a + -- country, or the limbs and organs of an animal. Compare piece, which + -- is also a subrelation of part. + fun component : El CorpuscularObject -> El CorpuscularObject -> Formula ; + + -- (conclusion ?ARGUMENT ?PROPOSITION) means that + -- the Proposition ?PROPOSITION is the conclusion explicitly drawn from the + -- Argument ?ARGUMENT. Note that it may or may not be the case that ?ARGUMENT + -- entails ?PROPOSITION. + fun conclusion : El Argument -> El Proposition -> Formula ; + + -- One of the basic ProbabilityRelations. + -- conditionalProbability is used to state the numeric value of a conditional + -- probability. (conditionalProbability ?FORMULA1 ?FORMULA2 ?NUMBER) means + -- that the probability of ?FORMULA2 being true given that ?FORMULA1 is true is + -- ?NUMBER. + fun conditionalProbability : Formula -> Formula -> El RealNumber -> Formula ; + + -- Expresses the relationship between a Formula, + -- an Entity, and an ObjectiveNorm when the Entity brings it about that + -- the Formula has the ObjectiveNorm. + fun confersNorm : El Entity -> Formula -> El ObjectiveNorm -> Formula ; + + -- Expresses the relationship between a + -- a Formula, an Entity, and a CognitiveAgent when the Entity + -- obligates the CognitiveAgent to bring it about that the Formula is true. + fun confersObligation : Formula -> El Entity -> El CognitiveAgent -> Formula ; + + -- Expresses the relationship between a Formula, + -- an Entity, and a CognitiveAgent when the Entity authorizes the + -- CognitiveAgent to bring it about that the Formula is true. + fun confersRight : Formula -> El Entity -> El CognitiveAgent -> Formula ; + + -- (connected ?OBJ1 ?OBJ2) means that ?OBJ1 + -- meetsSpatially ?OBJ2 or that ?OBJ1 overlapsSpatially ?OBJ2. + fun connected : El Object -> El Object -> Formula ; + + -- This is the most general + -- connection relation between EngineeringComponents. If + -- (connectedEngineeringComponents ?COMP1 ?COMP2), then neither ?COMP1 nor + -- ?COMP2 can be an engineeringSubcomponent of the other. The relation + -- connectedEngineeringComponents is a SymmetricRelation, there is no + -- information in the direction of connection between two components. It is + -- also an IrreflexiveRelation, no EngineeringComponent bears this relation + -- to itself. Note that this relation does not associate a name or type + -- with the connection. + fun connectedEngineeringComponents : El EngineeringComponent -> El EngineeringComponent -> Formula ; + + -- The relationship between three things, when one of + -- the three things connects the other two. More formally, (connects ?OBJ1 ?OBJ2 ?OBJ3) + -- means that (connected ?OBJ1 ?OBJ2) and (connected ?OBJ1 ?OBJ3) + -- and not (connected ?OBJ2 ?OBJ3). + fun connects : El SelfConnectedObject -> El SelfConnectedObject -> El SelfConnectedObject -> Formula ; + + -- connectsEngineeringComponents + -- is a TernaryPredicate that maps from an EngineeringConnection to the + -- EngineeringComponents it connects. Since EngineeringComponents cannot + -- be connected to themselves and there cannot be an EngineeringConnection + -- without a connectedEngineeringComponents Predicate, the second and third + -- arguments of any connectsEngineeringComponents relationship will always be + -- distinct for any given first argument. + fun connectsEngineeringComponents : El EngineeringComponent -> El EngineeringComponent -> El SelfConnectedObject -> Formula ; + + -- (considers ?AGENT ?FORMULA) means that ?AGENT considers or wonders + -- about the truth of the proposition expressed by ?FORMULA. + fun considers : El CognitiveAgent -> Formula -> Formula ; + + -- (consistent ?PROP1 ?PROP2) means that the two + -- Propositions ?PROP1 and ?PROP2 are consistent with one another, i.e. it + -- is possible for both of them to be true at the same time. + fun consistent : El Proposition -> El Proposition -> Formula ; + + -- The relation of spatial containment for two + -- separable objects. When the two objects are not separable (e.g. an + -- automobile and one of its seats), the relation of part should be used. + -- (contains ?OBJ1 ?OBJ2) means that the SelfConnectedObject ?OBJ1 has + -- a space (i.e. a Hole) which is at least partially filled by ?OBJ2. + fun contains : El SelfConnectedObject -> El Object -> Formula ; + + -- A subrelation of represents. This + -- predicate relates a ContentBearingPhysical to the Proposition that is + -- expressed by the ContentBearingPhysical. Examples include the relationships + -- between a physical novel and its story and between a printed score and its + -- musical content. + fun containsInformation : El ContentBearingPhysical -> El Proposition -> Formula ; + + -- A contraryAttribute is a set of Attributes + -- such that something can not simultaneously have more than one of these Attributes. + -- For example, (contraryAttribute Pliable Rigid) means that nothing can be both + -- Pliable and Rigid. + fun contraryAttribute : [El Attribute] -> Formula ; + + -- (cooccur ?THING1 ?THING2) means that the + -- Object or Process ?THING1 occurs at the same time as, together with, + -- or jointly with the Object or Process ?THING2. This covers the + -- following temporal relations: is co_incident with, is concurrent with, + -- is contemporaneous with, and is concomitant with. + fun cooccur : El Physical -> El Physical -> Formula ; + + -- relates an Object to an exact copy of the + -- Object, where an exact copy is indistinguishable from the original + -- with regard to every property except (possibly) spatial and/or temporal + -- location. + fun copy : El Object -> El Object -> Formula ; + + -- (crosses ?OBJ1 ?OBJ2) means that Object ?OBJ1 + -- traverses Object ?OBJ2, without being connected to it. + fun crosses : El Object -> El Object -> Formula ; + + -- A BinaryPredicate that specifies a + -- TimePosition in absolute calendar time, at the resolution + -- of one day, for a particular Object or Process. + fun date : El Physical -> El Day -> Formula ; + + -- The general relationship of daughterhood. + -- (daughter ?CHILD ?PARENT) means that ?CHILD is + -- the biological daughter of ?PARENT. + fun daughter : El Organism -> El Organism -> Formula ; + + -- One of the basic ProbabilityRelations. + -- (decreasesLikelihood ?FORMULA1 ?FORMULA2) means that ?FORMULA2 is less + -- likely to be true if ?FORMULA1 is true. + fun decreasesLikelihood : Formula -> Formula -> Formula ; + + -- Expresses the relationship between an + -- Entity, a Formula, and an ObjectiveNorm when the Entity + -- brings it about that the Formula does not have the ObjectiveNorm. + fun deprivesNorm : El Entity -> Formula -> El ObjectiveNorm -> Formula ; + + -- A TernaryPredicate that is + -- used to state the distance between the top of an Object and + -- another point that is above the top of the Object (often this + -- other point will be sea level). Note that this Predicate can be + -- used to specify, for example, the depth of marine life or submarines, + -- for example. + fun depth : El Physical -> El Physical -> El LengthMeasure -> Formula ; + + -- (desires ?AGENT ?FORMULA) means that ?AGENT wants + -- to bring about the state of affairs expressed by ?FORMULA. Note that there + -- is no implication that what is desired by the agent is not already true. + -- Note too that desires is distinguished from wants only in that the former + -- is a PropositionalAttitude, while wants is an ObjectAttitude. + fun desires : El CognitiveAgent -> Formula -> Formula ; + + -- (destination ?PROCESS ?GOAL) means that + -- ?GOAL is the target or goal of the Process ?PROCESS. For example, + -- Danbury would be the destination in the following proposition: Bob went + -- to Danbury. Note that this is a very general CaseRole and, in + -- particular, that it covers the concepts of 'recipient' and 'beneficiary'. + -- Thus, John would be the destination in the following proposition: + -- Tom gave a book to John. + fun destination : El Process -> El Entity -> Formula ; + + -- (developmentalForm ?OBJECT ?FORM) + -- means that ?FORM is an earlier stage in the individual maturation of + -- ?OBJECT. For example, tadpole and caterpillar are developmentalForms + -- of frogs and butterflies, respectively. + fun developmentalForm : El OrganicObject -> El DevelopmentalAttribute -> Formula ; + + -- (diameter ?CIRCLE ?LENGTH) means that the diameter + -- of the Circle ?CIRCLE has a length of ?LENGTH. + fun diameter : El Circle -> El LengthMeasure -> Formula ; + + -- (direction ?PROC ?ATTR) means that the + -- Process ?PROC is moving in the direction ?ATTR. For example, one + -- would use this Predicate to represent the fact that Max is moving + -- North. + fun direction : El Process -> El DirectionalAttribute -> Formula ; + + -- Classes are disjoint only if they share no + -- instances, i.e. just in case the result of applying IntersectionFn to + -- them is empty. + fun disjoint : El SetOrClass -> El SetOrClass -> Formula ; + + -- A disjointDecomposition of a Class + -- C is a set of subclasses of C that are mutually disjoint. + fun disjointDecomposition : Class -> [Class] -> Formula ; + + -- (distance ?OBJ1 ?OBJ2 ?QUANT) means that the + -- shortest distance between the two objects ?OBJ1 and ?OBJ2 is ?QUANT. Note + -- that the difference between the predicates length and distance is that + -- the length is used to state the LengthMeasure of one of the dimensions of + -- a single object, while distance is used to state the LengthMeasure that + -- separates two distinct objects. + fun distance : El Physical -> El Physical -> El LengthMeasure -> Formula ; + + -- A relation between objects + -- in the domain of discourse and strings of natural language text stated in + -- a particular HumanLanguage. The domain of documentation is not + -- constants (names), but the objects themselves. This means that one does + -- not quote the names when associating them with their documentation. + fun documentation : El Entity -> El HumanLanguage -> El SymbolicString -> Formula ; + + -- (duration ?POS ?TIME) means that the + -- duration of the TimePosition ?POS is ?TIME. Note that this + -- Predicate can be used in conjunction with the Function WhenFn + -- to specify the duration of any instance of Physical. + fun duration : El TimeInterval -> El TimeDuration -> Formula ; + + -- (during ?INTERVAL1 ?INTERVAL2) means that + -- ?INTERVAL1 starts after and ends before ?INTERVAL2. + fun during : El TimeInterval -> El TimeInterval -> Formula ; + + -- (earlier ?INTERVAL1 ?INTERVAL2) means that + -- the TimeInterval ?INTERVAL1 ends before the TimeInterval ?INTERVAL2 + -- begins. + fun earlier : El TimeInterval -> El TimeInterval -> Formula ; + + -- (editor ?AGENT ?TEXT) means that ?AGENT is + -- an editor of ?TEXT. + fun editor : El Agent -> Desc Text -> Formula ; + + -- (element ?ENTITY ?SET) is true just in case + -- ?ENTITY is contained in the Set ?SET. An Entity can be an element + -- of another Entity only if the latter is a Set. + fun element : El Entity -> El Set -> Formula ; + + -- (employs ?ORG ?PERSON) means that ?ORG has + -- hired ?PERSON and currently retains ?PERSON, on a salaried, hourly + -- or contractual basis, to provide services in exchange for monetary + -- compensation. + fun employs : El Organization -> El CognitiveAgent -> Formula ; + + -- (engineeringSubcomponent ?SUB ?SUPER) + -- means that the EngineeringComponent ?SUB is structurally a + -- properPart of ?SUPER. This relation is an AsymmetricRelation, since + -- two EngineeringComponents cannot be subcomponents of each other. + fun engineeringSubcomponent : El EngineeringComponent -> El EngineeringComponent -> Formula ; + + -- The operator of logical entailment. (entails ?FORMULA1 ?FORMULA2) + -- means that ?FORMULA2 can be derived from ?FORMULA1 + -- by means of the proof theory of SUO_KIF. + fun entails : Formula -> Formula -> Formula ; + + -- (equal ?ENTITY1 ?ENTITY2) is true just in case + -- ?ENTITY1 is identical with ?ENTITY2. + fun equal : El Entity -> El Entity -> Formula ; + + -- A binary predicate that relates two subclasses of ContentBearingObject. + -- (equivalentContentClass ?CLASS1 ?CLASS2) means that the content expressed by + -- each instance of ?CLASS1 is also expressed by each instance of ?CLASS2, + -- and vice versa. An example would be the relationship between English and Russian + -- editions of Agatha Christie's 'Murder on the Orient Express'. Note that + -- (equivalentContentClass ?CLASS1 ?CLASS2) implies + -- (subsumesContentClass ?CLASS1 ?CLASS2) and (subsumesContentClass ?CLASS2 ?CLASS1). + fun equivalentContentClass : Desc ContentBearingObject -> Desc ContentBearingObject -> Formula ; + + -- A BinaryPredicate relating two + -- instances of ContentBearingObject. (equivalentContentInstance ?OBJ1 ?OBJ2) + -- means that the content expressed by ?OBJ1 is identical to + -- the content expressed by ?OBJ2. An example would be the relationship + -- between a handwritten draft of a letter to one's lawyer and a typed + -- copy of the same letter. Note that (equivalentContentInstance ?OBJ1 ?OBJ2) + -- implies (subsumesContentInstance ?OBJ1 ?OBJ2) and + -- (subsumesContentInstance ?OBJ2 ?OBJ2). + fun equivalentContentInstance : El ContentBearingObject -> El ContentBearingObject -> Formula ; + + -- The actual, minimal location of an Object. + -- This is a subrelation of the more general Predicate located. + fun exactlyLocated : El Physical -> El Object -> Formula ; + + -- This predicate relates a Class to a + -- set of Attributes, and it means that the elements of this set exhaust the + -- instances of the Class. For example, (exhaustiveAttribute PhysicalState + -- Solid Fluid Liquid Gas Plasma) means that there are only five instances of + -- the class PhysicalState, viz. Solid, Fluid, Liquid, Gas and Plasma. + fun exhaustiveAttribute : Desc Attribute -> [El Attribute] -> Formula ; + + -- An exhaustiveDecomposition of a + -- Class C is a set of subclasses of C such that every instance of C is an + -- instance of one of the subclasses in the set. Note: this does not necessarily + -- mean that the elements of the set are disjoint (see partition _ a partition + -- is a disjoint exhaustive decomposition). + fun exhaustiveDecomposition : Class -> [Class] -> Formula ; + + -- (experiencer ?PROCESS ?AGENT) means + -- that ?AGENT experiences the Process ?PROCESS. For example, Yojo + -- is the experiencer of seeing in the following proposition: Yojo + -- sees the fish. Note that experiencer, unlike agent, does + -- not entail a causal relation between its arguments. + fun experiencer : El Process -> El Entity -> Formula ; + + -- (exploits ?OBJ ?AGENT) means that ?OBJ is used + -- by ?AGENT as a resource in an unspecified instance of Process. This + -- Predicate, as its corresponding axiom indicates, is a composition of the + -- relations agent and resource. + fun exploits : El Object -> El Agent -> Formula ; + + -- (expressedInLanguage ?EXPRESS ?LANG) means that the + -- LinguisticExpression ?EXPRESS is part of the Language ?LANG. + fun expressedInLanguage : El LinguisticExpression -> El Language -> Formula ; + + -- (faces ?OBJ ?DIRECTION) means that the front of + -- ?OBJ (see FrontFn) is positioned towards the compass direction ?DIRECTION. + -- More precisely, it means that if a line were extended from the center of + -- ?DIRECTION, the line would intersect with the front of ?OBJ before it + -- intersected with its back (see BackFn). + fun faces : El Object -> El DirectionalAttribute -> Formula ; + + -- A very general Predicate for biological + -- relationships. (familyRelation ?ORGANISM1 ?ORGANISM2) means that + -- ?ORGANISM1 and ?ORGANISM2 are biologically derived from a common ancestor. + fun familyRelation : El Organism -> El Organism -> Formula ; + + -- The general relationship of fatherhood. + -- (father ?CHILD ?FATHER) means that ?FATHER is the biological father of ?CHILD. + fun father : El Organism -> El Organism -> Formula ; + + -- Holes can be filled. (fills ?OBJ ?HOLE) + -- means that the Object ?OBJ fills the Hole ?HOLE. Note that + -- fills here means perfectly filled. Perfect fillers and fillable entities have no parts in common (rather, + -- they may occupy the same spatial region). + fun fills : El Object -> El Hole -> Formula ; + + -- (finishes ?INTERVAL1 ?INTERVAL2) means that + -- ?INTERVAL1 and ?INTERVAL2 are both TimeIntervals that have the same + -- ending TimePoint and that ?INTERVAL2 begins before ?INTERVAL1. + fun finishes : El TimeInterval -> El TimeInterval -> Formula ; + + -- (frequency ?PROC ?TIME) means that the + -- Process type of ?PROC recurs after every interval of ?TIME. + fun frequency : Desc Process -> El TimeDuration -> Formula ; + + -- (geographicSubregion ?PART ?WHOLE) means that the GeographicArea ?PART is + -- part of the GeographicArea ?WHOLE. + fun geographicSubregion : El GeographicArea -> El GeographicArea -> Formula ; + + -- (geometricDistance ?POINT1 ?POINT2 ?LENGTH) + -- means that ?LENGTH is the distance between the two + -- GeometricPoints ?POINT1 and ?POINT2. + fun geometricDistance : El GeometricPoint -> El GeometricPoint -> El LengthMeasure -> Formula ; + + -- (geometricPart ?PART ?WHOLE) means that the + -- GeometricFigure ?PART is part of the GeometricFigure ?WHOLE. + fun geometricPart : El GeometricFigure -> El GeometricFigure -> Formula ; + + -- (geopoliticalSubdivision ?AREA1 ?AREA2) means that ?AREA1 is any + -- geopolitical part of ?AREA2, that is, ?AREA1 is + -- an integral geographicSubregion of ?AREA2 (not a DependencyOrSpecialSovereigntyArea), + -- having its own associated GovernmentOrganization which is subordinated to or constrained by + -- the government of ?AREA2. Cf. dependentGeopoliticalArea. + fun geopoliticalSubdivision : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; + + -- (graphMeasure ?GRAPH ?MEAS) fixes a + -- UnitOfMeasure that is used for the arcWeight of a given Graph. Stating + -- such a relationship entails that the components of given graph are the + -- abstractCounterparts of sets of Physical Entity(ies). + fun graphMeasure : El Graph -> El UnitOfMeasure -> Formula ; + + -- A basic relation for Graphs and their + -- parts. (graphPart ?PART ?GRAPH) means that ?PART is a GraphArc + -- or GraphNode of the Graph ?GRAPH. + fun graphPart : El GraphElement -> El Graph -> Formula ; + + -- The state of grasping an Object. (grasps ?ANIMAL ?OBJ) means + -- that the Animal ?ANIMAL is intentionally holding + -- on to the Object ?OBJ. + fun grasps : El Animal -> El Object -> Formula ; + + -- (greaterThan ?NUMBER1 ?NUMBER2) is true + -- just in case the Quantity ?NUMBER1 is greater than the Quantity + -- ?NUMBER2. + fun greaterThan : El Quantity -> El Quantity -> Formula ; + + -- (greaterThanByQuality ?ENTITY1 ?ENTITY2 ?ATT) means that + -- ?ENTITY1 has more of the given quality ?ATT than ?ENTITY2 + fun greaterThanByQuality : El Entity -> El Entity -> El Attribute -> Formula ; + + -- (greaterThanOrEqualTo ?NUMBER1 + -- ?NUMBER2) is true just in case the Quantity ?NUMBER1 is greater + -- than the Quantity ?NUMBER2. + fun greaterThanOrEqualTo : El Quantity -> El Quantity -> Formula ; + + -- This Predicate expresses the concept of a + -- conventional goal, i.e. a goal with a neutralized agent's intention. + -- Accordingly, (hasPurpose ?THING ?FORMULA) means that the instance of + -- Physical ?THING has, as its purpose, the Proposition expressed by + -- ?FORMULA. Note that there is an important difference in meaning between + -- the Predicates hasPurpose and result. Although the second argument + -- of the latter can satisfy the second argument of the former, + -- a conventional goal is an expected and desired outcome, while a result + -- may be neither expected nor desired. For example, a machine process may + -- have outcomes but no goals, aimless wandering may have an outcome but no + -- goal, a learning process may have goals with no outcomes, and so on. + fun hasPurpose : El Physical -> Formula -> Formula ; + + -- Expresses a cognitive attitude of an + -- agent with respect to a particular instance of Physical. More precisely, + -- (hasPurposeForAgent ?THING ?FORMULA ?AGENT) means that the purpose of + -- ?THING for ?AGENT is the proposition expressed by ?FORMULA. Very complex + -- issues are involved here. In particular, the rules of inference of the + -- first order predicate calculus are not truth_preserving for the second + -- argument position of this Predicate. + fun hasPurposeForAgent : El Physical -> Formula -> El CognitiveAgent -> Formula ; + + -- Similar to the capability Predicate + -- with the additional restriction that the ability be practised/ + -- demonstrated to some measurable degree. + fun hasSkill : Desc Process -> El Agent -> Formula ; + + -- The height of an Object is the distance between + -- its top and its bottom. + fun height : El SelfConnectedObject -> El LengthMeasure -> Formula ; + + -- (holdsDuring ?TIME ?FORMULA) means that the + -- proposition denoted by ?FORMULA is true in the time frame ?TIME. Note + -- that this implies that ?FORMULA is true at every TimePoint which is a + -- temporalPart of ?TIME. + fun holdsDuring : El TimePosition -> Formula -> Formula ; + + -- Expresses a relationship between a + -- Formula and a CognitiveAgent whereby the CognitiveAgent has + -- the obligation to bring it about that the Formula is true. + fun holdsObligation : Formula -> El CognitiveAgent -> Formula ; + + -- Expresses a relationship between a Formula + -- and a CognitiveAgent whereby the CognitiveAgent has the right to + -- bring it about that the Formula is true. + fun holdsRight : Formula -> El CognitiveAgent -> Formula ; + + -- (hole ?HOLE ?OBJ) means that ?HOLE is a + -- Hole in ?OBJ. A Hole is a fillable body located at the + -- surface an Object. + fun hole : El Hole -> El SelfConnectedObject -> Formula ; + + -- The relation between a Human and a PermanentResidence + -- of the Human. + fun home : El Human -> El PermanentResidence -> Formula ; + + -- (husband ?MAN ?WOMAN) means that ?MAN is the + -- husband of ?WOMAN. + fun husband : El Man -> El Woman -> Formula ; + + -- (identicalListItems ?LIST1 ?LIST2) + -- means that ?LIST1 and ?LIST2 have exactly the same items in their + -- respective lists. Although ?LIST1 and ?LIST2 are required to share + -- exactly the same items, they may order these items differently. + fun identicalListItems : El List -> El List -> Formula ; + + -- A SetOrClass ?CLASS1 is an immediateSubclass + -- of another SetOrClass ?CLASS2 just in case ?CLASS1 is a subclass of ?CLASS2 and + -- there is no other subclass of ?CLASS2 such that ?CLASS1 is also a subclass of it. + fun immediateSubclass : El SetOrClass -> El SetOrClass -> Formula ; + + -- The analog of element and instance for Lists. + -- (inList ?OBJ ?LIST) means that ?OBJ is in the List ?LIST. For example, + -- (inList Tuesday (ListFn Monday Tuesday Wednesday)) would be true. + fun inList : El Entity -> El List -> Formula ; + + -- A very general Predicate. + -- (inScopeOfInterest ?AGENT ?ENTITY) means that ?ENTITY is within the + -- scope of interest of ?AGENT. Note that the interest indicated can be + -- either positive or negative, i.e. the ?AGENT can have an interest in + -- avoiding or promoting ?ENTITY. + fun inScopeOfInterest : El CognitiveAgent -> El Entity -> Formula ; + + -- One of the basic ProbabilityRelations. + -- (increasesLikelihood ?FORMULA1 ?FORMULA2) means that ?FORMULA2 is more + -- likely to be true if ?FORMULA1 is true. + fun increasesLikelihood : Formula -> Formula -> Formula ; + + -- One of the basic ProbabilityRelations. + -- (independentProbability ?FORMULA1 ?FORMULA2) means that the probabilities of + -- ?FORMULA1 and ?FORMULA2 being true are independent. + fun independentProbability : Formula -> Formula -> Formula ; + + -- A very basic notion of living within something + -- else. (inhabits ?ORGANISM ?OBJECT) means that ?OBJECT is the residence + -- (either permanent or temporary), nest, etc. of ?ORGANISM. + fun inhabits : El Organism -> El Object -> Formula ; + + -- A very general Predicate. (inhibits ?PROC1 ?PROC2) means + -- that the Process ?PROC1 inhibits or hinders + -- the occurrence of the Process ?PROC2. For example, obstructing an + -- object inhibits moving it. Note that this is a relation between types + -- of Processes, not between instances. + fun inhibits : Desc Process -> Desc Process -> Formula ; + + -- (instrument ?EVENT ?TOOL) means that ?TOOL + -- is used by an agent in bringing about ?EVENT and that ?TOOL is not + -- changed by ?EVENT. For example, the key is an instrument in the + -- following proposition: The key opened the door. Note that instrument + -- and resource cannot be satisfied by the same ordered pair. + fun instrument : El Process -> El Object -> Formula ; + + -- (interiorPart ?OBJ1 ?OBJ2) means + -- that ?OBJ1 is part ?OBJ2 and there is no overlap between ?OBJ1 and + -- any superficialPart ?OBJ2. + fun interiorPart : El Object -> El Object -> Formula ; + + -- (involvedInEvent ?EVENT ?THING) means + -- that in the Process ?EVENT, the Entity ?THING plays some CaseRole. + fun involvedInEvent : El Process -> El Entity -> Formula ; + + -- The epistemic predicate of knowing. (knows + -- ?AGENT ?FORMULA) means that ?AGENT knows the proposition expressed by + -- ?FORMULA. Note that knows entails conscious awareness, so this + -- Predicate cannot be used to express tacit or subconscious or + -- unconscious knowledge. + fun knows : El CognitiveAgent -> Formula -> Formula ; + + -- (larger ?OBJ1 ?OBJ2) means that ?OBJ1 is + -- larger, with respect to all LengthMeasures, than ?OBJ2. + fun larger : El Object -> El Object -> Formula ; + + -- (leader ?INSTITUTION ?PERSON) + -- means that the leader of ?INSTITUTION is ?PERSON. + fun leader : El Agent -> El Human -> Formula ; + + -- (legalRelation ?AGENT1 ?AGENT2) means + -- that ?AGENT1 and ?AGENT2 are relatives by virtue of a legal relationship. + -- Some examples include marriage, adoption, etc. + fun legalRelation : El Human -> El Human -> Formula ; + + -- binary predicate that is used to state the measure + -- of an Object along its longest span. + fun length : El Object -> El PhysicalQuantity -> Formula ; + + -- (lessThan ?NUMBER1 ?NUMBER2) is true just + -- in case the Quantity ?NUMBER1 is less than the Quantity ?NUMBER2. + fun lessThan : El Quantity -> El Quantity -> Formula ; + + -- (lessThanOrEqualTo ?NUMBER1 ?NUMBER2) is true + -- just in case the Quantity ?NUMBER1 is less than or equal to + -- the Quantity ?NUMBER2. + fun lessThanOrEqualTo : El Quantity -> El Quantity -> Formula ; + + -- (lineMeasure ?LINE ?MEASURE) means that the + -- straight line ?LINE has the LengthMeasure of ?MEASURE. + fun lineMeasure : El OneDimensionalFigure -> El LengthMeasure -> Formula ; + + -- Binary predicate that is used to state the measure + -- of an Object from one point to another point along its surface. Note + -- that the difference between the predicates length and distance is that + -- the length is used to state the LengthMeasure of one of the dimensions of + -- a single object, while distance is used to state the LengthMeasure that + -- separates two distinct objects. + fun linearExtent : El Object -> El LengthMeasure -> Formula ; + + -- a TernaryPredicate that specifies the + -- GraphArc connecting two GraphNodes. + fun links : El GraphNode -> El GraphNode -> El GraphArc -> Formula ; + + -- (located ?PHYS ?OBJ) means that ?PHYS is partlyLocated at ?OBJ, + -- and there is no part or subProcess of ?PHYS that is not located at ?OBJ. + fun located : El Physical -> El Object -> Formula ; + + -- (manner ?PROCESS ?MANNER) means that the + -- Process ?PROCESS is qualified by the Attribute ?MANNER. The Attributes + -- of Processes are usually denoted by adverbs and include things like the + -- speed of the wind, the style of a dance, or the intensity of a sports + -- competition. + fun manner : El Process -> El Attribute -> Formula ; + + -- (material ?SUBSTANCE ?OBJECT) means that + -- ?OBJECT is structurally made up in part of ?SUBSTANCE. This relation + -- encompasses the concepts of 'composed of', 'made of', and 'formed of'. + -- For example, plastic is a material of my computer monitor. Compare + -- part and its subrelations, viz component and piece. + fun material : Desc Substance -> El CorpuscularObject -> Formula ; + + -- A very general Predicate for + -- asserting that a particular Object is measured by a particular + -- PhysicalQuantity. In general, the second argument of this + -- Predicate will be a term produced with the Function MeasureFn. + fun measure : El Object -> El PhysicalQuantity -> Formula ; + + -- (meetsSpatially ?OBJ1 ?OBJ2) means that + -- ?OBJ1 and ?OBJ2 are connected but that neither ?OBJ1 nor ?OBJ2 + -- overlapsSpatially the other. + fun meetsSpatially : El Object -> El Object -> Formula ; + + -- (meetsTemporally ?INTERVAL1 ?INTERVAL2) + -- means that the terminal point of the TimeInterval ?INTERVAL1 is the + -- initial point of the TimeInterval ?INTERVAL2. + fun meetsTemporally : El TimeInterval -> El TimeInterval -> Formula ; + + -- The temperature at which a PureSubstance changes + -- state from a Solid to a Liquid. Note that Arsenic can sublimate directly + -- from Solid to Gas which means that its melting and boiling points are equal. + fun meltingPoint : Desc PureSubstance -> El TemperatureMeasure -> Formula ; + + -- A specialized common sense notion of part for + -- uniform parts of Collections. For example, each sheep in a flock of + -- sheep would have the relationship of member to the flock. + fun member : El SelfConnectedObject -> El Collection -> Formula ; + + -- A BinaryRelation that is used to state the + -- normative force of a Proposition. (modalAttribute ?FORMULA ?PROP) means + -- that the Proposition expressed by ?FORMULA has the NormativeAttribute + -- ?PROP. For example, (modalAttribute (exists (?ACT ?OBJ) (and + -- (instance ?ACT Giving) (agent ?ACT John) (patient ?ACT ?OBJ) + -- (destination ?ACT Tom))) Obligation) means that John is obligated to give + -- Tom something. + fun modalAttribute : Formula -> El NormativeAttribute -> Formula ; + + -- A BinaryPredicate that associates an + -- Object or Process with its value expressed as an instance of + -- CurrencyMeasure. + fun monetaryValue : El Physical -> El CurrencyMeasure -> Formula ; + + -- The general relationship of motherhood. + -- (mother ?CHILD ?MOTHER) means that ?MOTHER is the biological mother + -- of ?CHILD. + fun mother : El Organism -> El Organism -> Formula ; + + -- (multiplicativeFactor ?NUMBER1 ?NUMBER2) + -- means that ?NUMBER1 is a factor of ?NUMBER2, i.e. ?NUMBER1 can be multiplied by + -- some Integer to give ?NUMBER2 as a result. + fun multiplicativeFactor : El Integer -> El Integer -> Formula ; + + -- (mutualAcquaintance ?H1 ?H2) means + -- that ?H1 and ?H2 have met each other and know something about each other, + -- such as name and appearance. Statements made with this predicate should + -- be temporally specified with holdsDuring. See also the weaker, + -- non_symmetric version of this predicate, acquaintance. + fun mutualAcquaintance : El Human -> El Human -> Formula ; + + -- (names ?STRING ?ENTITY) means that the thing ?ENTITY + -- has the SymbolicString ?STRING as its name. Note that names and represents + -- are the two immediate subrelations of refers. The predicate names is used + -- when the referring item is merely a tag without connotative content, while the + -- predicate represents is used for referring items that have such content. + fun names : El SymbolicString -> El Entity -> Formula ; + + -- (needs ?AGENT ?OBJECT) means that ?OBJECT is + -- physically required for the continued existence of ?AGENT. + fun needs : El CognitiveAgent -> El Physical -> Formula ; + + -- (occupiesPosition ?PERSON ?POSITION ?ORG) + -- means that ?PERSON holds the Position ?POSITION at Organization ?ORG. + -- For example, (occupiesPosition TomSmith ResearchDirector + -- AcmeLaboratory) means that TomSmith is a research director at Acme Labs. + fun occupiesPosition : El Human -> El Position -> El Organization -> Formula ; + + -- A general Predicate for indicating how two + -- Objects are oriented with respect to one another. For example, + -- (orientation ?OBJ1 ?OBJ2 North) means that ?OBJ1 is north of ?OBJ2, and + -- (orientation ?OBJ1 ?OBJ2 Vertical) means that ?OBJ1 is positioned + -- vertically with respect to ?OBJ2. + fun orientation : El Object -> El Object -> El PositionalAttribute -> Formula ; + + -- (origin ?PROCESS ?SOURCE) means that ?SOURCE + -- indicates where the ?Process began. Note that this relation implies + -- that ?SOURCE is present at the beginning of the process, but need not + -- participate throughout the process. For example, the submarine is the + -- origin in the following proposition: the missile was launched from a + -- submarine. + fun origin : El Process -> El Object -> Formula ; + + -- (overlapsPartially ?OBJ1 ?OBJ2) means + -- that ?OBJ1 and ?OBJ2 have part(s) in common, but neither ?OBJ1 nor ?OBJ2 + -- is a part of the other. + fun overlapsPartially : El Object -> El Object -> Formula ; + + -- (overlapsSpatially ?OBJ1 ?OBJ2) means + -- that the Objects ?OBJ1 and ?OBJ2 have some parts in common. This is a + -- reflexive and symmetric (but not transitive) relation. + fun overlapsSpatially : El Object -> El Object -> Formula ; + + -- (overlapsTemporally ?INTERVAL1 ?INTERVAL2) + -- means that the TimeIntervals ?INTERVAL1 and ?INTERVAL2 + -- have a TimeInterval as a common part. + fun overlapsTemporally : El TimeInterval -> El TimeInterval -> Formula ; + + -- (parallel ?LINE1 ?LINE2) means that the + -- OneDimensionalFigures ?LINE1 and ?LINE2 are parallel to one another, + -- i.e. they are equidistant from one another at every point. + fun parallel : El OneDimensionalFigure -> El OneDimensionalFigure -> Formula ; + + -- The general relationship of parenthood. + -- (parent ?CHILD ?PARENT) means that ?PARENT is a biological parent + -- of ?CHILD. + fun parent : El Organism -> El Organism -> Formula ; + + -- A binary predicate is a partial ordering on a set or class + -- only if the relation is reflexive on the set or class, + -- and it is both an antisymmetric relation, and a transitive relation. + fun partialOrderingOn : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + + -- The basic mereological relation. All other + -- mereological relations are defined in terms of this one. + -- (part ?PART ?WHOLE) simply means that the Object ?PART is part + -- of the Object ?WHOLE. Note that, since part is a + -- ReflexiveRelation, every Object is a part of itself. + fun part : El Object -> El Object -> Formula ; + + -- (partiallyFills ?OBJ ?HOLE) means that ?OBJ completelyFills some part of ?HOLE. + -- Note that if (partiallyFills ?OBJ1 ?HOLE) and (part ?OBJ1 ?OBJ2), then (partiallyFills ?OBJ2 ?HOLE). + -- Note too that a partial filler need not be wholly inside a hole (it may + -- stick out), which means that every complete filler also qualifies as + -- (is a limit case of) a partial one. + fun partiallyFills : El Physical -> El Object -> Formula ; + + -- A partition of a class C is a set of + -- mutually disjoint classes (a subclass partition) which covers C. + -- Every instance of C is an instance of exactly one of the subclasses + -- in the partition. + fun partition : Class -> [Class] -> Formula ; + + -- (partlyLocated ?THING ?OBJ) means that the + -- instance of Physical ?THING is at least partially located at ?OBJ. For + -- example, Istanbul is partly located in Asia and partly located in Europe. + -- Note that partlyLocated is the most basic localization relation: located + -- is an immediate subrelation of partlyLocated and exactlyLocated is + -- an immediate subrelation of located. + fun partlyLocated : El Physical -> El Object -> Formula ; + + -- (path ?MOTION ?PATH) means that ?PATH is a route + -- along which ?MOTION occurs. For example, Highway 101 is the path in the + -- following proposition: the car drove up Highway 101. + fun path : El Motion -> El Object -> Formula ; + + -- A BinaryPredicate that specifies the + -- length (in number of GraphNodes) of a GraphPath. + -- (pathLength ?PATH ?NUMBER) means that there are ?NUMBER nodes in + -- the GraphPath ?PATH. + fun pathLength : El GraphPath -> El PositiveInteger -> Formula ; + + -- (patient ?PROCESS ?ENTITY) means that ?ENTITY + -- is a participant in ?PROCESS that may be moved, said, experienced, etc. + -- For example, the direct objects in the sentences 'The cat swallowed the + -- canary' and 'Billy likes the beer' would be examples of patients. Note + -- that the patient of a Process may or may not undergo structural + -- change as a result of the Process. The CaseRole of patient is used + -- when one wants to specify as broadly as possible the object of a + -- Process. + fun patient : El Process -> El Entity -> Formula ; + + -- (penetrates ?OBJ1 ?OBJ2) means that ?OBJ1 is connected to ?OBJ2 along + -- at least one whole dimension (length, width or depth). + fun penetrates : El Object -> El Object -> Formula ; + + -- A specialized common sense notion of part for + -- arbitrary parts of Substances. Quasi_synonyms are: chunk, hunk, bit, + -- etc. Compare component, another subrelation of part. + fun piece : El Substance -> El Substance -> Formula ; + + -- (pointOfFigure ?POINT ?FIGURE) means that + -- the GeometricPoint ?POINT is part of the GeometricFigure ?FIGURE. + fun pointOfFigure : El GeometricFigure -> El GeometricFigure -> Formula ; + + -- (pointOfIntersection ?FIGURE1 ?FIGURE2 + -- ?POINT) means that the two straight lines ?FIGURE1 and ?FIGURE2 meet at the + -- point ?POINT. + fun pointOfIntersection : El OneDimensionalFigure -> El OneDimensionalFigure -> El GeometricPoint -> Formula ; + + -- Relation that holds between an Agent and + -- an Object when the Agent has ownership of the Object. + fun possesses : El Agent -> El Object -> Formula ; + + -- A very general Predicate. (precondition + -- ?PROC1 ?PROC2) means that an instance of ?PROC2 can exist only if an + -- instance of ?PROC1 also exists. + fun precondition : Desc Process -> Desc Process -> Formula ; + + -- (prefers ?AGENT ?FORMULA1 ?FORMULA2) means that + -- CognitiveAgent ?AGENT prefers the state of affairs expressed by ?FORMULA1 + -- over the state of affairs expressed by ?FORMULA2 all things being equal. + fun prefers : El CognitiveAgent -> Formula -> Formula -> Formula ; + + -- (premise ?ARGUMENT ?PROPOSITION) means that the + -- Proposition ?PROPOSITION is an explicit assumption of the Argument + -- ?ARGUMENT. + fun premise : El Argument -> El Proposition -> Formula ; + + -- A very general Predicate. (prevents ?PROC1 ?PROC2) means that ?PROC1 + -- prevents the occurrence of ?PROC2. In other words, if ?PROC1 is occurring + -- in a particular time and place, ?PROC2 cannot occur at the same time and place. + -- For example, innoculating prevents contracting disease. Note that this is a + -- relation between types of Processes, not between instances. + fun prevents : Desc Process -> Desc Process -> Formula ; + + -- (properPart ?OBJ1 ?OBJ2) means that + -- ?OBJ1 is a part of ?OBJ2 other than ?OBJ2 itself. This is a + -- TransitiveRelation and AsymmetricRelation (hence an + -- IrreflexiveRelation). + fun properPart : El Object -> El Object -> Formula ; + + -- (properlyFills ?OBJ ?HOLE) + -- means that ?HOLE is properly (though perhaps incompletely) filled by + -- ?OBJ, i.e. some part of ?HOLE is perfectly filled by ?OBJ. Note that + -- properlyFills is the dual of completelyFills, and is so + -- related to partiallyFills that ?OBJ properlyFills ?HOLE just in + -- case ?OBJ partiallyFills every part of ?HOLE. (Thus, every perfect + -- filler is both complete and proper in this sense). + -- Every hole is connected with everything with which a proper filler + -- of the hole is connected. Every proper part of a perfect filler of (a part of) a hole properly + -- fills (that part of) that hole. + fun properlyFills : El Object -> El Hole -> Formula ; + + -- This Predicate holds between an instance of + -- Entity and an instance of Attribute. (property ?ENTITY ?ATTR) + -- means that ?ENTITY has the Attribute ?ATTR. + fun property : El Entity -> El Attribute -> Formula ; + + -- (publishes ?ORG ?TEXT) means that ?ORG + -- publishes ?TEXT. For example, Bantam Books publishes Agatha Christie's + -- Murder_on_the_Orient_Express. + fun publishes : El Organization -> Desc Text -> Formula ; + + -- (radius ?CIRCLE ?LENGTH) means that the radius of + -- the Circle ?CIRCLE has a length of ?LENGTH. + fun radius : El Circle -> El LengthMeasure -> Formula ; + + -- A subrelation of represents. + -- (realization ?PROCESS ?PROP) means that ?PROCESS is a Process which + -- expresses the content of ?PROP. Examples include a particular musical + -- performance, which realizes the content of a musical score, or the + -- reading of a poem. + fun realization : El Process -> El Proposition -> Formula ; + + -- (refers ?OBJ1 ?OBJ2) means that ?OBJ1 + -- mentions or includes a reference to ?OBJ2. Note that refers is + -- more general in meaning than represents, because presumably something + -- can represent something else only if it refers to this other thing. + -- For example, an article whose topic is a recent change in the price of + -- oil may refer to many other things, e.g. the general state of the economy, + -- the weather in California, the prospect of global warming, the options + -- for alternative energy sources, the stock prices of various oil companies, + -- etc. + fun refers : El Entity -> El Entity -> Formula ; + + -- A binary predicate is reflexive on a set or class only if + -- every instance of the set or class bears the relation to itself. + fun reflexiveOn : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + + -- (relatedEvent ?EVENT1 ?EVENT2) means + -- that the Process ?EVENT1 is related to the Process ?EVENT2. The + -- relationship is between separate individual events, not events and + -- their subprocesses. On the other hand, two subProcesses of the same + -- overarching event may be relatedEvents. The argument order does not + -- imply temporal ordering. + fun relatedEvent : El Process -> El Process -> Formula ; + + -- Used to signify a three_place + -- relation between a concept in an external knowledge source, a concept + -- in the SUMO, and the name of the other knowledge source. + fun relatedExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; + + -- Means that the two arguments are + -- related concepts within the SUMO, i.e. there is a significant similarity + -- of meaning between them. To indicate a meaning relation between a SUMO + -- concept and a concept from another source, use the Predicate + -- relatedExternalConcept. + fun relatedInternalConcept : El Entity -> El Entity -> Formula ; + + -- (relative ?O1 ?O2) means that ?O1 + -- and ?O2 are relatives, whether through common ancestry (consanguinity), + -- someone's marriage (affinity), or someone's adoption. This definition is + -- intentionally broad, so as to capture a wide array of `familial' + -- relations. The notion of who counts as `family' also varies between + -- cultures, but that aspect of meaning is not addressed here. + fun relative : El Organism -> El Organism -> Formula ; + + -- A very general semiotics Predicate. + -- (represents ?THING ?ENTITY) means that ?THING in some way indicates, + -- expresses, connotes, pictures, describes, etc. ?ENTITY. The Predicates + -- containsInformation and realization are subrelations of represents. + -- Note that represents is a subrelation of refers, since something can + -- represent something else only if it refers to this other thing. See the + -- documentation string for names. + fun represents : El Entity -> El Entity -> Formula ; + + -- A very general predicate. + -- (representsForAgent ?ENTITY1 ?ENTITY2 ?AGENT) means that the ?AGENT + -- chooses to use ?ENTITY1 to 'stand for' ?ENTITY2. + fun representsForAgent : El Entity -> El Entity -> El Agent -> Formula ; + + -- A very general predicate. + -- (representsInLanguage ?THING ?ENTITY ?LANGUAGE) means that the + -- LinguisticExpression ?THING stands for ?ENTITY in the Language + -- ?LANGUAGE. + fun representsInLanguage : El LinguisticExpression -> El Entity -> El Language -> Formula ; + + fun resourceS : El Process -> El Entity -> Formula ; + + -- (result ?ACTION ?OUTPUT) means that ?OUTPUT is + -- a product of ?ACTION. For example, house is a result in the + -- following proposition: Eric built a house. + fun result : El Process -> El Entity -> Formula ; + + -- The relationship between two Organisms that + -- have the same mother and father. Note that this relationship does + -- not hold between half_brothers, half_sisters, etc. + fun sibling : El Organism -> El Organism -> Formula ; + + -- (side ?SIDE ?OBJECT) means that ?SIDE is a side of the object, + -- as opposed to the top or bottom. + fun side : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; + + -- The general relationship of being a sister. + -- (sister ?WOMAN ?PERSON) means that ?WOMAN is the sister of ?PERSON. + fun sister : El Woman -> El Human -> Formula ; + + -- (smaller ?OBJ1 ?OBJ2) means that ?OBJ1 + -- is smaller, with respect to all LengthMeasures, than ?OBJ2. + fun smaller : El Object -> El Object -> Formula ; + + -- The general relationship of being a son. + -- (son ?CHILD ?PARENT) means that ?CHILD is the biological + -- son of ?PARENT. + fun son : El Organism -> El Organism -> Formula ; + + -- The relationship of marriage between two Humans. + fun spouse : El Human -> El Human -> Formula ; + + -- (starts ?INTERVAL1 ?INTERVAL2) means that + -- ?INTERVAL1 and ?INTERVAL2 are both TimeIntervals that have the same + -- initial TimePoint and that ?INTERVAL1 ends before ?INTERVAL2. + fun starts : El TimeInterval -> El TimeInterval -> Formula ; + + -- The relation between a Human and a TemporaryResidence + -- of the Human. + fun stays : El Human -> El TemporaryResidence -> Formula ; + + -- Means that the second argument can be + -- ascribed to everything which has the first argument ascribed to it. + fun subAttribute : El Attribute -> El Attribute -> Formula ; + + -- (subCollection ?COLL1 ?COLL2) means that + -- the Collection ?COLL1 is a proper part of the Collection ?COLL2. + fun subCollection : El Collection -> El Collection -> Formula ; + + -- The relation between two Graphs when one + -- Graph is a part of the other. (subGraph ?GRAPH1 ?GRAPH2) means + -- that ?GRAPH1 is a part of ?GRAPH2. + fun subGraph : El Graph -> El Graph -> Formula ; + + -- (subList ?LIST1 ?LIST2) means that ?LIST1 is a + -- sublist of ?LIST2, i.e. every element of ?LIST1 is an element of ?LIST2 and + -- the elements that are common to both Lists have the same order in both + -- Lists. Elements that are common to both Lists and are consecutive in one + -- list must also be consecutive in the other list. (Therefore _ the list of + -- prime numbers smaller than 10 [1 2 3 5 7] is not a subList of the + -- natural numbers smaller than 10 [1 2 3 4 5 6 7 8 9]). + fun subList : El List -> El List -> Formula ; + + -- (subOrganization ?ORG1 ?ORG2) means + -- that ?ORG1 is an Organization which is a part of the Organization + -- ?ORG2. Note that subOrganization is a ReflexiveRelation, so every + -- Organization is a subOrganization of itself. + fun subOrganization : El Organization -> El Organization -> Formula ; + + -- (subPlan ?PLAN1 ?PLAN2) means that ?PLAN1 + -- is a Plan which is a proper part of ?PLAN2. This relation is generally + -- used to relate a supporting Plan to the overall Plan in a particular + -- context. + fun subPlan : El Plan -> El Plan -> Formula ; + + -- (subProcess ?SUBPROC ?PROC) means that ?SUBPROC + -- is a subprocess of ?PROC. A subprocess is here understood as a temporally + -- distinguished part (proper or not) of a Process. + fun subProcess : El Process -> El Process -> Formula ; + + -- (subProposition ?PROP1 ?PROP2) means that + -- ?PROP1 is a Proposition which is a proper part of the Proposition ?PROP2. + -- In other words, subProposition is the analogue of properPart for chunks + -- of abstract content. + fun subProposition : El Proposition -> El Proposition -> Formula ; + + -- (subSystem ?SUB ?SYSTEM) means that the + -- PhysicalSystem ?SUB is a part of the PhysicalSystem ?SYSTEM. + fun subSystem : El PhysicalSystem -> El PhysicalSystem -> Formula ; + + -- (subclass ?CLASS1 ?CLASS2) means that ?CLASS1 is + -- a subclass of ?CLASS2, i.e. every instance of ?CLASS1 is also an instance of + -- ?CLASS2. A class may have multiple superclasses and subclasses. + fun subclass : El SetOrClass -> El SetOrClass -> Formula ; + + -- (subset ?SET1 ?SET2) is true just in case the + -- elements of the Set ?SET1 are also elements of the Set ?SET2. + fun subset : El Set -> El Set -> Formula ; + + -- (subsumedExternalConcept + -- ?STRING ?THING ?LANGUAGE) means that the SUMO concept ?THING is subsumed + -- by the meaning of ?STRING in ?LANGUAGE, i.e. the concept ?THING is narrower + -- in meaning than ?STRING. + fun subsumedExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; + + -- A BinaryPredicate that relates two + -- subclasses of ContentBearingObject. (subsumesContentClass ?CLASS1 + -- ?CLASS2) means that the content expressed by each instance of ?CLASS2 is + -- also expressed by each instance of ?CLASS1. Examples include the + -- relationship between a poem and one of its stanzas or between a book and + -- one of its chapters. Note that this is a relation between subclasses of + -- ContentBearingObject, rather than instances. If one wants to relate + -- instances, the Predicate subsumesContentInstance can be used. Note + -- that subsumesContentClass is needed in many cases. Consider, for + -- example, the relation between the King James edition of the Bible and its + -- Book of Genesis. This relation holds for every copy of this edition and + -- not just for a single instance. + fun subsumesContentClass : Desc ContentBearingObject -> Desc ContentBearingObject -> Formula ; + + -- A BinaryPredicate relating two + -- instances of ContentBearingObject. (subsumesContentInstance ?OBJ1 ?OBJ2) + -- means that the content expressed by ?OBJ2 is part of the content expressed + -- by ?OBJ1. An example is the relationship between a handwritten poem and + -- one of its stanzas. Note that this is a relation between instances, + -- rather than Classes. If one wants to assert a content relationship + -- between Classes, e.g. between the version of an intellectual work and a + -- part of that work, the relation subsumesContentClass should be used. + fun subsumesContentInstance : El ContentBearingObject -> El ContentBearingObject -> Formula ; + + -- (subsumingExternalConcept + -- ?STRING ?THING ?LANGUAGE) means that the SUMO concept ?THING subsumes + -- the meaning of ?STRING in ?LANGUAGE, i.e. the concept ?THING is broader + -- in meaning than ?STRING. + fun subsumingExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; + + -- (successorAttribute ?ATTR1 ?ATTR2) + -- means that ?ATTR2 is the Attribute that comes immediately after ?ATTR1 + -- on the scale that they share. + fun successorAttribute : El Attribute -> El Attribute -> Formula ; + + -- The transitive closure of + -- successorAttribute. (successorAttributeClosure ?ATTR1 ?ATTR2) means + -- that there is a chain of successorAttribute assertions connecting + -- ?ATTR1 and ?ATTR2. + fun successorAttributeClosure : El Attribute -> El Attribute -> Formula ; + + -- (superficialPart ?OBJ1 ?OBJ2) + -- means that ?OBJ1 is a part of ?OBJ2 that has no interior parts of its own + -- (or, intuitively, that only overlaps those parts of ?OBJ2 that are + -- externally connected with the mereological complement of ?OBJ2). This too + -- is a transitive relation closed under MereologicalSumFn and + -- MereologicalProductFn. + fun superficialPart : El Object -> El Object -> Formula ; + + -- (surface ?OBJ1 ?OBJ2) means that ?OBJ1 + -- is a maximally connected superficialPart of ?OBJ2. Note that some + -- SelfConnectedObjects have more than one surface, e.g. a hollow + -- object like a tennis ball has both an inner and an outer surface. + fun surface : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; + + -- (synonymousExternalConcept + -- ?STRING ?THING ?LANGUAGE) means that the SUMO concept ?THING has the + -- same meaning as ?STRING in ?LANGUAGE. + fun synonymousExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; + + -- (systemPart ?PART ?SYSTEM) means that + -- the Physical thing ?PART is a SystemElement in the PhysicalSystem + -- ?SYSTEM. + fun systemPart : El Physical -> El PhysicalSystem -> Formula ; + + -- The temporal analogue of the spatial part + -- predicate. (temporalPart ?POS1 ?POS2) means that TimePosition ?POS1 + -- is part of TimePosition ?POS2. Note that since temporalPart is a + -- ReflexiveRelation every TimePostion is a temporalPart of itself. + fun temporalPart : El TimePosition -> El TimePosition -> Formula ; + + -- (temporallyBetween ?POINT1 ?POINT2 + -- ?POINT3) means that the TimePoint ?POINT2 is between the TimePoints + -- ?POINT1 and ?POINT3, i.e. ?POINT1 is before ?POINT2 and ?POINT2 is before + -- ?POINT3. + fun temporallyBetween : El TimePoint -> El TimePoint -> El TimePoint -> Formula ; + + -- (temporallyBetweenOrEqual ?POINT1 ?POINT2 + -- ?POINT3) means that the TimePoint ?POINT1 is before or equal to the + -- TimePoint ?POINT2 and ?POINT2 is before or equal to the TimePoint + -- ?POINT3. + fun temporallyBetweenOrEqual : El TimePoint -> El TimePoint -> El TimePoint -> Formula ; + + -- This relation holds between an instance of + -- Physical and an instance of TimePosition just in case the temporal + -- lifespan of the former includes the latter. In other words, (time + -- ?THING ?TIME) means that ?THING existed or occurred at ?TIME. Note + -- that time does for instances of Physical what holdsDuring does + -- for instances of Formula. The constants located and time are + -- the basic spatial and temporal predicates, respectively. + fun time : El Physical -> El TimePosition -> Formula ; + + fun totalOrderingOn : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + + -- (top ?TOP ?OBJECT) means that ?TOP is the highest maximal + -- superficial part of ?OBJECT. + fun top : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; + + -- (transactionAmount ?TRANSACTION + -- ?AMOUNT) means that ?AMOUNT is an instance of CurrencyMeasure being + -- exhanged in the FinancialTransaction ?TRANSACTION. + fun transactionAmount : El FinancialTransaction -> El CurrencyMeasure -> Formula ; + + -- (traverses ?OBJ1 ?OBJ2) means that ?OBJ1 + -- crosses or extends across ?OBJ2. Note that crosses and + -- penetrates are subrelations of traverses. + fun traverses : El Object -> El Object -> Formula ; + + -- The BinaryPredicate that relates a Sentence + -- to its TruthValue. + fun truth : El Sentence -> El TruthValue -> Formula ; + + -- The class of names that uniquely identify + -- an instance of Entity. Some examples of uniqueIdentifiers are the keys + -- of tables in database applications and + -- the ISBN (International Standard Book Number). + fun uniqueIdentifier : El SymbolicString -> El Entity -> Formula ; + + -- (uses ?OBJECT AGENT) means that ?OBJECT is used by + -- ?AGENT as an instrument in an unspecified Process. This Predicate, + -- as its corresponding axiom indicates, is a composition of the CaseRoles + -- agent and instrument. + fun uses : El Object -> El Agent -> Formula ; + + -- Some Artifacts have a life cycle with discrete + -- stages or versions. (version ARTIFACT1 ARTIFACT2) means that ARTIFACT1 + -- is a version of ARTIFACT2. Note that this Predicate relates subclasses of + -- Artifact and not instances. + fun version : Desc Artifact -> Desc Artifact -> Formula ; + + -- (wants ?AGENT ?OBJECT) means that ?OBJECT is desired by ?AGENT, + -- i.e. ?AGENT believes that ?OBJECT will satisfy one of its goals. Note that there is + -- no implication that what is wanted by an agent is not already possessed by the agent. + fun wants : El CognitiveAgent -> El Physical -> Formula ; + + -- (wears ?AGENT ?CLOTHING) means that ?AGENT is wearing + -- the item of Clothing ?CLOTHING. + fun wears : El Animal -> El Clothing -> Formula ; + + -- (weight ?O ?MM) means that on planet earth + -- the SelfConnectedObject ?O has the weight ?MM. + fun weight : El SelfConnectedObject -> El MassMeasure -> Formula ; + + -- binary predicate that is used to state the measure + -- of an Object from side to side at its widest span. + fun width : El Object -> El PhysicalQuantity -> Formula ; + + -- (wife ?WOMAN ?MAN) means that ?WOMAN is the wife of ?MAN. + fun wife : El Woman -> El Man -> Formula ; + + + -- relations + fun SingleValuedRelation : (c : Class) -> (El c -> Formula) -> Formula; + def SingleValuedRelation c f = + forall c (\x -> forall c (\y -> impl (and (f (var c c ? x)) (f (var c c ? y))) + (equal (var c Entity ? x) (var c Entity ? y)))); + + fun AntisymmetricRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def AntisymmetricRelation c f = + forall c (\x -> forall c (\y -> impl (and (f (var c c ? x) (var c c ? y)) + (f (var c c ? y) (var c c ? x))) + (equal (var c Entity ? x) (var c Entity ? y)))) ; + + fun IntentionalRelation : (c1,c2 : Class) -> (El c1 -> El c2 -> Formula) -> Formula ; + def IntentionalRelation c1 c2 f = + -- assume binary predicate, since it is mostly used for that + forall c1 (\x -> forall c2 (\y -> inScopeOfInterest (var c1 CognitiveAgent ? x) (var c2 Entity ? y))); + + + fun ReflexiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def ReflexiveRelation c f = + forall c (\x -> f (var c c ? x) (var c c ? x)); + + fun SymmetricRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def SymmetricRelation c f = + forall c (\x -> forall c (\y -> impl (f (var c c ? x) (var c c ? y)) + (f (var c c ? y) (var c c ? x)))); + + fun EquivalenceRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def EquivalenceRelation c f = + and (and (ReflexiveRelation c f) + (SymmetricRelation c f)) + (TransitiveRelation c f); + + fun TransitiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def TransitiveRelation c f = + forall c (\x -> forall c (\y -> forall c (\z -> impl (and (f (var c c ? x) (var c c ? y)) + (f (var c c ? y) (var c c ? z))) + (f (var c c ? x) (var c c ? z))))); + + fun IrreflexiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def IrreflexiveRelation c f = + forall c (\x -> not (f (var c c ? x) (var c c ? x))) ; + + fun AsymmetricRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def AsymmetricRelation c f = + and (AntisymmetricRelation c f) (IrreflexiveRelation c f); + + fun PropositionalAttitude : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def PropositionalAttitude c f = + AsymmetricRelation c f; + + fun ObjectAttitude : (c1,c2 : Class) -> (El c1 -> El c2 -> Formula) -> Formula ; + def ObjectAttitude c1 c2 f = + IntentionalRelation c1 c2 f ; + + fun IntransitiveRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def IntransitiveRelation c f = + forall c (\x -> forall c (\y -> forall c (\z -> impl (and (f (var c c ? x) (var c c ? y)) + (f (var c c ? y) (var c c ? z))) + (not (f (var c c ? x) (var c c ? z)))))) ; + + fun PartialOrderingRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def PartialOrderingRelation c f = + and (and (TransitiveRelation c f) + (AntisymmetricRelation c f)) + (ReflexiveRelation c f) ; + + fun TrichotomizingRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def TrichotomizingRelation c f = + forall c (\x -> forall c (\y -> or (or (and (and (f (var c c ? x) (var c c ? y)) + (not (equal (var c Entity ? x) (var c Entity ? y)))) + (not (f (var c c ? y) (var c c ? x)))) + (and (and (not (f (var c c ? x) (var c c ? y))) + (equal (var c Entity ? x) (var c Entity ? y))) + (not (f (var c c ? y) (var c c ? x))))) + (and (and (f (var c c ? y) (var c c ? x)) + (not (equal (var c Entity ? x) (var c Entity ? y)))) + (not (f (var c c ? x) (var c c ? y)))))); + + fun TotalOrderingRelation : (c : Class) -> (El c -> El c -> Formula) -> Formula ; + def TotalOrderingRelation c f = + and (PartialOrderingRelation c f) (TrichotomizingRelation c f) ; + + fun OneToOneFunction : (c1, c2 : Class) -> (El c1 -> Ind c2) -> Formula ; + def OneToOneFunction c1 c2 f = forall c1(\x -> + forall c1 (\y -> impl (not (equal (var c1 Entity ? x) (var c1 Entity ? y))) + (not (equal (el c2 Entity ? (f (var c1 c1 ? x))) + (el c2 Entity ? (f (var c1 c1 ? y))))))); + + fun SequenceFunction : (c : Class) -> (El Integer -> Ind c) -> Formula ; + def SequenceFunction c f = + OneToOneFunction Integer c f ; + + fun AssociativeFunction : (c : Class) -> (El c -> El c -> Ind c) -> Formula ; + def AssociativeFunction c f = + forall c (\x -> forall c (\y -> forall c (\z -> equal (el c Entity ? (f (var c c ? x) (el c c ? (f (var c c ? y) (var c c ? z))))) + (el c Entity ? (f (el c c ? (f (var c c ? x) (var c c ? y))) (var c c ? z)))))); + + fun CommutativeFunction : (c1,c2 : Class) -> (El c1 -> El c1 -> Ind c2) -> Formula ; + def CommutativeFunction c1 c2 f = + forall c1 (\x -> forall c1 (\y -> equal (el c2 Entity ? (f (var c1 c1 ? x) (var c1 c1 ? y))) + (el c2 Entity ? (f (var c1 c1 ? y) (var c1 c1 ? y))))); + + fun identityElement : (c : Class) -> (El c -> El c -> Ind c) -> El c -> Formula ; + def identityElement c f elem = + forall c (\x -> equal (el c Entity ? (f (var c c ? x) elem)) (var c Entity ? x)); + + fun distributes : (c : Class) -> (El c -> El c -> Ind c) -> (El c -> El c -> Ind c) -> Formula ; + def distributes c f g = + forall c (\x -> forall c (\y -> forall c (\z -> equal (el c Entity ? (g (el c c ? (f (var c c ? x) (var c c ? y))) (var c c ? z))) + (el c Entity ? (f (el c c ? (g (var c c ? x) (var c c ? z))) (el c c ? (g (var c c ? y) (var c c ? z)))))))); + + fun inverse : (c : Class) -> (El c -> El c -> Formula) -> (El c -> El c -> Formula) -> Formula ; + def inverse c f g = + forall c (\x -> forall c (\y -> equiv (f (var c c ? x) (var c c ? y)) + (g (var c c ? y) (var c c ? x)))); + + fun subRelation2El : (c1,c2,c3,c4 : Class) -> (El c1 -> El c2 -> Formula) -> (El c3 -> El c4 -> Formula) -> Formula ; + def subRelation2El c1 c2 c3 c4 f g = + forall c1 (\x -> forall c2 (\y -> impl (f (var c1 c1 ? x) (var c2 c2 ? y)) + (g (var c1 c3 ? x) (var c2 c4 ? y)))); + + + --others + fun toInt : Int -> Ind Integer ; + fun toRealNum : Float -> Ind RealNumber ; - --- Any AnatomicalStructure which --- is not normally found in the Organism of which it is a part, i.e. it is --- the result of a PathologicProcess. This class covers tumors, birth marks, --- goiters, etc. -fun AbnormalAnatomicalStructure : Class ; -fun AbnormalAnatomicalStructure_Class : SubClass AbnormalAnatomicalStructure AnatomicalStructure ; - --- This is a PositionalAttribute derived from the --- up/down schema and not involving contact. Note that this means directly --- above, i.e., if one object is Above another object, then the projections --- of the two objects overlap. -fun Above : Ind AntiSymmetricPositionalAttribute ; - - --- The value of (AbsoluteValueFn ?NUMBER) --- is the absolute value of the RealNumber ?NUMBER. -fun AbsoluteValueFn : El RealNumber -> Ind NonnegativeRealNumber ; - - --- Properties or qualities as distinguished from any --- particular embodiment of the properties/qualities in a physical medium. --- Instances of Abstract can be said to exist in the same sense as mathematical --- objects such as sets and relations, but they cannot exist at a particular --- place and time without some physical encoding or embodiment. -fun Abstract : Class ; -fun Abstract_Class : SubClass Abstract Entity ; - --- A UnaryFunction that maps a Class into --- the instance of Attribute that specifies the condition(s) for membership --- in the Class. -fun AbstractionFn : Class -> Ind Attribute ; - - --- If ?NUMBER1 and ?NUMBER2 are Numbers, then --- (AdditionFn ?NUMBER1 ?NUMBER2) is the arithmetical sum of these --- numbers. -fun AdditionFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- Used to assert that an object ?OBJ1 is close --- to, near or abutting ?OBJ2. This PositionalAttribute covers the --- following common sense notions: adjoins, abuts, is contiguous to, --- is juxtaposed, and is close to. -fun Adjacent : Ind SymmetricPositionalAttribute ; - - --- One of the parts of speech. The Class of --- Words that conventionally denote Attributes of Objects. -fun Adjective : Class ; -fun Adjective_Class : SubClass Adjective Word ; - --- One of the parts of speech. The Class of Words --- that conventionally denote Attributes of Processes. -fun Adverb : Class ; -fun Adverb_Class : SubClass Adverb Word ; - --- A Disseminating whose purpose is to --- promote the sale of an Object represented in a Text or Icon --- (the advertisement). -fun Advertising : Class ; -fun Advertising_Class : SubClass Advertising Disseminating ; - --- A GroupOfPeople whose members all have the --- same age. -fun AgeGroup : Class ; -fun AgeGroup_Class : SubClass AgeGroup GroupOfPeople ; - --- Something or someone that can act on its own and --- produce changes in the world. -fun Agent : Class ; -fun Agent_Class : SubClass Agent Object ; - --- Air is the gaseous stuff that makes up the --- atmosphere surrounding Earth. -fun Air : Class ; -fun Air_Class : SubClass Air GasMixture ; - --- A Class containing all of the Attributes --- relating to the notions of possibility and necessity. -fun AlethicAttribute : Class ; -fun AlethicAttribute_Class : SubClass AlethicAttribute ObjectiveNorm ; - --- A chiefly aquatic plant that contains chlorophyll, --- but does not form embryos during development and lacks vascular tissue. -fun Alga : Class ; -fun Alga_Class : SubClass Alga NonFloweringPlant ; - --- Any BodyMotion which is accomplished by --- means of the legs of an Animal for the purpose of moving from one --- point to another. -fun Ambulating : Class ; -fun Ambulating_Class : SubClass Ambulating (both BodyMotion Translocation) ; - - --- SI electric current measure. Symbol: A. It is --- one of the base units in SI. It is defined as follows: the Ampere is --- that constant current which, if maintained in two straight parallel --- conductors of infinite length, of negligible circular cross_section, and --- placed 1 Meter apart in a vacuum, would produce between these conductors --- a force equal to 2*10^(_7) Newton per Meter of length. -fun Ampere : Ind CompositeUnitOfMeasure ; - - --- A cold_blooded, smooth_skinned Vertebrate --- which characteristically hatches as an aquatic larva, breathing by --- gills. When mature, the Amphibian breathes with Lungs. -fun Amphibian : Class ; -fun Amphibian_Class : SubClass Amphibian ColdBloodedVertebrate ; - --- Atomic mass unit. Symbol: u. It is the mass of --- the twelfth part of an atom of the Carbon 12 isotope. -fun Amu : Ind UnitOfMass ; - - --- A normal or pathological part --- of the anatomy or structural organization of an Organism. This --- class covers BodyParts, as well as structures that are given off --- by Organisms, e.g. ReproductiveBodies. -fun AnatomicalStructure : Class ; -fun AnatomicalStructure_Class : SubClass AnatomicalStructure OrganicObject ; - --- The value of an angle in a plane or in a --- solid. -fun AngleMeasure : Class ; -fun AngleMeasure_Class : SubClass AngleMeasure ConstantQuantity ; - --- The Angstrom is a LengthMeasure. --- 1 Angstrom = 10^(_10) m -fun Angstrom : Ind UnitOfLength ; - - --- A plane angle measure. -fun AngularDegree : Ind UnitOfAngularMeasure ; - - --- Attributes that indicate whether an --- Organism is alive or not. -fun AnimacyAttribute : Class ; -fun AnimacyAttribute_Class : SubClass AnimacyAttribute BiologicalAttribute ; - --- An Organism with eukaryotic Cells, and lacking --- stiff cell walls, plastids, and photosynthetic pigments. -fun Animal : Class ; -fun Animal_Organism : SubClassC Animal Organism (\ANIMAL -> and (forall AnimalSubstance (\SUBSTANCE -> part(var AnimalSubstance Object ? SUBSTANCE)(var Organism Object ? ANIMAL))) (forall AnimalAnatomicalStructure (\STRUCTURE -> part(var AnimalAnatomicalStructure Object ? STRUCTURE)(var Organism Object ? ANIMAL)))) ; - - --- AnatomicalStructures that --- are possessed exclusively by Animals. -fun AnimalAnatomicalStructure : Class ; -fun AnimalAnatomicalStructure_Class : SubClass AnimalAnatomicalStructure AnatomicalStructure ; - --- The subclass of Languages used by --- Animals other than Humans. -fun AnimalLanguage : Class ; -fun AnimalLanguage_Class : SubClass AnimalLanguage Language ; - --- BodySubstances that are produced --- exclusively by Animals. -fun AnimalSubstance : Class ; -fun AnimalSubstance_Class : SubClass AnimalSubstance BodySubstance ; - --- AntiSymmetricPositionalAttribute is the class of --- PositionalAttribute that hold in only one direction. I.e. two objects cannot --- simulataneously be On each other. -fun AntiSymmetricPositionalAttribute : Class ; -fun AntiSymmetricPositionalAttribute_Class : SubClass AntiSymmetricPositionalAttribute PositionalAttribute ; - --- Various Primates with no tails or only short --- tails. -fun Ape : Class ; -fun Ape_Class : SubClass Ape Primate ; - --- The Class of all Months which are April. -fun April : Class ; -fun April_Class : SubClass April Month ; - --- The Class of Mammals that dwell chiefly --- in the water. Includes whales, dolphins, manatees, seals, and walruses. -fun AquaticMammal : Class ; -fun AquaticMammal_Class : SubClass AquaticMammal Mammal ; - --- A Class of Arthropods that includes --- ticks and spiders. -fun Arachnid : Class ; -fun Arachnid_Class : SubClass Arachnid Arthropod ; - --- Measures of the amount of space in two --- dimensions. -fun AreaMeasure : Class ; -fun AreaMeasure_Class : SubClass AreaMeasure FunctionQuantity ; - --- Any proposition which has the form of a deductive --- or inductive argument, i.e. a set of premises which, it is claimed, imply --- a conclusion. -fun Argument : Class ; -fun Argument_Class : SubClass Argument Proposition ; - --- Artifacts that are created primarily for --- aesthetic appreciation. Note that this Class does not include --- most examples of architecture, which belong under StationaryArtifact. -fun ArtWork : Class ; -fun ArtWork_Class : SubClass ArtWork Artifact ; - --- A Class of Invertebrate that includes --- Arachnids and Insects. -fun Arthropod : Class ; -fun Arthropod_Class : SubClass Arthropod Invertebrate ; - --- A relatively short Text that either is unbound or is --- bound with other Articles in a Book. -fun Article : Class ; -fun Article_Class : SubClass Article Text ; - --- A CorpuscularObject that is the product of a --- Making. -fun Artifact : Class ; -fun Artifact_Class : SubClass Artifact CorpuscularObject ; - --- The subclass of Languages that are --- designed by Humans. -fun ArtificialLanguage : Class ; -fun ArtificialLanguage_Class : SubClass ArtificialLanguage Language ; - --- Asexual Processes of biological --- reproduction. -fun AsexualReproduction : Class ; -fun AsexualReproduction_Class : SubClass AsexualReproduction Replication ; - --- Attribute that applies to Organisms that are --- sleeping. -fun Asleep : Ind ConsciousnessAttribute ; - - --- The Class of all astronomical --- objects of significant size. It includes SelfConnectedObjects --- like planets, stars, and asteroids, as well as Collections like --- nebulae, galaxies, and constellations. Note that the planet Earth --- is an AstronomicalBody, but every Region of Earth is a --- GeographicArea. -fun AstronomicalBody : Class ; -fun AstronomicalBody_Class : SubClass AstronomicalBody Region ; - --- An extremely small unit of matter that retains its --- identity in Chemical reactions. It consists of an AtomicNucleus and --- Electrons surrounding the AtomicNucleus. -fun Atom : Class ; -fun Atom_Class : SubClass Atom ElementalSubstance ; - --- MassMeasure that is also known as the gram_atom. --- Defined as the mass in grams of 1 Mole of pure substance. For example, --- 1 AtomGram of Carbon 12 will be 12 Grams of pure Carbon 12. 2 AtomGrams --- of the same substance will be 24 Grams of it. This is an unusual unit in --- that it is essentially 1 Mole of 'stuff' measured in grams, so that the --- actual value (i.e. mass) depends on the type of substance. -fun AtomGram : Ind UnitOfMass ; - - --- The core of the Atom. It is composed of --- Protons and Neutrons. -fun AtomicNucleus : Class ; -fun AtomicNucleus_Class : SubClass AtomicNucleus SubatomicParticle ; - --- A Process where one Object becomes attached --- to another Object. Note that this differs from Putting in that two --- things which are attached may already be in the same location. Note that --- Combining is different from Attaching in that the former applies to --- Substances, while the latter applies to CorpuscularObjects. Note too --- that Attaching is different from Putting in that one or both of the --- two things which are attached may or may not be moved from the location --- where they were combined. -fun Attaching : Class ; -fun Attaching_Class : SubClass Attaching DualObjectProcess ; - --- A Device whose purpose is to attach one thing --- to something else, e.g. nails, screws, buttons, etc. -fun AttachingDevice : Class ; -fun AttachingDevice_Class : SubClass AttachingDevice Device ; - --- A Maneuver in a ViolentContest where the --- agent attempts to inflict damage on the patient. -fun Attack : Class ; -fun Attack_Class : SubClass Attack Maneuver ; - --- Qualities which we cannot or choose not to --- reify into subclasses of Object. -fun Attribute : Class ; -fun Attribute_Class : SubClass Attribute Abstract ; - --- A sound level capable of being heard by a Human. -fun Audible : Ind SoundAttribute ; - - --- The Class of all Months which are August. -fun August : Class ; -fun August_Class : SubClass August Month ; - --- The class of PhysiologicProcesses of --- which there is not conscious awareness and control. -fun AutonomicProcess : Class ; -fun AutonomicProcess_Class : SubClass AutonomicProcess PhysiologicProcess ; - --- Attribute that applies to Organisms that are --- neither Unconscious nor Asleep. -fun Awake : Ind ConsciousnessAttribute ; - - --- A Function that maps an Object to the side --- that is opposite the FrontFn of the Object. Note that this is a --- partial function, since some Objects do not have sides, e.g. apples --- and spheres. Note too that the range of this Function is indefinite in --- much the way that ImmediateFutureFn and ImmediatePastFn are indefinite. --- Although this indefiniteness is undesirable from a theoretical standpoint, --- it does not have significant practical implications, since there is --- widespread intersubjective agreement about the most common cases. -fun BackFn : El SelfConnectedObject -> Ind SelfConnectedObject ; - - --- A small, typically one_celled, prokaryotic --- Microorganism. -fun Bacterium : Class ; -fun Bacterium_Class : SubClass Bacterium Microorganism ; - --- A ViolentContest between two or more military --- units within the context of a war. Note that this does not cover the --- metaphorical sense of 'battle', which simply means a struggle of some --- sort. This sense should be represented with the more general concept of --- Contest. -fun Battle : Class ; -fun Battle_Class : SubClass Battle ViolentContest ; - --- SI activity measure. Symbol: Bq. It measures --- the amount of radioactivity contained in a given sample of matter. It is --- that quantity of a radioactive element in which there is one atomic --- disintegration per SecondDuration. Becquerel = s^(_1). -fun Becquerel : Ind CompositeUnitOfMeasure ; - - --- A UnaryFunction that maps a TimeInterval to --- the TimePoint at which the interval begins. -fun BeginFn : El TimeInterval -> Ind TimePoint ; - - --- A UnaryFunction that maps a GraphPath --- to the GraphNode that is the beginning of the GraphPath. Note that, --- unlike InitialNodeFn (which relates a GraphArc to a GraphNode), --- BeginNodeFn is a total function _ every GraphPath has a beginning. -fun BeginNodeFn : El GraphPath -> Ind GraphNode ; - - --- A GroupOfPeople whose members share a belief --- or set of beliefs. -fun BeliefGroup : Class ; -fun BeliefGroup_Class : SubClass BeliefGroup GroupOfPeople ; - --- This PositionalAttribute is derived from the --- up/down schema and may or may not involve contact. Note that this means --- directly below, i.e., if one object is Below another object, then the --- projections of the two objects overlap. -fun Below : Ind AntiSymmetricPositionalAttribute ; - - --- A FinancialTransaction where an instance of --- CurrencyMeasure is exchanged for the possibility of winning a larger --- instance of CurrencyMeasure within the context of some sort of --- Game. -fun Betting : Class ; -fun Betting_Class : SubClass Betting FinancialTransaction ; - --- Any Food that is ingested by Drinking. --- Note that this class is disjoint with the other subclasses of Food, --- i.e. Meat and FruitOrVegetable. -fun Beverage : Class ; -fun Beverage_Class : SubClass Beverage Food ; - --- Elements from the number system with base 2. --- Every BinaryNumber is expressed as a sequence of the digits 1 and 0. -fun BinaryNumber : Class ; -fun BinaryNumber_Class : SubClass BinaryNumber RealNumber ; - --- Attributes that apply specifically --- to instances of Organism. -fun BiologicalAttribute : Class ; -fun BiologicalAttribute_Class : SubClass BiologicalAttribute InternalAttribute ; - --- A Process embodied in an Organism. -fun BiologicalProcess : Class ; -fun BiologicalProcess_Class : SubClass BiologicalProcess InternalChange ; - --- A Substance that is --- capable of inducing a change in the structure or functioning of an --- Organism. This Class includes Substances used in the treatment, --- diagnosis, prevention or analysis of normal and abnormal body function. --- This Class also includes Substances that occur naturally in the body --- and are administered therapeutically. Finally, BiologicallyActiveSubstance --- includes Nutrients, most drugs of abuse, and agents that require special --- handling because of their toxicity. -fun BiologicallyActiveSubstance : Class ; -fun BiologicallyActiveSubstance_Class : SubClass BiologicallyActiveSubstance Substance ; - --- A Vertebrate having a constant body temperature --- and characterized by the presence of feathers. -fun Bird : Class ; -fun Bird_Class : SubClass Bird WarmBloodedVertebrate ; - --- The Process of being born. -fun Birth : Class ; -fun Birth_Class : SubClass Birth OrganismProcess ; - --- One Bit of information. A one or a zero. -fun Bit : Ind UnitOfInformation ; - - --- The Attribute of being black in color. -fun Black : Ind PrimaryColor ; - - --- A fluid present in Animals that transports --- Nutrients to and waste products away from various BodyParts. -fun Blood : Class ; -fun Blood_Class : SubClass Blood BodySubstance ; - --- The Attribute of being blue in color. -fun Blue : Ind PrimaryColor ; - - --- Any BodyPart which contains an unfilled space, --- e.g. BodyVessels, the atria and ventricles of the heart, the lungs, etc. -fun BodyCavity : Class ; -fun BodyCavity_Class : SubClass BodyCavity BodyPart ; - --- Any BodyPart which is a covering of another --- BodyPart or of an entire Organism. This would include the rinds of --- FruitOrVegetables and the skins of Animals. -fun BodyCovering : Class ; -fun BodyCovering_Class : SubClass BodyCovering BodyPart ; - --- The place where two BodyParts --- meet or connect. -fun BodyJunction : Class ; -fun BodyJunction_Class : SubClass BodyJunction BodyPart ; - --- Any Motion where the agent is an Organism --- and the patient is a BodyPart. -fun BodyMotion : Class ; -fun BodyMotion_Class : SubClass BodyMotion Motion ; - --- A collection of Cells and Tissues which --- are localized to a specific area of an Organism and which are not --- pathological. The instances of this Class range from gross structures --- to small components of complex Organs. -fun BodyPart : Class ; -fun BodyPart_Class : SubClass BodyPart AnatomicalStructure ; - --- The class of Attributes expressing --- configurations of bodies or parts of bodies of animals or humans, --- e.g. standing, sitting, kneeling, lying down, etc. -fun BodyPosition : Class ; -fun BodyPosition_Class : SubClass BodyPosition BiologicalAttribute ; - --- Extracellular material and mixtures of --- cells and extracellular material that are produced, excreted or accreted --- by an Organism. Included here are Substances such as saliva, dental --- enamel, sweat, hormones, and gastric acid. -fun BodySubstance : Class ; -fun BodySubstance_Class : SubClass BodySubstance Substance ; - --- Any tube_like structure which occurs naturally in --- an Organism and through which a BodySubstance can circulate. -fun BodyVessel : Class ; -fun BodyVessel_Class : SubClass BodyVessel BodyCavity ; - --- The Class of Processes where a Substance is --- heated and converted from a Liquid to a Gas. -fun Boiling : Class ; -fun Boiling_Class : SubClass Boiling StateChange ; - --- Rigid Tissue composed largely of calcium that makes up --- the skeleton of Vertebrates. Note that this Class also includes teeth. -fun Bone : Class ; -fun Bone_Class : SubClass Bone (both AnimalSubstance Tissue) ; - - --- A Text that has pages and is bound. -fun Book : Class ; -fun Book_Class : SubClass Book Text ; - --- The subclass of Getting Processes where --- the agent gets something for a limited period of time with the expectation --- that it will be returned later (perhaps with interest). -fun Borrowing : Class ; -fun Borrowing_Class : SubClass Borrowing Getting ; - --- The Process of respiration, by which oxygen --- is made available to an Animal. This covers processes of inhalation, --- exhalation, and alternations between the two. -fun Breathing : Class ; -fun Breathing_Class : SubClass Breathing (both AutonomicProcess OrganismProcess) ; - - --- An energy measure. -fun BritishThermalUnit : Ind CompositeUnitOfMeasure ; - - --- The Class of StationaryArtifacts which are --- intended to house Humans and their activities. -fun Building : Class ; -fun Building_Class : SubClass Building StationaryArtifact ; - --- A FinancialTransaction in which an instance of --- CurrencyMeasure is exchanged for an instance of Physical. -fun Buying : Class ; -fun Buying_Class : SubClass Buying FinancialTransaction ; - --- One Byte of information. A Byte is eight --- Bits. -fun Byte : Ind UnitOfInformation ; - - --- IntentionalPsychologicalProcesses which involve --- the consideration and/or manipulation of instances of Quantity. -fun Calculating : Class ; -fun Calculating_Class : SubClass Calculating IntentionalPsychologicalProcess ; - --- A Calorie is an energy measure. -fun Calorie : Ind CompositeUnitOfMeasure ; - - --- SI luminosity intensity measure. Symbol: cd. --- It is one of the base units in SI, and it is currently defined as --- follows: the Candela is the luminous intensity, in a given direction, --- of a source that emits monochromatic radiation of frequency 540*10^12 --- Hertz and that has a radiant intensity in that direction of 1/683 --- Watt per Steradian. -fun Candela : Ind CompositeUnitOfMeasure ; - - --- The Class of Carnivores with completely --- separable toes, nonretractable claws, and long muzzles. -fun Canine : Class ; -fun Canine_Class : SubClass Canine Carnivore ; - --- An element of living cells and a source of --- energy for Animals. This class includes both simple Carbohydrates, --- i.e. sugars, and complex Carbohydrates, i.e. starches. -fun Carbohydrate : Class ; -fun Carbohydrate_Class : SubClass Carbohydrate Nutrient ; - -fun CardinalityFn : El (either SetOrClass Collection) -> Ind Number ; - --- The Class of flesh_eating Mammals. Members --- of this Class typically have four or five claws on each paw. Includes --- cats, dogs, bears, racoons, and skunks. -fun Carnivore : Class ; -fun Carnivore_Class : SubClass Carnivore Mammal ; - --- Transfer from one point to another by means of --- an Animal or Human. -fun Carrying : Class ; -fun Carrying_Class : SubClass Carrying Transfer ; - --- (CeilingFn ?NUMBER) returns the smallest --- Integer greater than or equal to the RealNumber ?NUMBER. -fun CeilingFn : El RealNumber -> Ind Integer ; - - --- The fundamental structural and functional unit of --- living Organisms. -fun Cell : Class ; -fun Cell_Class : SubClass Cell BodyPart ; - --- A TemperatureMeasure. The freezing point --- and the boiling point of water are, respectively, 0 CelsiusDegrees and 100 --- CelsiusDegrees. -fun CelsiusDegree : Ind (both TemperatureMeasure UnitOfMeasure) ; - - --- (CenterOfCircleFn ?CIRCLE) denotes the --- GeometricPoint that is the center of the Circle ?CIRCLE. -fun CenterOfCircleFn : El Circle -> Ind GeometricPoint ; - - --- Submultiple of Meter. Symbol: cm. It is --- the 100th part of a Meter -fun Centimeter : Ind UnitOfLength ; - - --- A TimeZone that covers much of the --- midwestern United States. -fun CentralTimeZone : Ind TimeZone ; - - --- A Text that confers a right or obligation --- on the holder of the Certificate. Note that the right or obligation --- need not be a legal one, as in the case of an academic diploma that grants --- certain privileges in the professional world. -fun Certificate : Class ; -fun Certificate_Class : SubClass Certificate Text ; - --- The Class of Processes where --- ownership of something is transferred from one Agent to another. -fun ChangeOfPossession : Class ; -fun ChangeOfPossession_Class : SubClass ChangeOfPossession SocialInteraction ; - --- An element of an alphabet, a set of numerals, etc. --- Note that a Character may or may not be part of a Language. Character --- is a subclass of SymbolicString, because every instance of Character is --- an alphanumeric sequence consisting of a single element. -fun Character : Class ; -fun Character_Class : SubClass Character SymbolicString ; - --- The Class of ChemicalProcesses --- in which a CompoundSubstance breaks down into simpler products. -fun ChemicalDecomposition : Class ; -fun ChemicalDecomposition_Class : SubClass ChemicalDecomposition (both ChemicalProcess Separating) ; - - --- A ChemicalProcess occurs whenever --- chemical compounds (CompoundSubstances) are formed or decomposed. --- For example, reactants disappear as chemical change occurs, and products --- appear as chemical change occurs. In a chemical change a chemical --- reaction takes place. Catalysts in a ChemicalProcess may speed up the --- reaction, but aren't themselves produced or consumed. Examples: rusting of --- iron and the decomposition of water, induced by an electric current, to --- gaseous hydrogen and gaseous oxygen. -fun ChemicalProcess : Class ; -fun ChemicalProcess_Class : SubClass ChemicalProcess InternalChange ; - --- The Class of ChemicalProcesses in --- which a CompoundSubstance is formed from simpler reactants. -fun ChemicalSynthesis : Class ; -fun ChemicalSynthesis_Class : SubClass ChemicalSynthesis (both ChemicalProcess Combining) ; - - --- The class of Ovals such that all GeometricPoints --- that make up the Circle are equidistant from a single GeometricPoint, --- known as the center of the Circle. -fun Circle : Class ; -fun Circle_Class : SubClass Circle Oval ; - --- A LandArea of relatively small size, inhabited --- by a community of people, and having some sort of political structure. --- Note that this class includes both large cities and small settlements --- like towns, villages, hamlets, etc. -fun City : Class ; -fun City_Class : SubClass City (both GeopoliticalArea LandArea) ; - - --- The Class of IntentionalPsychologicalProcesses --- which involve attaching a name or category to a thing or set of things. --- Note that Classifying is distinguished from Learning by the fact --- that the latter covers the acquisition by a CognitiveAgent of any --- Proposition, while the former involves the assignment of a label --- or category. -fun Classifying : Class ; -fun Classifying_Class : SubClass Classifying IntentionalPsychologicalProcess ; - --- Any TwoDimensionalFigure which --- has a well defined interior and exterior. -fun ClosedTwoDimensionalFigure : Class ; -fun ClosedTwoDimensionalFigure_Class : SubClass ClosedTwoDimensionalFigure TwoDimensionalFigure ; - --- Artifact made out of fabrics and possibly other --- materials that are used to cover the bodies of Humans. -fun Clothing : Class ; -fun Clothing_Class : SubClass Clothing WearableItem ; - --- Any GasMixture that is visible, e.g. Smoke produced --- by a fire or clouds of water vapor in the sky. -fun Cloud : Class ; -fun Cloud_Class : SubClass Cloud GasMixture ; - --- A SentientAgent with responsibilities --- and the ability to reason, deliberate, make plans, etc. This is --- essentially the legal/ethical notion of a person. Note that, although --- Human is a subclass of CognitiveAgent, there may be instances of --- CognitiveAgent which are not also instances of Human. For example, --- chimpanzees, gorillas, dolphins, whales, and some extraterrestrials --- (if they exist) may be CognitiveAgents. -fun CognitiveAgent : Class ; -fun CognitiveAgent_Class : SubClass CognitiveAgent SentientAgent ; - --- Vertebrates whose body temperature --- is not internally regulated. -fun ColdBloodedVertebrate : Class ; -fun ColdBloodedVertebrate_Class : SubClass ColdBloodedVertebrate Vertebrate ; - --- Collections have members like Classes, but, --- unlike Classes, they have a position in space_time and members can be --- added and subtracted without thereby changing the identity of the --- Collection. Some examples are toolkits, football teams, and flocks --- of sheep. -fun Collection : Class ; -fun Collection_Class : SubClass Collection Object ; - --- The Class of Attributes relating to the --- color of Objects. -fun ColorAttribute : Class ; -fun ColorAttribute_Class : SubClass ColorAttribute InternalAttribute ; - --- The subclass of SurfaceChange where a --- ColorAttribute of the patient is altered. Note that the change in --- color may apply to just part of the object. -fun Coloring : Class ; -fun Coloring_Class : SubClass Coloring SurfaceChange ; - --- A Process where two or more SelfConnectedObjects --- are incorporated into a single SelfConnectedObject. Note that Combining --- is different from Attaching in that the former results in one of the objects --- being part of the other, while Attaching only results in the two objects --- being connected with one another. Note too that Combining is different --- from Putting in that one or both of the two things which are combined may or --- may not be moved from the location where they were combined. -fun Combining : Class ; -fun Combining_Class : SubClass Combining DualObjectProcess ; - --- The Class of ChemicalProcesses in which an Object --- reacts with oxygen and gives off heat. This includes all Processes in which --- something is burning. -fun Combustion : Class ; -fun Combustion_Class : SubClass Combustion ChemicalDecomposition ; - --- An Agent that provides products and/or --- services for a fee with the aim of making a profit. -fun CommercialAgent : Class ; -fun CommercialAgent_Class : SubClass CommercialAgent Agent ; - --- Any FinancialTransaction by a --- CommercialAgent where the aim is to produce a profit. -fun CommercialService : Class ; -fun CommercialService_Class : SubClass CommercialService (both FinancialTransaction ServiceProcess) ; - - --- Instances of this Class commit the agent to some --- future course. For example, Bob promised Susan that he would be home by 11pm. -fun Committing : Class ; -fun Committing_Class : SubClass Committing LinguisticCommunication ; - --- A SocialInteraction that involves --- the transfer of information between two or more CognitiveAgents. --- Note that Communication is closely related to, but essentially --- different from, ContentDevelopment. The latter involves the creation --- or modification of a ContentBearingObject, while Communication is --- the transfer of information for the purpose of conveying a message. -fun Communication : Class ; -fun Communication_Class : SubClass Communication (both ContentBearingProcess SocialInteraction) ; - - --- The Class of IntentionalPsychologicalProcesses --- which involve comparing, relating, contrasting, etc. the properties of --- two or more Entities. -fun Comparing : Class ; -fun Comparing_Class : SubClass Comparing (both DualObjectProcess IntentionalPsychologicalProcess) ; - - --- The complement of a given SetOrClass C is the --- SetOrClass of all things that are not instances of C. In other words, an --- object is an instance of the complement of a SetOrClass C just in case it --- is not an instance of C. -fun ComplementFn : El SetOrClass -> Ind SetOrClass ; - - --- A Number that has the form: x + yi, where x --- and y are RealNumbers and i is the square root of _1. -fun ComplexNumber : Class ; -fun ComplexNumber_Class : SubClass ComplexNumber Number ; - --- Instances --- of this Class are UnitsOfMeasure defined by the functional --- composition of other units, each of which might be a --- CompositeUnitOfMeasure or a NonCompositeUnitOfMeasure. -fun CompositeUnitOfMeasure : Class ; -fun CompositeUnitOfMeasure_Class : SubClass CompositeUnitOfMeasure UnitOfMeasure ; - --- The Class of Substances that contain --- two or more elements (ElementalSubstances), in definite proportion by weight. --- The composition of a pure compound will be invariant, regardless of the method --- of preparation. Compounds are composed of more than one kind of atom (element). --- The term molecule is often used for the smallest unit of a compound that still --- retains all of the properties of the compound. Examples: Table salt (sodium --- chloride, NaCl), sugar (sucrose, C_{12}H_{22}O_{11}), and water (H_2O). -fun CompoundSubstance : Class ; -fun CompoundSubstance_Class : SubClass CompoundSubstance PureSubstance ; - --- The class of Languages designed for --- and interpreted by a computer. -fun ComputerLanguage : Class ; -fun ComputerLanguage_Class : SubClass ComputerLanguage ArtificialLanguage ; - --- A set of instructions in a computer --- programming language that can be executed by a computer. -fun ComputerProgram : Class ; -fun ComputerProgram_Class : SubClass ComputerProgram Procedure ; - --- The process of developing a --- ComputerProgram -fun ComputerProgramming : Class ; -fun ComputerProgramming_Class : SubClass ComputerProgramming ContentDevelopment ; - --- The Class of Processes where an Object is --- cooled and converted from a Gas to a Liquid. -fun Condensing : Class ; -fun Condensing_Class : SubClass Condensing StateChange ; - --- The Class of Keeping Processes where the --- patient is a Human or an Animal and is kept involuntarily. This covers --- caging, imprisonment, jailing, etc. -fun Confining : Class ; -fun Confining_Class : SubClass Confining Keeping ; - --- Attributes that indicate whether --- an Organism is conscious or the qualitative degree of consciousness of --- an Organism. -fun ConsciousnessAttribute : Class ; -fun ConsciousnessAttribute_Class : SubClass ConsciousnessAttribute StateOfMind ; - --- A ConstantQuantity --- is a PhysicalQuantity that has a constant value, e.g. 3 Meters and --- 5 HourDurations. The magnitude (see MagnitudeFn) of every --- ConstantQuantity is a RealNumber. ConstantQuantity is --- distinguished from FunctionQuantity, in that each instance of the --- latter is formed through the mapping of one PhysicalQuantity to --- another PhysicalQuantity. Each instance of ConstantQuantity is --- expressed with the BinaryFunction MeasureFn, which takes a --- Number and a UnitOfMeasure as arguments. For example, 3 Meters --- is expressed as (MeasureFn 3 Meter). Instances of --- ConstantQuantity form a partial order (see --- PartialOrderingRelation) with the lessThan relation, since --- lessThan is a RelationExtendedToQuantities and lessThan is --- defined over the RealNumbers. The lessThan relation is not a --- total order (see TotalOrderingRelation) over the class --- ConstantQuantity since elements of some subclasses of --- ConstantQuantity (such as length quantities) are incomparable to --- elements of other subclasses of ConstantQuantity --- (such as mass quantities). -fun ConstantQuantity : Class ; -fun ConstantQuantity_Class : SubClass ConstantQuantity PhysicalQuantity ; - --- An ConstructedLanguage is a --- HumanLanguage that did not evolve spontaneously within a language --- community, but rather had its core grammar and vocabulary invented by --- one or more language experts, often with an aim to produce a more --- grammatically regular language than any language that has evolved --- naturally. This Class includes languages like Esperanto that were --- created to facilitate international communication -fun ConstructedLanguage : Class ; -fun ConstructedLanguage_Class : SubClass ConstructedLanguage (both ArtificialLanguage HumanLanguage) ; - - --- The subclass of Making in which a --- StationaryArtifact is built. -fun Constructing : Class ; -fun Constructing_Class : SubClass Constructing Making ; - --- Any SelfConnectedObject that expresses --- content. This content may be a Proposition, e.g. when the ContentBearingObject --- is a Sentence or Text, or it may be a representation of an abstract or --- physical object, as with an Icon, a Word or a Phrase. -fun ContentBearingObject : Class ; -fun ContentBearingObject_Class : SubClass ContentBearingObject (both ContentBearingPhysical CorpuscularObject) ; - - --- Any Object or Process that --- expresses content. This covers Objects that contain a Proposition, --- such as a book, as well as ManualSignLanguage, which may similarly --- contain a Proposition. -fun ContentBearingPhysical : Class ; -fun ContentBearingPhysical_Class : SubClass ContentBearingPhysical Physical ; - --- Any Process, for example --- ManualHumanLanguage, which may contain a Proposition. -fun ContentBearingProcess : Class ; -fun ContentBearingProcess_Class : SubClass ContentBearingProcess ContentBearingPhysical ; - --- A subclass of IntentionalProcess in --- which content is modified, its form is altered or it is created anew. -fun ContentDevelopment : Class ; -fun ContentDevelopment_Class : SubClass ContentDevelopment IntentionalProcess ; - --- A SocialInteraction where the agent and --- patient are CognitiveAgents who are trying to defeat one another. --- Note that this concept is often applied in a metaphorical sense in natural --- language, when we speak, e.g., of the struggle of plants for space or --- sunlight, or of bacteria for food resources in some environment. -fun Contest : Class ; -fun Contest_Class : SubClass Contest SocialInteraction ; - --- A Class containing Attributes that are --- specific to participants in a Contest. In particular, these Attributes --- indicate the position of one of the agents in the Contest with respect --- to other agent(s) in the Contest. Some examples of these Attributes --- are winning, losing, won, lost, etc. -fun ContestAttribute : Class ; -fun ContestAttribute_Class : SubClass ContestAttribute ObjectiveNorm ; - --- As defined in the CIA World Fact Book, --- Continent covers seven land masses: Africa, NorthAmerica, --- SouthAmerica, Antarctica, Europe, Asia, and Oceania. --- Note that Australia, counted as a continent in some other systems, --- is included in Oceania in the Fact Book. As a consequence, there --- is no Nation which is also a Continent. -fun Continent : Class ; -fun Continent_Class : SubClass Continent LandArea ; - --- The Making of an instance of Food. Note --- that this can cover any preparation of Food, e.g. making a salad, --- cutting up fruit, etc. It does not necessarily involve the application --- of heat. -fun Cooking : Class ; -fun Cooking_Class : SubClass Cooking Making ; - --- Any Decreasing Process where the PhysicalQuantity --- decreased is a TemperatureMeasure. -fun Cooling : Class ; -fun Cooling_Class : SubClass Cooling Decreasing ; - --- The subclass of SocialInteraction where --- the participants involved work together for the achievement of a common --- goal. -fun Cooperation : Class ; -fun Cooperation_Class : SubClass Cooperation SocialInteraction ; - --- A TimeZone which functions --- as the standard time zone. It is also known as Zulu time (in the military), --- Greenwich Mean Time, and the Western European time zone. Note that whenever --- a TimeZone is not specified, the TimePosition is understood to be with --- respect to the CoordinatedUniversalTimeZone. -fun CoordinatedUniversalTimeZone : Ind TimeZone ; - - --- An Organization that has a special legal status --- that allows a group of persons to act as a CommercialAgent and that insulates --- the owners (shareholders) from many liabilities that might result from the --- corporation's operation. -fun Corporation : Class ; -fun Corporation_Class : SubClass Corporation (both CommercialAgent Organization) ; - - --- A SelfConnectedObject whose parts have --- properties that are not shared by the whole. -fun CorpuscularObject : Class ; -fun CorpuscularObject_Class : SubClass CorpuscularObject SelfConnectedObject ; - --- (CosineFn ?DEGREE) returns the cosine of the --- PlaneAngleMeasure ?DEGREE. The cosine of ?DEGREE is the ratio of the --- side next to ?DEGREE to the hypotenuse in a right_angled triangle. -fun CosineFn : El PlaneAngleMeasure -> Ind RealNumber ; - - --- SI electric charge measure. Symbol: C. It is --- the quantity of electric charge transported through a cross section of --- a conductor in an electric circuit during each SecondDuration by a --- current of 1 Ampere. Coulomb = s*A. -fun Coulomb : Ind CompositeUnitOfMeasure ; - - --- Enumerating something. The Class of Calculating --- Processes where the aim is to determine the Number corresponding to the --- patient. -fun Counting : Class ; -fun Counting_Class : SubClass Counting Calculating ; - --- A GeopoliticalArea that is larger than a city, --- usually encompassing several cities, and smaller than a StateOrProvince. --- Aside from City, this is the smallest geopolitical subdivision, and it is --- known by various names in various counties, e.g. parrish, commune, etc. -fun County : Class ; -fun County_Class : SubClass County (both GeopoliticalArea LandArea) ; - - --- The Class of Putting processes where the agent --- covers the patient, either completely or only partially, with something --- else. -fun Covering : Class ; -fun Covering_Class : SubClass Covering Putting ; - --- The subclass of Process in which --- something is created. Note that the thing created is specified --- with the result CaseRole. -fun Creation : Class ; -fun Creation_Class : SubClass Creation InternalChange ; - --- A Class of Arthropods that mainly dwells --- in water and has a segmented body and a chitinous exoskeleton. Includes --- lobsters, crabs, shrimp, and barnacles. -fun Crustacean : Class ; -fun Crustacean_Class : SubClass Crustacean Arthropod ; - --- English unit of volume equal to 1/2 of a --- Pint. -fun Cup : Ind UnitOfVolume ; - - --- Any element of the official currrency of some --- Nation. This covers both CurrencyBills and CurrencyCoins. -fun Currency : Class ; -fun Currency_Class : SubClass Currency FinancialInstrument ; - --- Instances of this --- subclass of ConstantQuantity are measures of monetaryValue --- stated in terms of some UnitOfCurrency such as UnitedStatesDollar, --- UnitedStatesCent, Lire, Yen, etc. -fun CurrencyMeasure : Class ; -fun CurrencyMeasure_Class : SubClass CurrencyMeasure ConstantQuantity ; - --- A UnaryFunction that assigns a Graph the --- Class of GraphPaths that partition the graph into two separate --- graphs if cut. There may be more than one cutset for a given graph. -fun CutSetFn : El Graph -> Desc GraphPath ; - - --- The subclass of Poking Processes which --- involve a sharp instrument. -fun Cutting : Class ; -fun Cutting_Class : SubClass Cutting Poking ; - --- The Class of Processes where the agent --- brings about a situation where the patient no longer functions normally --- or as intended. -fun Damaging : Class ; -fun Damaging_Class : SubClass Damaging InternalChange ; - --- An Attribute which indicates that the associated --- Object contains some Liquid. -fun Damp : Ind SaturationAttribute ; - - --- Any BodyMotion of Humans which is --- deliberately coordinated with music. -fun Dancing : Class ; -fun Dancing_Class : SubClass Dancing BodyMotion ; - --- The Class of all calendar Days. -fun Day : Class ; -fun Day_Class : SubClass Day TimeInterval ; - --- Time unit. 1 day = 24 hours. -fun DayDuration : Ind UnitOfDuration ; - - --- A BinaryFunction that assigns a PositiveRealNumber and --- a subclass of Months to the Days within each Month corresponding to that --- PositiveRealNumber. For example, (DayFn 16 August) is the Class of all --- sixteenth days of August. For another example, (DayFn 9 Month) would return --- the class of all ninth days of any month. For still another example, (DayFn 18 --- (MonthFn August (YearFn 1912))) denotes the 18th day of August 1912. -fun DayFn : El PositiveInteger -> Desc Month -> Desc Day ; - - --- This Attribute applies to Organisms that are --- not alive. -fun Dead : Ind (both AnimacyAttribute ConsciousnessAttribute) ; - - --- The Process of dying. -fun Death : Class ; -fun Death_Class : SubClass Death OrganismProcess ; - --- The Class of all Months which are December. -fun December : Class ; -fun December_Class : SubClass December Month ; - --- The subclass of Selecting where the agent --- opts for one course of action out of a set of multiple possibilities --- that are open to him/her. -fun Deciding : Class ; -fun Deciding_Class : SubClass Deciding Selecting ; - --- The Class of LinguisticCommunications that --- effect an institutional alteration when performed by competent authority. --- Some examples are nominating, marrying, and excommunicating. -fun Declaring : Class ; -fun Declaring_Class : SubClass Declaring LinguisticCommunication ; - --- Converting a document or message that has previously --- been encoded (see Encoding) into a Language that can be understood by a --- relatively large number of speakers. -fun Decoding : Class ; -fun Decoding_Class : SubClass Decoding Writing ; - --- Any QuantityChange where the PhysicalQuantity --- is decreased. -fun Decreasing : Class ; -fun Decreasing_Class : SubClass Decreasing QuantityChange ; - --- An Argument which has the form of a --- deduction, i.e. it is claimed that the set of premises entails the --- conclusion. -fun DeductiveArgument : Class ; -fun DeductiveArgument_Class : SubClass DeductiveArgument Argument ; - --- A Maneuver in a ViolentContest --- where the agent attempts to avoid being damaged. -fun DefensiveManeuver : Class ; -fun DefensiveManeuver_Class : SubClass DefensiveManeuver Maneuver ; - --- Exhibiting something or a range of things --- before the public in a particular location. This would cover software --- demos, theatrical plays, lectures, dance and music recitals, museum --- exhibitions, etc. -fun Demonstrating : Class ; -fun Demonstrating_Class : SubClass Demonstrating Disseminating ; - --- (DenominatorFn ?NUMBER) returns the --- denominator of the canonical reduced form of the RealNumber ?NUMBER. -fun DenominatorFn : El RealNumber -> Ind Integer ; - - --- DensityFn maps an instance of MassMeasure --- and an instance of VolumeMeasure to the density represented by this --- proportion of mass and volume. For example, (DensityFn (MeasureFn 3 Gram) --- (MeasureFn 1 Liter)) represents the density of 3 grams per liter. -fun DensityFn : El MassMeasure -> El VolumeMeasure -> Ind FunctionQuantity; - - --- A Class containing all of the Attributes --- relating to the notions of permission, obligation, and prohibition. -fun DeonticAttribute : Class ; -fun DeonticAttribute_Class : SubClass DeonticAttribute ObjectiveNorm ; - --- The spatial analogue of Planning. Designing a --- Collection of Objects involves determining a placement of the Objects --- with respect to one another and perhaps other Objects as well, in order to --- satisfy a particular purpose. -fun Designing : Class ; -fun Designing_Class : SubClass Designing IntentionalPsychologicalProcess ; - --- The subclass of Damagings in which --- the patient (or an essential element of the patient) is destroyed. --- Note that the difference between this concept and its superclass is solely --- one of extent. -fun Destruction : Class ; -fun Destruction_Class : SubClass Destruction Damaging ; - --- A Process where the agent detaches one thing --- from something else. Note that Detaching is different from Separating --- in that the latter applies to Substances, while the former applies to --- CorpuscularObjects. Note too that Detaching is different from --- Removing in that one or both of the two things which are detached may or --- may not be moved from the location where they were attached. -fun Detaching : Class ; -fun Detaching_Class : SubClass Detaching DualObjectProcess ; - --- Attributes that indicate the --- stage of development of an Organism. -fun DevelopmentalAttribute : Class ; -fun DevelopmentalAttribute_Class : SubClass DevelopmentalAttribute BiologicalAttribute ; - --- A Device is an Artifact whose purpose is to --- serve as an instrument in a specific subclass of Process. -fun Device : Class ; -fun Device_Class : SubClass Device Artifact ; - --- A Process that is carried out for --- the purpose of determining the nature of a DiseaseOrSyndrome. -fun DiagnosticProcess : Class ; -fun DiagnosticProcess_Class : SubClass DiagnosticProcess Investigating ; - --- The Process by which Food that has been --- ingested is broken down into simpler chemical compounds and absorbed by --- the Organism. -fun Digesting : Class ; -fun Digesting_Class : SubClass Digesting (both AutonomicProcess OrganismProcess) ; - - --- The Class of directed graphs. A --- directed graph is a Graph in which all GraphArcs --- have direction, i.e. every GraphArc has an initial node (see --- InitialNodeFn) and a terminal node (see TerminalNodeFn). -fun DirectedGraph : Class ; -fun DirectedGraph_Class : SubClass DirectedGraph Graph ; - --- Instances of this Class urge some further action --- among the receivers. A Directing can be an Ordering, a Requesting or --- a Questioning. -fun Directing : Class ; -fun Directing_Class : SubClass Directing LinguisticCommunication ; - --- The act of changing the direction in --- which the patient of the act is oriented. -fun DirectionChange : Class ; -fun DirectionChange_Class : SubClass DirectionChange Motion ; - --- The subclass of PositionalAttributes --- that concern compass directions. -fun DirectionalAttribute : Class ; -fun DirectionalAttribute_Class : SubClass DirectionalAttribute PositionalAttribute ; - --- A Stating in which two Agents have --- contradictory statements. This is distinguished from Arguing in --- that the statement in dispute may be a simple assertion, rather than --- a chain of deduction, and that two entities must be disagreeing with --- each other, whereas a single entity may craft an argument for a given --- point of view, without the need for another agent to disagree with. -fun Disagreeing : Class ; -fun Disagreeing_Class : SubClass Disagreeing Stating ; - --- Finding something that was sought. Note that --- this class is restricted to cases of discovering something Physical. --- For cases involving the acquisition of knowledge, the class Learning --- should be used. -fun Discovering : Class ; -fun Discovering_Class : SubClass Discovering IntentionalPsychologicalProcess ; - --- A BiologicalAttribute which qualifies --- something that alters or interferes with a normal process, state or activity --- of an Organism. It is usually characterized by the abnormal functioning of --- one or more of the host's systems, parts, or Organs. -fun DiseaseOrSyndrome : Class ; -fun DiseaseOrSyndrome_Class : SubClass DiseaseOrSyndrome BiologicalAttribute ; - --- Any Communication that involves a --- single agent and many destinations. This covers the release --- of a published book, broadcasting, a theatrical performance, giving --- orders to assembled troops, delivering a public lecture, etc. -fun Disseminating : Class ; -fun Disseminating_Class : SubClass Disseminating Communication ; - --- If ?NUMBER1 and ?NUMBER2 are Numbers, then --- (DivisionFn ?NUMBER1 ?NUMBER2) is the result of dividing ?NUMBER1 by --- ?NUMBER2. Note that when ?NUMBER1 = 1 (DivisionFn ?NUMBER1 ?NUMBER2) --- is the reciprocal of ?NUMBER2. Note too that (DivisionFn ?NUMBER1 --- ?NUMBER2) is undefined when ?NUMBER2 = 0. -fun DivisionFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- The Process by which liquid Food, i.e. --- Beverages, are incorporated into an Animal. -fun Drinking : Class ; -fun Drinking_Class : SubClass Drinking Ingesting ; - --- Controlling the direction and/or speed of a --- Vehicle. This includes navigating a ship, driving a car or truck, --- operating a train, etc. -fun Driving : Class ; -fun Driving_Class : SubClass Driving Guiding ; - --- An Attribute which indicates that the associated --- Object contains no Liquid. -fun Dry : Ind SaturationAttribute ; - - --- The Class of Processes where a Liquid is removed --- from an Object. -fun Drying : Class ; -fun Drying_Class : SubClass Drying Removing ; - --- Any Process that requires two, --- nonidentical patients. -fun DualObjectProcess : Class ; -fun DualObjectProcess_Class : SubClass DualObjectProcess Process ; - --- The compass direction of East. -fun East : Ind DirectionalAttribute ; - - --- A TimeZone that covers much of the --- eastern United States. -fun EasternTimeZone : Ind TimeZone ; - - --- The Process by which solid Food is --- incorporated into an Animal. -fun Eating : Class ; -fun Eating_Class : SubClass Eating Ingesting ; - --- A BinaryFunction that maps a type of text --- (e.g. Agatha Christie's Murder_on_the_Orient_Express) and a number --- to the edition of the text type corresponding to the number. -fun EditionFn : Desc ContentBearingObject -> El PositiveInteger -> Desc ContentBearingObject ; - - --- A EducationalOrganization is --- an institution of learning. Some examples are public and private K_12 --- schools, and colleges and universities. -fun EducationalOrganization : Class ; -fun EducationalOrganization_Class : SubClass EducationalOrganization Organization ; - --- Any Process which is intended to result --- in Learning. -fun EducationalProcess : Class ; -fun EducationalProcess_Class : SubClass EducationalProcess Guiding ; - --- The fertilized or unfertilized female ReproductiveBody --- of an Animal. This includes Bird and Reptile eggs, as well as mammalian --- ova. -fun Egg : Class ; -fun Egg_Class : SubClass Egg (both AnimalAnatomicalStructure ReproductiveBody) ; - - --- Election is the class of events conducted by an --- organization, in which qualified participants vote for officers, adopt --- resolutions, or settle other issues in that Organization. -fun Election : Class ; -fun Election_Class : SubClass Election OrganizationalProcess ; - --- SubatomicParticles that surround the --- AtomicNucleus. They have a negative charge. -fun Electron : Class ; -fun Electron_Class : SubClass Electron SubatomicParticle ; - --- The ElectronVolt is an energy measure. --- Symbol: eV. It is the kinetic energy acquired by an electron in passing --- through a potential difference of 1 Volt in a vacuum. -fun ElectronVolt : Ind CompositeUnitOfMeasure ; - - --- The Class of PureSubstances that --- cannot be separated into two or more Substances by ordinary chemical --- (or physical) means. This excludes nuclear reactions. ElementalSubstances --- are composed of only one kind of atom. Examples: Iron (Fe), copper (Cu), --- and oxygen (O_2). ElementalSubstances are the simplest --- PureSubstances. -fun ElementalSubstance : Class ; -fun ElementalSubstance_Class : SubClass ElementalSubstance PureSubstance ; - --- The stage of an Organism or an --- AnatomicalStructure that exists only before the Organism is born. --- Mammals, for example, have this Attribute only prior to --- their birth. -fun Embryonic : Ind DevelopmentalAttribute ; - - --- The Class of Attributes that denote emotional --- states of Organisms. -fun EmotionalState : Class ; -fun EmotionalState_Class : SubClass EmotionalState StateOfMind ; - --- Converting a document or message into a formal --- language or into a code that can be understood only by a relatively small --- body of Agents. Generally speaking, this hinders wide dissemination of --- the content in the original document or message. -fun Encoding : Class ; -fun Encoding_Class : SubClass Encoding Writing ; - --- A UnaryFunction that maps a TimeInterval to --- the TimePoint at which the interval ends. -fun EndFn : El TimeInterval -> Ind TimePoint ; - - --- A UnaryFunction that maps a GraphPath --- to the GraphNode that is the end of the GraphPath. Note that, unlike --- TerminalNodeFn (which relates a GraphArc to a GraphNode), --- EndNodeFn is a total function _ every GraphPath has a end. -fun EndNodeFn : El GraphPath -> Ind GraphNode ; - - --- A fundamental concept that applies --- in many engineering domains. An EngineeringComponent is an element of --- a Device that is a physically whole object, such as one might --- see listed as standard parts in a catalog. The main difference betweeen --- EngineeringComponents and arbitrary globs of matter is that --- EngineeringComponents are object_like in a modeling sense. Thus, an --- EngineeringComponent is not an arbtrary subregion, but a part of a --- system with a stable identity. -fun EngineeringComponent : Class ; -fun EngineeringComponent_Class : SubClass EngineeringComponent Device ; - --- An EngineeringConnection is an --- EngineeringComponent that represents a connection relationship between --- two other EngineeringComponents. It is a reification of the --- Predicate connectedEngineeringComponents. That means that whenever --- this Predicate holds between two EngineeringComponents, there exists an --- EngineeringConnection. The practical reason for reifying a relationship --- is to be able to attach other information about it. For example, one --- might want to say that a particular connection is associated with some --- shared parameters, or that it is of a particular type. --- EngineeringConnections are EngineeringComponents and can therefore be --- an engineeringSubcomponent of other EngineeringComponents. However, --- to provide for modular regularity in component systems, --- EngineeringConnections cannot be connected. For each pair of --- EngineeringComponents related by connectedEngineeringComponents, there --- exists at least one EngineeringConnection. However, that object may not --- be unique, and the same EngineeringConnection may be associated with --- several pairs of EngineeringComponents. -fun EngineeringConnection : Class ; -fun EngineeringConnection_Class : SubClass EngineeringConnection EngineeringComponent ; - --- The universal class of individuals. This is the root --- node of the ontology. -fun Entity : Class ; - - --- A complex Protein that is produced by living --- cells and which catalyzes specific biochemical reactions. There are six --- main types of enzymes: oxidoreductases, transferases, hydrolases, --- lyases, isomerases, and ligases. -fun Enzyme : Class ; -fun Enzyme_Class : SubClass Enzyme Protein ; - --- A GroupOfPeople whose members originate --- from the same GeographicArea or share the same Language and/or cultural --- practices. -fun EthnicGroup : Class ; -fun EthnicGroup_Class : SubClass EthnicGroup GroupOfPeople ; - --- A currency measure. 1 EuroCent is equal to .01 --- EuroDollars. -fun EuroCent : Ind UnitOfCurrency ; - - --- A currency measure of most European Union countries. -fun EuroDollar : Ind UnitOfCurrency ; - - --- The Class of Processes where a Substance is --- converted from a Liquid to a Gas at a temperature below its --- Boiling point. -fun Evaporating : Class ; -fun Evaporating_Class : SubClass Evaporating StateChange ; - --- An Integer that is evenly divisible --- by 2. -fun EvenInteger : Class ; -fun EvenInteger_Class : SubClass EvenInteger Integer ; - --- The system of Bones that are on the Outside of an organism and --- make up the supporting structure of many Invertebrates. -fun Exoskeleton : Class ; -fun Exoskeleton_Class : SubClass Exoskeleton (both AnimalAnatomicalStructure BodyPart) ; - - --- Investigating the truth of a Proposition --- by constructing and observing a trial. Note that the trial may be either --- controlled or uncontrolled, blind or not blind. -fun Experimenting : Class ; -fun Experimenting_Class : SubClass Experimenting Investigating ; - --- An Argument where the conclusion is an --- observed fact and the premises are other facts which collectively imply --- the conclusion. Note that this is the they hypothetico_deductive model --- of explanation. -fun Explanation : Class ; -fun Explanation_Class : SubClass Explanation DeductiveArgument ; - --- (ExponentiationFn ?NUMBER ?INT) returns --- the RealNumber ?NUMBER raised to the power of the Integer ?INT. -fun ExponentiationFn : El Quantity -> El Integer -> Ind Quantity ; - - --- Instances of this Class express a state of the agent. --- For example, Jane thanked Barbara for the present she had given her. The thanking --- in this case expresses the gratitude of Jane towards Barbara. Note that Expressing, --- unlike the other speech act types, is not a subclass of LinguisticCommunication. --- This is because emotions, for example, can be expressed without language, e.g. by --- smiling. -fun Expressing : Class ; -fun Expressing_Class : SubClass Expressing Communication ; - --- A UnaryFunction that maps an Attribute --- into the Class whose condition for membership is the Attribute. -fun ExtensionFn : El Attribute -> Class ; - - --- Artifacts that are created by weaving together --- natural or synthetic fibers or by treating the skins of certain sorts of --- Animals. Note that this Class includes articles that are created by --- stitching together various types of fabrics, e.g. bedspreads. On the other --- hand, Clothing is not a subclass of Fabric, because many clothing items --- contain elements that are not fabrics. -fun Fabric : Class ; -fun Fabric_Class : SubClass Fabric Artifact ; - --- The class of Texts that purport to --- reveal facts about the world. Such texts are often known as information --- or as non_fiction. Note that something can be an instance of --- FactualText, even if it is wholly inaccurate. Whether something --- is a FactualText is determined by the beliefs of the agent creating --- the text. -fun FactualText : Class ; -fun FactualText_Class : SubClass FactualText Text ; - --- A UnitOfTemperature that is commonly --- used in the United States. On the Fahrenheit scale, the freezing point --- of water is 32 FahrenheitDegrees, and the boiling point of water is --- 212 FahrenheitDegrees. -fun FahrenheitDegree : Ind UnitOfTemperature ; - - --- Falling is the class of events in --- which something moves from a higher location to a lower location --- under the force of gravity. -fun Falling : Class ; -fun Falling_Class : SubClass Falling (both MotionDownward Translocation) ; - - --- The TruthValue of being false. -fun False : Ind TruthValue ; - - --- A GroupOfPeople whose members bear --- familyRelations to one another. -fun FamilyGroup : Class ; -fun FamilyGroup_Class : SubClass FamilyGroup GroupOfPeople ; - --- SI capacitance measure. Symbol: F. It is the --- capacitance of a capacitator between the plates of which there appears --- a difference of potential of 1 Volt when it is charged by a quantity --- of electricity equal to 1 Coulomb. Farad = C/V = --- m^(_2)*kg(_1)*s^4*A^2. -fun Farad : Ind CompositeUnitOfMeasure ; - - --- Nonrigid Tissue that is composed largely of --- fat cells. -fun FatTissue : Class ; -fun FatTissue_Class : SubClass FatTissue Tissue ; - --- The Class of all Months which are February. -fun February : Class ; -fun February_Class : SubClass February Month ; - --- The Class of Carnivores with completely --- separable toes, slim bodies, and rounded heads. All felines other than --- the cheetah have retractable claws. -fun Feline : Class ; -fun Feline_Class : SubClass Feline Carnivore ; - --- An Attribute indicating that an Organism is --- female in nature. -fun Female : Ind SexAttribute ; - - --- A NonFloweringPlant that contains vascular tissue. --- This class includes true ferns, as well as horsetails, club mosses, and --- whisk ferns. -fun Fern : Class ; -fun Fern_Class : SubClass Fern NonFloweringPlant ; - --- The class of Texts that purport to --- be largely a product of the author's imagination, i.e. the author --- does not believe that most of the content conveyed by the text is --- an accurate depiction of the real world. Note that something can --- be an instance of FictionalText, even if it is completely true. --- Whether something is a FictionalText is determined by the beliefs --- of the agent creating the text. -fun FictionalText : Class ; -fun FictionalText_Class : SubClass FictionalText Text ; - --- An academic or applied discipline with --- recognized experts and with a core of accepted theory or practice. Note --- that FieldOfStudy is a subclass of Proposition, because a --- FieldOfStudy is understood to be a body of abstract, informational --- content, with varying degrees of certainty attached to each element of --- this content. -fun FieldOfStudy : Class ; -fun FieldOfStudy_Class : SubClass FieldOfStudy Proposition ; - --- Something is Fillable if it can be filled by --- something else. Note that 'filled' here means perfectly filled. --- Something is fillable just in case it is part of a hole, i.e., --- fillability is an exclusive property of holes and their parts. -fun Fillable : Ind ShapeAttribute ; - - --- A document having monetary value --- or recording a monetary transaction -fun FinancialInstrument : Class ; -fun FinancialInstrument_Class : SubClass FinancialInstrument Certificate ; - --- A Transaction where an instance --- of Currency is exchanged for something else. -fun FinancialTransaction : Class ; -fun FinancialTransaction_Class : SubClass FinancialTransaction Transaction ; - --- A Set containing a finite number of elements. -fun FiniteSet : Class ; -fun FiniteSet_Class : SubClass FiniteSet Set ; - --- A cold_blooded aquatic Vertebrate characterized by --- fins and breathing by gills. Included here are Fish having either a bony --- skeleton, such as a perch, or a cartilaginous skeleton, such as a shark. --- Also included are those Fish lacking a jaw, such as a lamprey or --- hagfish. -fun Fish : Class ; -fun Fish_Class : SubClass Fish ColdBloodedVertebrate ; - --- The Attribute of being flammable at normal temperatures --- (i.e. not while a Plasma). -fun Flammable : Ind PhysicalAttribute ; - - --- (FloorFn ?NUMBER) returns the largest Integer --- less than or equal to the RealNumber ?NUMBER. -fun FloorFn : El RealNumber -> Ind Integer ; - - --- FlowRegion is a class of things whose --- boundaries are relatively stable but whose constitutive material is continuously moving --- through the region itself and being replaced by --- other, similar material. Each FlowRegion is constituted by a stream --- of matter moving as a whole. A FlowRegion may be liquid or gaseous. --- A wind may be considered as a Process or as a FlowRegion, similarly --- an OceanCurrent or a WaterWave. The motion process associated with a --- FlowRegion F is denoted by (FlowFn F). Note that certain --- properties belong to the FlowRegion itself (e.g., mass, length, volume, --- temperature, and speed or velocity of the region moving as a whole), --- while other properties of interest belong to the Motion of its --- constitutive stuff (e.g., velocity, direction). The motion of --- a FlowRegion as a whole (e.g., JetStream moves within the atmosphere) --- is distinguished from the motion of the pieces of stuff constituting the --- FlowRegion. See FlowFn and FlowRegionFn. -fun FlowRegion : Class ; - - --- A Plant that produces seeds and flowers. --- This class includes trees, shrubs, herbs, and flowers. -fun FloweringPlant : Class ; -fun FloweringPlant_Class : SubClass FloweringPlant Plant ; - --- Fluid is the PhysicalState attribute of an --- Object that does not have a fixed shape and thus tends to flow or to --- conform to the shape of a container. -fun Fluid : Ind PhysicalState ; - - --- Any SelfConnectedObject containing Nutrients, --- such as carbohydrates, proteins, and fats, that can be ingested by a --- living Animal and metabolized into energy and body tissue. -fun Food : Class ; -fun Food_Class : SubClass Food SelfConnectedObject ; - --- English length unit of feet. -fun FootLength : Ind UnitOfLength ; - - --- The Class of Processes where an Object is --- cooled and converted from a Liquid to a Solid. -fun Freezing : Class ; -fun Freezing_Class : SubClass Freezing StateChange ; - --- A subclass of --- TimeDependentQuantity, instances of which are measures of the --- frequency with which some Process occurs. -fun FrequencyMeasure : Class ; -fun FrequencyMeasure_Class : SubClass FrequencyMeasure TimeDependentQuantity ; - --- A WaterArea whose Water is not saline, --- e.g. most rivers and lakes. -fun FreshWaterArea : Class ; -fun FreshWaterArea_Class : SubClass FreshWaterArea WaterArea ; - --- The Class of all calendar Fridays. -fun Friday : Class ; -fun Friday_Class : SubClass Friday Day ; - --- A Function that maps an Object to the side --- that generally receives the most attention or that typically faces the --- direction in which the Object moves. Note that this is a partial --- function, since some Objects do not have sides, e.g. apples and --- spheres. Note too that the range of this Function is indefinite in --- much the way that ImmediateFutureFn and ImmediatePastFn are indefinite. --- Although this indefiniteness is undesirable from a theoretical standpoint, --- it does not have significant practical implications, since there is --- widespread intersubjective agreement about the most common cases. -fun FrontFn : El SelfConnectedObject -> Ind SelfConnectedObject ; - - --- Any fruit or vegetable, i.e. a --- ripened ReproductiveBody of a Plant. Note that FruitOrVegetable --- is not a subclass of Food, because some fruits, e.g. poisonous --- berries, are not edible. -fun FruitOrVegetable : Class ; -fun FruitOrVegetable_Class : SubClass FruitOrVegetable (both PlantAnatomicalStructure ReproductiveBody) ; - - --- The stage of an Organism when it has reached --- the end of its growth phase. -fun FullyFormed : Ind DevelopmentalAttribute ; - - --- A FunctionQuantity --- is a PhysicalQuantity that is returned by a Function that maps --- from one or more instances of ConstantQuantity to another instance --- of ConstantQuantity. For example, the velocity of a particle would --- be represented by a FunctionQuantity relating values of time (which --- are instances of ConstantQuantity) to values of distance --- (also instances of ConstantQuantity). Note that all elements of the --- range of the Function corresponding to a FunctionQuantity have the --- same physical dimension as the FunctionQuantity itself. -fun FunctionQuantity : Class ; -fun FunctionQuantity_Class : SubClass FunctionQuantity PhysicalQuantity ; - --- Any instance of Giving where the patient is an --- instance of Currency. Note that this class covers both financing, e.g. --- where a firm funds a software company with venture capital with the agreement --- that a certain percentage of the profits on the investment will be returned --- to the firm, and instances of UnilateralGiving, e.g. providing a tuition --- waiver and/or a stipend to a student as part of scholarship or fellowship. -fun Funding : Class ; -fun Funding_Class : SubClass Funding Giving ; - --- A eukaryotic Organism characterized by the --- absence of chlorophyll and the presence of rigid cell walls. Included --- here are both slime molds and true fungi such as yeasts, molds, mildews, --- and mushrooms. -fun Fungus : Class ; -fun Fungus_Class : SubClass Fungus Organism ; - --- A UnaryFunction that maps a TimePosition --- to the TimeInterval which it meets and which ends at --- PositiveInfinity. -fun FutureFn : El TimePosition -> Ind TimeInterval ; - - --- A Contest whose purpose is the --- enjoyment/stimulation of the participants or spectators of the Game. -fun Game : Class ; -fun Game_Class : SubClass Game (both Contest RecreationOrExercise) ; - - --- An Object has the Attribute of Gas if it has --- neither a fixed volume nor a fixed shape. -fun Gas : Ind PhysicalState ; - - --- Any Mixture that satisfies two conditions, --- viz. it is made up predominantly of things which are a Gas and any --- component other than Gas in the Mixture is in the form of fine particles --- which are suspended in the Gas. -fun GasMixture : Class ; -fun GasMixture_Class : SubClass GasMixture Mixture ; - --- Any Motion where the patient is a --- Gas. This class would cover, in particular, the motion of --- Air, e.g. a breeze or wind. -fun GasMotion : Class ; -fun GasMotion_Class : SubClass GasMotion Motion ; - --- A UnaryFunction that takes a --- SetOrClass of Classes as its single argument and returns a SetOrClass which --- is the intersection of all of the Classes in the original SetOrClass, i.e. --- the SetOrClass containing just those instances which are instances of all --- instances of the original SetOrClass. -fun GeneralizedIntersectionFn : Desc SetOrClass -> Ind SetOrClass ; - - --- A UnaryFunction that takes a SetOrClass --- of Classes as its single argument and returns a SetOrClass which is the --- merge of all of the Classes in the original SetOrClass, i.e. the SetOrClass --- containing just those instances which are instances of an instance of the --- original SetOrClass. -fun GeneralizedUnionFn : Desc SetOrClass -> Ind SetOrClass ; - - --- A geographic location, generally having --- definite boundaries. Note that this differs from its immediate superclass --- Region in that a GeographicArea is a three_dimensional Region of the --- earth. Accordingly, all astronomical objects other than earth and all --- one_dimensional and two_dimensional Regions are not classed under --- GeographicArea. -fun GeographicArea : Class ; -fun GeographicArea_Class : SubClass GeographicArea Region ; - --- The class of activities that --- are caused by geological forces and affect geological features, --- and which may affect the biosphere as well. -fun GeologicalProcess : Class ; -fun GeologicalProcess_Class : SubClass GeologicalProcess (both InternalChange Motion) ; - - --- The class of all geometric figures, i.e. the --- class of all abstract, spatial representations. The instances of this class --- are GeometricPoints, TwoDimensionalFigures or ThreeDimensionalFigures. -fun GeometricFigure : Class ; -fun GeometricFigure_Class : SubClass GeometricFigure ShapeAttribute ; - --- The class of zero_dimensional --- GeometricFigures, i.e. the class of GeometricFigures that have position --- but lack extension in any dimension. -fun GeometricPoint : Class ; -fun GeometricPoint_Class : SubClass GeometricPoint GeometricFigure ; - --- Any GeographicArea which is associated --- with some sort of political structure. This class includes Lands, --- Cities, districts of cities, counties, etc. Note that the identity --- of a GeopoliticalArea may remain constant after a change in borders. -fun GeopoliticalArea : Class ; -fun GeopoliticalArea_Class : SubClass GeopoliticalArea (both Agent GeographicArea) ; - - --- Any BodyMotion, e.g. a hand wave, a nod of the --- head, a smile, which is also an instance of Communication. -fun Gesture : Class ; -fun Gesture_Class : SubClass Gesture (both BodyMotion Communication) ; - - --- The subclass of ChangeOfPossession where the --- agent gets something. Note that the source from which something is --- obtained is specified with the origin CaseRole. -fun Getting : Class ; -fun Getting_Class : SubClass Getting ChangeOfPossession ; - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to 1,000,000,000 units of the original --- UnitOfMeasure. For example, (GigaFn Hertz) is 1,000,000,000 Hertz. -fun GigaFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- The subclass of ChangeOfPossession where the --- agent gives the destination something. -fun Giving : Class ; -fun Giving_Class : SubClass Giving ChangeOfPossession ; - --- Any instance of Giving where the agent gives --- something to the destination which was previously given to the agent by --- the destination, e.g. returing a book that was borrowed from someone. -fun GivingBack : Class ; -fun GivingBack_Class : SubClass GivingBack Giving ; - --- An Organ that removes Substances from the Blood, --- alters them in some way, and then releases them. -fun Gland : Class ; -fun Gland_Class : SubClass Gland Organ ; - --- The ruling body of a GeopoliticalArea. -fun Government : Class ; -fun Government_Class : SubClass Government GovernmentOrganization ; - --- (GovernmentFn ?AREA) denotes the --- Government of the GeopoliticalArea ?AREA. For example, --- (GovernmentFn UnitedStates) denotes the Federal_level government of --- the United States, (GovernmentFn PuertoRico) denotes the government of --- the Commonwealth of Puerto Rico. -fun GovernmentFn : El GeopoliticalArea -> Ind Government ; - - --- GovernmentOrganization is the --- class of official Organizations that are concerned with the government --- of a GeopoliticalArea at some level. They may be a subOrganization --- of a government. -fun GovernmentOrganization : Class ; -fun GovernmentOrganization_Class : SubClass GovernmentOrganization Organization ; - --- Any instance of Touching which results in --- a situation where the agent grasps the patient of the Touching. -fun Grabbing : Class ; -fun Grabbing_Class : SubClass Grabbing (both Attaching Touching) ; - - --- The OrganizationalProcess of graduating --- from an EducationalOrganization. -fun Graduation : Class ; -fun Graduation_Class : SubClass Graduation LeavingAnOrganization ; - --- Submultiple of kilogram. Symbol: g. --- 1 kilogram = 1000 Grams. -fun Gram : Ind UnitOfMass ; - - --- The Class of graphs, where a graph is understood --- to be a set of GraphNodes connected by GraphArcs. Note that this --- Class includes only connected graphs, i.e. graphs in which there is a --- GraphPath between any two GraphNodes. Note too that every Graph --- is required to contain at least two GraphArcs and three GraphNodes. -fun Graph : Class ; -fun Graph_Class : SubClass Graph Abstract ; - --- Graphs are comprised of GraphNodes --- and GraphArcs. Every GraphArc links two GraphNodes. -fun GraphArc : Class ; -fun GraphArc_Class : SubClass GraphArc GraphElement ; - --- A GraphPath that begins (see --- BeginNodeFn) and ends (see EndNodeFn) at the same --- GraphNode. -fun GraphCircuit : Class ; -fun GraphCircuit_Class : SubClass GraphCircuit GraphPath ; - --- Noncompositional parts of Graphs. --- These parts are restricted to GraphNodes and GraphArcs. -fun GraphElement : Class ; -fun GraphElement_Class : SubClass GraphElement Abstract ; - --- A GraphArc in which a GraphNode is --- linked to itself. -fun GraphLoop : Class ; -fun GraphLoop_Class : SubClass GraphLoop GraphArc ; - --- Graphs are comprised of GraphNodes --- and GraphArcs. Every GraphNode is linked by a GraphArc. -fun GraphNode : Class ; -fun GraphNode_Class : SubClass GraphNode GraphElement ; - --- Informally, a single, directed route between --- two GraphNodes in a Graph. Formally, a DirectedGraph that is a --- subGraph of the original Graph and such that no two GraphArcs in --- the DirectedGraph have the same intial node (see InitialNodeFn) or --- the same terminal node (see TerminalNodeFn). -fun GraphPath : Class ; -fun GraphPath_Class : SubClass GraphPath DirectedGraph ; - --- A BinaryFunction that maps two GraphNodes --- to the Class of GraphPaths between those two nodes. Note that the two --- GraphNodes must belong to the same Graph. -fun GraphPathFn : El GraphNode -> El GraphNode -> Desc GraphPath ; - - --- SI absorbed dose measure. Symbol: Gy. It measures --- the dose of radiation absorbed in living tissue. It is equal approximately --- to the absorbed dose delivered when the energy per unit mass imparted to --- matter by ionizing radiation is 1 Joule per kilogram. Gray = J/kg --- = m^2*s^(_2). -fun Gray : Ind CompositeUnitOfMeasure ; - - --- (GreatestCommonDivisorFn --- ?NUMBER1 ?NUMBER2 ... ?NUMBER) returns the greatest common divisor of --- ?NUMBER1 through ?NUMBER. -fun GreatestCommonDivisorFn : [El Integer] -> Ind Integer ; - - --- A Collection of Agents, e.g. a flock --- of sheep, a herd of goats, or the local Boy Scout troop. -fun Group : Class ; -fun Group_Class : SubClass Group (both Agent Collection) ; - - --- Any Group whose members are --- exclusively Humans. -fun GroupOfPeople : Class ; -fun GroupOfPeople_Class : SubClass GroupOfPeople Group ; - --- The Process of biological development in which --- an Organism or part of an Organism changes its form or its size. -fun Growth : Class ; -fun Growth_Class : SubClass Growth AutonomicProcess ; - --- Any IntentionalProcess where the agent tries to --- direct the behavior of another Object, whether an Agent or not. -fun Guiding : Class ; -fun Guiding_Class : SubClass Guiding IntentionalProcess ; - --- The subclass of Perception in which the --- sensing is done by an auditory Organ. -fun Hearing : Class ; -fun Hearing_Class : SubClass Hearing Perception ; - --- Any Increasing Process where the PhysicalQuantity --- increased is a TemperatureMeasure. -fun Heating : Class ; -fun Heating_Class : SubClass Heating Increasing ; - --- SI inductance measure. Symbol: H. One Henry --- is equivalent to one Volt divided by one Ampere per SecondDuration. --- If a current changing at the rate of one Ampere per SecondDuration --- induces an electromotive force of one Volt, the circuit has an --- inductance of one Henry. Henry = Wb/A = m^2*kg*s^(_2)*A^(_2). -fun Henry : Ind CompositeUnitOfMeasure ; - - --- SI frequency measure. Symbol: Hz. It is the --- number of cycles per second. Hertz = s^(_1). Note that Hertz --- does not have a conversion function. -fun Hertz : Ind UnitOfFrequency ; - - --- OrganizationalProcesses where someone is made an --- employee of an Organization. -fun Hiring : Class ; -fun Hiring_Class : SubClass Hiring JoiningAnOrganization ; - --- A hole is an immaterial body located at the surface --- of an Object. Since every Hole is ontologically dependent on its host --- (i.e., the object in which it is a hole), being a Hole is defined as --- being a hole in something. Note that two Holes may occupy the same --- region, or part of the same region, without sharing any parts. Any two --- hosts of a hole have a common proper part that entirely hosts the hole. A --- common host of two holes hosts all parts of the sum of those holes. Any --- object that includes the host of a hole is a host of that hole, unless its --- parts also include parts of that very hole. Overlapping holes have --- overlapping hosts. No hole is atomic. Holes are connected with their --- hosts. No hole can have a proper part that is externally connected with --- exactly the same things as the hole itself. -fun Hole : Class ; -fun Hole_Class : SubClass Hole Region ; - --- A UnaryFunction that maps a Hole to --- the Object which is its principal host. The principle host of a Hole --- is its maximally connected host (a notion taken here to be defined only --- when the argument is a hole). -fun HoleHostFn : El Hole -> Ind Object ; - - --- A UnaryFunction that maps a Hole to the skin --- of the Hole. The skin of a Hole is the fusion of those superficial --- parts (see superficialPart) of the Hole's principal host (see --- HoleHostFn) with which the Hole is externally connected. -fun HoleSkinFn : El Hole -> Ind Object ; - - --- Includes Humans and relatively recent --- ancestors of Humans. -fun Hominid : Class ; -fun Hominid_Class : SubClass Hominid Primate ; - --- The Class of quadruped Mammals with hooves. --- Includes horses, cows, sheep, pigs, antelope, etc. -fun HoofedMammal : Class ; -fun HoofedMammal_Class : SubClass HoofedMammal Mammal ; - --- Attribute used to indicate that an Object --- is positioned width_wise with respect to another Object. -fun Horizontal : Ind PositionalAttribute ; - - --- In Animals, a chemical secreted by an --- endocrine gland whose products are released into the circulating fluid. --- Plant hormones or synthetic hormones which are used only to alter or --- control various physiologic processes, e.g., reproductive control agents, --- are assigned to the Class BiologicallyActiveSubstance. Hormones act as --- chemical messengers and regulate various physiologic processes such as --- growth, reproduction, metabolism, etc. They usually fall into two broad --- categories, viz. steroid hormones and peptide hormones. -fun Hormone : Class ; -fun Hormone_Class : SubClass Hormone (both BiologicallyActiveSubstance BodySubstance) ; - - --- A power measure that is equal to 746 Watts. -fun Horsepower : Ind CompositeUnitOfMeasure ; - - --- The Class of all clock Hours. -fun Hour : Class ; -fun Hour_Class : SubClass Hour TimeInterval ; - --- Time unit. 1 hour = 60 minutes. -fun HourDuration : Ind UnitOfDuration ; - - --- A BinaryFunction that assigns a PositiveRealNumber and --- a subclass of Days to the Hours within each Day corresponding to that --- NonnegativeInteger. For example, (HourFn 12 Thursday) is the Class of all --- instances of noon Thursday. For another example, (HourFn 0 Day) would return --- the class of all instances of midnight. For still another example, (HourFn 14 --- (DayFn 18 (MonthFn August (YearFn 1912)))) denotes 2 PM on the 18th day of --- August 1912. -fun HourFn : El NonnegativeInteger -> Desc Day -> Desc Hour ; - - --- A ResidentialBuilding which is intended to be --- inhabited by members of the same SocialUnit. Houses are distinguished --- from temporary housing like hotels and multi_family dwellings like condominium --- and apartment buildings. -fun House : Class ; -fun House_Class : SubClass House (both ResidentialBuilding SingleFamilyResidence) ; - - --- Modern man, the only remaining species of the Homo --- genus. -fun Human : Class ; -fun Human_Class : SubClass Human (both CognitiveAgent Hominid) ; - - --- The subclass of Languages used by --- Humans. -fun HumanLanguage : Class ; -fun HumanLanguage_Class : SubClass HumanLanguage Language ; - --- Hunting is the class of Processes in which --- an animal or animals are pursued and sometimes captured and/or killed. -fun Hunting : Class ; -fun Hunting_Class : SubClass Hunting Pursuing ; - --- This is the subclass of ContentBearingPhysical --- which are not part of a Language and which have some sort of similarity --- with the Objects that they represent. This Class would include symbolic --- roadway signs, representational art works, photographs, etc. -fun Icon : Class ; -fun Icon_Class : SubClass Icon ContentBearingPhysical ; - --- The Attribute of Regions that are --- illuminated to some degree, i.e. in which some shapes are visually --- discernable. -fun Illuminated : Ind VisualAttribute ; - - --- Any Number that is the result of --- multiplying a RealNumber by the square root of _1. -fun ImaginaryNumber : Class ; -fun ImaginaryNumber_Class : SubClass ImaginaryNumber Number ; - --- (ImaginaryPartFn ?NUMBER) returns --- the part of ?NUMBER that has the square root of _1 as its factor. -fun ImaginaryPartFn : El ComplexNumber -> Ind ImaginaryNumber ; - - --- (ImmediateFamilyFn ?PERSON) denotes the --- immediate family of ?PERSON, i.e. the Group consisting of the parents of --- ?PERSON and anyone of whom ?PERSON is a parent. -fun ImmediateFamilyFn : El Human -> Ind FamilyGroup ; - - --- A UnaryFunction that maps a --- TimePosition to a short, indeterminate TimeInterval that --- immediately follows the TimePosition. -fun ImmediateFutureFn : El TimePosition -> Ind TimeInterval ; - - --- A UnaryFunction that maps a --- TimePosition to a short, indeterminate TimeInterval that --- immediately precedes the TimePosition. -fun ImmediatePastFn : El TimePosition -> Ind TimeInterval ; - - --- Any Touching where something comes into --- sudden, forceful, physical contact with something else. Some examples --- would be striking, knocking, whipping etc. -fun Impacting : Class ; -fun Impacting_Class : SubClass Impacting Touching ; - --- The subclass of Transfer where the patient --- travels through space by means of a sudden, forceful event. Some examples --- would be shooting, throwing, tossing, etc. -fun Impelling : Class ; -fun Impelling_Class : SubClass Impelling Transfer ; - --- English length unit of inches. -fun Inch : Ind UnitOfLength ; - - --- InchMercury is a UnitOfMeasure --- for barometricPressure. It is used to express the number of --- inches of mercury supported in a mercurial barometer by the --- surrounding air pressure. -fun InchMercury : Ind UnitOfAtmosphericPressure ; - - --- Any QuantityChange where the PhysicalQuantity --- is increased. -fun Increasing : Class ; -fun Increasing_Class : SubClass Increasing QuantityChange ; - --- An Argument which is inductive, i.e. it is --- claimed that a set of specific cases makes the conclusion, which generalizes --- these cases, more likely to be true. -fun InductiveArgument : Class ; -fun InductiveArgument_Class : SubClass InductiveArgument Argument ; - --- Measures of the amount of information. --- Includes Bit, Byte, and multiples of these, e.g. KiloByte and --- MegaByte. -fun InformationMeasure : Class ; -fun InformationMeasure_Class : SubClass InformationMeasure ConstantQuantity ; - --- The Process by which Food is --- taken into an Animal. -fun Ingesting : Class ; -fun Ingesting_Class : SubClass Ingesting OrganismProcess ; - --- A UnaryFunction that maps a --- GraphArc to the initial node of the GraphArc. Note --- that this is a partial function. In particular, the function is --- undefined for GraphArcs that are not part of a DirectedGraph. -fun InitialNodeFn : El GraphArc -> Ind GraphNode ; - - --- Inserting a BiologicallyActiveSubstance into an --- Animal or a Human with a syringe. -fun Injecting : Class ; -fun Injecting_Class : SubClass Injecting Inserting ; - --- The process of creating a traumatic wound or --- injury. Since Injuring is not possible without some biologic function --- of the organism being injured, it is a subclass of BiologicalProcess. -fun Injuring : Class ; -fun Injuring_Class : SubClass Injuring PathologicProcess ; -fun Injuring_Damaging : SubClassC Injuring Damaging (\INJ -> exists Organism (\ORGANISM -> patient(var Damaging Process ? INJ)(var Organism Entity ? ORGANISM))); - - --- A Class of small Arthropods that are --- air_breathing and that are distinguished by appearance. -fun Insect : Class ; -fun Insect_Class : SubClass Insect Arthropod ; - --- Putting one thing inside of another thing. -fun Inserting : Class ; -fun Inserting_Class : SubClass Inserting Putting ; - --- A negative or nonnegative whole number. -fun Integer : Class ; -fun Integer_Class : SubClass Integer RationalNumber ; - --- (IntegerSquareRootFn ?NUMBER) --- returns the integer square root of ?NUMBER. -fun IntegerSquareRootFn : El RealNumber -> Ind NonnegativeInteger ; - - --- A Process that has a specific --- purpose for the CognitiveAgent who performs it. -fun IntentionalProcess : Class ; -fun IntentionalProcess_Class : SubClass IntentionalProcess Process ; - --- An IntentionalProcess that --- can be realized entirely within the mind or brain of an Organism. Thus, --- for example, Reasoning is a subclass of IntentionalPsychologicalProcess, --- because one can reason simply by exercising one's mind/brain. On the other --- hand, RecreationOrExercise is not a subclass of IntentionalPsychologicalProcess, --- because many instances of RecreationOrExercise necessarily have subProcesses --- of BodyMotion. -fun IntentionalPsychologicalProcess : Class ; -fun IntentionalPsychologicalProcess_Class : SubClass IntentionalPsychologicalProcess (both IntentionalProcess PsychologicalProcess) ; - - --- Any Attribute of an Entity that is an --- internal property of the Entity, e.g. its shape, its color, its fragility, --- etc. -fun InternalAttribute : Class ; -fun InternalAttribute_Class : SubClass InternalAttribute Attribute ; - --- Processes which involve altering an internal --- property of an Object, e.g. the shape of the Object, its coloring, its --- structure, etc. Processes that are not instances of this class include --- changes that only affect the relationship to other objects, e.g. changes in --- spatial or temporal location. -fun InternalChange : Class ; -fun InternalChange_Class : SubClass InternalChange Process ; - --- Any Process of assigning a Proposition to --- a Text, i.e. understanding the Text. -fun Interpreting : Class ; -fun Interpreting_Class : SubClass Interpreting IntentionalPsychologicalProcess ; - --- A BinaryFunction that maps two --- SetOrClasses to the intersection of these SetOrClasses. An object is --- an instance of the intersection of two SetOrClasses just in case it is --- an instance of both of those SetOrClasses. -fun IntersectionFn : El SetOrClass -> El SetOrClass -> Ind SetOrClass ; - - --- A BinaryFunction that --- maps two instances of ConstantQuantity to the subclass of --- ConstantQuantity that comprises the interval from the first --- ConstantQuantity to the second ConstantQuantity. For --- example, (IntervalFn (MeasureFn 8 Meter) (MeasureFn 14 Meter)) --- would return the subclass of ConstantQuantity comprising quantities --- between 8 and 14 meters in length. -fun IntervalFn : El ConstantQuantity -> El ConstantQuantity -> Desc ConstantQuantity ; - - --- DeductiveArguments that are not --- ValidDeductiveArguments, i.e. it is not the case that the set of premises --- in fact entails the conclusion. -fun InvalidDeductiveArgument : Class ; -fun InvalidDeductiveArgument_Class : SubClass InvalidDeductiveArgument DeductiveArgument ; - --- An Animal which has no spinal column. -fun Invertebrate : Class ; -fun Invertebrate_Class : SubClass Invertebrate Animal ; - --- The class of IntentionalPsychologicalProcesses --- where the agent attempts to obtaina information (i.e. a Proposition denoted --- by a Formula). -fun Investigating : Class ; -fun Investigating_Class : SubClass Investigating IntentionalPsychologicalProcess ; - --- Any RealNumber that is not also a --- RationalNumber. -fun IrrationalNumber : Class ; -fun IrrationalNumber_Class : SubClass IrrationalNumber RealNumber ; - --- A LandArea that is completely surrounded by a WaterArea. -fun Island : Class ; -fun Island_Class : SubClass Island LandArea ; - --- The Class of all Months which are January. -fun January : Class ; -fun January_Class : SubClass January Month ; - --- The OrganizationalProcess of --- becoming a member of an Organization. -fun JoiningAnOrganization : Class ; -fun JoiningAnOrganization_Class : SubClass JoiningAnOrganization OrganizationalProcess ; - --- SI energy measure. Symbol: J. It is the work --- done when the point of application of 1 Newton is displaced a distance --- of 1 Meter in the direction of the force. Joule = N*m = --- m^2*kg*s^(_2). -fun Joule : Ind CompositeUnitOfMeasure ; - - --- The subclass of Selecting where the agent opts --- for one belief out of a set of multiple possibilities that are available to --- him/her. -fun Judging : Class ; -fun Judging_Class : SubClass Judging Selecting ; - --- JudicialOrganization is the class --- of Organizations whose primary purpose is to render judgments according --- to the statutes or regulations of a government or other organization. --- Judicial bodies are not necessarily government organizations, for example, --- those associated with sporting associations. -fun JudicialOrganization : Class ; -fun JudicialOrganization_Class : SubClass JudicialOrganization Organization ; - --- Any legal proceeding which is conducted --- by a JudicialOrganization. Note that there is an important difference --- between the concepts LegalAction and JudicialProcess. The former --- refers to legal claims that are brought by a plaintiff, e.g. law suits, --- while the second refers to trials and other sorts of judicial hearings --- where the merits of a LegalAction are decided. -fun JudicialProcess : Class ; -fun JudicialProcess_PoliticalProcess : SubClassC JudicialProcess PoliticalProcess (\PROCESS -> forall Organization (\ORG -> agent(var PoliticalProcess Process ? PROCESS)(var Organization Agent ? ORG))); - - --- The Class of all Months which are July. -fun July : Class ; -fun July_Class : SubClass July Month ; - --- The Class of all Months which are June. -fun June : Class ; -fun June_Class : SubClass June Month ; - --- The Class of Processes where the agent --- keeps something in a particular location for an extended period of time. -fun Keeping : Class ; -fun Keeping_Class : SubClass Keeping IntentionalProcess ; - --- SI UnitOfMeasure used --- with MeasureFn to produce terms denoting instances of --- TemperatureMeasure. Symbol: K. It is one of the base units in --- SI (it is also a unit in the ITS system). Kelvin differs from the --- Celsius scale in that the triple point of water is defined to be --- 273.16 KelvinDegrees while it is 0 CelsiusDegrees. The magnitudes --- of intervals in the two scales are the same. By definition the --- conversion constant is 273.15. -fun KelvinDegree : Ind UnitOfTemperature ; - - --- The subclass of Destruction in which the --- death of an Organism is caused by an Organism. Note that in cases --- of suicide the Organism would be the same in both cases. -fun Killing : Class ; -fun Killing_Class : SubClass Killing Destruction ; - --- One KiloByte (KB) of information. One --- KiloByte is 1024 Bytes. Note that this sense of 'kilo' is --- different from the one accepted in the SI system. -fun KiloByte : Ind UnitOfInformation ; - - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to 1,000 units of the original UnitOfMeasure. --- For example, (KiloFn Gram) is 1,000 Grams. -fun KiloFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- Supermultiple of Gramm. Symbol: kg. 1 Kilogram --- = 1000 Grams. -fun Kilogram : Ind UnitOfMass ; - - --- Supermultiple of Meter. Symbol: km. A --- Meter is the 1000th part of a Kilometer -fun Kilometer : Ind UnitOfLength ; - - --- An area which is predominantly solid ground, --- e.g. a Nation, a mountain, a desert, etc. Note that a LandArea may --- contain some relatively small WaterAreas. For example, Australia is --- a LandArea even though it contains various rivers and lakes. -fun LandArea : Class ; -fun LandArea_Class : SubClass LandArea GeographicArea ; - --- LandTransitway is the subclass of --- Transitway that represents areas intended for motion over the ground. -fun LandTransitway : Class ; -fun LandTransitway_Class : SubClass LandTransitway (both LandArea Transitway) ; - - --- A system of signs for expressing thought. The --- system can be either natural or artificial, i.e. something that emerges --- gradually as a cultural artifact or something that is intentionally created --- by a person or group of people. -fun Language : Class ; -fun Language_Class : SubClass Language LinguisticExpression ; - --- Form of most Invertebrates, Amphibians, and --- Fish immediately after they hatch. This form is fundamentally unlike --- the adult form, and metamorphosis is required to reach the latter form. -fun Larval : Ind DevelopmentalAttribute ; - - --- Attribute that applies to Propositions that are --- required by a government or a branch of the government and that are enforced --- with penalties for noncompliance. These Propositions may be codified as --- legislation or they may be more informal, as in the case of government policy. -fun Law : Ind DeonticAttribute ; - - --- The Class of all leap years. These are years --- which are either (i.) evenly divisible by 4 and not by 100 or (ii.) evenly --- divisible by 400 (this latter case is known as a leap century). -fun LeapYear : Class ; -fun LeapYear_Class : SubClass LeapYear Year ; - --- The Class of Processes which relate to the --- acquisition of information. -fun Learning : Class ; -fun Learning_Class : SubClass Learning IntentionalPsychologicalProcess ; - --- (LeastCommonMultipleFn --- ?NUMBER1 ?NUMBER2 ... ?NUMBER) returns the least common multiple of --- ?NUMBER1 through ?NUMBER. -fun LeastCommonMultipleFn : [El Integer] -> Ind Integer ; - - --- The OrganizationalProcess of --- leaving an Organization, whether voluntarily or involuntarily. -fun LeavingAnOrganization : Class ; -fun LeavingAnOrganization_Class : SubClass LeavingAnOrganization OrganizationalProcess ; - --- This PositionalAttribute is derived from the --- left/right schema. Note that this means directly to the left, so that, --- if one object is to the left of another, then the projections of the --- two objects overlap. -fun Left : Ind AntiSymmetricPositionalAttribute ; - - --- Any Process where a CognitiveAgent seeks --- to obtain something through a court of law. -fun LegalAction : Class ; -fun LegalAction_Class : SubClass LegalAction Contest ; - --- A decision issued by a court with respect to --- a LegalAction. Note that a LegalDecision is the act of Declaring a --- decision of a court, it is not the act of judge or jury Deciding the merits --- of a particular LegalAction. -fun LegalDecision : Class ; -fun LegalDecision_Class : SubClass LegalDecision (both Declaring JudicialProcess) ; - - --- The subclass of Giving Processes where --- the agent gives the destination something for a limited period of --- time with the expectation that it will be returned later (perhaps with --- interest). -fun Lending : Class ; -fun Lending_Class : SubClass Lending Giving ; - --- A subclass of --- ConstantQuantity, instances of which are measures of length. -fun LengthMeasure : Class ; -fun LengthMeasure_Class : SubClass LengthMeasure ConstantQuantity ; - --- The ProbabilityAttribute of being probable, i.e. more --- likely than not to be True. -fun Likely : Ind ProbabilityAttribute ; - - --- A Communication that involves --- the transfer of information via a LinguisticExpression. -fun LinguisticCommunication : Class ; -fun LinguisticCommunication_Class : SubClass LinguisticCommunication Communication ; - --- This is the subclass of --- ContentBearingPhysical which are language_related. Note that this Class --- encompasses both Language and the the elements of Languages, --- e.g. Words. -fun LinguisticExpression : Class ; -fun LinguisticExpression_Class : SubClass LinguisticExpression ContentBearingPhysical ; - --- An Object has the Attribute of Liquid if --- it has a fixed volume but not a fixed shape. -fun Liquid : Ind PhysicalState ; - - --- Any Mixture that satisfies two conditions, --- viz. it is made up predominantly of things which are a Liquid and any --- component other than Liquid in the Mixture is in the form of fine particles --- which are suspended in the Liquid. -fun LiquidMixture : Class ; -fun LiquidMixture_Class : SubClass LiquidMixture Mixture ; - --- Any Motion where the patient is a --- Liquid. This class would cover, in particular, the flow of --- Water. -fun LiquidMotion : Class ; -fun LiquidMotion_Class : SubClass LiquidMotion Motion ; - --- Every List is a particular ordered n_tuple of --- items. Generally speaking, Lists are created by means of the ListFn --- Function, which takes any number of items as arguments and returns a --- List with the items in the same order. Anything, including other --- Lists, may be an item in a List. Note too that Lists are --- extensional _ two lists that have the same items in the same order are --- identical. Note too that a List may contain no items. In that case, --- the List is the NullList. -fun List : Class ; - - --- A Function that returns the concatenation --- of the two Lists that are given as arguments. For example, the value of --- (ListConcatenateFn (ListFn Monday Tuesday) (ListFn Wednesday --- Thursday)) would be (ListFn Monday Tuesday Wednesday Thursday). -fun ListConcatenateFn : El List -> El List -> Ind List ; - - --- A Function that takes any number of arguments and --- returns the List containing those arguments in exactly the same order. -fun ListFn : [El Entity] -> Ind List ; - - --- A Function that takes a List as its sole --- argument and returns the number of items in the List. For example, --- (ListLengthFn (ListFn Monday Tuesday Wednesday)) would return the --- value 3. -fun ListLengthFn : El List -> Ind NonnegativeInteger ; - - --- (ListOrderFn ?LIST ?NUMBER) denotes the item --- that is in the ?NUMBER position in the List ?LIST. For example, --- (ListOrderFn (ListFn Monday Tuesday Wednesday) 2) would return the --- value Tuesday. -fun ListOrderFn : El List -> El PositiveInteger -> Ind Entity ; - - --- Any instance of Hearing which is intentional. -fun Listening : Class ; -fun Listening_Class : SubClass Listening (both Hearing IntentionalProcess) ; - - --- Unit of volume in the metric --- system. It is currently defined to be equal to one cubic --- decimeter (0.001 cubic meter). Symbol: l. -fun Liter : Ind UnitOfVolume ; - - --- This Attribute applies to Organisms that are --- alive. -fun Living : Ind AnimacyAttribute ; - - --- (LogFn ?NUMBER ?INT) returns the logarithm of the --- RealNumber ?NUMBER in the base denoted by the Integer ?INT. -fun LogFn : El RealNumber -> El PositiveInteger -> Ind RealNumber ; - - --- This Class comprises all --- of the logical operators (viz. 'and', 'or', 'not', '=>', and '<=>'). -fun LogicalOperator : Class ; - - --- Any instance of Seeing which is intentional. -fun Looking : Class ; -fun Looking_Class : SubClass Looking (both IntentionalProcess Seeing) ; - - --- SI luminous flux measure. Symbol: lm. It is the --- amount streaming outward through one solid angle of 1 Steradian from a --- uniform point source having an intensity of one Candela. Lumen = --- cd*sr = cd * 1. -fun Lumen : Ind CompositeUnitOfMeasure ; - - --- SI illuminance measure. Symbol: lx. It is the --- amount of illumination provided when one Lumen is evenly distributed --- over an area of 1 square Meter. This is also equivalent to the --- illumination that would exist on a surface all points of which are one --- Meter from a point source of one Candela. Lux = lm/m^2 = --- m^(_2)*cd. -fun Lux : Ind CompositeUnitOfMeasure ; - - --- Machines are Devices that that have a --- well_defined resource and result and that automatically convert --- the resource into the result. -fun Machine : Class ; -fun Machine_Class : SubClass Machine Device ; - --- The magnitude of a PhysicalQuantity is the --- numeric value for the quantity. In other words, MagnitudeFn converts --- a PhysicalQuantity with an associated UnitOfMeasure into an ordinary --- RealNumber. For example, the magnitude of the ConstantQuantity 2 --- Kilometers is the RealNumber 2. Note that the magnitude of a --- quantity in a given unit times that unit is equal to the original --- quantity. -fun MagnitudeFn : El PhysicalQuantity -> Ind RealNumber ; - - --- The Class of Processes where the agent --- cares for or maintains the Object. -fun Maintaining : Class ; -fun Maintaining_Class : SubClass Maintaining IntentionalProcess ; - --- The subclass of Creation in which an individual --- Artifact or a type of Artifact is made. -fun Making : Class ; -fun Making_Class : SubClass Making (both Creation IntentionalProcess) ; - - --- An Attribute indicating that an Organism is --- male in nature. -fun Male : Ind SexAttribute ; - - --- A Vertebrate having a constant body temperature --- and characterized by the presence of hair, mammary glands, and sweat --- glands. -fun Mammal : Class ; -fun Mammal_Class : SubClass Mammal WarmBloodedVertebrate ; - --- The class of Male Humans. -fun Man : Class ; -fun Man_Class : SubClass Man Human ; - --- OrganizationalProcesses that involve overseeing --- the activities of others. Note the key differences between RegulatoryProcess --- and its sibling Managing. The latter implies a long_term relationship between --- the manager and the managed, while the former implies a normative standard to which --- the activities of the regulated are referred. -fun Managing : Class ; -fun Managing_Class : SubClass Managing (both Guiding OrganizationalProcess) ; - - --- An intentional move or play within a Contest. --- In many cases, a Maneuver is a realization of part of a strategy for --- winning the Contest, but it also may be just an arbitrary or semi_arbitrary --- division of the overarching Contest, e.g. innings in a baseball game. -fun Maneuver : Class ; -fun Maneuver_Class : SubClass Maneuver IntentionalProcess ; - --- A ManualHumanLanguage is a --- HumanLanguage which has as its medium gestures and movement, such --- as the shape, position, and movement of the hands. -fun ManualHumanLanguage : Class ; -fun ManualHumanLanguage_Class : SubClass ManualHumanLanguage HumanLanguage ; - --- The Making of Artifacts on a mass --- scale. -fun Manufacture : Class ; -fun Manufacture_Class : SubClass Manufacture Making ; - --- Any Corporation which manufactures Products. -fun Manufacturer : Class ; -fun Manufacturer_Class : SubClass Manufacturer Corporation ; - --- The Class of all Months which are March. -fun March : Class ; -fun March_Class : SubClass March Month ; - --- The Class of Mammals which have a pouch for --- their young. -fun Marsupial : Class ; -fun Marsupial_Class : SubClass Marsupial Mammal ; - --- A subclass of --- ConstantQuantity, instances of which are measures of the amount of --- matter in an Object. -fun MassMeasure : Class ; -fun MassMeasure_Class : SubClass MassMeasure ConstantQuantity ; - --- The OrganizationalProcess of joining an --- EducationalOrganization as a student. -fun Matriculation : Class ; -fun Matriculation_Class : SubClass Matriculation JoiningAnOrganization ; - --- (MaxFn ?NUMBER1 ?NUMBER2) is the largest of --- ?NUMBER1 and ?NUMBER2. In cases where ?NUMBER1 is equal to ?NUMBER2, --- MaxFn returns one of its arguments. -fun MaxFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- This BinaryFunction assigns two --- GraphNodes to the GraphPath with the largest sum of weighted arcs --- between the two GraphNodes. -fun MaximalWeightedPathFn : El GraphNode -> El GraphNode -> Ind GraphPath ; - - --- The Class of all Months which are May. -fun May : Class ; -fun May_Class : SubClass May Month ; - --- This BinaryFunction maps a --- RealNumber and a UnitOfMeasure to that Number of units. It is --- used to express `measured' instances of PhysicalQuantity. Example: --- the concept of three meters is represented as (MeasureFn 3 --- Meter). -fun MeasureFn : El RealNumber -> El UnitOfMeasure -> Ind PhysicalQuantity ; - - --- The Class of Calculating Processes where --- the aim is to determine the PhysicalQuantity of some aspect of the patient. -fun Measuring : Class ; -fun Measuring_Class : SubClass Measuring Calculating ; - --- Any Device whose purpose is to measure a --- PhysicalQuantity. -fun MeasuringDevice : Class ; -fun MeasuringDevice_Class : SubClass MeasuringDevice Device ; - --- Any Food which was originally part of an --- Animal and is not ingested by drinking, including eggs and animal --- blood that is eaten as food. Note that this class covers both raw --- meat and meat that has been prepared in some way, e.g. by cooking. --- Note too that preparations involving Meat and FruitOrVegetable --- are classed directly under Food. -fun Meat : Class ; -fun Meat_Class : SubClass Meat Food ; - --- The coming together of two or more --- CognitiveAgents for the purpose of Communication. This covers informal --- meetings, e.g. visits with family members, and formal meetings, e.g. a board --- of directors meeting. -fun Meeting : Class ; -fun Meeting_Class : SubClass Meeting SocialInteraction ; - --- One MegaByte (MB) of information. One --- MegaByte is 1024 KiloBytes. Note that this sense of 'mega' is --- different from the one accepted in the SI system. -fun MegaByte : Ind UnitOfInformation ; - - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to 1,000,000 units of the original --- UnitOfMeasure. For example, (MegaFn Hertz) is 1,000,000 Hertz. -fun MegaFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- The Class of Processes where an Object is --- heated and converted from a Solid to a Liquid. -fun Melting : Class ; -fun Melting_Class : SubClass Melting StateChange ; - --- Any Corporation which sells --- goods or services to customers for a profit. -fun MercantileOrganization : Class ; -fun MercantileOrganization_Class : SubClass MercantileOrganization Corporation ; - --- (MereologicalDifferenceFn ?OBJ1 --- ?OBJ2) denotes the Object consisting of the parts which belong to ?OBJ1 --- and not to ?OBJ2. -fun MereologicalDifferenceFn : El Object -> El Object -> Ind Object ; - - --- (MereologicalProductFn ?OBJ1 ?OBJ2) --- denotes the Object consisting of the parts which belong to both ?OBJ1 --- and ?OBJ2. -fun MereologicalProductFn : El Object -> El Object -> Ind Object ; - - --- (MereologicalSumFn ?OBJ1 ?OBJ2) --- denotes the Object consisting of the parts which belong to either --- ?OBJ1 or ?OBJ2. -fun MereologicalSumFn : El Object -> El Object -> Ind Object ; - - --- A Metal is an ElementalSubstance that conducts heat --- and electricity, is shiny and reflects many colors of light, and can be hammered --- into sheets or drawn into wire. About 80% of the known chemical elements --- (ElementalSubstances) are metals. -fun Metal : Class ; -fun Metal_Class : SubClass Metal ElementalSubstance ; - --- SI UnitOfLength. Symbol: m. It is one of the --- base units in SI, and it is currently defined as follows: the Meter --- is the length of the path traveled by light in a vacuum during a time --- interval of 1/299792458 of a SecondDuration. -fun Meter : Ind UnitOfLength ; - - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to .000001 units of the original UnitOfMeasure. --- For example, (MicroFn Meter) is .000001 Meters. -fun MicroFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- An Organism that can be seen only with --- the aid of a microscope. -fun Microorganism : Class ; -fun Microorganism_Class : SubClass Microorganism Organism ; - --- English length unit of miles. -fun Mile : Ind UnitOfLength ; - - --- MilitaryForce is the subclass of --- Organizations that are organized along military lines and for the --- purpose of either defensive or offensive combat, whether or not --- the force is an official GovernmentOrganization. -fun MilitaryForce : Class ; -fun MilitaryForce_Class : SubClass MilitaryForce PoliticalOrganization ; - --- Any heavily armed Organization --- that is part of a Government and that is charged with representing the --- Government in international conflicts. -fun MilitaryOrganization : Class ; -fun MilitaryOrganization_Class : SubClass MilitaryOrganization (both GovernmentOrganization MilitaryForce) ; - - --- Any Process that is carried out by a --- military organization. Note that this class covers Processes, e.g. --- military operations, that are the result of careful planning, as well as --- those which are unscripted. -fun MilitaryProcess : Class ; -fun MilitaryProcess_Class : SubClass MilitaryProcess PoliticalProcess ; - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to .001 units of the original UnitOfMeasure. --- For example, (MilliFn Gram) is .001 Grams. -fun MilliFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- Submultiple of Meter. Symbol: mm. A millimeter --- is the 1000th part of a meter -fun Millimeter : Ind UnitOfLength ; - - --- (MinFn ?NUMBER1 ?NUMBER2) is the smallest of --- ?NUMBER1 and ?NUMBER2. In cases where ?NUMBER1 is equal to ?NUMBER2, --- MinFn returns one of its arguments. -fun MinFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- Any of various naturally occurring homogeneous --- substances (such as stone, coal, salt, sulfur, sand, petroleum), or --- synthetic substances having the chemical composition and crystalline form --- and properties of a naturally occurring mineral. -fun Mineral : Class ; -fun Mineral_Class : SubClass Mineral Substance ; - --- A UnaryFunction that assigns a Graph --- the Class of GraphPaths which comprise cutsets for the Graph and --- which have the least number of GraphArcs. -fun MinimalCutSetFn : El Graph -> Desc GraphPath ; - - --- This BinaryFunction assigns two --- GraphNodes to the GraphPath with the smallest sum of weighted arcs --- between the two GraphNodes. -fun MinimalWeightedPathFn : El GraphNode -> El GraphNode -> Ind GraphPath ; - - --- The Class of all clock Minutes. -fun Minute : Class ; -fun Minute_Class : SubClass Minute TimeInterval ; - --- Time unit. 1 minute = 60 seconds. -fun MinuteDuration : Ind UnitOfDuration ; - - --- A BinaryFunction that assigns a PositiveRealNumber and --- a subclass of Hours to the Minutes within each Hour corresponding to that --- NonnegativeInteger. For example, (MinuteFn 30 (HourFn 17 Day)) is the Class --- of all 5:30's in the afternoon. For another example, (MinuteFn 15 Hour) would return --- the class of all instances of quarter past the hour. For still another example, --- (MinuteFn 15 (HourFn 14 (DayFn 18 (MonthFn August (YearFn 1912))))) denotes --- 15 minutes after 2 PM on the 18th day of August 1912. -fun MinuteFn : El NonnegativeInteger -> Desc Hour -> Desc Minute ; - - --- A Mixture is two or more PureSubstances, --- combined in varying proportions _ each retaining its own specific properties. --- The components of a Mixture can be separated by physical means, i.e. without --- the making and breaking of chemical bonds. Examples: Air, table salt thoroughly --- dissolved in water, milk, wood, and concrete. -fun Mixture : Class ; -fun Mixture_Class : SubClass Mixture Substance ; - --- MmMercury is a UnitOfMeasure --- for barometricPressure. It is used to express the number --- of millimeters of mercury supported in a mercurial barometer --- by the surrounding air pressure. -fun MmMercury : Ind UnitOfAtmosphericPressure ; - - --- SI amount of substance --- unit. symbol: mol. It is one of the base units in SI. It is defined as --- follows: the Mole is the amount of substance of a system which --- contains as many elementary entities as there are atoms in 0.012 --- Kilograms of carbon 12. Note that, when this UnitOfMeasure is --- used, the elementary entities must be specified _ they may be atoms, --- molecules, ions, electrons, etc. or groups of such particles. -fun Mole : Ind UnitOfMass ; - - --- A molecule is the smallest unit of matter of a --- CompoundSubstance that retains all the physical and chemical properties --- of that substance, e.g., Ne, H2, H2O. A molecule is two or more Atoms --- linked by a chemical bond. -fun Molecule : Class ; -fun Molecule_Class : SubClass Molecule CompoundSubstance ; - --- Soft_bodied Invertebrate that is usually --- contained in a shell. Includes oysters, clams, mussels, snails, slugs, --- octopi, and squid. -fun Mollusk : Class ; -fun Mollusk_Class : SubClass Mollusk Invertebrate ; - --- The Class of all calendar Mondays. -fun Monday : Class ; -fun Monday_Class : SubClass Monday Day ; - --- Various Primates with relatively long --- tails. -fun Monkey : Class ; -fun Monkey_Class : SubClass Monkey Primate ; - --- An Object with this Attribute has --- the same color on every part of its surface. -fun Monochromatic : Ind ColorAttribute ; - - --- The Class of all calendar Months. -fun Month : Class ; -fun Month_Class : SubClass Month TimeInterval ; - --- Time unit. A month's duration is at least --- 28 days, and no more than 31 days. Note that this unit is a range, rather --- than an exact amount, unlike most other units. -fun MonthDuration : Ind UnitOfDuration ; - - --- A BinaryFunction that maps a subclass of Month and a --- subclass of Year to the class containing the Months corresponding to thos Years. --- For example (MonthFn January (YearFn 1912)) is the class containing the eighth --- Month, i.e. August, of the Year 1912. For another example, (MonthFn August --- Year) is equal to August, the class of all months of August. Note that this function --- returns a Class as a value. The reason for this is that the related functions, viz. --- DayFn, HourFn, MinuteFn, and SecondFn, are used to generate both specific TimeIntervals --- and recurrent intervals, and the only way to do this is to make the domains and ranges of --- these functions classes rather than individuals. -fun MonthFn : Desc Month -> Desc Year -> Desc Month ; - - --- Part of a Word which cannot be subdivided --- and which expresses a meaning. -fun Morpheme : Class ; -fun Morpheme_Class : SubClass Morpheme LinguisticExpression ; - --- A NonFloweringPlant without true roots and little --- if any vascular tissue. -fun Moss : Class ; -fun Moss_Class : SubClass Moss NonFloweringPlant ; - --- Any Process of movement. -fun Motion : Class ; -fun Motion_Class : SubClass Motion Process ; - --- Motion where an Object is moving toward the --- ground. -fun MotionDownward : Class ; -fun MotionDownward_Class : SubClass MotionDownward Motion ; - --- A ContentBearingObject which depicts motion --- (and which may have an audio or text component as well). This Class covers --- films, videos, etc. -fun MotionPicture : Class ; -fun MotionPicture_Class : SubClass MotionPicture Text ; - --- Motion where an Object is moving away --- from the ground. -fun MotionUpward : Class ; -fun MotionUpward_Class : SubClass MotionUpward Motion ; - --- A TimeZone that covers much of the --- Rocky Mountain region of the United States. -fun MountainTimeZone : Ind TimeZone ; - - --- The Class of multigraphs. A multigraph --- is a Graph containing at least one pair of GraphNodes that are --- connected by more than one GraphArc. -fun MultiGraph : Class ; -fun MultiGraph_Class : SubClass MultiGraph Graph ; - --- If ?NUMBER1 and ?NUMBER2 are Numbers, --- then (MultiplicationFn ?NUMBER1 ?NUMBER2) is the arithmetical product --- of these numbers. -fun MultiplicationFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- Nonrigid Tissue appearing only in Animals and --- composed largely of contractile cells. -fun Muscle : Class ; -fun Muscle_Class : SubClass Muscle (both AnimalSubstance Tissue) ; - - --- The subclass of RadiatingSound where the --- sound is intended to be melodic and is produced deliberately. -fun Music : Class ; -fun Music_Class : SubClass Music RadiatingSound ; - --- A Device which is manipulated by a Human --- and whose purpose is to produce Music. -fun MusicalInstrument : Class ; -fun MusicalInstrument_Class : SubClass MusicalInstrument Device ; - --- A SetOrClass is a MutuallyDisjointClass --- just in case there exists nothing which is an instance of all of the instances of --- the original SetOrClass. -fun MutuallyDisjointClass : Class ; -fun MutuallyDisjointClass_Class : SubClass MutuallyDisjointClass SetOrClass ; - --- A Class of Arthropods that includes --- centipedes and millipedes. -fun Myriapod : Class ; -fun Myriapod_Class : SubClass Myriapod Arthropod ; - --- A Promise where nothing is promised in return, --- i.e. a nudum pactum. -fun NakedPromise : Ind DeonticAttribute ; - - --- The Process of assigning a name to someone or something. -fun Naming : Class ; -fun Naming_Class : SubClass Naming Declaring ; - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to .000000001 units of the original --- UnitOfMeasure. For example, (MicroFn SecondDuration) is .000000001 --- SecondDurations. -fun NanoFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- The broadest GeopoliticalArea, i.e. Nations are --- GeopoliticalAreas that are not part of any other overarching and --- comprehensive governance structure (excepting commonwealths and other sorts --- of loose international organizations). -fun Nation : Class ; -fun Nation_Class : SubClass Nation (both GeopoliticalArea LandArea) ; - - --- The subclass of HumanLanguages which --- are not designed and which evolve from generation to generation. This --- Class includes all of the national languages, e.g. English, Spanish, --- Japanese, etc. Note that this class includes dialects of natural --- languages. -fun NaturalLanguage : Class ; -fun NaturalLanguage_Class : SubClass NaturalLanguage HumanLanguage ; - --- A Process that take place in nature --- spontanously. -fun NaturalProcess : Class ; -fun NaturalProcess_Class : SubClass NaturalProcess Process ; - --- Any Substance that is not the result of --- an IntentionalProcess, i.e. any substance that occurs naturally. -fun NaturalSubstance : Class ; -fun NaturalSubstance_Class : SubClass NaturalSubstance Substance ; - --- The relation of common sense adjacency. Note that, if --- an object is Near another object, then the objects are not connected. -fun Near : Ind SymmetricPositionalAttribute ; - - --- Attribute that applies to Propositions that are --- necessary, i.e. true in every possible world. -fun Necessity : Ind AlethicAttribute ; - - --- The TimePoint that is before --- all other TimePoints. -fun NegativeInfinity : Ind TimePoint ; - - --- An Integer that is less than zero. -fun NegativeInteger : Class ; -fun NegativeInteger_Class : SubClass NegativeInteger (both Integer NegativeRealNumber) ; - - --- A RealNumber that is less than --- zero. -fun NegativeRealNumber : Class ; -fun NegativeRealNumber_RealNumber : SubClassC NegativeRealNumber RealNumber (\NUMBER -> lessThan(var RealNumber Quantity ? NUMBER)(el Integer Quantity ? (toInt 0))); - - --- A system in Vertebrates that is made up of --- the Brain, the spinal cord, nerves, etc. -fun NervousSystem : Class ; -fun NervousSystem_Class : SubClass NervousSystem (both AnimalAnatomicalStructure Organ) ; - - --- Components of the AtomicNucleus. They have no --- charge. -fun Neutron : Class ; -fun Neutron_Class : SubClass Neutron SubatomicParticle ; - --- SI force measure. Symbol: N. It is that force --- which gives to a mass of 1 kilogram an acceleration of 1 Meter per --- SecondDuration. Newton = m*kg*s^(_2). -fun Newton : Ind CompositeUnitOfMeasure ; - - --- Instances of --- this Class are UnitsOfMeasure that are applied to a single --- dimension, and so are not intrinsically defined by the functional --- composition of other units. -fun NonCompositeUnitOfMeasure : Class ; -fun NonCompositeUnitOfMeasure_Class : SubClass NonCompositeUnitOfMeasure UnitOfMeasure ; - --- A Plant that reproduces with spores and --- does not produce flowers. -fun NonFloweringPlant : Class ; -fun NonFloweringPlant_Class : SubClass NonFloweringPlant Plant ; - --- The stage of an Organism before it is --- FullyFormed. -fun NonFullyFormed : Ind DevelopmentalAttribute ; - - --- Any SetOrClass that contains at least one --- instance. -fun NonNullSet : Class ; -fun NonNullSet_Class : SubClass NonNullSet SetOrClass ; - --- An Integer that is greater than --- or equal to zero. -fun NonnegativeInteger : Class ; -fun NonnegativeInteger_Class : SubClass NonnegativeInteger (both Integer NonnegativeRealNumber) ; - - --- A RealNumber that is greater than --- or equal to zero. -fun NonnegativeRealNumber : Class ; -fun NonnegativeRealNumber_RealNumber : SubClassC NonnegativeRealNumber RealNumber (\NUMBER -> greaterThanOrEqualTo(var RealNumber Quantity ? NUMBER)(el Integer Quantity ? (toInt 0))); - - --- A Class containing all of the --- Attributes that are specific to morality, legality, aesthetics, --- etiquette, etc. Many of these attributes express a judgement that --- something ought or ought not to be the case. -fun NormativeAttribute : Class ; -fun NormativeAttribute_Class : SubClass NormativeAttribute RelationalAttribute ; - --- The compass direction of North. -fun North : Ind DirectionalAttribute ; - - --- One of the parts of speech. The Class of Words --- that conventionally denote Objects. -fun Noun : Class ; -fun Noun_Class : SubClass Noun Word ; - --- A Phrase that has the same function as a --- Noun. -fun NounPhrase : Class ; -fun NounPhrase_Class : SubClass NounPhrase Phrase ; - --- The Class of all Months which are November. -fun November : Class ; -fun November_Class : SubClass November Month ; - --- The List that has no items. The uniqueness of --- NullList follows from the extensionality of Lists, i.e. the fact that --- two Lists with the same items in the same order are identical. -fun NullList : Ind List ; - - --- Any SetOrClass that contains no instances. -fun NullSet : Class ; -fun NullSet_Class : SubClass NullSet SetOrClass ; - --- A measure of how many things there are, or how --- much there is, of a certain kind. Numbers are subclassed into --- RealNumber, ComplexNumber, and ImaginaryNumber. -fun Number : Class ; -fun Number_Class : SubClass Number Quantity ; - --- NumberE is the RealNumber that is the base for --- natural logarithms. It is approximately equal to 2.718282. -fun NumberE : Ind PositiveRealNumber ; - - --- (NumeratorFn ?NUMBER) returns the numerator --- of the canonical reduced form ?NUMBER. -fun NumeratorFn : El RealNumber -> Ind Integer ; - - --- A BiologicallyActiveSubstance required by an Organism. --- It is generally ingested as Food, and it is of primary interest because of its role --- in the biologic functioning of the Organism. -fun Nutrient : Class ; -fun Nutrient_Class : SubClass Nutrient BiologicallyActiveSubstance ; - --- Corresponds roughly to the class of ordinary --- objects. Examples include normal physical objects, geographical regions, --- and locations of Processes, the complement of Objects in the Physical --- class. In a 4D ontology, an Object is something whose spatiotemporal --- extent is thought of as dividing into spatial parts roughly parallel to the --- time_axis. -fun Object : Class ; -fun Object_Class : SubClass Object Physical ; - --- The Class of NormativeAttributes that are --- associated with an objective criterion for their attribution, i.e. there is --- broad consensus about the cases where these attributes are applicable. -fun ObjectiveNorm : Class ; -fun ObjectiveNorm_Class : SubClass ObjectiveNorm NormativeAttribute ; - --- Attribute that applies to Propositions that an --- Agent is required, by some authority, to make true. -fun Obligation : Ind DeonticAttribute ; - - --- The Class of all Months which are October. -fun October : Class ; -fun October_Class : SubClass October Month ; - --- An Integer that is not evenly divisible --- by 2. -fun OddInteger : Class ; -fun OddInteger_Class : SubClass OddInteger Integer ; - --- The subclass of Committing in which a --- CognitiveAgent offers something Physical to another agent. Offerings --- may be unconditional (in which case they are a promise to effect a --- UnilateralGiving) or conditional (in which case they are a promise to --- effect a Transaction of some sort). -fun Offering : Class ; -fun Offering_Class : SubClass Offering Committing ; - --- SI electric resistance measure. It is the electric --- resistance between two points of a conductor when a constant difference --- of potential of 1 Volt, applied between these two points, --- produces in this conductor a current of 1 Ampere, this conductor not --- being the force of any electromotive force. Ohm = V/A = --- m^2*kg*s^(_3)*A^(_2). -fun Ohm : Ind CompositeUnitOfMeasure ; - - --- The Class of properties that are --- detectable by smell. -fun OlfactoryAttribute : Class ; -fun OlfactoryAttribute_Class : SubClass OlfactoryAttribute PerceptualAttribute ; - --- This is used to assert that an object is on top of --- another object, and it is derived from the up/down schema and involves --- contact. -fun On : Ind AntiSymmetricPositionalAttribute ; - - --- The class of GeometricFigures that --- have position and an extension along a single dimension, viz. straight lines. -fun OneDimensionalFigure : Class ; -fun OneDimensionalFigure_Class : SubClass OneDimensionalFigure GeometricFigure ; - --- The class of TwoDimensionalFigures that --- are not ClosedTwoDimensionalFigures. -fun OpenTwoDimensionalFigure : Class ; -fun OpenTwoDimensionalFigure_Class : SubClass OpenTwoDimensionalFigure TwoDimensionalFigure ; - --- A Directing in which the receiver is --- commanded to realize the content of a ContentBearingObject. Orders --- are injunctions, the disobedience of which involves sanctions, or --- which express an obligation upon the part of the orderee. -fun Ordering : Class ; -fun Ordering_Class : SubClass Ordering Directing ; - --- A somewhat independent BodyPart that performs a --- specialized function. Note that this functional definition covers bodily --- systems, e.g. the digestive system or the central nervous system. -fun Organ : Class ; -fun Organ_Class : SubClass Organ BodyPart ; - --- A PhysiologicProcess of a --- particular Organ or Tissue. -fun OrganOrTissueProcess : Class ; -fun OrganOrTissueProcess_Class : SubClass OrganOrTissueProcess AutonomicProcess ; - --- This class encompasses Organisms, --- CorpuscularObjects that are parts of Organisms, i.e. BodyParts, --- and CorpuscularObjects that are nonintentionally produced by --- Organisms, e.g. ReproductiveBodies. -fun OrganicObject : Class ; -fun OrganicObject_Class : SubClass OrganicObject CorpuscularObject ; - --- Generally, a living individual, including all --- Plants and Animals. -fun Organism : Class ; -fun Organism_Class : SubClass Organism (both Agent OrganicObject) ; - - --- A physiologic function of the --- Organism as a whole, of multiple organ systems or of multiple --- Organs or Tissues. -fun OrganismProcess : Class ; -fun OrganismProcess_Class : SubClass OrganismProcess PhysiologicProcess ; - --- An Organization is a corporate or similar --- institution. The members of an Organization typically have a common --- purpose or function. Note that this class also covers divisions, departments, --- etc. of organizations. For example, both the Shell Corporation and the --- accounting department at Shell would both be instances of Organization. --- Note too that the existence of an Organization is dependent on the existence --- of at least one member (since Organization is a subclass of Collection). --- Accordingly, in cases of purely legal organizations, a fictitious member --- should be assumed. -fun Organization : Class ; -fun Organization_Class : SubClass Organization (both CognitiveAgent Group) ; - - --- An IntentionalProcess that --- involves an Organization. -fun OrganizationalProcess : Class ; -fun OrganizationalProcess_Class : SubClass OrganizationalProcess IntentionalProcess ; - --- English unit of volume equal to 1/8 of a --- Cup. -fun Ounce : Ind UnitOfVolume ; - - --- The class of ClosedTwoDimensionalFigures that are --- produced by the intersection of a Cone with a ClosedTwoDimensionalFigure. -fun Oval : Class ; -fun Oval_Class : SubClass Oval ClosedTwoDimensionalFigure ; - --- A TimeZone that covers much of the --- western part of the United States. -fun PacificTimeZone : Ind TimeZone ; - - --- A SetOrClass is a PairwiseDisjointClass --- just in case every instance of the SetOrClass is either equal to or disjoint --- from every other instance of the SetOrClass. -fun PairwiseDisjointClass : Class ; -fun PairwiseDisjointClass_Class : SubClass PairwiseDisjointClass SetOrClass ; - --- An Organization which is much like --- a MilitaryOrganization, e.g. it is made up of armed fighters, except that it --- is not associated with a Government. -fun ParamilitaryOrganization : Class ; -fun ParamilitaryOrganization_Class : SubClass ParamilitaryOrganization MilitaryForce ; - --- An umbrella Class for any Word that does not --- fit into the other subclasses of Word. A ParticleWord is generally a small --- term that serves a grammatical or logical function, e.g. 'and', 'of', --- 'since', etc. At some point, this class might be broken up into the --- subclasses 'Connective', 'Preposition', etc. Note that the class ParticleWord --- includes both personal and possessive pronouns, e.g. 'she', 'hers', 'it', 'its', --- etc. -fun ParticleWord : Class ; -fun ParticleWord_Class : SubClass ParticleWord Word ; - --- SI pressure measure. Symbol:Pa. It is the --- pressure of one Newton per square Meter. Pascal = N/m^2 --- = m^(_1)*kg*s^(_2). -fun Pascal : Ind CompositeUnitOfMeasure ; - - --- A UnaryFunction that maps a TimePosition --- to the TimeInterval that meets it and that begins at --- NegativeInfinity. -fun PastFn : El TimePosition -> Ind TimeInterval ; - - --- A Certificate that expresses the content of an --- invention that has been accorded legal protection by a governemental --- entity. -fun Patent : Class ; -fun Patent_Class : SubClass Patent Certificate ; - --- A UnaryFunction that maps a --- GraphPath to the sum of the arcWeights on the GraphArcs in --- the GraphPath. -fun PathWeightFn : El GraphPath -> Ind Quantity ; - - --- A disordered process, activity, or --- state of the Organism as a whole, of a body system or systems, or of --- multiple Organs or Tissues. Included here are normal responses to a --- negative stimulus as well as patholologic conditions or states that are --- less specific than a disease. Pathologic functions frequently have --- systemic effects. -fun PathologicProcess : Class ; -fun PathologicProcess_Class : SubClass PathologicProcess BiologicalProcess ; - --- PerFn maps two instances of PhysicalQuantity to --- the FunctionQuantity composed of these two instances. For example, --- (PerFn (MeasureFn 2 (MicroFn Gram)) (MeasureFn 1 (KiloFn --- Gram))) denotes the FunctionQuantity of 2 micrograms per kiogram. --- This function is useful, because it allows the knowledge engineer to --- dynamically generate instances of FunctionQuantity. -fun PerFn : El PhysicalQuantity -> El PhysicalQuantity -> Ind FunctionQuantity ; - - --- Sensing some aspect of the material world. --- Note that the agent of this sensing is assumed to be an Animal. -fun Perception : Class ; -fun Perception_Class : SubClass Perception PsychologicalProcess ; - --- Any Attribute whose presence is detected --- by an act of Perception. -fun PerceptualAttribute : Class ; -fun PerceptualAttribute_Class : SubClass PerceptualAttribute InternalAttribute ; - --- A Series whose elements are published separately --- and on a periodic basis. -fun Periodical : Class ; -fun Periodical_Class : SubClass Periodical Series ; - --- A BinaryFunction that maps a subclass of --- Periodical and a number to all of the issues of the Periodical corresponding --- to the number. -fun PeriodicalIssueFn : Desc Periodical -> El PositiveInteger -> Desc Periodical ; - - --- A Residence where people live, i.e. --- where people have a home. -fun PermanentResidence : Class ; -fun PermanentResidence_Class : SubClass PermanentResidence Residence ; - --- Attribute that applies to Propositions that an --- Agent is permitted, by some authority, to make true. -fun Permission : Ind DeonticAttribute ; - - --- A set of Words in a Language which form a unit, --- i.e. express a meaning in the Language. -fun Phrase : Class ; -fun Phrase_Class : SubClass Phrase LinguisticExpression ; - --- An entity that has a location in space_time. --- Note that locations are themselves understood to have a location in --- space_time. -fun Physical : Class ; -fun Physical_Class : SubClass Physical Entity ; - --- An InternalAttribute given by physical --- properties of the object. -fun PhysicalAttribute : Class ; -fun PhysicalAttribute_Class : SubClass PhysicalAttribute InternalAttribute ; - --- A PhysicalQuantity is a measure of --- some quantifiable aspect of the modeled world, such as 'the earth's --- diameter' (a constant length) and 'the stress in a loaded deformable --- solid' (a measure of stress, which is a function of three spatial --- coordinates). Every PhysicalQuantity is either a ConstantQuantity --- or FunctionQuantity. Instances of ConstantQuantity are dependent --- on a UnitOfMeasure, while instances of FunctionQuantity are --- Functions that map instances of ConstantQuantity to other instances --- of ConstantQuantity (e.g., a TimeDependentQuantity is a --- FunctionQuantity). Although the name and definition of --- PhysicalQuantity is borrowed from physics, a PhysicalQuantity need --- not be material. Aside from the dimensions of length, time, velocity, --- etc., nonphysical dimensions such as currency are also possible. --- Accordingly, amounts of money would be instances of PhysicalQuantity. --- A PhysicalQuantity is distinguished from a pure Number by the fact that --- the former is associated with a dimension of measurement. -fun PhysicalQuantity : Class ; -fun PhysicalQuantity_Class : SubClass PhysicalQuantity Quantity ; - --- The physical state of an Object. There --- are three reified instances of this Class: Solid, Liquid, and Gas. --- Physical changes are not characterized by the transformation of one --- substance into another, but rather by the change of the form (physical --- states) of a given substance. For example, melting an iron nail yields a --- substance still called iron. -fun PhysicalState : Class ; -fun PhysicalState_Class : SubClass PhysicalState InternalAttribute ; - --- PhysicalSystem is the class of complex --- Physical things. A PhysicalSystem may have one or more --- corresponding abstract Graph representations. -fun PhysicalSystem : Class ; -fun PhysicalSystem_Class : SubClass PhysicalSystem Physical ; - --- A normal process of an Organism --- or part of an Organism. -fun PhysiologicProcess : Class ; -fun PhysiologicProcess_Class : SubClass PhysiologicProcess BiologicalProcess ; - --- Pi is the RealNumber that --- is the ratio of the perimeter of a circle to its diameter. It is --- approximately equal to 3.141592653589793. -fun Pi : Ind PositiveRealNumber ; - - --- A UnaryFunction that maps a UnitOfMeasure into --- a UnitOfMeasure that is equal to .000000000001 units of the original --- UnitOfMeasure. For example, (PicoFn SecondDuration) is .000000000001 --- SecondDurations. -fun PicoFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- English unit of volume equal to 1/2 of a --- Quart. -fun Pint : Ind UnitOfVolume ; - - --- A specification of a sequence of Processes which --- is intended to satisfy a specified purpose at some future time. -fun Plan : Class ; -fun Plan_Class : SubClass Plan Procedure ; - --- The value of an angle in a plane. -fun PlaneAngleMeasure : Class ; -fun PlaneAngleMeasure_Class : SubClass PlaneAngleMeasure AngleMeasure ; - --- Specifying a set of actions in order to meet a --- set of goals or objectives. -fun Planning : Class ; -fun Planning_Class : SubClass Planning IntentionalPsychologicalProcess ; - --- An Organism having cellulose cell walls, growing --- by synthesis of Substances, generally distinguished by the presence of --- chlorophyll, and lacking the power of locomotion. -fun Plant : Class ; -fun Plant_Organism : SubClassC Plant Organism (\PLANT -> and (forall PlantSubstance (\SUBSTANCE -> part(var PlantSubstance Object ? SUBSTANCE)(var Organism Object ? PLANT))) (forall PlantAnatomicalStructure (\STRUCTURE -> part(var PlantAnatomicalStructure Object ? STRUCTURE)(var Organism Object ? PLANT)))); - - --- AnatomicalStructures that --- are possessed exclusively by Plants. -fun PlantAnatomicalStructure : Class ; -fun PlantAnatomicalStructure_Class : SubClass PlantAnatomicalStructure AnatomicalStructure ; - --- BodySubstances that are produced --- exclusively by Plants. -fun PlantSubstance : Class ; -fun PlantSubstance_Class : SubClass PlantSubstance BodySubstance ; - --- An extremely energetic PhysicalState that consists --- of atomic nuclei stripped of electrons. That is, a plasma is composed of --- positive ions and free electrons. Plasma behaves differently enough from --- Gas that it is referred to as the fourth state of matter. -fun Plasma : Ind PhysicalState ; - - --- The shape of an Object with this Attribute --- can easily be altered. -fun Pliable : Ind InternalAttribute ; - - --- A Poisoning is caused by an external --- substance. Since Poisoning is not possible without some biologic --- function which affects the Organism being injured, it is a subclass --- of BiologicalProcess. -fun Poisoning : Class ; -fun Poisoning_Class : SubClass Poisoning Injuring ; - --- The Class of Processes where the agent --- pierces the surface of the Object with an instrument. -fun Poking : Class ; -fun Poking_Class : SubClass Poking IntentionalProcess ; - --- Any GovernmentOrganization --- that is charged with domestic enforcement of the laws of the Government. -fun PoliceOrganization : Class ; -fun PoliceOrganization_Class : SubClass PoliceOrganization GovernmentOrganization ; - --- An Organization that is attempting to bring about some sort --- of political change. -fun PoliticalOrganization : Class ; -fun PoliticalOrganization_Class : SubClass PoliticalOrganization Organization ; - --- An OrganizationalProcess carried --- out by, for or against officially constituted governments. Some examples --- would be voting on proposed legislation, electing a government representative, --- or even overthrowing a government in a revolution. -fun PoliticalProcess : Class ; -fun PoliticalProcess_Class : SubClass PoliticalProcess OrganizationalProcess ; - --- A powder produced by FloweringPlants that contains male --- gametes and is capable of fertilizing the seeds of FloweringPlants of the same --- species. -fun Pollen : Class ; -fun Pollen_Class : SubClass Pollen (both PlantAnatomicalStructure ReproductiveBody) ; - - --- An Object with this Attribute has --- different colors on different parts of its surface. -fun Polychromatic : Ind ColorAttribute ; - - --- A formal position of reponsibility within an --- Organization. Examples of Positions include president, laboratory --- director, senior researcher, sales representative, etc. -fun Position : Class ; -fun Position_Class : SubClass Position SocialRole ; - --- Attributes characterizing the --- orientation of an Object, e.g. Vertical versus Horizontal, Left --- versus Right etc. -fun PositionalAttribute : Class ; -fun PositionalAttribute_Class : SubClass PositionalAttribute RelationalAttribute ; - --- The TimePoint that is after --- all other TimePoints. -fun PositiveInfinity : Ind TimePoint ; - - --- An Integer that is greater than zero. -fun PositiveInteger : Class ; -fun PositiveInteger_Class : SubClass PositiveInteger (both NonnegativeInteger PositiveRealNumber) ; - - --- A RealNumber that is greater than --- zero. -fun PositiveRealNumber : Class ; -fun PositiveRealNumber_NonnegativeRealNumber : SubClassC PositiveRealNumber NonnegativeRealNumber (\NUMBER -> greaterThan(var NonnegativeRealNumber Quantity ? NUMBER)(el Integer Quantity ? (toInt 0))); - - --- Attribute that applies to Propositions that are --- possible, i.e. true in at least one possible world. -fun Possibility : Ind AlethicAttribute ; - - --- English pound of force. The conversion --- factor depends on the local value of the acceleration of free fall. A --- mean value is used in the conversion axiom associated with this --- constant. -fun PoundForce : Ind CompositeUnitOfMeasure ; - - --- English mass unit of pounds. -fun PoundMass : Ind UnitOfMass ; - - --- (PowerSetFn ?CLASS) maps the SetOrClass --- ?CLASS to the SetOrClass of all subclasses of ?CLASS. -fun PowerSetFn : El SetOrClass -> Desc SetOrClass ; - - --- Precipitation is the process of --- water molecules falling from the air to the ground, in either a --- liquid or frozen state. -fun Precipitation : Class ; -fun Precipitation_Class : SubClass Precipitation (both Falling (both WaterMotion WeatherProcess)) ; - - --- A UnaryFunction that maps an Integer to --- its predecessor, e.g. the predecessor of 5 is 4. -fun PredecessorFn : El Integer -> Ind Integer ; - - --- The Class of IntentionalPsychologicalProcesses --- which involve the formulation of a Proposition about a state of affairs --- which might be realized in the future. -fun Predicting : Class ; -fun Predicting_Class : SubClass Predicting IntentionalPsychologicalProcess ; - --- (PremisesFn ?ARGUMENT) returns the complete --- set of premises of the Argument ?ARGUMENT. -fun PremisesFn : El Argument -> Ind Proposition ; - - --- A Phrase that begins with a --- preposition and that functions as an Adjective or an Adverb. -fun PrepositionalPhrase : Class ; -fun PrepositionalPhrase_Class : SubClass PrepositionalPhrase Phrase ; - --- Any SocialInteraction where a --- CognitiveAgent or Group of CognitiveAgents attempts to make --- another CognitiveAgent or Group of CognitiveAgents believe --- something that is false. This covers deceit, affectation, --- impersonation, and entertainment productions, to give just a few --- examples. -fun Pretending : Class ; -fun Pretending_Class : SubClass Pretending SocialInteraction ; - --- Colors which can be blended to form any --- color and which cannot be derived from any other colors. -fun PrimaryColor : Class ; -fun PrimaryColor_Class : SubClass PrimaryColor ColorAttribute ; - --- The Class of Mammals which are --- Primates. -fun Primate : Class ; -fun Primate_Class : SubClass Primate Mammal ; - --- An Integer that is evenly divisible only --- by itself and 1. -fun PrimeNumber : Class ; -fun PrimeNumber_Class : SubClass PrimeNumber Integer ; - --- A class containing all of the Attributes --- relating to objective, qualitative assessments of probability, e.g. Likely and --- Unlikely. -fun ProbabilityAttribute : Class ; -fun ProbabilityAttribute_Class : SubClass ProbabilityAttribute ObjectiveNorm ; - --- One of the basic ProbabilityRelations, --- ProbabilityFn is used to state the a priori probability of a state of --- affairs. (ProbabilityFn ?FORMULA) denotes the a priori probability --- of ?FORMULA. -fun ProbabilityFn : Formula -> Ind RealNumber ; - - --- A sequence_dependent specification. Some --- examples are ComputerPrograms, finite_state machines, cooking recipes, --- musical scores, conference schedules, driving directions, and the scripts --- of plays and movies. -fun Procedure : Class ; -fun Procedure_Class : SubClass Procedure Proposition ; - --- The class of things that happen --- and have temporal parts or stages. Examples include extended events --- like a football match or a race, actions like Pursuing and Reading, --- and biological processes. The formal definition is: anything that occurs in --- time but is not an Object. Note that a Process may have --- participants 'inside' it which are Objects, such as the players --- in a football match. In a 4D ontology, a Process is something whose --- spatiotemporal extent is thought of as dividing into temporal stages --- roughly perpendicular to the time_axis. -fun Process : Class ; -fun Process_Class : SubClass Process Physical ; - --- An Artifact that is produced by Manufacture. -fun Product : Class ; -fun Product_Class : SubClass Product Artifact ; - --- Prohibition is the DeonticAttribute that --- applies to Formulas that an Agent is forbidden, by some authority, --- to make true. -fun Prohibition : Ind DeonticAttribute ; - - --- Attribute that applies to Propositions that --- an Agent promises to make true. Promises may be implicit or explicit. --- They may be expressed in a written or verbal or gestural manner. -fun Promise : Ind DeonticAttribute ; - - --- A UnaryFunction that maps an Agent to the --- Set of Objects owned by the Agent. -fun PropertyFn : El Agent -> Ind Set ; - - --- Propositions are Abstract entities that --- express a complete thought or a set of such thoughts. As an example, --- the formula '(instance Yojo Cat)' expresses the Proposition that the --- entity named Yojo is an element of the Class of Cats. Note that --- propositions are not restricted to the content expressed by individual --- sentences of a Language. They may encompass the content expressed by --- theories, books, and even whole libraries. It is important to distinguish --- Propositions from the ContentBearingObjects that express them. A --- Proposition is a piece of information, e.g. that the cat is on the mat, --- but a ContentBearingObject is an Object that represents this information. --- A Proposition is an abstraction that may have multiple representations: --- strings, sounds, icons, etc. For example, the Proposition that the cat is --- on the mat is represented here as a string of graphical characters displayed --- on a monitor and/or printed on paper, but it can be represented by a sequence --- of sounds or by some non_latin alphabet or by some cryptographic form -fun Proposition : Class ; -fun Proposition_Class : SubClass Proposition Abstract ; - --- The BodyPosition of lying down, being in a --- horizontal position. -fun Prostrate : Ind BodyPosition ; - - --- A Nutrient made up of amino acids joined by --- peptide bonds. -fun Protein : Class ; -fun Protein_Class : SubClass Protein Nutrient ; - --- Components of the AtomicNucleus. They have a --- positive charge. -fun Proton : Class ; -fun Proton_Class : SubClass Proton SubatomicParticle ; - --- The Class of pseudographs. A pseudograph --- is a Graph containing at least one GraphLoop. -fun PseudoGraph : Class ; -fun PseudoGraph_Class : SubClass PseudoGraph Graph ; - --- Attributes that characterize the mental --- or behavioral life of an Organism. -fun PsychologicalAttribute : Class ; -fun PsychologicalAttribute_Class : SubClass PsychologicalAttribute BiologicalAttribute ; - --- A clinically significant --- dysfunction whose major manifestation is behavioral or psychological. --- These dysfunctions may have identified or presumed biological etiologies --- or manifestations. -fun PsychologicalDysfunction : Class ; -fun PsychologicalDysfunction_Class : SubClass PsychologicalDysfunction (both DiseaseOrSyndrome PsychologicalAttribute) ; - - --- A BiologicalProcess which takes place in --- the mind or brain of an Organism and which may be manifested in the behavior --- of the Organism. -fun PsychologicalProcess : Class ; -fun PsychologicalProcess_Class : SubClass PsychologicalProcess BiologicalProcess ; - --- The Manufacture of Texts. Note that --- there is no implication that the Texts are distributed. Such --- distribution, when it occurs, is an instance of Dissemination. -fun Publication : Class ; -fun Publication_Class : SubClass Publication (both ContentDevelopment Manufacture) ; - - --- A Contract between two Agents in --- which one Agent agrees to render the other some good or service in --- exchange for currency. -fun PurchaseContract : Ind DeonticAttribute ; - - --- The Class of Substances with constant --- composition. A PureSubstance can be either an element (ElementalSubstance) --- or a compound of elements (CompoundSubstance). Examples: Table salt --- (sodium chloride, NaCl), sugar (sucrose, C_{12}H_{22}O_{11}), water (H_2O), --- iron (Fe), copper (Cu), and oxygen (O_2). -fun PureSubstance : Class ; -fun PureSubstance_Class : SubClass PureSubstance Substance ; - --- The class of IntentionalProcesses where something is --- sought. Some examples would be hunting, shopping, trawling, and stalking. -fun Pursuing : Class ; -fun Pursuing_Class : SubClass Pursuing IntentionalProcess ; - --- The Class of Processes where something is put --- in a location. Note that the location is specified with the CaseRole --- destination. -fun Putting : Class ; -fun Putting_Class : SubClass Putting Transfer ; - --- Any specification of how many or how much of --- something there is. Accordingly, there are two subclasses of Quantity: --- Number (how many) and PhysicalQuantity (how much). -fun Quantity : Class ; -fun Quantity_Class : SubClass Quantity Abstract ; - --- Any InternalChange where a PhysicalQuantity --- associated with the patient is altered. -fun QuantityChange : Class ; -fun QuantityChange_Class : SubClass QuantityChange InternalChange ; - --- English unit of volume equal to 1/4 of a --- UnitedStatesGallon. -fun Quart : Ind UnitOfVolume ; - - --- A request for information. For example, John asked --- Bill if the President had said anything about taxes in his State of the Union --- address. -fun Questioning : Class ; -fun Questioning_Class : SubClass Questioning Directing ; - --- SI plane angle measure. Symbol: rad. It is the --- angle of a circle subtended by an arc equal in length to the circle's --- radius. Another definition is: the plane angle between two radii of a --- circle which cut off on the circumference an arc equal in length to the --- radius. Radian = m/m = 1. -fun Radian : Ind UnitOfAngularMeasure ; - - --- Processes in which some form of electromagnetic --- radiation, e.g. radio waves, light waves, electrical energy, etc., is given --- off or absorbed by something else. -fun Radiating : Class ; -fun Radiating_Class : SubClass Radiating Motion ; - --- RadiatingElectromagnetic --- is the subclass of Radiating processes in which electromagnetic --- radiation is transmitted or absorbed. -fun RadiatingElectromagnetic : Class ; -fun RadiatingElectromagnetic_Class : SubClass RadiatingElectromagnetic Radiating ; - --- Any instance of Radiating where the --- wavelengths are longer than those of visible light and shorter than those --- of radio emissions. -fun RadiatingInfrared : Class ; -fun RadiatingInfrared_Class : SubClass RadiatingInfrared RadiatingElectromagnetic ; - --- The subclass of Radiating in which --- light is given off or absorbed. Some examples include blinking, flashing, --- and glittering. -fun RadiatingLight : Class ; -fun RadiatingLight_Class : SubClass RadiatingLight RadiatingElectromagnetic ; - --- Releasing atomic energy, i.e. energy from --- a nuclear reaction. -fun RadiatingNuclear : Class ; -fun RadiatingNuclear_Class : SubClass RadiatingNuclear Radiating ; - --- The subclass of Radiating in which --- sound waves are given off or absorbed. Some examples include creaking, --- roaring, and whistling. -fun RadiatingSound : Class ; -fun RadiatingSound_Class : SubClass RadiatingSound Radiating ; - -fun RadiatingXRay : Class ; -fun RadiatingXRay_Class : SubClass RadiatingXRay RadiatingElectromagnetic ; --- A TemperatureMeasure. Note --- that 0 RankineDegrees is the same as the absolute zero (i.e. 0 --- KelvinDegrees). -fun RankineDegree : Ind UnitOfTemperature ; - - --- Any RealNumber that is the product of --- dividing two Integers. -fun RationalNumber : Class ; -fun RationalNumber_Class : SubClass RationalNumber RealNumber ; - --- (RationalNumberFn ?NUMBER) returns --- the rational representation of ?NUMBER. -fun RationalNumberFn : El Number -> Ind RationalNumber ; - - --- A subclass of ContentDevelopment in which --- content is converted from a written form into a spoken representation. --- Note that the class Interpreting should be used in cases where a --- Text is read silently. -fun Reading : Class ; -fun Reading_Class : SubClass Reading ContentDevelopment ; - --- Any Number that can be expressed as a --- (possibly infinite) decimal, i.e. any Number that has a position --- on the number line. -fun RealNumber : Class ; -fun RealNumber_Class : SubClass RealNumber Number ; - --- (RealNumberFn ?NUMBER) returns the part of --- ?NUMBER that is a RealNumber. -fun RealNumberFn : El Number -> Ind RealNumber ; - - --- The Class of IntentionalPsychologicalProcesses --- which involve concluding, on the basis of either deductive or inductive --- evidence, that a particular Proposition or Sentence is true. -fun Reasoning : Class ; -fun Reasoning_Class : SubClass Reasoning IntentionalPsychologicalProcess ; - --- (ReciprocalFn ?NUMBER) is the reciprocal --- element of ?NUMBER with respect to the multiplication operator --- (MultiplicationFn), i.e. 1/?NUMBER. Not all numbers have a reciprocal --- element. For example the number 0 does not. If a number ?NUMBER has a --- reciprocal ?RECIP, then the product of ?NUMBER and ?RECIP will be --- 1, e.g. 3*1/3 = 1. The reciprocal of an element is equal to --- applying the ExponentiationFn function to the element to the power --- _1. -fun ReciprocalFn : El Quantity -> Ind Quantity ; - - --- A Process that is carried out for --- the purpose of recreation or exercise. Since RecreationOrExercise is a --- subclass of IntentionalProcess, the intent of a process determines whether --- or not it is an instance of the class. Hence, if John and Bill watch the same --- program on television, and John watches it to relax while Bill watches it solely --- to satisfy an educational requirement, then John's watching the movie is an --- instance of RecreationOrExercise, while Bill's is not (both cases of --- watching the television program would however be in the class of Seeing, since --- being an instance of this latter class is not determined by intention). -fun RecreationOrExercise : Class ; -fun RecreationOrExercise_Class : SubClass RecreationOrExercise IntentionalProcess ; - --- A function that is useful for generating --- recurring time intervals. For example, (RecurrentTimeIntervalFn (HourFn 6 Day) --- (HourFn 12 Day)) returns the Class of TimeIntervals beginning at 6 in the --- morning and ending at 12 noon. For another example, (RecurrentTimeInterval --- Saturday Sunday) returns the Class of all weekends. For still another example, --- (RecurrentTimeInterval June August) returns the Class containing the academic --- summer period. -fun RecurrentTimeIntervalFn : Desc TimeInterval -> Desc TimeInterval -> Desc TimeInterval ; - - --- The Attribute of redness. -fun Red : Ind PrimaryColor ; - - --- A topographic location. Regions encompass --- surfaces of Objects, imaginary places, and GeographicAreas. Note --- that a Region is the only kind of Object which can be located at --- itself. Note too that Region is not a subclass of SelfConnectedObject, --- because some Regions, e.g. archipelagos, have parts which are not --- connected with one another. -fun Region : Class ; -fun Region_Class : SubClass Region Object ; - --- an Guiding whose aim is the enforcement --- of rules or regulations. Note the key differences between RegulatoryProcess --- and the related concept Managing. The latter implies a long_term relationship --- between a single manager and limited number of agents who are managed, while the --- former implies a normative standard to which the activities of the regulated are --- referred. -fun RegulatoryProcess : Class ; -fun RegulatoryProcess_Class : SubClass RegulatoryProcess Guiding ; - --- Any Attribute that an Entity has by --- virtue of a relationship that it bears to another Entity or set of Entities, --- e.g. SocialRoles and PositionalAttributes. -fun RelationalAttribute : Class ; -fun RelationalAttribute_Class : SubClass RelationalAttribute Attribute ; - --- A BinaryFunction that maps two --- SetOrClasses to the difference between these SetOrClasses. More --- precisely, (RelativeComplementFn ?CLASS1 ?CLASS2) denotes the instances --- of ?CLASS1 that are not also instances of ?CLASS2. -fun RelativeComplementFn : El SetOrClass -> El SetOrClass -> Ind SetOrClass ; - - --- A means of converting TimePositions --- between different TimeZones. (RelativeTimeFn ?TIME ?ZONE) --- denotes the TimePosition in CoordinatedUniversalTime that is --- contemporaneous with the TimePosition ?TIME in TimeZone ?ZONE. --- For example, (RelativeTimeFn (MeasureFn 14 HourDuration) EasternTimeZone) --- would return the value (MeasureFn 19 HourDuration). -fun RelativeTimeFn : El TimePosition -> El TimeZone -> Ind TimePosition ; - - --- Any instance of Transfer which results in --- a situation where it is not the case that the agent grasps something --- which he/she grasps previously. -fun Releasing : Class ; -fun Releasing_Class : SubClass Releasing Transfer ; - --- An Organization whose members --- share a set of religious beliefs. -fun ReligiousOrganization : Class ; -fun ReligiousOrganization_Class : SubClass ReligiousOrganization (both BeliefGroup Organization) ; - - --- An OrganizationalProcess that is --- carried out within or by a ReligiousOrganization. -fun ReligiousProcess : Class ; -fun ReligiousProcess_Class : SubClass ReligiousProcess OrganizationalProcess ; - --- (RemainderFn ?NUMBER ?DIVISOR) is the --- remainder of the number ?NUMBER divided by the number ?DIVISOR. --- The result has the same sign as ?DIVISOR. -fun RemainderFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- The Class of PsychologicalProcesses which --- involve the recollection of prior experiences and/or of knowledge --- which was previously acquired. -fun Remembering : Class ; -fun Remembering_Class : SubClass Remembering PsychologicalProcess ; - --- The Class of Processes where something is --- taken away from a location. Note that the thing removed and the location --- are specified with the CaseRoles patient and origin, respectively. -fun Removing : Class ; -fun Removing_Class : SubClass Removing Transfer ; - --- The Class of Processes where the agent --- makes a modification or series of modifications to an Object that is not --- functioning as intended so that it works properly. -fun Repairing : Class ; -fun Repairing_Class : SubClass Repairing IntentionalProcess ; - --- The Process of biological reproduction. --- This can be either a sexual or an asexual process. -fun Replication : Class ; -fun Replication_Class : SubClass Replication OrganismProcess ; - --- Any ArtWork that represents --- something Physical. -fun RepresentationalArtWork : Class ; -fun RepresentationalArtWork_Class : SubClass RepresentationalArtWork (both ArtWork Icon) ; - - --- Reproductive structure of Organisms. --- Consists of an Embryonic Object and a nutritive/protective envelope. --- Note that this class includes seeds, spores, and FruitOrVegetables, as --- well as the eggs produced by Animals. -fun ReproductiveBody : Class ; -fun ReproductiveBody_Class : SubClass ReproductiveBody BodyPart ; - --- A ColdBloodedVertebrate having an external --- covering of scales or horny plates. Reptiles breathe by means of --- Lungs and generally lay eggs. -fun Reptile : Class ; -fun Reptile_Class : SubClass Reptile ColdBloodedVertebrate ; - --- A request expresses a desire that some future --- action be performed. For example, the 5th Battalion requested air support --- from the 3rd Bomber Group. Note that this class covers proposals, --- recommendations, suggestions, etc. -fun Requesting : Class ; -fun Requesting_Class : SubClass Requesting Directing ; - --- A Building or part of a Building which provides --- some accomodation for sleeping. -fun Residence : Class ; -fun Residence_Class : SubClass Residence StationaryArtifact ; - --- A Building which provides some --- accomodation for sleeping. Note that this class does not cover just --- permanent residences, e.g. Houses and condominium and apartment buildings, --- but also temporary residences, e.g. hotels and dormitories. --- ResidentialBuildings are also distinguished from CommercialBuildings, --- which are intended to serve an organizational rather than a residential --- function. -fun ResidentialBuilding : Class ; -fun ResidentialBuilding_Class : SubClass ResidentialBuilding (both Building Residence) ; - - --- This PositionalAttribute is derived from the --- left/right schema. Note that this means directly to the right, so that, --- if one object is to the right of another, then the projections of the --- two objects overlap. -fun Right : Ind AntiSymmetricPositionalAttribute ; - - --- The shape of an Object with this Attribute --- cannot be altered without breaking. -fun Rigid : Ind InternalAttribute ; - - --- Roadway is the subclass of LandTransitways --- that are areas intended for surface travel by self_powered, wheeled --- vehicles, excluding those that travel on tracks. Roadways have been --- at least minimally improved to enable the passage of vehicles. --- Roadways include dirt and gravelled roads, paved streets, and --- expressways. -fun Roadway : Class ; -fun Roadway_Class : SubClass Roadway LandTransitway ; - --- The Class of Mammals with one or two pairs --- of incisors for gnawing. Includes rats, mice, guinea pigs, and --- rabbits. -fun Rodent : Class ; -fun Rodent_Class : SubClass Rodent Mammal ; - --- A properPart of a Building which is separated from --- the exterior of the Building and/or other Rooms of the Building by walls. --- Some Rooms may have a specific purpose, e.g. sleeping, bathing, cooking, --- entertainment, etc. -fun Room : Class ; -fun Room_Class : SubClass Room StationaryArtifact ; - --- An Object with this Attribute has a rough --- surface. -fun Rough : Ind TextureAttribute ; - - --- (RoundFn ?NUMBER) is the Integer closest --- to ?NUMBER on the number line. If ?NUMBER is halfway between two --- Integers (for example 3.5), it denotes the larger Integer. -fun RoundFn : El Quantity -> Ind Quantity ; - - --- Ambulating relatively quickly, i.e. moving in such a --- way that, with each step, neither foot is in contact with the ground for a --- period of time. -fun Running : Class ; -fun Running_Class : SubClass Running Ambulating ; - --- A WaterArea whose Water is saline, e.g. --- oceans and seas. -fun SaltWaterArea : Class ; -fun SaltWaterArea_Class : SubClass SaltWaterArea WaterArea ; - --- A Class of Attributes that specify, in --- a qualitative manner, the extent of the presence of one kind of Object in --- another kind of Object. -fun SaturationAttribute : Class ; -fun SaturationAttribute_Class : SubClass SaturationAttribute InternalAttribute ; - --- The Class of all calendar Saturdays. -fun Saturday : Class ; -fun Saturday_Class : SubClass Saturday Day ; - --- The Class of all clock Seconds. -fun Second : Class ; -fun Second_Class : SubClass Second TimeInterval ; - --- SI UnitOfDuration. Symbol: s. --- It is one of the base units in SI, and it is currently defined as --- follows: the SecondDuration is the duration of 9192631770 periods of --- the radiation corresponding to the transition between the two hyperfine --- levels of the ground state of the cesium 133 atom. -fun SecondDuration : Ind UnitOfDuration ; - - --- A BinaryFunction that assigns a PositiveRealNumber and a --- subclass of Minutes to the Seconds within each Minute corresponding to that --- PositiveRealNumber. For example, (SecondFn 4 (MinuteFn 5 Hour)) is the Class --- of all fourth Seconds of every fifth Minute of every hour. For another example, --- (SecondFn 8 Minute) would return the eighth second of every minute. For still --- another example, (SecondFn 9 (MinuteFn 15 (HourFn 14 (DayFn 18 (MonthFn --- August (YearFn 1912)))))) denotes 9 seconds and 15 minutes after 2 PM on the 18th --- day of August 1912. -fun SecondFn : El PositiveRealNumber -> Desc Minute -> Desc Second ; - - --- The fertilized or unfertilized female ReproductiveBody --- of a FloweringPlant. -fun Seed : Class ; -fun Seed_Class : SubClass Seed (both PlantAnatomicalStructure ReproductiveBody) ; - - --- The subclass of Perception in which the --- sensing is done by an ocular Organ. -fun Seeing : Class ; -fun Seeing_Class : SubClass Seeing Perception ; - --- The Class of IntentionalPsychologicalProcesses --- which involve opting for one or more Entity out of a larger set of Entities. --- Note that this covers all cases of judging or evaluating. -fun Selecting : Class ; -fun Selecting_Class : SubClass Selecting IntentionalPsychologicalProcess ; - --- A SelfConnectedObject is any --- Object that does not consist of two or more disconnected parts. -fun SelfConnectedObject : Class ; -fun SelfConnectedObject_Class : SubClass SelfConnectedObject Object ; - --- A FinancialTransaction in which an instance of --- Physical is exchanged for an instance of CurrencyMeasure. -fun Selling : Class ; -fun Selling_Class : SubClass Selling FinancialTransaction ; - --- A syntactically well_formed formula of a --- Language. It includes, at minimum, a predicate and a subject (which --- may be explicit or implicit), and it expresses a Proposition. -fun Sentence : Class ; -fun Sentence_Class : SubClass Sentence LinguisticExpression ; - --- An Agent that has rights but may or may --- not have responsibilities and the ability to reason. If the latter are --- present, then the Agent is also an instance of CognitiveAgent. --- Domesticated animals are an example of SentientAgents that are not --- also CognitiveAgents. -fun SentientAgent : Class ; -fun SentientAgent_Class : SubClass SentientAgent Agent ; - --- A Process where a SelfConnectedObject is --- separated into (some of) its parts. Note that Separating is different --- from Detaching in that the latter only results in the two objects not --- being connected. Note too that Separating is different from --- Removing in that one or both of the two things which are separated --- may or may not be moved from the location where they were separated. -fun Separating : Class ; -fun Separating_Class : SubClass Separating DualObjectProcess ; - --- The Class of all Months which are September. -fun September : Class ; -fun September_Class : SubClass September Month ; - --- A Text consisting of multiple self_contained units. --- Some examples are an encyclopedia containing a couple dozen volumes, a television --- series made up of many episodes, a film serial, etc. -fun Series : Class ; -fun Series_Class : SubClass Series Text ; - --- A BinaryFunction that maps a type of Series --- (e.g. the Encyclopedia_Britannica or the Popular_Mechanics periodical) and a --- number to the volumes of the text type designated by the number. -fun SeriesVolumeFn : Desc Series -> El PositiveInteger -> Desc Text ; - - --- ServiceProcess denotes the class --- of events in which one agent performs a service for another. The --- service need not be commercial, and it need not be the case that --- the serviceRecipient pays or recompenses the serviceProvider --- for the service. -fun ServiceProcess : Class ; -fun ServiceProcess_Class : SubClass ServiceProcess SocialInteraction ; - --- A SetOrClass that satisfies extensionality as well as --- other constraints specified by some choice of set theory. Sets differ --- from Classes in two important respects. First, Sets are extensional _ --- two Sets with the same elements are identical. Second, a Set can be --- an arbitrary stock of objects. That is, there is no requirement that Sets --- have an associated condition that determines their membership. Note that Sets --- are not assumed to be unique sets, i.e. elements of a Set may occur more --- than once in the Set. -fun Set : Class ; -fun Set_Class : SubClass Set SetOrClass ; - --- The SetOrClass of Sets --- and Classes, i.e. any instance of Abstract that has elements or --- instances. -fun SetOrClass : Class ; -fun SetOrClass_Class : SubClass SetOrClass Abstract ; - --- Attributes that indicate the sex of an --- Organism. -fun SexAttribute : Class ; -fun SexAttribute_Class : SubClass SexAttribute BiologicalAttribute ; - --- Sexual Processes of biological --- reproduction. -fun SexualReproduction : Class ; -fun SexualReproduction_Class : SubClass SexualReproduction Replication ; - --- Any Attribute that relates to the --- shape of an Object. -fun ShapeAttribute : Class ; -fun ShapeAttribute_Class : SubClass ShapeAttribute InternalAttribute ; - --- The Process of changing the shape of an Object. -fun ShapeChange : Class ; -fun ShapeChange_Class : SubClass ShapeChange InternalChange ; - --- The subclass of Impelling where the patient --- is a projectile that is fired through the air by means of some sort of --- Device. -fun Shooting : Class ; -fun Shooting_Class : SubClass Shooting Impelling ; - --- A ShoreArea is a LandArea approximately --- 1_3 km wide bordering a body of water, such as an ocean, bay, river, --- or lake. A ShoreArea may comprise a variety of LandForms, such as dunes, --- sloughs, and marshes. -fun ShoreArea : Class ; -fun ShoreArea_Class : SubClass ShoreArea LandArea ; - --- SI electric conductance measure. Symbol: S. --- In the case of direct current, the conductance in Siemens is the --- reciprocal of the resistance in Ohms, in the case of alternating current, --- it is the reciprocal of the impedance in ohms. siemens = A/V = --- m^(_2)*kg(_1)*s^(3)*A^2. -fun Siemens : Ind CompositeUnitOfMeasure ; - - --- SI dose equivalent measure. Symbol: Sv. It is --- a unit of biologic dose of ionizing radiation. The Sievert makes it --- possible to normalize doses of different types of radiation. It takes --- into account the relative biologic effectiveness of ionizing radiation, --- since each form of such radiation__e.g., X rays, gamma rays, neutrons__ --- has a slightly different effect on living tissue for a given absorbed --- dose. The dose equivalent of a given type of radiation (in Sievert) is --- the dose of the radiation in Gray multiplied by a quality factor that --- is based on the relative biologic effectiveness of the radiation. --- Accordingly, one Sievert is generally defined as the amount of radiation --- roughly equivalent in biologic effectiveness to one Gray of gamma --- radiation. Sievert = J/kg = m^2*s^(_2) -fun Sievert : Ind CompositeUnitOfMeasure ; - - --- (SignumFn ?NUMBER) denotes the sign of ?NUMBER. --- This is one of the following values: _1, 1, or 0. -fun SignumFn : El RealNumber -> Ind Integer ; - - --- (SineFn ?DEGREE) is the sine of the --- PlaneAngleMeasure ?DEGREE. The sine of ?DEGREE is the ratio of the side --- opposite ?DEGREE to the hypotenuse in a right_angled triangle. -fun SineFn : El PlaneAngleMeasure -> Ind RealNumber ; - - --- Speaking that is also Music. -fun Singing : Class ; -fun Singing_Class : SubClass Singing (both Music Speaking) ; - - --- SingleAgentProcess --- is the Class of all Processes that require exactly one agent in order to occur. -fun SingleAgentProcess : Class ; -fun SingleAgentProcess_Class : SubClass SingleAgentProcess Process ; - --- A PermanentResidence which is --- intended to be the home of a single SocialUnit. This class covers --- Houses, ApartmentUnits, and CondominiumUnits. -fun SingleFamilyResidence : Class ; -fun SingleFamilyResidence_Class : SubClass SingleFamilyResidence PermanentResidence ; - --- The BodyPosition of being recumbent, i.e. --- knees bent and back side supported. -fun Sitting : Ind BodyPosition ; - - --- The system of Bones that make up the supporting structure --- of Vertebrates. -fun Skeleton : Class ; -fun Skeleton_Class : SubClass Skeleton (both AnimalAnatomicalStructure BodyPart) ; - - --- English mass unit of slugs. -fun Slug : Ind UnitOfMass ; - - --- The subclass of Perception in which the --- sensing is done by an olefactory Organ. -fun Smelling : Class ; -fun Smelling_Class : SubClass Smelling Perception ; - --- A mixture of fine particles suspended in a gas that is --- produced by Combustion. -fun Smoke : Class ; -fun Smoke_Class : SubClass Smoke Cloud ; - --- An Object with this Attribute has a smooth --- surface. -fun Smooth : Ind TextureAttribute ; - - --- The subclass of --- IntentionalProcess that involves interactions between --- CognitiveAgents. -fun SocialInteraction : Class ; -fun SocialInteraction_Class : SubClass SocialInteraction IntentionalProcess ; - --- The Class of all Attributes that --- specify the position or status of a CognitiveAgent within an --- Organization or other Group. -fun SocialRole : Class ; -fun SocialRole_Class : SubClass SocialRole RelationalAttribute ; - --- A GroupOfPeople who all have the same home. -fun SocialUnit : Class ; -fun SocialUnit_Class : SubClass SocialUnit GroupOfPeople ; - --- An Object has the Attribute of Solid if it --- has a fixed shape and a fixed volume. -fun Solid : Ind PhysicalState ; - - --- The value of an angle in a solid. -fun SolidAngleMeasure : Class ; -fun SolidAngleMeasure_Class : SubClass SolidAngleMeasure AngleMeasure ; - --- A liquid mixture. The most abundant component in --- a solution is called the solvent. Other components are called solutes. --- A solution, though homogeneous, may nonetheless have variable composition. --- Any amount of salt, up to a maximum limit, can be dissolved in a given --- amount of water. -fun Solution : Class ; -fun Solution_Class : SubClass Solution LiquidMixture ; - --- The volume of sound relative to a listener. -fun SoundAttribute : Class ; -fun SoundAttribute_Class : SubClass SoundAttribute RelationalAttribute ; - --- The compass direction of South. -fun South : Ind DirectionalAttribute ; - - --- Any LinguisticGeneration which is also a --- Vocalizing, i.e. any LinguisticCommunication by a Human which --- involves his/her vocal cords. -fun Speaking : Class ; -fun Speaking_Class : SubClass Speaking (both LinguisticCommunication Vocalizing) ; - - --- Maps an instance of LengthMeasure and an instance of --- TimeDuration to the speed represented by this proportion of distance and time. --- For example, (SpeedFn (MeasureFn 55 Mile)(MeasureFn 1 HourDuration)) --- represents the velocity of 55 miles per hour. -fun SpeedFn : El LengthMeasure -> El TimeDuration -> Ind FunctionQuantity ; - - --- A flexible column made out of bones called --- vertebrae. The main function of the SpinalColumn is to protect the --- spinal cord. -fun SpinalColumn : Class ; -fun SpinalColumn_Class : SubClass SpinalColumn (both AnimalAnatomicalStructure Organ) ; - - --- A SpokenHumanLanguage is a --- HumanLanguage which has as its medium the human voice. It can also --- berepresented visually through writing, although not all --- SpokenHumanLanguages have a codified written form. -fun SpokenHumanLanguage : Class ; -fun SpokenHumanLanguage_Class : SubClass SpokenHumanLanguage HumanLanguage ; - --- Any ReproductiveBody of a NonFloweringPlant. -fun Spore : Class ; -fun Spore_Class : SubClass Spore (both PlantAnatomicalStructure ReproductiveBody) ; - - --- A Game which requires some degree of physical --- exercion from the participants of the game. -fun Sport : Class ; -fun Sport_Class : SubClass Sport Game ; - --- (SquareRootFn ?NUMBER) is the principal --- square root of ?NUMBER. -fun SquareRootFn : El RealNumber -> Ind Number ; - - --- The BodyPosition of being upright, i.e. being --- fully extended and supported by nothing other than one's own feet. -fun Standing : Ind BodyPosition ; - - --- Any Process where the PhysicalState --- of part of the patient of the Process changes. -fun StateChange : Class ; -fun StateChange_Class : SubClass StateChange InternalChange ; - --- The class StateOfMind is distinguished from --- its complement TraitAttribute by the fact that instances of the former are --- transient while instances of the latter are persistent features of a creature's behavioral/psychological make_up. -fun StateOfMind : Class ; -fun StateOfMind_Class : SubClass StateOfMind PsychologicalAttribute ; - --- Administrative subdivisions of a --- Nation that are broader than any other political subdivisions that --- may exist. This Class includes the states of the United States, as --- well as the provinces of Canada and European countries. -fun StateOrProvince : Class ; -fun StateOrProvince_Class : SubClass StateOrProvince (both GeopoliticalArea LandArea) ; - - --- A WaterArea in which water does not flow --- constantly or in the same direction, e.g. most lakes and ponds. -fun StaticWaterArea : Class ; -fun StaticWaterArea_Class : SubClass StaticWaterArea WaterArea ; - --- Instances of this Class commit the agent to some truth. --- For example, John claimed that the moon is made of green cheese. -fun Stating : Class ; -fun Stating_Class : SubClass Stating LinguisticCommunication ; - --- A StationaryArtifact is an Artifact --- that has a fixed spatial location. Most instances of this Class are --- architectural works, e.g. the Eiffel Tower, the Great Pyramids, office towers, --- single_family houses, etc. -fun StationaryArtifact : Class ; -fun StationaryArtifact_Class : SubClass StationaryArtifact Artifact ; - --- SI solid angle measure. Symbol: sr. It is --- the solid angle of a sphere subtended by a portion of the surface whose --- area is equal to the square of the sphere's radius. Another definition --- is: the solid angle which, having its vertex in the center of the sphere, --- cuts off an area of the surface of the sphere equal to that of a square --- with sides of length equal to the radius of the sphere. Steradian = --- m^2/m^2 = 1. -fun Steradian : Ind UnitOfAngularMeasure ; - - --- A relatively narrow WaterArea where the --- water flows constantly and in the same direction, e.g. a river, a stream, --- etc. -fun StreamWaterArea : Class ; -fun StreamWaterArea_Class : SubClass StreamWaterArea (both FlowRegion WaterArea) ; - - --- The class of ElementalSubstances that --- are smaller than Atoms and compose Atoms. -fun SubatomicParticle : Class ; -fun SubatomicParticle_Class : SubClass SubatomicParticle ElementalSubstance ; - --- The Class of NormativeAttributes --- which lack an objective criterion for their attribution, i.e. the attribution of --- these Attributes varies from subject to subject and even with respect to the --- same subject over time. This Class is, generally speaking, only used when --- mapping external knowledge sources to the SUMO. If a term from such a knowledge --- source seems to lack objective criteria for its attribution, it is assigned to --- this Class. -fun SubjectiveAssessmentAttribute : Class ; -fun SubjectiveAssessmentAttribute_Class : SubClass SubjectiveAssessmentAttribute NormativeAttribute ; - --- An Object in which every part is similar to --- every other in every relevant respect. More precisely, something is a --- Substance when it has only arbitrary pieces as parts _ any parts have --- properties which are similar to those of the whole. Note that a Substance --- may nonetheless have physical properties that vary. For example, the --- temperature, chemical constitution, density, etc. may change from one part --- to another. An example would be a body of water. -fun Substance : Class ; -fun Substance_Class : SubClass Substance SelfConnectedObject ; - --- The Class of Transfers where one thing is --- replaced with something else. -fun Substituting : Class ; -fun Substituting_Class : SubClass Substituting (both DualObjectProcess Transfer) ; - - --- If ?NUMBER1 and ?NUMBER2 are Numbers, --- then (SubtractionFn ?NUMBER1 ?NUMBER2) is the arithmetical difference --- between ?NUMBER1 and ?NUMBER2, i.e. ?NUMBER1 minus ?NUMBER2. An --- exception occurs when ?NUMBER1 is equal to 0, in which case --- (SubtractionFn ?NUMBER1 ?NUMBER2) is the negation of ?NUMBER2. -fun SubtractionFn : El Quantity -> El Quantity -> Ind Quantity ; - - --- A UnaryFunction that maps an Integer to --- its successor, e.g. the successor of 5 is 6. -fun SuccessorFn : El Integer -> Ind Integer ; - - --- A short Text that is a summary of another, --- longer Text. -fun Summary : Class ; -fun Summary_Class : SubClass Summary Text ; - --- The Class of all calendar Sundays. -fun Sunday : Class ; -fun Sunday_Class : SubClass Sunday Day ; - --- Instances of this Class suppose, for the sake of --- argument, that a proposition is true. For example, John considered what he --- would do if he won the lottery. -fun Supposing : Class ; -fun Supposing_Class : SubClass Supposing LinguisticCommunication ; - --- Processes which involve altering --- the properties that apply to the surface of an Object. -fun SurfaceChange : Class ; -fun SurfaceChange_Class : SubClass SurfaceChange InternalChange ; - --- Any TherapeuticProcess that involves making an --- incision in the Animal that is the patient of the TherapeuticProcess. -fun Surgery : Class ; -fun Surgery_Class : SubClass Surgery TherapeuticProcess ; - --- A LiquidMixture where at least one of the --- components of the Mixture is equally distributed throughout the Mixture --- but is not dissolved in it. -fun Suspension : Class ; -fun Suspension_Class : SubClass Suspension LiquidMixture ; - --- Any deliberate and controlled BodyMotion --- through water that is accomplished by an Organism. -fun Swimming : Class ; -fun Swimming_Class : SubClass Swimming BodyMotion ; - --- The Class of alphanumeric sequences. -fun SymbolicString : Class ; -fun SymbolicString_Class : SubClass SymbolicString ContentBearingObject ; - --- SymmetricAttribute is the class of --- PositionalAttribute that hold between two items regardless of their --- order or orientation. -fun SymmetricPositionalAttribute : Class ; -fun SymmetricPositionalAttribute_Class : SubClass SymmetricPositionalAttribute PositionalAttribute ; - --- Any Substance that is the result of an --- IntentionalProcess, i.e. any substance that is created by Humans. -fun SyntheticSubstance : Class ; -fun SyntheticSubstance_Substance : SubClassC SyntheticSubstance Substance (\SUBSTANCE -> exists IntentionalProcess (\PROCESS -> result(var IntentionalProcess Process ? PROCESS)(var Substance Entity ? SUBSTANCE))); - - --- The Class of Systeme --- International (SI) units. -fun SystemeInternationalUnit : Class ; -fun SystemeInternationalUnit_Class : SubClass SystemeInternationalUnit UnitOfMeasure ; - --- The subclass of Perception in which --- the sensing is done by Touching. Note that Touching need not involve --- TactilePerception. For example, a person who has lost all sensation in --- both of his legs would have no TactilePerception of anything his legs --- were Touching. -fun TactilePerception : Class ; -fun TactilePerception_Class : SubClass TactilePerception Perception ; - --- (TangentFn ?DEGREE) is the tangent of the --- PlaneAngleMeasure ?DEGREE. The tangent of ?DEGREE is the ratio of --- the side opposite ?DEGREE to the side next to ?DEGREE in a right_angled --- triangle. -fun TangentFn : El PlaneAngleMeasure -> Ind RealNumber ; - - --- The Class of Attributes relating to --- the taste of Objects. -fun TasteAttribute : Class ; -fun TasteAttribute_Class : SubClass TasteAttribute PerceptualAttribute ; - --- The subclass of Perception in which the --- sensing is done by of an Organ which can discriminate various tastes. -fun Tasting : Class ; -fun Tasting_Class : SubClass Tasting Perception ; - --- Measures of temperature. --- In scientific circles, the temperature of something is understood as the --- average velocity of the atoms or molecules that make up the thing. -fun TemperatureMeasure : Class ; -fun TemperatureMeasure_Class : SubClass TemperatureMeasure ConstantQuantity ; - --- The basic Function for expressing --- the composition of larger TimeIntervals out of smaller TimeIntervals. --- For example, if ThisSeptember is an instance of September, --- (TemporalCompositionFn ThisSeptember Day) denotes the Class of --- consecutive days that make up ThisSeptember. Note that one can obtain --- the number of instances of this Class by using the function CardinalityFn. -fun TemporalCompositionFn : El TimeInterval -> Desc TimeInterval -> Desc TimeInterval ; - - --- A Residence which is strictly temporary, --- i.e. where no one makes his/her home. -fun TemporaryResidence : Class ; -fun TemporaryResidence_Class : SubClass TemporaryResidence Residence ; - --- A UnaryFunction that maps a UnitOfMeasure --- into a UnitOfMeasure that is equal to 1,000,000,000,000 units of the original --- UnitOfMeasure. For example, (TeraFn Hertz) is 1,000,000,000,000 Hertz. -fun TeraFn : El UnitOfMeasure -> Ind UnitOfMeasure; - - --- A UnaryFunction that maps a --- GraphArc to the terminal node of the GraphArc. Note that this --- is a partial function. In particular, the function is undefined --- for GraphArcs that are not part of a DirectedGraph. -fun TerminalNodeFn : El GraphArc -> Ind GraphNode ; - - --- OrganizationalProcesses where someone --- ceases to be an employee of an Organization. Note that this covers being --- laid off, being fired, and voluntarily leaving a job. -fun TerminatingEmployment : Class ; -fun TerminatingEmployment_Class : SubClass TerminatingEmployment LeavingAnOrganization ; - --- SI magnetic flux density measure. Symbol: T. --- One Tesla equals one Weber per square Meter. Tesla = Wb/m^2 = --- kg*s^(_2)*A^(_1). -fun Tesla : Ind CompositeUnitOfMeasure ; - - --- A LinguisticExpression or set of --- LinguisticExpressions that perform a specific function related --- to Communication, e.g. express a discourse about a particular --- topic, and that are inscribed in a CorpuscularObject by Humans. -fun Text : Class ; -fun Text_Class : SubClass Text (both Artifact (both ContentBearingObject LinguisticExpression)) ; - - --- Any Attribute that characterizes the --- texture of an Object. -fun TextureAttribute : Class ; -fun TextureAttribute_Class : SubClass TextureAttribute PerceptualAttribute ; - --- A Process that is carried out --- for the purpose of curing, improving or reducing the pain associated --- with a DiseaseOrSyndrome. -fun TherapeuticProcess : Class ; -fun TherapeuticProcess_Class : SubClass TherapeuticProcess Repairing ; - --- The class of GeometricFigures that --- have position and an extension along three dimensions, viz. geometric solids --- like polyhedrons and cylinders. -fun ThreeDimensionalFigure : Class ; -fun ThreeDimensionalFigure_Class : SubClass ThreeDimensionalFigure GeometricFigure ; - --- The Class of all calendar Thursdays. -fun Thursday : Class ; -fun Thursday_Class : SubClass Thursday Day ; - --- A --- UnaryConstantFunctionQuantity of continuous time. All instances of --- this Class are returned by Functions that map a time quantity into --- another ConstantQuantity such as temperature. For example, 'the --- temperature at the top of the Empire State Building' is a --- TimeDependentQuantity, since its value depends on the time. -fun TimeDependentQuantity : Class ; -fun TimeDependentQuantity_Class : SubClass TimeDependentQuantity UnaryConstantFunctionQuantity ; - --- Any measure of length of time, --- with or without respect to the universal timeline. -fun TimeDuration : Class ; -fun TimeDuration_Class : SubClass TimeDuration TimeMeasure ; - --- An interval of time. --- Note that a TimeInterval has both an extent and a location on the --- universal timeline. Note too that a TimeInterval has no gaps, --- i.e. this class contains only convex time intervals. -fun TimeInterval : Class ; -fun TimeInterval_Class : SubClass TimeInterval TimePosition ; - --- A BinaryFunction that takes two TimePoints --- as arguments and returns the TimeInterval defined by these two TimePoints. --- Note that the first TimePoint must occur earlier than the second TimePoint. -fun TimeIntervalFn : El TimePoint -> El TimePoint -> Ind TimeInterval ; - - --- The class of temporal durations (instances --- of TimeDuration) and positions of TimePoints and TimeIntervals along --- the universal timeline (instances of TimePosition). -fun TimeMeasure : Class ; -fun TimeMeasure_Class : SubClass TimeMeasure ConstantQuantity ; - --- An extensionless point on --- the universal timeline. The TimePoints at which Processes occur --- can be known with various degrees of precision and approximation, but --- conceptually TimePoints are point_like and not interval_like. That --- is, it doesn't make sense to talk about how long a TimePoint --- lasts. -fun TimePoint : Class ; -fun TimePoint_Class : SubClass TimePoint TimePosition ; - --- Any TimePoint or TimeInterval --- along the universal timeline from NegativeInfinity to --- PositiveInfinity. -fun TimePosition : Class ; -fun TimePosition_Class : SubClass TimePosition TimeMeasure ; - --- An Attribute which is used to specify coordinates --- in which time measures are uniform, i.e. all time devices are synchronized to --- the same TimePositions. -fun TimeZone : Class ; -fun TimeZone_Class : SubClass TimeZone RelationalAttribute ; - --- An aggregation of similarly specialized Cells --- and the associated intercellular substance. Tissues are relatively --- non_localized in comparison to BodyParts, Organs or Organ components. --- The main features of Tissues are self_connectivity (see --- SelfConnectedObject) and being a homogeneous mass (all parts in the --- same granularity are instances of Tissue as well). -fun Tissue : Class ; -fun Tissue_Class : SubClass Tissue BodySubstance ; - --- Any Transfer where two Objects are --- brought into immediate physical contact with one another. -fun Touching : Class ; -fun Touching_Class : SubClass Touching Transfer ; - --- Attributes that indicate the the --- behavior/personality traits of an Organism. -fun TraitAttribute : Class ; -fun TraitAttribute_Class : SubClass TraitAttribute PsychologicalAttribute ; - --- The subclass of ChangeOfPossession where --- something is exchanged for something else. -fun Transaction : Class ; -fun Transaction_Class : SubClass Transaction (both ChangeOfPossession DualObjectProcess) ; - - --- Any instance of Translocation where the agent --- and the patient are not the same thing. -fun Transfer : Class ; -fun Transfer_Class : SubClass Transfer Translocation ; - --- Transitway is the broadest class --- of regions which may be passed through as a path in instances --- of Translocation. Transitway includes land, air, and sea --- regions, and it includes both natural and artificial transitways. -fun Transitway : Class ; -fun Transitway_Class : SubClass Transitway (both Region SelfConnectedObject) ; - - --- Converting content from one Language into another. --- This covers oral translation (i.e. interpreting) as well as written translation. -fun Translating : Class ; -fun Translating_Class : SubClass Translating (both ContentDevelopment DualObjectProcess) ; - - --- Translocation is that class of Motions --- in which an object moves from one place to another. In the case of round --- trips, the origin and destination are the same, but the intervening --- motion passes through other locations. Translocation represents linear --- motion, in contrast to rotation or other movement in place. A vehicle is --- not necessary, Ambulating is a kind of Translocation. -fun Translocation : Class ; -fun Translocation_Class : SubClass Translocation Motion ; - --- Motion from one point to another by means --- of a TransportationDevice. -fun Transportation : Class ; -fun Transportation_Class : SubClass Transportation Translocation ; - --- A TransportationDevice is a Device --- which serves as the instrument in a Transportation Process which carries --- the patient of the Process from one point to another. -fun TransportationDevice : Class ; -fun TransportationDevice_Class : SubClass TransportationDevice Device ; - --- A Tree is a DirectedGraph that has no --- GraphLoops. -fun Tree : Class ; -fun Tree_Class : SubClass Tree Graph ; - --- The TruthValue of being true. -fun True : Ind TruthValue ; - - --- The Class of truth values, e.g. True and --- False. These are Attributes of Sentences and Propositions. -fun TruthValue : Class ; -fun TruthValue_Class : SubClass TruthValue RelationalAttribute ; - --- The Class of all calendar Tuesdays. -fun Tuesday : Class ; -fun Tuesday_Class : SubClass Tuesday Day ; - --- Any two OneDimensionalFigures (i.e. --- straight lines) meeting at a single GeometricPoint. -fun TwoDimensionalAngle : Class ; -fun TwoDimensionalAngle_Class : SubClass TwoDimensionalAngle OpenTwoDimensionalFigure ; - --- The class of GeometricFigures that --- have position and an extension along two dimensions, viz. plane figures --- like circles and polygons. -fun TwoDimensionalFigure : Class ; -fun TwoDimensionalFigure_Class : SubClass TwoDimensionalFigure GeometricFigure ; - --- A --- subclass of FunctionQuantity, instances of which are returned by --- UnaryFunctions that map from one instance of the Class --- ConstantQuantity to another instance of the Class --- ConstantQuantity. -fun UnaryConstantFunctionQuantity : Class ; -fun UnaryConstantFunctionQuantity_Class : SubClass UnaryConstantFunctionQuantity FunctionQuantity ; - --- Attribute that applies to Organisms that --- are unconscious. An Organism may be Unconscious because it is Dead --- or because of a blow to the head, a drug, etc. -fun Unconscious : Ind ConsciousnessAttribute ; - - --- The Class of Removing processes where the agent --- uncovers the patient, either completely or only partially. -fun Uncovering : Class ; -fun Uncovering_Class : SubClass Uncovering Removing ; - --- The Attribute of a CognitiveAgent when --- he/she is unemployed. -fun Unemployed : Ind SocialRole ; - - --- Any instance of Detaching which results in --- a situation where it is not the case that the agent grasps something --- which he/she grasps previously. -fun Ungrasping : Class ; -fun Ungrasping_Class : SubClass Ungrasping Detaching ; - --- Any instance of Getting that is not part --- of a Transaction. In other words, any instance of Getting where nothing --- is given in return. Some examples of UnilateralGetting are: appropriating, --- commandeering, stealing, etc. -fun UnilateralGetting : Class ; -fun UnilateralGetting_Class : SubClass UnilateralGetting Getting ; - --- Any instance of Giving that is not part --- of a Transaction. In other words, any instance of Giving where nothing --- is received in return. Some examples of UnilateralGiving are: honorary --- awards, gifts, and financial grants. -fun UnilateralGiving : Class ; -fun UnilateralGiving_Class : SubClass UnilateralGiving Giving ; - --- The Attribute of Regions that are --- unilluminated, i.e in which no shapes are visually discernable. -fun Unilluminated : Ind VisualAttribute ; - - --- A BinaryFunction that maps two SetOrClasses to --- the union of these SetOrClasses. An object is an element of the union --- of two SetOrClasses just in case it is an instance of either SetOrClass. -fun UnionFn : El SetOrClass -> El SetOrClass -> Ind SetOrClass ; - - --- A List in which no item appears more than once, --- i.e. a List for which there are no distinct numbers ?NUMBER1 and ?NUMBER2 --- such that (ListOrderFn ?LIST ?NUMBER1) and (ListOrderFn ?LIST ?NUMBER2) --- return the same value. -fun UniqueList : Class ; -fun UniqueList_Class : SubClass UniqueList List ; - --- UnitFn returns just the --- UnitOfMeasure of a PhysicalQuantity with an associated --- UnitOfMeasure and RealNumber magnitude. For example, the unit of --- the ConstantQuantity (MeasureFn 2 Kilometer) is the --- UnitOfMeasure Kilometer. -fun UnitFn : El PhysicalQuantity -> Ind UnitOfMeasure ; - - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of AngleMeasure. -fun UnitOfAngularMeasure : Class ; -fun UnitOfAngularMeasure_Class : SubClass UnitOfAngularMeasure NonCompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of AreaMeasure. -fun UnitOfArea : Class ; -fun UnitOfArea_Class : SubClass UnitOfArea CompositeUnitOfMeasure ; - --- UnitOfAtmosphericPressure includes those instances of --- UnitOfMeasure used to measure atmospheric pressure (barometricPressure), --- e.g., InchMercury. -fun UnitOfAtmosphericPressure : Class ; -fun UnitOfAtmosphericPressure_Class : SubClass UnitOfAtmosphericPressure CompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of CurrencyMeasure. -fun UnitOfCurrency : Class ; -fun UnitOfCurrency_Class : SubClass UnitOfCurrency NonCompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of TimeDuration. Note that TimeDuration is a subclass --- of TimeMeasure. -fun UnitOfDuration : Class ; -fun UnitOfDuration_Class : SubClass UnitOfDuration NonCompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of FrequencyMeasure. -fun UnitOfFrequency : Class ; -fun UnitOfFrequency_Class : SubClass UnitOfFrequency CompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of InformationMeasure. -fun UnitOfInformation : Class ; -fun UnitOfInformation_Class : SubClass UnitOfInformation NonCompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of LengthMeasure. -fun UnitOfLength : Class ; -fun UnitOfLength_Class : SubClass UnitOfLength NonCompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of MassMeasure, which denote the amount of matter in --- PhysicalObjects. -fun UnitOfMass : Class ; -fun UnitOfMass_Class : SubClass UnitOfMass NonCompositeUnitOfMeasure ; - --- A standard of measurement for some dimension. --- For example, the Meter is a UnitOfMeasure for the dimension of length, --- as is the Inch. There is no intrinsic property of a UnitOfMeasure that --- makes it primitive or fundamental, rather, a system of units (e.g. --- SystemeInternationalUnit) defines a set of orthogonal dimensions and --- assigns units for each. -fun UnitOfMeasure : Class ; -fun UnitOfMeasure_Class : SubClass UnitOfMeasure PhysicalQuantity ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of TemperatureMeasure. -fun UnitOfTemperature : Class ; -fun UnitOfTemperature_Class : SubClass UnitOfTemperature NonCompositeUnitOfMeasure ; - --- Every instance of this --- Class is a UnitOfMeasure that can be used with MeasureFn to form --- instances of VolumeMeasure. -fun UnitOfVolume : Class ; -fun UnitOfVolume_Class : SubClass UnitOfVolume CompositeUnitOfMeasure ; - --- Unit of volume commonly used in the --- United Kingdom. -fun UnitedKingdomGallon : Ind UnitOfVolume ; - - --- A currency measure. 1 UnitedStatesCent is --- equal to .01 UnitedStatesDollars. -fun UnitedStatesCent : Ind UnitOfCurrency ; - - --- A currency measure. -fun UnitedStatesDollar : Ind UnitOfCurrency ; - - --- Unit of volume commonly used in the --- United States. -fun UnitedStatesGallon : Ind UnitOfVolume ; - - --- The ProbabilityAttribute of being improbable, i.e. more --- likely than not to be False. -fun Unlikely : Ind ProbabilityAttribute ; - - --- A DeductiveArgument which is --- valid, i.e. the set of premises in fact entails the conclusion. -fun ValidDeductiveArgument : Class ; -fun ValidDeductiveArgument_Class : SubClass ValidDeductiveArgument DeductiveArgument ; - --- Vehicle is the subclass of --- TransportationDevices that transport passengers or goods --- from one place to another by moving from one place to the other --- with them, e.g., cars, trucks, ferries, and airplanes. Contrast --- with devices such as pipelines, escalators, or supermarket --- checkout belts, which carry items from one place to another by means --- of a moving part, without the device removing from the origin to --- the destination. -fun Vehicle : Class ; -fun Vehicle_Class : SubClass Vehicle TransportationDevice ; - --- Specifies the velocity of an object, i.e. the speed --- and the direction of the speed. For example (VelocityFn (MeasureFn 55 Mile) --- (MeasureFn 2 HourDuration) ?REFERENCE North) denotes the velocity of 55 miles --- per hour North of the given reference point ?REFERENCE. -fun VelocityFn : El LengthMeasure -> El TimeDuration -> El Region -> El DirectionalAttribute -> Ind FunctionQuantity ; - - --- One of the parts of speech. The Class of Words --- that conventionally denote Processes. -fun Verb : Class ; -fun Verb_Class : SubClass Verb Word ; - --- A Phrase that has the same function as a --- Verb. -fun VerbPhrase : Class ; -fun VerbPhrase_Class : SubClass VerbPhrase Phrase ; - --- An Animal which has a spinal column. -fun Vertebrate : Class ; -fun Vertebrate_Animal : SubClassC Vertebrate Animal (\VERT -> and (and (and (exists SpinalColumn (\SPINE -> component(var SpinalColumn CorpuscularObject ? SPINE)(var Animal CorpuscularObject ? VERT))) (forall NervousSystem (\S -> part(var NervousSystem Object ? S)(var Animal Object ? VERT)))) (forall Skeleton (\SKELETON -> part(var Skeleton Object ? SKELETON)(var Animal Object ? VERT)))) (forall Exoskeleton (\SKELETON -> part(var Exoskeleton Object ? SKELETON)(var Animal Object ? VERT)))); - - --- Attribute used to indicate that an Object --- is positioned height_wise with respect to another Object. -fun Vertical : Ind PositionalAttribute ; - - --- A Contest where one participant attempts to --- physically injure another participant. -fun ViolentContest : Class ; -fun ViolentContest_Class : SubClass ViolentContest Contest ; - --- An Organism consisting of a core of a single --- nucleic acid enclosed in a protective coat of protein. A virus may replicate --- only inside a host living cell. A virus exhibits some but not all of the --- usual characteristics of living things. -fun Virus : Class ; -fun Virus_Class : SubClass Virus Microorganism ; - --- The Class of visually discernible --- properties. -fun VisualAttribute : Class ; -fun VisualAttribute_Class : SubClass VisualAttribute PerceptualAttribute ; - --- A Nutrient present in natural products or made --- synthetically, which is essential in the diet of Humans and other higher --- Animals. Included here are Vitamin precursors and provitamins. -fun Vitamin : Class ; -fun Vitamin_Class : SubClass Vitamin Nutrient ; - --- The vocal cords, are composed --- of two folds of mucous membrane stretched horizontally across the --- larynx. They vibrate, modulating the flow of air being expelled from the --- lungs during Vocalizing. -fun VocalCords : Class ; -fun VocalCords_Class : SubClass VocalCords Organ ; - --- Any instance of RadiatingSound where the --- instrument is the Human vocal cords. This covers grunts, screams, --- roars, as well as Speaking. -fun Vocalizing : Class ; -fun Vocalizing_Class : SubClass Vocalizing (both BodyMotion RadiatingSound) ; - - --- SI electric potential measure. Symbol: V. It is --- the difference of electric potential between two points of a conducting --- wire carrying a constant current of 1 Ampere, when the power dissipated --- between these points is equal to 1 Watt. Volt = W/A = --- m^2*kg*s^(_3)*A^(_1). -fun Volt : Ind CompositeUnitOfMeasure ; - - --- Measures of the amount of space in three --- dimensions. -fun VolumeMeasure : Class ; -fun VolumeMeasure_Class : SubClass VolumeMeasure FunctionQuantity ; - --- Voting is the activity of voting in an --- Election. Voting is typically done by individuals, while Elections --- are conducted by Organizations. The voting process by an individual --- voter is part of an Election process. -fun Voting : Class ; -fun Voting_Class : SubClass Voting Deciding ; - --- Ambulating relatively slowly, i.e. moving in such a --- way that at least one foot is always in contact with the ground. -fun Walking : Class ; -fun Walking_Class : SubClass Walking Ambulating ; - --- A military confrontation between two or more --- GeopoliticalAreas or Organizations whose members are GeopoliticalAreas. --- As the corresponding axiom specifies, a War is made up of Battles. -fun War : Class ; -fun War_Class : SubClass War ViolentContest ; - --- Vertebrates whose body temperature --- is internally regulated. -fun WarmBloodedVertebrate : Class ; -fun WarmBloodedVertebrate_Class : SubClass WarmBloodedVertebrate Vertebrate ; - --- A Contract that states the cirumstances --- under which defects in the product will be corrected for no charge. --- A Warranty is usually limited to a length of time that is specified --- in the Warranty itself. A Warranty also includes information about --- what is not covered and actions that invalidate the Warranty. -fun Warranty : Ind DeonticAttribute ; - - --- The Class of samples of the compound H20. Note --- that this Class covers both pure and impure Water. -fun Water : Class ; -fun Water_Class : SubClass Water CompoundSubstance ; - --- A body which is made up predominantly of water, --- e.g. rivers, lakes, oceans, etc. -fun WaterArea : Class ; -fun WaterArea_Class : SubClass WaterArea GeographicArea ; - --- Any Cloud that is composed primarily of water vapor. -fun WaterCloud : Class ; -fun WaterCloud_Class : SubClass WaterCloud Cloud ; - --- Any LiquidMotion where the Liquid is Water. -fun WaterMotion : Class ; -fun WaterMotion_Class : SubClass WaterMotion LiquidMotion ; - --- SI power measure. Symbol: W. A UnitOfMeasure --- that measures power, i.e. energy produced or expended divided by --- TimeDuration. It is the power which gives rise to the production --- of energy (or work) at the rate of one Joule per SecondDuration. --- Watt = J/s = m^2*kg*s^(_3). -fun Watt : Ind CompositeUnitOfMeasure ; - - --- A UnaryFunction that maps an Agent to a --- CurrencyMeasure specifying the value of the property owned by the Agent. --- Note that this Function is generally used in conjunction with the --- Function PropertyFn, e.g. (WealthFn (PropertyFn BillGates)) would --- return the monetary value of the sum of Bill Gates' holdings. -fun WealthFn : El Agent -> Ind CurrencyMeasure ; - - --- The Class of Devices that are designed --- primarily to damage or destroy Humans/Animals, StationaryArtifacts or --- the places inhabited by Humans/Animals. -fun Weapon : Class ; -fun Weapon_Class : SubClass Weapon Device ; - --- WearableItem is the subclass of --- Artifacts that are made to be worn on the body. -fun WearableItem : Class ; -fun WearableItem_Class : SubClass WearableItem Artifact ; - --- WeatherProcess is the broadest class of --- processes that involve weather, including weather seasons (not to be confused --- with instances of SeasonOfYear), weather systems, and short_term weather --- events. -fun WeatherProcess : Class ; -fun WeatherProcess_Class : SubClass WeatherProcess Motion ; - --- SI magnetic flux measure. Symbol: Wb. It is the --- magnetic flux which, linking a circuit of one turn, produces in it an --- electromotive force of 1 Volt as it is reduced to zero at a uniform --- rate in 1 SecondDuration. Weber = V*s = m^2*kg*s^(_2)*A^(_1). -fun Weber : Ind CompositeUnitOfMeasure ; - - --- Any Declaring that leads to one person being --- the spouse of another. -fun Wedding : Class ; -fun Wedding_Class : SubClass Wedding Declaring ; - --- The Class of all calendar Wednesdays. -fun Wednesday : Class ; -fun Wednesday_Class : SubClass Wednesday Day ; - --- The Class of all calendar weeks. -fun Week : Class ; -fun Week_Class : SubClass Week TimeInterval ; - --- Time unit. A week's duration is seven days. -fun WeekDuration : Ind UnitOfDuration ; - - --- The compass direction of West. -fun West : Ind DirectionalAttribute ; - - --- An Attribute which indicates that the --- associated Object is fully saturated with a Liquid, i.e. --- every part of the Object has a subpart which is a Liquid. -fun Wet : Ind SaturationAttribute ; - - --- The Class of Processes where a Liquid is --- added to an Object. -fun Wetting : Class ; -fun Wetting_Class : SubClass Wetting Putting ; - --- A UnaryFunction that maps an Object or --- Process to the exact TimeInterval during which it exists. Note --- that, for every TimePoint ?TIME outside of the TimeInterval --- (WhenFn ?THING), (time ?THING ?TIME) does not hold. -fun WhenFn : El Physical -> Ind TimeInterval ; - - --- Maps an Object and a TimePoint at which the --- Object exists to the Region where the Object existed at that --- TimePoint. -fun WhereFn : El Physical -> El TimePoint -> Ind Region ; - - --- The Attribute of being white in color. -fun White : Ind PrimaryColor ; - - --- Any Motion of Air. -fun Wind : Class ; -fun Wind_Class : SubClass Wind GasMotion ; - --- The class of Female Humans. -fun Woman : Class ; -fun Woman_Class : SubClass Woman Human ; - --- A term of a Language that represents a concept. -fun Word : Class ; -fun Word_Class : SubClass Word LinguisticExpression ; - --- Long, narrow, soft_bodied Invertebrates. -fun Worm : Class ; -fun Worm_Class : SubClass Worm Invertebrate ; - --- A subclass of ContentDevelopment in which --- content is converted from one form (e.g. uttered, written or represented --- mentally) into a written form. Note that this class covers both --- transcription and original creation of written Texts. -fun Writing : Class ; -fun Writing_Class : SubClass Writing ContentDevelopment ; - --- The Class of all calendar Years. -fun Year : Class ; -fun Year_Class : SubClass Year TimeInterval ; - --- Time unit. one calendar year. 1 year = --- 365 days = 31536000 seconds. -fun YearDuration : Ind UnitOfDuration ; - - --- A UnaryFunction that maps a number to the corresponding calendar --- Year. For example, (YearFn 1912) returns the Class containing just one instance, --- the year of 1912. As might be expected, positive integers return years in the Common Era, --- while negative integers return years in B.C.E. Note that this function returns a Class --- as a value. The reason for this is that the related functions, viz. MonthFn, DayFn, --- HourFn, MinuteFn, and SecondFn, are used to generate both specific TimeIntervals --- and recurrent intervals, and the only way to do this is to make the domains and ranges of --- these functions classes rather than individuals. -fun YearFn : El Integer -> Desc Year ; - - --- The Attribute of being yellow in color. -fun Yellow : Ind PrimaryColor ; - - --- (abstractCounterpart ?AB ?PHYS --- relates a Physical entity to an Abstract one which is an idealized --- model in some dimension of the Physical entity. For example, an --- Abstract GraphNode could be stated to be the counterpart of an --- actual Computer in a ComputerNetwork. -fun abstractCounterpart : El Abstract -> El Physical -> Formula ; - - --- (acquaintance ?H1 ?H2) means that ?H1 has --- met and knows something about ?H2, such as ?H2's name and appearance. --- Statements made with this predicate should be temporally specified with --- holdsDuring. Note that acquaintance is not symmetric. For the --- symmetric version, see mutualAcquaintance. -fun acquaintance : El Human -> El Human -> Formula ; - - --- Simply relates an Object to a ConstantQuantity --- specifying the age of the Object. -fun age : El Object -> El TimeDuration -> Formula ; - - --- (agent ?PROCESS ?AGENT) means that ?AGENT is --- an active determinant, either animate or inanimate, of the Process --- ?PROCESS, with or without voluntary intention. For example, Eve is an --- agent in the following proposition: Eve bit an apple. -fun agent : El Process -> El Agent -> Formula ; - - --- A TernaryPredicate that is --- used to state the distance between the top of an Object and --- another point that is below the top of the Object (often this --- other point will be sea level). Note that this Predicate can be --- used to specify, for example, the height of geographic features, --- e.g. mountains, the altitude of aircraft, and the orbit of satellites --- around the Earth. -fun altitude : El Physical -> El Physical -> El LengthMeasure -> Formula ; - - --- The transitive closure of the parent predicate. --- (ancestor ?DESCENDANT ?ANCESTOR) means that ?ANCESTOR is either the --- parent of ?DESCENDANT or the parent of the parent of DESCENDANT or --- etc. -fun ancestor : El Organism -> El Organism -> Formula ; - - --- (angleOfFigure ?ANGLE ?FIGURE) means that --- the TwoDimensionalAngle ?ANGLE is part of the GeometricFigure ?FIGURE. -fun angleOfFigure : El GeometricFigure -> El GeometricFigure -> Formula ; - - --- (angularMeasure ?ANGLE ?MEASURE) means that --- the two_dimensional geometric angle ?ANGLE has the PlaneAngleMeasure of --- ?MEASURE. -fun angularMeasure : El TwoDimensionalAngle -> El PlaneAngleMeasure -> Formula ; - - --- This predicate indicates the value of a --- GraphArc in a Graph. This could map to the length of a road in --- a road network or the flow rate of a pipe in a plumbing system. -fun arcWeight : El GraphArc -> El Quantity -> Formula ; - - --- (atomicNumber ?ELEMENT ?NUMBER) means that --- the ElementalSubstance ?ELEMENT has the atomic number ?NUMBER. The --- atomic number is the number of Protons in the nucleus of an Atom. -fun atomicNumber : Desc ElementalSubstance -> El PositiveInteger -> Formula ; - - --- (attends ?DEMO ?PERSON) means that ?PERSON attends, --- i.e. is a member of the audience, of the performance event ?DEMO. -fun attends : El Demonstrating -> El Human -> Formula ; - - --- (attribute ?OBJECT ?PROPERTY) means that --- ?PROPERTY is a Attribute of ?OBJECT. For example, --- (attribute MyLittleRedWagon Red). -fun attribute : El Object -> El Attribute -> Formula ; - - --- (authors ?AGENT ?TEXT) means that ?AGENT is --- creatively responsible for ?TEXT. For example, Agatha Christie is --- author of Murder_on_the_Orient_Express. -fun authors : El Agent -> Desc Text -> Formula ; - - --- A partial function that relates a List to a --- RealNumber, provided that the List only has list elements that are --- RealNumbers. The RealNumber associated with the List is equal to the --- mathematical average of the RealNumbers in the List divided by the total --- number of list elements. -fun average : El List -> El RealNumber -> Formula ; - - --- (barometricPressure ?AREA ?PRESSURE) means that the atmospheric --- pressure measured at ?AREA is ?PRESSURE. Barometric pressure is --- typically expressed in units of InchMercury or MmMercury. For --- example, standard sea level pressure is 29.92 inches (760 mm) of mercury: --- (barometricPressure SeaLevel (MeasureFn 29.92 InchMercury)). -fun barometricPressure : El Object -> El UnitOfAtmosphericPressure -> Formula ; - - --- (before ?POINT1 ?POINT2) means that ?POINT1 --- precedes ?POINT2 on the universal timeline. -fun before : El TimePoint -> El TimePoint -> Formula ; - - --- (beforeOrEqual ?POINT1 ?POINT2) means that ?POINT1 --- is identical with ?POINT2 or occurs before it on the universal timeline. -fun beforeOrEqual : El TimePoint -> El TimePoint -> Formula ; - - --- The epistemic predicate of belief. --- (believes ?AGENT ?FORMULA) means that ?AGENT believes the proposition --- expressed by ?FORMULA. -fun believes : El CognitiveAgent -> Formula -> Formula ; - - --- (between ?OBJ1 ?OBJ2 ?OBJ3) means that ?OBJ2 is --- spatially located between ?OBJ1 and ?OBJ3. Note that this implies that --- ?OBJ2 is directly between ?OBJ1 and ?OBJ3, i.e. the projections of ?OBJ1 --- and ?OBJ3 overlap with ?OBJ2. -fun between : El Object -> El Object -> El Object -> Formula ; - - --- The temperature at which a PureSubstance changes --- state from a Liquid to a Gas. -fun boilingPoint : Desc PureSubstance -> El TemperatureMeasure -> Formula ; - - --- (bottom ?BOTTOM ?OBJECT) holds if ?BOTTOM is the --- lowest or deepest maximal superficial part of ?OBJECT. -fun bottom : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; - - --- The general relationship of being a brother. --- (brother ?MAN ?PERSON) means that ?MAN is the brother of ?PERSON. -fun brother : El Man -> El Human -> Formula ; - - --- The causation relation between instances of Process. --- (causes ?PROCESS1 ?PROCESS2) means that the instance of Process ?PROCESS1 --- brings about the instance of Process ?PROCESS2. -fun causes : El Process -> El Process -> Formula ; - - --- (causesProposition ?FORMULA1 --- ?FORMULA2) means that the state of affairs described by ?FORMULA1 --- causes, or mechanistically brings about, the state of affairs --- described by ?FORMULA2. Note that unlike entails, the time --- during which ?FORMULA2 holds cannot precede the time during which --- ?FORMULA1 holds, although ?FORMULA1 and ?FORMULA2 can hold --- simultaneously. Note, also, that causesProposition is a --- predicate, not a truth function. The following rule --- (contraposition) does not hold: (=> (causesProp ?FORMULA1 --- ?FORMULA2) (causesProp (not ?FORMULA2) (not ?FORMULA1))). -fun causesProposition : Formula -> Formula -> Formula ; - - --- The causation relation between subclasses of Process. --- (causesSubclass ?PROCESS1 ?PROCESS2) means that the subclass of Process ?PROCESS1 --- brings about the subclass of Process ?PROCESS2, e.g. (causesSubclass Killing --- Death). -fun causesSubclass : Desc Process -> Desc Process -> Formula ; - - --- (citizen ?PERSON ?NATION) means that the --- Human ?PERSON is a citizen of Nation ?NATION. -fun citizen : El Human -> El Nation -> Formula ; - - --- (completelyFills ?OBJ ?HOLE) --- means that some part of the Object ?OBJ fills the Hole ?HOLE. --- Note that if (completelyFills ?OBJ1 ?HOLE) and (part --- ?OBJ1 ?OBJ2), then (completelyFills ?OBJ2 ?HOLE). --- A complete filler of (a part of) a hole is connected with everything --- with which (that part of) the hole itself is connected. --- A perfect filler of (a part of) a hole completely fills every proper --- part of (that part of) that hole. -fun completelyFills : El Object -> El Hole -> Formula ; - - --- A specialized common sense notion of part --- for heterogeneous parts of complexes. (component ?COMPONENT ?WHOLE) --- means that ?COMPONENT is a component of ?WHOLE. Examples of component --- include the doors and walls of a house, the states or provinces of a --- country, or the limbs and organs of an animal. Compare piece, which --- is also a subrelation of part. -fun component : El CorpuscularObject -> El CorpuscularObject -> Formula ; - - --- (conclusion ?ARGUMENT ?PROPOSITION) means that --- the Proposition ?PROPOSITION is the conclusion explicitly drawn from the --- Argument ?ARGUMENT. Note that it may or may not be the case that ?ARGUMENT --- entails ?PROPOSITION. -fun conclusion : El Argument -> El Proposition -> Formula ; - - --- One of the basic ProbabilityRelations. --- conditionalProbability is used to state the numeric value of a conditional --- probability. (conditionalProbability ?FORMULA1 ?FORMULA2 ?NUMBER) means --- that the probability of ?FORMULA2 being true given that ?FORMULA1 is true is --- ?NUMBER. -fun conditionalProbability : Formula -> Formula -> El RealNumber -> Formula ; - - --- Expresses the relationship between a Formula, --- an Entity, and an ObjectiveNorm when the Entity brings it about that --- the Formula has the ObjectiveNorm. -fun confersNorm : El Entity -> Formula -> El ObjectiveNorm -> Formula ; - - --- Expresses the relationship between a --- a Formula, an Entity, and a CognitiveAgent when the Entity --- obligates the CognitiveAgent to bring it about that the Formula is --- true. -fun confersObligation : Formula -> El Entity -> El CognitiveAgent -> Formula ; - - --- Expresses the relationship between a Formula, --- an Entity, and a CognitiveAgent when the Entity authorizes the --- CognitiveAgent to bring it about that the Formula is true. -fun confersRight : Formula -> El Entity -> El CognitiveAgent -> Formula ; - - --- (connected ?OBJ1 ?OBJ2) means that ?OBJ1 --- meetsSpatially ?OBJ2 or that ?OBJ1 overlapsSpatially ?OBJ2. -fun connected : El Object -> El Object -> Formula ; - - --- This is the most general --- connection relation between EngineeringComponents. If --- (connectedEngineeringComponents ?COMP1 ?COMP2), then neither ?COMP1 nor --- ?COMP2 can be an engineeringSubcomponent of the other. The relation --- connectedEngineeringComponents is a SymmetricRelation, there is no --- information in the direction of connection between two components. It is --- also an IrreflexiveRelation, no EngineeringComponent bears this relation --- to itself. Note that this relation does not associate a name or type --- with the connection. -fun connectedEngineeringComponents : El EngineeringComponent -> El EngineeringComponent -> Formula ; - - --- The relationship between three things, when one of --- the three things connects the other two. More formally, (connects ?OBJ1 --- ?OBJ2 ?OBJ3) means that (connected ?OBJ1 ?OBJ2) and (connected ?OBJ1 ?OBJ3) --- and not (connected ?OBJ2 ?OBJ3). -fun connects : El SelfConnectedObject -> El SelfConnectedObject -> El SelfConnectedObject -> Formula ; - - --- connectsEngineeringComponents --- is a TernaryPredicate that maps from an EngineeringConnection to the --- EngineeringComponents it connects. Since EngineeringComponents cannot --- be connected to themselves and there cannot be an EngineeringConnection --- without a connectedEngineeringComponents Predicate, the second and third --- arguments of any connectsEngineeringComponents relationship will always be --- distinct for any given first argument. -fun connectsEngineeringComponents : El EngineeringComponent -> El EngineeringComponent -> El SelfConnectedObject -> Formula ; - - --- (considers ?AGENT ?FORMULA) means that ?AGENT --- considers or wonders about the truth of the proposition expressed by --- ?FORMULA. -fun considers : El CognitiveAgent -> Formula -> Formula ; - - --- (consistent ?PROP1 ?PROP2) means that the two --- Propositions ?PROP1 and ?PROP2 are consistent with one another, i.e. it --- is possible for both of them to be true at the same time. -fun consistent : El Proposition -> El Proposition -> Formula ; - - --- The relation of spatial containment for two --- separable objects. When the two objects are not separable (e.g. an --- automobile and one of its seats), the relation of part should be used. --- (contains ?OBJ1 ?OBJ2) means that the SelfConnectedObject ?OBJ1 has --- a space (i.e. a Hole) which is at least partially filled by ?OBJ2. -fun contains : El SelfConnectedObject -> El Object -> Formula ; - - --- A subrelation of represents. This --- predicate relates a ContentBearingPhysical to the Proposition that is --- expressed by the ContentBearingPhysical. Examples include the relationships --- between a physical novel and its story and between a printed score and its --- musical content. -fun containsInformation : El ContentBearingPhysical -> El Proposition -> Formula ; - - --- A contraryAttribute is a set of Attributes --- such that something can not simultaneously have more than one of these Attributes. --- For example, (contraryAttribute Pliable Rigid) means that nothing can be both --- Pliable and Rigid. -fun contraryAttribute : [El Attribute] -> Formula ; - - --- (cooccur ?THING1 ?THING2) means that the --- Object or Process ?THING1 occurs at the same time as, together with, --- or jointly with the Object or Process ?THING2. This covers the --- following temporal relations: is co_incident with, is concurrent with, --- is contemporaneous with, and is concomitant with. -fun cooccur : El Physical -> El Physical -> Formula ; - - --- relates an Object to an exact copy of the --- Object, where an exact copy is indistinguishable from the original --- with regard to every property except (possibly) spatial and/or temporal --- location. -fun copy : El Object -> El Object -> Formula ; - - --- (crosses ?OBJ1 ?OBJ2) means that --- Object ?OBJ1 traverses Object ?OBJ2, without being connected --- to it. -fun crosses : El Object -> El Object -> Formula ; - - --- A BinaryPredicate that specifies a --- TimePosition in absolute calendar time, at the resolution --- of one day, for a particular Object or Process. -fun date : El Physical -> El Day -> Formula ; - - --- The general relationship of daughterhood. --- (daughter ?CHILD ?PARENT) means that ?CHILD is the biological daughter --- of ?PARENT. -fun daughter : El Organism -> El Organism -> Formula ; - - --- One of the basic ProbabilityRelations. --- (decreasesLikelihood ?FORMULA1 ?FORMULA2) means that ?FORMULA2 is less --- likely to be true if ?FORMULA1 is true. -fun decreasesLikelihood : Formula -> Formula -> Formula ; - - --- Expresses the relationship between an --- Entity, a Formula, and an ObjectiveNorm when the Entity --- brings it about that the Formula does not have the ObjectiveNorm. -fun deprivesNorm : El Entity -> Formula -> El ObjectiveNorm -> Formula ; - - --- A TernaryPredicate that is --- used to state the distance between the top of an Object and --- another point that is above the top of the Object (often this --- other point will be sea level). Note that this Predicate can be --- used to specify, for example, the depth of marine life or submarines, --- for example. -fun depth : El Physical -> El Physical -> El LengthMeasure -> Formula ; - - --- (desires ?AGENT ?FORMULA) means that ?AGENT wants --- to bring about the state of affairs expressed by ?FORMULA. Note that there --- is no implication that what is desired by the agent is not already true. --- Note too that desires is distinguished from wants only in that the former --- is a PropositionalAttitude, while wants is an ObjectAttitude. -fun desires : El CognitiveAgent -> Formula -> Formula ; - - --- (destination ?PROCESS ?GOAL) means that --- ?GOAL is the target or goal of the Process ?PROCESS. For example, --- Danbury would be the destination in the following proposition: Bob went --- to Danbury. Note that this is a very general CaseRole and, in --- particular, that it covers the concepts of 'recipient' and 'beneficiary'. --- Thus, John would be the destination in the following proposition: --- Tom gave a book to John. -fun destination : El Process -> El Entity -> Formula ; - - --- (developmentalForm ?OBJECT ?FORM) --- means that ?FORM is an earlier stage in the individual maturation of --- ?OBJECT. For example, tadpole and caterpillar are developmentalForms --- of frogs and butterflies, respectively. -fun developmentalForm : El OrganicObject -> El DevelopmentalAttribute -> Formula ; - - --- (diameter ?CIRCLE ?LENGTH) means that the diameter --- of the Circle ?CIRCLE has a length of ?LENGTH. -fun diameter : El Circle -> El LengthMeasure -> Formula ; - - --- (direction ?PROC ?ATTR) means that the --- Process ?PROC is moving in the direction ?ATTR. For example, one --- would use this Predicate to represent the fact that Max is moving --- North. -fun direction : El Process -> El DirectionalAttribute -> Formula ; - - --- Classes are disjoint only if they share no --- instances, i.e. just in case the result of applying IntersectionFn to --- them is empty. -fun disjoint : El SetOrClass -> El SetOrClass -> Formula ; - - --- A disjointDecomposition of a Class --- C is a set of subclasses of C that are mutually disjoint. -fun disjointDecomposition : Class -> [Class] -> Formula ; - - --- (distance ?OBJ1 ?OBJ2 ?QUANT) means that the --- shortest distance between the two objects ?OBJ1 and ?OBJ2 is ?QUANT. Note --- that the difference between the predicates length and distance is that --- the length is used to state the LengthMeasure of one of the dimensions of --- a single object, while distance is used to state the LengthMeasure that --- separates two distinct objects. -fun distance : El Physical -> El Physical -> El LengthMeasure -> Formula ; - - --- A relation between objects --- in the domain of discourse and strings of natural language text stated in --- a particular HumanLanguage. The domain of documentation is not --- constants (names), but the objects themselves. This means that one does --- not quote the names when associating them with their documentation. -fun documentation : El Entity -> El HumanLanguage -> El SymbolicString -> Formula ; - - --- (duration ?POS ?TIME) means that the --- duration of the TimePosition ?POS is ?TIME. Note that this --- Predicate can be used in conjunction with the Function WhenFn --- to specify the duration of any instance of Physical. -fun duration : El TimeInterval -> El TimeDuration -> Formula ; - - --- (during ?INTERVAL1 ?INTERVAL2) means that --- ?INTERVAL1 starts after and ends before ?INTERVAL2. -fun during : El TimeInterval -> El TimeInterval -> Formula ; - - --- (earlier ?INTERVAL1 ?INTERVAL2) means that --- the TimeInterval ?INTERVAL1 ends before the TimeInterval ?INTERVAL2 --- begins. -fun earlier : El TimeInterval -> El TimeInterval -> Formula ; - - --- (editor ?AGENT ?TEXT) means that ?AGENT is --- an editor of ?TEXT. -fun editor : El Agent -> Desc Text -> Formula ; - - --- (element ?ENTITY ?SET) is true just in case --- ?ENTITY is contained in the Set ?SET. An Entity can be an element --- of another Entity only if the latter is a Set. -fun element : El Entity -> El Set -> Formula ; - - --- (employs ?ORG ?PERSON) means that ?ORG has --- hired ?PERSON and currently retains ?PERSON, on a salaried, hourly --- or contractual basis, to provide services in exchange for monetary --- compensation. -fun employs : El Organization -> El CognitiveAgent -> Formula ; - - --- (engineeringSubcomponent ?SUB --- ?SUPER) means that the EngineeringComponent ?SUB is structurally a --- properPart of ?SUPER. This relation is an AsymmetricRelation, since --- two EngineeringComponents cannot be subcomponents of each other. -fun engineeringSubcomponent : El EngineeringComponent -> El EngineeringComponent -> Formula ; - - --- The operator of logical entailment. (entails --- ?FORMULA1 ?FORMULA2) means that ?FORMULA2 can be derived from ?FORMULA1 --- by means of the proof theory of SUO_KIF. -fun entails : Formula -> Formula -> Formula ; - - --- (equal ?ENTITY1 ?ENTITY2) is true just in case --- ?ENTITY1 is identical with ?ENTITY2. -fun equal : El Entity -> El Entity -> Formula ; - - --- A BinaryPredicate that relates two --- subclasses of ContentBearingObject. (equivalentContentClass ?CLASS1 --- ?CLASS2) means that the content expressed by each instance of ?CLASS1 is --- also expressed by each instance of ?CLASS2, and vice versa. An example --- would be the relationship between English and Russian editions of Agatha --- Christie's 'Murder on the Orient Express'. Note that --- (equivalentContentClass ?CLASS1 ?CLASS2) implies (subsumesContentClass --- ?CLASS1 ?CLASS2) and (subsumesContentClass ?CLASS2 ?CLASS1). -fun equivalentContentClass : Desc ContentBearingObject -> Desc ContentBearingObject -> Formula ; - - --- A BinaryPredicate relating two --- instances of ContentBearingObject. (equivalentContentInstance --- ?OBJ1 ?OBJ2) means that the content expressed by ?OBJ1 is identical to --- the content expressed by ?OBJ2. An example would be the relationship --- between a handwritten draft of a letter to one's lawyer and a typed --- copy of the same letter. Note that (equivalentContentInstance ?OBJ1 --- ?OBJ2) implies (subsumesContentInstance ?OBJ1 ?OBJ2) and --- (subsumesContentInstance ?OBJ2 ?OBJ2). -fun equivalentContentInstance : El ContentBearingObject -> El ContentBearingObject -> Formula ; - - --- The actual, minimal location of an --- Object. This is a subrelation of the more general Predicate --- located. -fun exactlyLocated : El Physical -> El Object -> Formula ; - - --- This predicate relates a Class to a --- set of Attributes, and it means that the elements of this set exhaust the --- instances of the Class. For example, (exhaustiveAttribute PhysicalState --- Solid Fluid Liquid Gas Plasma) means that there are only five instances of --- the class PhysicalState, viz. Solid, Fluid, Liquid, Gas and Plasma. -fun exhaustiveAttribute : Desc Attribute -> [El Attribute] -> Formula ; - - --- An exhaustiveDecomposition of a --- Class C is a set of subclasses of C such that every instance of C is an --- instance of one of the subclasses in the set. Note: this does not necessarily --- mean that the elements of the set are disjoint (see partition _ a partition --- is a disjoint exhaustive decomposition). -fun exhaustiveDecomposition : Class -> [Class] -> Formula ; - - --- (experiencer ?PROCESS ?AGENT) means --- that ?AGENT experiences the Process ?PROCESS. For example, Yojo --- is the experiencer of seeing in the following proposition: Yojo --- sees the fish. Note that experiencer, unlike agent, does --- not entail a causal relation between its arguments. -fun experiencer : El Process -> El Entity -> Formula ; - - --- (exploits ?OBJ ?AGENT) means that ?OBJ is used --- by ?AGENT as a resource in an unspecified instance of Process. This --- Predicate, as its corresponding axiom indicates, is a composition of the --- relations agent and resource. -fun exploits : El Object -> El Agent -> Formula ; - - --- (expressedInLanguage ?EXPRESS ?LANG) --- means that the LinguisticExpression ?EXPRESS is part of the Language --- ?LANG. -fun expressedInLanguage : El LinguisticExpression -> El Language -> Formula ; - - --- (faces ?OBJ ?DIRECTION) means that the front of --- ?OBJ (see FrontFn) is positioned towards the compass direction ?DIRECTION. --- More precisely, it means that if a line were extended from the center of --- ?DIRECTION, the line would intersect with the front of ?OBJ before it --- intersected with its back (see BackFn). -fun faces : El Object -> El DirectionalAttribute -> Formula ; - - --- A very general Predicate for biological --- relationships. (familyRelation ?ORGANISM1 ?ORGANISM2) means that --- ?ORGANISM1 and ?ORGANISM2 are biologically derived from a common ancestor. -fun familyRelation : El Organism -> El Organism -> Formula ; - - --- The general relationship of fatherhood. --- (father ?CHILD ?FATHER) means that ?FATHER is the biological father --- of ?CHILD. -fun father : El Organism -> El Organism -> Formula ; - - --- Holes can be filled. (fills ?OBJ ?HOLE) --- means that the Object ?OBJ fills the Hole ?HOLE. Note that --- fills here means perfectly filled. Perfect fillers and fillable entities have no parts in common (rather, --- they may occupy the same spatial region). -fun fills : El Object -> El Hole -> Formula ; - - --- (finishes ?INTERVAL1 ?INTERVAL2) means that --- ?INTERVAL1 and ?INTERVAL2 are both TimeIntervals that have the same --- ending TimePoint and that ?INTERVAL2 begins before ?INTERVAL1. -fun finishes : El TimeInterval -> El TimeInterval -> Formula ; - - --- (frequency ?PROC ?TIME) means that the --- Process type of ?PROC recurs after every interval of ?TIME. -fun frequency : Desc Process -> El TimeDuration -> Formula ; - - --- (geographicSubregion ?PART ?WHOLE) --- means that the GeographicArea ?PART is part of the GeographicArea --- ?WHOLE. -fun geographicSubregion : El GeographicArea -> El GeographicArea -> Formula ; - - --- (geometricDistance ?POINT1 ?POINT2 --- ?LENGTH) means that ?LENGTH is the distance between the two --- GeometricPoints ?POINT1 and ?POINT2. -fun geometricDistance : El GeometricPoint -> El GeometricPoint -> El LengthMeasure -> Formula ; - - --- (geometricPart ?PART ?WHOLE) means that the --- GeometricFigure ?PART is part of the GeometricFigure ?WHOLE. -fun geometricPart : El GeometricFigure -> El GeometricFigure -> Formula ; - - --- (geopoliticalSubdivision --- ?AREA1 ?AREA2) means that ?AREA1 is any geopolitical part of ?AREA2, --- that is, ?AREA1 is an integral geographicSubregion of ?AREA2 (not a --- DependencyOrSpecialSovereigntyArea), having its own associated --- GovernmentOrganization which is subordinated to or constrained by --- the government of ?AREA2. Cf. dependentGeopoliticalArea. -fun geopoliticalSubdivision : El GeopoliticalArea -> El GeopoliticalArea -> Formula ; - - --- (graphMeasure ?GRAPH ?MEAS) fixes a --- UnitOfMeasure that is used for the arcWeight of a given Graph. Stating --- such a relationship entails that the components of given graph are the --- abstractCounterparts of sets of Physical Entity(ies). -fun graphMeasure : El Graph -> El UnitOfMeasure -> Formula ; - - --- A basic relation for Graphs and their --- parts. (graphPart ?PART ?GRAPH) means that ?PART is a GraphArc --- or GraphNode of the Graph ?GRAPH. -fun graphPart : El GraphElement -> El Graph -> Formula ; - - --- The state of grasping an Object. (grasps --- ?ANIMAL ?OBJ) means that the Animal ?ANIMAL is intentionally holding --- on to the Object ?OBJ. -fun grasps : El Animal -> El Object -> Formula ; - - --- (greaterThan ?NUMBER1 ?NUMBER2) is true --- just in case the Quantity ?NUMBER1 is greater than the Quantity --- ?NUMBER2. -fun greaterThan : El Quantity -> El Quantity -> Formula ; - - --- (greaterThanByQuality --- ?ENTITY1 ?ENTITY2 ?ATT) means that ?ENTITY1 has more of the given --- quality ?ATT than ?ENTITY2) -fun greaterThanByQuality : El Entity -> El Entity -> El Attribute -> Formula ; - - --- (greaterThanOrEqualTo ?NUMBER1 --- ?NUMBER2) is true just in case the Quantity ?NUMBER1 is greater --- than the Quantity ?NUMBER2. -fun greaterThanOrEqualTo : El Quantity -> El Quantity -> Formula ; - - --- This Predicate expresses the concept of a --- conventional goal, i.e. a goal with a neutralized agent's intention. --- Accordingly, (hasPurpose ?THING ?FORMULA) means that the instance of --- Physical ?THING has, as its purpose, the Proposition expressed by --- ?FORMULA. Note that there is an important difference in meaning between --- the Predicates hasPurpose and result. Although the second argument --- of the latter can satisfy the second argument of the former, --- a conventional goal is an expected and desired outcome, while a result --- may be neither expected nor desired. For example, a machine process may --- have outcomes but no goals, aimless wandering may have an outcome but no --- goal, a learning process may have goals with no outcomes, and so on. -fun hasPurpose : El Physical -> Formula -> Formula ; - - --- Expresses a cognitive attitude of an --- agent with respect to a particular instance of Physical. More precisely, --- (hasPurposeForAgent ?THING ?FORMULA ?AGENT) means that the purpose of --- ?THING for ?AGENT is the proposition expressed by ?FORMULA. Very complex --- issues are involved here. In particular, the rules of inference of the --- first order predicate calculus are not truth_preserving for the second --- argument position of this Predicate. -fun hasPurposeForAgent : El Physical -> Formula -> El CognitiveAgent -> Formula ; - - --- Similar to the capability Predicate --- with the additional restriction that the ability be practised/ --- demonstrated to some measurable degree. -fun hasSkill : Desc Process -> El Agent -> Formula ; - - --- The height of an Object is the distance between --- its top and its bottom. -fun height : El SelfConnectedObject -> El LengthMeasure -> Formula ; - - --- (holdsDuring ?TIME ?FORMULA) means that the --- proposition denoted by ?FORMULA is true in the time frame ?TIME. Note --- that this implies that ?FORMULA is true at every TimePoint which is a --- temporalPart of ?TIME. -fun holdsDuring : El TimePosition -> Formula -> Formula ; - - --- Expresses a relationship between a --- Formula and a CognitiveAgent whereby the CognitiveAgent has --- the obligation to bring it about that the Formula is true. -fun holdsObligation : Formula -> El CognitiveAgent -> Formula ; - - --- Expresses a relationship between a Formula --- and a CognitiveAgent whereby the CognitiveAgent has the right to --- bring it about that the Formula is true. -fun holdsRight : Formula -> El CognitiveAgent -> Formula ; - - --- (hole ?HOLE ?OBJ) means that ?HOLE is a --- Hole in ?OBJ. A Hole is a fillable body located at the --- surface an Object. -fun hole : El Hole -> El SelfConnectedObject -> Formula ; - - --- The relation between a Human and a PermanentResidence --- of the Human. -fun home : El Human -> El PermanentResidence -> Formula ; - - --- (husband ?MAN ?WOMAN) means that ?MAN is the --- husband of ?WOMAN. -fun husband : El Man -> El Woman -> Formula ; - - --- (identicalListItems ?LIST1 ?LIST2) --- means that ?LIST1 and ?LIST2 have exactly the same items in their --- respective lists. Although ?LIST1 and ?LIST2 are required to share --- exactly the same items, they may order these items differently. -fun identicalListItems : El List -> El List -> Formula ; - - --- A SetOrClass ?CLASS1 is an immediateSubclass --- of another SetOrClass ?CLASS2 just in case ?CLASS1 is a subclass of ?CLASS2 and --- there is no other subclass of ?CLASS2 such that ?CLASS1 is also a subclass of it. -fun immediateSubclass : El SetOrClass -> El SetOrClass -> Formula ; - - --- The analog of element and instance for Lists. --- (inList ?OBJ ?LIST) means that ?OBJ is in the List ?LIST. For example, --- (inList Tuesday (ListFn Monday Tuesday Wednesday)) would be true. -fun inList : El Entity -> El List -> Formula ; - - --- A very general Predicate. --- (inScopeOfInterest ?AGENT ?ENTITY) means that ?ENTITY is within the --- scope of interest of ?AGENT. Note that the interest indicated can be --- either positive or negative, i.e. the ?AGENT can have an interest in --- avoiding or promoting ?ENTITY. -fun inScopeOfInterest : El CognitiveAgent -> El Entity -> Formula ; - - --- One of the basic ProbabilityRelations. --- (increasesLikelihood ?FORMULA1 ?FORMULA2) means that ?FORMULA2 is more --- likely to be true if ?FORMULA1 is true. -fun increasesLikelihood : Formula -> Formula -> Formula ; - - --- One of the basic ProbabilityRelations. --- (independentProbability ?FORMULA1 ?FORMULA2) means that the probabilities of --- ?FORMULA1 and ?FORMULA2 being true are independent. -fun independentProbability : Formula -> Formula -> Formula ; - - --- A very basic notion of living within something --- else. (inhabits ?ORGANISM ?OBJECT) means that ?OBJECT is the residence --- (either permanent or temporary), nest, etc. of ?ORGANISM. -fun inhabits : El Organism -> El Object -> Formula ; - - --- A very general Predicate. (inhibits --- ?PROC1 ?PROC2) means that the Process ?PROC1 inhibits or hinders --- the occurrence of the Process ?PROC2. For example, obstructing an --- object inhibits moving it. Note that this is a relation between types --- of Processes, not between instances. -fun inhibits : Desc Process -> Desc Process -> Formula ; - - --- (instrument ?EVENT ?TOOL) means that ?TOOL --- is used by an agent in bringing about ?EVENT and that ?TOOL is not --- changed by ?EVENT. For example, the key is an instrument in the --- following proposition: The key opened the door. Note that instrument --- and resource cannot be satisfied by the same ordered pair. -fun instrument : El Process -> El Object -> Formula ; - - --- (interiorPart ?OBJ1 ?OBJ2) means --- that ?OBJ1 is part ?OBJ2 and there is no overlap between ?OBJ1 and --- any superficialPart ?OBJ2. -fun interiorPart : El Object -> El Object -> Formula ; - - --- (involvedInEvent ?EVENT ?THING) means --- that in the Process ?EVENT, the Entity ?THING plays some CaseRole. -fun involvedInEvent : El Process -> El Entity -> Formula ; - - --- The epistemic predicate of knowing. (knows --- ?AGENT ?FORMULA) means that ?AGENT knows the proposition expressed by --- ?FORMULA. Note that knows entails conscious awareness, so this --- Predicate cannot be used to express tacit or subconscious or --- unconscious knowledge. -fun knows : El CognitiveAgent -> Formula -> Formula ; - - --- (larger ?OBJ1 ?OBJ2) means that ?OBJ1 is --- larger, with respect to all LengthMeasures, than ?OBJ2. -fun larger : El Object -> El Object -> Formula ; - - --- (leader ?INSTITUTION ?PERSON) --- means that the leader of ?INSTITUTION is ?PERSON. -fun leader : El Agent -> El Human -> Formula ; - - --- (legalRelation ?AGENT1 ?AGENT2) means --- that ?AGENT1 and ?AGENT2 are relatives by virtue of a legal relationship. --- Some examples include marriage, adoption, etc. -fun legalRelation : El Human -> El Human -> Formula ; - - --- BinaryPredicate that is used to state the measure --- of an Object along its longest span. -fun length : El Object -> El PhysicalQuantity -> Formula ; - - --- (lessThan ?NUMBER1 ?NUMBER2) is true just --- in case the Quantity ?NUMBER1 is less than the Quantity ?NUMBER2. -fun lessThan : El Quantity -> El Quantity -> Formula ; - - --- (lessThanOrEqualTo ?NUMBER1 ?NUMBER2) --- is true just in case the Quantity ?NUMBER1 is less than or equal to --- the Quantity ?NUMBER2. -fun lessThanOrEqualTo : El Quantity -> El Quantity -> Formula ; - - --- (lineMeasure ?LINE ?MEASURE) means that the --- straight line ?LINE has the LengthMeasure of ?MEASURE. -fun lineMeasure : El OneDimensionalFigure -> El LengthMeasure -> Formula ; - - --- BinaryPredicate that is used to state the measure --- of an Object from one point to another point along its surface. Note --- that the difference between the predicates length and distance is that --- the length is used to state the LengthMeasure of one of the dimensions of --- a single object, while distance is used to state the LengthMeasure that --- separates two distinct objects. -fun linearExtent : El Object -> El LengthMeasure -> Formula ; - - --- a TernaryPredicate that specifies the --- GraphArc connecting two GraphNodes. -fun links : El GraphNode -> El GraphNode -> El GraphArc -> Formula ; - - --- (located ?PHYS ?OBJ) means that ?PHYS is partlyLocated --- at ?OBJ, and there is no part or subProcess of ?PHYS that is not located at --- ?OBJ. -fun located : El Physical -> El Object -> Formula ; - - --- (manner ?PROCESS ?MANNER) means that the --- Process ?PROCESS is qualified by the Attribute ?MANNER. The Attributes --- of Processes are usually denoted by adverbs and include things like the --- speed of the wind, the style of a dance, or the intensity of a sports --- competition. -fun manner : El Process -> El Attribute -> Formula ; - - --- (material ?SUBSTANCE ?OBJECT) means that --- ?OBJECT is structurally made up in part of ?SUBSTANCE. This relation --- encompasses the concepts of 'composed of', 'made of', and 'formed of'. --- For example, plastic is a material of my computer monitor. Compare --- part and its subrelations, viz component and piece. -fun material : Desc Substance -> El CorpuscularObject -> Formula ; - - --- A very general Predicate for --- asserting that a particular Object is measured by a particular --- PhysicalQuantity. In general, the second argument of this --- Predicate will be a term produced with the Function MeasureFn. -fun measure : El Object -> El PhysicalQuantity -> Formula ; - - --- (meetsSpatially ?OBJ1 ?OBJ2) means that --- ?OBJ1 and ?OBJ2 are connected but that neither ?OBJ1 nor ?OBJ2 --- overlapsSpatially the other. -fun meetsSpatially : El Object -> El Object -> Formula ; - - --- (meetsTemporally ?INTERVAL1 ?INTERVAL2) --- means that the terminal point of the TimeInterval ?INTERVAL1 is the --- initial point of the TimeInterval ?INTERVAL2. -fun meetsTemporally : El TimeInterval -> El TimeInterval -> Formula ; - - --- The temperature at which a PureSubstance changes --- state from a Solid to a Liquid. Note that Arsenic can sublimate directly --- from Solid to Gas which means that its melting and boiling points are equal. -fun meltingPoint : Desc PureSubstance -> El TemperatureMeasure -> Formula ; - - --- A specialized common sense notion of part for --- uniform parts of Collections. For example, each sheep in a flock of --- sheep would have the relationship of member to the flock. -fun member : El SelfConnectedObject -> El Collection -> Formula ; - - --- A BinaryRelation that is used to state the --- normative force of a Proposition. (modalAttribute ?FORMULA ?PROP) means --- that the Proposition expressed by ?FORMULA has the NormativeAttribute --- ?PROP. For example, (modalAttribute (exists (?ACT ?OBJ) (and --- (instance ?ACT Giving) (agent ?ACT John) (patient ?ACT ?OBJ) --- (destination ?ACT Tom))) Obligation) means that John is obligated to give --- Tom something. -fun modalAttribute : Formula -> El NormativeAttribute -> Formula ; - - --- A BinaryPredicate that associates an --- Object or Process with its value expressed as an instance of --- CurrencyMeasure. -fun monetaryValue : El Physical -> El CurrencyMeasure -> Formula ; - - --- The general relationship of motherhood. --- (mother ?CHILD ?MOTHER) means that ?MOTHER is the biological mother --- of ?CHILD. -fun mother : El Organism -> El Organism -> Formula ; - - --- (multiplicativeFactor ?NUMBER1 ?NUMBER2) --- means that ?NUMBER1 is a factor of ?NUMBER2, i.e. ?NUMBER1 can be multiplied by --- some Integer to give ?NUMBER2 as a result. -fun multiplicativeFactor : El Integer -> El Integer -> Formula ; - - --- (mutualAcquaintance ?H1 ?H2) means --- that ?H1 and ?H2 have met each other and know something about each other, --- such as name and appearance. Statements made with this predicate should --- be temporally specified with holdsDuring. See also the weaker, --- non_symmetric version of this predicate, acquaintance. -fun mutualAcquaintance : El Human -> El Human -> Formula ; - - --- (names ?STRING ?ENTITY) means that the thing ?ENTITY --- has the SymbolicString ?STRING as its name. Note that names and represents --- are the two immediate subrelations of refers. The predicate names is used --- when the referring item is merely a tag without connotative content, while the --- predicate represents is used for referring items that have such content. -fun names : El SymbolicString -> El Entity -> Formula ; - - --- (needs ?AGENT ?OBJECT) means that ?OBJECT is --- physically required for the continued existence of ?AGENT. -fun needs : El CognitiveAgent -> El Physical -> Formula ; - - --- (occupiesPosition ?PERSON ?POSITION ?ORG) --- means that ?PERSON holds the Position ?POSITION at Organization ?ORG. --- For example, (occupiesPosition TomSmith ResearchDirector --- AcmeLaboratory) means that TomSmith is a research director at Acme Labs. -fun occupiesPosition : El Human -> El Position -> El Organization -> Formula ; - - --- A general Predicate for indicating how two --- Objects are oriented with respect to one another. For example, --- (orientation ?OBJ1 ?OBJ2 North) means that ?OBJ1 is north of ?OBJ2, and --- (orientation ?OBJ1 ?OBJ2 Vertical) means that ?OBJ1 is positioned --- vertically with respect to ?OBJ2. -fun orientation : El Object -> El Object -> El PositionalAttribute -> Formula ; - - --- (origin ?PROCESS ?SOURCE) means that ?SOURCE --- indicates where the ?Process began. Note that this relation implies --- that ?SOURCE is present at the beginning of the process, but need not --- participate throughout the process. For example, the submarine is the --- origin in the following proposition: the missile was launched from a --- submarine. -fun origin : El Process -> El Object -> Formula ; - - --- (overlapsPartially ?OBJ1 ?OBJ2) means --- that ?OBJ1 and ?OBJ2 have part(s) in common, but neither ?OBJ1 nor ?OBJ2 --- is a part of the other. -fun overlapsPartially : El Object -> El Object -> Formula ; - - --- (overlapsSpatially ?OBJ1 ?OBJ2) means --- that the Objects ?OBJ1 and ?OBJ2 have some parts in common. This is a --- reflexive and symmetric (but not transitive) relation. -fun overlapsSpatially : El Object -> El Object -> Formula ; - - --- (overlapsTemporally ?INTERVAL1 --- ?INTERVAL2) means that the TimeIntervals ?INTERVAL1 and ?INTERVAL2 --- have a TimeInterval as a common part. -fun overlapsTemporally : El TimeInterval -> El TimeInterval -> Formula ; - - --- (parallel ?LINE1 ?LINE2) means that the --- OneDimensionalFigures ?LINE1 and ?LINE2 are parallel to one another, --- i.e. they are equidistant from one another at every point. -fun parallel : El OneDimensionalFigure -> El OneDimensionalFigure -> Formula ; - - --- The general relationship of parenthood. --- (parent ?CHILD ?PARENT) means that ?PARENT is a biological parent --- of ?CHILD. -fun parent : El Organism -> El Organism -> Formula ; - - --- The basic mereological relation. All other --- mereological relations are defined in terms of this one. --- (part ?PART ?WHOLE) simply means that the Object ?PART is part --- of the Object ?WHOLE. Note that, since part is a --- ReflexiveRelation, every Object is a part of itself. -fun part : El Object -> El Object -> Formula ; - - --- (partiallyFills ?OBJ ?HOLE) means that --- ?OBJ completelyFills some part of ?HOLE. Note that if (partiallyFills --- ?OBJ1 ?HOLE) and (part ?OBJ1 ?OBJ2), then (partiallyFills ?OBJ2 ?HOLE). --- Note too that a partial filler need not be wholly inside a hole (it may --- stick out), which means that every complete filler also qualifies as --- (is a limit case of) a partial one. -fun partiallyFills : El Physical -> El Object -> Formula ; - - --- A partition of a class C is a set of --- mutually disjoint classes (a subclass partition) which covers C. --- Every instance of C is an instance of exactly one of the subclasses --- in the partition. -fun partition : Class -> [Class] -> Formula ; - - --- (partlyLocated ?THING ?OBJ) means that the --- instance of Physical ?THING is at least partially located at ?OBJ. For --- example, Istanbul is partly located in Asia and partly located in Europe. --- Note that partlyLocated is the most basic localization relation: located --- is an immediate subrelation of partlyLocated and exactlyLocated is --- an immediate subrelation of located. -fun partlyLocated : El Physical -> El Object -> Formula ; - - --- (path ?MOTION ?PATH) means that ?PATH is a route --- along which ?MOTION occurs. For example, Highway 101 is the path in the --- following proposition: the car drove up Highway 101. -fun path : El Motion -> El Object -> Formula ; - - --- A BinaryPredicate that specifies the --- length (in number of GraphNodes) of a GraphPath. --- (pathLength ?PATH ?NUMBER) means that there are ?NUMBER nodes in --- the GraphPath ?PATH. -fun pathLength : El GraphPath -> El PositiveInteger -> Formula ; - - --- (patient ?PROCESS ?ENTITY) means that ?ENTITY --- is a participant in ?PROCESS that may be moved, said, experienced, etc. --- For example, the direct objects in the sentences 'The cat swallowed the --- canary' and 'Billy likes the beer' would be examples of patients. Note --- that the patient of a Process may or may not undergo structural --- change as a result of the Process. The CaseRole of patient is used --- when one wants to specify as broadly as possible the object of a --- Process. -fun patient : El Process -> El Entity -> Formula ; - - --- (penetrates ?OBJ1 ?OBJ2) means that --- ?OBJ1 is connected to ?OBJ2 along at least one whole dimension (length, --- width or depth). -fun penetrates : El Object -> El Object -> Formula ; - - --- A specialized common sense notion of part for --- arbitrary parts of Substances. Quasi_synonyms are: chunk, hunk, bit, --- etc. Compare component, another subrelation of part. -fun piece : El Substance -> El Substance -> Formula ; - - --- (pointOfFigure ?POINT ?FIGURE) means that --- the GeometricPoint ?POINT is part of the GeometricFigure ?FIGURE. -fun pointOfFigure : El GeometricFigure -> El GeometricFigure -> Formula ; - - --- (pointOfIntersection ?FIGURE1 ?FIGURE2 --- ?POINT) means that the two straight lines ?FIGURE1 and ?FIGURE2 meet at the --- point ?POINT. -fun pointOfIntersection : El OneDimensionalFigure -> El OneDimensionalFigure -> El GeometricPoint -> Formula ; - - --- Relation that holds between an Agent and --- an Object when the Agent has ownership of the Object. -fun possesses : El Agent -> El Object -> Formula ; - - --- A very general Predicate. (precondition --- ?PROC1 ?PROC2) means that an instance of ?PROC2 can exist only if an --- instance of ?PROC1 also exists. -fun precondition : Desc Process -> Desc Process -> Formula ; - - --- (prefers ?AGENT ?FORMULA1 ?FORMULA2) means that --- CognitiveAgent ?AGENT prefers the state of affairs expressed by ?FORMULA1 --- over the state of affairs expressed by ?FORMULA2 all things being equal. -fun prefers : El CognitiveAgent -> Formula -> Formula -> Formula ; - - --- (premise ?ARGUMENT ?PROPOSITION) means that the --- Proposition ?PROPOSITION is an explicit assumption of the Argument --- ?ARGUMENT. -fun premise : El Argument -> El Proposition -> Formula ; - - --- A very general Predicate. (prevents ?PROC1 --- ?PROC2) means that ?PROC1 prevents the occurrence of ?PROC2. In other --- words, if ?PROC1 is occurring in a particular time and place, ?PROC2 --- cannot occur at the same time and place. For example, innoculating --- prevents contracting disease. Note that this is a relation between types --- of Processes, not between instances. -fun prevents : Desc Process -> Desc Process -> Formula ; - - --- (properPart ?OBJ1 ?OBJ2) means that --- ?OBJ1 is a part of ?OBJ2 other than ?OBJ2 itself. This is a --- TransitiveRelation and AsymmetricRelation (hence an --- IrreflexiveRelation). -fun properPart : El Object -> El Object -> Formula ; - - --- (properlyFills ?OBJ ?HOLE) --- means that ?HOLE is properly (though perhaps incompletely) filled by --- ?OBJ, i.e. some part of ?HOLE is perfectly filled by ?OBJ. Note that --- properlyFills is the dual of completelyFills, and is so --- related to partiallyFills that ?OBJ properlyFills ?HOLE just in --- case ?OBJ partiallyFills every part of ?HOLE. (Thus, every perfect --- filler is both complete and proper in this sense). --- Every hole is connected with everything with which a proper filler --- of the hole is connected. Every proper part of a perfect filler of (a part of) a hole properly --- fills (that part of) that hole. -fun properlyFills : El Object -> El Hole -> Formula ; - - --- This Predicate holds between an instance of --- Entity and an instance of Attribute. (property ?ENTITY ?ATTR) --- means that ?ENTITY has the Attribute ?ATTR. -fun property : El Entity -> El Attribute -> Formula ; - - --- (publishes ?ORG ?TEXT) means that ?ORG --- publishes ?TEXT. For example, Bantam Books publishes Agatha Christie's --- Murder_on_the_Orient_Express. -fun publishes : El Organization -> Desc Text -> Formula ; - - --- (radius ?CIRCLE ?LENGTH) means that the radius of --- the Circle ?CIRCLE has a length of ?LENGTH. -fun radius : El Circle -> El LengthMeasure -> Formula ; - - --- A subrelation of represents. --- (realization ?PROCESS ?PROP) means that ?PROCESS is a Process which --- expresses the content of ?PROP. Examples include a particular musical --- performance, which realizes the content of a musical score, or the --- reading of a poem. -fun realization : El Process -> El Proposition -> Formula ; - - --- (refers ?OBJ1 ?OBJ2) means that ?OBJ1 --- mentions or includes a reference to ?OBJ2. Note that refers is --- more general in meaning than represents, because presumably something --- can represent something else only if it refers to this other thing. --- For example, an article whose topic is a recent change in the price of --- oil may refer to many other things, e.g. the general state of the economy, --- the weather in California, the prospect of global warming, the options --- for alternative energy sources, the stock prices of various oil companies, --- etc. -fun refers : El Entity -> El Entity -> Formula ; - - --- (relatedEvent ?EVENT1 ?EVENT2) means --- that the Process ?EVENT1 is related to the Process ?EVENT2. The --- relationship is between separate individual events, not events and --- their subprocesses. On the other hand, two subProcesses of the same --- overarching event may be relatedEvents. The argument order does not --- imply temporal ordering. -fun relatedEvent : El Process -> El Process -> Formula ; - - --- Used to signify a three_place --- relation between a concept in an external knowledge source, a concept --- in the SUMO, and the name of the other knowledge source. -fun relatedExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; - - --- Means that the two arguments are --- related concepts within the SUMO, i.e. there is a significant similarity --- of meaning between them. To indicate a meaning relation between a SUMO --- concept and a concept from another source, use the Predicate --- relatedExternalConcept. -fun relatedInternalConcept : El Entity -> El Entity -> Formula ; - - --- (relative ?O1 ?O2) means that ?O1 --- and ?O2 are relatives, whether through common ancestry (consanguinity), --- someone's marriage (affinity), or someone's adoption. This definition is --- intentionally broad, so as to capture a wide array of `familial' --- relations. The notion of who counts as `family' also varies between --- cultures, but that aspect of meaning is not addressed here. -fun relative : El Organism -> El Organism -> Formula ; - - --- A very general semiotics Predicate. --- (represents ?THING ?ENTITY) means that ?THING in some way indicates, --- expresses, connotes, pictures, describes, etc. ?ENTITY. The Predicates --- containsInformation and realization are subrelations of represents. --- Note that represents is a subrelation of refers, since something can --- represent something else only if it refers to this other thing. See the --- documentation string for names. -fun represents : El Entity -> El Entity -> Formula ; - - --- A very general predicate. --- (representsForAgent ?ENTITY1 ?ENTITY2 ?AGENT) means that the ?AGENT --- chooses to use ?ENTITY1 to 'stand for' ?ENTITY2. -fun representsForAgent : El Entity -> El Entity -> El Agent -> Formula ; - - --- A very general predicate. --- (representsInLanguage ?THING ?ENTITY ?LANGUAGE) means that the --- LinguisticExpression ?THING stands for ?ENTITY in the Language --- ?LANGUAGE. -fun representsInLanguage : El LinguisticExpression -> El Entity -> El Language -> Formula ; - - -fun resourceS : El Process -> El Entity -> Formula ; - --- (result ?ACTION ?OUTPUT) means that ?OUTPUT is --- a product of ?ACTION. For example, house is a result in the --- following proposition: Eric built a house. -fun result : El Process -> El Entity -> Formula ; - - --- The relationship between two Organisms that --- have the same mother and father. Note that this relationship does --- not hold between half_brothers, half_sisters, etc. -fun sibling : El Organism -> El Organism -> Formula ; - - --- (side ?SIDE ?OBJECT) means that ?SIDE is a side of the object, --- as opposed to the top or bottom. -fun side : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; - - --- The general relationship of being a sister. --- (sister ?WOMAN ?PERSON) means that ?WOMAN is the sister of ?PERSON. -fun sister : El Woman -> El Human -> Formula ; - - --- (smaller ?OBJ1 ?OBJ2) means that ?OBJ1 --- is smaller, with respect to all LengthMeasures, than ?OBJ2. -fun smaller : El Object -> El Object -> Formula ; - - --- The general relationship of being a son. --- (son ?CHILD ?PARENT) means that ?CHILD is the biological --- son of ?PARENT. -fun son : El Organism -> El Organism -> Formula ; - - --- The relationship of marriage between two Humans. -fun spouse : El Human -> El Human -> Formula ; - - --- (starts ?INTERVAL1 ?INTERVAL2) means that --- ?INTERVAL1 and ?INTERVAL2 are both TimeIntervals that have the same --- initial TimePoint and that ?INTERVAL1 ends before ?INTERVAL2. -fun starts : El TimeInterval -> El TimeInterval -> Formula ; - - --- The relation between a Human and a TemporaryResidence --- of the Human. -fun stays : El Human -> El TemporaryResidence -> Formula ; - - --- Means that the second argument can be --- ascribed to everything which has the first argument ascribed to it. -fun subAttribute : El Attribute -> El Attribute -> Formula ; - - --- (subCollection ?COLL1 ?COLL2) means that --- the Collection ?COLL1 is a proper part of the Collection ?COLL2. -fun subCollection : El Collection -> El Collection -> Formula ; - - --- The relation between two Graphs when one --- Graph is a part of the other. (subGraph ?GRAPH1 ?GRAPH2) means --- that ?GRAPH1 is a part of ?GRAPH2. -fun subGraph : El Graph -> El Graph -> Formula ; - - --- (subList ?LIST1 ?LIST2) means that ?LIST1 is a --- sublist of ?LIST2, i.e. every element of ?LIST1 is an element of ?LIST2 and --- the elements that are common to both Lists have the same order in both --- Lists. Elements that are common to both Lists and are consecutive in one --- list must also be consecutive in the other list. (Therefore _ the list of --- prime numbers smaller than 10 [1 2 3 5 7] is not a subList of the --- natural numbers smaller than 10 [1 2 3 4 5 6 7 8 9]). -fun subList : El List -> El List -> Formula ; - - --- (subOrganization ?ORG1 ?ORG2) means --- that ?ORG1 is an Organization which is a part of the Organization --- ?ORG2. Note that subOrganization is a ReflexiveRelation, so every --- Organization is a subOrganization of itself. -fun subOrganization : El Organization -> El Organization -> Formula ; - - --- (subPlan ?PLAN1 ?PLAN2) means that ?PLAN1 --- is a Plan which is a proper part of ?PLAN2. This relation is generally --- used to relate a supporting Plan to the overall Plan in a particular --- context. -fun subPlan : El Plan -> El Plan -> Formula ; - - --- (subProcess ?SUBPROC ?PROC) means that ?SUBPROC --- is a subprocess of ?PROC. A subprocess is here understood as a temporally --- distinguished part (proper or not) of a Process. -fun subProcess : El Process -> El Process -> Formula ; - - --- (subProposition ?PROP1 ?PROP2) means that --- ?PROP1 is a Proposition which is a proper part of the Proposition ?PROP2. --- In other words, subProposition is the analogue of properPart for chunks --- of abstract content. -fun subProposition : El Proposition -> El Proposition -> Formula ; - - --- (subSystem ?SUB ?SYSTEM) means that the --- PhysicalSystem ?SUB is a part of the PhysicalSystem ?SYSTEM. -fun subSystem : El PhysicalSystem -> El PhysicalSystem -> Formula ; - - --- (subclass ?CLASS1 ?CLASS2) means that ?CLASS1 is --- a subclass of ?CLASS2, i.e. every instance of ?CLASS1 is also an instance of --- ?CLASS2. A class may have multiple superclasses and subclasses. -fun subclass : El SetOrClass -> El SetOrClass -> Formula ; - - --- (subset ?SET1 ?SET2) is true just in case the --- elements of the Set ?SET1 are also elements of the Set ?SET2. -fun subset : El Set -> El Set -> Formula ; - - --- (subsumedExternalConcept --- ?STRING ?THING ?LANGUAGE) means that the SUMO concept ?THING is subsumed --- by the meaning of ?STRING in ?LANGUAGE, i.e. the concept ?THING is narrower --- in meaning than ?STRING. -fun subsumedExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; - - --- A BinaryPredicate that relates two --- subclasses of ContentBearingObject. (subsumesContentClass ?CLASS1 --- ?CLASS2) means that the content expressed by each instance of ?CLASS2 is --- also expressed by each instance of ?CLASS1. Examples include the --- relationship between a poem and one of its stanzas or between a book and --- one of its chapters. Note that this is a relation between subclasses of --- ContentBearingObject, rather than instances. If one wants to relate --- instances, the Predicate subsumesContentInstance can be used. Note --- that subsumesContentClass is needed in many cases. Consider, for --- example, the relation between the King James edition of the Bible and its --- Book of Genesis. This relation holds for every copy of this edition and --- not just for a single instance. -fun subsumesContentClass : Desc ContentBearingObject -> Desc ContentBearingObject -> Formula ; - - --- A BinaryPredicate relating two --- instances of ContentBearingObject. (subsumesContentInstance ?OBJ1 ?OBJ2) --- means that the content expressed by ?OBJ2 is part of the content expressed --- by ?OBJ1. An example is the relationship between a handwritten poem and --- one of its stanzas. Note that this is a relation between instances, --- rather than Classes. If one wants to assert a content relationship --- between Classes, e.g. between the version of an intellectual work and a --- part of that work, the relation subsumesContentClass should be used. -fun subsumesContentInstance : El ContentBearingObject -> El ContentBearingObject -> Formula ; - - --- (subsumingExternalConcept --- ?STRING ?THING ?LANGUAGE) means that the SUMO concept ?THING subsumes --- the meaning of ?STRING in ?LANGUAGE, i.e. the concept ?THING is broader --- in meaning than ?STRING. -fun subsumingExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; - - --- (successorAttribute ?ATTR1 ?ATTR2) --- means that ?ATTR2 is the Attribute that comes immediately after ?ATTR1 --- on the scale that they share. -fun successorAttribute : El Attribute -> El Attribute -> Formula ; - - --- The transitive closure of --- successorAttribute. (successorAttributeClosure ?ATTR1 ?ATTR2) means --- that there is a chain of successorAttribute assertions connecting --- ?ATTR1 and ?ATTR2. -fun successorAttributeClosure : El Attribute -> El Attribute -> Formula ; - - --- (superficialPart ?OBJ1 ?OBJ2) --- means that ?OBJ1 is a part of ?OBJ2 that has no interior parts of its own --- (or, intuitively, that only overlaps those parts of ?OBJ2 that are --- externally connected with the mereological complement of ?OBJ2). This too --- is a transitive relation closed under MereologicalSumFn and --- MereologicalProductFn. -fun superficialPart : El Object -> El Object -> Formula ; - - --- (surface ?OBJ1 ?OBJ2) means that ?OBJ1 --- is a maximally connected superficialPart of ?OBJ2. Note that some --- SelfConnectedObjects have more than one surface, e.g. a hollow --- object like a tennis ball has both an inner and an outer surface. -fun surface : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; - - --- (synonymousExternalConcept --- ?STRING ?THING ?LANGUAGE) means that the SUMO concept ?THING has the --- same meaning as ?STRING in ?LANGUAGE. -fun synonymousExternalConcept : El SymbolicString -> El Entity -> El Language -> Formula ; - - --- (systemPart ?PART ?SYSTEM) means that --- the Physical thing ?PART is a SystemElement in the PhysicalSystem --- ?SYSTEM. -fun systemPart : El Physical -> El PhysicalSystem -> Formula ; - - --- The temporal analogue of the spatial part --- predicate. (temporalPart ?POS1 ?POS2) means that TimePosition ?POS1 --- is part of TimePosition ?POS2. Note that since temporalPart is a --- ReflexiveRelation every TimePostion is a temporalPart of itself. -fun temporalPart : El TimePosition -> El TimePosition -> Formula ; - - --- (temporallyBetween ?POINT1 ?POINT2 --- ?POINT3) means that the TimePoint ?POINT2 is between the TimePoints --- ?POINT1 and ?POINT3, i.e. ?POINT1 is before ?POINT2 and ?POINT2 is before --- ?POINT3. -fun temporallyBetween : El TimePoint -> El TimePoint -> El TimePoint -> Formula ; - - --- (temporallyBetweenOrEqual ?POINT1 ?POINT2 --- ?POINT3) means that the TimePoint ?POINT1 is before or equal to the --- TimePoint ?POINT2 and ?POINT2 is before or equal to the TimePoint --- ?POINT3. -fun temporallyBetweenOrEqual : El TimePoint -> El TimePoint -> El TimePoint -> Formula ; - - --- This relation holds between an instance of --- Physical and an instance of TimePosition just in case the temporal --- lifespan of the former includes the latter. In other words, (time --- ?THING ?TIME) means that ?THING existed or occurred at ?TIME. Note --- that time does for instances of Physical what holdsDuring does --- for instances of Formula. The constants located and time are --- the basic spatial and temporal predicates, respectively. -fun time : El Physical -> El TimePosition -> Formula ; - - -fun toInt : Int -> Ind Integer ; - -fun toRealNum : Float -> Ind RealNumber ; - --- (top ?TOP ?OBJECT) means that ?TOP is the highest maximal --- superficial part of ?OBJECT. -fun top : El SelfConnectedObject -> El SelfConnectedObject -> Formula ; - - --- (transactionAmount ?TRANSACTION --- ?AMOUNT) means that ?AMOUNT is an instance of CurrencyMeasure being --- exhanged in the FinancialTransaction ?TRANSACTION. -fun transactionAmount : El FinancialTransaction -> El CurrencyMeasure -> Formula ; - - --- (traverses ?OBJ1 ?OBJ2) means that ?OBJ1 --- crosses or extends across ?OBJ2. Note that crosses and --- penetrates are subrelations of traverses. -fun traverses : El Object -> El Object -> Formula ; - - --- The BinaryPredicate that relates a Sentence --- to its TruthValue. -fun truth : El Sentence -> El TruthValue -> Formula ; - - --- The class of names that uniquely identify --- an instance of Entity. Some examples of uniqueIdentifiers are the keys --- of tables in database applications and the ISBN (International Standard Book --- Number). -fun uniqueIdentifier : El SymbolicString -> El Entity -> Formula ; - - --- (uses ?OBJECT AGENT) means that ?OBJECT is used by --- ?AGENT as an instrument in an unspecified Process. This Predicate, --- as its corresponding axiom indicates, is a composition of the CaseRoles --- agent and instrument. -fun uses : El Object -> El Agent -> Formula ; - - --- Some Artifacts have a life cycle with discrete --- stages or versions. (version ARTIFACT1 ARTIFACT2) means that ARTIFACT1 --- is a version of ARTIFACT2. Note that this Predicate relates subclasses of --- Artifact and not instances. -fun version : Desc Artifact -> Desc Artifact -> Formula ; - - --- (wants ?AGENT ?OBJECT) means that ?OBJECT is desired by ?AGENT, --- i.e. ?AGENT believes that ?OBJECT will satisfy one of its goals. Note that there is --- no implication that what is wanted by an agent is not already possessed by the agent. -fun wants : El CognitiveAgent -> El Physical -> Formula ; - - --- (wears ?AGENT ?CLOTHING) means that ?AGENT is wearing --- the item of Clothing ?CLOTHING. -fun wears : El Animal -> El Clothing -> Formula ; - - --- (weight ?O ?MM) means that on planet earth --- the SelfConnectedObject ?O has the weight ?MM. -fun weight : El SelfConnectedObject -> El MassMeasure -> Formula ; - - --- BinaryPredicate that is used to state the measure --- of an Object from side to side at its widest span. -fun width : El Object -> El PhysicalQuantity -> Formula ; - - --- (wife ?WOMAN ?MAN) means that ?WOMAN is the wife of --- ?MAN. -fun wife : El Woman -> El Man -> Formula ; } diff --git a/examples/SUMO/MergeEng.gf b/examples/SUMO/MergeEng.gf index 520ca3eaa..4cceec4c3 100644 --- a/examples/SUMO/MergeEng.gf +++ b/examples/SUMO/MergeEng.gf @@ -1,990 +1,1004 @@ concrete MergeEng of Merge = BasicEng ** open DictLangEng, DictEng, ParadigmsEng, ResEng, ParamBasic in { - + lin --- single instances -AngularDegree = MassNP (AdjCN (PositA angular_A) (UseN degree_N)) ; -AtomGram = MassNP (ApposCN (UseN atom_N) (MassNP (UseN gram_N))) ; -Bit = MassNP (UseN bit_N) ; -Black = MassNP (UseN black_N) ; -Blue = MassNP (UseN blue_N) ; -BritishThermalUnit = MassNP (AdjCN (PositA british_A) (AdjCN (PositA thermal_A) (UseN unit_N))) ; -Calorie = MassNP (UseN calorie_N) ; -Ampere = MassNP (UseN ampere_N) ; -Joule = MassNP (UseN joule_N) ; -Watt = MassNP (UseN watt_N) ; -Volt = MassNP (UseN volt_N) ; -Ohm = MassNP (UseN ohm_N) ; -Gray = MassNP (UseN gray_N) ; -ElectronVolt = MassNP (ApposCN (UseN electron_N) (MassNP (UseN volt_N))) ; -Gram = MassNP (UseN gram_N) ; -Hertz = DetCN (DetQuant IndefArt NumSg) (UseN hertz_N) ; -Kilogram = MassNP (UseN kilogram_N) ; -Meter = MassNP (UseN meter_N) ; -Mole = MassNP (UseN mole_N) ; -SecondDuration = MassNP (AdjCN (AdjOrd (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2))))))) (UseN duration_N)) ; -Left = MassNP (UseN left_N) ; -Right = MassNP (UseN right_N) ; -CentralTimeZone = MassNP (AdjCN (PositA central_A) (ApposCN (UseN time_N) (MassNP (UseN zone_N)))) ; -Cup = MassNP (UseN cup_N) ; -Damp = MassNP (UseN damp_N) ; -DayDuration = MassNP (ApposCN (UseN day_N) (MassNP (UseN duration_N))) ; -East = MassNP (UseN east_N) ; -EasternTimeZone = MassNP (AdjCN (PositA eastern_A) (ApposCN (UseN time_N) (MassNP (UseN zone_N)))) ; -ElectronVolt = MassNP (ApposCN (UseN electron_N) (MassNP (UseN volt_N))) ; -Female = MassNP (UseN female_N) ; -Fluid = MassNP (UseN fluid_N) ; -FootLength = MassNP (ApposCN (UseN foot_N) (MassNP (UseN length_N))) ; -Gas = MassNP (UseN gas_N) ; -Horsepower = DetCN (DetQuant IndefArt NumSg) (UseN horsepower_N) ; -HourDuration = MassNP (ApposCN (UseN hour_N) (MassNP (UseN duration_N))) ; -Inch = MassNP (UseN inch_N) ; -InchMercury = MassNP (ApposCN (UseN inch_N) (MassNP (UseN mercury_N))) ; -Liquid = MassNP (UseN liquid_N) ; -Living = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 live_V2)) ; -Male = MassNP (UseN male_N) ; -Mile = MassNP (UseN mile_N) ; -MinuteDuration = MassNP (AdjCN (PositA minute_A) (UseN duration_N)) ; -MmMercury = DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN mm_N) (MassNP (UseN mercury_N))) ; -MonthDuration = MassNP (ApposCN (UseN month_N) (MassNP (UseN duration_N))) ; -MountainTimeZone = MassNP (ApposCN (ApposCN (UseN mountain_N) (MassNP (UseN time_N))) (MassNP (UseN zone_N))) ; -Necessity = MassNP (UseN necessity_N) ; -NegativeInfinity = MassNP (AdjCN (PositA negative_A) (UseN infinity_N)) ; -North = MassNP (UseN north_N) ; -NullList = MassNP (AdjCN (PositA null_A) (UseN list_N)) ; -Obligation = MassNP (UseN obligation_N) ; -Ounce = MassNP (UseN ounce_N) ; -PacificTimeZone = MassNP (AdjCN (PositA pacific_A) (ApposCN (UseN time_N) (MassNP (UseN zone_N)))) ; -Permission = MassNP (UseN permission_N) ; -Pi = MassNP (UseN pi_N) ; -Pint = MassNP (UseN pint_N) ; -Plasma = MassNP (UseN plasma_N) ; -PositiveInfinity = MassNP (AdjCN (PositA positive_A) (UseN infinity_N)) ; -Possibility = MassNP (UseN possibility_N) ; -PoundForce = MassNP (ApposCN (UseN pound_N) (MassNP (UseN force_N))) ; -PoundMass = MassNP (ApposCN (UseN pound_N) (MassNP (UseN mass_N))) ; -Prohibition = MassNP (UseN prohibition_N) ; -Quart = MassNP (UseN quart_N) ; -Red = MassNP (UseN red_N) ; -Rough = MassNP (UseN rough_N) ; -Sitting = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 sit_V2)) ; -Slug = MassNP (UseN slug_N) ; -Smooth = MassNP (UseN smooth_N) ; -Solid = MassNP (UseN solid_N) ; -South = MassNP (UseN south_N) ; -Standing = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 stand_V2)) ; -True = MassNP (UseN true_N) ; -Unconscious = MassNP (UseN unconscious_N) ; -UnitedKingdomGallon = MassNP (AdjCN (PositA united_A) (ApposCN (UseN kingdom_N) (MassNP (UseN gallon_N)))) ; -UnitedStatesCent = DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN cent_N)))) ; -UnitedStatesDollar = DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN dollar_N)))) ; -UnitedStatesGallon = DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN gallon_N)))) ; -Vertical = MassNP (UseN vertical_N) ; -WeekDuration = MassNP (ApposCN (UseN week_N) (MassNP (UseN duration_N))) ; -West = MassNP (UseN west_N) ; -Wet = MassNP (UseN wet_N) ; -White = MassNP (UseN white_N) ; -YearDuration = MassNP (ApposCN (UseN year_N) (MassNP (UseN duration_N))) ; -Yellow = MassNP (UseN yellow_N) ; -Law = MassNP (UseN law_N) ; -Promise = MassNP (UseN promise_N) ; -PurchaseContract = MassNP (ApposCN (UseN purchase_N) (MassNP (UseN contract_N))) ; -Warranty = MassNP (UseN warranty_N) ; -NakedPromise = MassNP (AdjCN (PositA naked_A) (UseN promise_N)) ; + -- single instances + AngularDegree = MassNP (AdjCN (PositA angular_A) (UseN degree_N)) ; + AtomGram = MassNP (ApposCN (UseN atom_N) (MassNP (UseN gram_N))) ; + Bit = MassNP (UseN bit_N) ; + Black = MassNP (UseN black_N) ; + Blue = MassNP (UseN blue_N) ; + BritishThermalUnit = MassNP (AdjCN (PositA british_A) (AdjCN (PositA thermal_A) (UseN unit_N))) ; + Calorie = MassNP (UseN calorie_N) ; + Ampere = MassNP (UseN ampere_N) ; + Joule = MassNP (UseN joule_N) ; + Watt = MassNP (UseN watt_N) ; + Volt = MassNP (UseN volt_N) ; + Ohm = MassNP (UseN ohm_N) ; + Gray = MassNP (UseN gray_N) ; + ElectronVolt = MassNP (ApposCN (UseN electron_N) (MassNP (UseN volt_N))) ; + Gram = MassNP (UseN gram_N) ; + Hertz = DetCN (DetQuant IndefArt NumSg) (UseN hertz_N) ; + Kilogram = MassNP (UseN kilogram_N) ; + Meter = MassNP (UseN meter_N) ; + Mole = MassNP (UseN mole_N) ; + SecondDuration = MassNP (AdjCN (AdjOrd (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2))))))) (UseN duration_N)) ; + Left = MassNP (UseN left_N) ; + Right = MassNP (UseN right_N) ; + CentralTimeZone = MassNP (AdjCN (PositA central_A) (ApposCN (UseN time_N) (MassNP (UseN zone_N)))) ; + Cup = MassNP (UseN cup_N) ; + Damp = MassNP (UseN damp_N) ; + DayDuration = MassNP (ApposCN (UseN day_N) (MassNP (UseN duration_N))) ; + East = MassNP (UseN east_N) ; + EasternTimeZone = MassNP (AdjCN (PositA eastern_A) (ApposCN (UseN time_N) (MassNP (UseN zone_N)))) ; + ElectronVolt = MassNP (ApposCN (UseN electron_N) (MassNP (UseN volt_N))) ; + Female = MassNP (UseN female_N) ; + Fluid = MassNP (UseN fluid_N) ; + FootLength = MassNP (ApposCN (UseN foot_N) (MassNP (UseN length_N))) ; + Gas = MassNP (UseN gas_N) ; + Horsepower = DetCN (DetQuant IndefArt NumSg) (UseN horsepower_N) ; + HourDuration = MassNP (ApposCN (UseN hour_N) (MassNP (UseN duration_N))) ; + Inch = MassNP (UseN inch_N) ; + InchMercury = MassNP (ApposCN (UseN inch_N) (MassNP (UseN mercury_N))) ; + Liquid = MassNP (UseN liquid_N) ; + Living = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 live_V2)) ; + Male = MassNP (UseN male_N) ; + Mile = MassNP (UseN mile_N) ; + MinuteDuration = MassNP (AdjCN (PositA minute_A) (UseN duration_N)) ; + MmMercury = DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN mm_N) (MassNP (UseN mercury_N))) ; + MonthDuration = MassNP (ApposCN (UseN month_N) (MassNP (UseN duration_N))) ; + MountainTimeZone = MassNP (ApposCN (ApposCN (UseN mountain_N) (MassNP (UseN time_N))) (MassNP (UseN zone_N))) ; + Necessity = MassNP (UseN necessity_N) ; + NegativeInfinity = MassNP (AdjCN (PositA negative_A) (UseN infinity_N)) ; + North = MassNP (UseN north_N) ; + NullList = MassNP (AdjCN (PositA null_A) (UseN list_N)) ; + Obligation = MassNP (UseN obligation_N) ; + Ounce = MassNP (UseN ounce_N) ; + PacificTimeZone = MassNP (AdjCN (PositA pacific_A) (ApposCN (UseN time_N) (MassNP (UseN zone_N)))) ; + Permission = MassNP (UseN permission_N) ; + Pi = MassNP (UseN pi_N) ; + Pint = MassNP (UseN pint_N) ; + Plasma = MassNP (UseN plasma_N) ; + PositiveInfinity = MassNP (AdjCN (PositA positive_A) (UseN infinity_N)) ; + Possibility = MassNP (UseN possibility_N) ; + PoundForce = MassNP (ApposCN (UseN pound_N) (MassNP (UseN force_N))) ; + PoundMass = MassNP (ApposCN (UseN pound_N) (MassNP (UseN mass_N))) ; + Prohibition = MassNP (UseN prohibition_N) ; + Quart = MassNP (UseN quart_N) ; + Red = MassNP (UseN red_N) ; + Rough = MassNP (UseN rough_N) ; + Sitting = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 sit_V2)) ; + Slug = MassNP (UseN slug_N) ; + Smooth = MassNP (UseN smooth_N) ; + Solid = MassNP (UseN solid_N) ; + South = MassNP (UseN south_N) ; + Standing = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 stand_V2)) ; + True = MassNP (UseN true_N) ; + Unconscious = MassNP (UseN unconscious_N) ; + UnitedKingdomGallon = MassNP (AdjCN (PositA united_A) (ApposCN (UseN kingdom_N) (MassNP (UseN gallon_N)))) ; + UnitedStatesCent = DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN cent_N)))) ; + UnitedStatesDollar = DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN dollar_N)))) ; + UnitedStatesGallon = DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN gallon_N)))) ; + Vertical = MassNP (UseN vertical_N) ; + WeekDuration = MassNP (ApposCN (UseN week_N) (MassNP (UseN duration_N))) ; + West = MassNP (UseN west_N) ; + Wet = MassNP (UseN wet_N) ; + White = MassNP (UseN white_N) ; + YearDuration = MassNP (ApposCN (UseN year_N) (MassNP (UseN duration_N))) ; + Yellow = MassNP (UseN yellow_N) ; + Law = MassNP (UseN law_N) ; + Promise = MassNP (UseN promise_N) ; + PurchaseContract = MassNP (ApposCN (UseN purchase_N) (MassNP (UseN contract_N))) ; + Warranty = MassNP (UseN warranty_N) ; + NakedPromise = MassNP (AdjCN (PositA naked_A) (UseN promise_N)) ; + + + + -- subclass declarations : + AbnormalAnatomicalStructure = AdjCN (PositA abnormal_A) (AdjCN (PositA anatomical_A) (UseN structure_N)) ; + Abstract = UseN abstract_N ; + Adjective = UseN adjective_N ; + Adverb = UseN adverb_N ; + Advertising = UseN2 (VerbToNounV2 advertise_V2) ; + AgeGroup = ApposCN (UseN age_N) (MassNP (UseN group_N)) ; + Agent = UseN agent_N ; + Air = UseN air_N ; + Alga = UseN alga_N ; + Amphibian = UseN amphibian_N ; + AnatomicalStructure = AdjCN (PositA anatomical_A) (UseN structure_N) ; + AngleMeasure = ApposCN (UseN angle_N) (MassNP (UseN measure_N)) ; + Animal = UseN animal_N ; + AnimalAnatomicalStructure = ApposCN (UseN animal_N) (MassNP (AdjCN (PositA anatomical_A) (UseN structure_N))) ; + AnimalLanguage = ApposCN (UseN animal_N) (MassNP (UseN language_N)) ; + AnimalSubstance = ApposCN (UseN animal_N) (MassNP (UseN substance_N)) ; + Ape = UseN ape_N ; + April = UseN april_N ; + AquaticMammal = AdjCN (PositA aquatic_A) (UseN mammal_N) ; + Arachnid = UseN arachnid_N ; + AreaMeasure = ApposCN (UseN area_N) (MassNP (UseN measure_N)) ; + Argument = UseN argument_N ; + ArtWork = ApposCN (UseN art_N) (MassNP (UseN work_N)) ; + Article = UseN article_N ; + Artifact = UseN artifact_N ; + ArtificialLanguage = AdjCN (PositA artificial_A) (UseN language_N) ; + AsexualReproduction = AdjCN (PositA asexual_A) (UseN reproduction_N) ; + AstronomicalBody = AdjCN (PositA astronomical_A) (UseN body_N) ; + Atom = UseN atom_N ; + AtomicNucleus = AdjCN (PositA atomic_A) (UseN nucleus_N) ; + Attaching = UseN2 (VerbToNounV2 attach_V2) ; + AttachingDevice = ApposCN (UseN2 (VerbToNounV2 attach_V2)) (MassNP (UseN device_N)) ; + Attack = UseN attack_N ; + Attribute = UseN attribute_N ; + August = UseN august_N ; + Bacterium = UseN bacterium_N ; + Battle = UseN battle_N ; + BeliefGroup = ApposCN (UseN belief_N) (MassNP (UseN group_N)) ; + Betting = UseN2 (VerbToNounV2 bet_V2) ; + Beverage = UseN beverage_N ; + BinaryNumber = AdjCN (PositA binary_A) (UseN number_N) ; + BiologicalAttribute = AdjCN (PositA biological_A) (UseN attribute_N) ; + BiologicalProcess = AdjCN (PositA biological_A) (UseN process_N) ; + Bird = UseN bird_N ; + Birth = UseN birth_N ; + Blood = UseN blood_N ; + BodyCavity = ApposCN (UseN body_N) (MassNP (UseN cavity_N)) ; + BodyCovering = ApposCN (UseN body_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 cover_V2))) ; + BodyJunction = ApposCN (UseN body_N) (MassNP (UseN junction_N)) ; + BodyMotion = ApposCN (UseN body_N) (MassNP (UseN motion_N)) ; + BodyPart = AdvCN (UseN body_N) part_Adv ; + BodyPosition = ApposCN (UseN body_N) (MassNP (UseN position_N)) ; + BodySubstance = ApposCN (UseN body_N) (MassNP (UseN substance_N)) ; + BodyVessel = ApposCN (UseN body_N) (MassNP (UseN vessel_N)) ; + Boiling = UseN2 (VerbToNounV2 boil_V2) ; + Bone = UseN bone_N ; + Book = UseN book_N ; + Borrowing = UseN2 (VerbToNounV2 borrow_V2) ; + Breathing = UseN breathing_N ; + Building = UseN building_N ; + Buying = UseN2 (VerbToNounV2 buy_V2) ; + Calculating = UseN2 (VerbToNounV2 calculate_V2) ; + Carbohydrate = UseN carbohydrate_N ; + Carnivore = UseN carnivore_N ; + Carrying = UseN2 (VerbToNounV2 carry_V2) ; + Cell = UseN cell_N ; + Certificate = UseN certificate_N ; + ChangeOfPossession = AdvCN (UseN change_N) (PrepNP part_Prep (MassNP (UseN possession_N))) ; + Character = UseN character_N ; + ChemicalDecomposition = AdjCN (PositA chemical_A) (UseN decomposition_N) ; + ChemicalProcess = AdjCN (PositA chemical_A) (UseN process_N) ; + ChemicalSynthesis = AdjCN (PositA chemical_A) (UseN synthesis_N) ; + Circle = UseN circle_N ; + City = UseN city_N ; + Classifying = UseN2 (VerbToNounV2 classify_V2) ; + ClosedTwoDimensionalFigure = AdjCN (PositA (VerbToParticipeA close_V)) (AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N)) ; + Clothing = UseN clothing_N ; + Cloud = UseN cloud_N ; + Collection = UseN collection_N ; + Combining = UseN2 (VerbToNounV2 combine_V2) ; + Combustion = UseN combustion_N ; + CommercialAgent = AdjCN (PositA commercial_A) (UseN agent_N) ; + CommercialService = AdjCN (PositA commercial_A) (UseN service_N) ; + Committing = UseN2 (VerbToNounV2 commit_V2) ; + Communication = UseN communication_N ; + Comparing = UseN2 (VerbToNounV2 compare_V2) ; + ComplexNumber = AdjCN (PositA complex_A) (UseN number_N) ; + CompositeUnitOfMeasure = AdjCN (PositA composite_A) (AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN measure_N)))) ; + CompoundSubstance = AdjCN (PositA compound_A) (UseN substance_N) ; + ComputerLanguage = ApposCN (UseN computer_N) (MassNP (UseN language_N)) ; + ComputerProgram = ApposCN (UseN computer_N) (MassNP (UseN program_N)) ; + ComputerProgramming = ApposCN (UseN computer_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 program_V2))) ; + Condensing = UseN2 (VerbToNounV2 condense_V2) ; + Confining = UseN2 (VerbToNounV2 confine_V2) ; + ConsciousnessAttribute = ApposCN (UseN consciousness_N) (MassNP (UseN attribute_N)) ; + ConstantQuantity = AdjCN (PositA constant_A) (UseN quantity_N) ; + Constructing = UseN2 (VerbToNounV2 construct_V2) ; + ContentBearingObject = AdjCN (PositA content_A) (AdjCN (PositA (VerbToGerundA bear_V2)) (UseN object_N)) ; + ContentBearingProcess = AdjCN (PositA content_A) (AdjCN (PositA (VerbToGerundA bear_V)) (UseN process_N)) ; + ContentDevelopment = AdjCN (PositA content_A) (UseN development_N) ; + Contest = UseN contest_N ; + ContestAttribute = ApposCN (UseN contest_N) (MassNP (UseN attribute_N)) ; + Continent = UseN continent_N ; + Cooking = UseN cooking_N ; + Cooling = UseN2 (VerbToNounV2 cool_V2) ; + Cooperation = UseN cooperation_N ; + Corporation = UseN corporation_N ; + Counting = UseN2 (VerbToNounV2 count_V2) ; + County = UseN county_N ; + Covering = UseN covering_N ; + Creation = UseN creation_N ; + Crustacean = UseN crustacean_N ; + Currency = UseN currency_N ; + CurrencyMeasure = ApposCN (UseN currency_N) (MassNP (UseN measure_N)) ; + Cutting = UseN cutting_N ; + Damaging = UseN2 (VerbToNounV2 damage_V2) ; + Dancing = UseN dancing_N ; + Day = UseN day_N ; + Death = UseN death_N ; + December = UseN december_N ; + Deciding = UseN2 (VerbToNounV2 decide_V2) ; + Declaring = UseN2 (VerbToNounV2 declare_V2) ; + Decoding = UseN2 (VerbToNounV2 decode_V2) ; + Decreasing = UseN2 (VerbToNounV2 decrease_V2) ; + DeductiveArgument = AdjCN (PositA deductive_A) (UseN argument_N) ; + Demonstrating = UseN2 (VerbToNounV2 demonstrate_V2) ; + Designing = UseN designing_N ; + Destruction = UseN destruction_N ; + Detaching = UseN2 (VerbToNounV2 detach_V2) ; + Device = UseN device_N ; + DiagnosticProcess = AdjCN (PositA diagnostic_A) (UseN process_N) ; + Digesting = UseN2 (VerbToNounV2 digest_V2) ; + DirectedGraph = AdjCN (PositA (VerbToParticipeA direct_V)) (UseN graph_N) ; + Directing = UseN2 (VerbToNounV2 direct_V2) ; + DirectionChange = ApposCN (UseN direction_N) (MassNP (UseN change_N)) ; + DirectionalAttribute = AdjCN (PositA directional_A) (UseN attribute_N) ; + Discovering = UseN2 (VerbToNounV2 discover_V2) ; + DiseaseOrSyndrome = ConjCN or_Conj (BaseCN (UseN disease_N) (UseN syndrome_N)) ; + Disseminating = UseN2 (VerbToNounV2 disseminate_V2) ; + Drinking = UseN drinking_N ; + Driving = UseN2 (VerbToNounV2 drive_V2) ; + Drying = UseN2 (VerbToNounV2 dry_V2) ; + DualObjectProcess = AdjCN (PositA dual_A) (ApposCN (UseN object_N) (MassNP (UseN process_N))) ; + Eating = UseN2 (VerbToNounV2 eat_V2) ; + EducationalOrganization = AdjCN (PositA educational_A) (UseN organization_N) ; + EducationalProcess = AdjCN (PositA educational_A) (UseN process_N) ; + Egg = UseN egg_N ; + Election = UseN election_N ; + Electron = UseN electron_N ; + ElementalSubstance = AdjCN (PositA elemental_A) (UseN substance_N) ; + EmotionalState = AdjCN (PositA emotional_A) (UseN state_N) ; + Encoding = UseN2 (VerbToNounV2 encode_V2) ; + EngineeringComponent = AdjCN (PositA (VerbToGerundA engineer_V)) (UseN component_N) ; + EngineeringConnection = AdjCN (PositA (VerbToGerundA engineer_V)) (UseN connection_N) ; + Entity = UseN entity_N ; + Enzyme = UseN enzyme_N ; + EthnicGroup = AdjCN (PositA ethnic_A) (UseN group_N) ; + Evaporating = UseN2 (VerbToNounV2 evaporate_V2) ; + EvenInteger = AdjCN (PositA even_A) (UseN integer_N) ; + Experimenting = UseN (VerbToNoun experiment_V) ; + Explanation = UseN explanation_N ; + Expressing = UseN2 (VerbToNounV2 express_V2) ; + Fabric = UseN fabric_N ; + FactualText = AdjCN (PositA factual_A) (UseN text_N) ; + Falling = UseN2 (VerbToNounV2 befall_V2) ; + FamilyGroup = ApposCN (UseN family_N) (MassNP (UseN group_N)) ; + FatTissue = AdjCN (PositA fat_A) (UseN tissue_N) ; + February = UseN february_N ; + Fern = UseN fern_N ; + FictionalText = AdjCN (PositA fictional_A) (UseN text_N) ; + FieldOfStudy = AdvCN (UseN field_N) (PrepNP part_Prep (MassNP (UseN study_N))) ; + FinancialInstrument = AdjCN (PositA financial_A) (UseN instrument_N) ; + FinancialTransaction = AdjCN (PositA financial_A) (UseN transaction_N) ; + FiniteSet = AdjCN (PositA finite_A) (UseN set_N) ; + Fish = UseN fish_N ; + FlowRegion = ApposCN (UseN flow_N) (MassNP (UseN region_N)) ; + FloweringPlant = AdjCN (PositA (VerbToGerundA flower_V)) (UseN plant_N) ; + Food = UseN food_N ; + Freezing = UseN2 (VerbToNounV2 deep_freeze_V2) ; + FrequencyMeasure = ApposCN (UseN frequency_N) (MassNP (UseN measure_N)) ; + FreshWaterArea = AdjCN (PositA fresh_A) (ApposCN (UseN water_N) (MassNP (UseN area_N))) ; + Friday = UseN friday_N ; + FruitOrVegetable = ConjCN or_Conj (BaseCN (UseN fruit_N) (UseN vegetable_N)) ; + FunctionQuantity = ApposCN (UseN function_N) (MassNP (UseN quantity_N)) ; + Funding = UseN2 (VerbToNounV2 fund_V2) ; + Fungus = UseN fungus_N ; + Game = UseN game_N ; + GasMixture = ApposCN (UseN gas_N) (MassNP (UseN mixture_N)) ; + GasMotion = ApposCN (UseN gas_N) (MassNP (UseN motion_N)) ; + GeologicalProcess = AdjCN (PositA geological_A) (UseN process_N) ; + GeometricFigure = AdjCN (PositA geometric_A) (UseN figure_N) ; + GeometricPoint = AdjCN (PositA geometric_A) (UseN point_N) ; + Gesture = UseN gesture_N ; + Getting = UseN2 (VerbToNounV2 beget_V2) ; + Giving = UseN2 (VerbToNounV2 give_V2) ; + GivingBack = AdjCN (PositA (VerbToGerundA give_V)) (UseN back_N) ; + Gland = UseN gland_N ; + Government = UseN government_N ; + GovernmentOrganization = ApposCN (UseN government_N) (MassNP (UseN organization_N)) ; + Grabbing = UseN2 (VerbToNounV2 grab_V2) ; + Graduation = UseN graduation_N ; + Graph = UseN graph_N ; + GraphArc = ApposCN (UseN graph_N) (MassNP (UseN arc_N)) ; + GraphCircuit = ApposCN (UseN graph_N) (MassNP (UseN circuit_N)) ; + GraphElement = ApposCN (UseN graph_N) (MassNP (UseN element_N)) ; + GraphLoop = ApposCN (UseN graph_N) (MassNP (UseN loop_N)) ; + GraphNode = ApposCN (UseN graph_N) (MassNP (UseN node_N)) ; + GraphPath = ApposCN (UseN graph_N) (MassNP (UseN path_N)) ; + Group = UseN group_N ; + GroupOfPeople = AdvCN (UseN group_N) (PrepNP part_Prep (MassNP (UseN people_N))) ; + Growth = UseN growth_N ; + Guiding = UseN2 (VerbToNounV2 guide_V2) ; + Hearing = UseN hearing_N ; + Heating = UseN heating_N ; + Hiring = UseN2 (VerbToNounV2 hire_V2) ; + Hole = UseN hole_N ; + Hormone = UseN hormone_N ; + Hour = UseN hour_N ; + House = UseN house_N ; + Human = UseN human_N ; + HumanLanguage = AdjCN (PositA human_A) (UseN language_N) ; + Hunting = UseN hunting_N ; + Icon = UseN icon_N ; + ImaginaryNumber = AdjCN (PositA imaginary_A) (UseN number_N) ; + Impacting = UseN2 (VerbToNounV2 impact_V2) ; + Impelling = UseN2 (VerbToNounV2 impel_V2) ; + Increasing = UseN2 (VerbToNounV2 increase_V2) ; + InductiveArgument = AdjCN (PositA inductive_A) (UseN argument_N) ; + InformationMeasure = ApposCN (UseN information_N) (MassNP (UseN measure_N)) ; + Ingesting = UseN2 (VerbToNounV2 ingest_V2) ; + Injecting = UseN2 (VerbToNounV2 inject_V2) ; + Injuring = UseN2 (VerbToNounV2 injure_V2) ; + Insect = UseN insect_N ; + Inserting = UseN2 (VerbToNounV2 insert_V2) ; + Integer = UseN integer_N ; + IntentionalProcess = AdjCN (PositA intentional_A) (UseN process_N) ; + IntentionalPsychologicalProcess = AdjCN (PositA intentional_A) (AdjCN (PositA psychological_A) (UseN process_N)) ; + InternalAttribute = AdjCN (PositA internal_A) (UseN attribute_N) ; + InternalChange = AdjCN (PositA internal_A) (UseN change_N) ; + Interpreting = UseN2 (VerbToNounV2 interpret_V2) ; + InvalidDeductiveArgument = AdjCN (PositA invalid_A) (AdjCN (PositA deductive_A) (UseN argument_N)) ; + Invertebrate = UseN invertebrate_N ; + Investigating = UseN2 (VerbToNounV2 investigate_V2) ; + IrrationalNumber = AdjCN (PositA irrational_A) (UseN number_N) ; + Island = UseN island_N ; + January = UseN january_N ; + JoiningAnOrganization = ApposCN (UseN2 (VerbToNounV2 join_V2)) (DetCN (DetQuant IndefArt NumSg) (UseN organization_N)) ; + Judging = UseN2 (VerbToNounV2 judge_V2) ; + JudicialOrganization = AdjCN (PositA judicial_A) (UseN organization_N) ; + JudicialProcess = AdjCN (PositA judicial_A) (UseN process_N) ; + July = UseN july_N ; + June = UseN june_N ; + Keeping = UseN keeping_N ; + Killing = UseN killing_N ; + LandArea = ApposCN (UseN land_N) (MassNP (UseN area_N)) ; + Language = UseN language_N ; + LeapYear = ApposCN (UseN leap_N) (MassNP (UseN year_N)) ; + Learning = UseN learning_N ; + LeavingAnOrganization = ApposCN (UseN2 (VerbToNounV2 leave_V2)) (DetCN (DetQuant IndefArt NumSg) (UseN organization_N)) ; + LegalAction = AdjCN (PositA legal_A) (UseN action_N) ; + LegalDecision = AdjCN (PositA legal_A) (UseN decision_N) ; + Lending = UseN2 (VerbToNounV2 lend_V2) ; + LengthMeasure = ApposCN (UseN length_N) (MassNP (UseN measure_N)) ; + LinguisticCommunication = AdjCN (PositA linguistic_A) (UseN communication_N) ; + LinguisticExpression = AdjCN (PositA linguistic_A) (UseN expression_N) ; + LiquidMixture = AdjCN (PositA liquid_A) (UseN mixture_N) ; + LiquidMotion = AdjCN (PositA liquid_A) (UseN motion_N) ; + List = UseN list_N ; + Listening = UseN (VerbToNoun listen_V) ; + LogicalOperator = AdjCN (PositA logical_A) (UseN operator_N) ; + Looking = UseN2 (VerbToNounV2 look_V2) ; + Machine = UseN machine_N ; + Maintaining = UseN2 (VerbToNounV2 maintain_V2) ; + Making = UseN making_N ; + Mammal = UseN mammal_N ; + Man = UseN man_N ; + Managing = UseN2 (VerbToNounV2 manage_V2) ; + ManualHumanLanguage = AdjCN (PositA manual_A) (AdjCN (PositA human_A) (UseN language_N)) ; + Manufacture = UseN manufacture_N ; + Manufacturer = UseN manufacturer_N ; + March = UseN march_N ; + Marsupial = UseN marsupial_N ; + MassMeasure = ApposCN (UseN mass_N) (MassNP (UseN measure_N)) ; + Matriculation = UseN matriculation_N ; + May = UseN may_N ; + Measuring = UseN2 (VerbToNounV2 measure_V2) ; + MeasuringDevice = AdjCN (PositA (VerbToGerundA measure_V)) (UseN device_N) ; + Meat = UseN meat_N ; + Meeting = UseN meeting_N ; + Melting = UseN2 (VerbToNounV2 melt_V2) ; + MercantileOrganization = AdjCN (PositA mercantile_A) (UseN organization_N) ; + Metal = UseN metal_N ; + MilitaryForce = AdjCN (PositA military_A) (UseN force_N) ; + MilitaryOrganization = AdjCN (PositA military_A) (UseN organization_N) ; + MilitaryProcess = AdjCN (PositA military_A) (UseN process_N) ; + Mineral = UseN mineral_N ; + Minute = UseN minute_N ; + Mixture = UseN mixture_N ; + Molecule = UseN molecule_N ; + Monday = UseN monday_N ; + Monkey = UseN monkey_N ; + Month = UseN month_N ; + Morpheme = UseN morpheme_N ; + Moss = UseN moss_N ; + Motion = UseN motion_N ; + MotionDownward = AdvCN (UseN motion_N) downward_Adv ; + MotionPicture = ApposCN (UseN motion_N) (MassNP (UseN picture_N)) ; + MotionUpward = AdvCN (UseN motion_N) upward_Adv ; + Muscle = UseN muscle_N ; + Music = UseN music_N ; + MusicalInstrument = AdjCN (PositA musical_A) (UseN instrument_N) ; + Naming = UseN2 (VerbToNounV2 name_V2) ; + Nation = UseN nation_N ; + NaturalLanguage = AdjCN (PositA natural_A) (UseN language_N) ; + NaturalProcess = AdjCN (PositA natural_A) (UseN process_N) ; + NaturalSubstance = AdjCN (PositA natural_A) (UseN substance_N) ; + NegativeInteger = AdjCN (PositA negative_A) (UseN integer_N) ; + NegativeRealNumber = AdjCN (PositA negative_A) (AdjCN (PositA real_A) (UseN number_N)) ; + Neutron = UseN neutron_N ; + NormativeAttribute = AdjCN (PositA normative_A) (UseN attribute_N) ; + Noun = UseN noun_N ; + NounPhrase = ApposCN (UseN noun_N) (MassNP (UseN phrase_N)) ; + November = UseN november_N ; + NullSet = AdjCN (PositA null_A) (UseN set_N) ; + Number = UseN number_N ; + Nutrient = UseN nutrient_N ; + Object = UseN object_N ; + ObjectiveNorm = AdjCN (PositA objective_A) (UseN norm_N) ; + October = UseN october_N ; + OddInteger = AdjCN (PositA odd_A) (UseN integer_N) ; + Offering = UseN offering_N ; + OlfactoryAttribute = AdjCN (PositA olfactory_A) (UseN attribute_N) ; + OneDimensionalFigure = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N) ; + OpenTwoDimensionalFigure = AdjCN (PositA open_A) (AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N)) ; + Ordering = UseN ordering_N ; + Organ = UseN organ_N ; + OrganOrTissueProcess = ApposCN (ConjCN or_Conj (BaseCN (UseN organ_N) (UseN tissue_N))) (MassNP (UseN process_N)) ; + OrganicObject = AdjCN (PositA organic_A) (UseN object_N) ; + Organism = UseN organism_N ; + OrganismProcess = ApposCN (UseN organism_N) (MassNP (UseN process_N)) ; + Organization = UseN organization_N ; + OrganizationalProcess = AdjCN (PositA organizational_A) (UseN process_N) ; + Oval = UseN oval_N ; + ParamilitaryOrganization = AdjCN (PositA paramilitary_A) (UseN organization_N) ; + ParticleWord = ApposCN (UseN particle_N) (MassNP (UseN word_N)) ; + Patent = UseN patent_N ; + Perception = UseN perception_N ; + PerceptualAttribute = AdjCN (PositA perceptual_A) (UseN attribute_N) ; + Periodical = UseN periodical_N ; + PermanentResidence = AdjCN (PositA permanent_A) (UseN residence_N) ; + Phrase = UseN phrase_N ; + PhysicalAttribute = AdjCN (PositA physical_A) (UseN attribute_N) ; + PhysicalQuantity = AdjCN (PositA physical_A) (UseN quantity_N) ; + PhysicalState = AdjCN (PositA physical_A) (UseN state_N) ; + PhysicalSystem = AdjCN (PositA physical_A) (UseN system_N) ; + Plan = UseN plan_N ; + PlaneAngleMeasure = ApposCN (ApposCN (UseN plane_N) (MassNP (UseN angle_N))) (MassNP (UseN measure_N)) ; + Planning = UseN2 (VerbToNounV2 plan_V2) ; + Plant = UseN plant_N ; + PlantAnatomicalStructure = ApposCN (UseN plant_N) (MassNP (AdjCN (PositA anatomical_A) (UseN structure_N))) ; + PlantSubstance = ApposCN (UseN plant_N) (MassNP (UseN substance_N)) ; + Poisoning = UseN2 (VerbToNounV2 poison_V2) ; + Poking = UseN2 (VerbToNounV2 poke_V2) ; + PoliticalOrganization = AdjCN (PositA political_A) (UseN organization_N) ; + PoliticalProcess = AdjCN (PositA political_A) (UseN process_N) ; + Pollen = UseN pollen_N ; + Position = UseN position_N ; + PositiveInteger = AdjCN (PositA positive_A) (UseN integer_N) ; + PositiveRealNumber = AdjCN (PositA positive_A) (AdjCN (PositA real_A) (UseN number_N)) ; + Precipitation = UseN precipitation_N ; + Predicting = UseN2 (VerbToNounV2 predict_V2) ; + PrepositionalPhrase = AdjCN (PositA prepositional_A) (UseN phrase_N) ; + Pretending = UseN2 (VerbToNounV2 pretend_V2) ; + Primate = UseN primate_N ; + PrimeNumber = AdjCN (PositA prime_A) (UseN number_N) ; + ProbabilityAttribute = ApposCN (UseN probability_N) (MassNP (UseN attribute_N)) ; + Procedure = UseN procedure_N ; + Process = UseN process_N ; + Product = UseN product_N ; + Proposition = UseN proposition_N ; + Protein = UseN protein_N ; + Proton = UseN proton_N ; + PseudoGraph = AdjCN (PositA pseudo_A) (UseN graph_N) ; + PsychologicalAttribute = AdjCN (PositA psychological_A) (UseN attribute_N) ; + PsychologicalProcess = AdjCN (PositA psychological_A) (UseN process_N) ; + Publication = UseN publication_N ; + PureSubstance = AdjCN (PositA pure_A) (UseN substance_N) ; + Pursuing = UseN2 (VerbToNounV2 pursue_V2) ; + Putting = UseN2 (VerbToNounV2 put_V2) ; + Quantity = UseN quantity_N ; + QuantityChange = ApposCN (UseN quantity_N) (MassNP (UseN change_N)) ; + Questioning = UseN2 (VerbToNounV2 question_V2) ; + Radiating = UseN2 (VerbToNounV2 radiate_V2) ; + RadiatingLight = AdjCN (PositA (VerbToGerundA radiate_V)) (UseN light_N) ; + RadiatingSound = AdjCN (PositA (VerbToGerundA radiate_V)) (UseN sound_N) ; + RationalNumber = AdjCN (PositA rational_A) (UseN number_N) ; + Reading = UseN reading_N ; + RealNumber = AdjCN (PositA real_A) (UseN number_N) ; + Reasoning = UseN reasoning_N ; + RecreationOrExercise = ConjCN or_Conj (BaseCN (UseN recreation_N) (UseN exercise_N)) ; + Region = UseN region_N ; + Releasing = UseN2 (VerbToNounV2 release_V2) ; + ReligiousOrganization = AdjCN (PositA religious_A) (UseN organization_N) ; + ReligiousProcess = AdjCN (PositA religious_A) (UseN process_N) ; + Remembering = UseN2 (VerbToNounV2 remember_V2) ; + Removing = UseN2 (VerbToNounV2 remove_V2) ; + Repairing = UseN2 (VerbToNounV2 repair_V2) ; + ReproductiveBody = AdjCN (PositA reproductive_A) (UseN body_N) ; + Reptile = UseN reptile_N ; + Requesting = UseN2 (VerbToNounV2 request_V2) ; + Residence = UseN residence_N ; + ResidentialBuilding = AdjCN (PositA residential_A) (UseN building_N) ; + Roadway = UseN roadway_N ; + Rodent = UseN rodent_N ; + Room = UseN room_N ; + Running = UseN running_N ; + SaltWaterArea = AdjCN (PositA salt_A) (ApposCN (UseN water_N) (MassNP (UseN area_N))) ; + SaturationAttribute = ApposCN (UseN saturation_N) (MassNP (UseN attribute_N)) ; + Saturday = UseN saturday_N ; + Second = UseN second_N ; + Seed = UseN seed_N ; + Seeing = UseN2 (VerbToNounV2 foresee_V2) ; + Selecting = UseN2 (VerbToNounV2 select_V2) ; + SelfConnectedObject = ApposCN (UseN self_N) (MassNP (AdjCN (PositA (VerbToParticipeA connect_V)) (UseN object_N))) ; + Selling = UseN selling_N ; + Sentence = UseN sentence_N ; + SentientAgent = AdjCN (PositA sentient_A) (UseN agent_N) ; + Separating = UseN2 (VerbToNounV2 separate_V2) ; + September = UseN september_N ; + Series = UseN series_N ; + ServiceProcess = ApposCN (UseN service_N) (MassNP (UseN process_N)) ; + Set = UseN set_N ; + SetOrClass = ConjCN or_Conj (BaseCN (UseN set_N) (UseN class_N)) ; + SexAttribute = ApposCN (UseN sex_N) (MassNP (UseN attribute_N)) ; + SexualReproduction = AdjCN (PositA sexual_A) (UseN reproduction_N) ; + ShapeAttribute = ApposCN (UseN shape_N) (MassNP (UseN attribute_N)) ; + ShapeChange = ApposCN (UseN shape_N) (MassNP (UseN change_N)) ; + Shooting = UseN shooting_N ; + ShoreArea = ApposCN (UseN shore_N) (MassNP (UseN area_N)) ; + Singing = UseN singing_N ; + SingleAgentProcess = AdjCN (PositA single_A) (ApposCN (UseN agent_N) (MassNP (UseN process_N))) ; + SingleFamilyResidence = AdjCN (PositA single_A) (ApposCN (UseN family_N) (MassNP (UseN residence_N))) ; + Smelling = UseN2 (VerbToNounV2 smell_V2) ; + Smoke = UseN smoke_N ; + SocialInteraction = AdjCN (PositA social_A) (UseN interaction_N) ; + SocialRole = AdjCN (PositA social_A) (UseN role_1_N) ; + SocialUnit = AdjCN (PositA social_A) (UseN unit_N) ; + SolidAngleMeasure = AdjCN (PositA solid_A) (ApposCN (UseN angle_N) (MassNP (UseN measure_N))) ; + Solution = UseN solution_N ; + SoundAttribute = AdjCN (PositA sound_A) (UseN attribute_N) ; + Speaking = UseN2 (VerbToNounV2 bespeak_V2) ; + SpokenHumanLanguage = AdjCN (PositA (VerbToParticipeA speak_V)) (AdjCN (PositA human_A) (UseN language_N)) ; + Spore = UseN spore_N ; + Sport = UseN sport_N ; + StateChange = ApposCN (UseN state_N) (MassNP (UseN change_N)) ; + StateOfMind = AdvCN (UseN state_N) (PrepNP part_Prep (MassNP (UseN mind_N))) ; + StateOrProvince = ConjCN or_Conj (BaseCN (UseN state_N) (UseN province_N)) ; + StaticWaterArea = AdjCN (PositA static_A) (ApposCN (UseN water_N) (MassNP (UseN area_N))) ; + Stating = UseN2 (VerbToNounV2 state_V2) ; + StationaryArtifact = AdjCN (PositA stationary_A) (UseN artifact_N) ; + StreamWaterArea = ApposCN (ApposCN (UseN stream_N) (MassNP (UseN water_N))) (MassNP (UseN area_N)) ; + SubatomicParticle = AdjCN (PositA subatomic_A) (UseN particle_N) ; + SubjectiveAssessmentAttribute = AdjCN (PositA subjective_A) (ApposCN (UseN assessment_N) (MassNP (UseN attribute_N))) ; + Substance = UseN substance_N ; + Substituting = UseN2 (VerbToNounV2 substitute_V2) ; + Summary = UseN summary_N ; + Sunday = UseN sunday_N ; + Supposing = UseN2 (VerbToNounV2 suppose_V2) ; + SurfaceChange = ApposCN (UseN surface_N) (MassNP (UseN change_N)) ; + Surgery = UseN surgery_N ; + Suspension = UseN suspension_N ; + Swimming = UseN swimming_N ; + SymbolicString = AdjCN (PositA symbolic_A) (UseN string_N) ; + SyntheticSubstance = AdjCN (PositA synthetic_A) (UseN substance_N) ; + TactilePerception = AdjCN (PositA tactile_A) (UseN perception_N) ; + TasteAttribute = ApposCN (UseN taste_N) (MassNP (UseN attribute_N)) ; + Tasting = UseN2 (VerbToNounV2 taste_V2) ; + TemperatureMeasure = ApposCN (UseN temperature_N) (MassNP (UseN measure_N)) ; + TemporaryResidence = AdjCN (PositA temporary_A) (UseN residence_N) ; + TerminatingEmployment = AdjCN (PositA (VerbToGerundA terminate_V)) (UseN employment_N) ; + Text = UseN text_N ; + TextureAttribute = ApposCN (UseN texture_N) (MassNP (UseN attribute_N)) ; + TherapeuticProcess = AdjCN (PositA therapeutic_A) (UseN process_N) ; + ThreeDimensionalFigure = AdjCN (PositA (compoundA (regA "three-dimensional"))) (UseN figure_N) ; + Thursday = UseN thursday_N ; + TimeDependentQuantity = ApposCN (ApposCN (UseN time_N) (MassNP (UseN dependent_N))) (MassNP (UseN quantity_N)) ; + TimeDuration = ApposCN (UseN time_N) (MassNP (UseN duration_N)) ; + TimeInterval = ApposCN (UseN time_N) (MassNP (UseN interval_N)) ; + TimeMeasure = ApposCN (UseN time_N) (MassNP (UseN measure_N)) ; + TimePoint = ApposCN (UseN time_N) (MassNP (UseN point_N)) ; + TimePosition = ApposCN (UseN time_N) (MassNP (UseN position_N)) ; + TimeZone = ApposCN (UseN time_N) (MassNP (UseN zone_N)) ; + Tissue = UseN tissue_N ; + Touching = UseN2 (VerbToNounV2 touch_V2) ; + TraitAttribute = ApposCN (UseN trait_N) (MassNP (UseN attribute_N)) ; + Transaction = UseN transaction_N ; + Transfer = UseN transfer_N ; + Translating = UseN2 (VerbToNounV2 translate_V2) ; + Transportation = UseN transportation_N ; + TransportationDevice = ApposCN (UseN transportation_N) (MassNP (UseN device_N)) ; + Tree = UseN tree_N ; + TruthValue = ApposCN (UseN truth_N) (MassNP (UseN value_N)) ; + Tuesday = UseN tuesday_N ; + TwoDimensionalAngle = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN angle_N) ; + TwoDimensionalFigure = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N) ; + Uncovering = UseN2 (VerbToNounV2 uncover_V2) ; + UnilateralGetting = AdjCN (PositA unilateral_A) (UseN2 (VerbToNounV2 beget_V2)) ; + UnilateralGiving = AdjCN (PositA unilateral_A) (UseN2 (VerbToNounV2 give_V2)) ; + UniqueList = AdjCN (PositA unique_A) (UseN list_N) ; + UnitOfAngularMeasure = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (AdjCN (PositA angular_A) (UseN measure_N)))) ; + UnitOfArea = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN area_N))) ; + UnitOfAtmosphericPressure = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (AdjCN (PositA atmospheric_A) (UseN pressure_N)))) ; + UnitOfCurrency = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN currency_N))) ; + UnitOfDuration = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN duration_N))) ; + UnitOfFrequency = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN frequency_N))) ; + UnitOfInformation = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN information_N))) ; + UnitOfLength = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN length_N))) ; + UnitOfMass = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN mass_N))) ; + UnitOfMeasure = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN measure_N))) ; + UnitOfTemperature = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN temperature_N))) ; + UnitOfVolume = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN volume_N))) ; + ValidDeductiveArgument = AdjCN (PositA valid_A) (AdjCN (PositA deductive_A) (UseN argument_N)) ; + Vehicle = UseN vehicle_N ; + Verb = UseN verb_N ; + VerbPhrase = ApposCN (UseN verb_N) (MassNP (UseN phrase_N)) ; + Vertebrate = UseN vertebrate_N ; + ViolentContest = AdjCN (PositA violent_A) (UseN contest_N) ; + Virus = UseN virus_N ; + VisualAttribute = AdjCN (PositA visual_A) (UseN attribute_N) ; + Vitamin = UseN vitamin_N ; + VocalCords = AdjCN (PositA vocal_A) (UseN cord_N) ; + Vocalizing = UseN2 (VerbToNounV2 vocalize_V2) ; + VolumeMeasure = ApposCN (UseN volume_N) (MassNP (UseN measure_N)) ; + Voting = UseN2 (VerbToNounV2 vote_V2) ; + Walking = UseN walking_N ; + War = UseN war_N ; + Water = UseN water_N ; + WaterArea = ApposCN (UseN water_N) (MassNP (UseN area_N)) ; + WaterCloud = ApposCN (UseN water_N) (MassNP (UseN cloud_N)) ; + WaterMotion = ApposCN (UseN water_N) (MassNP (UseN motion_N)) ; + Weapon = UseN weapon_N ; + WearableItem = AdjCN (PositA wearable_A) (UseN item_N) ; + WeatherProcess = ApposCN (UseN weather_N) (MassNP (UseN process_N)) ; + Wedding = UseN wedding_N ; + Wednesday = UseN wednesday_N ; + Week = UseN week_N ; + Wetting = UseN wetting_N ; + Wind = UseN wind_N ; + Woman = UseN woman_N ; + Word = UseN word_N ; + Worm = UseN worm_N ; + Writing = UseN writing_N ; + Year = UseN year_N ; + + + -- nullary functions + + GreatestCommonDivisorFn ob = AdvNP (DetCN (DetQuantOrd DefArt NumSg (OrdSuperl great_A)) (AdjCN (PositA common_A) (UseN divisor_N))) (PrepNP part_Prep (ConjNP and_Conj ob)) ; + LeastCommonMultipleFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA least_A) (AdjCN (PositA common_A) (UseN multiple_N)))) (PrepNP part_Prep (ConjNP and_Conj ob)) ; + ListFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN list_N)) (PrepNP part_Prep (ConjNP and_Conj ob)) ; + + -- unary functions + + AbsoluteValueFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA absolute_A) (UseN value_N))) (PrepNP part_Prep ob) ; + AbstractionFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN abstraction_N)) (PrepNP part_Prep (MassNP ob)) ; + BackFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN back_N)) (PrepNP part_Prep ob) ; + BeginFn ob = AdvNP (DetCN (DetQuant DefArt NumPl) (UseN2 (VerbToNounV2 begin_V2))) (PrepNP part_Prep ob) ; + BeginNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA initial_A) (UseN node_N))) (PrepNP part_Prep ob) ; + CeilingFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN ceiling_N)) (PrepNP part_Prep ob) ; + CenterOfCircleFn ob = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN centre_N)) (PrepNP part_Prep (MassNP (UseN circle_N)))) (PrepNP part_Prep ob) ; + ComplementFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN complement_N)) (PrepNP part_Prep ob) ; + CosineFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN cosine_N)) (PrepNP part_Prep ob) ; + CutSetFn ob = AdvCN (AdjCN (PositA (VerbToParticipeA cut_V)) (UseN set_N)) (PrepNP part_Prep ob) ; + DenominatorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN denominator_N)) (PrepNP part_Prep ob) ; + EndFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN end_N)) (PrepNP part_Prep ob) ; + EndNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN end_N) (MassNP (UseN node_N)))) (PrepNP part_Prep ob) ; + ExtensionFn ob = AdvCN (UseN extension_N) (PrepNP part_Prep ob) ; + FloorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN floor_N)) (PrepNP part_Prep ob) ; + FrontFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN front_N)) (PrepNP part_Prep ob) ; + FutureFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN future_N)) (PrepNP part_Prep ob) ; + GeneralizedIntersectionFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA (VerbToParticipeA generalize_V)) (UseN intersection_N))) (PrepNP part_Prep (MassNP ob)) ; + GeneralizedUnionFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA (VerbToParticipeA generalize_V)) (UseN union_N))) (PrepNP part_Prep (MassNP ob)) ; + GovernmentFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN government_N)) (PrepNP part_Prep ob) ; + HoleHostFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN hole_N) (MassNP (UseN host_N)))) (PrepNP part_Prep ob) ; + HoleSkinFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN hole_N) (MassNP (UseN skin_N)))) (PrepNP part_Prep ob) ; + ImaginaryPartFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA imaginary_A) (UseN part_N))) (PrepNP part_Prep ob) ; + ImmediateFamilyFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA immediate_A) (UseN family_N))) (PrepNP part_Prep ob) ; + ImmediateFutureFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA immediate_A) (UseN future_N))) (PrepNP part_Prep ob) ; + ImmediatePastFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA immediate_A) (UseN past_N))) (PrepNP part_Prep ob) ; + InitialNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA initial_A) (UseN node_N))) (PrepNP part_Prep ob) ; + IntegerSquareRootFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN integer_N) square_Adv) (MassNP (UseN root_N)))) (PrepNP part_Prep ob) ; + MagnitudeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN magnitude_N)) (PrepNP part_Prep ob) ; + MinimalCutSetFn ob = AdvCN (AdjCN (PositA minimal_A) (AdjCN (PositA (VerbToParticipeA cut_V)) (UseN set_N))) (PrepNP part_Prep ob) ; + NumeratorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN numerator_N)) (PrepNP part_Prep ob) ; + PastFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN past_N)) (PrepNP part_Prep ob) ; + PathWeightFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN path_N) (MassNP (UseN weight_N)))) (PrepNP part_Prep ob) ; + PowerSetFn ob = AdvCN (ApposCN (UseN power_N) (MassNP (UseN set_N))) (PrepNP part_Prep ob) ; + PredecessorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN predecessor_N)) (PrepNP part_Prep ob) ; + PremisesFn ob = AdvNP (DetCN (DetQuant DefArt NumPl) (UseN premise_N)) (PrepNP part_Prep ob) ; + ProbabilityFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN probability_N)) (PrepNP part_Prep (sentToNoun ob)) ; + PropertyFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN property_N)) (PrepNP part_Prep ob) ; + RationalNumberFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA rational_A) (UseN number_N))) (PrepNP part_Prep ob) ; + RealNumberFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA real_A) (UseN number_N))) (PrepNP part_Prep ob) ; + ReciprocalFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN reciprocal_N)) (PrepNP part_Prep ob) ; + RoundFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA round_A) (UseN value_N))) (PrepNP part_Prep ob) ; + SineFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN sine_N)) (PrepNP part_Prep ob) ; + SquareRootFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA square_A) (UseN root_N))) (PrepNP part_Prep ob) ; + SuccessorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN successor_N)) (PrepNP part_Prep ob) ; + TangentFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN tangent_N)) (PrepNP part_Prep ob) ; + TerminalNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA terminal_A) (UseN node_N))) (PrepNP part_Prep ob) ; + UnitFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN unit_N)) (PrepNP part_Prep ob) ; + WealthFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN wealth_N)) (PrepNP part_Prep ob) ; + WhenFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN time_N)) (PrepNP part_Prep ob) ; + YearFn ob = AdvCN (UseN year_N) (PrepNP part_Prep ob) ; + KiloFn ob = AdvNP (MassNP (UseN kilo_N)) (PrepNP part_Prep ob) ; + ListLengthFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN length_N)) (PrepNP part_Prep ob) ; + SignumFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN sign_N)) (PrepNP part_Prep ob) ; + + -- binary functions + + AdditionFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN addition_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + DayFn ob1 ob2 = AdvCN (ApposCN (UseN day_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; + DivisionFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN division_N)) (PrepNP part_Prep ob1)) (PrepNP to_Prep ob2) ; + EditionFn ob1 ob2 = AdvCN (ApposCN (UseN edition_N) (MassNP ob1)) (PrepNP part_Prep ob2) ; + ExponentiationFn ob1 ob2 = AdvNP (AdvNP ob1 (PrepNP to_Prep (DetCN (DetQuant DefArt NumSg) (UseN power_N)))) (PrepNP part_Prep ob2) ; + GraphPathFn ob1 ob2 = AdvCN (UseN path_N) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + HourFn ob1 ob2 = AdvCN (ApposCN (UseN hour_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; + IntersectionFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN intersection_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + IntervalFn ob1 ob2 = AdvCN (AdvCN (UseN interval_N) (PrepNP from_Prep ob1)) (PrepNP to_Prep ob2) ; + KappaFn c ob2 = ApposCN (AdvCN (AdvCN (UseN class_N) (PrepNP part_Prep (DetCN (DetQuant IndefArt NumPl) c))) where_Adv) (sentToNoun ob2) ; + ListConcatenateFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN concatenation_N)) (PrepNP part_Prep ob1)) (PrepNP to_Prep ob2) ; + ListOrderFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN element_N)) (PrepNP with_Prep (MassNP (ApposCN (UseN number_N) ob2)))) (PrepNP in_Prep ob1) ; + LogFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN logarithm_N)) (PrepNP part_Prep ob1)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN base_N) ob2))) ; + MaxFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN maximum_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + MaximalWeightedPathFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN path_N)) (PrepNP part_Prep (MassNP (AdjCN (PositA maximal_A) (UseN weight_N))))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + MinFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN minimum_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + MinimalWeightedPathFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN path_N)) (PrepNP part_Prep (MassNP (AdjCN (PositA minimal_A) (UseN weight_N))))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + MinuteFn ob1 ob2 = AdvCN (ApposCN (UseN minute_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; + MonthFn ob1 ob2 = AdvCN (ApposCN (UseN month_N) (MassNP ob1)) (PrepNP part_Prep (MassNP ob2)) ; + MultiplicationFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN multiplication_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + PerFn ob1 ob2 = AdvNP ob1 (PrepNP per_Prep ob2) ; + PeriodicalIssueFn ob1 ob2 = AdvCN (AdvCN (AdjCN (PositA periodical_A) (UseN issue_N)) (PrepNP part_Prep (MassNP ob1))) (PrepNP with_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN number_N) ob2))) ; + RecurrentTimeIntervalFn ob1 ob2 = AdvCN (AdjCN (PositA recurrent_A) (ApposCN (UseN time_N) (MassNP (UseN interval_N)))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP (MassNP ob1) (MassNP ob2)))) ; + RelativeComplementFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN complement_N) (PrepNP part_Prep ob2)) (MassNP (UseN relative_N)))) (PrepNP to_Prep ob1) ; + RelativeTimeFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (ApposCN (UseN time_N) ob1) (MassNP (UseN relative_N)))) (PrepNP to_Prep ob2) ; + RemainderFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN remainder_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + SecondFn ob1 ob2 = AdvCN (ApposCN (UseN second_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; + SeriesVolumeFn ob1 ob2 = AdvCN (ApposCN (UseN volume_N) ob2) (PrepNP in_Prep (DetCN (DetQuant DefArt NumPl) (ApposCN (UseN series_N) (MassNP ob1)))) ; + SubtractionFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN subtraction_N)) (PrepNP part_Prep ob2)) (PrepNP from_Prep ob1) ; + TemporalCompositionFn ob1 ob2 = AdvCN (AdjCN (PositA temporal_A) (UseN composition_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 (MassNP ob2)))) ; + TimeIntervalFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN time_N) (MassNP (UseN interval_N)))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + UnionFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN union_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; + WhereFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN location_N)) (PrepNP part_Prep ob1)) (PrepNP at_Prep ob2) ; + DensityFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant IndefArt NumSg) (UseN density_N)) (PrepNP part_Prep ob1)) (PrepNP per_Prep ob2) ; + SpeedFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant IndefArt NumSg) (UseN speed_N)) (PrepNP part_Prep ob1)) (PrepNP per_Prep ob2) ; + + -- quaternary functions + + VelocityFn ob1 ob2 ob3 ob4 = AdvNP (AdvNP (AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN velocity_N)) (PrepNP part_Prep ob1)) (PrepNP per_Prep ob2)) (PrepNP part_Prep ob3)) (PrepNP to_Prep ob4) ; + + + -- nullary predicates + + contraryAttribute ob1 = mkPolSent (PredVP (ConjNP and_Conj ob1) (UseComp (CompNP (MassNP (AdjCN (PositA contrary_A) (UseN attribute_N)))))) ; + exhaustiveAttribute ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj ob2) (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA exhaustive_A) (UseN decomposition_N))))) (PrepNP part_Prep (MassNP ob1))) (PrepNP in_Prep (DetCN (DetQuant IndefArt NumPl) (UseN instance_N))))) ; + exhaustiveDecomposition ob1 ob2 = mkPolSent (PredVP (MassNP (ConjCN and_Conj ob2)) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA exhaustive_A) (UseN decomposition_N))))) (PrepNP part_Prep (MassNP ob1)))) ; + partition ob1 ob2 = mkPolSent (PredVP (MassNP (ConjCN and_Conj ob2)) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN partition_N)))) (PrepNP part_Prep (MassNP ob1)))) ; + + + + -- binary predicates + abstractCounterpart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA abstract_A) (UseN counterpart_N))))) (PrepNP part_Prep ob2))) ; + acquaintance ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN acquaintance_N)))) (PrepNP part_Prep ob2))) ; + atomicNumber ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA atomic_A) (UseN number_N))))) (PrepNP part_Prep ob2))) ; + authors ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN author_N)))) (PrepNP part_Prep (MassNP ob2)))) ; + average ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN average_N)))) (PrepNP part_Prep ob2))) ; + barometricPressure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA barometric_A) (UseN pressure_N))))) (PrepNP part_Prep ob2))) ; + believes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a believe_V2) (sentToNoun ob2))) ; + boilingPoint ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumPl) (ApposCN (UseN2 (VerbToNounV2 boil_V2)) (MassNP (UseN point_N)))))) (PrepNP part_Prep ob2))) ; + causes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a cause_V2) ob2)) ; + causesProposition ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a cause_V2) (sentToNoun ob2))) ; + causesSubclass ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (ComplSlash (SlashV2a cause_V2) (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN class_N))))) (PrepNP part_Prep (MassNP ob2)))) ; + citizen ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN citizen_N)))) (PrepNP part_Prep ob2))) ; + conclusion ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN conclusion_N)))) (PrepNP part_Prep ob2))) ; + connected ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 connect_V2) (PrepNP to_Prep ob2))) ; + considers ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a consider_V2) (sentToNoun ob2))) ; + consistent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA consistent_A))) (PrepNP with_Prep ob2))) ; + containsInformation ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a contain_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN information_N) ob2)))) ; + cooccur ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseV occur_V) (PositAdvAdj simultaneous_A)) (PrepNP with_Prep ob2))) ; + copy ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN copy_N)))) (PrepNP part_Prep ob2))) ; + date ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN date_N)))) (PrepNP part_Prep ob2))) ; + decreasesLikelihood ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (ComplSlash (SlashV2a decrease_V2) (DetCN (DetQuant DefArt NumSg) (UseN possibility_N))) (PrepNP part_Prep (sentToNoun ob2)))) ; + desires ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a desire_V2) (sentToNoun ob2))) ; + diameter ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN diameter_N)))) (PrepNP part_Prep ob2))) ; + duration ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN duration_N)))) (PrepNP part_Prep ob2))) ; + earlier ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA early_A ob2)))) ; + editor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN editor_N)))) (PrepNP part_Prep (MassNP ob2)))) ; + element ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN element_N)))) (PrepNP part_Prep ob2))) ; + employs ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a employ_V2) ob2)) ; + entails ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a entail_V2) (sentToNoun ob2))) ; + equal ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA equal_A))) (PrepNP to_Prep ob2))) ; + exploits ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a exploit_V2) ob2)) ; + expressedInLanguage ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 express_V2) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2))))) ; + faces ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a face_V2) ob2)) ; + familyRelation ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN family_N) (MassNP (UseN relation_N)))))) (PrepNP part_Prep ob2))) ; + frequency ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN frequency_N)))) (PrepNP part_Prep ob2))) ; + geometricPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA geometric_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; + graphMeasure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN measure_N)))) (PrepNP part_Prep ob2))) ; + graphPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN part_N)))) (PrepNP part_Prep ob2))) ; + hasPurpose ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN purpose_N) (sentToNoun ob2))))) ; + hasSkill ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN skill_N) ob2)))) ; + holdsDuring ob1 ob2 = mkPolSent (PredVP (sentToNoun ob2) (AdvVP (UseV hold_V) (PrepNP during_Prep ob1))) ; + holdsObligation ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a behold_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN obligation_N) ob2)))) ; + holdsRight ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a behold_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN right_N) ob2)))) ; + hole ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN hole_N)))) (PrepNP part_Prep ob2))) ; + identicalListItems ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA identical_A) (UseN item_N))))) ; + inList ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN element_N)))) (PrepNP part_Prep ob2))) ; + increasesLikelihood ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (ComplSlash (SlashV2a increase_V2) (DetCN (DetQuant DefArt NumSg) (UseN possibility_N))) (PrepNP part_Prep (sentToNoun ob2)))) ; + independentProbability ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP (sentToNoun ob1) (sentToNoun ob2))) (ComplSlash (SlashV2a have_V2) (MassNP (AdjCN (PositA independent_A) (UseN probability_N))))) ; + inhabits ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a inhabit_V2) ob2)) ; + inhibits ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a inhibit_V2) (MassNP ob2))) ; + knows ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a know_V2) (sentToNoun ob2))) ; + larger ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA large_A ob2)))) ; + leader ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN leader_N)))) (PrepNP part_Prep ob2))) ; + legalRelation ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA legal_A) (UseN relation_N))))) (PrepNP part_Prep ob2))) ; + lessThanOrEqualTo ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (ConjAP or_Conj (BaseAP (PositA less_A) (PositA equal_A))))) (PrepNP to_Prep ob2))) ; + lineMeasure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN measure_N)))) (PrepNP part_Prep ob2))) ; + material ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN material_N)))) (PrepNP part_Prep ob2))) ; + measure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN measure_N)))) (PrepNP part_Prep ob2))) ; + meltingPoint ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumPl) (ApposCN (UseN2 (VerbToNounV2 melt_V2)) (MassNP (UseN point_N)))))) (PrepNP part_Prep ob2))) ; + multiplicativeFactor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN factor_N)))) (PrepNP part_Prep ob2))) ; + mutualAcquaintance ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA mutual_A) (UseN acquaintance_N)))))) ; + needs ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a need_V2) ob2)) ; + parallel ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA parallel_A))) (PrepNP to_Prep ob2))) ; + parent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN parent_N)))) (PrepNP part_Prep ob2))) ; + partialOrderingOn c p = mkPolSent (PredVP (sentToNoun p) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA partial_A) (UseN ordering_N))))) (PrepNP on_Prep (DetCN (DetQuant IndefArt NumSg) c)))) ; + pathLength ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN length_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN path_N) ob2))))) ; + possesses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a possess_V2) ob2)) ; + precondition ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN precondition_N)))) (PrepNP part_Prep (MassNP ob2)))) ; + premise ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN premise_N)))) (PrepNP part_Prep ob2))) ; + prevents ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a prevent_V2) (MassNP ob2))) ; + property ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN property_N)))) (PrepNP part_Prep ob2))) ; + publishes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a publish_V2) (MassNP ob2))) ; + radius ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN radius_N)))) (PrepNP part_Prep ob2))) ; + refers ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseV refer_V) (PrepNP to_Prep ob2))) ; + reflexiveOn c p = mkPolSent (PredVP (sentToNoun p) (AdvVP (UseComp (CompAP (PositA reflexive_A))) (PrepNP on_Prep (DetCN (DetQuant IndefArt NumSg) c)))) ; + relatedEvent ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA (VerbToParticipeA relate_V)) (UseN event_N)))))) ; + relatedInternalConcept ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA (VerbToParticipeA relate_V)) (AdjCN (PositA internal_A) (UseN concept_N))))))) ; + relative ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN relative_N)))) (PrepNP part_Prep ob2))) ; + sibling ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN sibling_N)))) (PrepNP part_Prep ob2))) ; + smaller ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA small_A ob2)))) ; + subAttribute ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN attribute_N)))))) (PrepNP part_Prep ob2))) ; + subCollection ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN collection_N)))))) (PrepNP part_Prep ob2))) ; + subGraph ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN graph_N)))))) (PrepNP part_Prep ob2))) ; + subList ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN list_N)))))) (PrepNP part_Prep ob2))) ; + subProcess ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN process_N)))))) (PrepNP part_Prep ob2))) ; + subProposition ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN proposition_N)))))) (PrepNP part_Prep ob2))) ; + subSystem ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN system_N)))))) (PrepNP part_Prep ob2))) ; + subclass ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN class_N)))))) (PrepNP part_Prep ob2))) ; + + subsumesContentClass ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (ComplSlash (SlashV2a subsume_V2) (DetCN (DetQuant DefArt NumSg) (UseN content_N))) (PrepNP part_Prep (MassNP ob2)))) ; + subsumesContentInstance ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a subsume_V2) (DetCN (DetQuant DefArt NumSg) (UseN content_N))) (PrepNP part_Prep ob2))) ; + successorAttribute ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN successor_N) (MassNP (UseN attribute_N)))))) (PrepNP part_Prep ob2))) ; + systemPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN part_N)))) (PrepNP part_Prep ob2))) ; + temporalPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA temporal_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; + time ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN time_N)))) (PrepNP part_Prep ob2))) ; + totalOrderingOn c p = mkPolSent (PredVP (sentToNoun p) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA total_A) (UseN ordering_N))))) (PrepNP on_Prep (DetCN (DetQuant IndefArt NumSg) c)))) ; + traverses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a traverse_V2) ob2)) ; + uses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a use_V2) ob2)) ; + version ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN version_N)))) (PrepNP part_Prep (MassNP ob2)))) ; + wants ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a want_V2) ob2)) ; + wears ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a outwear_V2) ob2)) ; + weight ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN weight_N)))) (PrepNP part_Prep ob2))) ; + age ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN age_N)))) (PrepNP part_Prep ob2))) ; + agent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN agent_N)))) (PrepNP part_Prep ob2))) ; + ancestor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN ancestor_N)))) (PrepNP part_Prep ob2))) ; + angleOfFigure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN angle_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN figure_N) ob2))))) ; + attends ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a attend_V2) ob2)) ; + attribute ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN attribute_N)))) (PrepNP part_Prep ob2))) ; + before ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAdv (PrepNP before_Prep ob2)))) ; + bottom ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN bottom_N)))) (PrepNP part_Prep ob2))) ; + side ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN side_N)))) (PrepNP part_Prep ob2))) ; + surface ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN surface_N)))) (PrepNP part_Prep ob2))) ; + top ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN top_N)))) (PrepNP part_Prep ob2))) ; + brother ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN brother_N)))) (PrepNP part_Prep ob2))) ; + fills ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a fill_V2) ob2)) ; + completelyFills ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj complete_A)) (ComplSlash (SlashV2a fill_V2) ob2)) ; + properlyFills ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj proper_A)) (ComplSlash (SlashV2a fill_V2) ob2)) ; + exactlyLocated ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA exact_A) (UseN location_N))))) (PrepNP part_Prep ob1))) ; + partiallyFills ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj partial_A)) (ComplSlash (SlashV2a fill_V2) ob2)) ; + component ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN component_N)))) (PrepNP part_Prep ob2))) ; + contains ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a contain_V2) ob2)) ; + crosses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a cross_V2) ob2)) ; + destination ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN destination_N)))) (PrepNP part_Prep ob2))) ; + direction ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN direction_N)))) (PrepNP part_Prep ob2))) ; + during ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseV happen_V) (PrepNP during_Prep ob2))) ; + equivalentContentClass ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP (MassNP ob1) (MassNP ob2))) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA equivalent_A) (UseN content_N))))) ; + finishes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a finish_V2) ob2)) ; + grasps ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a grasp_V2) ob2)) ; + penetrates ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a penetrate_V2) ob2)) ; + height ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN height_N)))) (PrepNP part_Prep ob2))) ; + length ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN length_N)))) (PrepNP part_Prep ob2))) ; + width ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN width_N)))) (PrepNP part_Prep ob2))) ; + home ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN home_N)))) (PrepNP part_Prep ob2))) ; + husband ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN husband_N)))) (PrepNP part_Prep ob2))) ; + wife ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN wife_N)))) (PrepNP part_Prep ob2))) ; + instrument ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN instrument_N)))) (PrepNP part_Prep ob2))) ; + result ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN result_N)))) (PrepNP part_Prep ob2))) ; + interiorPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN interior_N)))) part_Adv) (PrepNP part_Prep ob2))) ; + linearExtent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA linear_A) (UseN extent_N))))) (PrepNP part_Prep ob2))) ; + located ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN location_N)))) (PrepNP part_Prep ob1))) ; + manner ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN manner_N)))) (PrepNP part_Prep ob2))) ; + member ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN member_N)))) (PrepNP part_Prep ob2))) ; + monetaryValue ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA monetary_A) (UseN value_N))))) (PrepNP part_Prep ob2))) ; + names ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN name_N)))) (PrepNP part_Prep ob2))) ; + origin ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN origin_N)))) (PrepNP part_Prep ob2))) ; + part ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN part_N)))) (PrepNP part_Prep ob2))) ; + path ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN path_N)))) (PrepNP part_Prep ob2))) ; + mother ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN mother_N)))) (PrepNP part_Prep ob2))) ; + father ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN father_N)))) (PrepNP part_Prep ob2))) ; + daughter ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN daughter_N)))) (PrepNP part_Prep ob2))) ; + son ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN son_N)))) (PrepNP part_Prep ob2))) ; + patient ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN patient_N)))) (PrepNP part_Prep ob2))) ; + piece ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN piece_N)))) (PrepNP part_Prep ob2))) ; + pointOfFigure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN point_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN figure_N) ob2))))) ; + properPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA proper_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; + realization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN realization_N)))) (PrepNP part_Prep ob2))) ; + represents ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a represent_V2) ob2)) ; + sister ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN sister_N)))) (PrepNP part_Prep ob2))) ; + spouse ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN spouse_N)))) (PrepNP part_Prep ob2))) ; + starts ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a start_V2) ob2)) ; + stays ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a stay_V2) ob2)) ; + subOrganization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN organization_N)))))) (PrepNP part_Prep ob2))) ; + subPlan ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN plan_N)))))) (PrepNP part_Prep ob2))) ; + superficialPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA superficial_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; + truth ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN truth_N) (MassNP (UseN value_N)))))) (PrepNP part_Prep ob2))) ; + angularMeasure ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA angular_A) (UseN measure_N))))) (PrepNP part_Prep ob1))) ; + arcWeight ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN weight_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN arc_N) ob1))))) ; + geographicSubregion ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN region_N)))))) (PrepNP part_Prep ob2))) ; + involvedInEvent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 involve_V2) (PrepNP in_Prep ob2))) ; + meetsTemporally ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj temporal_A)) (ComplSlash (SlashV2a meet_V2) ob2)) ; + partlyLocated ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA partial_A) (UseN location_N))))) (PrepNP part_Prep ob1))) ; + geopoliticalSubdivision ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN division_N)))))) (PrepNP part_Prep ob2))) ; + immediateSubclass ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA immediate_A) (ApposCN (UseN sub_N) (MassNP (UseN class_N))))))) (PrepNP part_Prep ob2))) ; + meetsSpatially ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj spatial_A)) (ComplSlash (SlashV2a meet_V2) ob2)) ; + overlapsPartially ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj partial_A)) (ComplSlash (SlashV2a overlap_V2) ob2)) ; + overlapsSpatially ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj spatial_A)) (ComplSlash (SlashV2a overlap_V2) ob2)) ; + subset ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN set_N)))))) (PrepNP part_Prep ob2))) ; + greaterThan ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA great_A ob2)))) ; + greaterThanOrEqualTo ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (ConjAP or_Conj (BaseAP (UseComparA great_A) (PositA equal_A))))) (PrepNP to_Prep ob2))) ; + inScopeOfInterest ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 interest_V2) (PrepNP in_Prep ob2))) ; + overlapsTemporally ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj temporal_A)) (ComplSlash (SlashV2a overlap_V2) ob2)) ; + engineeringSubcomponent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN component_N)))))) (PrepNP part_Prep ob2))) ; + equivalentContentInstance ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA equivalent_A) (UseN content_N))))) ; + successorAttributeClosure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (ApposCN (UseN successor_N) (MassNP (UseN attribute_N))) (MassNP (UseN closure_N)))))) (PrepNP part_Prep ob2))) ; + transactionAmount ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN amount_N)))) (PrepNP part_Prep ob2))) ; + connectedEngineeringComponents ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (PassV2 connect_V2)) ; + + + -- ternary predicate + + between ob1 ob2 ob3 = mkPolSent (PredVP ob2 (UseComp (CompAdv (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob3)))))) ; + conditionalProbability ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN probability_N)))) (PrepNP part_Prep (PPartNP (sentToNoun ob1) condition_V2))) (PrepNP by8agent_Prep (sentToNoun ob2)))) ; + confersNorm ob1 ob2 ob3 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a confer_V2) (ConjNP and_Conj (BaseNP ob3 (sentToNoun ob2))))) ; + confersObligation ob1 ob2 ob3 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (AdvVP (ComplSlash (SlashV2a confer_V2) (DetCN (DetQuant DefArt NumSg) (UseN obligation_N))) (PrepNP part_Prep ob3)) (PrepNP to_Prep ob2))) ; + confersRight ob1 ob2 ob3 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (AdvVP (ComplSlash (SlashV2a confer_V2) (DetCN (DetQuant DefArt NumSg) (UseN right_N))) (PrepNP part_Prep ob3)) (PrepNP to_Prep ob2))) ; + connects ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a connect_V2) ob2) (PrepNP to_Prep ob3))) ; + deprivesNorm ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a deprive_V2) ob3) (PrepNP to_Prep ( sentToNoun ob2)))) ; + distance ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN distance_N)))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; + documentation ob1 ob2 ob3 = mkPolSent (PredVP ob2 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN documentation_N)))) (PrepNP part_Prep ob1)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2))))) ; + geometricDistance ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA geometric_A) (UseN distance_N))))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; + hasPurposeForAgent ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN purpose_N) (sentToNoun ob2)))) (PrepNP for_Prep (MassNP (ApposCN (UseN agent_N) ob3))))) ; + links ob1 ob2 ob3 = mkPolSent (PredVP ob3 (ComplSlash (SlashV2a link_V2) (ConjNP and_Conj (BaseNP ob1 ob2)))) ; + occupiesPosition ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a occupy_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN position_N) ob2))) (PrepNP in_Prep ob3))) ; + orientation ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN orientation_N)))) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; + pointOfIntersection ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN point_N)))) (PrepNP part_Prep (MassNP (UseN intersection_N)))) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; + relatedExternalConcept ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA (VerbToParticipeA relate_V)) (AdjCN (PositA external_A) (UseN concept_N)))))) (PrepNP part_Prep ob2)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob3))))) ; + representsForAgent ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a represent_V2) ob2) (PrepNP for_Prep ob3))) ; + representsInLanguage ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a represent_V2) ob2) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob3))))) ; + temporallyBetween ob1 ob2 ob3 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompAdv (PositAdvAdj temporal_A))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob3))))) ; + temporallyBetweenOrEqual ob1 ob2 ob3 = mkPolSent (PredVP ob2 (AdvVP (AdvVP (UseComp (CompAdv (PositAdvAdj temporal_A))) (ConjAdv or_Conj (BaseAdv between_Adv (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA same_A) (UseN time_N))))))) (PrepNP with_Prep (ConjNP or_Conj (BaseNP ob1 ob3))))) ; + altitude ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN altitude_N) (PrepNP part_Prep ob1)) (MassNP (UseN relative_N)))))) (PrepNP to_Prep ob2))) ; + connectsEngineeringComponents ob1 ob2 ob3 = mkPolSent (PredVP ob3 (ComplSlash (SlashV2a connect_V2) (ConjNP and_Conj (BaseNP ob2 ob3)))) ; + depth ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN depth_N) (PrepNP part_Prep ob1)) (MassNP (UseN relative_N)))))) (PrepNP to_Prep ob2))) ; + synonymousExternalConcept ob1 ob2 ob3 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA synonymous_A) (AdjCN (PositA external_A) (UseN concept_N)))))) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob3))))) ; + greaterThanByQuality ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (AdvVP (UseV (mkV "have")) more_Adv) (PrepNP part_Prep (PPartNP ob3 compare_V2))) (PrepNP to_Prep ob2))) ; + prefers ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a prefer_V2) (sentToNoun ob2)) (PrepNP to_Prep (sentToNoun ob3)))) ; + + --relations + AsymmetricRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA asymmetric_A) (UseN relation_N)))))) ; + EquivalenceRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN equivalence_N) (MassNP (UseN relation_N))))))) ; + IntransitiveRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA intransitive_A) (UseN relation_N)))))) ; + -- OneToOneFunction c1 c2 f = mkPolSent(PredVP f (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdvCN (UseN one_N) (PrepNP to_Prep (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01))))))) (UseN function_N)))))))) ; + PartialOrderingRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA partial_A) (ApposCN (UseN2 (VerbToNounV2 order_V2)) (MassNP (UseN relation_N)))))))) ; + SequenceFunction c f = mkPolSent(PredVP f (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sequence_N) (MassNP (UseN function_N))))))) ; + ReflexiveRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA reflexive_A) (UseN relation_N)))))) ; + SymmetricRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA symmetric_A) (UseN relation_N)))))) ; + TotalOrderingRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA total_A) (ApposCN (UseN2 (VerbToNounV2 order_V2)) (MassNP (UseN relation_N)))))))) ; + TransitiveRelation c f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA transitive_A) (UseN relation_N)))))) ; + IntentionalRelation c1 c2 f = mkPolSent(PredVP (sentToNoun f) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA intentional_A) (UseN relation_N)))))) ; + subRelation2El c1 c2 c3 c4 f g = mkPolSent (PredVP (sentToNoun f) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN relation_N)))))) (PrepNP part_Prep (sentToNoun g)))) ; + identityElement c f elem = mkPolSent (PredVP elem (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN identity_N) (MassNP (UseN element_N)))))) (PrepNP part_Prep f))) ; + inverse c f g = mkPolSent (PredVP (sentToNoun f) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN inverse_N)))) (PrepNP part_Prep (sentToNoun g)))) ; - - --- subclass declarations : -AbnormalAnatomicalStructure = AdjCN (PositA abnormal_A) (AdjCN (PositA anatomical_A) (UseN structure_N)) ; -Abstract = UseN abstract_N ; -Adjective = UseN adjective_N ; -Adverb = UseN adverb_N ; -Advertising = UseN2 (VerbToNounV2 advertise_V2) ; -AgeGroup = ApposCN (UseN age_N) (MassNP (UseN group_N)) ; -Agent = UseN agent_N ; -Air = UseN air_N ; -Alga = UseN alga_N ; -Amphibian = UseN amphibian_N ; -AnatomicalStructure = AdjCN (PositA anatomical_A) (UseN structure_N) ; -AngleMeasure = ApposCN (UseN angle_N) (MassNP (UseN measure_N)) ; -Animal = UseN animal_N ; -AnimalAnatomicalStructure = ApposCN (UseN animal_N) (MassNP (AdjCN (PositA anatomical_A) (UseN structure_N))) ; -AnimalLanguage = ApposCN (UseN animal_N) (MassNP (UseN language_N)) ; -AnimalSubstance = ApposCN (UseN animal_N) (MassNP (UseN substance_N)) ; -Ape = UseN ape_N ; -April = UseN april_N ; -AquaticMammal = AdjCN (PositA aquatic_A) (UseN mammal_N) ; -Arachnid = UseN arachnid_N ; -AreaMeasure = ApposCN (UseN area_N) (MassNP (UseN measure_N)) ; -Argument = UseN argument_N ; -ArtWork = ApposCN (UseN art_N) (MassNP (UseN work_N)) ; -Article = UseN article_N ; -Artifact = UseN artifact_N ; -ArtificialLanguage = AdjCN (PositA artificial_A) (UseN language_N) ; -AsexualReproduction = AdjCN (PositA asexual_A) (UseN reproduction_N) ; -AstronomicalBody = AdjCN (PositA astronomical_A) (UseN body_N) ; -Atom = UseN atom_N ; -AtomicNucleus = AdjCN (PositA atomic_A) (UseN nucleus_N) ; -Attaching = UseN2 (VerbToNounV2 attach_V2) ; -AttachingDevice = ApposCN (UseN2 (VerbToNounV2 attach_V2)) (MassNP (UseN device_N)) ; -Attack = UseN attack_N ; -Attribute = UseN attribute_N ; -August = UseN august_N ; -Bacterium = UseN bacterium_N ; -Battle = UseN battle_N ; -BeliefGroup = ApposCN (UseN belief_N) (MassNP (UseN group_N)) ; -Betting = UseN2 (VerbToNounV2 bet_V2) ; -Beverage = UseN beverage_N ; -BinaryNumber = AdjCN (PositA binary_A) (UseN number_N) ; -BiologicalAttribute = AdjCN (PositA biological_A) (UseN attribute_N) ; -BiologicalProcess = AdjCN (PositA biological_A) (UseN process_N) ; -Bird = UseN bird_N ; -Birth = UseN birth_N ; -Blood = UseN blood_N ; -BodyCavity = ApposCN (UseN body_N) (MassNP (UseN cavity_N)) ; -BodyCovering = ApposCN (UseN body_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 cover_V2))) ; -BodyJunction = ApposCN (UseN body_N) (MassNP (UseN junction_N)) ; -BodyMotion = ApposCN (UseN body_N) (MassNP (UseN motion_N)) ; -BodyPart = AdvCN (UseN body_N) part_Adv ; -BodyPosition = ApposCN (UseN body_N) (MassNP (UseN position_N)) ; -BodySubstance = ApposCN (UseN body_N) (MassNP (UseN substance_N)) ; -BodyVessel = ApposCN (UseN body_N) (MassNP (UseN vessel_N)) ; -Boiling = UseN2 (VerbToNounV2 boil_V2) ; -Bone = UseN bone_N ; -Book = UseN book_N ; -Borrowing = UseN2 (VerbToNounV2 borrow_V2) ; -Breathing = UseN breathing_N ; -Building = UseN building_N ; -Buying = UseN2 (VerbToNounV2 buy_V2) ; -Calculating = UseN2 (VerbToNounV2 calculate_V2) ; -Carbohydrate = UseN carbohydrate_N ; -Carnivore = UseN carnivore_N ; -Carrying = UseN2 (VerbToNounV2 carry_V2) ; -Cell = UseN cell_N ; -Certificate = UseN certificate_N ; -ChangeOfPossession = AdvCN (UseN change_N) (PrepNP part_Prep (MassNP (UseN possession_N))) ; -Character = UseN character_N ; -ChemicalDecomposition = AdjCN (PositA chemical_A) (UseN decomposition_N) ; -ChemicalProcess = AdjCN (PositA chemical_A) (UseN process_N) ; -ChemicalSynthesis = AdjCN (PositA chemical_A) (UseN synthesis_N) ; -Circle = UseN circle_N ; -City = UseN city_N ; -Classifying = UseN2 (VerbToNounV2 classify_V2) ; -ClosedTwoDimensionalFigure = AdjCN (PositA (VerbToParticipeA close_V)) (AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N)) ; -Clothing = UseN clothing_N ; -Cloud = UseN cloud_N ; -Collection = UseN collection_N ; -Combining = UseN2 (VerbToNounV2 combine_V2) ; -Combustion = UseN combustion_N ; -CommercialAgent = AdjCN (PositA commercial_A) (UseN agent_N) ; -CommercialService = AdjCN (PositA commercial_A) (UseN service_N) ; -Committing = UseN2 (VerbToNounV2 commit_V2) ; -Communication = UseN communication_N ; -Comparing = UseN2 (VerbToNounV2 compare_V2) ; -ComplexNumber = AdjCN (PositA complex_A) (UseN number_N) ; -CompositeUnitOfMeasure = AdjCN (PositA composite_A) (AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN measure_N)))) ; -CompoundSubstance = AdjCN (PositA compound_A) (UseN substance_N) ; -ComputerLanguage = ApposCN (UseN computer_N) (MassNP (UseN language_N)) ; -ComputerProgram = ApposCN (UseN computer_N) (MassNP (UseN program_N)) ; -ComputerProgramming = ApposCN (UseN computer_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 program_V2))) ; -Condensing = UseN2 (VerbToNounV2 condense_V2) ; -Confining = UseN2 (VerbToNounV2 confine_V2) ; -ConsciousnessAttribute = ApposCN (UseN consciousness_N) (MassNP (UseN attribute_N)) ; -ConstantQuantity = AdjCN (PositA constant_A) (UseN quantity_N) ; -Constructing = UseN2 (VerbToNounV2 construct_V2) ; -ContentBearingObject = AdjCN (PositA content_A) (AdjCN (PositA (VerbToGerundA bear_V2)) (UseN object_N)) ; -ContentBearingProcess = AdjCN (PositA content_A) (AdjCN (PositA (VerbToGerundA bear_V)) (UseN process_N)) ; -ContentDevelopment = AdjCN (PositA content_A) (UseN development_N) ; -Contest = UseN contest_N ; -ContestAttribute = ApposCN (UseN contest_N) (MassNP (UseN attribute_N)) ; -Continent = UseN continent_N ; -Cooking = UseN cooking_N ; -Cooling = UseN2 (VerbToNounV2 cool_V2) ; -Cooperation = UseN cooperation_N ; -Corporation = UseN corporation_N ; -Counting = UseN2 (VerbToNounV2 count_V2) ; -County = UseN county_N ; -Covering = UseN covering_N ; -Creation = UseN creation_N ; -Crustacean = UseN crustacean_N ; -Currency = UseN currency_N ; -CurrencyMeasure = ApposCN (UseN currency_N) (MassNP (UseN measure_N)) ; -Cutting = UseN cutting_N ; -Damaging = UseN2 (VerbToNounV2 damage_V2) ; -Dancing = UseN dancing_N ; -Day = UseN day_N ; -Death = UseN death_N ; -December = UseN december_N ; -Deciding = UseN2 (VerbToNounV2 decide_V2) ; -Declaring = UseN2 (VerbToNounV2 declare_V2) ; -Decoding = UseN2 (VerbToNounV2 decode_V2) ; -Decreasing = UseN2 (VerbToNounV2 decrease_V2) ; -DeductiveArgument = AdjCN (PositA deductive_A) (UseN argument_N) ; -Demonstrating = UseN2 (VerbToNounV2 demonstrate_V2) ; -Designing = UseN designing_N ; -Destruction = UseN destruction_N ; -Detaching = UseN2 (VerbToNounV2 detach_V2) ; -Device = UseN device_N ; -DiagnosticProcess = AdjCN (PositA diagnostic_A) (UseN process_N) ; -Digesting = UseN2 (VerbToNounV2 digest_V2) ; -DirectedGraph = AdjCN (PositA (VerbToParticipeA direct_V)) (UseN graph_N) ; -Directing = UseN2 (VerbToNounV2 direct_V2) ; -DirectionChange = ApposCN (UseN direction_N) (MassNP (UseN change_N)) ; -DirectionalAttribute = AdjCN (PositA directional_A) (UseN attribute_N) ; -Discovering = UseN2 (VerbToNounV2 discover_V2) ; -DiseaseOrSyndrome = ConjCN or_Conj (BaseCN (UseN disease_N) (UseN syndrome_N)) ; -Disseminating = UseN2 (VerbToNounV2 disseminate_V2) ; -Drinking = UseN drinking_N ; -Driving = UseN2 (VerbToNounV2 drive_V2) ; -Drying = UseN2 (VerbToNounV2 dry_V2) ; -DualObjectProcess = AdjCN (PositA dual_A) (ApposCN (UseN object_N) (MassNP (UseN process_N))) ; -Eating = UseN2 (VerbToNounV2 eat_V2) ; -EducationalOrganization = AdjCN (PositA educational_A) (UseN organization_N) ; -EducationalProcess = AdjCN (PositA educational_A) (UseN process_N) ; -Egg = UseN egg_N ; -Election = UseN election_N ; -Electron = UseN electron_N ; -ElementalSubstance = AdjCN (PositA elemental_A) (UseN substance_N) ; -EmotionalState = AdjCN (PositA emotional_A) (UseN state_N) ; -Encoding = UseN2 (VerbToNounV2 encode_V2) ; -EngineeringComponent = AdjCN (PositA (VerbToGerundA engineer_V)) (UseN component_N) ; -EngineeringConnection = AdjCN (PositA (VerbToGerundA engineer_V)) (UseN connection_N) ; -Entity = UseN entity_N ; -Enzyme = UseN enzyme_N ; -EthnicGroup = AdjCN (PositA ethnic_A) (UseN group_N) ; -Evaporating = UseN2 (VerbToNounV2 evaporate_V2) ; -EvenInteger = AdjCN (PositA even_A) (UseN integer_N) ; -Experimenting = UseN (VerbToNoun experiment_V) ; -Explanation = UseN explanation_N ; -Expressing = UseN2 (VerbToNounV2 express_V2) ; -Fabric = UseN fabric_N ; -FactualText = AdjCN (PositA factual_A) (UseN text_N) ; -Falling = UseN2 (VerbToNounV2 befall_V2) ; -FamilyGroup = ApposCN (UseN family_N) (MassNP (UseN group_N)) ; -FatTissue = AdjCN (PositA fat_A) (UseN tissue_N) ; -February = UseN february_N ; -Fern = UseN fern_N ; -FictionalText = AdjCN (PositA fictional_A) (UseN text_N) ; -FieldOfStudy = AdvCN (UseN field_N) (PrepNP part_Prep (MassNP (UseN study_N))) ; -FinancialInstrument = AdjCN (PositA financial_A) (UseN instrument_N) ; -FinancialTransaction = AdjCN (PositA financial_A) (UseN transaction_N) ; -FiniteSet = AdjCN (PositA finite_A) (UseN set_N) ; -Fish = UseN fish_N ; -FlowRegion = ApposCN (UseN flow_N) (MassNP (UseN region_N)) ; -FloweringPlant = AdjCN (PositA (VerbToGerundA flower_V)) (UseN plant_N) ; -Food = UseN food_N ; -Freezing = UseN2 (VerbToNounV2 deep_freeze_V2) ; -FrequencyMeasure = ApposCN (UseN frequency_N) (MassNP (UseN measure_N)) ; -FreshWaterArea = AdjCN (PositA fresh_A) (ApposCN (UseN water_N) (MassNP (UseN area_N))) ; -Friday = UseN friday_N ; -FruitOrVegetable = ConjCN or_Conj (BaseCN (UseN fruit_N) (UseN vegetable_N)) ; -FunctionQuantity = ApposCN (UseN function_N) (MassNP (UseN quantity_N)) ; -Funding = UseN2 (VerbToNounV2 fund_V2) ; -Fungus = UseN fungus_N ; -Game = UseN game_N ; -GasMixture = ApposCN (UseN gas_N) (MassNP (UseN mixture_N)) ; -GasMotion = ApposCN (UseN gas_N) (MassNP (UseN motion_N)) ; -GeologicalProcess = AdjCN (PositA geological_A) (UseN process_N) ; -GeometricFigure = AdjCN (PositA geometric_A) (UseN figure_N) ; -GeometricPoint = AdjCN (PositA geometric_A) (UseN point_N) ; -Gesture = UseN gesture_N ; -Getting = UseN2 (VerbToNounV2 beget_V2) ; -Giving = UseN2 (VerbToNounV2 give_V2) ; -GivingBack = AdjCN (PositA (VerbToGerundA give_V)) (UseN back_N) ; -Gland = UseN gland_N ; -Government = UseN government_N ; -GovernmentOrganization = ApposCN (UseN government_N) (MassNP (UseN organization_N)) ; -Grabbing = UseN2 (VerbToNounV2 grab_V2) ; -Graduation = UseN graduation_N ; -Graph = UseN graph_N ; -GraphArc = ApposCN (UseN graph_N) (MassNP (UseN arc_N)) ; -GraphCircuit = ApposCN (UseN graph_N) (MassNP (UseN circuit_N)) ; -GraphElement = ApposCN (UseN graph_N) (MassNP (UseN element_N)) ; -GraphLoop = ApposCN (UseN graph_N) (MassNP (UseN loop_N)) ; -GraphNode = ApposCN (UseN graph_N) (MassNP (UseN node_N)) ; -GraphPath = ApposCN (UseN graph_N) (MassNP (UseN path_N)) ; -Group = UseN group_N ; -GroupOfPeople = AdvCN (UseN group_N) (PrepNP part_Prep (MassNP (UseN people_N))) ; -Growth = UseN growth_N ; -Guiding = UseN2 (VerbToNounV2 guide_V2) ; -Hearing = UseN hearing_N ; -Heating = UseN heating_N ; -Hiring = UseN2 (VerbToNounV2 hire_V2) ; -Hole = UseN hole_N ; -Hormone = UseN hormone_N ; -Hour = UseN hour_N ; -House = UseN house_N ; -Human = UseN human_N ; -HumanLanguage = AdjCN (PositA human_A) (UseN language_N) ; -Hunting = UseN hunting_N ; -Icon = UseN icon_N ; -ImaginaryNumber = AdjCN (PositA imaginary_A) (UseN number_N) ; -Impacting = UseN2 (VerbToNounV2 impact_V2) ; -Impelling = UseN2 (VerbToNounV2 impel_V2) ; -Increasing = UseN2 (VerbToNounV2 increase_V2) ; -InductiveArgument = AdjCN (PositA inductive_A) (UseN argument_N) ; -InformationMeasure = ApposCN (UseN information_N) (MassNP (UseN measure_N)) ; -Ingesting = UseN2 (VerbToNounV2 ingest_V2) ; -Injecting = UseN2 (VerbToNounV2 inject_V2) ; -Injuring = UseN2 (VerbToNounV2 injure_V2) ; -Insect = UseN insect_N ; -Inserting = UseN2 (VerbToNounV2 insert_V2) ; -Integer = UseN integer_N ; -IntentionalProcess = AdjCN (PositA intentional_A) (UseN process_N) ; -IntentionalPsychologicalProcess = AdjCN (PositA intentional_A) (AdjCN (PositA psychological_A) (UseN process_N)) ; -InternalAttribute = AdjCN (PositA internal_A) (UseN attribute_N) ; -InternalChange = AdjCN (PositA internal_A) (UseN change_N) ; -Interpreting = UseN2 (VerbToNounV2 interpret_V2) ; -InvalidDeductiveArgument = AdjCN (PositA invalid_A) (AdjCN (PositA deductive_A) (UseN argument_N)) ; -Invertebrate = UseN invertebrate_N ; -Investigating = UseN2 (VerbToNounV2 investigate_V2) ; -IrrationalNumber = AdjCN (PositA irrational_A) (UseN number_N) ; -Island = UseN island_N ; -January = UseN january_N ; -JoiningAnOrganization = ApposCN (UseN2 (VerbToNounV2 join_V2)) (DetCN (DetQuant IndefArt NumSg) (UseN organization_N)) ; -Judging = UseN2 (VerbToNounV2 judge_V2) ; -JudicialOrganization = AdjCN (PositA judicial_A) (UseN organization_N) ; -JudicialProcess = AdjCN (PositA judicial_A) (UseN process_N) ; -July = UseN july_N ; -June = UseN june_N ; -Keeping = UseN keeping_N ; -Killing = UseN killing_N ; -LandArea = ApposCN (UseN land_N) (MassNP (UseN area_N)) ; -Language = UseN language_N ; -LeapYear = ApposCN (UseN leap_N) (MassNP (UseN year_N)) ; -Learning = UseN learning_N ; -LeavingAnOrganization = ApposCN (UseN2 (VerbToNounV2 leave_V2)) (DetCN (DetQuant IndefArt NumSg) (UseN organization_N)) ; -LegalAction = AdjCN (PositA legal_A) (UseN action_N) ; -LegalDecision = AdjCN (PositA legal_A) (UseN decision_N) ; -Lending = UseN2 (VerbToNounV2 lend_V2) ; -LengthMeasure = ApposCN (UseN length_N) (MassNP (UseN measure_N)) ; -LinguisticCommunication = AdjCN (PositA linguistic_A) (UseN communication_N) ; -LinguisticExpression = AdjCN (PositA linguistic_A) (UseN expression_N) ; -LiquidMixture = AdjCN (PositA liquid_A) (UseN mixture_N) ; -LiquidMotion = AdjCN (PositA liquid_A) (UseN motion_N) ; -List = UseN list_N ; -Listening = UseN (VerbToNoun listen_V) ; -LogicalOperator = AdjCN (PositA logical_A) (UseN operator_N) ; -Looking = UseN2 (VerbToNounV2 look_V2) ; -Machine = UseN machine_N ; -Maintaining = UseN2 (VerbToNounV2 maintain_V2) ; -Making = UseN making_N ; -Mammal = UseN mammal_N ; -Man = UseN man_N ; -Managing = UseN2 (VerbToNounV2 manage_V2) ; -ManualHumanLanguage = AdjCN (PositA manual_A) (AdjCN (PositA human_A) (UseN language_N)) ; -Manufacture = UseN manufacture_N ; -Manufacturer = UseN manufacturer_N ; -March = UseN march_N ; -Marsupial = UseN marsupial_N ; -MassMeasure = ApposCN (UseN mass_N) (MassNP (UseN measure_N)) ; -Matriculation = UseN matriculation_N ; -May = UseN may_N ; -Measuring = UseN2 (VerbToNounV2 measure_V2) ; -MeasuringDevice = AdjCN (PositA (VerbToGerundA measure_V)) (UseN device_N) ; -Meat = UseN meat_N ; -Meeting = UseN meeting_N ; -Melting = UseN2 (VerbToNounV2 melt_V2) ; -MercantileOrganization = AdjCN (PositA mercantile_A) (UseN organization_N) ; -Metal = UseN metal_N ; -MilitaryForce = AdjCN (PositA military_A) (UseN force_N) ; -MilitaryOrganization = AdjCN (PositA military_A) (UseN organization_N) ; -MilitaryProcess = AdjCN (PositA military_A) (UseN process_N) ; -Mineral = UseN mineral_N ; -Minute = UseN minute_N ; -Mixture = UseN mixture_N ; -Molecule = UseN molecule_N ; -Monday = UseN monday_N ; -Monkey = UseN monkey_N ; -Month = UseN month_N ; -Morpheme = UseN morpheme_N ; -Moss = UseN moss_N ; -Motion = UseN motion_N ; -MotionDownward = AdvCN (UseN motion_N) downward_Adv ; -MotionPicture = ApposCN (UseN motion_N) (MassNP (UseN picture_N)) ; -MotionUpward = AdvCN (UseN motion_N) upward_Adv ; -Muscle = UseN muscle_N ; -Music = UseN music_N ; -MusicalInstrument = AdjCN (PositA musical_A) (UseN instrument_N) ; -Naming = UseN2 (VerbToNounV2 name_V2) ; -Nation = UseN nation_N ; -NaturalLanguage = AdjCN (PositA natural_A) (UseN language_N) ; -NaturalProcess = AdjCN (PositA natural_A) (UseN process_N) ; -NaturalSubstance = AdjCN (PositA natural_A) (UseN substance_N) ; -NegativeInteger = AdjCN (PositA negative_A) (UseN integer_N) ; -NegativeRealNumber = AdjCN (PositA negative_A) (AdjCN (PositA real_A) (UseN number_N)) ; -Neutron = UseN neutron_N ; -NormativeAttribute = AdjCN (PositA normative_A) (UseN attribute_N) ; -Noun = UseN noun_N ; -NounPhrase = ApposCN (UseN noun_N) (MassNP (UseN phrase_N)) ; -November = UseN november_N ; -NullSet = AdjCN (PositA null_A) (UseN set_N) ; -Number = UseN number_N ; -Nutrient = UseN nutrient_N ; -Object = UseN object_N ; -ObjectiveNorm = AdjCN (PositA objective_A) (UseN norm_N) ; -October = UseN october_N ; -OddInteger = AdjCN (PositA odd_A) (UseN integer_N) ; -Offering = UseN offering_N ; -OlfactoryAttribute = AdjCN (PositA olfactory_A) (UseN attribute_N) ; -OneDimensionalFigure = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N) ; -OpenTwoDimensionalFigure = AdjCN (PositA open_A) (AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N)) ; -Ordering = UseN ordering_N ; -Organ = UseN organ_N ; -OrganOrTissueProcess = ApposCN (ConjCN or_Conj (BaseCN (UseN organ_N) (UseN tissue_N))) (MassNP (UseN process_N)) ; -OrganicObject = AdjCN (PositA organic_A) (UseN object_N) ; -Organism = UseN organism_N ; -OrganismProcess = ApposCN (UseN organism_N) (MassNP (UseN process_N)) ; -Organization = UseN organization_N ; -OrganizationalProcess = AdjCN (PositA organizational_A) (UseN process_N) ; -Oval = UseN oval_N ; -ParamilitaryOrganization = AdjCN (PositA paramilitary_A) (UseN organization_N) ; -ParticleWord = ApposCN (UseN particle_N) (MassNP (UseN word_N)) ; -Patent = UseN patent_N ; -Perception = UseN perception_N ; -PerceptualAttribute = AdjCN (PositA perceptual_A) (UseN attribute_N) ; -Periodical = UseN periodical_N ; -PermanentResidence = AdjCN (PositA permanent_A) (UseN residence_N) ; -Phrase = UseN phrase_N ; -PhysicalAttribute = AdjCN (PositA physical_A) (UseN attribute_N) ; -PhysicalQuantity = AdjCN (PositA physical_A) (UseN quantity_N) ; -PhysicalState = AdjCN (PositA physical_A) (UseN state_N) ; -PhysicalSystem = AdjCN (PositA physical_A) (UseN system_N) ; -Plan = UseN plan_N ; -PlaneAngleMeasure = ApposCN (ApposCN (UseN plane_N) (MassNP (UseN angle_N))) (MassNP (UseN measure_N)) ; -Planning = UseN2 (VerbToNounV2 plan_V2) ; -Plant = UseN plant_N ; -PlantAnatomicalStructure = ApposCN (UseN plant_N) (MassNP (AdjCN (PositA anatomical_A) (UseN structure_N))) ; -PlantSubstance = ApposCN (UseN plant_N) (MassNP (UseN substance_N)) ; -Poisoning = UseN2 (VerbToNounV2 poison_V2) ; -Poking = UseN2 (VerbToNounV2 poke_V2) ; -PoliticalOrganization = AdjCN (PositA political_A) (UseN organization_N) ; -PoliticalProcess = AdjCN (PositA political_A) (UseN process_N) ; -Pollen = UseN pollen_N ; -Position = UseN position_N ; -PositiveInteger = AdjCN (PositA positive_A) (UseN integer_N) ; -PositiveRealNumber = AdjCN (PositA positive_A) (AdjCN (PositA real_A) (UseN number_N)) ; -Precipitation = UseN precipitation_N ; -Predicting = UseN2 (VerbToNounV2 predict_V2) ; -PrepositionalPhrase = AdjCN (PositA prepositional_A) (UseN phrase_N) ; -Pretending = UseN2 (VerbToNounV2 pretend_V2) ; -Primate = UseN primate_N ; -PrimeNumber = AdjCN (PositA prime_A) (UseN number_N) ; -ProbabilityAttribute = ApposCN (UseN probability_N) (MassNP (UseN attribute_N)) ; -Procedure = UseN procedure_N ; -Process = UseN process_N ; -Product = UseN product_N ; -Proposition = UseN proposition_N ; -Protein = UseN protein_N ; -Proton = UseN proton_N ; -PseudoGraph = AdjCN (PositA pseudo_A) (UseN graph_N) ; -PsychologicalAttribute = AdjCN (PositA psychological_A) (UseN attribute_N) ; -PsychologicalProcess = AdjCN (PositA psychological_A) (UseN process_N) ; -Publication = UseN publication_N ; -PureSubstance = AdjCN (PositA pure_A) (UseN substance_N) ; -Pursuing = UseN2 (VerbToNounV2 pursue_V2) ; -Putting = UseN2 (VerbToNounV2 put_V2) ; -Quantity = UseN quantity_N ; -QuantityChange = ApposCN (UseN quantity_N) (MassNP (UseN change_N)) ; -Questioning = UseN2 (VerbToNounV2 question_V2) ; -Radiating = UseN2 (VerbToNounV2 radiate_V2) ; -RadiatingLight = AdjCN (PositA (VerbToGerundA radiate_V)) (UseN light_N) ; -RadiatingSound = AdjCN (PositA (VerbToGerundA radiate_V)) (UseN sound_N) ; -RationalNumber = AdjCN (PositA rational_A) (UseN number_N) ; -Reading = UseN reading_N ; -RealNumber = AdjCN (PositA real_A) (UseN number_N) ; -Reasoning = UseN reasoning_N ; -RecreationOrExercise = ConjCN or_Conj (BaseCN (UseN recreation_N) (UseN exercise_N)) ; -Region = UseN region_N ; -Releasing = UseN2 (VerbToNounV2 release_V2) ; -ReligiousOrganization = AdjCN (PositA religious_A) (UseN organization_N) ; -ReligiousProcess = AdjCN (PositA religious_A) (UseN process_N) ; -Remembering = UseN2 (VerbToNounV2 remember_V2) ; -Removing = UseN2 (VerbToNounV2 remove_V2) ; -Repairing = UseN2 (VerbToNounV2 repair_V2) ; -ReproductiveBody = AdjCN (PositA reproductive_A) (UseN body_N) ; -Reptile = UseN reptile_N ; -Requesting = UseN2 (VerbToNounV2 request_V2) ; -Residence = UseN residence_N ; -ResidentialBuilding = AdjCN (PositA residential_A) (UseN building_N) ; -Roadway = UseN roadway_N ; -Rodent = UseN rodent_N ; -Room = UseN room_N ; -Running = UseN running_N ; -SaltWaterArea = AdjCN (PositA salt_A) (ApposCN (UseN water_N) (MassNP (UseN area_N))) ; -SaturationAttribute = ApposCN (UseN saturation_N) (MassNP (UseN attribute_N)) ; -Saturday = UseN saturday_N ; -Second = UseN second_N ; -Seed = UseN seed_N ; -Seeing = UseN2 (VerbToNounV2 foresee_V2) ; -Selecting = UseN2 (VerbToNounV2 select_V2) ; -SelfConnectedObject = ApposCN (UseN self_N) (MassNP (AdjCN (PositA (VerbToParticipeA connect_V)) (UseN object_N))) ; -Selling = UseN selling_N ; -Sentence = UseN sentence_N ; -SentientAgent = AdjCN (PositA sentient_A) (UseN agent_N) ; -Separating = UseN2 (VerbToNounV2 separate_V2) ; -September = UseN september_N ; -Series = UseN series_N ; -ServiceProcess = ApposCN (UseN service_N) (MassNP (UseN process_N)) ; -Set = UseN set_N ; -SetOrClass = ConjCN or_Conj (BaseCN (UseN set_N) (UseN class_N)) ; -SexAttribute = ApposCN (UseN sex_N) (MassNP (UseN attribute_N)) ; -SexualReproduction = AdjCN (PositA sexual_A) (UseN reproduction_N) ; -ShapeAttribute = ApposCN (UseN shape_N) (MassNP (UseN attribute_N)) ; -ShapeChange = ApposCN (UseN shape_N) (MassNP (UseN change_N)) ; -Shooting = UseN shooting_N ; -ShoreArea = ApposCN (UseN shore_N) (MassNP (UseN area_N)) ; -Singing = UseN singing_N ; -SingleAgentProcess = AdjCN (PositA single_A) (ApposCN (UseN agent_N) (MassNP (UseN process_N))) ; -SingleFamilyResidence = AdjCN (PositA single_A) (ApposCN (UseN family_N) (MassNP (UseN residence_N))) ; -Smelling = UseN2 (VerbToNounV2 smell_V2) ; -Smoke = UseN smoke_N ; -SocialInteraction = AdjCN (PositA social_A) (UseN interaction_N) ; -SocialRole = AdjCN (PositA social_A) (UseN role_1_N) ; -SocialUnit = AdjCN (PositA social_A) (UseN unit_N) ; -SolidAngleMeasure = AdjCN (PositA solid_A) (ApposCN (UseN angle_N) (MassNP (UseN measure_N))) ; -Solution = UseN solution_N ; -SoundAttribute = AdjCN (PositA sound_A) (UseN attribute_N) ; -Speaking = UseN2 (VerbToNounV2 bespeak_V2) ; -SpokenHumanLanguage = AdjCN (PositA (VerbToParticipeA speak_V)) (AdjCN (PositA human_A) (UseN language_N)) ; -Spore = UseN spore_N ; -Sport = UseN sport_N ; -StateChange = ApposCN (UseN state_N) (MassNP (UseN change_N)) ; -StateOfMind = AdvCN (UseN state_N) (PrepNP part_Prep (MassNP (UseN mind_N))) ; -StateOrProvince = ConjCN or_Conj (BaseCN (UseN state_N) (UseN province_N)) ; -StaticWaterArea = AdjCN (PositA static_A) (ApposCN (UseN water_N) (MassNP (UseN area_N))) ; -Stating = UseN2 (VerbToNounV2 state_V2) ; -StationaryArtifact = AdjCN (PositA stationary_A) (UseN artifact_N) ; -StreamWaterArea = ApposCN (ApposCN (UseN stream_N) (MassNP (UseN water_N))) (MassNP (UseN area_N)) ; -SubatomicParticle = AdjCN (PositA subatomic_A) (UseN particle_N) ; -SubjectiveAssessmentAttribute = AdjCN (PositA subjective_A) (ApposCN (UseN assessment_N) (MassNP (UseN attribute_N))) ; -Substance = UseN substance_N ; -Substituting = UseN2 (VerbToNounV2 substitute_V2) ; -Summary = UseN summary_N ; -Sunday = UseN sunday_N ; -Supposing = UseN2 (VerbToNounV2 suppose_V2) ; -SurfaceChange = ApposCN (UseN surface_N) (MassNP (UseN change_N)) ; -Surgery = UseN surgery_N ; -Suspension = UseN suspension_N ; -Swimming = UseN swimming_N ; -SymbolicString = AdjCN (PositA symbolic_A) (UseN string_N) ; -SyntheticSubstance = AdjCN (PositA synthetic_A) (UseN substance_N) ; -TactilePerception = AdjCN (PositA tactile_A) (UseN perception_N) ; -TasteAttribute = ApposCN (UseN taste_N) (MassNP (UseN attribute_N)) ; -Tasting = UseN2 (VerbToNounV2 taste_V2) ; -TemperatureMeasure = ApposCN (UseN temperature_N) (MassNP (UseN measure_N)) ; -TemporaryResidence = AdjCN (PositA temporary_A) (UseN residence_N) ; -TerminatingEmployment = AdjCN (PositA (VerbToGerundA terminate_V)) (UseN employment_N) ; -Text = UseN text_N ; -TextureAttribute = ApposCN (UseN texture_N) (MassNP (UseN attribute_N)) ; -TherapeuticProcess = AdjCN (PositA therapeutic_A) (UseN process_N) ; -ThreeDimensionalFigure = AdjCN (PositA (compoundA (regA "three-dimensional"))) (UseN figure_N) ; -Thursday = UseN thursday_N ; -TimeDependentQuantity = ApposCN (ApposCN (UseN time_N) (MassNP (UseN dependent_N))) (MassNP (UseN quantity_N)) ; -TimeDuration = ApposCN (UseN time_N) (MassNP (UseN duration_N)) ; -TimeInterval = ApposCN (UseN time_N) (MassNP (UseN interval_N)) ; -TimeMeasure = ApposCN (UseN time_N) (MassNP (UseN measure_N)) ; -TimePoint = ApposCN (UseN time_N) (MassNP (UseN point_N)) ; -TimePosition = ApposCN (UseN time_N) (MassNP (UseN position_N)) ; -TimeZone = ApposCN (UseN time_N) (MassNP (UseN zone_N)) ; -Tissue = UseN tissue_N ; -Touching = UseN2 (VerbToNounV2 touch_V2) ; -TraitAttribute = ApposCN (UseN trait_N) (MassNP (UseN attribute_N)) ; -Transaction = UseN transaction_N ; -Transfer = UseN transfer_N ; -Translating = UseN2 (VerbToNounV2 translate_V2) ; -Transportation = UseN transportation_N ; -TransportationDevice = ApposCN (UseN transportation_N) (MassNP (UseN device_N)) ; -Tree = UseN tree_N ; -TruthValue = ApposCN (UseN truth_N) (MassNP (UseN value_N)) ; -Tuesday = UseN tuesday_N ; -TwoDimensionalAngle = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN angle_N) ; -TwoDimensionalFigure = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN figure_N) ; -Uncovering = UseN2 (VerbToNounV2 uncover_V2) ; -UnilateralGetting = AdjCN (PositA unilateral_A) (UseN2 (VerbToNounV2 beget_V2)) ; -UnilateralGiving = AdjCN (PositA unilateral_A) (UseN2 (VerbToNounV2 give_V2)) ; -UniqueList = AdjCN (PositA unique_A) (UseN list_N) ; -UnitOfAngularMeasure = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (AdjCN (PositA angular_A) (UseN measure_N)))) ; -UnitOfArea = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN area_N))) ; -UnitOfAtmosphericPressure = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (AdjCN (PositA atmospheric_A) (UseN pressure_N)))) ; -UnitOfCurrency = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN currency_N))) ; -UnitOfDuration = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN duration_N))) ; -UnitOfFrequency = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN frequency_N))) ; -UnitOfInformation = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN information_N))) ; -UnitOfLength = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN length_N))) ; -UnitOfMass = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN mass_N))) ; -UnitOfMeasure = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN measure_N))) ; -UnitOfTemperature = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN temperature_N))) ; -UnitOfVolume = AdvCN (UseN unit_N) (PrepNP part_Prep (MassNP (UseN volume_N))) ; -ValidDeductiveArgument = AdjCN (PositA valid_A) (AdjCN (PositA deductive_A) (UseN argument_N)) ; -Vehicle = UseN vehicle_N ; -Verb = UseN verb_N ; -VerbPhrase = ApposCN (UseN verb_N) (MassNP (UseN phrase_N)) ; -Vertebrate = UseN vertebrate_N ; -ViolentContest = AdjCN (PositA violent_A) (UseN contest_N) ; -Virus = UseN virus_N ; -VisualAttribute = AdjCN (PositA visual_A) (UseN attribute_N) ; -Vitamin = UseN vitamin_N ; -VocalCords = AdjCN (PositA vocal_A) (UseN cord_N) ; -Vocalizing = UseN2 (VerbToNounV2 vocalize_V2) ; -VolumeMeasure = ApposCN (UseN volume_N) (MassNP (UseN measure_N)) ; -Voting = UseN2 (VerbToNounV2 vote_V2) ; -Walking = UseN walking_N ; -War = UseN war_N ; -Water = UseN water_N ; -WaterArea = ApposCN (UseN water_N) (MassNP (UseN area_N)) ; -WaterCloud = ApposCN (UseN water_N) (MassNP (UseN cloud_N)) ; -WaterMotion = ApposCN (UseN water_N) (MassNP (UseN motion_N)) ; -Weapon = UseN weapon_N ; -WearableItem = AdjCN (PositA wearable_A) (UseN item_N) ; -WeatherProcess = ApposCN (UseN weather_N) (MassNP (UseN process_N)) ; -Wedding = UseN wedding_N ; -Wednesday = UseN wednesday_N ; -Week = UseN week_N ; -Wetting = UseN wetting_N ; -Wind = UseN wind_N ; -Woman = UseN woman_N ; -Word = UseN word_N ; -Worm = UseN worm_N ; -Writing = UseN writing_N ; -Year = UseN year_N ; - - --- nullary functions - -GreatestCommonDivisorFn ob = AdvNP (DetCN (DetQuantOrd DefArt NumSg (OrdSuperl great_A)) (AdjCN (PositA common_A) (UseN divisor_N))) (PrepNP part_Prep (ConjNP and_Conj ob)) ; -LeastCommonMultipleFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA least_A) (AdjCN (PositA common_A) (UseN multiple_N)))) (PrepNP part_Prep (ConjNP and_Conj ob)) ; -ListFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN list_N)) (PrepNP part_Prep (ConjNP and_Conj ob)) ; - --- unary functions - -AbsoluteValueFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA absolute_A) (UseN value_N))) (PrepNP part_Prep ob) ; -AbstractionFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN abstraction_N)) (PrepNP part_Prep (MassNP ob)) ; -BackFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN back_N)) (PrepNP part_Prep ob) ; -BeginFn ob = AdvNP (DetCN (DetQuant DefArt NumPl) (UseN2 (VerbToNounV2 begin_V2))) (PrepNP part_Prep ob) ; -BeginNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA initial_A) (UseN node_N))) (PrepNP part_Prep ob) ; -CeilingFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN ceiling_N)) (PrepNP part_Prep ob) ; -CenterOfCircleFn ob = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN centre_N)) (PrepNP part_Prep (MassNP (UseN circle_N)))) (PrepNP part_Prep ob) ; -ComplementFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN complement_N)) (PrepNP part_Prep ob) ; -CosineFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN cosine_N)) (PrepNP part_Prep ob) ; -CutSetFn ob = AdvCN (AdjCN (PositA (VerbToParticipeA cut_V)) (UseN set_N)) (PrepNP part_Prep ob) ; -DenominatorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN denominator_N)) (PrepNP part_Prep ob) ; -EndFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN end_N)) (PrepNP part_Prep ob) ; -EndNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN end_N) (MassNP (UseN node_N)))) (PrepNP part_Prep ob) ; -ExtensionFn ob = AdvCN (UseN extension_N) (PrepNP part_Prep ob) ; -FloorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN floor_N)) (PrepNP part_Prep ob) ; -FrontFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN front_N)) (PrepNP part_Prep ob) ; -FutureFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN future_N)) (PrepNP part_Prep ob) ; -GeneralizedIntersectionFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA (VerbToParticipeA generalize_V)) (UseN intersection_N))) (PrepNP part_Prep (MassNP ob)) ; -GeneralizedUnionFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA (VerbToParticipeA generalize_V)) (UseN union_N))) (PrepNP part_Prep (MassNP ob)) ; -GovernmentFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN government_N)) (PrepNP part_Prep ob) ; -HoleHostFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN hole_N) (MassNP (UseN host_N)))) (PrepNP part_Prep ob) ; -HoleSkinFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN hole_N) (MassNP (UseN skin_N)))) (PrepNP part_Prep ob) ; -ImaginaryPartFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA imaginary_A) (UseN part_N))) (PrepNP part_Prep ob) ; -ImmediateFamilyFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA immediate_A) (UseN family_N))) (PrepNP part_Prep ob) ; -ImmediateFutureFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA immediate_A) (UseN future_N))) (PrepNP part_Prep ob) ; -ImmediatePastFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA immediate_A) (UseN past_N))) (PrepNP part_Prep ob) ; -InitialNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA initial_A) (UseN node_N))) (PrepNP part_Prep ob) ; -IntegerSquareRootFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN integer_N) square_Adv) (MassNP (UseN root_N)))) (PrepNP part_Prep ob) ; -MagnitudeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN magnitude_N)) (PrepNP part_Prep ob) ; -MinimalCutSetFn ob = AdvCN (AdjCN (PositA minimal_A) (AdjCN (PositA (VerbToParticipeA cut_V)) (UseN set_N))) (PrepNP part_Prep ob) ; -NumeratorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN numerator_N)) (PrepNP part_Prep ob) ; -PastFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN past_N)) (PrepNP part_Prep ob) ; -PathWeightFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN path_N) (MassNP (UseN weight_N)))) (PrepNP part_Prep ob) ; -PowerSetFn ob = AdvCN (ApposCN (UseN power_N) (MassNP (UseN set_N))) (PrepNP part_Prep ob) ; -PredecessorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN predecessor_N)) (PrepNP part_Prep ob) ; -PremisesFn ob = AdvNP (DetCN (DetQuant DefArt NumPl) (UseN premise_N)) (PrepNP part_Prep ob) ; -ProbabilityFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN probability_N)) (PrepNP part_Prep (sentToNoun ob)) ; -PropertyFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN property_N)) (PrepNP part_Prep ob) ; -RationalNumberFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA rational_A) (UseN number_N))) (PrepNP part_Prep ob) ; -RealNumberFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA real_A) (UseN number_N))) (PrepNP part_Prep ob) ; -ReciprocalFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN reciprocal_N)) (PrepNP part_Prep ob) ; -RoundFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA round_A) (UseN value_N))) (PrepNP part_Prep ob) ; -SineFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN sine_N)) (PrepNP part_Prep ob) ; -SquareRootFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA square_A) (UseN root_N))) (PrepNP part_Prep ob) ; -SuccessorFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN successor_N)) (PrepNP part_Prep ob) ; -TangentFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN tangent_N)) (PrepNP part_Prep ob) ; -TerminalNodeFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA terminal_A) (UseN node_N))) (PrepNP part_Prep ob) ; -UnitFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN unit_N)) (PrepNP part_Prep ob) ; -WealthFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN wealth_N)) (PrepNP part_Prep ob) ; -WhenFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN time_N)) (PrepNP part_Prep ob) ; -YearFn ob = AdvCN (UseN year_N) (PrepNP part_Prep ob) ; -KiloFn ob = AdvNP (MassNP (UseN kilo_N)) (PrepNP part_Prep ob) ; -ListLengthFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN length_N)) (PrepNP part_Prep ob) ; -SignumFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN sign_N)) (PrepNP part_Prep ob) ; - --- binary functions - -AdditionFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN addition_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -DayFn ob1 ob2 = AdvCN (ApposCN (UseN day_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; -DivisionFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN division_N)) (PrepNP part_Prep ob1)) (PrepNP to_Prep ob2) ; -EditionFn ob1 ob2 = AdvCN (ApposCN (UseN edition_N) (MassNP ob1)) (PrepNP part_Prep ob2) ; -ExponentiationFn ob1 ob2 = AdvNP (AdvNP ob1 (PrepNP to_Prep (DetCN (DetQuant DefArt NumSg) (UseN power_N)))) (PrepNP part_Prep ob2) ; -GraphPathFn ob1 ob2 = AdvCN (UseN path_N) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -HourFn ob1 ob2 = AdvCN (ApposCN (UseN hour_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; -IntersectionFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN intersection_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -IntervalFn ob1 ob2 = AdvCN (AdvCN (UseN interval_N) (PrepNP from_Prep ob1)) (PrepNP to_Prep ob2) ; -KappaFn ob1 ob2 = ApposCN (AdvCN (AdvCN (UseN class_N) (PrepNP part_Prep ob1)) where_Adv) (sentToNoun ob2) ; -ListConcatenateFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN concatenation_N)) (PrepNP part_Prep ob1)) (PrepNP to_Prep ob2) ; -ListOrderFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN element_N)) (PrepNP with_Prep (MassNP (ApposCN (UseN number_N) ob2)))) (PrepNP in_Prep ob1) ; -LogFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN logarithm_N)) (PrepNP part_Prep ob1)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN base_N) ob2))) ; -MaxFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN maximum_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -MaximalWeightedPathFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN path_N)) (PrepNP part_Prep (MassNP (AdjCN (PositA maximal_A) (UseN weight_N))))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -MinFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN minimum_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -MinimalWeightedPathFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN path_N)) (PrepNP part_Prep (MassNP (AdjCN (PositA minimal_A) (UseN weight_N))))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -MinuteFn ob1 ob2 = AdvCN (ApposCN (UseN minute_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; -MonthFn ob1 ob2 = AdvCN (ApposCN (UseN month_N) (MassNP ob1)) (PrepNP part_Prep (MassNP ob2)) ; -MultiplicationFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN multiplication_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -PerFn ob1 ob2 = AdvNP ob1 (PrepNP per_Prep ob2) ; -PeriodicalIssueFn ob1 ob2 = AdvCN (AdvCN (AdjCN (PositA periodical_A) (UseN issue_N)) (PrepNP part_Prep (MassNP ob1))) (PrepNP with_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN number_N) ob2))) ; -RecurrentTimeIntervalFn ob1 ob2 = AdvCN (AdjCN (PositA recurrent_A) (ApposCN (UseN time_N) (MassNP (UseN interval_N)))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP (MassNP ob1) (MassNP ob2)))) ; -RelativeComplementFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN complement_N) (PrepNP part_Prep ob2)) (MassNP (UseN relative_N)))) (PrepNP to_Prep ob1) ; -RelativeTimeFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (ApposCN (UseN time_N) ob1) (MassNP (UseN relative_N)))) (PrepNP to_Prep ob2) ; -RemainderFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN remainder_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -SecondFn ob1 ob2 = AdvCN (ApposCN (UseN second_N) ob1) (PrepNP part_Prep (MassNP ob2)) ; -SeriesVolumeFn ob1 ob2 = AdvCN (ApposCN (UseN volume_N) ob2) (PrepNP in_Prep (DetCN (DetQuant DefArt NumPl) (ApposCN (UseN series_N) (MassNP ob1)))) ; -SubtractionFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN subtraction_N)) (PrepNP part_Prep ob2)) (PrepNP from_Prep ob1) ; -TemporalCompositionFn ob1 ob2 = AdvCN (AdjCN (PositA temporal_A) (UseN composition_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 (MassNP ob2)))) ; -TimeIntervalFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN time_N) (MassNP (UseN interval_N)))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -UnionFn ob1 ob2 = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN union_N)) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))) ; -WhereFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN location_N)) (PrepNP part_Prep ob1)) (PrepNP at_Prep ob2) ; -DensityFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant IndefArt NumSg) (UseN density_N)) (PrepNP part_Prep ob1)) (PrepNP per_Prep ob2) ; -SpeedFn ob1 ob2 = AdvNP (AdvNP (DetCN (DetQuant IndefArt NumSg) (UseN speed_N)) (PrepNP part_Prep ob1)) (PrepNP per_Prep ob2) ; - --- quaternary functions - -VelocityFn ob1 ob2 ob3 ob4 = AdvNP (AdvNP (AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN velocity_N)) (PrepNP part_Prep ob1)) (PrepNP per_Prep ob2)) (PrepNP part_Prep ob3)) (PrepNP to_Prep ob4) ; - - --- nullary predicates - -contraryAttribute ob1 = mkPolSent (PredVP (ConjNP and_Conj ob1) (UseComp (CompNP (MassNP (AdjCN (PositA contrary_A) (UseN attribute_N)))))) ; -exhaustiveAttribute ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj ob2) (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA exhaustive_A) (UseN decomposition_N))))) (PrepNP part_Prep (MassNP ob1))) (PrepNP in_Prep (DetCN (DetQuant IndefArt NumPl) (UseN instance_N))))) ; -exhaustiveDecomposition ob1 ob2 = mkPolSent (PredVP (MassNP (ConjCN and_Conj ob2)) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA exhaustive_A) (UseN decomposition_N))))) (PrepNP part_Prep (MassNP ob1)))) ; -partition ob1 ob2 = mkPolSent (PredVP (MassNP (ConjCN and_Conj ob2)) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN partition_N)))) (PrepNP part_Prep (MassNP ob1)))) ; - - - --- binary predicates -abstractCounterpart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA abstract_A) (UseN counterpart_N))))) (PrepNP part_Prep ob2))) ; -acquaintance ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN acquaintance_N)))) (PrepNP part_Prep ob2))) ; -atomicNumber ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA atomic_A) (UseN number_N))))) (PrepNP part_Prep ob2))) ; -authors ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN author_N)))) (PrepNP part_Prep (MassNP ob2)))) ; -average ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN average_N)))) (PrepNP part_Prep ob2))) ; -barometricPressure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA barometric_A) (UseN pressure_N))))) (PrepNP part_Prep ob2))) ; -believes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a believe_V2) (sentToNoun ob2))) ; -boilingPoint ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumPl) (ApposCN (UseN2 (VerbToNounV2 boil_V2)) (MassNP (UseN point_N)))))) (PrepNP part_Prep ob2))) ; -causes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a cause_V2) ob2)) ; -causesProposition ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a cause_V2) (sentToNoun ob2))) ; -causesSubclass ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (ComplSlash (SlashV2a cause_V2) (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN class_N))))) (PrepNP part_Prep (MassNP ob2)))) ; -citizen ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN citizen_N)))) (PrepNP part_Prep ob2))) ; -conclusion ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN conclusion_N)))) (PrepNP part_Prep ob2))) ; -connected ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 connect_V2) (PrepNP to_Prep ob2))) ; -considers ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a consider_V2) (sentToNoun ob2))) ; -consistent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA consistent_A))) (PrepNP with_Prep ob2))) ; -containsInformation ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a contain_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN information_N) ob2)))) ; -cooccur ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseV occur_V) (PositAdvAdj simultaneous_A)) (PrepNP with_Prep ob2))) ; -copy ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN copy_N)))) (PrepNP part_Prep ob2))) ; -date ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN date_N)))) (PrepNP part_Prep ob2))) ; -decreasesLikelihood ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (ComplSlash (SlashV2a decrease_V2) (DetCN (DetQuant DefArt NumSg) (UseN possibility_N))) (PrepNP part_Prep (sentToNoun ob2)))) ; -desires ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a desire_V2) (sentToNoun ob2))) ; -diameter ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN diameter_N)))) (PrepNP part_Prep ob2))) ; -duration ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN duration_N)))) (PrepNP part_Prep ob2))) ; -earlier ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA early_A ob2)))) ; -editor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN editor_N)))) (PrepNP part_Prep (MassNP ob2)))) ; -element ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN element_N)))) (PrepNP part_Prep ob2))) ; -employs ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a employ_V2) ob2)) ; -entails ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a entail_V2) (sentToNoun ob2))) ; -equal ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA equal_A))) (PrepNP to_Prep ob2))) ; -exploits ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a exploit_V2) ob2)) ; -expressedInLanguage ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 express_V2) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2))))) ; -faces ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a face_V2) ob2)) ; -familyRelation ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN family_N) (MassNP (UseN relation_N)))))) (PrepNP part_Prep ob2))) ; -frequency ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN frequency_N)))) (PrepNP part_Prep ob2))) ; -geometricPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA geometric_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; -graphMeasure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN measure_N)))) (PrepNP part_Prep ob2))) ; -graphPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN part_N)))) (PrepNP part_Prep ob2))) ; -hasPurpose ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN purpose_N) (sentToNoun ob2))))) ; -hasSkill ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN skill_N) ob2)))) ; -holdsDuring ob1 ob2 = mkPolSent (PredVP (sentToNoun ob2) (AdvVP (UseV hold_V) (PrepNP during_Prep ob1))) ; -holdsObligation ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a behold_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN obligation_N) ob2)))) ; -holdsRight ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (ComplSlash (SlashV2a behold_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN right_N) ob2)))) ; -hole ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN hole_N)))) (PrepNP part_Prep ob2))) ; -identicalListItems ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA identical_A) (UseN item_N))))) ; -inList ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN element_N)))) (PrepNP part_Prep ob2))) ; -increasesLikelihood ob1 ob2 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (ComplSlash (SlashV2a increase_V2) (DetCN (DetQuant DefArt NumSg) (UseN possibility_N))) (PrepNP part_Prep (sentToNoun ob2)))) ; -independentProbability ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP (sentToNoun ob1) (sentToNoun ob2))) (ComplSlash (SlashV2a have_V2) (MassNP (AdjCN (PositA independent_A) (UseN probability_N))))) ; -inhabits ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a inhabit_V2) ob2)) ; -inhibits ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a inhibit_V2) (MassNP ob2))) ; -knows ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a know_V2) (sentToNoun ob2))) ; -larger ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA large_A ob2)))) ; -leader ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN leader_N)))) (PrepNP part_Prep ob2))) ; -legalRelation ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA legal_A) (UseN relation_N))))) (PrepNP part_Prep ob2))) ; -lessThanOrEqualTo ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (ConjAP or_Conj (BaseAP (PositA less_A) (PositA equal_A))))) (PrepNP to_Prep ob2))) ; -lineMeasure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN measure_N)))) (PrepNP part_Prep ob2))) ; -material ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN material_N)))) (PrepNP part_Prep ob2))) ; -measure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN measure_N)))) (PrepNP part_Prep ob2))) ; -meltingPoint ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumPl) (ApposCN (UseN2 (VerbToNounV2 melt_V2)) (MassNP (UseN point_N)))))) (PrepNP part_Prep ob2))) ; -multiplicativeFactor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN factor_N)))) (PrepNP part_Prep ob2))) ; -mutualAcquaintance ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA mutual_A) (UseN acquaintance_N)))))) ; -needs ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a need_V2) ob2)) ; -parallel ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA parallel_A))) (PrepNP to_Prep ob2))) ; -parent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN parent_N)))) (PrepNP part_Prep ob2))) ; -partialOrderingOn ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA partial_A) (UseN ordering_N))))) (PrepNP on_Prep ob2))) ; -pathLength ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN length_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN path_N) ob2))))) ; -possesses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a possess_V2) ob2)) ; -precondition ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN precondition_N)))) (PrepNP part_Prep (MassNP ob2)))) ; -premise ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN premise_N)))) (PrepNP part_Prep ob2))) ; -prevents ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a prevent_V2) (MassNP ob2))) ; -property ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN property_N)))) (PrepNP part_Prep ob2))) ; -publishes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a publish_V2) (MassNP ob2))) ; -radius ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN radius_N)))) (PrepNP part_Prep ob2))) ; -refers ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseV refer_V) (PrepNP to_Prep ob2))) ; -reflexiveOn ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (PositA reflexive_A))) (PrepNP on_Prep ob2))) ; -relatedEvent ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA (VerbToParticipeA relate_V)) (UseN event_N)))))) ; -relatedInternalConcept ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA (VerbToParticipeA relate_V)) (AdjCN (PositA internal_A) (UseN concept_N))))))) ; -relative ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN relative_N)))) (PrepNP part_Prep ob2))) ; -sibling ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN sibling_N)))) (PrepNP part_Prep ob2))) ; -smaller ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA small_A ob2)))) ; -subAttribute ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN attribute_N)))))) (PrepNP part_Prep ob2))) ; -subCollection ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN collection_N)))))) (PrepNP part_Prep ob2))) ; -subGraph ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN graph_N)))))) (PrepNP part_Prep ob2))) ; -subList ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN list_N)))))) (PrepNP part_Prep ob2))) ; -subProcess ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN process_N)))))) (PrepNP part_Prep ob2))) ; -subProposition ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN proposition_N)))))) (PrepNP part_Prep ob2))) ; -subSystem ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN system_N)))))) (PrepNP part_Prep ob2))) ; -subclass ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN class_N)))))) (PrepNP part_Prep ob2))) ; - -subsumesContentClass ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (ComplSlash (SlashV2a subsume_V2) (DetCN (DetQuant DefArt NumSg) (UseN content_N))) (PrepNP part_Prep (MassNP ob2)))) ; -subsumesContentInstance ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a subsume_V2) (DetCN (DetQuant DefArt NumSg) (UseN content_N))) (PrepNP part_Prep ob2))) ; -successorAttribute ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN successor_N) (MassNP (UseN attribute_N)))))) (PrepNP part_Prep ob2))) ; -systemPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN part_N)))) (PrepNP part_Prep ob2))) ; -temporalPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA temporal_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; -time ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN time_N)))) (PrepNP part_Prep ob2))) ; -totalOrderingOn ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA total_A) (UseN ordering_N))))) (PrepNP on_Prep ob2))) ; -traverses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a traverse_V2) ob2)) ; -uses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a use_V2) ob2)) ; -version ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN version_N)))) (PrepNP part_Prep (MassNP ob2)))) ; -wants ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a want_V2) ob2)) ; -wears ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a outwear_V2) ob2)) ; -weight ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN weight_N)))) (PrepNP part_Prep ob2))) ; -age ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN age_N)))) (PrepNP part_Prep ob2))) ; -agent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN agent_N)))) (PrepNP part_Prep ob2))) ; -ancestor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN ancestor_N)))) (PrepNP part_Prep ob2))) ; -angleOfFigure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN angle_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN figure_N) ob2))))) ; -attends ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a attend_V2) ob2)) ; -attribute ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN attribute_N)))) (PrepNP part_Prep ob2))) ; -before ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAdv (PrepNP before_Prep ob2)))) ; -bottom ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN bottom_N)))) (PrepNP part_Prep ob2))) ; -side ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN side_N)))) (PrepNP part_Prep ob2))) ; -surface ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN surface_N)))) (PrepNP part_Prep ob2))) ; -top ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN top_N)))) (PrepNP part_Prep ob2))) ; -brother ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN brother_N)))) (PrepNP part_Prep ob2))) ; -fills ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a fill_V2) ob2)) ; -completelyFills ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj complete_A)) (ComplSlash (SlashV2a fill_V2) ob2)) ; -properlyFills ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj proper_A)) (ComplSlash (SlashV2a fill_V2) ob2)) ; -exactlyLocated ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA exact_A) (UseN location_N))))) (PrepNP part_Prep ob1))) ; -partiallyFills ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj partial_A)) (ComplSlash (SlashV2a fill_V2) ob2)) ; -component ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN component_N)))) (PrepNP part_Prep ob2))) ; -contains ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a contain_V2) ob2)) ; -crosses ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a cross_V2) ob2)) ; -destination ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN destination_N)))) (PrepNP part_Prep ob2))) ; -direction ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN direction_N)))) (PrepNP part_Prep ob2))) ; -during ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseV happen_V) (PrepNP during_Prep ob2))) ; -equivalentContentClass ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP (MassNP ob1) (MassNP ob2))) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA equivalent_A) (UseN content_N))))) ; -finishes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a finish_V2) ob2)) ; -grasps ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a grasp_V2) ob2)) ; -penetrates ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a penetrate_V2) ob2)) ; -height ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN height_N)))) (PrepNP part_Prep ob2))) ; -length ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN length_N)))) (PrepNP part_Prep ob2))) ; -width ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN width_N)))) (PrepNP part_Prep ob2))) ; -home ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN home_N)))) (PrepNP part_Prep ob2))) ; -husband ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN husband_N)))) (PrepNP part_Prep ob2))) ; -wife ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN wife_N)))) (PrepNP part_Prep ob2))) ; -instrument ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN instrument_N)))) (PrepNP part_Prep ob2))) ; -result ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN result_N)))) (PrepNP part_Prep ob2))) ; -interiorPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN interior_N)))) part_Adv) (PrepNP part_Prep ob2))) ; -linearExtent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA linear_A) (UseN extent_N))))) (PrepNP part_Prep ob2))) ; -located ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN location_N)))) (PrepNP part_Prep ob1))) ; -manner ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN manner_N)))) (PrepNP part_Prep ob2))) ; -member ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN member_N)))) (PrepNP part_Prep ob2))) ; -monetaryValue ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA monetary_A) (UseN value_N))))) (PrepNP part_Prep ob2))) ; -names ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN name_N)))) (PrepNP part_Prep ob2))) ; -origin ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN origin_N)))) (PrepNP part_Prep ob2))) ; -part ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN part_N)))) (PrepNP part_Prep ob2))) ; -path ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN path_N)))) (PrepNP part_Prep ob2))) ; -mother ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN mother_N)))) (PrepNP part_Prep ob2))) ; -father ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN father_N)))) (PrepNP part_Prep ob2))) ; -daughter ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN daughter_N)))) (PrepNP part_Prep ob2))) ; -son ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN son_N)))) (PrepNP part_Prep ob2))) ; -patient ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN patient_N)))) (PrepNP part_Prep ob2))) ; -piece ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN piece_N)))) (PrepNP part_Prep ob2))) ; -pointOfFigure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN point_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN figure_N) ob2))))) ; -properPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA proper_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; -realization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN realization_N)))) (PrepNP part_Prep ob2))) ; -represents ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a represent_V2) ob2)) ; -sister ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN sister_N)))) (PrepNP part_Prep ob2))) ; -spouse ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN spouse_N)))) (PrepNP part_Prep ob2))) ; -starts ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a start_V2) ob2)) ; -stays ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a stay_V2) ob2)) ; -subOrganization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN organization_N)))))) (PrepNP part_Prep ob2))) ; -subPlan ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN plan_N)))))) (PrepNP part_Prep ob2))) ; -superficialPart ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA superficial_A) (UseN part_N))))) (PrepNP part_Prep ob2))) ; -truth ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN truth_N) (MassNP (UseN value_N)))))) (PrepNP part_Prep ob2))) ; -angularMeasure ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA angular_A) (UseN measure_N))))) (PrepNP part_Prep ob1))) ; -arcWeight ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN weight_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN arc_N) ob1))))) ; -geographicSubregion ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN region_N)))))) (PrepNP part_Prep ob2))) ; -involvedInEvent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 involve_V2) (PrepNP in_Prep ob2))) ; -meetsTemporally ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj temporal_A)) (ComplSlash (SlashV2a meet_V2) ob2)) ; -partlyLocated ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA partial_A) (UseN location_N))))) (PrepNP part_Prep ob1))) ; -geopoliticalSubdivision ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN division_N)))))) (PrepNP part_Prep ob2))) ; -immediateSubclass ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA immediate_A) (ApposCN (UseN sub_N) (MassNP (UseN class_N))))))) (PrepNP part_Prep ob2))) ; -meetsSpatially ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj spatial_A)) (ComplSlash (SlashV2a meet_V2) ob2)) ; -overlapsPartially ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj partial_A)) (ComplSlash (SlashV2a overlap_V2) ob2)) ; -overlapsSpatially ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj spatial_A)) (ComplSlash (SlashV2a overlap_V2) ob2)) ; -subset ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN set_N)))))) (PrepNP part_Prep ob2))) ; -greaterThan ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA great_A ob2)))) ; -greaterThanOrEqualTo ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompAP (ConjAP or_Conj (BaseAP (UseComparA great_A) (PositA equal_A))))) (PrepNP to_Prep ob2))) ; -inScopeOfInterest ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 interest_V2) (PrepNP in_Prep ob2))) ; -overlapsTemporally ob1 ob2 = mkPolSent (PredVP (AdvNP ob1 (PositAdvAdj temporal_A)) (ComplSlash (SlashV2a overlap_V2) ob2)) ; -engineeringSubcomponent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN component_N)))))) (PrepNP part_Prep ob2))) ; -equivalentContentInstance ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA equivalent_A) (UseN content_N))))) ; -successorAttributeClosure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (ApposCN (UseN successor_N) (MassNP (UseN attribute_N))) (MassNP (UseN closure_N)))))) (PrepNP part_Prep ob2))) ; -transactionAmount ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN amount_N)))) (PrepNP part_Prep ob2))) ; -connectedEngineeringComponents ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (PassV2 connect_V2)) ; - - --- ternary predicate - -between ob1 ob2 ob3 = mkPolSent (PredVP ob2 (UseComp (CompAdv (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob3)))))) ; -conditionalProbability ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN probability_N)))) (PrepNP part_Prep (PPartNP (sentToNoun ob1) condition_V2))) (PrepNP by8agent_Prep (sentToNoun ob2)))) ; -confersNorm ob1 ob2 ob3 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a confer_V2) (ConjNP and_Conj (BaseNP ob3 (sentToNoun ob2))))) ; -confersObligation ob1 ob2 ob3 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (AdvVP (ComplSlash (SlashV2a confer_V2) (DetCN (DetQuant DefArt NumSg) (UseN obligation_N))) (PrepNP part_Prep ob3)) (PrepNP to_Prep ob2))) ; -confersRight ob1 ob2 ob3 = mkPolSent (PredVP (sentToNoun ob1) (AdvVP (AdvVP (ComplSlash (SlashV2a confer_V2) (DetCN (DetQuant DefArt NumSg) (UseN right_N))) (PrepNP part_Prep ob3)) (PrepNP to_Prep ob2))) ; -connects ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a connect_V2) ob2) (PrepNP to_Prep ob3))) ; -deprivesNorm ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a deprive_V2) ob3) (PrepNP to_Prep ( sentToNoun ob2)))) ; -distance ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN distance_N)))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; -documentation ob1 ob2 ob3 = mkPolSent (PredVP ob2 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN documentation_N)))) (PrepNP part_Prep ob1)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2))))) ; -geometricDistance ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA geometric_A) (UseN distance_N))))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; -hasPurposeForAgent ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN purpose_N) (sentToNoun ob2)))) (PrepNP for_Prep (MassNP (ApposCN (UseN agent_N) ob3))))) ; -links ob1 ob2 ob3 = mkPolSent (PredVP ob3 (ComplSlash (SlashV2a link_V2) (ConjNP and_Conj (BaseNP ob1 ob2)))) ; -occupiesPosition ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a occupy_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN position_N) ob2))) (PrepNP in_Prep ob3))) ; -orientation ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN orientation_N)))) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; -pointOfIntersection ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN point_N)))) (PrepNP part_Prep (MassNP (UseN intersection_N)))) (PrepNP part_Prep (ConjNP and_Conj (BaseNP ob1 ob2))))) ; -relatedExternalConcept ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA (VerbToParticipeA relate_V)) (AdjCN (PositA external_A) (UseN concept_N)))))) (PrepNP part_Prep ob2)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob3))))) ; -representsForAgent ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a represent_V2) ob2) (PrepNP for_Prep ob3))) ; -representsInLanguage ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a represent_V2) ob2) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob3))))) ; -temporallyBetween ob1 ob2 ob3 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompAdv (PositAdvAdj temporal_A))) (PrepNP between_Prep (ConjNP and_Conj (BaseNP ob1 ob3))))) ; -temporallyBetweenOrEqual ob1 ob2 ob3 = mkPolSent (PredVP ob2 (AdvVP (AdvVP (UseComp (CompAdv (PositAdvAdj temporal_A))) (ConjAdv or_Conj (BaseAdv between_Adv (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA same_A) (UseN time_N))))))) (PrepNP with_Prep (ConjNP or_Conj (BaseNP ob1 ob3))))) ; -altitude ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN altitude_N) (PrepNP part_Prep ob1)) (MassNP (UseN relative_N)))))) (PrepNP to_Prep ob2))) ; -connectsEngineeringComponents ob1 ob2 ob3 = mkPolSent (PredVP ob3 (ComplSlash (SlashV2a connect_V2) (ConjNP and_Conj (BaseNP ob2 ob3)))) ; -depth ob1 ob2 ob3 = mkPolSent (PredVP ob3 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (AdvCN (UseN depth_N) (PrepNP part_Prep ob1)) (MassNP (UseN relative_N)))))) (PrepNP to_Prep ob2))) ; -synonymousExternalConcept ob1 ob2 ob3 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA synonymous_A) (AdjCN (PositA external_A) (UseN concept_N)))))) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob3))))) ; -greaterThanByQuality ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (AdvVP (UseV (mkV "have")) more_Adv) (PrepNP part_Prep (PPartNP ob3 compare_V2))) (PrepNP to_Prep ob2))) ; -prefers ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a prefer_V2) (sentToNoun ob2)) (PrepNP to_Prep (sentToNoun ob3)))) ; - - - ---others -toInt x = {s = \\c => x.s; a = agrP3 Sg; lock_NP = <>} ; -toRealNum x = {s = \\c => x.s; a = agrP3 Sg; lock_NP = <>} ; -}; \ No newline at end of file + --others + toInt x = {s = \\c => x.s; a = agrP3 Sg; lock_NP = <>} ; + toRealNum x = {s = \\c => x.s; a = agrP3 Sg; lock_NP = <>} ; +}; diff --git a/examples/SUMO/MidLevelOntology.gf b/examples/SUMO/MidLevelOntology.gf new file mode 100644 index 000000000..21ae204a3 --- /dev/null +++ b/examples/SUMO/MidLevelOntology.gf @@ -0,0 +1,7983 @@ +abstract MidLevelOntology = Merge, Elements ** { + + -- Removing a human fetus from a Pregnant woman + -- in such a way that the fetus cannot survive. + fun Aborting : Class ; + fun Aborting_Class : SubClass Aborting Removing ; + + -- A Certificate that demonstrates that the holder + -- of the Certificate has successfully completed an EducationalProgram. + fun AcademicDegree : Class ; + fun AcademicDegree_Class : SubClass AcademicDegree Certificate ; + + -- Increasing the speed with which someone + -- or something is moving. + fun Accelerating : Class ; + fun Accelerating_Class : SubClass Accelerating (both Increasing Translocation) ; + + -- The Profession of being an Accountant. + fun Accountant : Ind Profession ; + + -- Any process of certifying an EducationalOrganization. + fun Accrediting : Class ; + fun Accrediting_Class : SubClass Accrediting Declaring ; + + -- AchievingControl is the + -- class of all events in which an Agent gains physical + -- control over some object. + fun AchievingControl : Class ; + fun AchievingControl_Class : SubClass AchievingControl Guiding ; + + -- A UnitOfMeasure equal to 4840 square yards. + fun Acre : Ind UnitOfArea ; + + -- Any TwoDimensionalAngle that has an + -- angularMeasure that is less than 90 AngularDegrees. + fun AcuteAngle : Class ; + fun AcuteAngle_Class : SubClass AcuteAngle TwoDimensionalAngle ; + + -- A RelationalAttribute that indicates an address + -- where an Agent can regularly be contacted. + fun Address : Class ; + fun Address_Class : SubClass Address RelationalAttribute ; + + -- Combining a substance with Air. + fun Aerating : Class ; + fun Aerating_Class : SubClass Aerating Combining ; + + -- A Device whose purpose is to mix Substances with + -- Air. + fun Aerator : Class ; + fun Aerator_Class : SubClass Aerator Device ; + + -- An RecreationOrExerciseDevice whose purpose is + -- to develop the cardiovascular system. + fun AerobicExerciseDevice : Class ; + fun AerobicExerciseDevice_Class : SubClass AerobicExerciseDevice RecreationOrExerciseDevice ; + + -- The class of TimeIntervals that begin at noon and + -- end at Sunset. + fun Afternoon : Class ; + fun Afternoon_Class : SubClass Afternoon DayTime ; + + -- A CommercialAgent whose customers are all other + -- CommercialAgents, e.g. staffing agencies, food_service providers, etc. + fun Agency : Class ; + fun Agency_Class : SubClass Agency CommercialAgent ; + + -- AgriculturalProduct is the subclass of Product that comprises + -- the products of agricultural activity. + fun AgriculturalProduct : Class ; + fun AgriculturalProduct_Class : SubClass AgriculturalProduct Product ; + + -- AirForce is the subclass of MilitaryService + -- that comprises military air forces. + fun AirForce : Class ; + fun AirForce_Class : SubClass AirForce MilitaryService ; + + -- Any instance of Transportation where the + -- instrument is an Aircraft and which is through an AtmosphericRegion. + fun AirTransportation : Class ; + fun AirTransportation_Class : SubClass AirTransportation Transportation ; + + -- Any Vehicle which is capable of + -- AirTransportation. Note that this class covers both fixed_wing aircraft + -- and helicopters. + fun Aircraft : Class ; + fun Aircraft_Class : SubClass Aircraft Vehicle ; + + -- OrganicCompounds that are produced from hydrocarbons + -- by distillation. + fun Alcohol : Class ; + fun Alcohol_Class : SubClass Alcohol OrganicCompound ; + + -- Any Beverage that contains Alcohol. + fun AlcoholicBeverage : Class ; + fun AlcoholicBeverage_Class : SubClass AlcoholicBeverage (both Beverage Depressant) ; + + -- A ChemicalBase found in some Plants that has + -- physiological and psychological effects. + fun Alkaloid : Class ; + fun Alkaloid_Class : SubClass Alkaloid (both BiologicallyActiveSubstance ChemicalBase) ; + + -- Any Character that is comprised of a single + -- alphabetical character, e.g. A, B, C, D, ... + fun AlphabeticCharacter : Class ; + fun AlphabeticCharacter_Class : SubClass AlphabeticCharacter Character ; + + -- Tiny sacs in the Lung which absorb Oxygen + -- which is delivered to them by the BronchialDucts. + fun Alveolus : Class ; + fun Alveolus_Class : SubClass Alveolus (both AnimalAnatomicalStructure BodyVessel) ; + + -- Any Maneuver in a ViolentContest where one + -- contestParticipant attempts to conceal himself from another + -- contestParticipant so that he can Attack the other + -- contestParticipant. + fun Ambush : Class ; + fun Ambush_Class : SubClass Ambush Maneuver ; + + -- Organic acids that are the building blocks of + -- Proteins. + fun AminoAcid : Class ; + fun AminoAcid_Class : SubClass AminoAcid (both ChemicalAcid OrganicCompound) ; + + -- A very large Boa that is found in South America. + fun Anaconda : Class ; + fun Anaconda_Class : SubClass Anaconda ConstrictorSnake ; + + -- An RecreationOrExerciseDevice whose purpose + -- is to develop Muscles without also developing the cardiovascular system. + fun AnaerobicExerciseDevice : Class ; + fun AnaerobicExerciseDevice_Class : SubClass AnaerobicExerciseDevice RecreationOrExerciseDevice ; + + -- An AttachingDevice which is large hook or set of hooks + -- that are used to secure a Ship on the open water. + fun Anchor : Class ; + fun Anchor_Class : SubClass Anchor AttachingDevice ; + + -- The state of being wrathful, irate or indignant. + fun Anger : Ind EmotionalState ; + + -- AnimalAgriculturalProduct is the class of AgriculturalProducts + -- that are animal in nature, including meat, fish, dairy products, + -- hides, furs, animal fats and oils, etc. + fun AnimalAgriculturalProduct : Class ; + fun AnimalAgriculturalProduct_Class : SubClass AnimalAgriculturalProduct AgriculturalProduct ; + + -- Any Device which is used to control the + -- movements of an Animal or Human, e.g. leashes, reins, harnesses, muzzles, + -- bridles, shackles, handcuffs, etc. + fun AnimalController : Class ; + fun AnimalController_Class : SubClass AnimalController Device ; + + -- AnimalPoweredDevice is the subclass + -- of Devices that function with power supplied by animals. Examples: + -- oxcarts, horse_drawn plows, mule_driven mills. + fun AnimalPoweredDevice : Class ; + fun AnimalPoweredDevice_Class : SubClass AnimalPoweredDevice Device ; + + -- An Artifact which is intended to house + -- Animals and not Humans. Note that an AnimalResidence may or may not + -- be a StationaryArtifact, e.g. a horse stall is stationary while a doghouse + -- generally is not. + fun AnimalResidence : Class ; + fun AnimalResidence_Class : SubClass AnimalResidence Artifact ; + + -- A hard shell of calcium that serves as a + -- supporting structure for some Invertebrates. + fun AnimalShell : Class ; + fun AnimalShell_Class : SubClass AnimalShell (both AnimalAnatomicalStructure BodyPart) ; + + -- A GroupOfAnimals which are Pulling something. + fun AnimalTeam : Class ; + fun AnimalTeam_Class : SubClass AnimalTeam GroupOfAnimals ; + + -- The joint in the Leg that connects the tibia and the + -- fibula to the talus. + fun Ankle : Class ; + fun Ankle_Class : SubClass Ankle BodyJoint ; + + -- Any Text which contains information about + -- an event in the future. + fun Announcement : Class ; + fun Announcement_Class : SubClass Announcement FactualText ; + + -- Responding to a Questioning, i.e. trying to answer + -- someone's question. + fun Answering : Class ; + fun Answering_Class : SubClass Answering Stating ; + + -- A colony Insect of three types: males, + -- QueenInsect, and worker ants. + fun AntInsect : Class ; + fun AntInsect_Class : SubClass AntInsect Insect ; + + -- The class of TimeIntervals that begin at midnight + -- and end at noon. + fun AnteMeridiem : Class ; + fun AnteMeridiem_Class : SubClass AnteMeridiem TimeInterval ; + + -- A HoofedMammal with long legs and backward_facing horns. + -- This class includes gazelles, addax, blackbucks, etc. + fun Antelope : Class ; + fun Antelope_Class : SubClass Antelope HoofedMammal ; + + -- A CommunicationDevice which enables or improves + -- the reception of RadioEmissions by another CommunicationDevice (the + -- radio or television receiver). + fun Antenna : Class ; + fun Antenna_Class : SubClass Antenna CommunicationDevice ; + + -- The field of anthropology. + fun Anthropology : Ind SocialScience ; + + -- A BiologicallyActiveSubstance than can kill + -- instances of Bacterium. + fun Antibiotic : Class ; + fun Antibiotic_Class : SubClass Antibiotic BiologicallyActiveSubstance ; + + -- An immunoglobulin which is produced by the body + -- and which has the ability to neutralize Antigens. + fun Antibody : Class ; + fun Antibody_Class : SubClass Antibody Protein ; + + -- Any BiologicallyActiveSubstance that has the + -- capacity to stimulate the production of Antibodies. + fun Antigen : Class ; + fun Antigen_Class : SubClass Antigen BiologicallyActiveSubstance ; + + -- An Antigen that is carried in the red blood + -- cells of those with BloodTypeA. + fun AntigenA : Class ; + fun AntigenA_Class : SubClass AntigenA Antigen ; + + -- An Antigen that is carried in the red blood + -- cells of those with BloodTypeB. + fun AntigenB : Class ; + fun AntigenB_Class : SubClass AntigenB Antigen ; + + -- The BeliefGroup that is characterized by a + -- dislike for Judaism. + fun Antisemitism : Ind BeliefGroup ; + + -- The state of being worried, troubled or uneasy. + fun Anxiety : Ind EmotionalState ; + + -- A ResidentialBuilding containing + -- ApartmentUnits. + fun ApartmentBuilding : Class ; + fun ApartmentBuilding_Class : SubClass ApartmentBuilding ResidentialBuilding ; + + -- A SingleFamilyResidence that is not owned + -- by any member of the SocialUnit that lives there. + fun ApartmentUnit : Class ; + fun ApartmentUnit_Class : SubClass ApartmentUnit SingleFamilyResidence ; + + -- A FormText whose purpose is to obtain admission + -- to an Organization or to receive assistance from an Organization. + fun Application : Class ; + fun Application_Class : SubClass Application FormText ; + + -- Any instance of Declaring by which the + -- patient is assigned to a Position within an Organization where + -- the patient previously had no position. For example, the appointments + -- of people to non_elective offices in a government. + fun Appointing : Class ; + fun Appointing_Class : SubClass Appointing Declaring ; + + -- An item of Clothing that protects the front and + -- middle part of the body while one is Cooking or doing other work. + fun Apron : Class ; + fun Apron_Class : SubClass Apron Clothing ; + + -- The FieldOfStudy of designing Buildings, i.e. + -- creating Blueprints for Buildings. + fun Architecture : Ind FieldOfStudy ; + + -- Any Stating which has the form of an Argument. + fun Arguing : Class ; + fun Arguing_Class : SubClass Arguing Stating ; + + -- The upper Limbs of a Primate. + fun Arm : Class ; + fun Arm_Class : SubClass Arm Limb ; + + -- MilitaryServices that are land forces. + fun Army : Class ; + fun Army_Class : SubClass Army MilitaryService ; + + -- The final part of any instance of Translocation. + fun Arriving : Class ; + fun Arriving_Class : SubClass Arriving Translocation ; + + -- An Icon which has the shape of an arrow and + -- which is used to indicate direction or a relationship betwee two things. + fun ArrowFigure : Class ; + fun ArrowFigure_Class : SubClass ArrowFigure Icon ; + + -- An Icon which has the shape of an arrow and which + -- is used to indicate direction or a relationship betwee two things. + fun ArrowIcon : Class ; + fun ArrowIcon_Class : SubClass ArrowIcon Icon ; + + -- A long, thin Projectile with a pointed tip is + -- fired from a bow. + fun ArrowProjectile : Class ; + fun ArrowProjectile_Class : SubClass ArrowProjectile Projectile ; + + -- An act where an agent sets something which it does not possess + -- on fire in order to destroy it or its contents. + fun Arson : Class ; + fun Arson_Class : SubClass Arson (both Combustion Destruction) ; + + -- The Profession of reporting and critiquing current + -- ArtWorks. + fun ArtCritic : Ind Journalist ; + + -- Any ContentDevelopment that results in a + -- PaintedPicture. + fun ArtPainting : Class ; + fun ArtPainting_Class : SubClass ArtPainting (both ContentDevelopment Painting) ; + + -- Any School whose aim is to teach students + -- how to create ArtWorks. + fun ArtSchool : Class ; + fun ArtSchool_Class : SubClass ArtSchool School ; + + -- A Workshop, which is + -- devoted to the creation of ArtWorks. + fun ArtStudio : Class ; + fun ArtStudio_Class : SubClass ArtStudio Workshop ; + + -- Any BloodVessel which transfers Blood from + -- the Heart to the extremities of the body. + fun Artery : Class ; + fun Artery_Class : SubClass Artery BloodVessel ; + + -- A Gun that is too large to be carried and fired + -- by a single Human. Typically, ArtilleryGuns are on wheels. + fun ArtilleryGun : Class ; + fun ArtilleryGun_Class : SubClass ArtilleryGun Gun ; + + -- AtmosphericRegion is the class of + -- all subregions of EarthsAtmosphere. + fun AtmosphericRegion : Class ; + fun AtmosphericRegion_Class : SubClass AtmosphericRegion SpaceRegion ; + + -- Two or more Atoms that are bound together and + -- comprise part of a Molecule. + fun AtomicGroup : Class ; + fun AtomicGroup_Class : SubClass AtomicGroup CompoundSubstance ; + + -- Any decrease in the size of a BodyPart which is due to + -- disease or lack of use. + fun Atrophy : Class ; + fun Atrophy_Class : SubClass Atrophy (both Decreasing PathologicProcess) ; + + -- The Profession of practicing law, whether as a + -- judge or as a legal advocate. + fun Attorney : Class ; + + -- The head law officer of a GeopoliticalArea, + -- usually a Nation or StateOrProvince. + fun AttorneyGeneral : Ind (both Profession GovernmentOfficer) ; + + -- A representation of sound on some medium such + -- as wax cylinder, vinyl record, magnetic tape, CD or flash memory, that is + -- intended to be used in some machine to reproduce that sound. + fun AudioRecording : Class ; + fun AudioRecording_Class : SubClass AudioRecording (both ContentBearingObject Text) ; + + -- Any Building whose purpose is to hold concerts, + -- sports events, plays, etc. before an audience. This class includes theaters, + -- sports stadiums, university auditoriums, etc. + fun Auditorium : Class ; + fun Auditorium_Class : SubClass Auditorium Building ; + + -- A Seat within an Auditorium from which one + -- can observe the PerformanceStage. + fun AuditoriumSeat : Class ; + fun AuditoriumSeat_Class : SubClass AuditoriumSeat Seat ; + + -- A Gun that fires a burst of Projectiles + -- with each pull of the trigger. Also known as a machine gun. + fun AutomaticGun : Class ; + fun AutomaticGun_Class : SubClass AutomaticGun Gun ; + + -- Automobile is a subclass of + -- SelfPoweredRoadVehicles including passenger cars, family vans, light + -- trucks, and sport utility vehicles. In general, this class covers + -- four_wheeled passenger road vehicles. + fun Automobile : Class ; + fun Automobile_Class : SubClass Automobile (both PassengerVehicle SelfPoweredRoadVehicle) ; + + -- Axle is a class of Devices each of which can + -- be paired with two VehicleWheels to rotate and move a RoadVehicle. + fun Axle : Class ; + fun Axle_Class : SubClass Axle Device ; + + -- A disease that is caused by instances of + -- Bacterium. + fun BacterialDisease : Class ; + fun BacterialDisease_Class : SubClass BacterialDisease InfectiousDisease ; + + -- Any Container which is made of Fabric. + fun Bag : Class ; + fun Bag_Class : SubClass Bag Container ; + + -- Any instance of Cooking where the instrument + -- is an Oven. + fun Baking : Class ; + fun Baking_Class : SubClass Baking (both Cooking Heating) ; + + -- Any GamePiece which has the shape of a sphere. + fun Ball : Class ; + fun Ball_Class : SubClass Ball GamePiece ; + + -- A Missile which is guided for the first stage + -- of its flight but then falls to its target for the second stage. + fun BallisticMissile : Class ; + fun BallisticMissile_Class : SubClass BallisticMissile Missile ; + + -- A FormText which is used in Voting. A list of + -- candidates is printed on the form, and the voter selects the candidate he/she + -- wants to vote for. + fun Ballot : Class ; + fun Ballot_Class : SubClass Ballot FormText ; + + -- A piece of Fabric that is used in Covering an + -- open wound. + fun Bandage : Class ; + fun Bandage_Class : SubClass Bandage Fabric ; + + -- Any SkilledOccupation which involves working in a + -- FinancialBank. + fun Banker : Ind SkilledOccupation ; + + -- A ReligiousProcess which marks the acceptance of + -- the person being baptized into the ReligiousOrganization. + fun Baptizing : Class ; + fun Baptizing_Class : SubClass Baptizing (both JoiningAnOrganization ReligiousProcess) ; + + -- Offering to sell something to someone at a + -- reduced price. + fun BargainSale : Class ; + fun BargainSale_Class : SubClass BargainSale Offering ; + + -- Any instance of RadiatingSound which is produced + -- by a Canine. + fun Barking : Class ; + fun Barking_Class : SubClass Barking RadiatingSound ; + + -- A Building on a Farm that is used for keeping + -- DomesticAnimals, Fodder or harvested crops. + fun Barn : Class ; + fun Barn_Class : SubClass Barn Building ; + + fun BaseballBase : Class ; + + -- A BuildingLevel which satisfies two conditions, viz. it is + -- lower than all of the other BuildingLevels in the same Building and it is below + -- ground level. + fun Basement : Class ; + fun Basement_Class : SubClass Basement BuildingLevel ; + + -- Washing the entire body of a Human or Animal. + fun Bathing : Class ; + fun Bathing_Class : SubClass Bathing Washing ; + + -- A WashingDevice which is intended to be used by + -- Humans for washing their bodies. Note that this class covers bathtubs, showers, + -- etc. + fun BathingDevice : Class ; + fun BathingDevice_Class : SubClass BathingDevice WashingDevice ; + + -- A Room that contains a WashBasin and + -- possibly a Toilet. + fun Bathroom : Class ; + fun Bathroom_Room : SubClassC Bathroom Room (\R -> exists Toilet (\T -> located(var Toilet Physical ? T)(var Room Object ? R))); + + -- A thin stick which is used for OrchestralConducting. + fun Baton : Class ; + fun Baton_Class : SubClass Baton Device ; + + -- The process of transitioning from a state of + -- being Sober to a state of being Drunk. + fun BecomingDrunk : Class ; + fun BecomingDrunk_Class : SubClass BecomingDrunk PsychologicalProcess ; + + -- A piece of Furniture which is primarily for sleeping. + fun Bed : Class ; + fun Bed_Class : SubClass Bed Furniture ; + + -- A Room intended primarily for sleeping. + fun Bedroom : Class ; + fun Bedroom_Class : SubClass Bedroom Room ; + + -- A hairy Insect, some species of which produce honey + -- and/or sting. + fun Bee : Class ; + fun Bee_Class : SubClass Bee Insect ; + + -- Meat that was originally part of a Cow. + fun Beef : Class ; + fun Beef_Class : SubClass Beef Meat ; + + -- An AlcoholicBeverage that is prepared by fermenting + -- malt and hops. + fun Beer : Class ; + fun Beer_Class : SubClass Beer AlcoholicBeverage ; + + -- The TimeInterval that runs from + -- NegativeInfinity to the time of the birth of Christ. + fun BeforeCommonEra : Ind TimeInterval ; + + -- The process of an Organization + -- commencing operations. In the case of a Corporation, this would be + -- the process of going into business. + fun BeginningOperations : Class ; + fun BeginningOperations_Class : SubClass BeginningOperations OrganizationalProcess ; + + -- A PercussionInstrument that produces a single tone + -- when it is struck. + fun Bell : Class ; + fun Bell_Class : SubClass Bell PercussionInstrument ; + + -- A piece of Clothing that is worn around the waist + -- to restrain another piece of clothing. + fun Belt : Class ; + fun Belt_Class : SubClass Belt Clothing ; + + -- Any UnilateralGiving where the agent + -- wills some part of his/her property to someone else upon his/her death. + fun Bequeathing : Class ; + fun Bequeathing_Class : SubClass Bequeathing UnilateralGiving ; + + -- A HistoricalAccount which is concerned + -- with the life of a single Human. + fun Biography : Class ; + fun Biography_Class : SubClass Biography HistoricalAccount ; + + -- The production of a zygote from the fusion + -- of a male and female gamete. + fun BiologicalConception : Class ; + fun BiologicalConception_Class : SubClass BiologicalConception OrganOrTissueProcess ; + + -- The Class of all biological species, i.e. + -- the class of all classes of Organism whose instances can interbreed. + fun BiologicalSpecies : Class ; + + -- The study of the classification, development, and + -- functioning of Organisms. + fun Biology : Ind Science ; + + -- Any DiagnosticProcess which involves the examination of + -- BodySubstances taken from a living Organism. + fun Biopsy : Class ; + fun Biopsy_Class : SubClass Biopsy (both DiagnosticProcess Removing) ; + + -- Any Egg that is produced by a Bird. + fun BirdEgg : Class ; + fun BirdEgg_Class : SubClass BirdEgg Egg ; + + -- Any instance of Grabbing where the instrument is + -- the Mouth of the agent. + fun Biting : Class ; + fun Biting_Class : SubClass Biting Grabbing ; + + -- A piece of Fabric whose purpose is to keep a + -- person who is in bed warm. + fun Blanket : Class ; + fun Blanket_Class : SubClass Blanket Fabric ; + + -- The release of Blood from an Animal in response + -- to an Injuring of some sort. + fun Bleeding : Class ; + fun Bleeding_Class : SubClass Bleeding AutonomicProcess ; + + -- The Attribute that applies to Animals and Humans + -- that are unable to see. + fun Blind : Ind BiologicalAttribute ; + + -- Any Process where the stomach or instestines of a + -- Human or Animal become distended from excessive gas. + fun Bloating : Class ; + fun Bloating_Class : SubClass Bloating (both Increasing PathologicProcess) ; + + -- Any Maneuver in a Contest where one + -- contestParticipant attempts to deny access to something that is wanted + -- by another contestParticipant. + fun Blockade : Class ; + fun Blockade_Class : SubClass Blockade Maneuver ; + + -- A Cell that is normally present in Blood. + fun BloodCell : Class ; + fun BloodCell_Class : SubClass BloodCell (both AnimalAnatomicalStructure Cell) ; + + -- The subclass of Blood that contains AntigenA + -- and does not contain AntigenB. + fun BloodTypeA : Class ; + fun BloodTypeA_Class : SubClass BloodTypeA Blood ; + + -- The subclass of Blood that contains both + -- AntigenA and AntigenB. + fun BloodTypeAB : Class ; + fun BloodTypeAB_Class : SubClass BloodTypeAB Blood ; + + -- The subclass of Blood that contains AntigenB + -- and does not contain AntigenA. + fun BloodTypeB : Class ; + fun BloodTypeB_Class : SubClass BloodTypeB Blood ; + + -- The subclass of Blood that contains neither + -- AntigenA nor AntigenB. + fun BloodTypeO : Class ; + fun BloodTypeO_Class : SubClass BloodTypeO Blood ; + + -- Any BodyVessel which is used to circulate + -- Blood from one part of the body to another. + fun BloodVessel : Class ; + fun BloodVessel_Class : SubClass BloodVessel (both AnimalAnatomicalStructure BodyVessel) ; + + -- An Icon which is a scale model of an Artifact, + -- whether the Artifact actually exists or not. + fun Blueprint : Class ; + fun Blueprint_Class : SubClass Blueprint Icon ; + + -- The process of turning red in response to a + -- stimulus which has a deep emotional effect. + fun Blushing : Class ; + fun Blushing_Class : SubClass Blushing AutonomicProcess ; + + -- A piece of material with flat, rectangular sides. + -- Note that boards and blocks are lumped into a single concept, because the + -- difference between these notions cannot be precisely defined. + fun BoardOrBlock : Class ; + fun BoardOrBlock_Class : SubClass BoardOrBlock Artifact ; + + -- Getting on a Vehicle, e.g. getting into an + -- Automobile, boarding an Aircraft, etc. + fun Boarding : Class ; + fun Boarding_Class : SubClass Boarding Translocation ; + + -- One of the levels of a WaterVehicle, e.g. the + -- upper deck and lower deck of small boats with a cabin. + fun BoatDeck : Class ; + fun BoatDeck_Class : SubClass BoatDeck Artifact ; + + -- BodyJunctions where different parts of the same + -- Skeleton come together. + fun BodyJoint : Class ; + fun BodyJoint_Class : SubClass BodyJoint BodyJunction ; + + -- A BodyOfWater is a connected body of + -- water with established boundaries marked by either geographical features + -- or conventional borders. + fun BodyOfWater : Class ; + fun BodyOfWater_Class : SubClass BodyOfWater (both SelfConnectedObject WaterArea) ; + + -- A weapon that explodes in order to cause damage. + fun Bomb : Class ; + fun Bomb_Class : SubClass Bomb (both ExplosiveDevice Weapon) ; + + -- Any MilitaryAircraft whose purpose is to deliver + -- ExplosiveDevices. + fun Bomber : Class ; + fun Bomber_Class : SubClass Bomber MilitaryAircraft ; + + -- An act of Destruction where the thing destroyed + -- is destroyed by means of an explosive device. + fun Bombing : Class ; + fun Bombing_Class : SubClass Bombing Destruction ; + + -- BotanicalTree is an imprecise term + -- for a perennial woody plant that is larger than a bush or shrub, + -- generally understood to describe a large growth having one main trunk + -- with few or no branches projecting from its base, a well_developed crown + -- of foliage, and a height at maturity of at least 12 feet. + fun BotanicalTree : Class ; + fun BotanicalTree_Class : SubClass BotanicalTree FloweringPlant ; + + -- A Container whose top is narrower than its bottom, which + -- has no handle, and which is intended to store Liquids. + fun Bottle : Class ; + fun Bottle_Class : SubClass Bottle FluidContainer ; + + -- Any downward motion of the body that indicates respect + -- for or submission to another Agent. + fun Bowing : Class ; + fun Bowing_Class : SubClass Bowing (both Gesture (both Inclining MotionDownward)) ; + + -- Any six_sided Container whose sides are + -- rectangular in shape. + fun Box : Class ; + fun Box_Class : SubClass Box Container ; + + -- A HumanChild who is Male. + fun Boy : Class ; + fun Boy_Class : SubClass Boy (both HumanChild Man) ; + + -- The seat of the central nervous system. + fun Brain : Class ; + fun Brain_Class : SubClass Brain (both AnimalAnatomicalStructure Organ) ; + + -- A DistilledAlcoholicBeverage that is prepared by + -- distilling Wine. + fun Brandy : Class ; + fun Brandy_Class : SubClass Brandy DistilledAlcoholicBeverage ; + + -- A MetallicAlloy made from Copper and Zinc. + fun Brass : Class ; + fun Brass_Class : SubClass Brass MetallicAlloy ; + + -- Food that consists largely of grain flour + -- and water. Note that this class covers crackers, cookies, as well as any + -- self_connected instance of bread, whether it is a loaf, a slice, a chunk + -- of bread, etc. + fun BreadOrBiscuit : Class ; + fun BreadOrBiscuit_Class : SubClass BreadOrBiscuit PreparedFood ; + + -- A subclass of Attributes for + -- characterizing the breakability of CorpuscularObjects. + fun BreakabilityAttribute : Class ; + fun BreakabilityAttribute_Class : SubClass BreakabilityAttribute InternalAttribute ; + + -- The paired Organs which are part of the chests + -- of Primates. + fun Breast : Class ; + fun Breast_Class : SubClass Breast (both AnimalAnatomicalStructure Organ) ; + + -- A block of fired Clay that is used in Constructing. + fun Brick : Class ; + fun Brick_Class : SubClass Brick BoardOrBlock ; + + -- A MilitaryGeneral that ranks below + -- a MajorGeneral. + fun BrigadierGeneral : Class ; + fun BrigadierGeneral_Class : SubClass BrigadierGeneral MilitaryGeneral ; + + -- BroadcastNetwork is the subclass of + -- CommunicationSystems consisting of BroadcastingStations that are linked + -- electronically and managed or owned by one organization. + fun BroadcastNetwork : Class ; + fun BroadcastNetwork_Class : SubClass BroadcastNetwork CommunicationSystem ; + + -- A Series of episodes that are broadcast + -- on television or radio. + fun BroadcastProgram : Class ; + fun BroadcastProgram_Class : SubClass BroadcastProgram Series ; + + -- Disseminating information by using a + -- CommunicationDevice that radiates RadioEmissions. + fun Broadcasting : Class ; + fun Broadcasting_Class : SubClass Broadcasting (both Disseminating RadioEmission) ; + + -- Any BodyVessel which is located in a + -- Lung and which carries oxygen from the trachea to the alveoli. + fun BronchialDuct : Class ; + fun BronchialDuct_Class : SubClass BronchialDuct (both AnimalAnatomicalStructure BodyVessel) ; + + -- A GroupOfAnimals that are all born at the same time + -- and to the same parents. + fun Brood : Class ; + fun Brood_Class : SubClass Brood GroupOfAnimals ; + + -- A BrushOrComb whose purpose is to remove dirt and other + -- small particles from floors. + fun Broom : Class ; + fun Broom_Class : SubClass Broom BrushOrComb ; + + -- A SecondaryColor that resembles the color of wood or + -- of soil. + fun Brown : Ind SecondaryColor ; + + -- A Device which consists of a handle and bristles and + -- whose purpose is to remove particles from something or to smooth something out. + fun BrushOrComb : Class ; + fun BrushOrComb_Class : SubClass BrushOrComb Device ; + + -- A globe which has a Liquid surface and which contains + -- a Gas. + fun Bubble : Class ; + fun Bubble_Class : SubClass Bubble CorpuscularObject ; + + -- A HoofedMammal with long hair whose habitat is the + -- plains of NorthAmerica. + fun Buffalo : Class ; + fun Buffalo_Class : SubClass Buffalo HoofedMammal ; + + -- A HornInstrument that has no valves. + fun Bugle : Class ; + fun Bugle_Class : SubClass Bugle HornInstrument ; + + -- The story or level of a building, e.g. the Basement, + -- the Attic, the ground level, the fourteenth floor, etc. + fun BuildingLevel : Class ; + fun BuildingLevel_Class : SubClass BuildingLevel StationaryArtifact ; + + -- A Cow that is Male. + fun Bull : Class ; + fun Bull_Cow : SubClassC Bull Cow (\B -> attribute(var Cow Object ? B)(el SexAttribute Attribute ? Male)); + + -- A Projectile that is designed to be fired by a Gun. + fun Bullet : Class ; + fun Bullet_Class : SubClass Bullet Projectile ; + + -- A large Bee which lacks a stinger. + fun BumbleBee : Class ; + fun BumbleBee_Class : SubClass BumbleBee Bee ; + + -- A small Cave created by an Animal for the purpose + -- of inhabiting it. + fun Burrow : Class ; + fun Burrow_Class : SubClass Burrow Cave ; + + -- Putting something in the ground and then covering + -- it with Soil. + fun Burying : Class ; + fun Burying_Class : SubClass Burying (both Digging Putting) ; + + -- Bus is the subclass of SelfPoweredRoadVehicles + -- that can transport large numbers of passengers (i.e., dozens) at one + -- time. It can be distinguished from a van which is + -- designed to carry less than a dozen people. + fun Bus : Class ; + fun Bus_Class : SubClass Bus SelfPoweredRoadVehicle ; + + -- An area, often, though not necessarily with + -- seats or some kind of minimal shelter, where people gather to meet and + -- board a bus. It must border a road. + fun BusStop : Class ; + fun BusStop_Class : SubClass BusStop GeographicArea ; + + -- Any Contest where the contestParticipants + -- are Corporations and the aim is to win as many customers as possible. + fun BusinessCompetition : Class ; + fun BusinessCompetition_Class : SubClass BusinessCompetition Contest ; + + -- Any of a class of people in a professional + -- occupation such as banking, finance, management, or engineering. This is + -- distinguished from blue collar jobs that primarily involve manual labor + -- rather than thought as the effort expended to derive remuneration. It is + -- also distinguished from professions that may be outwardly similar but are + -- done in a non_profit organization. + fun BusinessPerson : Ind OccupationalRole ; + + -- An emulsion of fat which is produced by churning Milk. + fun Butter : Class ; + fun Butter_Class : SubClass Butter (both DairyProduct PreparedFood) ; + + -- An AttachingDevice that is used on Clothing. + fun Button : Class ; + fun Button_Class : SubClass Button AttachingDevice ; + + -- Any Restaurant which does not offer table service. + -- Food is selected and purchased at a central counter. + fun Cafeteria : Class ; + fun Cafeteria_Class : SubClass Cafeteria Restaurant ; + + -- A young Cow, i.e. a Cow that is NonFullyFormed. + fun Calf : Class ; + fun Calf_Cow : SubClassC Calf Cow (\C -> attribute(var Cow Object ? C)(el DevelopmentalAttribute Attribute ? NonFullyFormed)); + + -- A Device which is capable of Photographing. + fun Camera : Class ; + fun Camera_Class : SubClass Camera Device ; + + -- A MobileResidence consisting of tents and other temporary + -- living quarters that is constructed on an undeveloped LandArea. + fun Camp : Class ; + fun Camp_Class : SubClass Camp MobileResidence ; + + -- A LandArea whose purpose is to have MobileResidences + -- (e.g. recreational vehicles, mobile homes, Tents, etc.) located there. + fun Campground : Class ; + fun Campground_Class : SubClass Campground LandArea ; + + -- A DiseaseOrSyndrome characterized by pathologic and + -- uncontrolled cell division that results in a Tumor. + fun Cancer : Ind DiseaseOrSyndrome ; + + -- An LightFixture that consists of Wax and a wick, + -- which is lit with a flame. + fun Candle : Class ; + fun Candle_Class : SubClass Candle LightFixture ; + + -- A very small BloodVessel that connects arterioles + -- (very small Arteries) with venules (very small Veins). + fun Capillary : Class ; + fun Capillary_Class : SubClass Capillary BloodVessel ; + + -- A commissioned MilitaryOfficer who ranks + -- above a Lieutenant but below a MajorOfficer. + fun CaptainOfficer : Class ; + fun CaptainOfficer_Class : SubClass CaptainOfficer MilitaryOfficer ; + + -- A Capturing is a ChangeOfControl event in which an Agent + -- gains physical control over another Agent. + fun Capturing : Class ; + fun Capturing_Class : SubClass Capturing ChangeOfControl ; + + -- A car bombing is an attack in which a car is + -- used as the delivery mechanism for a bomb. The car is usually destroyed + -- in the blast if the bomb detonates successfully. + fun CarBombing : Class ; + fun CarBombing_Class : SubClass CarBombing Bombing ; + + -- Any Organization whose purpose is to + -- provide medical care for for Humans who reside there, either permanently + -- or temporarily. + fun CareOrganization : Class ; + fun CareOrganization_Class : SubClass CareOrganization Organization ; + + -- A Vehicle that is designed to + -- carry Objects. Note that Vehicles that are primarily designed to carry + -- people rather than cargo may still carry cargo. For example, a passenger sedan + -- might be capable of carrying lumber strapped to the roof. For this + -- reason, PassengerVehicle and CargoVehicle are not disjoint. + fun CargoVehicle : Class ; + fun CargoVehicle_Class : SubClass CargoVehicle Vehicle ; + + -- Any occupation that involves creating and repairing + -- structural and decorative portions of Buildings that are made chiefly of Wood. + -- This does not include plumbing, roofing, electrical, foundation and site work. + fun Carpenter : Ind OccupationalTrade ; + + -- Making Buildings out of Wood. + fun Carpentry : Class ; + fun Carpentry_Class : SubClass Carpentry Making ; + + -- Any Maneuver in a Game which results in a + -- situation where the agent grasps the Ball. + fun Catching : Class ; + fun Catching_Class : SubClass Catching (both Maneuver Touching) ; + + -- Any Process whose result is that the + -- patient of the process is happy. + fun CausingHappiness : Class ; + fun CausingHappiness_Class : SubClass CausingHappiness Process ; + + -- Any Process whose result is that the + -- patient of the process is in Pain. + fun CausingPain : Class ; + fun CausingPain_Class : SubClass CausingPain CausingUnhappiness ; + + -- Any Process whose result is that the + -- patient of the process is unhappy. + fun CausingUnhappiness : Class ; + fun CausingUnhappiness_Class : SubClass CausingUnhappiness Process ; + + -- MilitaryUnits composed primarily of Soldiers + -- who are mounted, i.e. who perform their combat missions from a Horse or + -- Vehicle. + fun CavalryUnit : Class ; + fun CavalryUnit_Class : SubClass CavalryUnit MilitaryUnit ; + + -- A Cave is a naturally formed opening beneath + -- the surface of the Earth, generally formed by dissolution of carbonate + -- bedrock. Caves may also form by erosion of coastal bedrock, partial + -- melting of glaciers, or solidification of lava into hollow tubes. + fun Cave : Class ; + fun Cave_Class : SubClass Cave Hole ; + + -- The process of an Organization + -- ceasing operations, i.e. its folding or going out of business in + -- some other fashion. + fun CeasingOperations : Class ; + fun CeasingOperations_Class : SubClass CeasingOperations OrganizationalProcess ; + + -- A StationaryArtifact that is the top surface + -- of a Room. + fun Ceiling : Class ; + fun Ceiling_Class : SubClass Ceiling StationaryArtifact ; + + -- Anyone who is known by a large number of people, + -- either explicitly by name, or by action. + fun Celebrity : Class ; + + -- The part of the Cell that contains DNA and + -- RNA. + fun CellNucleus : Class ; + fun CellNucleus_Class : SubClass CellNucleus OrganicObject ; + + -- The main component of Plant Tissue. + fun Cellulose : Class ; + fun Cellulose_Class : SubClass Cellulose (both Carbohydrate PlantSubstance) ; + + -- A LandArea which is used for burying the dead. + fun Cemetery : Class ; + fun Cemetery_Class : SubClass Cemetery LandArea ; + + -- Any instance of Rotating where there is + -- Motion away from the center of the Rotating. + fun CentrifugalMotion : Class ; + fun CentrifugalMotion_Class : SubClass CentrifugalMotion Rotating ; + + -- Any instance of Rotating where there is + -- Motion towards the center of the Rotating. + fun CentripetalMotion : Class ; + fun CentripetalMotion_Class : SubClass CentripetalMotion Rotating ; + + -- The TimeDuration of 100 years. + fun CenturyDuration : Ind UnitOfDuration ; + + -- Any Seed which is produced by the cereal grasses, + -- e.g. rice, corn, wheat, etc. + fun CerealGrain : Class ; + fun CerealGrain_Class : SubClass CerealGrain (both (both Food Seed) PlantAgriculturalProduct) ; + + -- A Seat that is designed to accommodate a single + -- Human. + fun Chair : Class ; + fun Chair_Class : SubClass Chair Seat ; + + -- A ChangeOfControl is an event in which an agent gains + -- physical control over some object that was previously controlled + -- by a different agent. + fun ChangeOfControl : Class ; + fun ChangeOfControl_Class : SubClass ChangeOfControl AchievingControl ; + + -- Any instance of a process of + -- RemovingClothing and Dressing. + fun ChangingClothing : Class ; + fun ChangingClothing_Class : SubClass ChangingClothing Transfer ; + + -- A numbered and/or titled + -- section of a Book, which is typically indicated in a table of + -- contents for the Book. + fun Chapter : Class ; + fun Chapter_Class : SubClass Chapter Article ; + + -- An activity of a fee being charged + fun ChargingAFee : Class ; + fun ChargingAFee_Class : SubClass ChargingAFee FinancialTransaction ; + + -- An Icon which depicts one or more quantities. + fun Chart : Class ; + fun Chart_Class : SubClass Chart Icon ; + + -- An area on or very near a border, usually along + -- a road connecting two regions, where MilitaryPersons or Police + -- restrict the flow of traffic in order to extract tarrifs, deny movement to + -- certain kinds of people or goods, or other enforement actions. Because of + -- the power relationship involved, such areas are often the site of illegal + -- activities conducted by the officials in order to extract favors or + -- bribes. + fun Checkpoint : Class ; + fun Checkpoint_Class : SubClass Checkpoint GeographicArea ; + + -- A bitter CompoundSubstance that is capable of + -- reacting with a ChemicalBase and forming a ChemicalSalt. + fun ChemicalAcid : Class ; + fun ChemicalAcid_Class : SubClass ChemicalAcid CompoundSubstance ; + + -- An attack against people or property in which + -- a chemical agent is used as the active ingredient of the attack. + fun ChemicalAttack : Class ; + fun ChemicalAttack_Class : SubClass ChemicalAttack ViolentContest ; + + -- A CompoundSubstance that is capable of + -- reacting with a ChemicalAcid and forming a ChemicalSalt. + fun ChemicalBase : Class ; + fun ChemicalBase_Class : SubClass ChemicalBase CompoundSubstance ; + + -- The Attribute of being in a chemically + -- stable state, i.e. the relative proportions of resources and results will + -- not longer change. + fun ChemicalEquilibrium : Ind InternalAttribute ; + + -- Any ChemicalProcess where Electrons + -- are added to the substance undergoing the ChemicalProcess. + fun ChemicalReduction : Class ; + fun ChemicalReduction_Class : SubClass ChemicalReduction ChemicalSynthesis ; + + -- A bitter CompoundSubstance that is formed in a + -- chemical reaction of a ChemicalBase with a ChemicalAcid. + fun ChemicalSalt : Class ; + fun ChemicalSalt_Class : SubClass ChemicalSalt CompoundSubstance ; + + -- The study of the compositions, properties, and + -- reactions of Substances. + fun Chemistry : Ind Science ; + + -- Any piece of Furniture which is also a + -- Container, e.g. a chest of drawers, a memory chest, an armoire, etc. + fun ChestOrCabinet : Class ; + fun ChestOrCabinet_Class : SubClass ChestOrCabinet (both Container Furniture) ; + + -- Breaking up or mashing Food with one's teeth. + fun Chewing : Class ; + fun Chewing_Class : SubClass Chewing BodyMotion ; + + -- A subclass of Bird that is raised for its meat + -- and for its eggs. + fun Chicken : Class ; + fun Chicken_Class : SubClass Chicken Poultry ; + + -- Meat that was originally part of a Chicken. + fun ChickenMeat : Class ; + fun ChickenMeat_Class : SubClass ChickenMeat Meat ; + + -- A thin passageway through which Smoke from a controlled + -- fire is conducted Outside of a Building or Room. + fun Chimney : Class ; + fun Chimney_Class : SubClass Chimney (both Device StationaryArtifact) ; + + -- A part of the Face which protrudes slightly and which + -- is lower than all other parts of the Face. + fun Chin : Class ; + fun Chin_Class : SubClass Chin (both AnimalAnatomicalStructure BodyPart) ; + + -- A Steroid that is produced by the Liver and that + -- is believed to be closely associated with various cardiological disorders. + fun Cholesterol : Class ; + fun Cholesterol_Class : SubClass Cholesterol (both AnimalSubstance Steroid) ; + + -- Planning that results in a sequence of dance + -- steps that are executed as part of a Performance. + fun Choreographing : Class ; + fun Choreographing_Class : SubClass Choreographing Planning ; + + -- Any instance of the collection of writings which + -- is regarded as scripture by those who embrace Christianity. + fun ChristianBible : Class ; + fun ChristianBible_Class : SubClass ChristianBible Book ; + + -- Four books in the New Testament of the + -- ChristianBible that describe the life and teachings of Jesus Christ + -- and that are referred to, respectively, as Matthew, Mark, Luke, and John. + fun ChristianGospel : Class ; + fun ChristianGospel_Class : SubClass ChristianGospel Text ; + + -- Any ReligiousService that is conducted by + -- members of Christianity. + fun ChristianService : Class ; + fun ChristianService_Class : SubClass ChristianService ReligiousService ; + + -- Processes of Separating a LiquidMixture or + -- a GasMixture into some or all of the PureSubstances that comprise it. + fun Chromatography : Class ; + fun Chromatography_Class : SubClass Chromatography Separating ; + + -- A tube of thin paper containing finely ground + -- tobacco that is smoked. + fun CigarOrCigarette : Class ; + fun CigarOrCigarette_Class : SubClass CigarOrCigarette SmokingDevice ; + + -- A slice of a Circle, i.e. any + -- ClosedTwoDimensionalFigure which consists of two Radii and the arc of + -- the Circle that they bound. + fun CircleSector : Class ; + fun CircleSector_Class : SubClass CircleSector ClosedTwoDimensionalFigure ; + + -- Removing the foreskin of the penis. This is + -- usually performed on infants, but is occasionally performed on adolescents + -- and adults, either for medical reasons, or after religious conversion. It is + -- often conducted as a religious rite, since it is prescribed by both the + -- Jewish and Muslim religions, although it is prevalent also as a social + -- norm in the UnitedStates and other Nations. + fun Circumision : Class ; + fun Circumision_Class : SubClass Circumision (both Removing Surgery) ; + + -- (CitizenryFn ?AREA) denotes the + -- GroupOfPeople who are legal and permanent residents of the + -- GeopoliticalArea ?AREA. + fun CitizenryFn : El GeopoliticalArea -> Ind GroupOfPeople ; + + -- A square_shaped area surrounded by Roadways + -- which is part of a City and typically contains Buildings. + fun CityBlock : Class ; + fun CityBlock_Class : SubClass CityBlock LandArea ; + + -- Any geopoliticalSubdivision of a City. + fun CityDistrict : Class ; + fun CityDistrict_Class : SubClass CityDistrict GeopoliticalArea ; + + -- CityGovernment is the class of + -- governments of Cities. + fun CityGovernment : Class ; + fun CityGovernment_Class : SubClass CityGovernment Government ; + + -- A War in which the fighting GeopoliticalAreas + -- are both part of the same Nation. + fun CivilWar : Class ; + fun CivilWar_Class : SubClass CivilWar War ; + + -- Someone who is not a member of an active + -- MilitaryOrganization. + fun Civilian : Class ; + fun Civilian_Class : SubClass Civilian SocialRole ; + + -- An AttachingDevice which is designed to attach + -- two things together by means of a movable part which can be tightened + -- or loosened. + fun Clamp : Class ; + fun Clamp_Class : SubClass Clamp AttachingDevice ; + + -- Bringing the Hands together repeatedly to make + -- a loud noise. + fun Clapping : Class ; + fun Clapping_Class : SubClass Clapping (both HandGesture (both Impacting RadiatingSound)) ; + + -- A ClassificationScheme is a conceptual structure, + -- an abstract arrangement of concepts and the relations that link them. + fun ClassificationScheme : Class ; + fun ClassificationScheme_Class : SubClass ClassificationScheme Proposition ; + + -- Any Room in a School where education + -- takes place. + fun Classroom : Class ; + fun Classroom_Class : SubClass Classroom Room ; + + -- The Profession of being in charge of or ministering + -- to a ReligousOrganization. + fun Cleric : Class ; + fun Cleric_Class : SubClass Cleric ReligiousPosition ; + + -- The class of Positions where the position + -- holder is responsible for clerical duties, e.g. typing documents, answering + -- phones, keeping schedules, etc. + fun ClericalSecretary : Ind SkilledOccupation ; + + -- A piece of Clothing that covers the whole body + -- except the face (and possibly entire head), hands, and feet. + fun Cloak : Class ; + fun Cloak_Class : SubClass Cloak Clothing ; + + -- Any Device that measures and represents TimeDuration + -- or TimePosition. + fun Clock : Class ; + fun Clock_Class : SubClass Clock MeasuringDevice ; + + -- A relatively small Room used for storage. + fun Closet : Class ; + fun Closet_Class : SubClass Closet Room ; + + -- The Class of Processes where an aperture is + -- closed in an Object. + fun Closing : Class ; + fun Closing_Class : SubClass Closing Motion ; + + -- Completing a Contract of some sort, + -- e.g. the purchase of a house, closing a business deal, etc. + fun ClosingContract : Class ; + fun ClosingContract_Class : SubClass ClosingContract Committing ; + + -- The EyeMotion of tensing the eye lids so that + -- the corneas are not exposed to light. + fun ClosingEyes : Class ; + fun ClosingEyes_Class : SubClass ClosingEyes (both Closing EyeMotion) ; + + -- A Collection of instances of Clothing that + -- are designed to be worn together. + fun ClothingSuit : Class ; + fun ClothingSuit_Class : SubClass ClothingSuit Collection ; + + -- Any occupation that involves training an athlete or a + -- sports team. + fun Coach : Ind SkilledOccupation ; + + -- CoastGuard is the subclass of GovernmentOrganizations + -- that enforce the maritime laws of a Nation and guard its Seacoast. This may be + -- a military or quasi_military organization. + fun CoastGuard : Class ; + fun CoastGuard_Class : SubClass CoastGuard GovernmentOrganization ; + + -- Clothing that has sleeves and covers from the neck + -- down. Coats are intended to be worn outdoors. + fun Coat : Class ; + fun Coat_Class : SubClass Coat OutdoorClothing ; + + -- A Beverage which is prepared by infusing ground, + -- roasted coffee beans into hot water. + fun Coffee : Class ; + fun Coffee_Class : SubClass Coffee (both Beverage PreparedFood) ; + + -- A Container for a HumanCorpse. + fun Coffin : Class ; + fun Coffin_Class : SubClass Coffin Container ; + + -- Any abstract ArtWork that is produced by arranging + -- bits of paper or photographs. + fun Collage : Class ; + fun Collage_Class : SubClass Collage ArtWork ; + + -- A piece of Clothing that fits around the Neck. + -- A Collar is always part of a Coat or a Shirt. + fun Collar : Class ; + fun Collar_Class : SubClass Collar Clothing ; + + -- A School which admits students who have + -- graduated from high school and which confers a bachelor's degree, + -- normally requiring four years of study. Note that a College does + -- not confer any graduate degrees. For institutions that confer both + -- bachelor's and graduate degrees, the concept University should be + -- used. + fun College : Class ; + fun College_Class : SubClass College PostSecondarySchool ; + + -- The Positions of a student at a PostSecondarySchool + -- who has completed less than one year at the school. + fun CollegeFreshman : Ind CollegeStudentPosition ; + + -- The Positions of a student at a PostSecondarySchool + -- who has completed at least two years and less than three years at the school. + fun CollegeJunior : Ind CollegeStudentPosition ; + + -- The Positions of a student at a PostSecondarySchool + -- who has completed at least three years and less than four years at the school. + fun CollegeSenior : Ind CollegeStudentPosition ; + + -- The Positions of a student at a PostSecondarySchool + -- who has completed at least one year and less than two years at the school. + fun CollegeSophomore : Ind CollegeStudentPosition ; + + -- Any Position at a PostSecondarySchool + -- which is occupied exclusively by students. + fun CollegeStudentPosition : Class ; + fun CollegeStudentPosition_Class : SubClass CollegeStudentPosition Position ; + + -- A commissioned MilitaryOfficer who ranks above + -- a lieutenant colonel and below a brigadier general. + fun Colonel : Class ; + fun Colonel_Class : SubClass Colonel MilitaryOfficer ; + + -- Positions which involve performing stand_up comedy, which + -- is recorded and/or performed in front of live audiences. + fun Comedian : Ind EntertainmentProfession ; + + -- A Building which is intended for + -- organizational activities, e.g. retail or wholesale selling, manufacturing, + -- office work, etc. + fun CommercialBuilding : Class ; + fun CommercialBuilding_Class : SubClass CommercialBuilding (both Building PlaceOfCommerce) ; + + -- CommercialShipping is the subclass of + -- Transportation events in which a commercial agent provides transportation + -- of goods for remuneration. + fun CommercialShipping : Class ; + fun CommercialShipping_Class : SubClass CommercialShipping (both CommercialService Shipping) ; + + -- A Room or suite of Rooms intended for + -- clerical and/or professional work of a single Organization. + fun CommercialUnit : Class ; + fun CommercialUnit_Class : SubClass CommercialUnit PlaceOfCommerce ; + + -- A small, temporary Organization whose purpose + -- is to investigate some issue. + fun Commission : Class ; + fun Commission_Class : SubClass Commission Organization ; + + -- The TimeInterval that runs from the supposed + -- time of the death of Christ to PositiveInfinity. + fun CommonEra : Ind TimeInterval ; + + -- A CommunicationDevice is a Device + -- which serves at the instrument in a Communication Process by allowing + -- the communicated message to be conveyed between the participants. + fun CommunicationDevice : Class ; + fun CommunicationDevice_Class : SubClass CommunicationDevice EngineeringComponent ; + + -- CommunicationOrganization is + -- the subclass of Organizations that manage Communications over physical + -- infrastructure owned or leased by the organization. Such organizations + -- may also produce and disseminate information, entertainment, or other + -- content. Also see MediaOrganization. + fun CommunicationOrganization : Class ; + fun CommunicationOrganization_Class : SubClass CommunicationOrganization Organization ; + + -- CommunicationSystem is a complex + -- system with various components, enabling communication (in some + -- medium) between points in a specific area, whether local or worldwide. + fun CommunicationSystem : Class ; + fun CommunicationSystem_Class : SubClass CommunicationSystem Collection ; + + -- Any PoliticalParty that advocates for a + -- CommunistState. + fun CommunistParty : Class ; + fun CommunistParty_Class : SubClass CommunistParty PoliticalParty ; + + -- A Container which is part of another Container, + -- e.g. a drawer, a zippered pouch in a piece of luggage, a compartment in a TV + -- dinner, etc. + fun Compartment : Class ; + fun Compartment_Class : SubClass Compartment Container ; + + -- A Device that indicates the direction of the + -- various DirectionalAttributes with respect to the device. + fun Compass : Class ; + fun Compass_Class : SubClass Compass (both ContentBearingObject Device) ; + + -- ContentDevelopment which results in a + -- MusicalComposition. + fun Composing : Class ; + fun Composing_Class : SubClass Composing ContentDevelopment ; + + -- ContentDevelopment which results in a + -- MusicalComposition. + fun ComposingMusic : Class ; + fun ComposingMusic_Class : SubClass ComposingMusic ContentDevelopment ; + + -- Locating something in such a way that it cannot + -- be seen. + fun Concealing : Class ; + fun Concealing_Class : SubClass Concealing Putting ; + + -- A ResidentialBuilding containing + -- CondominiumUnits. + fun CondominiumBuilding : Class ; + fun CondominiumBuilding_Class : SubClass CondominiumBuilding ResidentialBuilding ; + + -- A SingleFamilyResidence that may be owned + -- by a member of the SocialUnit that lives there. + fun CondominiumUnit : Class ; + fun CondominiumUnit_SingleFamilyResidence : SubClassC CondominiumUnit SingleFamilyResidence (\UNIT -> exists Human (\PERSON -> and ( home (var Human Human ? PERSON)(var SingleFamilyResidence PermanentResidence ? UNIT))( possesses(var Human Agent ? PERSON)(var SingleFamilyResidence Object ? UNIT)))); + + -- The class of ThreeDimensionalFigures which are + -- produced by rotating a RightTriangle around its RightAngle. + fun Cone : Class ; + fun Cone_Class : SubClass Cone ThreeDimensionalFigure ; + + -- Any Soldier that served on the confederate side + -- during the American Civil War. ConfederateSoldier Any Soldier that served on the + -- confederate side during the American Civil War. + fun ConfederateSoldier : Class ; + fun ConfederateSoldier_Class : SubClass ConfederateSoldier Soldier ; + + -- The eleven states of the UnitedStates + -- that tried to secede from the UnitedStates. + fun ConfederateStatesOfAmerica : Ind GeopoliticalArea ; + + -- Any ExpressingApproval to a person for + -- something that the person did in the past and that is regarded as being + -- to the benefit of the person congratulated. + fun Congratulating : Class ; + fun Congratulating_Class : SubClass Congratulating ExpressingApproval ; + + -- A CompoundSubstance that results from + -- the ChemicalSynthesis of two or more CompoundSubstances. + fun ConjugatedSubstance : Class ; + fun ConjugatedSubstance_Class : SubClass ConjugatedSubstance CompoundSubstance ; + + -- An AlphabeticCharacter that denotes a speech sound + -- that results in audible friction when it is pronounced. + fun Consonant : Class ; + fun Consonant_Class : SubClass Consonant AlphabeticCharacter ; + + -- A Snake that lacks venom and kills its + -- prey by crushing it to death. + fun ConstrictorSnake : Class ; + fun ConstrictorSnake_Class : SubClass ConstrictorSnake Snake ; + + -- Any Holder whose purpose is to contain + -- something else. Note that Container is more specific in meaning + -- than Holder, because a Container must have a Hole that is at + -- least partially filled by the thing contained. + fun Container : Class ; + fun Container_Class : SubClass Container Holder ; + + -- ContainerEmpty is the Attribute of a + -- Container that is empty. + fun ContainerEmpty : Ind RelationalAttribute ; + + -- ContainerFull is the Attribute of a + -- Container that is full to capacity. + fun ContainerFull : Ind RelationalAttribute ; + + -- Devices which permit sexual intercourse but + -- which reduce the likelihood of conception. + fun ContraceptiveDevice : Class ; + fun ContraceptiveDevice_Class : SubClass ContraceptiveDevice Device ; + + -- A group of vehicles that all are being driven + -- in formation (e.g., lines, rows, columns) to the same destination. + -- That destination may be an intermediate destination on the way to a + -- final destination for some of the vehicles however. This is + -- distinguished from vehicles that have no common purpose, such as + -- traffic on a freeway. This includes cases where some of the agents + -- driving the vehicles intend to reach a point but fail to do so. + fun Convoy : Class ; + fun Convoy_Class : SubClass Convoy Collection ; + + -- A Device whose purpose is Cooling something, + -- e.g. air conditioners, refrigerators, freezers, etc. + fun CoolingDevice : Class ; + fun CoolingDevice_Class : SubClass CoolingDevice Device ; + + -- Making a copy of something. + fun Copying : Class ; + fun Copying_Class : SubClass Copying Making ; + + -- A GovernmentOfficer who investigates deaths that are + -- suspected of being due to something other than natural causes. + fun Coroner : Ind GovernmentOfficer ; + + -- A noncomissioned MilitaryOfficer. + fun Corporal : Class ; + fun Corporal_Class : SubClass Corporal MilitaryOfficer ; + + -- Instances of LinguisticCommunication which + -- are achieved by means of Texts that are mailed between the persons + -- communicating with one another. + fun Corresponding : Class ; + fun Corresponding_Class : SubClass Corresponding LinguisticCommunication ; + + -- Fibers from the cotton plant that are used in + -- Making CottonFabric. + fun Cotton : Class ; + fun Cotton_Class : SubClass Cotton PlantAnatomicalStructure ; + + -- Any Fabric that is made entirely out of Cotton. + fun CottonFabric : Class ; + fun CottonFabric_Class : SubClass CottonFabric Fabric ; + + -- Any Room whose purpose is to realize + -- JudicialProcesses. + fun CourtRoom : Class ; + fun CourtRoom_Class : SubClass CourtRoom Room ; + + -- A domesticated HoofedMammal that is raised for milk + -- and beef, and is also used for work. + fun Cow : Class ; + fun Cow_Class : SubClass Cow (both DomesticAnimal HoofedMammal) ; + + -- Crane is a subclass of mechanical Devices + -- that consist of a HoistingDevice on a moveable boom, designed to + -- assist in moving heavy loads. + fun Crane : Class ; + fun Crane_Class : SubClass Crane MaterialHandlingEquipment ; + + -- Creek is the class of small streams of fresh + -- water flowing through land, usually into a River. + fun Creek : Class ; + fun Creek_Class : SubClass Creek (both BodyOfWater (both FreshWaterArea StreamWaterArea)) ; + + -- Any IntentionalProcess that violates a Law. + fun CriminalAction : Class ; + fun CriminalAction_Class : SubClass CriminalAction IntentionalProcess ; + + -- A GroupOfPeople which exists (partially or + -- wholly) for the purpose of CriminalAction. + fun CriminalGang : Class ; + fun CriminalGang_Class : SubClass CriminalGang GroupOfPeople ; + + -- A LandArea which is dedicated to + -- Agriculture, e.g. Lawns, gardens, and fields for growing crops. + fun CultivatedLandArea : Class ; + fun CultivatedLandArea_Class : SubClass CultivatedLandArea LandArea ; + + -- A raised concrete or asphalt structure that connects a + -- Sidewalk with a Roadway. + fun Curb : Class ; + fun Curb_Class : SubClass Curb StationaryArtifact ; + + -- Any instance of Currency that is made + -- of paper. + fun CurrencyBill : Class ; + fun CurrencyBill_Class : SubClass CurrencyBill Currency ; + + -- Any instance of Currency that is made + -- of Metal. + fun CurrencyCoin : Class ; + fun CurrencyCoin_Class : SubClass CurrencyCoin Currency ; + + -- A piece of Fabric whose purpose is Covering a + -- Window so as to keep out the light or prevent people from seeing inside. + fun Curtain : Class ; + fun Curtain_Class : SubClass Curtain (both Fabric WindowCovering) ; + + -- Any Device whose purpose is Cutting something + -- else. This class covers knives of all times, axes, saws, razors, chisels etc. + fun CuttingDevice : Class ; + fun CuttingDevice_Class : SubClass CuttingDevice Device ; + + -- The class of ThreeDimensionalFigures such that + -- all GeometricPoints that make up the Cylinder are equidistant from a + -- OneDimensionalFigure, known as the axis of the Cylinder. + fun Cylinder : Class ; + fun Cylinder_Class : SubClass Cylinder ThreeDimensionalFigure ; + + fun DairyProduct : Class ; + fun DairyProduct_Class : SubClass DairyProduct AnimalAgriculturalProduct ; + + -- A School that does not board its students, i.e. + -- students attend classes during the day and then return to a private residence + -- for the night. + fun DaySchool : Class ; + fun DaySchool_Class : SubClass DaySchool School ; + + -- The class of TimeIntervals that begin at Sunrise + -- and end at Sunset. + fun DayTime : Class ; + fun DayTime_Class : SubClass DayTime TimeInterval ; + + -- Any Position within a ReligiousOrganization that is held + -- by a layman, which is part_time, and which involves assisting a Cleric. + fun Deacon : Class ; + fun Deacon_Class : SubClass Deacon PartTimePosition ; + + -- The Attribute that applies to Animals and Humans + -- that are unable to hear. + fun Deaf : Ind BiologicalAttribute ; + + -- A Contest where each participant holds a different + -- view regarding some issue, and each participant attempts to prove, by + -- rhetoric or evidence, that his/her own views about a particular matter are + -- correct and/or that the views of the other participants are incorrect. + fun Debating : Class ; + fun Debating_Class : SubClass Debating (both Contest LinguisticCommunication) ; + + -- Getting off a Vehicle, e.g. getting out of an + -- Automobile, deplaning, getting off a WaterVehicle, etc. + fun Deboarding : Class ; + fun Deboarding_Class : SubClass Deboarding Translocation ; + + -- The TimeDuration of 10 years. + fun DecadeDuration : Ind UnitOfDuration ; + + -- Decreasing the speed with which someone + -- or something is moving. + fun Decelerating : Class ; + fun Decelerating_Class : SubClass Decelerating (both Decreasing Translocation) ; + + -- One of the two major political parties in + -- the UnitedStates. The DemocraticParty represents liberal values. + fun DemocraticParty : Ind PoliticalParty ; + + -- The Profession of being a dentist, i.e. diagnosing + -- and treating problems related to the teeth. + fun Dentist : Ind Profession ; + + -- Any BiologicallyActiveSubstance which has + -- the effect of depressing the central nervous system, i.e. decreasing + -- function or activity in the Brain or SpinalCord. + fun Depressant : Class ; + fun Depressant_Class : SubClass Depressant BiologicallyActiveSubstance ; + + -- A Position which authorizes the holder of the position + -- to act as the sheriff when the sheriff is not available. + fun Deputy : Ind PoliceOfficer ; + + -- (DescendantsFn ?PERSON) denotes all and only + -- the descendants of ?PERSON, i.e. the Group consisting of ?OFFSPRING who + -- satisfy the following formula: (ancestor ?OFFSPRING ?PERSON). + fun DescendantsFn : El Human -> Ind FamilyGroup ; + + -- A Table for a single person which is intended to be + -- used for paperwork. + fun Desk : Class ; + fun Desk_Class : SubClass Desk Table ; + + -- A detergent is a compound, or a mixture of + -- compounds, whose molecules have two distinct regions: one that is + -- hydrophilic, and dissolves easily in water, and another region that is + -- hydrophobic, with little (if any) affinity for water. As a consequence, + -- these compounds can aid in the solubilization of hydrophobic compounds in + -- water, and usually are optimized for this property. Though Soap also has + -- these properties, soaps in general are not considered detergents. Soap is + -- a particular type of surfactant that is derived from oils and fats. They + -- are created through the saponification process whereby the ester linkage + -- in a vegetable oil or fat is hydrolytically cleaved, creating a sodium or + -- potassium salt of a fatty acid (i.e. soap). Both detergents and soaps + -- are considered to be surfactants. Surfactants that are not soaps are + -- considered to be detergents. Detergents are also commonly known as any + -- cleaning mixture containing surfactants. (from Wikipedia) + fun Detergent : Class ; + fun Detergent_Class : SubClass Detergent (both Mixture Surfactant) ; + + -- This class contains two Attributes to + -- indicate whether a Device is or is not behaving as it is intended to + -- behave, Functioning and Malfunctioning. + fun DeviceAttribute : Class ; + fun DeviceAttribute_Class : SubClass DeviceAttribute ObjectiveNorm ; + + fun DeviceClosed : Ind (both DeviceStateAttribute RelationalAttribute) ; + + fun DeviceOff : Ind (both DeviceStateAttribute InternalAttribute) ; + + fun DeviceOn : Ind (both DeviceStateAttribute InternalAttribute) ; + + fun DeviceOpen : Ind (both DeviceStateAttribute RelationalAttribute) ; + + -- DeviceStateAttribute is the class + -- of attributes that represent different states that a Device may be in. + -- Examples: DeviceOff, DeviceOn, DeviceOpen, and DeviceClosed. + fun DeviceStateAttribute : Class ; + fun DeviceStateAttribute_Class : SubClass DeviceStateAttribute DeviceAttribute ; + + -- Any process of Separating a Solution into two or more + -- constituent PureSubstances by means of their unequal diffusion through membranes + -- that are partially permeable. + fun Dialysis : Class ; + fun Dialysis_Class : SubClass Dialysis Separating ; + + -- (DiameterFn ?CIRCLE) denotes the length of the + -- diameter of the Circle ?CIRCLE. + fun DiameterFn : El Circle -> Ind LengthMeasure ; + + -- Crystalline Carbon that is valued as a gem and + -- used in industrial applications. + fun Diamond : Class ; + fun Diamond_Class : SubClass Diamond (both Carbon Mineral) ; + + -- A DiseaseOrSyndrome of frequent, watery bowel + -- movements. Severe cases can be fatal for the young or weak. It is + -- a common cause of death for the very young in poor developing countries. + fun Diarrhea : Ind DiseaseOrSyndrome ; + + -- A ReferenceBook which specifies the meanings + -- of the Words of a Language. + fun Dictionary : Class ; + fun Dictionary_Class : SubClass Dictionary ReferenceBook ; + + -- DieselEngine is the subclass of + -- InternalCombustionEngines that use DieselFuel as their resource. + fun DieselEngine : Class ; + fun DieselEngine_Class : SubClass DieselEngine InternalCombustionEngine ; + + -- A Plan regarding what one is allowed to eat. + fun Diet : Class ; + fun Diet_Class : SubClass Diet Plan ; + + -- Any Process of removing or turning over the Soil. + fun Digging : Class ; + fun Digging_Class : SubClass Digging (both IntentionalProcess SurfaceChange) ; + + -- Any of the extremities of Limbs that are + -- found in the higer Vertebrates and the Amphibians. + fun DigitAppendage : Class ; + fun DigitAppendage_Class : SubClass DigitAppendage (both AnimalAnatomicalStructure BodyPart) ; + + -- Any Character that is comprised of a single digit, + -- i.e. one of the numerals 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. + fun DigitCharacter : Class ; + fun DigitCharacter_Class : SubClass DigitCharacter Character ; + + -- Adding a Liquid to a Solution to decrease + -- the concentration of the Solution. + fun Diluting : Class ; + fun Diluting_Class : SubClass Diluting Putting ; + + -- A Room intended primarily for Eating. + fun DiningRoom : Class ; + fun DiningRoom_Class : SubClass DiningRoom Room ; + + -- A person who works as a facilitator for communication + -- between countries, in the official employ of one of the countries. + fun Diplomat : Ind OccupationalRole ; + + -- A Holder for Food while the Food is being eaten. + fun Dish : Class ; + fun Dish_Class : SubClass Dish Holder ; + + -- Any BodyMotion which results in not being On + -- something else. + fun Dismounting : Class ; + fun Dismounting_Class : SubClass Dismounting BodyMotion ; + + -- DisplacementHullWaterVehicle is + -- a subclass of WaterVehicle with hulls designed to move water aside as they + -- move through the water. Contrast with PlaningHullWaterVehicle. + fun DisplacementHullWaterVehicle : Class ; + fun DisplacementHullWaterVehicle_Class : SubClass DisplacementHullWaterVehicle WaterVehicle ; + + -- Something for posting content so + -- that it can be disseminated to the public. + fun DisplayArtifact : Class ; + fun DisplayArtifact_Class : SubClass DisplayArtifact Artifact ; + + -- Someone who is opposed to the leadership + -- of a particular country. Typically, a dissident suffers punishment + -- at the hands of the country whose leadership he is opposing. + fun Dissident : Ind (both Civilian SocialRole) ; + + -- An AlcoholicBeverage that has + -- had some part of its Water content removed by distillation. This class + -- covers drinks of unmixed, hard liquor. + fun DistilledAlcoholicBeverage : Class ; + fun DistilledAlcoholicBeverage_Class : SubClass DistilledAlcoholicBeverage AlcoholicBeverage ; + + -- A legal act whereby a marriage is dissolved. This + -- includes annulments. + fun Divorcing : Class ; + fun Divorcing_Class : SubClass Divorcing Declaring ; + + -- A MotionPicture which purports to represent the + -- facts about a person, event, etc. + fun Documentary : Class ; + fun Documentary_Class : SubClass Documentary (both FactualText MotionPicture) ; + + -- Purposely moving one's body in such a way as + -- to avoid being hit by something. + fun Dodging : Class ; + fun Dodging_Class : SubClass Dodging (both BodyMotion IntentionalProcess) ; + + -- Any Animal that is kept by a Human, as + -- a pet, as livestock, for exhibition, etc. + fun DomesticAnimal : Class ; + fun DomesticAnimal_Class : SubClass DomesticAnimal Animal ; + + -- A variety of Feline which has been domesticated + -- by selective breeding. + fun DomesticCat : Class ; + fun DomesticCat_Class : SubClass DomesticCat (both DomesticAnimal Feline) ; + + -- Canines which have evolved from the common + -- wolf by selective breeding. + fun DomesticDog : Class ; + fun DomesticDog_Class : SubClass DomesticDog (both Canine DomesticAnimal) ; + + -- A domesticated HoofedMammal that is used for work. + fun Donkey : Class ; + fun Donkey_Class : SubClass Donkey (both HoofedMammal Livestock) ; + + -- An Artifact that restricts and permits access to a + -- StationaryArtifact (e.g. Building or Room) depending on whether the + -- Door is open or locked. Note that the class Door also covers gates, + -- because it is not possible to define objective criteria that reliably + -- distinguish doors from gates. + fun Door : Class ; + fun Door_Class : SubClass Door (both Artifact Device) ; + + -- A StationaryArtifact consisting of a frame that + -- holds a Door. + fun Doorway : Class ; + fun Doorway_Class : SubClass Doorway StationaryArtifact ; + + -- A TemporaryResidence which is owned by a School + -- and which is used to house students while they take classes at the School. + fun Dormitory : Class ; + fun Dormitory_Class : SubClass Dormitory (both ResidentialBuilding TemporaryResidence) ; + + -- A Mixture of Flour, Water, and possibly + -- other ingredients (such as Butter and Salt), which is used in + -- making BreadOrBiscuits. + fun Dough : Class ; + fun Dough_Class : SubClass Dough (both Mixture PreparedFood) ; + + -- A PositionalAttribute to indicate that one thing is + -- one or more floors below a second thing in the same building. + fun Downstairs : Ind PositionalAttribute ; + + -- The commercial center of a City. The part of the + -- City that contains more shops and offices than any other part. + fun Downtown : Class ; + fun Downtown_Class : SubClass Downtown CityDistrict ; + + -- Playing a character in a Performance, + -- MotionPicture, etc. + fun DramaticActing : Class ; + fun DramaticActing_Class : SubClass DramaticActing Pretending ; + + -- The GroupOfPeople who engage in DramaticActing + -- as part of the realization of a single FictionalText. + fun DramaticCast : Class ; + fun DramaticCast_Class : SubClass DramaticCast GroupOfPeople ; + + -- The process of directing a DramaticActing + -- in a MotionPicture or the Performance of a DramaticPlay. + fun DramaticDirecting : Class ; + fun DramaticDirecting_Class : SubClass DramaticDirecting Guiding ; + + -- A Performance that consists exclusively of + -- DramaticActing, e.g. a live performance of Death_of_a_Salesman in front + -- of an audience. + fun DramaticPerformance : Class ; + fun DramaticPerformance_Class : SubClass DramaticPerformance Performance ; + + -- A FictionalText that is intended to be realized + -- as DramaticActing. + fun DramaticPlay : Class ; + fun DramaticPlay_Class : SubClass DramaticPlay FictionalText ; + + -- Any ContentDevelopment that results in a Sketch. + fun Drawing : Class ; + fun Drawing_Class : SubClass Drawing (both ContentDevelopment SurfaceChange) ; + + -- A Process of producing metal images which occurs + -- while one is Asleep. + fun Dreaming : Class ; + fun Dreaming_Class : SubClass Dreaming Imagining ; + + -- An item of Clothing which covers the lower body of a Woman. + fun Dress : Class ; + fun Dress_Class : SubClass Dress Clothing ; + + -- The Process of putting on Clothing. + fun Dressing : Class ; + fun Dressing_Class : SubClass Dressing Putting ; + + -- Any Room which is intended for ChangingClothing. + fun DressingRoom : Class ; + fun DressingRoom_Class : SubClass DressingRoom Room ; + + -- A Device that has the purpose of creating a Hole. + -- This covers manual drills as well as electric or pneumatic drills. + fun Drill : Class ; + fun Drill_Class : SubClass Drill CuttingDevice ; + + -- Any Process of producing a hole in a + -- SelfConnectedObject which involves rotating a long, thin bit. + fun Drilling : Class ; + fun Drilling_Class : SubClass Drilling (both IntentionalProcess SurfaceChange) ; + + -- An open FluidContainer that is intended to serve a Beverage + -- to a single person. Note that this class includes both cups with handles and + -- drinking glasses. + fun DrinkingCup : Class ; + fun DrinkingCup_Class : SubClass DrinkingCup FluidContainer ; + + -- Any LiquidMotion where the Liquid is moved drop by drop. + fun Dripping : Class ; + fun Dripping_Class : SubClass Dripping LiquidMotion ; + + -- An EngineeringComponent whose purpose is to + -- transfer force from one part of a Device to another part. + fun DriveComponent : Class ; + fun DriveComponent_Class : SubClass DriveComponent EngineeringComponent ; + + -- A License which identifies the holder and + -- indicates that he has the right to drive a certain class of RoadVehicle. + fun DriversLicense : Class ; + fun DriversLicense_Class : SubClass DriversLicense License ; + + -- A small, private Roadway that is used for parking + -- Automobiles or for connecting a Garage to a public Roadway. + fun Driveway : Class ; + fun Driveway_Class : SubClass Driveway Roadway ; + + -- A RetailStore that sells Medicine, and + -- perhaps other items as well. + fun DrugStore : Class ; + fun DrugStore_Class : SubClass DrugStore RetailStore ; + + -- The ConsciousnessAttribute of someone whose motor and/or + -- cognitive faculties are significantly impaired by a BiologicallyActiveSubstance. + fun Drugged : Ind ConsciousnessAttribute ; + + -- An atonal PercussionInstrument which consists of a hollow cylinder + -- and a fabric stretched across at least one end of the cylinder. + fun Drum : Class ; + fun Drum_Class : SubClass Drum PercussionInstrument ; + + -- Playing a Drum. Note that this includes both + -- musical performance, as well as signalling and cerimonial applications. + fun Drumming : Class ; + fun Drumming_Class : SubClass Drumming (both Demonstrating RadiatingSound) ; + + -- The ConsciousnessAttribute of someone whose motor and + -- cognitive faculties are significantly impaired by Alcohol. + fun Drunk : Ind ConsciousnessAttribute ; + + -- A subclass of Bird with webbed feet and a large bill. + -- Some ducks live in the wild, and some are raised for meat and/or eggs. + fun Duck : Class ; + fun Duck_Class : SubClass Duck Poultry ; + + -- Purposely moving one's body downward in such a way as + -- to avoid being hit by something. + fun Ducking : Class ; + fun Ducking_Class : SubClass Ducking (both BodyMotion (both IntentionalProcess MotionDownward)) ; + + -- A Tax that is levied on imports and/or exports. + fun DutyTax : Class ; + fun DutyTax_Class : SubClass DutyTax Tax ; + + -- The Organ of hearing. + fun Ear : Class ; + fun Ear_Class : SubClass Ear (both AnimalAnatomicalStructure Organ) ; + + -- Instances of RadiatingSound where the instrument + -- is a surface which bounces sound waves back to their origin, where they can + -- be heard again. + fun Echoing : Class ; + fun Echoing_Class : SubClass Echoing RadiatingSound ; + + -- A class of Relations which are used + -- to specify various economic measures, e.g. the GDP, the consumer price + -- index, and the trade deficit. + fun EconomicRelation : El GeopoliticalArea -> El Entity -> Formula; + + -- The field of economics. + fun Economics : Ind SocialScience ; + + -- A schedule of class meetings offered by an + -- EducationalOrganization. + fun EducationalCourse : Class ; + fun EducationalCourse_Class : SubClass EducationalCourse EducationalProgram ; + + -- A building or campus, owned by an + -- EducationalOrganization, which is intended as the location for + -- EducationalProcesses. + fun EducationalFacility : Class ; + fun EducationalFacility_Class : SubClass EducationalFacility StationaryArtifact ; + + -- A series of EducationalCourses that must + -- be completed to receive an AcademicDegree or other Certificate. Note that + -- an EducationalProgram, unlike an EducationalCourse, may be realized at more + -- than one EducationalOrganization. + fun EducationalProgram : Class ; + fun EducationalProgram_Class : SubClass EducationalProgram Plan ; + + -- The joint in the Arm connecting the forearm and the + -- upper arm. + fun Elbow : Class ; + fun Elbow_Class : SubClass Elbow BodyJoint ; + + -- ElectoralCollegeElection is + -- the class of Elections in which the outcome is decided by the votes of + -- electors who have been chosen by popular vote, rather than directly by + -- results of the popular vote. ElectoralCollegeElection is an indirect + -- method of election, in contrast to PopularElection. + fun ElectoralCollegeElection : Class ; + fun ElectoralCollegeElection_Class : SubClass ElectoralCollegeElection GeneralElection ; + + -- A Device that uses Electricity as its + -- primary power source. + fun ElectricDevice : Class ; + fun ElectricDevice_Class : SubClass ElectricDevice Device ; + + -- ElectricMotor is the subclass of Engines + -- that produce mechanical power from electricity. + fun ElectricMotor : Class ; + fun ElectricMotor_Class : SubClass ElectricMotor (both ElectricDevice Engine) ; + + -- ElectricalSignalling is the subclass of Signalling processes + -- that involve control of an electrical current. Cf. ElectronicSignalling. + fun ElectricalSignalling : Class ; + fun ElectricalSignalling_Class : SubClass ElectricalSignalling Signalling ; + + -- ElectrifiedRailwayCar is the + -- subclass of railway cars that are powered by electricity, which is + -- provided to the car through an overhead link or electrified third rail. + fun ElectrifiedRailwayCar : Class ; + fun ElectrifiedRailwayCar_Class : SubClass ElectrifiedRailwayCar (both ElectricDevice (both PoweredVehicle RollingStock)) ; + + -- ElectronicSignalling is the + -- subclass of Signalling processes that involve a signal generated by + -- a computer. + fun ElectronicSignalling : Class ; + fun ElectronicSignalling_Class : SubClass ElectronicSignalling Signalling ; + + -- The branch of Physics that deals with the theory + -- and applications of electron emissions. + fun Electronics : Ind FieldOfStudy ; + + -- A very large, almost hairless Herbivore with a long trunk. + fun Elephant : Class ; + fun Elephant_Class : SubClass Elephant Herbivore ; + + -- A TransportationDevice consisting of a car that moves + -- up and down in a vertical shaft so that people or objects can move from one floor to another + -- in a building. + fun Elevator : Class ; + fun Elevator_Class : SubClass Elevator TransportationDevice ; + + -- An embassy is a Building that is owned by a Government to house + -- its diplomatic and consular staff that is in another country. + fun EmbassyBuilding : Class ; + fun EmbassyBuilding_Class : SubClass EmbassyBuilding GovernmentBuilding ; + + -- The class of Touching processes where one Human hugs another one. + fun Embracing : Class ; + fun Embracing_Class : SubClass Embracing Touching ; + + -- A DiseaseOrSyndrome that affects the Lungs and + -- which results in a decrease of breathing ability. + fun Emphysema : Ind DiseaseOrSyndrome ; + + -- Involuntarily ending one's employment. + -- Note that this covers termination due to inadequate performance, as + -- well as layoffs. + fun EmploymentFiring : Class ; + fun EmploymentFiring_Class : SubClass EmploymentFiring TerminatingEmployment ; + + -- Engine is a subclass of Transducer. Engines are devices for converting + -- some form of energy resource into mechanical power. + fun Engine : Class ; + fun Engine_Class : SubClass Engine Transducer ; + + -- The application of instances of Science to the solution + -- of practical problems, i.e. the creation of various forms of technology. + fun Engineering : Ind Science ; + + -- A building that has the primary + -- purpose of entertaining people. + fun EntertainmentBuilding : Class ; + fun EntertainmentBuilding_Class : SubClass EntertainmentBuilding Building ; + + -- Any business whose services include + -- Performances. This class covers nightclubs, commercial live theaters, + -- and comedy clubs. + fun EntertainmentCompany : Class ; + fun EntertainmentCompany_Class : SubClass EntertainmentCompany CommercialAgent ; + + -- Positions which involve creating + -- content or performances that are intended to entertain. This class covers + -- the TheaterProfession, FilmMakingProfession, being a comedian, etc. + fun EntertainmentProfession : Class ; + fun EntertainmentProfession_Class : SubClass EntertainmentProfession SkilledOccupation ; + + -- More commonly known as burying, this is the class + -- of processes of putting a HumanCorpse into a Tomb. Note that this class + -- is not a subclass of Burying, since some Tombs are not covered with Soil, + -- e.g. those in a mausoleum. + fun Entombing : Class ; + fun Entombing_Class : SubClass Entombing Putting ; + + -- A sealable Container for one or more pieces of + -- paper which is designed to protect the papers while they are transferred to + -- someone. + fun Envelope : Class ; + fun Envelope_Class : SubClass Envelope Container ; + + -- Any instance of Translocation where the agent brings + -- it about that he/she is no longer confined without having the right to do + -- so. + fun Escaping : Class ; + fun Escaping_Class : SubClass Escaping Translocation ; + + -- Any Investigating by one Government of another + -- Government where the second Government does not know that it is being + -- spied upon. + fun Espionage : Class ; + fun Espionage_Class : SubClass Espionage (both Investigating PoliticalProcess) ; + + -- The class of nations that are in Europe. + fun EuropeanNation : Class ; + fun EuropeanNation_Class : SubClass EuropeanNation Nation ; + + -- The state of being happy about a state of + -- affairs that might occur in the future. + fun Excitement : Ind EmotionalState ; + + -- Killing of a Human by a Government for + -- the commission of a CriminalAction. + fun Execution : Class ; + fun Execution_Class : SubClass Execution Killing ; + + -- A Residence of a chiefOfState, e.g. + -- the White House, a state governor's mansion, Buckingham Palace, etc. + fun ExecutiveResidence : Class ; + fun ExecutiveResidence_Class : SubClass ExecutiveResidence PermanentResidence ; + + -- Any instance of Breathing where the breath is + -- expelled from the Lungs. + fun Exhaling : Class ; + fun Exhaling_Class : SubClass Exhaling Breathing ; + + -- Any sudden and massive release of energy that is + -- the product of a chemical reaction. + fun Explosion : Class ; + fun Explosion_Class : SubClass Explosion Radiating ; + + -- A Device whose purpose is to explode. Note + -- that ExplosiveDevice is not a subclass of Weapon, since explosives can be + -- used in demolition work and in fireworks displays, for example. + fun ExplosiveDevice : Class ; + fun ExplosiveDevice_Class : SubClass ExplosiveDevice Device ; + + -- An ExplosiveDevice which is designed to + -- explode when there is movement over it, e.g. by a person on foot, by a + -- RoadVehicle, etc. + fun ExplosiveMine : Class ; + fun ExplosiveMine_Class : SubClass ExplosiveMine (both ExplosiveDevice Weapon) ; + + -- Any Substance which is capable of exploding. + fun ExplosiveSubstance : Class ; + fun ExplosiveSubstance_Class : SubClass ExplosiveSubstance Substance ; + + -- Expressing favor about a physical thing + -- or a state of affairs. + fun ExpressingApproval : Class ; + fun ExpressingApproval_Class : SubClass ExpressingApproval Expressing ; + + -- Expressing disfavor about a physical + -- thing or a state of affairs. + fun ExpressingDisapproval : Class ; + fun ExpressingDisapproval_Class : SubClass ExpressingDisapproval Expressing ; + + -- Any instance of Expressing an acknowledgment + -- of a person's departure. Note that this class is not a subclass of + -- LinguisticCommunication, because it covers gestures of departure, e.g. Waving + -- and Nodding in certain circumstances. + fun ExpressingFarewell : Class ; + fun ExpressingFarewell_Class : SubClass ExpressingFarewell Expressing ; + + -- Any instance of Expressing that is also an + -- instance of LinguisticCommunication, e.g. thanking someone, expressing condolence, + -- expressing disapproval with an utterance rather than a Gesture, etc. + fun ExpressingInLanguage : Class ; + fun ExpressingInLanguage_Class : SubClass ExpressingInLanguage (both Expressing LinguisticCommunication) ; + + -- The Organ of sight. + fun Eye : Class ; + fun Eye_Class : SubClass Eye (both AnimalAnatomicalStructure Organ) ; + + -- A lens or pair of lenses with or without frames whose + -- purpose is to to correct a defect in vision. This class covers ordinary eye + -- glasses, reading glasses, contact lenses, monocles, etc. + fun EyeGlass : Class ; + fun EyeGlass_Class : SubClass EyeGlass OpticalDevice ; + + -- Any Motion where a patient is the agent's + -- own Eyelid or Eyelids. + fun EyeMotion : Class ; + fun EyeMotion_Class : SubClass EyeMotion BodyMotion ; + + -- Folds of Skin that can be manipulated to + -- cover or uncover Eyes. + fun Eyelid : Class ; + fun Eyelid_Class : SubClass Eyelid Skin ; + + -- The part of the Head from forehead to chin and + -- from ear to ear. + fun Face : Class ; + fun Face_Class : SubClass Face (both AnimalAnatomicalStructure BodyPart) ; + + -- Any Gesture whose instrument is the Face. + fun FacialExpression : Class ; + fun FacialExpression_Class : SubClass FacialExpression Gesture ; + + -- Hair that grows on the Face. This + -- class covers beards, mustaches, sideburns, midnight shadow, etc. + fun FacialHair : Class ; + fun FacialHair_Class : SubClass FacialHair Hair ; + + -- The class of Statements that are True. + fun Fact : Class ; + fun Fact_Class : SubClass Fact Statement ; + + -- A Building intended to house a process that + -- produces goods of some value. + fun Factory : Class ; + fun Factory_Class : SubClass Factory Building ; + + -- The SeasonOfYear that begins at the autumnal + -- equinox and ends at the winter solstice. + fun FallSeason : Class ; + fun FallSeason_Class : SubClass FallSeason SeasonOfYear ; + + -- The process of transitioning from a state of + -- being Awake to a state of being Asleep. + fun FallingAsleep : Class ; + fun FallingAsleep_Class : SubClass FallingAsleep PsychologicalProcess ; + + -- Radioactive powder that is typically dispersed by + -- the explosion of a nuclear weapon. + fun Fallout : Class ; + fun Fallout_Class : SubClass Fallout Powder ; + + -- A Partnership that is owned by a single + -- family. + fun FamilyBusiness : Class ; + fun FamilyBusiness_Class : SubClass FamilyBusiness Partnership ; + + -- A CoolingDevice which consists simply of one or more + -- blades that circulate the air. Note that this class covers both electrical fans + -- and fans that are manually operated. + fun FanDevice : Class ; + fun FanDevice_Class : SubClass FanDevice CoolingDevice ; + + -- A StationaryArtifact consisting of a cultivated + -- LandArea and Buildings for maintaining the land and/or the Animals + -- on the land. + fun Farm : Class ; + fun Farm_Class : SubClass Farm StationaryArtifact ; + + -- A Building on a Farm that is used for keeping + -- DomesticAnimals, Fodder or harvested crops. + fun FarmBuilding : Class ; + fun FarmBuilding_Class : SubClass FarmBuilding Building ; + + -- OccupationalTrades which involve Agriculture. + fun FarmHand : Ind OccupationalTrade ; + + -- Operating a farm, e.g. planting and harvesting crops, + -- tending livestock, etc. + fun Farming : Class ; + fun Farming_Class : SubClass Farming Working ; + + -- Each instance of this class is one of the structures + -- that make up the external covering of Birds. + fun Feather : Class ; + fun Feather_Class : SubClass Feather (both AnimalAnatomicalStructure BodyPart) ; + + -- Giving Food to a Human or Animal. + fun Feeding : Class ; + fun Feeding_Class : SubClass Feeding Giving ; + + -- A Cow that is Female. + fun FemaleCow : Class ; + fun FemaleCow_Cow : SubClassC FemaleCow Cow (\COW -> attribute (var Cow Object ? COW)(el SexAttribute Attribute ? Female)); + + -- A StationaryArtifact that serves to demarcate or + -- to prevent access to or from the area that the Fence surrounds. + fun Fence : Class ; + fun Fence_Class : SubClass Fence StationaryArtifact ; + + -- Having a body temperature which is (significantly) greater + -- than 98.6 degrees Fahrenheit. This syndrome is often associated with dehydration + -- and chills. + fun Fever : Ind DiseaseOrSyndrome ; + + -- A LandArea that has been cleared of BotanicalTrees. + -- Note that a Field is not necessarily used for the cultivation of crops and + -- that a Field may be very small, e.g. Lawn is a subclass of Field. + fun Field : Class ; + fun Field_Class : SubClass Field LandArea ; + + -- The study of legal principles and the framework of national + -- and/or international laws. + fun FieldOfLaw : Ind FieldOfStudy ; + + -- Any high_speed MilitaryAircraft whose purpose is + -- to destroy enemy MilitaryAircraft. + fun Fighter : Class ; + fun Fighter_Class : SubClass Fighter MilitaryAircraft ; + + -- A Device whose purpose is to make something + -- smoother. For example, a nail file is used to even out the tips of one's + -- finger nails. + fun FileDevice : Class ; + fun FileDevice_Class : SubClass FileDevice Device ; + + -- Positions which involve directing MotionPictures. + fun FilmDirector : Class ; + fun FilmDirector_Class : SubClass FilmDirector FilmMakingProfession ; + + -- ContentDevelopment where the result is a + -- MotionPicture. + fun FilmMaking : Class ; + fun FilmMaking_Class : SubClass FilmMaking ContentDevelopment ; + + -- Positions which involve FilmMaking, + -- i.e. acting in films, directing films, producing films, etc. + fun FilmMakingProfession : Class ; + fun FilmMakingProfession_Class : SubClass FilmMakingProfession EntertainmentProfession ; + + -- Positions which involve producing MotionPictures, + -- i.e arranging the financing for the MotionPicture and supervising its production. + fun FilmProducer : Class ; + fun FilmProducer_Class : SubClass FilmProducer FilmMakingProfession ; + + -- A Device whose purpose is to remove part of a + -- Solution that is passed through the Filter. + fun Filter : Class ; + fun Filter_Class : SubClass Filter Device ; + + -- A formal banking, brokerage, or business relationship + -- established to provide for regular services, dealings, and other financial + -- transactions. + fun FinancialAccount : Class ; + + -- Any item of economic value owned by an individual or + -- corporation, especially that which could be converted to cash. Examples are cash, + -- securities, accounts receivable, inventory, office equipment, a house, a car, and + -- other property. + fun FinancialAsset : Class ; + + -- A brief statement that the stated amount + -- of money is owed by the person to whom the bill is delivered. + fun FinancialBill : Class ; + fun FinancialBill_Class : SubClass FinancialBill FinancialText ; + + -- The class FinancialCompany + -- includes, as subclasses, FinancialBank, CreditUnion and SavingsAndLoan. + fun FinancialCompany : Class ; + fun FinancialCompany_Class : SubClass FinancialCompany CommercialAgent ; + + -- Services performed by a + -- FinancialCompany. + fun FinancialService : Class ; + fun FinancialService_Class : SubClass FinancialService CommercialService ; + + -- A Report about monetary figures. This + -- class covers FinancialBills, balance sheets, account statements, etc. + fun FinancialText : Class ; + fun FinancialText_Class : SubClass FinancialText Report ; + + -- Any Funding which is provided by a FinancialCompany + -- with the aim of making a profit on the money invested. + fun Financing : Class ; + fun Financing_Class : SubClass Financing (both FinancialService Funding) ; + + -- The five extremities of Hands. + fun Finger : Class ; + fun Finger_Class : SubClass Finger DigitAppendage ; + + -- That pattern of arches, loops, and whorls that mark + -- the imprint of a Finger. + fun Fingerprint : Class ; + fun Fingerprint_Class : SubClass Fingerprint (both BiologicalAttribute ShapeAttribute) ; + + -- Any Quantity that is limited or bounded in + -- magnitude. + fun FiniteQuantity : Class ; + fun FiniteQuantity_Class : SubClass FiniteQuantity Quantity ; + + -- A Gun that is small enough to be carried and fired by + -- a single Human. + fun Firearm : Class ; + fun Firearm_Class : SubClass Firearm Gun ; + + -- A Device in a Building which is used for burning wood, + -- coal, etc for heat. + fun Fireplace : Class ; + fun Fireplace_Class : SubClass Fireplace (both Device StationaryArtifact) ; + + -- (FirstFn ?LIST) returns the first item in + -- the List ?LIST. For example, (FirstFn (ListFn Monday Tuesday + -- Wednesday)) would return the value of Monday. + fun FirstFn : El List -> Ind Entity ; + + -- Meat that was originally part of a Fish. + fun FishMeat : Class ; + fun FishMeat_Class : SubClass FishMeat Meat ; + + -- The BodyPosition of having the fingers drawn into + -- the palm so that the hand can be used for striking something. + fun Fist : Ind BodyPosition ; + + -- An Icon made of Fabric that refers to a particular + -- GeopoliticalArea. + fun Flag : Class ; + fun Flag_Class : SubClass Flag Icon ; + + -- A three dimensional object for which + -- two dimensions are markedly larger than the third the + -- two larger dimensions are also not of markedly different length. + fun Flat : Ind ShapeAttribute ; + + -- Flooding is the subclass of LiquidMotion + -- processes in which the water level of a Waterway rises or water spreads + -- over a flood plain along a Waterway. + fun Flooding : Class ; + fun Flooding_Class : SubClass Flooding LiquidMotion ; + + -- A StationaryArtifact that is the bottom surface + -- of a Room. + fun Floor : Class ; + fun Floor_Class : SubClass Floor StationaryArtifact ; + + -- A Powder that is prepared from CerealGrain, e.g. + -- wheat flour, rice flour, etc. Flour is most often used in the making + -- of BreadOrBiscuits. + fun Flour : Class ; + fun Flour_Class : SubClass Flour (both Powder PreparedFood) ; + + -- The reproductive organ of FloweringPlants. + fun Flower : Class ; + fun Flower_Class : SubClass Flower (both Organ PlantAnatomicalStructure) ; + + -- A Container which is used to store Fluids, + -- i.e. Liquids and Gases. + fun FluidContainer : Class ; + fun FluidContainer_Class : SubClass FluidContainer Container ; + + -- Insects with Wings and two Limbs. + fun FlyInsect : Class ; + fun FlyInsect_Class : SubClass FlyInsect Insect ; + + -- Any instance of Translocation which is through an + -- AtmosphericRegion and which is powered by the wings of an Animal. + fun Flying : Class ; + fun Flying_Class : SubClass Flying Translocation ; + + -- Altering the relative distance of a Lens + -- so that a visual image is sharper. + fun Focusing : Class ; + fun Focusing_Class : SubClass Focusing QuantityChange ; + + -- Any WaterCloud that is in contact with the ground. + fun Fog : Class ; + fun Fog_Class : SubClass Fog WaterCloud ; + + -- Bending something in such a way that one part of + -- it covers another part. + fun Folding : Class ; + fun Folding_Class : SubClass Folding ShapeChange ; + + -- The lower part of a Limb, the part which makes contact + -- with the ground in locomotion of the Animal. + fun Foot : Class ; + fun Foot_Class : SubClass Foot (both AnimalAnatomicalStructure BodyPart) ; + + -- FormOfGovernment is a class of + -- Attributes used to describe the characteristics of a government, + -- especially a NationalGovernment. The concept FormOfGovernment is + -- interpreted broadly enough to include Anarchy and Factionalism. + fun FormOfGovernment : Class ; + fun FormOfGovernment_Class : SubClass FormOfGovernment PoliticoEconomicAttribute ; + + -- A page or set of pages containing spaces where + -- information is to be entered by an Agent. + fun FormText : Class ; + fun FormText_Class : SubClass FormText Text ; + + -- Any Meeting which is the result of Planning + -- and whose purpose is not socializing. + fun FormalMeeting : Class ; + fun FormalMeeting_Class : SubClass FormalMeeting Meeting ; + + -- FossilFuel is the subclass of Fuel whose + -- instances are derived from fossilized organic deposits, such as Coal + -- and LiquefiedPetroleumGas. + fun FossilFuel : Class ; + fun FossilFuel_Class : SubClass FossilFuel (both Fuel PetroleumProduct) ; + + -- A SportsAttribute that indicates that the GamePiece of + -- a Sport is no longer in play because it has gone beyond the limits of the + -- sports field. + fun Foul : Ind SportsAttribute ; + + -- Setting up an Organization. + fun Founding : Class ; + fun Founding_Class : SubClass Founding (both Declaring OrganizationalProcess) ; + + -- Canines with a bushy tail and pointed ears and nose. + -- Foxes tend to be much smaller than most DomesticDogs. + fun Fox : Class ; + fun Fox_Class : SubClass Fox Canine ; + + -- An Attribute which indicates that the associated Object is very breakable. + fun Fragile : Ind BreakabilityAttribute ; + + -- Any Atom which is not part of a Molecule. + fun FreeAtom : Class ; + fun FreeAtom_Class : SubClass FreeAtom Atom ; + + -- A Romance language that is the official language + -- of France and Belgium, and is widely spoken in Africa. + fun FrenchLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; + + -- Any PsychologicalProcess where the patient comes to feel Anxiety. + fun Frightening : Class ; + fun Frightening_Class : SubClass Frightening PsychologicalProcess ; + + -- Furrowing the forehead in such a way as to convey unhappiness. + fun Frowning : Class ; + fun Frowning_Class : SubClass Frowning FacialExpression ; + + -- Fuel is the class of Substances that can be + -- used as resources in Combustion processes in order to produce heat. + -- Mechanical energy can be produced by burning fuel in an Engine. + fun Fuel : Class ; + fun Fuel_Class : SubClass Fuel Substance ; + + -- Any Position where the employee is either + -- salaried or paid for at least 40 hour of work per week. + fun FullTimePosition : Class ; + fun FullTimePosition_Class : SubClass FullTimePosition Position ; + + -- Indicates that a Device is performing its + -- intended function. + fun Functioning : Ind DeviceAttribute ; + + -- A FormalMeeting whose purpose is to commemorate the Death of someone. + fun Funeral : Class ; + fun Funeral_Class : SubClass Funeral FormalMeeting ; + + -- Any free_standing and movable Artifacts which are not which are + -- used in day_to_day living and designed to rest on the Floor of a Room. + fun Furniture : Class ; + fun Furniture_Class : SubClass Furniture Artifact ; + + -- The process of transitioning from a state of being Unconscious to + -- a state of being Awake. + fun GainingConsciousness : Class ; + fun GainingConsciousness_Class : SubClass GainingConsciousness PsychologicalProcess ; + + -- An Artifact that is designed to be used as an instrument in a Game. + fun GameArtifact : Class ; + fun GameArtifact_Class : SubClass GameArtifact Artifact ; + + -- Any ContestAttribute that is specific to a Game. + fun GameAttribute : Class ; + fun GameAttribute_Class : SubClass GameAttribute ContestAttribute ; + + -- A GameArtifact which is intended to be used as the + -- game area for playing a particular game. + fun GameBoard : Class ; + fun GameBoard_Class : SubClass GameBoard GameArtifact ; + + -- A decision issued by an official referee in a + -- Game. Note that GameCall is a subclass of Declaring, because these + -- decisions have binding, normative force. + fun GameCall : Class ; + fun GameCall_Class : SubClass GameCall (both Deciding Declaring) ; + + -- A small cube with 1 to 6 dots on each face that is + -- used to generate numbers at random in a Game. + fun GameDie : Class ; + fun GameDie_Class : SubClass GameDie GamePiece ; + + -- The location where a GameShot must end up if it + -- is to constitute a Score. + fun GameGoal : Class ; + fun GameGoal_Class : SubClass GameGoal GameArtifact ; + + -- A GameArtifact that is moved around in a game + -- area. + fun GamePiece : Class ; + fun GamePiece_Class : SubClass GamePiece GameArtifact ; + + -- A position which involves adjudicating contested + -- Maneuvers in a Game, i.e. deciding whether or not the Maneuvers are + -- permitted by the rules of the Game. + fun GameReferee : Class ; + fun GameReferee_Class : SubClass GameReferee SkilledOccupation ; + + -- Impelling a GamePiece for the purpose of + -- scoring a point or preventing the opposing player or team from scoring + -- a point. Note that this class does not cover shots which are disallowed + -- by the rules of the game. + fun GameShot : Class ; + fun GameShot_Class : SubClass GameShot (both Impelling Maneuver) ; + + -- A Building or part of a Building which is intended to house + -- one or more Automobiles when they are not in use or are under + -- repair. + fun Garage : Class ; + fun Garage_Class : SubClass Garage StationaryArtifact ; + + -- GasolineEngine is the subclass of + -- InternalCombustionEngines that use Gasoline as their resource. + fun GasolineEngine : Class ; + fun GasolineEngine_Class : SubClass GasolineEngine InternalCombustionEngine ; + + -- A Mollusk with a distinct head that has no + -- shell (e.g. slugs) or a univalve shell (e.g. snails). + fun Gastropod : Class ; + fun Gastropod_Class : SubClass Gastropod Mollusk ; + + -- GeneralElection is the subclass of + -- Elections that are held at regular intervals and in which all or most + -- constituencies of a GeopoliticalArea participate. + fun GeneralElection : Class ; + fun GeneralElection_Class : SubClass GeneralElection Election ; + + -- A Germanic language that is spoken primarily in + -- Germany and Austria. + fun GermanLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; + + -- A HumanChild who is Female. + fun Girl : Class ; + fun Girl_Class : SubClass Girl (both HumanChild Woman) ; + + -- A transparent or translucent Mixture of silicates. + fun Glass : Class ; + fun Glass_Class : SubClass Glass Mixture ; + + -- Clothing that is intended to be worn on the Hand. + -- Note that this class covers both gloves which have individual compartments + -- for each of the Fingers and mittens. + fun Glove : Class ; + fun Glove_Class : SubClass Glove Clothing ; + + -- Any Mixture whose purpose is to be used as the instrument + -- of Attaching one thing to another. + fun Glue : Class ; + fun Glue_Class : SubClass Glue Mixture ; + + -- A DiseaseOrSyndrome which is due to an Iodine deficiency + -- and which results in an enlarged ThyroidGland. + fun Goiter : Ind DiseaseOrSyndrome ; + + -- A subclass of Bird with webbed feet and a long neck + -- and a large body. These Birds are often raised for their Meat. + fun Goose : Class ; + fun Goose_Class : SubClass Goose Poultry ; + + -- A building belonging to a Government + fun GovernmentBuilding : Class ; + fun GovernmentBuilding_Class : SubClass GovernmentBuilding Building ; + + -- Any Profession where the position occupied + -- is within a GovernmentOrganization. + fun GovernmentOfficer : Class ; + fun GovernmentOfficer_Class : SubClass GovernmentOfficer Profession ; + + -- A person who works for a Government. + fun GovernmentPerson : Ind OccupationalRole ; + + -- The class of Positions where the position holder + -- is head of an adminstrative department of Government. + fun GovernmentSecretary : Class ; + fun GovernmentSecretary_Class : SubClass GovernmentSecretary SkilledOccupation ; + + -- The head of the Government of an AmericanState. + fun Governor : Ind Position ; + + -- A School which is devoted to a specific + -- subject area, which admits students that have a bachelor's degree, which + -- grants masters and/or doctorate degrees, and which is part of a University. + fun GraduateSchool : Class ; + fun GraduateSchool_Class : SubClass GraduateSchool PostSecondarySchool ; + + -- An Icon which depicts one or more quantities. + fun GraphDiagram : Class ; + fun GraphDiagram_Class : SubClass GraphDiagram Icon ; + + -- FloweringPlants with green, narrow leaves that are + -- used for lawns and Fields. Grass includes any plant of the family + -- Gramineae, a widely distributed group of mostly annual and perennial + -- herbs. + fun Grass : Class ; + fun Grass_Class : SubClass Grass FloweringPlant ; + + -- Insects with enormous legs that are used for + -- jumping. + fun Grasshopper : Class ; + fun Grasshopper_Class : SubClass Grasshopper Insect ; + + -- A SecondaryColor that results from mixing Black and + -- White. + fun GrayColor : Ind SecondaryColor ; + + -- An Indo_European language that is spoken in Greece. + fun GreekLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; + + -- A SecondaryColor that resembles the color of fresh + -- grass. + fun Green : Ind SecondaryColor ; + + -- Any instance of Expressing an acknowledgment of a + -- person's arrival. Note that this class is not a subclass of ExpressingInLanguage, + -- because it covers gestures of greeting, e.g. Waving and Nodding in certain + -- circumstances. + fun Greeting : Class ; + fun Greeting_Class : SubClass Greeting Expressing ; + + fun GroceryProduce : Class ; + fun GroceryProduce_Class : SubClass GroceryProduce (both FruitOrVegetable PlantAgriculturalProduct) ; + + -- A RetailStore that sells Food, and perhaps + -- other items as well. + fun GroceryStore : Class ; + fun GroceryStore_Class : SubClass GroceryStore RetailStore ; + + -- Any Group which contains exclusively + -- non_human members. + fun GroupOfAnimals : Class ; + fun GroupOfAnimals_Class : SubClass GroupOfAnimals Group ; + + -- A StringInstrument that has six to twelve strings and + -- is played by strumming with one hand while grasping frets with the other hand. + fun Guitar : Class ; + fun Guitar_Class : SubClass Guitar StringInstrument ; + + -- A Weapon that shoots a Projectile. + fun Gun : Class ; + fun Gun_Class : SubClass Gun (both ProjectileLauncher Weapon) ; + + -- The part of a Gun through which a Projectile travels + -- when it is fired. + fun GunBarrel : Class ; + fun GunBarrel_Class : SubClass GunBarrel EngineeringComponent ; + + -- A Mixture of potassium nitrate, sulfur, and + -- charcoal that is used in ExplosiveDevices and to propell Projectiles + -- in ProjectileWeapons. + fun GunPowder : Class ; + fun GunPowder_Class : SubClass GunPowder Mixture ; + + -- The part of a Gun that is placed against the + -- shoulder to absorb some of the recoil action when it is fired. + fun GunStock : Class ; + fun GunStock_Class : SubClass GunStock EngineeringComponent ; + + -- The part of the Gun which is pulled in Shooting + -- the Gun. + fun GunTrigger : Class ; + fun GunTrigger_Class : SubClass GunTrigger EngineeringComponent ; + + -- A filament that covers part of the body of many + -- Mammals. + fun Hair : Class ; + fun Hair_Class : SubClass Hair AnimalAnatomicalStructure ; + + -- Removing (some or all) the Hair from the + -- body of an Animal. Note that this covers shaving hair, cutting hair, + -- pulling hair out by the roots, etc. + fun HairRemoval : Class ; + fun HairRemoval_Class : SubClass HairRemoval Removing ; + + -- A Device that is used to pound Nails into a + -- surface, where they become firmly attached. + fun Hammer : Class ; + fun Hammer_Class : SubClass Hammer Device ; + + -- The grasping, fingered part of an upper limb of a + -- Primate. + fun Hand : Class ; + fun Hand_Class : SubClass Hand (both AnimalAnatomicalStructure BodyPart) ; + + -- Any Gesture which involves the Hands. + fun HandGesture : Class ; + fun HandGesture_Class : SubClass HandGesture Gesture ; + + -- A hand grenade is a small explosive device + -- with a simple trigger mechanism, usually lasting a few seconds, designed + -- to be propelled by a human to its target. + fun HandGrenade : Class ; + fun HandGrenade_Class : SubClass HandGrenade Bomb ; + + -- An attack in which a HandGrenade is + -- employed as an explosive device for the purpose of Destruction. + -- A case in which a hand grenade is used as a blunt striking object in + -- an attack would not be in this class. + fun HandgrenadeAttack : Class ; + fun HandgrenadeAttack_Class : SubClass HandgrenadeAttack Bombing ; + + -- The part or parts of an Artifact that are designed to be + -- held with the Hands when the Artifact is used or carried. + fun Handle : Class ; + fun Handle_Class : SubClass Handle EngineeringComponent ; + + -- The BodyPosition where one rests on one's hands + -- and extends one's feet in the air. + fun Handstand : Ind BodyPosition ; + + -- Suffocating someone by suspending him/her from + -- a rope wound around the neck until asphyxiation occurs. + fun Hanging : Class ; + fun Hanging_Class : SubClass Hanging Suffocating ; + + -- The state of being happy, experiencing pleasure, + -- joy or contentment. Note that this Attribute covers both active enjoyment, + -- as well as the emotional state of simply being free from anxiety or fear. + fun Happiness : Ind EmotionalState ; + + -- Gathering the plant results of Agriculture. + fun Harvesting : Class ; + fun Harvesting_Class : SubClass Harvesting Removing ; + + -- A type of Clothing that is worn on the Head. Note + -- that this class covers caps, bonnets, berets, etc. + fun Hat : Class ; + fun Hat_Class : SubClass Hat Clothing ; + + -- The part of the body containing the sense organs and + -- the brain. + fun Head : Class ; + fun Head_Class : SubClass Head (both AnimalAnatomicalStructure BodyPart) ; + + -- Pain that that is restricted to the Head. + fun Headache : Ind EmotionalState ; + + -- Any VehicleLight which is attached to the front of a Vehicle. + fun Headlight : Class ; + fun Headlight_Class : SubClass Headlight VehicleLight ; + + -- The Organ that pumps Blood throughout the body. + fun Heart : Class ; + fun Heart_Class : SubClass Heart (both AnimalAnatomicalStructure Organ) ; + + -- A Device whose purpose is Heating something, + -- e.g. electric heaters, heat lamps, ovens, stoves, etc. + fun HeatingDevice : Class ; + fun HeatingDevice_Class : SubClass HeatingDevice Device ; + + -- Any Aircraft with rapidly rotating wings. + fun Helicopter : Class ; + fun Helicopter_Class : SubClass Helicopter Aircraft ; + + -- A Female Chicken. + fun Hen : Class ; + fun Hen_Chicken : SubClassC Hen Chicken (\H -> attribute(var Chicken Object ? H)(el SexAttribute Attribute ? Female)); + + -- A plant_eating Mammal. + fun Herbivore : Class ; + fun Herbivore_Class : SubClass Herbivore Mammal ; + + -- A School which admits students who have + -- graduated from a middle school and which normally covers the ninth through + -- twelfth grades. A HighSchool confers a high school diploma. + fun HighSchool : Class ; + fun HighSchool_Class : SubClass HighSchool School ; + + -- Robbing a Vehicle and then driving + -- or piloting it away. + fun Hijacking : Class ; + fun Hijacking_Class : SubClass Hijacking Robbing ; + + -- An EngineeringComponent that connects one thing to + -- another in such a way that they can move relative to one another. + fun Hinge : Class ; + fun Hinge_Class : SubClass Hinge EngineeringComponent ; + + -- A FactualAccount that describes + -- significant events that occurred in the past. + fun HistoricalAccount : Class ; + fun HistoricalAccount_Class : SubClass HistoricalAccount (both FactualText NarrativeText) ; + + -- The recording and interpretation of past events involving + -- Humans, including political events and cultural practices. + fun History : Ind FieldOfStudy ; + + -- HoistingDevice is a subclass of + -- mechanical Devices that provide a mechanical advantage in lifting + -- and lowering, e.g., by use of a block and tackle. + fun HoistingDevice : Class ; + fun HoistingDevice_Class : SubClass HoistingDevice MaterialHandlingEquipment ; + + -- A large class of Devices whose purpose is to hold + -- something else, i.e. be the instrument of a Keeping. + fun Holder : Class ; + fun Holder_Class : SubClass Holder Device ; + + -- A stiff piece of Paper, usually folded over, which + -- is sent to others in celebration of a Holiday. + fun HolidayCard : Class ; + fun HolidayCard_Class : SubClass HolidayCard ContentBearingObject ; + + -- A Container for a Pistol. It is generally made of + -- Leather and worn on either the shoulder or the waist. + fun Holster : Class ; + fun Holster_Class : SubClass Holster Container ; + + -- The final BaseballBase which must be touched + -- by the batter in order to achieve a BaseballRun. + fun HomeBase : Class ; + fun HomeBase_Class : SubClass HomeBase BaseballBase ; + + -- An edible, sweet Substance produced by some species of + -- Bees. + fun Honey : Class ; + fun Honey_Class : SubClass Honey (both AnimalSubstance Food) ; + + -- The hard end of the Foot of a HoofedMammal. + fun Hoof : Class ; + fun Hoof_Class : SubClass Hoof (both AnimalAnatomicalStructure BodyPart) ; + + -- A Hormone secreted by the ThyroidGland. + fun HormoneTSH : Class ; + fun HormoneTSH_Class : SubClass HormoneTSH Hormone ; + + -- An outgrowth of Bone that is found on some + -- HoofedMammals. + fun Horn : Class ; + fun Horn_Class : SubClass Horn Bone ; + + -- A MusicalInstrument which is played by + -- blowing it. It uses lip vibration to generates sound and control part + -- of the pitch generation process as well. + fun HornInstrument : Class ; + fun HornInstrument_Class : SubClass HornInstrument MusicalInstrument ; + + -- A domesticated HoofedMammal that is used for + -- transportation and work. + fun Horse : Class ; + fun Horse_Class : SubClass Horse (both HoofedMammal Livestock) ; + + -- Any instance of Carrying where the Animal is + -- a Horse. + fun HorseRiding : Class ; + fun HorseRiding_Class : SubClass HorseRiding Carrying ; + + -- A Building that serves at the place of business for + -- a HospitalOrganization. + fun HospitalBuilding : Class ; + fun HospitalBuilding_Class : SubClass HospitalBuilding TemporaryResidence ; + + -- A CareOrganization where patients reside for a + -- short period of time while they undergo treatment for a disease or disorder. + fun HospitalOrganization : Class ; + fun HospitalOrganization_Class : SubClass HospitalOrganization CareOrganization ; + + -- An event in which one agent keeps another + -- against his or her will, in order to force it or a third agent to + -- accede to some demand. The hostages are typically kept in the place + -- where they are first taken hostage, in contrast to a Kidnapping. + -- Hostage taking often involves a number of people (although it may be + -- just one), again, in contrast to a Kidnapping. + fun HostageTaking : Class ; + fun HostageTaking_Class : SubClass HostageTaking UnilateralGetting ; + + -- A building which servers the purpose of a temporary + -- home for people, either for people who are travelling, or occasionally for + -- those who do not have another more permanent residence. A hotel is + -- distinguished from a homeless shelter, or a residence loaned to a friend + -- in that the primary purpose of the building is to generate revenue in + -- return for the priviledge of staying there. Many hotels contains other + -- facilities such as Restaurants or health clubs or even miscellaneous stores + -- although that is not their primary business or purpose. + fun Hotel : Class ; + fun Hotel_Class : SubClass Hotel (both Building TemporaryResidence) ; + + -- A role occupied by a wife who manages the home + -- while her husband earns income for the family. + fun Housewife : Ind SocialRole ; + + -- The class of Humans that are 18 years of + -- age or older. + fun HumanAdult : Class ; + fun HumanAdult_Class : SubClass HumanAdult Human ; + + -- A Human between birth and the first year of age. + fun HumanBaby : Class ; + fun HumanBaby_Class : SubClass HumanBaby HumanChild ; + + -- A HumanYouth between birth and puberty, i.e a + -- Human who is NonFullyFormed. + fun HumanChild : Class ; + fun HumanChild_Class : SubClass HumanChild HumanYouth ; + + -- A Dead thing which was formerly a Human. + fun HumanCorpse : Class ; + fun HumanCorpse_Class : SubClass HumanCorpse OrganicObject ; + + -- A Human who is owned by someone else. + fun HumanSlave : Ind SocialRole ; + + -- The class of Humans that are younger than + -- 18 years of age. + fun HumanYouth : Class ; + fun HumanYouth_Class : SubClass HumanYouth Human ; + + -- The Attribute that applies to Animals and Humans + -- when they want Food. + fun Hungry : Ind BiologicalAttribute ; + + -- Any OrganicCompound that contains only Carbon + -- and Hydrogen. + fun Hydrocarbon : Class ; + fun Hydrocarbon_Class : SubClass Hydrocarbon OrganicCompound ; + + -- The part of the Brain lying below the + -- thalamus that serves to regulate AutonomicProcesses. + fun Hypothalamus : Class ; + fun Hypothalamus_Class : SubClass Hypothalamus (both AnimalAnatomicalStructure BodyPart) ; + + -- Water that has the PhysicalState of Solid. + fun Ice : Class ; + fun Ice_Water : SubClassC Ice Water (\ICE -> attribute(var Water Object ? ICE)(el PhysicalState Attribute ? Solid)); + + -- A proposition is Illegal just in case it is inconsistent + -- with any proposition that is a Law. + fun Illegal : Ind DeonticAttribute ; + + -- Forming a mental picture of something which + -- is not present. + fun Imagining : Class ; + fun Imagining_Class : SubClass Imagining PsychologicalProcess ; + + -- Any Translocation by a Human from one Nation + -- to another Nation where the person is not a citizen for the purpose of taking + -- up residence. + fun Immigrating : Class ; + fun Immigrating_Class : SubClass Immigrating Translocation ; + + -- The class of Confining processes where the detainee + -- is put in Prison. + fun Imprisoning : Class ; + fun Imprisoning_Class : SubClass Imprisoning Confining ; + + -- An attack in which an agent + -- uses a device which causes fire in order to destroy life or property. + fun IncendiaryDeviceAttack : Class ; + fun IncendiaryDeviceAttack_Class : SubClass IncendiaryDeviceAttack (both Combustion ViolentContest) ; + + -- Moving one's body downward from a vertical position. + -- Note that this class covers cases of leaning forward, as well as those of + -- reclining backwards. + fun Inclining : Class ; + fun Inclining_Class : SubClass Inclining (both BodyMotion MotionDownward) ; + + -- A Tax on annual income. + fun IncomeTax : Class ; + fun IncomeTax_Class : SubClass IncomeTax Tax ; + + -- Pointing out a person, place or thing with + -- one's hand or with an Artifact. + fun Indicating : Class ; + fun Indicating_Class : SubClass Indicating (both BodyMotion Communication) ; + + -- Any Region which is enclosed by a Building. + fun Indoors : Ind Region ; + + -- A Building or part of a Building or group + -- of Buildings whose purpose is to Manufacture something. + fun IndustrialPlant : Class ; + fun IndustrialPlant_Class : SubClass IndustrialPlant StationaryArtifact ; + + -- The class of Collections of Corporations + -- which are in the same line of business. + fun Industry : Class ; + fun Industry_Class : SubClass Industry Collection ; + + -- Any DiseaseOrSyndrome that is caused by a + -- Microorganism. + fun InfectiousDisease : Class ; + fun InfectiousDisease_Class : SubClass InfectiousDisease DiseaseOrSyndrome ; + + -- An event in which an agent joins an + -- organization under false pretenses. The objective of such an act + -- is often to gather information helpful to a rival organization. + fun Infiltration : Class ; + fun Infiltration_Class : SubClass Infiltration JoiningAnOrganization ; + + -- Any Quantity that is not limited or bounded + -- in magnitude. + fun InfiniteQuantity : Class ; + fun InfiniteQuantity_Class : SubClass InfiniteQuantity Quantity ; + + -- Any instance of Breathing where the breath is + -- taken into the Lungs. + fun Inhaling : Class ; + fun Inhaling_Class : SubClass Inhaling Breathing ; + + -- Any UnilateralGetting where the agent + -- receives some part of the property of a person upon the death of the + -- person. + fun Inheriting : Class ; + fun Inheriting_Class : SubClass Inheriting UnilateralGetting ; + + -- Inside is a PositionalAttribute used to + -- describe the relative location of one object or region to another + -- region. For example, (orientation Virginia UnitedStates Inside). + fun Inside : Ind PositionalAttribute ; + + -- Putting a Device in a location and configuring + -- the Device so that it can be used as intended after the installation. + fun Installing : Class ; + fun Installing_Class : SubClass Installing Putting ; + + -- Music which is produced (at least in part) + -- by a MusicalInstrument. + fun InstrumentalMusic : Class ; + fun InstrumentalMusic_Class : SubClass InstrumentalMusic Music ; + + -- A Hormone secreted by the Pancreas that is used + -- to regulate the metabolism of Carbohydrates. + fun Insulin : Class ; + fun Insulin_Class : SubClass Insulin Hormone ; + + -- A CommercialAgent that insures Agents + -- for the payment of a premium or premiums. + fun InsuranceCompany : Class ; + fun InsuranceCompany_Class : SubClass InsuranceCompany CommercialAgent ; + + -- A Certificate that states the terms of an + -- insurance contract. + fun InsurancePolicy : Class ; + fun InsurancePolicy_Class : SubClass InsurancePolicy Certificate ; + + -- The FieldOfStudy of designing the interiors of Buildings. + fun InteriorDesign : Ind FieldOfStudy ; + + -- InternalCombustionEngine is + -- the subclass of Engines in which a heat reaction that occurs inside + -- the engine is transformed into mechanical energy. + fun InternalCombustionEngine : Class ; + fun InternalCombustionEngine_Class : SubClass InternalCombustionEngine Engine ; + + -- An Attribute that applies to Propositions + -- that express Laws concerning the relations between Nations. + fun InternationalLaw : Ind DeonticAttribute ; + + -- A FormalMeeting whose purpose is to acquire + -- information from the interviewee that can be used in a media report. + fun Interviewing : Class ; + fun Interviewing_Class : SubClass Interviewing FormalMeeting ; + + -- A BodyVessel which connects the Stomach to + -- the anus and which is used in digesting Food. + fun Intestine : Class ; + fun Intestine_Class : SubClass Intestine (both AnimalAnatomicalStructure BodyVessel) ; + + -- An item of value purchased for income or capital appreciation. + fun Investment : Class ; + fun Investment_Class : SubClass Investment FinancialAsset ; + + -- An electronically charged Atom or Molecule. In + -- other words, a PureSubstance that has lost one of its Electrons. + fun Ion : Class ; + fun Ion_Class : SubClass Ion PureSubstance ; + + -- A very hard substance that makes up the tusks of + -- elephants and walruses. + fun Ivory : Class ; + fun Ivory_Class : SubClass Ivory Bone ; + + -- Any Position which involves cleaning a Building + -- or some of the Rooms within a Building. + fun Janitor : Class ; + fun Janitor_Class : SubClass Janitor UnskilledOccupation ; + + -- The Profession of being a news reporter, i.e. + -- investigating and reporting, in a publication or broadcast program, current + -- events. + fun Journalist : Class ; + fun Journalist_Class : SubClass Journalist Profession ; + + -- An Attorney who has the power of deciding legal cases. + fun Judge : Class ; + fun Judge_Class : SubClass Judge (both Attorney GovernmentOfficer) ; + + -- Any MotionUpward which is done by one's body + -- and which results in a situation where one's feet are unsupported. + fun Jumping : Class ; + fun Jumping_Class : SubClass Jumping (both BodyMotion MotionUpward) ; + + -- The class of PostSecondarySchools that + -- offer an associate's degree and do not offer a bachelor's degree. + fun JuniorCollege : Class ; + fun JuniorCollege_Class : SubClass JuniorCollege PostSecondarySchool ; + + -- A GroupOfPeople who are given the duty of rendering a + -- verdict with respect to a LegalAction. + fun Jury : Class ; + fun Jury_Class : SubClass Jury GroupOfPeople ; + + -- A Device which opens and closes a Lock. + fun Key : Class ; + fun Key_Class : SubClass Key SecurityDevice ; + + -- Any instance of Impelling where the instrument + -- is a Foot of the agent. + fun Kicking : Class ; + fun Kicking_Class : SubClass Kicking Impelling ; + + -- An event in which one agent keeps another + -- against his or her will, in order to force it or a third agent to + -- accede to some demand. The kidnapped party is normally removed from + -- the location where first attacked. In contrast to a HotageTaking, + -- a kidnapping normally involves an attack on one, or a very small + -- number of people, such as a couple. + fun Kidnapping : Class ; + fun Kidnapping_Class : SubClass Kidnapping Robbing ; + + -- An Organ that separates urine from other + -- BodySubstances and passes it to the bladder. + fun Kidney : Class ; + fun Kidney_Class : SubClass Kidney (both AnimalAnatomicalStructure Organ) ; + + -- The class of Touching processes where the lips + -- of two persons are brought into contact with each other. + fun Kissing : Class ; + fun Kissing_Class : SubClass Kissing Touching ; + + -- A Room intended for Cooking. + fun Kitchen : Class ; + fun Kitchen_Class : SubClass Kitchen Room ; + + -- The joint in the Leg connecting the tibia and fibula + -- with the femur. + fun Knee : Class ; + fun Knee_Class : SubClass Knee BodyJoint ; + + -- The BodyPosition of resting one's weight on one's Knees. + fun Kneeling : Ind BodyPosition ; + + -- A sharp object used for cutting. The object must + -- have at least single blade or major protrusion which may be sharp at its + -- end as well. It may be sharp on both sides, or just one. Unlike an awl + -- it has a sharp edge rather than a point. Unlike scissors, it is a single + -- blade without additional articulated parts. Unlike an axe, a knife is + -- well_designed for slicing rather than chopping, although a heavy knife + -- such as a broadsword can also be used for chopping, whereas a non_knife is + -- not well designed for slicing meat for example. A knife can be small like + -- a pocket knife, or large like a two_handed broadsword. A knife may also + -- include other protrusions such as in the split swords and trident_like + -- objects (that also possess a long sharp edge) in Chinese weaponry. + fun Knife : Class ; + fun Knife_Class : SubClass Knife CuttingDevice ; + + -- An attack in which a knife is used. + fun KnifeAttack : Class ; + fun KnifeAttack_Class : SubClass KnifeAttack ViolentContest ; + + -- A SocialRole that is assigned by the + -- UnitedKingdom to persons for reasons of personal merit. + fun Knight : Ind SocialRole ; + + -- Any joint in a Finger. + fun Knuckle : Class ; + fun Knuckle_Class : SubClass Knuckle BodyJoint ; + + -- A very brief Text that is attached to an Object + -- and that indicates very specific information about the Object, e.g. its + -- name, its monetaryValue, etc. + fun Label : Class ; + fun Label_Class : SubClass Label Text ; + + -- A Process in which some or all of the + -- employees of an Organization refuse to work until their pay is + -- increased or their working conditions are improved in some respect. + fun LaborStriking : Class ; + fun LaborStriking_Class : SubClass LaborStriking OrganizationalProcess ; + + -- A Building, Room or suite of Rooms where + -- scientific research, i.e. Experimenting, is conducted. + fun Laboratory : Class ; + fun Laboratory_Class : SubClass Laboratory StationaryArtifact ; + + -- An Artifact which consists of two parallel supports + -- connected by a series of rungs which can be used to ascend or descend. + fun Ladder : Class ; + fun Ladder_Class : SubClass Ladder Artifact ; + + -- A young Sheep, i.e. a Sheep that is NonFullyFormed. + fun Lamb : Class ; + fun Lamb_Sheep : SubClassC Lamb Sheep (\L -> attribute (var Sheep Object ? L) + (el DevelopmentalAttribute Attribute ? NonFullyFormed)); + + -- Any instance of Transportation where the + -- instrument is a LandVehicle. + fun LandTransportation : Class ; + fun LandTransportation_Class : SubClass LandTransportation Transportation ; + + -- LandVehicle is the class of TransportationDevices that travel on + -- land. The two main types of LandVehicle are RoadVehicle and + -- RailVehicle. Note that this includes vehicles which travel on any solid + -- surface, including a frozen body of water or snow. + fun LandVehicle : Class ; + fun LandVehicle_Class : SubClass LandVehicle Vehicle ; + + -- Any instance of Translocation which ends up on something other + -- than an AtmosphericRegion and which has an instance of Flying as a subProcess. + fun Landing : Class ; + fun Landing_Class : SubClass Landing Translocation ; + + -- (LastFn ?LIST) returns the last item in the + -- List ?LIST. For example, (LastFn (ListFn Monday Tuesday + -- Wednesday)) would return the value of Wednesday. + fun LastFn : El List -> Ind Entity ; + + -- A Language that was spoken in ancient Rome and + -- is still the official language of the Vatican. + fun LatinLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; + + -- Expressing happiness by Vocalizing in a + -- certain way. + fun Laughing : Class ; + fun Laughing_Class : SubClass Laughing (both FacialExpression Vocalizing) ; + + -- Any RegulatoryProcess where the agent is either + -- a PoliceOrganization or a member of a PoliceOrganization. This covers + -- everything from issuing a traffic ticket to arresting someone on suspicion of having + -- committed a Murder. + fun LawEnforcement : Class ; + fun LawEnforcement_Class : SubClass LawEnforcement (both PoliticalProcess RegulatoryProcess) ; + + -- A CultivatedLandArea and Field + -- containing mowed Grass. + fun Lawn : Class ; + fun Lawn_Class : SubClass Lawn (both CultivatedLandArea Field) ; + + -- Any OrganismProcess where an Egg is expelled + -- from the body of a Animal, e.g. a Bird or Reptile laying eggs. + fun LayingEggs : Class ; + fun LayingEggs_Class : SubClass LayingEggs OrganismProcess ; + + -- A Fabric that is the result of tanning an Animal + -- Skin. + fun Leather : Class ; + fun Leather_Class : SubClass Leather Fabric ; + + -- The initial part of any instance of Translocation. + fun Leaving : Class ; + fun Leaving_Class : SubClass Leaving Translocation ; + + -- Any instance of Speaking which is done before an + -- assembled audience. + fun Lecture : Class ; + fun Lecture_Class : SubClass Lecture (both Demonstrating Speaking) ; + + -- The lower Limbs of Primates. + fun Leg : Class ; + fun Leg_Class : SubClass Leg Limb ; + + -- A proposition is Legal just in case it is not inconsistent + -- with any proposition that is a Law. + fun Legal : Ind DeonticAttribute ; + + -- Asking that a higher court reconsider a LegalDecision + -- of a lower court. + fun LegalAppeal : Class ; + fun LegalAppeal_Class : SubClass LegalAppeal (both JudicialProcess Requesting) ; + + -- Any LegalDecision where the defendant is found + -- not to be guilty of the crime for which the corresponding trial was held. + fun LegalAquittal : Class ; + fun LegalAquittal_Class : SubClass LegalAquittal LegalDecision ; + + -- Any LegalDecision which gives to the plaintiff of + -- the corresponding LegalAction some amount of monetary compensation. + fun LegalAward : Class ; + fun LegalAward_Class : SubClass LegalAward LegalDecision ; + + -- Any LegalAction of which a Government is + -- the agent. + fun LegalCharge : Class ; + fun LegalCharge_Class : SubClass LegalCharge LegalAction ; + + -- Any LegalDecision where the defendant is found + -- guilty of the crime for which the corresponding trial was held. + fun LegalConviction : Class ; + fun LegalConviction_Class : SubClass LegalConviction LegalDecision ; + + -- Any LegalDecision where the LegalAction of + -- the plaintiff is dismissed by the court, e.g. for lack of merit. + fun LegalDismissal : Class ; + fun LegalDismissal_Class : SubClass LegalDismissal LegalDecision ; + + -- An Argument that explains the reasoning behind a + -- LegalDecision. + fun LegalOpinion : Class ; + fun LegalOpinion_Class : SubClass LegalOpinion Argument ; + + -- An official order that a person appear at a + -- CourtRoom at a specified time. + fun LegalSummons : Class ; + fun LegalSummons_Class : SubClass LegalSummons (both JudicialProcess Ordering) ; + + -- The Attribute of being a proposed law, + -- i.e. being under consideration by a legislative body of Government. + fun LegislativeBill : Ind DeonticAttribute ; + + -- LegislativeOrganization is the + -- class of Organizations that have as their main purpose the passing of + -- laws or regulations. + fun LegislativeOrganization : Class ; + fun LegislativeOrganization_Class : SubClass LegislativeOrganization Organization ; + + -- A citrus FruitOrVegetable that has a Yellow skin + -- and a tart, acidic flavor. + fun LemonFruit : Class ; + fun LemonFruit_Class : SubClass LemonFruit (both Food FruitOrVegetable) ; + + -- Increasing the length of something. + fun Lengthening : Class ; + fun Lengthening_Class : SubClass Lengthening Increasing ; + + -- An OpticalDevice which consists of a polished, + -- transparent piece of glass or plastic. Lenses are often part of + -- other OpticalDevices. + fun Lens : Class ; + fun Lens_Class : SubClass Lens OpticalDevice ; + + -- Any AbnormalAnatomicalStructure which is the result of + -- an Injuring and which is found on the surface of an Organ. + fun Lesion : Class ; + fun Lesion_Class : SubClass Lesion AbnormalAnatomicalStructure ; + + -- A brief message which is intended to be mailed + -- to a person or Organization. + fun Letter : Class ; + fun Letter_Class : SubClass Letter FactualText ; + + -- An attack with a bomb that is + -- concealed in a letter or package, which is typically designed to + -- explode upon opening. + fun LetterBombAttack : Class ; + fun LetterBombAttack_Class : SubClass LetterBombAttack Bombing ; + + -- The ShapeAttribute of Objects where no + -- part of the top of the Object is higher than any other part of the + -- top. + fun LevelShape : Ind ShapeAttribute ; + + -- An EducationalOrganization which is a repository + -- of Texts which have been classified for efficient retrieval. + fun Library : Class ; + fun Library_Class : SubClass Library EducationalOrganization ; + + -- License is the subclass of Certificates that + -- are granted by a GovernmentOrganization and that authorize the performance + -- of a kind of action, e.g., driving, exporting, travelling to another + -- country, etc. + fun License : Class ; + fun License_Class : SubClass License Certificate ; + + -- The class of Touching processes where the Tongue + -- is brought into contact with something else. + fun Licking : Class ; + fun Licking_Class : SubClass Licking Touching ; + + -- A commissioned MilitaryOfficer. + fun Lieutenant : Class ; + fun Lieutenant_Class : SubClass Lieutenant MilitaryOfficer ; + + -- The second_in_command of some Governments + -- of AmericanStates. + fun LieutenantGovernor : Ind Position ; + + -- Any Device whose purpose is to be a source of + -- visible light. + fun LightFixture : Class ; + fun LightFixture_Class : SubClass LightFixture Device ; + + -- A WeatherProcess which involves a significant + -- release of electricity from a Cloud. + fun Lightning : Class ; + fun Lightning_Class : SubClass Lightning (both Radiating WeatherProcess) ; + + -- A FloweringPlant that has large clusters of + -- aromatic flowers. + fun Lilac : Class ; + fun Lilac_Class : SubClass Lilac FloweringPlant ; + + -- Any of the limbs of a Vertebrate. + -- Animal Appendages with joints that are used for movement + -- and grasping. + fun Limb : Class ; + fun Limb_Class : SubClass Limb (both AnimalAnatomicalStructure BodyPart) ; + + -- A ShapeAttribute that applies to + -- Collections and indicates that all of the members of the Collection + -- are arrayed in a line, i.e. each member (except possibly the first) is + -- behind or to the side of exactly one other member. + fun LineFormation : Ind ShapeAttribute ; + + -- Any Attribute that is + -- expressed by a Language or class of Languages. + fun LinguisticAttribute : Class ; + fun LinguisticAttribute_Class : SubClass LinguisticAttribute InternalAttribute ; + + -- The field of linguistics. + fun Linguistics : Ind SocialScience ; + + -- Folds of Tissue surrounding the mouths of some + -- Vertebrates. + fun Lip : Class ; + fun Lip_Class : SubClass Lip (both AnimalAnatomicalStructure BodyPart) ; + + -- LiquefiedPetroleumGas is a + -- compressed hydrocarbon gas. + fun LiquefiedPetroleumGas : Class ; + fun LiquefiedPetroleumGas_Class : SubClass LiquefiedPetroleumGas (both FossilFuel RefinedPetroleumProduct) ; + + -- Any BodySubstance which is Liquid + -- under normal circumstances. + fun LiquidBodySubstance : Class ; + fun LiquidBodySubstance_Class : SubClass LiquidBodySubstance BodySubstance ; + + -- A UnitOfMeasure used in preparing AlcoholicBeverages. + fun LiquorShot : Ind UnitOfVolume ; + + -- The ability to read and write. Someone who + -- has this Attribute is able to read and write. + fun LiteracyAttribute : Ind TraitAttribute ; + + -- The study of literature, i.e. instances of FictionalText + -- that are regarded as having special merit. + fun Literature : Ind FieldOfStudy ; + + -- An Organ that secretes bile and serves metabolic + -- functions. + fun Liver : Class ; + fun Liver_Class : SubClass Liver (both AnimalAnatomicalStructure Organ) ; + + -- Livestock is the class of live animals + -- raised as AgriculturalProducts. + fun Livestock : Class ; + fun Livestock_Class : SubClass Livestock (both AnimalAgriculturalProduct DomesticAnimal) ; + + -- Inserting ammunition into a ProjectileWeapon + -- in such a way that the ammunition can be fired by the weapon. + fun LoadingWeapon : Class ; + fun LoadingWeapon_Class : SubClass LoadingWeapon Inserting ; + + -- A Device, which, through a Key or a combination prevents + -- access to a Container or StationaryArtifact. + fun Lock : Class ; + fun Lock_Class : SubClass Lock SecurityDevice ; + + -- A three dimensional object that + -- has two thin dimensions and one markedly larger one. + fun LongAndThin : Ind ShapeAttribute ; + + -- The process of transitioning from a state + -- of being Awake to a state of being Unconscious. + fun LosingConsciousness : Class ; + fun LosingConsciousness_Class : SubClass LosingConsciousness PsychologicalProcess ; + + -- The ContestAttribute that applies to a Contest + -- participant who has lost the Contest. + fun Lost : Ind ContestAttribute ; + + -- A respiratory organ of Vertebrates. Its function is + -- to furnish the blood with oxygen and to remove carbon dioxide. + fun Lung : Class ; + fun Lung_Class : SubClass Lung (both AnimalAnatomicalStructure Organ) ; + + -- The BodyMotion of moving from a Sitting + -- to a Prostrate position. + fun LyingDown : Class ; + fun LyingDown_Class : SubClass LyingDown (both BodyMotion MotionDownward) ; + + -- A lynching is a form of Killing conducted under + -- a thin guise of legitimacy by a vigilante group. It may be a purge of an + -- individual from the group who is perceived to have gone astray, or it may + -- be the summary execution of an individual outside the group that the group + -- has determined has violated some law or code, either of the group, or the + -- larger society. A lynching is distinguished from a legal execution in + -- that the laws of a government are not followed in carrying out the + -- killing. A lynching is distinguished from a murder in that there is the + -- pretense of some process carried out by a group in the name of their own + -- group or a higher power. + fun Lynching : Class ; + fun Lynching_Class : SubClass Lynching Killing ; + + -- Any Text which is intended to be sung. + fun Lyrics : Class ; + fun Lyrics_Class : SubClass Lyrics Text ; + + -- A Periodical that is softbound and printed on + -- glossy paper. + fun Magazine : Class ; + fun Magazine_Class : SubClass Magazine Periodical ; + + -- Any instance of RadiatingElectromagnetic which + -- involves the attraction of Iron. + fun Magnetism : Class ; + fun Magnetism_Class : SubClass Magnetism RadiatingElectromagnetic ; + + -- Any ServicePosition where various needs of a person + -- or family are served over a long period of time. Note that these Positions + -- are, by definition, filled only by Women. + fun Maid : Class ; + fun Maid_Class : SubClass Maid ServicePosition ; + + -- A Container whose purpose is to receive items + -- that are mailed to the address associated with the Mailbox. + fun Mailbox : Class ; + fun Mailbox_Class : SubClass Mailbox Container ; + + -- Any instance of Transfer where a postal system is + -- used to move the patient, either a letter or a package. + fun Mailing : Class ; + fun Mailing_Class : SubClass Mailing Transfer ; + + -- A CerealGrain which is found on long ears of a Plant + -- native to the Americas. + fun MaizeGrain : Class ; + fun MaizeGrain_Class : SubClass MaizeGrain (both CerealGrain GroceryProduce) ; + + -- A MilitaryGeneral that ranks above a BrigadierGeneral. + fun MajorGeneral : Class ; + fun MajorGeneral_Class : SubClass MajorGeneral MilitaryGeneral ; + + -- Indicates that a Device is not performing + -- its intended function. + fun Malfunctioning : Ind DeviceAttribute ; + + -- A pipe which has several outlets for other pipes that flow + -- into or out of it. + fun Manifold : Class ; + fun Manifold_Class : SubClass Manifold EngineeringComponent ; + + -- Any Position which involves manual + -- work. + fun ManualLabor : Class ; + fun ManualLabor_Class : SubClass ManualLabor Position ; + + -- An Icon which represents one or more GeographicAreas + -- (or even the entire Earth). + fun Map : Class ; + fun Map_Class : SubClass Map Icon ; + + -- A metamorphic Rock that is used in Constructing + -- and in creating Sculptures. + fun Marble : Class ; + fun Marble_Class : SubClass Marble Rock ; + + -- An area, building, or set of buildings + -- where FinancialTransactions are intended to take place. There should + -- be more than one owner or renter of space or buildings within the + -- marketplace. + fun Marketplace : Class ; + fun Marketplace_Class : SubClass Marketplace GeographicArea ; + + -- A Contract between a married couple + -- about how assets owned by the couple will be distributed in the event + -- that the couple is divorced. + fun MarriageContract : Ind DeonticAttribute ; + + -- A PoliceOfficer whose responsibility is to enforce + -- the decisions of a law court. + fun Marshal : Class ; + fun Marshal_Class : SubClass Marshal PoliceOfficer ; + + -- A subclass of TherapeuticProcess which involves + -- kneading Muscles in such a way that tension is relieved, blood circulation + -- is increased, etc. + fun Massaging : Class ; + fun Massaging_Class : SubClass Massaging (both TherapeuticProcess Touching) ; + + -- A large pole in the center of a WaterVehicle which is + -- used to support a sail. + fun Mast : Class ; + fun Mast_Class : SubClass Mast Artifact ; + + -- A small stick of carboard or wood that is treated + -- with chemicals that can be easily ignited with friction. MatchDevices are + -- used for starting fires. + fun MatchDevice : Class ; + fun MatchDevice_Class : SubClass MatchDevice Device ; + + -- MaterialHandlingEquipment is a class of Devices that are equipment used for handling goods and + -- supplies more efficiently or safely. Examples are cranes, hoists, forklifts, conveyors, racks, etc. + fun MaterialHandlingEquipment : Class ; + fun MaterialHandlingEquipment_Class : SubClass MaterialHandlingEquipment Device ; + + -- The FieldOfStudy dealing with quantities and their + -- relations to one another. + fun Mathematics : Ind FieldOfStudy ; + + -- Any process of sexual intercourse between two Humans + -- or Animals. + fun Mating : Class ; + fun Mating_Class : SubClass Mating OrganismProcess ; + + -- The head of the Government of a City. + fun Mayor : Ind Position ; + + -- MediaOrganization is the subclass + -- of Organization for groups whose primary purpose is the production or + -- dissemination of media content. For organizations that physically enable + -- Communication, see CommunicationOrganization. + fun MediaOrganization : Class ; + fun MediaOrganization_Class : SubClass MediaOrganization Organization ; + + -- A CareOrganization which provides medical care + -- on an out_patient basis only, i.e. there are no rooms where patients may take + -- up residence for a period of time while they receive care. + fun MedicalClinic : Class ; + fun MedicalClinic_Class : SubClass MedicalClinic CareOrganization ; + + fun MedicalClinicBuilding : Class ; + fun MedicalClinicBuilding_Class : SubClass MedicalClinicBuilding Building ; + + -- The Profession of being a medical doctor, + -- i.e. having attended medical school and being licensed to practice medicine. + fun MedicalDoctor : Class ; + + -- A GraduateSchool that is devoted to + -- MedicalScience and that grants the degree of doctor of medicine. + fun MedicalSchool : Class ; + fun MedicalSchool_Class : SubClass MedicalSchool GraduateSchool ; + + -- The field of medicine. + fun MedicalScience : Ind Science ; + + -- Any BiologicallyActiveSubstance which has a + -- therapeutic effect under certain conditions. + fun Medicine : Class ; + fun Medicine_Class : SubClass Medicine BiologicallyActiveSubstance ; + + -- The process of committing a Text to memory. + fun Memorizing : Class ; + fun Memorizing_Class : SubClass Memorizing Learning ; + + -- A periodic discharge of Blood and other + -- BiologicalSubstances by Females that is part of a readjustment of + -- the uterus. + fun Menstruation : Class ; + fun Menstruation_Class : SubClass Menstruation OrganOrTissueProcess ; + + -- A FactualText which is intended to be delivered to + -- and read by a Human, GroupOfPeople or Organization. + fun Message : Class ; + fun Message_Class : SubClass Message FactualText ; + + -- Any instance of Transfer where a Message is the + -- patient. + fun Messaging : Class ; + fun Messaging_Class : SubClass Messaging Transfer ; + + -- A Mixture of two or more Metals, and possibly + -- nonmetallic elements as well. For example, steel is an alloy containing iron + -- and manganese. + fun MetallicAlloy : Class ; + fun MetallicAlloy_Class : SubClass MetallicAlloy Mixture ; + + -- Any Meteoroid that leaves traces on the surface + -- of Earth. + fun Meteorite : Class ; + fun Meteorite_Class : SubClass Meteorite Meteoroid ; + + -- Any AstronomicalBody that breaks through the + -- Atmosphere of Earth. + fun Meteoroid : Class ; + fun Meteoroid_Class : SubClass Meteoroid AstronomicalBody ; + + -- MetricTon is a UnitOfMeasure that represents + -- a weight of 2,205 PoundMass. + fun MetricTon : Ind UnitOfMass ; + + -- A CommunicationDevice that converts sound + -- into electrical energy. + fun Microphone : Class ; + fun Microphone_Class : SubClass Microphone (both CommunicationDevice ElectricDevice) ; + + -- An OpticalDevice with a stand and a focus, which is + -- used for magnifying the images of things that are placed in the stand. + fun Microscope : Class ; + fun Microscope_Class : SubClass Microscope OpticalDevice ; + + -- A militant is someone who is not + -- officially authorized by a government to engage in combat, but who + -- does so on behalf of a PoliticalOrganization. + fun Militant : Ind SocialRole ; + + -- Any Aircraft which is made for a + -- MilitaryOrganization. This includes fighters, Bombers, attack + -- helicopters, etc. + fun MilitaryAircraft : Class ; + fun MilitaryAircraft_Class : SubClass MilitaryAircraft (both Aircraft MilitaryVehicle) ; + + -- Any Artifact which is made for a + -- MilitaryOrganization. + fun MilitaryArtifact : Class ; + fun MilitaryArtifact_Class : SubClass MilitaryArtifact Artifact ; + + -- Any MilitaryUnit with the rank of + -- corps. + fun MilitaryCorps : Class ; + fun MilitaryCorps_Class : SubClass MilitaryCorps MilitaryUnit ; + + -- A GeographicArea along which opposing military + -- forces confront one another in a Battle. + fun MilitaryFront : Class ; + fun MilitaryFront_Class : SubClass MilitaryFront GeographicArea ; + + -- MilitaryGeneral is a generic Position + -- that indicates holding (or having held) the rank of General in some + -- military force. An indicator that someone uses the title, without + -- committing to his or her exact rank or military affiliation. + fun MilitaryGeneral : Class ; + fun MilitaryGeneral_Class : SubClass MilitaryGeneral MilitaryOfficer ; + + -- Any Process by a MilitaryOrganization + -- which involves moving through enemy positions without detection by the enemy. + fun MilitaryInfiltration : Class ; + fun MilitaryInfiltration_Class : SubClass MilitaryInfiltration (both MilitaryProcess Translocation) ; + + -- A StationaryArtifact consisting of grounds + -- and Buildings that is intended to be used by a MilitaryOrganization. + fun MilitaryInstallation : Class ; + fun MilitaryInstallation_Class : SubClass MilitaryInstallation (both MilitaryArtifact StationaryArtifact) ; + + -- Any Maneuver which takes place in a Battle + -- and which is intended to secure a tactical advantage for one of the agents of + -- the Battle. + fun MilitaryManeuver : Class ; + fun MilitaryManeuver_Class : SubClass MilitaryManeuver Maneuver ; + + -- The class of Soldiers who have authority or command. + fun MilitaryOfficer : Class ; + fun MilitaryOfficer_Class : SubClass MilitaryOfficer Soldier ; + + -- Someone who is a member of a + -- ModernMilitaryOrganization. + fun MilitaryPerson : Ind OccupationalRole ; + + -- An enlisted Soldier of the lowest rank. + fun MilitaryPrivate : Class ; + fun MilitaryPrivate_Class : SubClass MilitaryPrivate Soldier ; + + -- MilitaryReserveForce is the subclass + -- of MilitaryOrganizations that consist of forces trained in military + -- procedures and activities, which are subject to being called to active duty + -- if needed. + fun MilitaryReserveForce : Class ; + fun MilitaryReserveForce_Class : SubClass MilitaryReserveForce MilitaryOrganization ; + + -- The study of the principles of war. + fun MilitaryScience : Ind FieldOfStudy ; + + -- A branch of the armed forces of a Nation. + -- For example, there are five military services in the United States, the army, + -- the navy, the air force, the marines, and the coast guard. + fun MilitaryService : Class ; + fun MilitaryService_Class : SubClass MilitaryService MilitaryOrganization ; + + -- Any Ship which is made for a MilitaryOrganization. + -- This includes aircraft carriers, destroyers, etc. + fun MilitaryShip : Class ; + fun MilitaryShip_Class : SubClass MilitaryShip (both MilitaryWaterVehicle Ship) ; + + -- Any MilitaryUnit with the rank of squad. + fun MilitarySquad : Class ; + fun MilitarySquad_Class : SubClass MilitarySquad MilitaryUnit ; + + -- Any MilitaryArtifact which is sold to a + -- non_military customer. + fun MilitarySurplus : Class ; + fun MilitarySurplus_Class : SubClass MilitarySurplus MilitaryArtifact ; + + -- A MilitaryVehicle that moves along the ground + -- on treaded wheels and that contains a large cannon. + fun MilitaryTank : Class ; + fun MilitaryTank_Class : SubClass MilitaryTank (both ArtilleryGun (both MilitaryVehicle RoadVehicle)) ; + + -- Any MilitaryOrganization that can be dispatched + -- to an area of operations. + fun MilitaryUnit : Class ; + fun MilitaryUnit_Class : SubClass MilitaryUnit MilitaryOrganization ; + + -- Any Vehicle which is intended to be + -- used by a MilitaryOrganization. MilitaryVehicle Military platforms which are also vehicles. + -- This would include things like airplanes and tanks, but exclude things like + -- towed platforms. + fun MilitaryVehicle : Class ; + fun MilitaryVehicle_Class : SubClass MilitaryVehicle Vehicle ; + + -- MilitaryWaterVehicle is the class of + -- all WaterVehicle owned or leased for use by some MilitaryOrganization. + fun MilitaryWaterVehicle : Class ; + fun MilitaryWaterVehicle_Class : SubClass MilitaryWaterVehicle WaterVehicle ; + + -- A nutritious BodySubstance produced by Mammals + -- that has evolved to provide nourishment for their offspring during + -- their initial period of life. + fun Milk : Class ; + fun Milk_Class : SubClass Milk (both Beverage LiquidBodySubstance) ; + + -- The UnitOfDuration of 1000 years. + fun MillenniumDuration : Ind UnitOfDuration ; + + -- An construction in the earth from which Minerals are removed, + -- either in pure form or as part of ores. + fun Mine : Class ; + fun Mine_Class : SubClass Mine StationaryArtifact ; + + -- MiningProduct is the class of things + -- that are produced from the earth for human use by mining or another form + -- of extraction. This includes metal ores, petroleum, and other products. + fun MiningProduct : Class ; + fun MiningProduct_Class : SubClass MiningProduct Product ; + + -- An Artifact with a surface that is capable of + -- displaying an image by reflecting light. + fun Mirror : Class ; + fun Mirror_Class : SubClass Mirror Artifact ; + + -- A Projectile which is propelled by a rocket and + -- contains a Bomb. + fun Missile : Class ; + fun Missile_Class : SubClass Missile (both Projectile SelfPoweredDevice) ; + + -- The class of ReligiousOrganizations + -- that send members to foreign countries with the aim of coverting citizens + -- of those countries to the beliefs of the ReligiousOrganization. + fun MissionOrganization : Class ; + fun MissionOrganization_Class : SubClass MissionOrganization ReligiousOrganization ; + + -- Anything which serves to house people but + -- which changes its location from time to time, e.g. a motorhome, a mobile + -- home, a camp, etc. Note that MobileResidence is disjoint from Residence, + -- because the latter is a subclass of StationaryArtifact. + fun MobileResidence : Class ; + fun MobileResidence_Class : SubClass MobileResidence Artifact ; + + -- Any Position which involves posing for an + -- artist or photographer. + fun ModellingPosition : Class ; + fun ModellingPosition_Class : SubClass ModellingPosition Position ; + + -- Music which has a single part, i.e. Music + -- which cannot be divided into two or more contemporaneous subProcesses which + -- are also instances of Music. + fun MonophonicMusic : Class ; + fun MonophonicMusic_Class : SubClass MonophonicMusic Music ; + + -- A StationaryArtifact whose purpose is to commemorate + -- a person, animal or event. + fun Monument : Class ; + fun Monument_Class : SubClass Monument StationaryArtifact ; + + -- The class of TimeIntervals that begin at Sunrise + -- and end at noon. + fun Morning : Class ; + fun Morning_Class : SubClass Morning DayTime ; + + -- A mortar is a bomb that is shot at a location. A + -- howitzer is a weapon that fires mortars. The mortar may not include the + -- propelling charge that provides the motive force for delivering it to its + -- target, which distinguishes it from a rocket. A mortar is distinguished + -- from other bombs in that it is propelled rather than exploded in place, or + -- dropped, or propelled by human power. + fun Mortar : Class ; + fun Mortar_Class : SubClass Mortar Weapon ; + + -- An attack in which a Mortar weapon is + -- used. + fun MortarAttack : Class ; + fun MortarAttack_Class : SubClass MortarAttack Bombing ; + + -- A short_range Gun that is positioned on the ground + -- at a high angle and fires explosive shells. + fun MortarGun : Class ; + fun MortarGun_Class : SubClass MortarGun ArtilleryGun ; + + -- Nocturnal Insect with a large body and antennae. + fun Moth : Class ; + fun Moth_Class : SubClass Moth Insect ; + + -- A discrete part of a MotionPicture which is set in + -- the same time period and the same location. + fun MotionPictureScene : Class ; + fun MotionPictureScene_Class : SubClass MotionPictureScene MotionPicture ; + + -- A unit of action in a MotionPicture, a + -- MotionPictureShot is a sequence of images which are captured by a single + -- camera without interruption. + fun MotionPictureShot : Class ; + fun MotionPictureShot_Class : SubClass MotionPictureShot MotionPicture ; + + -- Motorcycle is the subclass of RoadVehicles + -- that have two wheels one behind the other in the frame, upon which the rider + -- sits on a seat above the engine. + fun Motorcycle : Class ; + fun Motorcycle_Class : SubClass Motorcycle (both SelfPoweredRoadVehicle RoadVehicle) ; + + -- MotorizedRailwayCar is the subclass + -- of railway cars that carry their own power source. + fun MotorizedRailwayCar : Class ; + fun MotorizedRailwayCar_Class : SubClass MotorizedRailwayCar (both PoweredVehicle RollingStock) ; + + -- Any BodyMotion which results in being On + -- something else. + fun Mounting : Class ; + fun Mounting_Class : SubClass Mounting BodyMotion ; + + -- A Rodent that has a hairless tail like a rat but that + -- is smaller than a Rat. + fun Mouse : Class ; + fun Mouse_Class : SubClass Mouse Rodent ; + + -- Part of the Face, used for Ingesting Food + -- and Vocalizing. + fun Mouth : Class ; + fun Mouth_Class : SubClass Mouth (both AnimalAnatomicalStructure BodyPart) ; + + -- The process of changing one's residence, i.e. + -- moving one's belongs to a new home. + fun MovingResidence : Class ; + fun MovingResidence_Class : SubClass MovingResidence Transfer ; + + -- The product of a Male Donkey and a Female + -- Horse. Mules are always sterile. + fun Mule : Class ; + fun Mule_Class : SubClass Mule (both DomesticAnimal HoofedMammal) ; + + -- Impermissible Killing of a Human. + fun Murder : Class ; + fun Murder_Class : SubClass Murder (both CriminalAction Killing) ; + + -- An EducationalOrganization where Artifacts of historic, + -- scientific or aesthetic value are collected and exhibited. + fun Museum : Class ; + fun Museum_Class : SubClass Museum EducationalOrganization ; + + -- An AudioRecording of Music. Note that + -- many AudioRecordings contain music, so only an audio recording without + -- any music would be an instance of AudioRecording rather than of + -- MusicRecording. + fun MusicRecording : Class ; + fun MusicRecording_Class : SubClass MusicRecording AudioRecording ; + + -- A Text in a Language that represents a form of music. + fun MusicText : Class ; + fun MusicText_Class : SubClass MusicText Text ; + + -- A Text that expresses the notes, + -- words, etc. of a song or other sort of Music. + fun MusicalComposition : Class ; + fun MusicalComposition_Class : SubClass MusicalComposition Text ; + + -- A GroupOfPeople that create Music + -- together. + fun MusicalGroup : Class ; + fun MusicalGroup_Class : SubClass MusicalGroup GroupOfPeople ; + + -- A Performance that consists exclusively of + -- Music, e.g. an orchestra playing a symphony to an assembled audience. + fun MusicalPerformance : Class ; + fun MusicalPerformance_Class : SubClass MusicalPerformance Performance ; + + -- A Process of RadiatingSound where the + -- sound has a fundamental frequency and 0 or more partial frequencies + -- or unrelated transients or noise components that have a lesser + -- amplitude than the fundamental. + fun MusicalTone : Class ; + fun MusicalTone_Class : SubClass MusicalTone RadiatingSound ; + + -- A Musician is someone who is capable of giving a MusicalPerformance. + -- This includes amateurs and others who don't formally make a living at the activity + -- or choose it as a profession. + fun Musician : Ind SocialRole ; + + -- A FictionalText whose central plot element is a + -- crime of some sort, usually a murder. + fun MysteryStory : Class ; + fun MysteryStory_Class : SubClass MysteryStory FictionalText ; + + -- An AttachingDevice which is a thin piece of metal, with + -- or without a head, that is fastened with a Hammer. + fun Nail : Class ; + fun Nail_Class : SubClass Nail AttachingDevice ; + + -- Any of the horny structures which are found + -- on the DigitAppendages of Primates and other Animals. This includes + -- fingernails and toenails. + fun NailDigit : Class ; + fun NailDigit_Class : SubClass NailDigit AnimalAnatomicalStructure ; + + -- Any Text that tells a story, whether true + -- or false. + fun NarrativeText : Class ; + fun NarrativeText_Class : SubClass NarrativeText Text ; + + -- A Flag that is the official flag of a Nation, + -- e.g. the stars and stripes is the NationalFlag of the UnitedStates. + fun NationalFlag : Class ; + fun NationalFlag_Class : SubClass NationalFlag Flag ; + + -- The German PoliticalParty headed by Adolf Hitler. + fun NaziParty : Ind PoliticalParty ; + + -- The part of the body that connects the Head to the + -- rest of the body. + fun Neck : Class ; + fun Neck_Class : SubClass Neck (both AnimalAnatomicalStructure BodyPart) ; + + -- A sweet, sticky liquid that is produced by Plants + -- and that attracts Insects. + fun Nectar : Class ; + fun Nectar_Class : SubClass Nectar PlantSubstance ; + + -- A Contest where each participant attempts to + -- maximize his self_interest in a Promise that marks the end of the Contest. + fun Negotiating : Class ; + fun Negotiating_Class : SubClass Negotiating (both Contest LinguisticCommunication) ; + + -- The Cells that make up a NervousSystem. + fun NerveCell : Class ; + fun NerveCell_Class : SubClass NerveCell (both AnimalAnatomicalStructure Cell) ; + + -- Any structure which is created by nonhuman Animals for + -- the purpose of giving birth to their offspring. + fun Nest : Class ; + fun Nest_Class : SubClass Nest CorpuscularObject ; + + -- Any PsychologicalDysfunction which is not due + -- to an organic impairment of the NervousSystem. + fun Neurosis : Class ; + fun Neurosis_Class : SubClass Neurosis PsychologicalDysfunction ; + + -- The second and final part of the ChristianBible, + -- describing the life and teachings of Jesus Christ and the activities of his + -- apostles. + fun NewTestament : Class ; + fun NewTestament_Class : SubClass NewTestament Book ; + + -- A BroadcastProgram that is devoted to + -- reporting the latest events in a city, region, nation or the world at + -- large. + fun NewsProgram : Class ; + fun NewsProgram_Class : SubClass NewsProgram BroadcastProgram ; + + -- The Profession of being a news reporter, i.e. + -- investigating and reporting, in a publication or broadcast program, current + -- events. + fun NewsReporter : Ind Profession ; + + -- A Periodical that is published on a daily or + -- weekly basis, that contains Reports, and whose issues are printed on + -- newsprint paper. + fun Newspaper : Class ; + fun Newspaper_Class : SubClass Newspaper Periodical ; + + -- The class of TimeIntervals that begin at Sunset + -- and end at Sunrise. + fun NightTime : Class ; + fun NightTime_Class : SubClass NightTime TimeInterval ; + + -- Moving the Head up and down or side to side + -- to indicate approval or disapproval. + fun Nodding : Class ; + fun Nodding_Class : SubClass Nodding Gesture ; + + -- Any Organization whose purpose is something + -- other than making a profit. + fun NonprofitOrganization : Class ; + fun NonprofitOrganization_Class : SubClass NonprofitOrganization Organization ; + + -- The class of DiseaseOrSyndromes that are not + -- caused by a single type of Microorganism. + fun NonspecificDisease : Class ; + fun NonspecificDisease_Class : SubClass NonspecificDisease DiseaseOrSyndrome ; + + -- The Organ of Smelling. + fun Nose : Class ; + fun Nose_Class : SubClass Nose (both AnimalAnatomicalStructure Organ) ; + + -- Either of two BodyVessels that run through the Nose + -- and connect it to the Throat. + fun Nostril : Class ; + fun Nostril_Class : SubClass Nostril (both AnimalAnatomicalStructure BodyVessel) ; + + -- A FictionalText that is larger than a ShortStory + -- and that is bound independently (i.e. it is a Book). + fun Novel : Class ; + fun Novel_Class : SubClass Novel (both Book FictionalText) ; + + -- A NuclearFamily is a SocialUnit composed + -- of at least two and not more than three generations of familyRelations: + -- parents, their children, and possibly the parents' parents (children's + -- grandparents). + fun NuclearFamily : Class ; + fun NuclearFamily_Class : SubClass NuclearFamily (both FamilyGroup SocialUnit) ; + + -- An ExplosiveDevice and RadioactiveWeapon + -- which achieves its effect by means of a critical mass of a radioactive substance. + fun NuclearWeapon : Class ; + fun NuclearWeapon_Class : SubClass NuclearWeapon (both ExplosiveDevice (both RadioactiveWeapon Weapon)) ; + + -- Any WoodArtifact that is made from the Wood of an oak tree. + fun OakWood : Class ; + fun OakWood_Class : SubClass OakWood WoodArtifact ; + + -- A Device consisting of a flat, broad surface attached to a + -- handle that is used as an instrument in Rowing. + fun Oar : Class ; + fun Oar_Class : SubClass Oar TransportationDevice ; + + -- Any TwoDimensionalAngle that has an + -- angularMeasure that is greater than 90 AngularDegrees. + fun ObliqueAngle : Class ; + fun ObliqueAngle_Class : SubClass ObliqueAngle TwoDimensionalAngle ; + + -- (OccupationFn ?PROCESS) denotes the + -- subclass of ?PROCESS where instances of ?PROCESS are performed as + -- one's occupation, i.e. as part of a FinancialTransaction where one + -- earns money for the performance of ?PROCESS. + fun OccupationFn : El IntentionalProcess -> Desc FinancialTransaction ; + + -- A Role of a Human in a OrganizationalProcess. + fun OccupationalRole : Class ; + fun OccupationalRole_Class : SubClass OccupationalRole Position ; + + -- Any Position that involves skilled manual work. + fun OccupationalTrade : Class ; + fun OccupationalTrade_Class : SubClass OccupationalTrade (both ManualLabor SkilledOccupation) ; + + -- Offering to sell something to someone. + fun OfferingForSale : Class ; + fun OfferingForSale_Class : SubClass OfferingForSale Offering ; + + -- Offering to buy something from someone. + fun OfferingToPurchase : Class ; + fun OfferingToPurchase_Class : SubClass OfferingToPurchase Offering ; + + -- A building in which work activities take + -- place which is not primarily designed for manufacturing or retail sales. + fun OfficeBuilding : Class ; + fun OfficeBuilding_Class : SubClass OfficeBuilding Building ; + + -- A greasy, viscous Solution that cannot be mixed with Water. + -- Note that this general class covers petroleum oil, vegetable oil, animal fat, etc. + fun Oil : Class ; + fun Oil_Class : SubClass Oil Solution ; + + -- Any Paint which is an oil_based Solution. + fun OilPaint : Class ; + fun OilPaint_Class : SubClass OilPaint Paint ; + + -- Any OilPicture which is created + -- with oil_based paints. + fun OilPicture : Class ; + fun OilPicture_Class : SubClass OilPicture PaintedPicture ; + + -- The first part of the ChristianBible, describing + -- the history of the Hebrew people. + fun OldTestament : Class ; + fun OldTestament_Class : SubClass OldTestament Book ; + + -- An Ontology is a + -- ClassificationScheme that links concepts via many different + -- relations. Ontologies typically are not restricted to binary + -- relations and are structured by several kinds of conceptual + -- hierarchies, including set_ or class_based subsumption, spatial + -- containment, mereology + -- (theory of parts and wholes), and logical contexts. Thus, + -- an ontology typically includes multiple taxonomies. + fun Ontology : Class ; + fun Ontology_Class : SubClass Ontology ClassificationScheme ; + + -- The Class of Processes where an aperture is + -- created in an Object. Note that the aperture may be created intentionally, + -- as when one opens a door, or unintentionally, as when the ground ruptures + -- in a seismic event. + fun Opening : Class ; + fun Opening_Class : SubClass Opening Motion ; + + -- The BodyMotion of relaxing the eye lids so that + -- the corneas are exposed to light. + fun OpeningEyes : Class ; + fun OpeningEyes_Class : SubClass OpeningEyes (both EyeMotion Opening) ; + + -- A DramaticPlay that is set to Music. + fun Opera : Class ; + fun Opera_Class : SubClass Opera DramaticPlay ; + + -- A Device which enables someone to see something + -- more clearly or with greater magnification. + fun OpticalDevice : Class ; + fun OpticalDevice_Class : SubClass OpticalDevice Device ; + + -- A SecondaryColor that results from mixing Red + -- and Yellow and resembles the color of a ripe orange fruit. + fun OrangeColor : Ind SecondaryColor ; + + -- A citrus FruitOrVegetable that has an OrangeColor skin and a sweet, acidic flavor. + fun OrangeFruit : Class ; + fun OrangeFruit_Class : SubClass OrangeFruit (both Food FruitOrVegetable) ; + + -- A GroupOfPeople that create InstrumentalMusic together. + fun Orchestra : Class ; + fun Orchestra_Class : SubClass Orchestra MusicalGroup ; + + -- The Process of directing an orchestra. + fun OrchestralConducting : Class ; + fun OrchestralConducting_Class : SubClass OrchestralConducting Guiding ; + + -- A Sentence that expresses an order for something or that something be done. + fun Order : Class ; + fun Order_Sentence : SubClassC Order Sentence (\SENTENCE -> exists Ordering (\ORDER -> result(var Ordering Process ? ORDER)(var Sentence Entity ? SENTENCE))); + + -- Any CompoundSubstance that has a Carbon base. + fun OrganicCompound : Class ; + fun OrganicCompound_Class : SubClass OrganicCompound CompoundSubstance ; + + -- Any BiologicalProcess that results in the formation of an Organ. + fun Organification : Class ; + fun Organification_Class : SubClass Organification OrganOrTissueProcess ; + + -- Part of an Organization that + -- is responsible for managing the Organization. + fun OrganizationalBoard : Class ; + fun OrganizationalBoard_Class : SubClass OrganizationalBoard Organization ; + + -- The process of two or more + -- Organizations merging into a single Organization. + fun OrganizationalMerging : Class ; + fun OrganizationalMerging_Class : SubClass OrganizationalMerging OrganizationalProcess ; + + -- A method for representing the sounds of a Language + -- with written Characters. + fun Orthography : Class ; + fun Orthography_Class : SubClass Orthography Procedure ; + + -- Any BiologicalProcess that results in the + -- formation of Bones. + fun Ossification : Class ; + fun Ossification_Class : SubClass Ossification OrganOrTissueProcess ; + + -- Clothing that is intended to be worn outdoors. + fun OutdoorClothing : Class ; + fun OutdoorClothing_Class : SubClass OutdoorClothing Clothing ; + + -- Any Region which is not enclosed by a Building + -- or part of a Building. + fun Outdoors : Ind Region ; + + -- The class of all Regions which are + -- neither GeographicAreas nor AtmosphericRegions. + fun OuterSpaceRegion : Class ; + fun OuterSpaceRegion_Class : SubClass OuterSpaceRegion SpaceRegion ; + + -- Outside is a PositionalAttribute used to + -- describe the relative location of one object or region to another + -- region. For example, (orientation Cuba UnitedStates Outside). + fun Outside : Ind PositionalAttribute ; + + -- A HeatingDevice with a door for inserting and removing + -- Food that is to undergo Baking. + fun Oven : Class ; + fun Oven_Class : SubClass Oven (both Container HeatingDevice) ; + + -- A nocturnal bird of prey with a large head and + -- forward_facing eyes. + fun Owl : Class ; + fun Owl_Class : SubClass Owl Bird ; + + -- Any ChemicalProcess where Electrons + -- are removed from the substance undergoing the ChemicalProcess. + fun Oxidation : Class ; + fun Oxidation_Class : SubClass Oxidation ChemicalDecomposition ; + + -- A single page of Text. + fun Page : Ind UnitOfInformation ; + + -- A physical sensation of discomfort which can vary widely + -- in intensity. + fun Pain : Ind EmotionalState ; + + -- Any Solution which is capable of Coloring something. + fun Paint : Class ; + fun Paint_Class : SubClass Paint Solution ; + + -- Any ArtWork which is produced by Painting. + fun PaintedPicture : Class ; + fun PaintedPicture_Class : SubClass PaintedPicture ArtWork ; + + -- The application of Paint to a surface. Note that + -- this class covers both ArtPainting (the creation of PaintedPictures), as + -- well as painting one's kitchen, for example. + fun Painting : Class ; + fun Painting_Class : SubClass Painting (both Coloring Covering) ; + + -- A large Gland that secretes Insulin and other + -- substances. + fun Pancreas : Class ; + fun Pancreas_Class : SubClass Pancreas Gland ; + + -- Paper is a flat sheet of fibers, usually produced by + -- spreading a wet solution of wood particles on a flat surface and drying + -- through heat and pressure. The fibers can also be cotton or a synthetic, + -- although typically the bulk of the substance is wood fibers. This + -- includes all manner of paper products that may have varying thicknesses, + -- colors or texture. This is distinguished from flat wood products such as + -- plywood and particle board which have a structural function in building + -- construction. Sheathing materials such as the paper affixed to sheetrock + -- however, is paper. + fun Paper : Class ; + fun Paper_Class : SubClass Paper Artifact ; + + -- A Text which consists of one or more sentences, + -- begins with an indented line, and expresses a single topic. + fun Paragraph : Class ; + fun Paragraph_Class : SubClass Paragraph Text ; + + -- A publicly owned LandArea which is intended to be used + -- for recreation and/or exercise. + fun Park : Class ; + fun Park_Class : SubClass Park LandArea ; + + -- A LandArea which has been levelled, paved, and + -- marked off for parking Automobiles. + fun ParkingLot : Class ; + fun ParkingLot_Class : SubClass ParkingLot StationaryArtifact ; + + -- Any Position where the employee is not + -- salaried and is paid for less than 40 hours of work per week. + fun PartTimePosition : Class ; + fun PartTimePosition_Class : SubClass PartTimePosition Position ; + + -- A CommercialAgent that is owned by more + -- than one person. + fun Partnership : Class ; + fun Partnership_Class : SubClass Partnership CommercialAgent ; + + -- A Text which is authored by a PoliticalParty + -- and which contains the core goals and principles of the PoliticalParty for a + -- particular year or election cycle. + fun PartyPlatform : Class ; + fun PartyPlatform_Class : SubClass PartyPlatform FactualText ; + + -- A Certificate that allows the holder to + -- be at or away from a specified location, e.g. a pass for a leave of + -- absence, a hall pass, a pass to enter a cleared facility, etc. + fun PassCertificate : Class ; + fun PassCertificate_Class : SubClass PassCertificate Certificate ; + + -- A Vehicle that is designed to + -- carry Humans. Note that Vehicles that are not designed to + -- carry people may still do so. For example, a boxcar might still + -- transport homeless people, but was not built to do so. + fun PassengerVehicle : Class ; + fun PassengerVehicle_Class : SubClass PassengerVehicle Vehicle ; + + -- The Process of converting a LegislativeBill + -- into Law by a duly authorized legislative body of Government. + fun PassingABill : Class ; + fun PassingABill_Class : SubClass PassingABill (both Declaring PoliticalProcess) ; + + -- A License which identifies the holder and permits + -- travel between different countries. + fun Passport : Class ; + fun Passport_Class : SubClass Passport License ; + + -- A military deployment which is intended + -- to prevent hostilities between two other entities located in the same rough + -- geographic area. + fun PeaceKeepingMission : Class ; + fun PeaceKeepingMission_Class : SubClass PeaceKeepingMission MilitaryOrganization ; + + -- A FruitOrVegetable that has a thick skin and the + -- shape of a tear drop. + fun PearFruit : Class ; + fun PearFruit_Class : SubClass PearFruit (both Food FruitOrVegetable) ; + + -- Removing the Skin (or part of the Skin) from + -- an Organism. Note that this class covers a large range of cases, including + -- peeling an orange, pelting an Animal, etc. + fun Peeling : Class ; + fun Peeling_Class : SubClass Peeling Removing ; + + -- A WritingDevice that consists of an encased piece of + -- graphite. + fun Pencil : Class ; + fun Pencil_Class : SubClass Pencil WritingDevice ; + + -- A qualified retirement plan set up by a + -- corporation, labor union, government, or other organization for its + -- employees. Examples include profit_sharing plans, stock bonus and + -- employee stock ownership plans, thrift plans, target benefit plans, + -- money purchase plans, and defined benefit plans. + fun PensionPlan : Class ; + fun PensionPlan_Class : SubClass PensionPlan FinancialAccount ; + + -- A MusicalInstrument which does not + -- have strings and which is played by striking it. + fun PercussionInstrument : Class ; + fun PercussionInstrument_Class : SubClass PercussionInstrument MusicalInstrument ; + + -- A Demonstrating which includes DramaticActing + -- and/or Music and which is intended to entertain the audience. + fun Performance : Class ; + fun Performance_Class : SubClass Performance Demonstrating ; + + -- A discrete subProcess of a Performance, + -- e.g. an act of a play, a movement of a performance of a symphony, etc. + fun PerformanceAct : Class ; + fun PerformanceAct_Class : SubClass PerformanceAct Performance ; + + -- A Text that describes the events + -- and/or participants in a Performance. + fun PerformanceProgram : Class ; + fun PerformanceProgram_Class : SubClass PerformanceProgram FactualText ; + + -- A large platform for theatrical plays, + -- lectures, dances, music recitals, etc, which can be observed by an audience. + fun PerformanceStage : Class ; + fun PerformanceStage_Class : SubClass PerformanceStage StationaryArtifact ; + + -- A part of the PerformanceStage that is not + -- visible to members of the audience. + fun PerformanceStageWing : Class ; + fun PerformanceStageWing_Class : SubClass PerformanceStageWing StationaryArtifact ; + + -- Any Publisher that publishes + -- Periodicals, e.g. newspaper and magazine publishing houses. + fun PeriodicalPublisher : Class ; + fun PeriodicalPublisher_Class : SubClass PeriodicalPublisher Publisher ; + + -- PetroleumProduct is a broad class that + -- includes both crude oil (Petroleum) and RefinedPetroleumProducts. + fun PetroleumProduct : Class ; + fun PetroleumProduct_Class : SubClass PetroleumProduct (both MiningProduct Oil) ; + + -- The Profession of being a pharmacist, i.e. + -- preparing and dispensing BiologicallyActiveSubstances. + fun Pharmacist : Class ; + fun Pharmacist_Class : SubClass Pharmacist Profession ; + + -- The study of first principles, including epistemology, + -- metaphysics, and ethics. + fun Philosophy : Ind FieldOfStudy ; + + -- An Icon that is the result of a process of Photographing. + fun Photograph : Class ; + fun Photograph_Class : SubClass Photograph Icon ; + + -- Celluloid covered with an emulsion which can + -- be converted into photographic negatives by a Camera. + fun PhotographicFilm : Class ; + fun PhotographicFilm_Class : SubClass PhotographicFilm Artifact ; + + -- ContentDevelopment where the instrument + -- is a camera and the result is a Photograph. + fun Photographing : Class ; + fun Photographing_Class : SubClass Photographing ContentDevelopment ; + + -- The study of matter and energy and their relations. + fun Physics : Ind Science ; + + -- The part of Biology dealing with the functioning of + -- Organisms. + fun Physiology : Ind Science ; + + -- A StringInstrument with keys that, when pressed down, + -- activate hammers that, in turn, strike strings. + fun Piano : Class ; + fun Piano_Class : SubClass Piano StringInstrument ; + + -- A frame which surrounds a PaintedPicture or + -- Photograph and has the function of protecting and accenting the picture. + fun PictureFrame : Class ; + fun PictureFrame_Class : SubClass PictureFrame Artifact ; + + -- A domesticated HoofedMammal that is raised for pork. + fun Pig : Class ; + fun Pig_Class : SubClass Pig (both HoofedMammal Livestock) ; + + -- A subclass of Bird with a stout body and short legs. + fun Pigeon : Class ; + fun Pigeon_Class : SubClass Pigeon Bird ; + + -- A soft, stuffed Artifact to support the Head or + -- the body as a whole while one is sleeping or relaxing. + fun Pillow : Class ; + fun Pillow_Class : SubClass Pillow Artifact ; + + -- A SecondaryColor that results from mixing Red and + -- White. + fun Pink : Ind SecondaryColor ; + + -- Pipeline is the class of pipelines used + -- to transport various kinds of fluids. + fun Pipeline : Class ; + fun Pipeline_Class : SubClass Pipeline Transitway ; + + -- A Firearm that is intended to be aimed and fired with a + -- single hand. + fun Pistol : Class ; + fun Pistol_Class : SubClass Pistol Firearm ; + + -- The place where the pitcher in Baseball + -- stands when he is throwing balls to the batter. + fun PitchersMound : Class ; + fun PitchersMound_Class : SubClass PitchersMound GameArtifact ; + + -- Throwing a Ball to the batter in a game of + -- Baseball or softball. + fun Pitching : Class ; + fun Pitching_Class : SubClass Pitching (both GameShot Throwing) ; + + -- The main Gland of the endocrine system. + fun PituitaryGland : Class ; + fun PituitaryGland_Class : SubClass PituitaryGland Gland ; + + -- A Building or part of a Building which is + -- intended for organizational activities, e.g. retail or wholesale selling, + -- manufacturing, office work, etc. + fun PlaceOfCommerce : Class ; + fun PlaceOfCommerce_Class : SubClass PlaceOfCommerce StationaryArtifact ; + + -- Any place designed for ReligiousProcesses. + fun PlaceOfWorship : Class ; + fun PlaceOfWorship_Class : SubClass PlaceOfWorship Building ; + + -- PlacingUnderArrest is the class of events in which a + -- CognitiveAgent, typically a law enforcement professional, + -- legally takes into custody a human or group of humans. + fun PlacingUnderArrest : Class ; + fun PlacingUnderArrest_Class : SubClass PlacingUnderArrest (both Capturing (both LawEnforcement (both LegalAction SocialInteraction))) ; + + -- PlantAgriculturalProduct + -- is the class of AgriculturalProducts that are vegetable in nature, + -- in the widest sense, e.g., fruits, grains, green vegetables, cotton, + -- linen, flowers, wine grapes, hops. + fun PlantAgriculturalProduct : Class ; + fun PlantAgriculturalProduct_Class : SubClass PlantAgriculturalProduct AgriculturalProduct ; + + -- The stem of a Plant or any shoot arising from + -- the stem of a Plant. + fun PlantBranch : Class ; + fun PlantBranch_Class : SubClass PlantBranch (both BodyPart PlantAnatomicalStructure) ; + + -- An Organ of Plants whose main purpose is + -- photosynthesis. + fun PlantLeaf : Class ; + fun PlantLeaf_Class : SubClass PlantLeaf (both Organ PlantAnatomicalStructure) ; + + -- An Organ of Plants whose main purpose is twofold, viz. to absorb + -- nutrients from the ground and to anchor the Plant in place. + fun PlantRoot : Class ; + fun PlantRoot_Class : SubClass PlantRoot (both Organ PlantAnatomicalStructure) ; + + -- A small piece of stiff paper with markings + -- which is intended to be used for playing card games. + fun PlayingCard : Class ; + fun PlayingCard_Class : SubClass PlayingCard (both ContentBearingObject GameArtifact) ; + + -- Stating in a court of law a claim about whether or + -- not one is guilty of the crime of which one has been accused. + fun Pleading : Class ; + fun Pleading_Class : SubClass Pleading Stating ; + + -- An Artifact which is designed to fit snugly within a Hole. + fun Plug : Class ; + fun Plug_Class : SubClass Plug Artifact ; + + -- Any occupation that involves installing, repairing, and + -- replacing pipes and pipe fixtures. + fun Plumber : Ind OccupationalTrade ; + + -- A pouch of Fabric in an instance of Clothing where something can be kept. + fun Pocket : Class ; + fun Pocket_Class : SubClass Pocket Fabric ; + + -- A PoliceOfficer who is in charge of a precinct. + fun PoliceCaptain : Class ; + fun PoliceCaptain_Class : SubClass PoliceCaptain PoliceOfficer ; + + -- The Profession of being a police + -- detective, i.e. being a PoliceOfficer whose duties include the + -- investigation of crimes. + fun PoliceDetective : Ind PoliceOfficer ; + + -- A building designed to house PolicePersons. + fun PoliceFacility : Class ; + fun PoliceFacility_Class : SubClass PoliceFacility Building ; + + -- The Profession of being a police officer, i.e. + -- working for a law enforcement agency that is part of a Government. + fun PoliceOfficer : Class ; + fun PoliceOfficer_Class : SubClass PoliceOfficer (both GovernmentOfficer Profession) ; + + -- A member of a government whose occupation + -- has the primary purpose of preventing crime and arresting criminals. + fun PolicePerson : Ind OccupationalRole ; + + -- A PoliceOfficer with the rank of sergeant. + fun PoliceSergeant : Class ; + fun PoliceSergeant_Class : SubClass PoliceSergeant PoliceOfficer ; + + -- A CriminalAction that is committed by or + -- against Governments. + fun PoliticalCrime : Class ; + fun PoliticalCrime_Class : SubClass PoliticalCrime (both CriminalAction PoliticalProcess) ; + + -- A well known person who participates + -- in a PoliticalProcess. This must either be the person's principal + -- occupation, or what is intended to become his principal occupation + -- (for example, after an election). + fun PoliticalFigure : Class ; + fun PoliticalFigure_Class : SubClass PoliticalFigure Celebrity ; + + -- PoliticalParty is the class of + -- PoliticalOrganizations that may sponsor candidates for Elections. + fun PoliticalParty : Class ; + fun PoliticalParty_Class : SubClass PoliticalParty PoliticalOrganization ; + + -- The violent overthrow of one Government + -- and its replacement by another. This covers grass_roots revolutions, as well + -- as coups d'etat. + fun PoliticalRevolution : Class ; + fun PoliticalRevolution_Class : SubClass PoliticalRevolution (both PoliticalProcess ViolentContest) ; + + -- The field of political science. + fun PoliticalScience : Ind SocialScience ; + + -- Any Attribute of a Government which specifies some aspect of the political or + -- economic system of the Government. + fun PoliticoEconomicAttribute : Class ; + fun PoliticoEconomicAttribute_Class : SubClass PoliticoEconomicAttribute RelationalAttribute ; + + -- Investigating what people believe (and in what proportions) + -- by asking a set of structured questions to a random sample of people. + fun Polling : Class ; + fun Polling_Class : SubClass Polling Investigating ; + + -- A ClosedTwoDimensionalFigure that is composed + -- exclusively of straight lines, i.e. OneDimensionalFigures. + fun Polygon : Class ; + fun Polygon_Class : SubClass Polygon ClosedTwoDimensionalFigure ; + + -- Music which has two or more parts, i.e. Music + -- which can be divided into two or more contemporaneous subProcesses which are + -- also instances of Music. + fun PolyphonicMusic : Class ; + fun PolyphonicMusic_Music : SubClassC PolyphonicMusic Music + (\MUSIC -> exists Music (\PART1 -> + exists Music (\PART2 -> and (and (and (and (subProcess (var Music Process ? PART1) + (var Music Process ? MUSIC)) + (subProcess (var Music Process ? PART2) + (var Music Process ? MUSIC))) + (not (equal (var Music Entity ? PART1) + (var Music Entity ? PART2)))) + (cooccur (var Music Physical ? PART1) + (var Music Physical ? MUSIC))) + (cooccur (var Music Physical ? PART2) + (var Music Physical ? MUSIC))))); + + -- The Position of head of the RomanCatholicChurch. + fun Pope : Ind Position ; + + -- PopularElection is the class of + -- Elections in which office_holders and issues are determined directly by + -- the outcome of the votes cast by the enfranchised. For example, U.S. + -- Senators and Representatives are elected by PopularElection. By + -- contrast, U.S. Presidents are elected by indirect elections, in which the + -- Electoral College determines the actual outcome. See electionWinner. + fun PopularElection : Class ; + fun PopularElection_Class : SubClass PopularElection GeneralElection ; + + -- A StationaryArtifact which is connected to a + -- Building and which provides some shelter in entering or leaving the + -- Building or in sitting outside. + fun Porch : Class ; + fun Porch_Class : SubClass Porch StationaryArtifact ; + + -- Meat that was originally part of a Pig. + fun Pork : Class ; + fun Pork_Class : SubClass Pork Meat ; + + -- A PaintedPicture that represents someone's Face. + fun Portrait : Class ; + fun Portrait_Class : SubClass Portrait PaintedPicture ; + + -- The class of TimeIntervals that begin at noon and + -- end at midnight. + fun PostMeridiem : Class ; + fun PostMeridiem_Class : SubClass PostMeridiem TimeInterval ; + + -- The class of Schools that offer + -- an associate's degree or a bachelor's degree. + fun PostSecondarySchool : Class ; + fun PostSecondarySchool_Class : SubClass PostSecondarySchool School ; + + -- A Container which has a handle and is used for + -- Cooking. + fun PotOrPan : Class ; + fun PotOrPan_Class : SubClass PotOrPan Container ; + + -- Any occupation that involves the creation of Pottery. + fun Potter : Ind OccupationalTrade ; + + -- Household Artifacts that are made out of baked Clay. + fun Pottery : Class ; + fun Pottery_Class : SubClass Pottery Artifact ; + + fun Poultry : Class ; + fun Poultry_Class : SubClass Poultry (both Bird Livestock) ; + + -- Any instance of Transfer from one Container to + -- another, where the thing transferred is a Liquid. + fun Pouring : Class ; + fun Pouring_Class : SubClass Pouring (both LiquidMotion Transfer) ; + + -- Any Solid Substance which consists of loose, + -- identical, and very small particles. + fun Powder : Class ; + fun Powder_Class : SubClass Powder Substance ; + + -- A source of electrical power. + fun PowerSource : Class ; + fun PowerSource_Class : SubClass PowerSource Device ; + + -- A Vehicle that has a powerComponent. + -- Note that PoweredVehicles include those vehicles that have a powerComponent + -- where the user can and does often choose not to use it, such as a moped with pedals. + fun PoweredVehicle : Class ; + fun PoweredVehicle_Class : SubClass PoweredVehicle Vehicle ; + + -- A formal or informal process of private worship which + -- may or may not be carried out in a ReligiousBuilding. + fun Praying : Class ; + fun Praying_Class : SubClass Praying (both ReligiousProcess Requesting) ; + + -- The Attribute that applies to Female Animals and + -- Humans that have an embryo or fetus growing inside of them as the result of + -- having one of the Female's Eggs fertilized. + fun Pregnant : Ind BiologicalAttribute ; + + -- Food that is the result of Cooking. + fun PreparedFood : Class ; + fun PreparedFood_Class : SubClass PreparedFood Food ; + + -- The position of being head of the + -- UnitedStates. + fun PresidentOfTheUnitedStates : Ind Position ; + + -- Any Device that measures and represents PressureMeasure. + fun PressureMeasuringDevice : Class ; + fun PressureMeasuringDevice_Class : SubClass PressureMeasuringDevice MeasuringDevice ; + + -- An installation which is owned and maintained by + -- a Government for the purpose of Confining people. This class covers + -- jails, federal prisons, concentration camps, gulags, etc. + fun Prison : Class ; + fun Prison_Class : SubClass Prison StationaryArtifact ; + + -- The Profession of being a private detective, + -- i.e. a detective who can be hired for a fee to investigate something. + fun PrivateDetective : Ind Profession ; + + -- A School which is not publicly owned. + fun PrivateSchool : Class ; + fun PrivateSchool_Class : SubClass PrivateSchool School ; + + -- Any instance of Speaking before an assembled + -- audience that effects an institutional change, e.g. a change in the laws of + -- the government. + fun Proclaiming : Class ; + fun Proclaiming_Class : SubClass Proclaiming (both Declaring Lecture) ; + + -- Any occupation that requires at least a bachelor's degree. + fun Profession : Class ; + fun Profession_Class : SubClass Profession SkilledOccupation ; + + -- The Profession of being a teacher at a PostSecondarySchool. + fun Professor : Ind Profession ; + + -- An arrangement in which an employer + -- shares its profits with its employees. The compensation can be stocks, + -- bonds or cash, and can be immediate or deferred until retirement. + fun ProfitSharingPlan : Class ; + fun ProfitSharingPlan_Class : SubClass ProfitSharingPlan PensionPlan ; + + -- A missile, bullet, etc. that is fired from a Weapon. + fun Projectile : Class ; + fun Projectile_Class : SubClass Projectile Weapon ; + + -- A Weapon that shoots a Projectile. + fun ProjectileLauncher : Class ; + fun ProjectileLauncher_Class : SubClass ProjectileLauncher Weapon ; + + -- The outer casing of a Projectile. + fun ProjectileShell : Class ; + fun ProjectileShell_Class : SubClass ProjectileShell Container ; + + -- A CommunicationDevice upon which images + -- are projected so that they can be viewed. + fun ProjectionScreen : Class ; + fun ProjectionScreen_Class : SubClass ProjectionScreen CommunicationDevice ; + + -- A CommercialAgent that is owned by a + -- single person. + fun Proprietorship : Class ; + fun Proprietorship_Class : SubClass Proprietorship CommercialAgent ; + + -- Unicellular Organisms that are capable of movement + -- and that are found in almost every part of the world. This class includes + -- amoebas, sporozoans, and paramecia. + fun Protozoa : Class ; + fun Protozoa_Class : SubClass Protozoa Microorganism ; + + -- The field of psychology. + fun Psychology : Ind SocialScience ; + + -- Any PsychologicalDysfunction which is the + -- result of an organic impairment of the NervousSystem. + fun Psychosis : Class ; + fun Psychosis_Class : SubClass Psychosis PsychologicalDysfunction ; + + -- The DevelopmentalAttribute of having functional sex + -- glands which are not fully mature. + fun Puberty : Ind DevelopmentalAttribute ; + + -- An Attorney who defends criminal cases for a + -- GovernmentOrganization. + fun PublicDefender : Class ; + fun PublicDefender_Class : SubClass PublicDefender (both Attorney GovernmentOfficer) ; + + -- A Library which is financed by taxes and which + -- is open to everyone. + fun PublicLibrary : Class ; + fun PublicLibrary_Class : SubClass PublicLibrary (both GovernmentOrganization Library) ; + + -- A Park that is publicly owned, i.e. owned by a Government. + fun PublicPark : Class ; + fun PublicPark_Class : SubClass PublicPark Park ; + + -- An Attorney who prosecutes criminal cases for + -- a GovernmentOrganization. + fun PublicProsecutor : Class ; + fun PublicProsecutor_Class : SubClass PublicProsecutor (both Attorney GovernmentOfficer) ; + + -- A School which is financed primarily by taxes. + fun PublicSchool : Class ; + fun PublicSchool_Class : SubClass PublicSchool (both GovernmentOrganization School) ; + + -- Any business whose services include the + -- Publication of Texts. + fun Publisher : Class ; + fun Publisher_Class : SubClass Publisher CommercialAgent ; + + -- Any instance of LandTransportation, where a + -- TransportationDevice is dragged by something else, whether the something + -- else is an Animal or a self_powered TransportationDevice. + fun Pulling : Class ; + fun Pulling_Class : SubClass Pulling LandTransportation ; + + -- An Artery that carries Blood from + -- the Heart to a Lung. + fun PulmonaryArtery : Class ; + fun PulmonaryArtery_Class : SubClass PulmonaryArtery Artery ; + + -- A Vein that carries Blood from the + -- Lungs to the Heart. + fun PulmonaryVein : Class ; + fun PulmonaryVein_Class : SubClass PulmonaryVein Vein ; + + -- A Device that moves Fluids by means of pressure or suction. + fun Pump : Class ; + fun Pump_Class : SubClass Pump TransportationDevice ; + + -- Any instance of Impelling where the instrument + -- is a Fist of the agent. + fun Punching : Class ; + fun Punching_Class : SubClass Punching Impelling ; + + -- A RegulatoryProcess where the agent does + -- something to the destination that the agent knows is undesirable + -- for the destination. + fun Punishing : Class ; + fun Punishing_Class : SubClass Punishing RegulatoryProcess ; + + -- A SecondaryColor that results from mixing Red and Blue. + fun Purple : Ind SecondaryColor ; + + -- Any four_sided Polygon. + fun Quadrilateral : Class ; + fun Quadrilateral_Class : SubClass Quadrilateral Polygon ; + + -- A Female Insect which is the sole member of + -- her colony with the capability to reproduce. + fun QueenInsect : Class ; + fun QueenInsect_Class : SubClass QueenInsect Insect ; + + -- An interrogative Sentence, a Sentence that + -- poses a question. + fun Question : Class ; + fun Question_Sentence : SubClassC Question Sentence (\SENTENCE -> exists Questioning (\QUESTION -> result(var Questioning Process ? QUESTION)(var Sentence Entity ? SENTENCE))); + + -- A burrowing Rodent with a short tail and long ears. + fun Rabbit : Class ; + fun Rabbit_Class : SubClass Rabbit Rodent ; + + -- A sport which involves a contest of speed between the + -- participants. Note that this covers a variety of things, including auto + -- racing, running competitions, etc. + fun Racing : Class ; + fun Racing_Class : SubClass Racing Sport ; + + -- An ElectricDevice that emits and receives microwave + -- radiation for the purpose of locating and tracking distant objects. + fun Radar : Class ; + fun Radar_Class : SubClass Radar ElectricDevice ; + + fun RadiatingInfrared_Radiating : SubClass RadiatingInfrared Radiating ; + + -- All sound waves that have frequencies + -- above those that normal Human ears can detect. + fun RadiatingSoundUltrasonic : Class ; + fun RadiatingSoundUltrasonic_Class : SubClass RadiatingSoundUltrasonic RadiatingSound ; + + -- Any case of RadiatingElectromagnetic where the + -- wavelengths are shorter than those of visible light and longer than those + -- of X_Rays. + fun RadiatingUltraviolet : Class ; + fun RadiatingUltraviolet_Class : SubClass RadiatingUltraviolet RadiatingElectromagnetic ; + + -- Any instance of RadiatingLight that can + -- be detected by normal human visual perception. + fun RadiatingVisibleLight : Class ; + fun RadiatingVisibleLight_RadiatingLight : SubClassC RadiatingVisibleLight RadiatingLight + (\R -> exists Human (\H -> + exists Seeing (\S -> and (agent (var Seeing Process ? S) + (var Human Agent ? H)) + (patient (var Seeing Process ? S) + (var RadiatingLight Entity ? R))))); + + -- Any instance of Broadcasting which is + -- intended to be received by a RadioReceiver. + fun RadioBroadcasting : Class ; + fun RadioBroadcasting_Class : SubClass RadioBroadcasting Broadcasting ; + + -- Any instance of RadiatingElectromagnetic + -- where the waves have a wavelength between 5 milimeters and 30,000 meters. + fun RadioEmission : Class ; + fun RadioEmission_Class : SubClass RadioEmission RadiatingElectromagnetic ; + + -- A RadioReceiver is a Device for receiving + -- radio broadcast signals from a RadioStation. + fun RadioReceiver : Class ; + fun RadioReceiver_Class : SubClass RadioReceiver ReceiverDevice ; + + -- A WeaponOfMassDestruction which + -- achieves its effect through radioactivity, either by an explosion resulting + -- from nuclear fission or by a conventional explosive device that scatters + -- radioactive debris. + fun RadioactiveWeapon : Class ; + fun RadioactiveWeapon_Class : SubClass RadioactiveWeapon WeaponOfMassDestruction ; + + -- Weapons which are designed to spread + -- radioactive particles over a large area by means of a conventional + -- explosive device rather than a nuclear reaction. These weapons are often + -- referred to as 'dirty bombs'. + fun RadiologicalWeapon : Class ; + fun RadiologicalWeapon_Class : SubClass RadiologicalWeapon RadioactiveWeapon ; + + -- A PlantRoot that is often used in salads. + fun Radish : Class ; + fun Radish_Class : SubClass Radish (both Food PlantRoot) ; + + -- (RadiusFn ?CIRCLE) denotes the length of the radius + -- of the Circle ?CIRCLE. + fun RadiusFn : El Circle -> Ind LengthMeasure ; + + -- RailTransportationSystem + -- is the subclass of TransitSystems whose routes are Railways. + fun RailTransportationSystem : Class ; + fun RailTransportationSystem_Class : SubClass RailTransportationSystem TransitSystem ; + + -- A Vehicle designed to move on Railways. + fun RailVehicle : Class ; + fun RailVehicle_Class : SubClass RailVehicle LandVehicle ; + + -- Any TransportationCompany whose services + -- include Transportation by Train. + fun RailroadCompany : Class ; + fun RailroadCompany_Class : SubClass RailroadCompany TransportationCompany ; + + -- Ramp is the class of SelfConnectedObjects that are + -- inclined planes used for moving objects from one level to another, + -- especially used for wheeled vehicles and people who cannot climb stairs. + fun Ramp : Class ; + fun Ramp_Class : SubClass Ramp SelfConnectedObject ; + + -- Any instance of Mating where one participant does not + -- consent. This is limited to acts between Humans. + fun Raping : Class ; + fun Raping_Class : SubClass Raping (both CriminalAction Mating) ; + + -- A Rodent that has a hairless tail like a Mouse + -- but that is larger than a Mouse. + fun Rat : Class ; + fun Rat_Class : SubClass Rat Rodent ; + + -- A subclass of Snake which derives its name + -- from the fact that it can manipulate its tail in such a way as to produce + -- a sound like that of a rattle. + fun Rattlesnake : Class ; + fun Rattlesnake_Class : SubClass Rattlesnake Snake ; + + -- Food that is not the result of Cooking. + fun RawFood : Class ; + fun RawFood_Class : SubClass RawFood Food ; + + -- Any VehicleWindow which is located at the back + -- of an Automobile. + fun RearWindow : Class ; + fun RearWindow_Class : SubClass RearWindow VehicleWindow ; + + -- An ElectricDevice that is capable of + -- receiving and decoding RadioEmissions, e.g. Radios and Televisions. + fun ReceiverDevice : Class ; + fun ReceiverDevice_Class : SubClass ReceiverDevice (both CommunicationDevice ElectricDevice) ; + + -- Any instance of Speaking where what is + -- uttered is contained within a Text. + fun Reciting : Class ; + fun Reciting_Class : SubClass Reciting Speaking ; + + -- Any Process where the experiencer recovers + -- from a DiseaseOrSyndrome. + fun RecoveringFromIllness : Class ; + fun RecoveringFromIllness_Class : SubClass RecoveringFromIllness OrganismProcess ; + + -- A Device whose purpose is RecreationOrExercise. + fun RecreationOrExerciseDevice : Class ; + fun RecreationOrExerciseDevice_Class : SubClass RecreationOrExerciseDevice Device ; + + -- Any Quadrilateral whose angles are all + -- RightAngles. + fun Rectangle : Class ; + fun Rectangle_Class : SubClass Rectangle Quadrilateral ; + + -- BloodCells that contain hemoglobin, lack a + -- CellNucleus, and carry Oxygen to the tissues of the body. + fun RedBloodCell : Class ; + fun RedBloodCell_Class : SubClass RedBloodCell BloodCell ; + + -- Any Soldier that served on the British side during + -- the American revolutionary war. RedcoatSoldier Any Soldier that served on the + -- British side during the American revolutionary war. + fun RedcoatSoldier : Class ; + fun RedcoatSoldier_Class : SubClass RedcoatSoldier Soldier ; + + -- A Book which is not intended to be read + -- from cover to cover, but which is meant to be consulted to answer specific + -- factual questions, e.g. about the meaning of a word, the location of a + -- country, etc. + fun ReferenceBook : Class ; + fun ReferenceBook_Class : SubClass ReferenceBook (both Book FactualText) ; + + -- A Text which is not intended to be read + -- from beginning to end, but which is meant to be consulted to answer specific + -- factual questions, e.g. about the meaning of a word, the location of a + -- country, etc. + fun ReferenceText : Class ; + fun ReferenceText_Class : SubClass ReferenceText FactualText ; + + -- A Substance that is the result + -- of the Distilling of Petroleum. + fun RefinedPetroleumProduct : Class ; + fun RefinedPetroleumProduct_Class : SubClass RefinedPetroleumProduct PetroleumProduct ; + + -- Any instance of Radiating where the radiated + -- waves rebound from a surface, e.g. an echo of sound or a reflection of + -- light. + fun Reflecting : Class ; + fun Reflecting_Class : SubClass Reflecting Radiating ; + + -- Those instances of RadiatingLight where the + -- instrument is not a light source, but is simply a surface which bends light + -- waves that come in contact with it. + fun ReflectingLight : Class ; + fun ReflectingLight_Class : SubClass ReflectingLight (both RadiatingLight Reflecting) ; + + -- Any Muscle reaction which is a response + -- to a specific stimulus and which does not reach the level of consciousness. + fun ReflexiveProcess : Class ; + fun ReflexiveProcess_Class : SubClass ReflexiveProcess AutonomicProcess ; + + -- The intersection of Containers and ElectricDevices + -- in which the temperature is reduced from that of the outside air by a Cooling + -- process. + fun Refrigerator : Class ; + fun Refrigerator_Class : SubClass Refrigerator (both Container (both CoolingDevice ElectricDevice)) ; + + -- Submitting official paperwork in a government + -- agency, e.g. filing for divorce, making a legal claim against someone. + fun Registering : Class ; + fun Registering_Class : SubClass Registering (both PoliticalProcess Stating) ; + + -- ExpressingDisapproval about a state of affairs + -- that has already occurred. + fun Regretting : Class ; + fun Regretting_Class : SubClass Regretting ExpressingDisapproval ; + + -- Any TherapeuticProcess that removes Pain from + -- the patient of the process. + fun RelievingPain : Class ; + fun RelievingPain_Class : SubClass RelievingPain TherapeuticProcess ; + + -- A Building which is intended to be + -- used for religious worship. This class covers churches, temples, + -- religious shrines, etc. + fun ReligiousBuilding : Class ; + fun ReligiousBuilding_Class : SubClass ReligiousBuilding Building ; + + -- A well_known leader of a religious group. + fun ReligiousFigure : Class ; + fun ReligiousFigure_Class : SubClass ReligiousFigure Celebrity ; + + -- Any Position within a ReligousOrganization. + fun ReligiousPosition : Class ; + fun ReligiousPosition_Class : SubClass ReligiousPosition Position ; + + -- A formal process of public worship which is + -- typically carried out in a church, temple or other sanctified building and + -- which typically accords with a prescribed set of rules. + fun ReligiousService : Class ; + fun ReligiousService_Class : SubClass ReligiousService (both Demonstrating ReligiousProcess) ; + + -- Any Requesting that is intended to cause a + -- Remembering of something. + fun Reminding : Class ; + fun Reminding_Class : SubClass Reminding Requesting ; + + -- Removing Clothing from a Human or + -- Animal in such a way that the Human or Animal no longer wears the + -- Clothing. + fun RemovingClothing : Class ; + fun RemovingClothing_Class : SubClass RemovingClothing Uncovering ; + + -- Giving money to the owner of an Object in + -- exchange for the right to use the Object for a fixed time period. + fun Renting : Class ; + fun Renting_Class : SubClass Renting (both Borrowing FinancialTransaction) ; + + -- A relatively brief FactualText, often it + -- describes the findings of a study or experiment, or a series of + -- observations. + fun Report : Class ; + fun Report_Class : SubClass Report (both Article FactualText) ; + + -- One of the two major political parties in + -- the UnitedStates. The RepublicanParty represents traditional, + -- conservative values. + fun RepublicanParty : Ind PoliticalParty ; + + -- A Sentence that expresses a request for something or + -- that something be done. + fun Request : Class ; + fun Request_Sentence : SubClassC Request Sentence (\SENTENCE -> exists Requesting (\REQUEST -> result (var Requesting Process ? REQUEST)(var Sentence Entity ? SENTENCE))); + + -- The Profession of being a scientific + -- researcher. + fun Researcher : Class ; + fun Researcher_Class : SubClass Researcher Profession ; + + -- (ResidentFn ?AREA) denotes the + -- GroupOfPeople who have their home in ?AREA. + fun ResidentFn : El GeopoliticalArea -> Ind GroupOfPeople ; + + -- Voluntarily ending one's employment. + fun Resigning : Class ; + fun Resigning_Class : SubClass Resigning TerminatingEmployment ; + + -- Any instance of Deciding which is conducted at a + -- FormalMeeting and where the agent is an Organization. + fun Resolution : Class ; + fun Resolution_Class : SubClass Resolution Deciding ; + + -- Any CommercialAgent whose services include selling + -- Food to customers which is intended to be eaten on the premises. + fun Restaurant : Class ; + fun Restaurant_Class : SubClass Restaurant CommercialAgent ; + + -- A Building where people pay to be served food + -- and eat. Some restaurants may also offer entertainment. + fun RestaurantBuilding : Class ; + fun RestaurantBuilding_Class : SubClass RestaurantBuilding Building ; + + -- A Store where individuals who are not + -- representing an Organization purchase items. This distinguishes + -- retail stores from wholesale establishments, where the purchasers + -- are businesses or their representatives, as well as mail order or + -- office buildings where transactions are facillitated but the consumer + -- does not take possession of the item on the premises. More succinctly, + -- the complement of WholesaleStore, i.e. + -- MercantileOrganizations that sell their goods to the general public. + fun RetailStore : Class ; + fun RetailStore_Class : SubClass RetailStore MercantileOrganization ; + + -- A membrane that covers the Eye and converts + -- the image formed by the lens of the Eye into neurochemical impulses + -- which can be processed by the Brain. + fun Retina : Class ; + fun Retina_Class : SubClass Retina (both AnimalAnatomicalStructure Organ) ; + + -- Voluntary unemployment toward the end of one's life. + fun Retired : Ind SocialRole ; + + -- Voluntarily leaving employment at the end of one's + -- career in order to take time off in the later years of one's life. + fun Retiring : Class ; + fun Retiring_Class : SubClass Retiring Resigning ; + + -- Any instance of Translocation where the agent + -- goes to a location where he/she had been before the Translocation took place. + fun Returning : Class ; + fun Returning_Class : SubClass Returning Translocation ; + + -- Moving something in such a way that its top + -- becomes its bottom and vice versa. + fun Reversing : Class ; + fun Reversing_Class : SubClass Reversing Motion ; + + -- A Pistol whose magazine is a revolving cylinder with + -- six chambers for Bullets. + fun RevolverGun : Class ; + fun RevolverGun_Class : SubClass RevolverGun Pistol ; + + -- A CerealGrain which has short and long grain varieties + -- and which is usually prepared for eating by steaming. + fun RiceGrain : Class ; + fun RiceGrain_Class : SubClass RiceGrain CerealGrain ; + + -- A Firearm with a long barrel that is intended to be fired + -- from the shoulder. + fun Rifle : Class ; + fun Rifle_Class : SubClass Rifle Firearm ; + + -- Any TwoDimensionalAngle that has the + -- angularMeasure of 90 AngularDegrees. + fun RightAngle : Class ; + fun RightAngle_Class : SubClass RightAngle TwoDimensionalAngle ; + + -- Any Triangle that contains a RightAngle. + fun RightTriangle : Class ; + fun RightTriangle_Class : SubClass RightTriangle Triangle ; + + -- Any instance of RadiatingSound which is produced by + -- a Bell. + fun Ringing : Class ; + fun Ringing_Class : SubClass Ringing RadiatingSound ; + + -- A path along which vehicles travel. It is typically, + -- although not necessarily, paved and intended for cars. + fun Road : Class ; + fun Road_Class : SubClass Road (both Region Roadway) ; + + -- RoadTransportationSystem + -- is the subclass of TransportationSystems whose routes are Roadways. + fun RoadTransportationSystem : Class ; + fun RoadTransportationSystem_Class : SubClass RoadTransportationSystem TransitSystem ; + + -- The class of LandVehicles that are not + -- RollingStock. + fun RoadVehicle : Class ; + fun RoadVehicle_Class : SubClass RoadVehicle LandVehicle ; + + -- Any instance of Stealing which involves the threat + -- of the use of force. + fun Robbing : Class ; + fun Robbing_Class : SubClass Robbing Stealing ; + + -- Rock is any naturally formed aggregate of one or more + -- minerals, consolidated or not, with some degree of mineralogic and chemical + -- constancy, in popular use the term is usually restricted to those aggregates + -- that are hard, compact, and coherent. + fun Rock : Class ; + fun Rock_Class : SubClass Rock Substance ; + + -- A Spacecraft which has the shape of a cylinder + -- with a cone on top and which is powered by a jet engine. + fun Rocket : Class ; + fun Rocket_Class : SubClass Rocket (both (both Projectile Spacecraft) Aircraft) ; + + -- An attack in which a rocket or + -- missile is used. + fun RocketMissileAttack : Class ; + fun RocketMissileAttack_Class : SubClass RocketMissileAttack Bombing ; + + -- A single rail car. Any RailVehicle that is + -- not composed of other RailVehicles. + fun RollingStock : Class ; + fun RollingStock_Class : SubClass RollingStock RailVehicle ; + + -- The top of a Building. + fun Roof : Class ; + fun Roof_Class : SubClass Roof StationaryArtifact ; + + -- A Male Chicken. + fun Rooster : Class ; + fun Rooster_Chicken : SubClassC Rooster Chicken (\R -> attribute(var Chicken Object ? R)(el SexAttribute Attribute ? Male)); + + -- Motion that begins and ends at the same point, + -- because the trajectory of the Motion is circular. + fun Rotating : Class ; + fun Rotating_Class : SubClass Rotating Motion ; + + -- Any ThreeDimensionalFigure that has a single + -- tangent at every point on its surface. + fun RoundShape : Ind ThreeDimensionalFigure ; + + -- Any instance of WaterTransportation where the + -- instrument is an Oar that is manually powered. + fun Rowing : Class ; + fun Rowing_Class : SubClass Rowing WaterTransportation ; + + -- A latex that is produced by certain species of + -- BotanticalTrees. + fun Rubber : Class ; + fun Rubber_Class : SubClass Rubber PlantSubstance ; + + -- A piece of Fabric whose purpose is to cover a Floor. + fun Rug : Class ; + fun Rug_Class : SubClass Rug Fabric ; + + -- A Slavic language that is spoken in Russia. + fun RussianLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; + + -- A Device which allows a Human to ride on a + -- Horse. + fun Saddle : Class ; + fun Saddle_Class : SubClass Saddle Holder ; + + -- A Container with a Lock which is intended + -- to secure items from theft. Note that this covers safes, lockers, and locked + -- storage compartments. + fun SafeContainer : Class ; + fun SafeContainer_Class : SubClass SafeContainer (both Container SecurityDevice) ; + + -- The class of Positions which involve working on a + -- ship, whether a merchant ship or a navy ship. + fun Sailor : Class ; + fun Sailor_Class : SubClass Sailor SkilledOccupation ; + + -- Any instance of Working that involves Selling or + -- trying to sell items. + fun Sales : Class ; + fun Sales_Class : SubClass Sales Working ; + + -- Any Position which involves Selling + -- or trying to sell items. + fun SalesPosition : Class ; + fun SalesPosition_Class : SubClass SalesPosition SkilledOccupation ; + + -- A Solution consisting of SodiumChloride and + -- Water. + fun SalineSolution : Class ; + fun SalineSolution_Class : SubClass SalineSolution Solution ; + + -- Any kind of open shoe lacking a markedly + -- thicker heel. The toe may be enclosed, but there must be some opening in the upper + -- other than the Hole through which the foot is inserted. + fun Sandal : Class ; + fun Sandal_Class : SubClass Sandal Shoe ; + + -- Any Food which consists of two or more pieces + -- of bread and some sort of filling between the two pieces of bread. + fun Sandwich : Class ; + fun Sandwich_Class : SubClass Sandwich PreparedFood ; + + -- The state of being happy about a state of + -- affairs that occurred in the past. In cases where that state of affairs + -- is the product of one's own doing, this is known as pride. + fun Satisfaction : Ind EmotionalState ; + + -- Any instance of Increasing where the PhysicalQuantity + -- involved is a CurrencyMeasure. This includes saving in a financial account + -- as well as stuffing gold bars under the matress, or a squirrel saving nuts + -- for winter. + fun Saving : Class ; + fun Saving_Class : SubClass Saving Increasing ; + + -- A federally or state chartered + -- FinancialCompany that takes Deposits from individuals, funds + -- Mortgages, and pays Dividends. + fun SavingsAndLoan : Class ; + fun SavingsAndLoan_Class : SubClass SavingsAndLoan FinancialCompany ; + + -- Any AbnormalAnatomicalStructure which results from the + -- healing of a Lesion. + fun Scar : Class ; + fun Scar_Class : SubClass Scar AbnormalAnatomicalStructure ; + + -- Any Funding which is made on the basis of merit + -- and whose purpose is to allow the destination to realize an + -- EducationalProgram. + fun Scholarship : Class ; + fun Scholarship_Class : SubClass Scholarship Funding ; + + -- An EducationalOrganization with a curriculum, + -- teachers, and students. Most Schools are housed in a Building + -- dedicated to the EducationalOrganization. + fun School : Class ; + fun School_Class : SubClass School EducationalOrganization ; + + -- Any FieldOfStudy which tests theories on the basis of + -- careful observations and/or experiments and which has a cumulative body of results. + fun Science : Class ; + fun Science_Class : SubClass Science FieldOfStudy ; + + -- A successful attempt to score a point in a Game. + fun Score : Class ; + fun Score_Class : SubClass Score GameShot ; + + -- An AttachingDevice which contains a spiral of grooves to + -- hold it in place and which is fastened with a Screwdriver. + fun Screw : Class ; + fun Screw_Class : SubClass Screw AttachingDevice ; + + -- A Device that is used to rotate + -- a Screw, which by the action of its helical threads is driven into a + -- medium that is softer than the material of the screw itself. + fun Screwdriver : Class ; + fun Screwdriver_Class : SubClass Screwdriver Device ; + + -- The collection of Characters in a particular + -- written language. Every WrittenCommunication consists of Characters + -- written in a particular script. Scripts include different typefaces, as + -- well as entirely different characters. 'Times Roman' is a very specific + -- script. While the 'latin' character set is a general one, that has + -- specific subclasses like Times Roman. Other scripts include Devanagri + -- (which may be expressed in many different more specific typefaces), or + -- Simplified Chinese. + fun Script : Class ; + fun Script_Class : SubClass Script Collection ; + + -- Any ArtWork which is not constructed on the + -- two_dimensional surface of a canvas, piece of paper, etc. + fun Sculpture : Class ; + fun Sculpture_Class : SubClass Sculpture ArtWork ; + + -- SeasonOfYear is the class of four + -- seasons correlated with the calendar Year and associated with + -- changes in the length of daylight and with overall temperature + -- changes. Depending upon the GeographicArea, a SeasonOfYear + -- may also be associated with weather patterns (e.g., rainy, dry, + -- windy). The characteristics of seasons (cold vs. hot temperatures, + -- long vs. short days) are reversed from the NorthernHemisphere + -- to the SouthernHemisphere. + fun SeasonOfYear : Class ; + fun SeasonOfYear_Class : SubClass SeasonOfYear TimeInterval ; + + -- Any instance of Furniture which is designed to + -- accommodate Humans who are Sitting. + fun Seat : Class ; + fun Seat_Class : SubClass Seat Furniture ; + + -- Guiding someone to a Seat, e.g. as when an usher + -- shows someone to a Seat in an Auditorium. + fun Seating : Class ; + fun Seating_Class : SubClass Seating Guiding ; + + -- A color that is the product of mixing together + -- two or more PrimaryColors. + fun SecondaryColor : Class ; + fun SecondaryColor_Class : SubClass SecondaryColor ColorAttribute ; + + -- A School which admits students who have + -- graduated from a middle school and which normally covers the ninth through + -- twelfth grades. A SecondarySchool confers a high school diploma. + fun SecondarySchool : Class ; + fun SecondarySchool_Class : SubClass SecondarySchool School ; + + -- The head of the UnitedStatesDepartmentOfInterior. + fun SecretaryOfTheInterior : Ind GovernmentSecretary ; + + -- The head of the United States Treasury Department. + fun SecretaryOfTheTreasury : Ind GovernmentSecretary ; + + -- A SecurityDevice that detects intrusions to + -- a StationaryArtifact and issues a warning of some sort. + fun SecurityAlarm : Class ; + fun SecurityAlarm_Class : SubClass SecurityAlarm (both ElectricDevice SecurityDevice) ; + + -- A Device whose purpose is to protect people or + -- property from kidnappers and/or thieves. + fun SecurityDevice : Class ; + fun SecurityDevice_Class : SubClass SecurityDevice Device ; + + -- The Organization that is charged with + -- ensuring the security of members of the overall Organization and the + -- property of the Organization. + fun SecurityUnit : Class ; + fun SecurityUnit_Class : SubClass SecurityUnit Organization ; + + -- Any instance of UnilateralGetting which is done by + -- a Government and which is not permitted by the origin of the UnilateralGetting. + fun SeizingProperty : Class ; + fun SeizingProperty_Class : SubClass SeizingProperty UnilateralGetting ; + + -- SelfPoweredDevice is + -- the subclass of Devices whose action is powered by some kind of on_board + -- component or power source (not the user, which would be a + -- UserPoweredVehicle). + fun SelfPoweredDevice : Class ; + fun SelfPoweredDevice_Device : SubClassC SelfPoweredDevice Device (\O -> exists Artifact (\G -> powerPlant(var Device Device ? O) (var Artifact Artifact ? G))); + + -- SelfPoweredRoadVehicle is the + -- class of RoadVehicles that are also PoweredVehicles. + -- SelfPoweredRoadVehicle covers motorcycles, semi_trailers, RVs, etc., + -- as well as Automobiles. This class includes vehicles powered by + -- electricity, gasoline, diesel, and other fuels. + fun SelfPoweredRoadVehicle : Class ; + fun SelfPoweredRoadVehicle_Class : SubClass SelfPoweredRoadVehicle (both PoweredVehicle RoadVehicle) ; + + -- Any LegalDecision where the defendant is assigned + -- a punishment for a CriminalAction which was the subject of an earlier + -- LegalConviction. + fun Sentencing : Class ; + fun Sentencing_Class : SubClass Sentencing LegalDecision ; + + -- A noncomissioned MilitaryOfficer. + fun Sergeant : Class ; + fun Sergeant_Class : SubClass Sergeant MilitaryOfficer ; + + -- A Lecture that is part of a ReligiousService. + fun Sermon : Class ; + fun Sermon_Class : SubClass Sermon Lecture ; + + -- Any LiquidBodySubstance other than Blood. + fun Serum : Class ; + fun Serum_Class : SubClass Serum LiquidBodySubstance ; + + -- An Organization that performs + -- a public service and is regulated by the Government. + fun ServiceOrganization : Class ; + fun ServiceOrganization_Class : SubClass ServiceOrganization Organization ; + + -- Any Position which involves working + -- as a waiter or servant, either for an Organization (e.g. a restaurant) + -- or for a person or family. + fun ServicePosition : Class ; + fun ServicePosition_Class : SubClass ServicePosition SkilledOccupation ; + + -- Working as a waiter or servant, either for an + -- Organization (e.g. a Restaurant) or for a person or family. + fun Serving : Class ; + fun Serving_Class : SubClass Serving Working ; + + -- A Pipline which is used to transport human + -- waste to an area where it can be treated and/or disposed of. + fun SewageSystem : Class ; + fun SewageSystem_Class : SubClass SewageSystem Pipeline ; + + -- Attaching two pieces of Fabric or one part of a + -- piece of Fabric to another part by means of needle and thread. + fun Sewing : Class ; + fun Sewing_Class : SubClass Sewing Attaching ; + + -- The subclass of ChangeOfPossession where a + -- properPart of the patient is given by the agent or the destination. + fun Sharing : Class ; + fun Sharing_Class : SubClass Sharing ChangeOfPossession ; + + -- A domesticated HoofedMammal that is bred for its + -- wool and for its meat (known as mutton). + fun Sheep : Class ; + fun Sheep_Class : SubClass Sheep (both DomesticAnimal HoofedMammal) ; + + -- An piece of Furniture or part of a piece of Furniture + -- that is used for keeping or displaying things. + fun Shelf : Class ; + fun Shelf_Class : SubClass Shelf Artifact ; + + -- A PoliceOfficer whose jurisdiction is a County. + fun Sheriff : Class ; + fun Sheriff_Class : SubClass Sheriff PoliceOfficer ; + + -- An Artifact that is held by the hand or whole arm and + -- is used to prevent injuries from Weapons. + fun Shield : Class ; + fun Shield_Class : SubClass Shield Artifact ; + + -- Ship is the class of large WaterVehicle used + -- for travel on oceans, seas, or large lakes. + fun Ship : Class ; + fun Ship_Class : SubClass Ship DisplacementHullWaterVehicle ; + + -- The class of Positions which involve the command of a ship. + fun ShipCaptain : Class ; + fun ShipCaptain_Class : SubClass ShipCaptain Sailor ; + + -- The class of Positions that involve some responsibility + -- on a ship and are lower in rank than ShipCaptain. + fun ShipMate : Class ; + fun ShipMate_Class : SubClass ShipMate Sailor ; + + -- The class of Sailors which have a position of + -- responsibility on a Ship. + fun ShipOfficer : Class ; + fun ShipOfficer_Class : SubClass ShipOfficer Sailor ; + + -- Shipping is the subclass of Transportation + -- events in which goods are transported from one place to another by an + -- agent who is entrusted with the goods temporarily just in order to move + -- them. Shipping may be done within an organization or it may be done + -- by an outside commercial agent. See CommercialShipping. + fun Shipping : Class ; + fun Shipping_Class : SubClass Shipping Transportation ; + + -- An item of Clothing which covers the upper body of a Human. + fun Shirt : Class ; + fun Shirt_Class : SubClass Shirt Clothing ; + + -- Clothing that is intended to be worn on the Foot. + -- It consists of an upper, a sole, and a heel. + fun Shoe : Class ; + fun Shoe_Class : SubClass Shoe Clothing ; + + -- The bottom part of a Shoe that is + -- intended to be the point of contact with the ground while the + -- shoe is being worn. + fun ShoeSole : Class ; + fun ShoeSole_Class : SubClass ShoeSole Artifact ; + + -- A MercantileOrganization which is a collection + -- of various shops gathered together in a single, modern development. + fun ShoppingMall : Class ; + fun ShoppingMall_Class : SubClass ShoppingMall MercantileOrganization ; + + -- A brief work of fiction, often bound with other + -- short stories in a Book or Periodical. + fun ShortStory : Class ; + fun ShortStory_Class : SubClass ShortStory (both Article FictionalText) ; + + -- Decreasing the length of something. + fun Shortening : Class ; + fun Shortening_Class : SubClass Shortening Decreasing ; + + -- A solid metal Ball that is used in the sport of shotput. + fun ShotBall : Class ; + fun ShotBall_Class : SubClass ShotBall Ball ; + + -- The part of a Primate between the Arm and the neck. + fun Shoulder : Class ; + fun Shoulder_Class : SubClass Shoulder (both AnimalAnatomicalStructure BodyPart) ; + + -- Moving the Shoulders in such a way that the motion + -- is intended to express something to someone else. + fun Shrugging : Class ; + fun Shrugging_Class : SubClass Shrugging (both BodyMotion Gesture) ; + + -- A prepared path for pedestrians alongside a Roadway. + fun Sidewalk : Class ; + fun Sidewalk_Class : SubClass Sidewalk StationaryArtifact ; + + -- Signalling is the subclass of Guiding + -- processes in which an agent, animate or inanimate, sends a signal to + -- another Object. In many cases, this signal will be an electrical or + -- electronic one. Some signals may directly control the behavior of + -- the object signalled, while others may merely cause information to be + -- presented. Instances of electrical Signalling are typically more + -- complex than simply than operation of a DeviceSwitch, though in some + -- cases, Signalling involves remote activation of such a switch by another + -- device. + fun Signalling : Class ; + fun Signalling_Class : SubClass Signalling Guiding ; + + -- Fabric that is woven from the strands produced by + -- certain Larval Insects. + fun Silk : Class ; + fun Silk_Class : SubClass Silk Fabric ; + + -- The class of Falling processes that occur in a BodyOfWater. + fun Sinking : Class ; + fun Sinking_Class : SubClass Sinking Falling ; + + -- The BodyMotion of moving from a Standing + -- to a Sitting position. + fun SittingDown : Class ; + fun SittingDown_Class : SubClass SittingDown (both BodyMotion MotionDownward) ; + + -- Any ArtWork which is produced by a pencil or + -- piece of charcoal. + fun Sketch : Class ; + fun Sketch_Class : SubClass Sketch ArtWork ; + + -- Any Position which requires + -- learning a set of skills. + fun SkilledOccupation : Class ; + fun SkilledOccupation_Class : SubClass SkilledOccupation Position ; + + -- A BodyCovering that comprises part of the surface of Animals. + fun Skin : Class ; + fun Skin_Class : SubClass Skin (both AnimalAnatomicalStructure BodyCovering) ; + + -- The Bone that is found in the Heads of Vertebrates. + fun Skull : Class ; + fun Skull_Class : SubClass Skull Bone ; + + -- A Window that is part of the Ceiling of + -- a Room. + fun Skylight : Class ; + fun Skylight_Class : SubClass Skylight Window ; + + -- A piece of Clothing that covers the Arm. A + -- Sleeve is always part of a Coat or a Shirt. + fun Sleeve : Class ; + fun Sleeve_Class : SubClass Sleeve Clothing ; + + -- Spreading the lips in such a way as to convey + -- happiness. + fun Smiling : Class ; + fun Smiling_Class : SubClass Smiling FacialExpression ; + + -- Inhaling and exhaling Smoke produced by a CigarOrCigarette. + fun Smoking : Class ; + fun Smoking_Class : SubClass Smoking RecreationOrExercise ; + + -- Any Device whose purpose is Smoking. + fun SmokingDevice : Class ; + fun SmokingDevice_Class : SubClass SmokingDevice Device ; + + -- A SmokingDevice consisting of a tube and a small bowl. + fun SmokingPipe : Class ; + fun SmokingPipe_Class : SubClass SmokingPipe SmokingDevice ; + + -- Any instance Transportation which is also a CriminalAction. + fun Smuggling : Class ; + fun Smuggling_Class : SubClass Smuggling (both CriminalAction Transportation) ; + + -- A long and narrow Reptile which lacks Limbs. + fun Snake : Class ; + fun Snake_Class : SubClass Snake Reptile ; + + -- The ConsciousnessAttribute of someone whose motor and + -- cognitive faculties are not significantly impaired by a BiologicallyActiveSubstance. + fun Sober : Ind ConsciousnessAttribute ; + + -- The process of transitioning from a state of + -- being Drunk to a state of being Sober. + fun SoberingUp : Class ; + fun SoberingUp_Class : SubClass SoberingUp PsychologicalProcess ; + + -- Any Meeting where the intent is primarily + -- to socialize and be entertained. + fun SocialParty : Class ; + fun SocialParty_Class : SubClass SocialParty (both Meeting RecreationOrExercise) ; + + -- Any Science which studies human behavior, either in + -- the aggregate, as do, for example, Economics and Linguistics, or with respect to + -- the individual, as does Psychology. + fun SocialScience : Class ; + fun SocialScience_Class : SubClass SocialScience Science ; + + -- A piece of Clothing that is made of a soft Fabric + -- like Cotton and that is intended to be worn on the Foot. + fun Sock : Class ; + fun Sock_Class : SubClass Sock Clothing ; + + -- SodiumChloride is the compound of Sodium and Chloride, + -- which may appear in crystalline form or in solution with water or other substances. + -- It is a compound found in solution in significant quantities in sea water. + fun SodiumChloride : Class ; + fun SodiumChloride_Class : SubClass SodiumChloride ChemicalSalt ; + + -- A padded Seat that is designed to accommodate more than one Human. + fun Sofa : Class ; + fun Sofa_Class : SubClass Sofa Seat ; + + -- Attaching two things by means of a MetallicAlloy. + fun Soldering : Class ; + fun Soldering_Class : SubClass Soldering Attaching ; + + -- The class of SkilledOccupations which involve serving in + -- the armed forces of a Nation. + fun Soldier : Class ; + fun Soldier_Class : SubClass Soldier SkilledOccupation ; + + -- Any BodyMotion which begins and ends in + -- a Sitting position and where the feet roll over the head and return to + -- their original position. + fun Somersaulting : Class ; + fun Somersaulting_Class : SubClass Somersaulting BodyMotion ; + + -- Something that emits and receives sound + -- for the purpose of locating and tracking distant objects. Note that + -- this covers both manmade devices and BodyParts such as the sonar + -- of bats and dolphins. + fun Sonar : Class ; + fun Sonar_Class : SubClass Sonar CorpuscularObject ; + + -- Any MusicalComposition which contains Lyrics. + fun Song : Class ; + fun Song_Class : SubClass Song MusicalComposition ; + + -- Food which is prepared by reducing Meat + -- and/or FruitOrVegetables to a translucent broth which can be used as + -- a base for soups or sauces. + fun SoupStock : Class ; + fun SoupStock_Class : SubClass SoupStock PreparedFood ; + + -- The class of all Regions which are not GeographicAreas. + fun SpaceRegion : Class ; + fun SpaceRegion_Class : SubClass SpaceRegion Region ; + + -- Any instance of Transportation where the + -- instrument is a Spacecraft and which is through a SpaceRegion. + fun SpaceTransportation : Class ; + fun SpaceTransportation_Class : SubClass SpaceTransportation Transportation ; + + -- Any Vehicle which is capable of SpaceTransportation. + fun Spacecraft : Class ; + fun Spacecraft_Class : SubClass Spacecraft Vehicle ; + + -- A Romance language that is the official language + -- of Spain, Mexico, and many Central and South American countries. + fun SpanishLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; + + -- A Weapon with a long handle and a short blade. + fun Spear : Class ; + fun Spear_Class : SubClass Spear Weapon ; + + -- The class of ThreeDimensionalFigures such that + -- all GeometricPoints that make up the Sphere are equidistant from a + -- single GeometricPoint, known as the center of the Sphere. + fun Sphere : Class ; + fun Sphere_Class : SubClass Sphere ThreeDimensionalFigure ; + + -- A cord of nerves that carries impulses to + -- and from the Brain. It is contained within the SpinalColumn. + fun SpinalCord : Class ; + fun SpinalCord_Class : SubClass SpinalCord Organ ; + + -- Any instance of Impelling where the origin is + -- the Mouth of the agent. + fun Spitting : Class ; + fun Spitting_Class : SubClass Spitting Impelling ; + + -- An Organ on the left side of the body that produces + -- Cells that play a crucial role in immune response. + fun Spleen : Class ; + fun Spleen_Class : SubClass Spleen (both AnimalAnatomicalStructure Organ) ; + + -- The BodyPosition of extending one's Legs at + -- right angles to one's Torso. + fun Splitting : Ind BodyPosition ; + + -- A GameShot which is part of a Sport and + -- which serves to start the Sport, e.g. the beginning shot in Tennis, + -- Badminton or Squash. + fun SportServe : Class ; + fun SportServe_Class : SubClass SportServe GameShot ; + + -- Any GameAttribute that is specific to + -- a Sport. + fun SportsAttribute : Class ; + fun SportsAttribute_Class : SubClass SportsAttribute GameAttribute ; + + -- A specially designated and maintained facility + -- where Sports are played. Note that this covers sports fields, stadiums, + -- and gymnasiums. + fun SportsFacility : Class ; + fun SportsFacility_Class : SubClass SportsFacility StationaryArtifact ; + + -- A specially designated and maintained area + -- where Sports are played. + fun SportsGround : Class ; + fun SportsGround_Class : SubClass SportsGround StationaryArtifact ; + + -- An Organization whose members are SportsTeams + -- and whose purpose is to set up games between its members. + fun SportsLeague : Class ; + fun SportsLeague_Class : SubClass SportsLeague Organization ; + + -- A SportsAttribute that indicates that a player in + -- a Sport can no longer compete because he has been tagged with the GamePiece. + fun SportsOut : Ind SportsAttribute ; + + -- A Plan for a Maneuver within a TeamSport. + fun SportsPlay : Class ; + fun SportsPlay_Class : SubClass SportsPlay Plan ; + + -- A Position which is filled by someone on a + -- SportsTeam and which represents the role played by the person on the team. + fun SportsPosition : Class ; + fun SportsPosition_Class : SubClass SportsPosition SkilledOccupation ; + + -- A GroupOfPeople who habitually play a Sport + -- together, either as an occupation or as a leisure activity. + fun SportsTeam : Class ; + fun SportsTeam_Class : SubClass SportsTeam GroupOfPeople ; + + -- Any instance of Transfer of a Liquid which is + -- accomplished by converting the Liquid into a mist. + fun Spraying : Class ; + fun Spraying_Class : SubClass Spraying (both LiquidMotion Transfer) ; + + -- The SeasonOfYear that begins at the spring + -- equinox and ends at the summer solstice. SpringSeason is the class of + -- TimeIntervals associated with the calendar months of March + -- through May. + fun SpringSeason : Class ; + fun SpringSeason_Class : SubClass SpringSeason SeasonOfYear ; + + -- Any Rectangle whose sides are all equal. + fun Square : Class ; + fun Square_Class : SubClass Square Rectangle ; + + -- SquareMile represents a UnitOfMeasure equal to one square Mile. + fun SquareMile : Ind UnitOfArea ; + + -- SquareYard represents a UnitOfMeasure equal to one square YardLength. + fun SquareYard : Ind UnitOfArea ; + + -- Sitting on one's heels. + fun Squatting : Ind BodyPosition ; + + -- A tree_dwelling Rodent with a bushy tail. + fun Squirrel : Class ; + fun Squirrel_Class : SubClass Squirrel Rodent ; + + -- A Wagon that is pulled by Horses and whose purpose + -- was to transport Humans and their luggage from one City to the next, especially + -- in areas which did not have an established transportation system, e.g. the old west. + fun StageCoach : Class ; + fun StageCoach_Class : SubClass StageCoach Wagon ; + + -- A StationaryArtifact which allows one to climb, step + -- by step, from one level to another. + fun Stairway : Class ; + fun Stairway_Class : SubClass Stairway StationaryArtifact ; + + -- The BodyMotion of moving from a Sitting + -- to a Standing position. + fun StandingUp : Class ; + fun StandingUp_Class : SubClass StandingUp (both BodyMotion MotionUpward) ; + + -- A complex Carbohydrate that is the main form in + -- which Carbohydrates are stored. + fun Starch : Class ; + fun Starch_Class : SubClass Starch Carbohydrate ; + + -- (StartFn ?PROCESS) denotes IntentionalProcesses + -- of bringing it about that Processes of type ?PROCESS begin, e.g. start + -- working, begin running, etc. + fun StartFn : El Process -> Desc IntentionalProcess ; + + -- Killing someone by depriving them of Food. + fun Starving : Class ; + fun Starving_Class : SubClass Starving Killing ; + + -- The class of Governments whose + -- jurisdictions are StateOrProvinces. + fun StateGovernment : Class ; + fun StateGovernment_Class : SubClass StateGovernment Government ; + + -- A Sentence that is stated to be true. + fun Statement : Class ; + fun Statement_Sentence : SubClassC Statement Sentence + (\SENTENCE -> exists Stating (\STATE -> result (var Stating Process ? STATE) + (var Sentence Entity ? SENTENCE))); + + -- Any UnilateralGetting which is not permitted by the + -- origin of the UnilateralGetting. These cases of UnilateralGetting are + -- distinguished from ones where the destination is the subject of charity or + -- other forms of benefaction. + fun Stealing : Class ; + fun Stealing_Class : SubClass Stealing (both CriminalAction UnilateralGetting) ; + + -- SteamEngine is the subclass of Engines + -- that produce mechanical power from heat and steam pressure. + fun SteamEngine : Class ; + fun SteamEngine_Class : SubClass SteamEngine Engine ; + + -- A MetallicAlloy made from Iron and other elements. + fun Steel : Class ; + fun Steel_Class : SubClass Steel MetallicAlloy ; + + -- A component of a ReligiousBuilding that is tall + -- and narrow and symbolizes the connection between humanity and a deity. + fun Steeple : Class ; + fun Steeple_Class : SubClass Steeple StationaryArtifact ; + + -- A VehicleController which enables one to steer + -- a Vehicle. + fun SteeringWheel : Class ; + fun SteeringWheel_Class : SubClass SteeringWheel VehicleController ; + + -- The BodyMotion of extending one foot forward + -- and then bringing the other foot to the same lateral position as the + -- first leg. + fun Stepping : Class ; + fun Stepping_Class : SubClass Stepping BodyMotion ; + + -- A StationaryArtifact which allows one to climb, step + -- by step, from one level to another. + fun Steps : Class ; + fun Steps_Class : SubClass Steps StationaryArtifact ; + + -- A class of OrganicCompounds having the same basic + -- chemical structure and having significant physiological effects. + fun Steroid : Class ; + fun Steroid_Class : SubClass Steroid (both BiologicallyActiveSubstance OrganicCompound) ; + + -- Any BiologicallyActiveSubstance which has + -- the effect of stimulating the central nervous system, i.e. increasing + -- function or activity in the Brain or SpinalCord. + fun Stimulant : Class ; + fun Stimulant_Class : SubClass Stimulant BiologicallyActiveSubstance ; + + -- Any instance of LiquidMotion which is also an + -- instance of Combining two or more Liquids. + fun Stirring : Class ; + fun Stirring_Class : SubClass Stirring (both Combining LiquidMotion) ; + + -- An instrument that signifies an ownership position, + -- or equity, in a Corporation, and represents a claim on its proportionate + -- share in the corporation's assets and profits. + fun Stock : Class ; + fun Stock_Class : SubClass Stock (both FinancialInstrument Investment) ; + + -- A muscular sac that is the principal organ of + -- digestion. + fun Stomach : Class ; + fun Stomach_Class : SubClass Stomach (both AnimalAnatomicalStructure Organ) ; + + -- An act where a victim or victims is attacked + -- with stones. The stones may either be placed on top of a victim in + -- order to cause death by pressure and suffocation, in which case the act + -- is typically part of a ritualized legal sentence, or where the victim + -- is pelted with stones causing injury or death by trauma. The intent + -- of such an act is usually the death of the victim. + fun Stoning : Class ; + fun Stoning_Class : SubClass Stoning ViolentContest ; + + -- (StopFn ?PROCESS) denotes IntentionalProcesses of bringing it + -- about that Processes of type ?PROCESS end, e.g. stop walking, quit working, etc. + fun StopFn : El Process -> Desc IntentionalProcess ; + + -- A Building that has the purpose of housing + -- FinancialTransactions. + fun Store : Class ; + fun Store_Class : SubClass Store Building ; + + -- Someone who operates a store which he + -- either owns or rents. + fun StoreOwner : Ind OccupationalRole ; + + -- The Region where two or more unstable air + -- masses meet. + fun StormFront : Class ; + fun StormFront_Class : SubClass StormFront AtmosphericRegion ; + + -- A HeatingDevice which consists one or more burners for + -- heating pots and pans of Food. + fun Stove : Class ; + fun Stove_Class : SubClass Stove HeatingDevice ; + + -- Any instance of Grabbing where the patient is + -- someone else's throat and the intention is to make it impossible for the other + -- person to breathe. + fun Strangling : Class ; + fun Strangling_Class : SubClass Strangling Grabbing ; + + -- (StreetAddressFn ?BUILDING ?ROAD ?CITY + -- ?COUNTRY) returns the Agent, e.g. a family, an organization, a person, + -- etc. that resides or conducts business at the corresponding address. + fun StreetAddressFn : El StationaryArtifact -> El Roadway -> El City -> El Nation -> Ind Agent ; + + -- Streetcar is the subclass of + -- ElectrifiedRailwayCars that run on tracks laid into, along, or + -- beside city Streets. + fun Streetcar : Class ; + fun Streetcar_Class : SubClass Streetcar ElectrifiedRailwayCar ; + + -- A SoundAttribute of Syllables. It denotes the quality of + -- being emphasized over the other Syllables in the same Word. + fun Stressed : Ind SoundAttribute ; + + -- Moving two sides of an object in opposite + -- directions so that the object becomes both longer and thinner. + fun Stretching : Class ; + fun Stretching_Class : SubClass Stretching (both Lengthening Motion) ; + + -- A long, thin strand of Fabric that is used for Tying + -- things together, etc. Note that this class covers a cord of any width, including + -- rope, twine, and thread, for example. + fun String : Class ; + fun String_Class : SubClass String Artifact ; + + -- A MusicalInstrument which is played by + -- striking strings, either directly as with a guitar or indirectly via keys + -- as with Pianos. + fun StringInstrument : Class ; + fun StringInstrument_Class : SubClass StringInstrument MusicalInstrument ; + + -- A person who participates in an + -- EducationalProcess in order to learn something. + fun Student : Ind SocialRole ; + + -- A WaterVehicle which is capable of travelling + -- under the water level by filling tanks with water. + fun Submarine : Class ; + fun Submarine_Class : SubClass Submarine WaterVehicle ; + + -- A subway is a hollow area of the earth, typically + -- under large cities, designed for running trains that move people. It is + -- distinguished from other kinds of tunnels in that trains run through + -- them, primarily for the purpose of carrying people rather than ore, for + -- example. + fun Subway : Class ; + fun Subway_Class : SubClass Subway Hole ; + + -- Any RailTransportationSystem that runs + -- exclusively through Tunnels. + fun SubwaySystem : Class ; + fun SubwaySystem_Class : SubClass SubwaySystem RailTransportationSystem ; + + -- Killing someone by asphyxiation, i.e. by + -- depriving them of Oxygen. + fun Suffocating : Class ; + fun Suffocating_Class : SubClass Suffocating Killing ; + + -- A simple Carbohydrate that has a sweet taste and + -- consists mostly or entirely of sucrose. + fun Sugar : Class ; + fun Sugar_Class : SubClass Sugar (both Carbohydrate PlantAgriculturalProduct) ; + + -- Any instance of Killing where the agent and + -- the experiencer are identical. + fun Suicide : Class ; + fun Suicide_Class : SubClass Suicide Killing ; + + -- A bomb attack in which the bomber + -- intends to blow himself up during the course of the attack. The bomber + -- is the delivery mechanism for the explosive and the bomb is typically + -- in close contact with the bomber, such as being strapped around his + -- torso. This action is distinguished from actions in which the bomber + -- merely happens to be blown up by his own bomb in that the bomber + -- knows that he is committing suicide. + fun SuicideBombing : Class ; + fun SuicideBombing_Class : SubClass SuicideBombing (both Bombing Killing) ; + + -- The SeasonOfYear that begins at the summer + -- solstice and ends at the autumnal equinox. + fun SummerSeason : Class ; + fun SummerSeason_Class : SubClass SummerSeason SeasonOfYear ; + + -- Any instance of RadiatingLight where the + -- Sun (Sol) is the origin. + fun Sunlight : Class ; + fun Sunlight_Class : SubClass Sunlight RadiatingLight ; + + -- The TimeInterval of each Day when the sun is rising + -- and is partially overlapped by the horizon line. + fun Sunrise : Class ; + fun Sunrise_Class : SubClass Sunrise TimeInterval ; + + -- The TimeInterval of each Day when the sun is setting + -- and is partially overlapped by the horizon line. + fun Sunset : Class ; + fun Sunset_Class : SubClass Sunset TimeInterval ; + + -- A Sentence that is assumed to be true, possibly + -- just for the sake of argument. + fun Supposition : Class ; + fun Supposition_Sentence : SubClassC Supposition Sentence + (\SENTENCE -> exists Supposing (\SUPPOSE -> result (var Supposing Process ? SUPPOSE) + (var Sentence Entity ? SENTENCE))); + + -- Surfactants, also known as Wetting agents, + -- lower the surface tension of a Liquid, allowing easier spreading. The + -- term surfactant is a compression of 'Surface active agent'. Surfactants + -- are usually organic compounds that contain both hydrophobic and + -- hydrophilic groups, and are thus semi_soluble in both organic and aqueous + -- solvents. + fun Surfactant : Class ; + fun Surfactant_Class : SubClass Surfactant Substance ; + + -- The Profession of being a surgeon, i.e. being a + -- medical doctor who specializes in performing surgical operations. + fun Surgeon : Class ; + fun Surgeon_Class : SubClass Surgeon MedicalDoctor ; + + -- The EmotionalState that one experiences when something + -- unexpected and of significance occurs. + fun Surprise : Ind EmotionalState ; + + -- An AnimalSubstance that contains SodiumChloride + -- and is produced by the sweat glands. + fun Sweat : Class ; + fun Sweat_Class : SubClass Sweat AnimalSubstance ; + + -- Removing small particles from the floor by means of + -- a Broom. + fun Sweeping : Class ; + fun Sweeping_Class : SubClass Sweeping Removing ; + + -- A FluidContainer that is filled with Water + -- and that is used for Swimming. + fun SwimmingPool : Class ; + fun SwimmingPool_Class : SubClass SwimmingPool (both FluidContainer StationaryArtifact) ; + + -- An EngineeringComponent which is capable of turning + -- an ElectricDevice on and off. + fun SwitchDevice : Class ; + fun SwitchDevice_Class : SubClass SwitchDevice EngineeringComponent ; + + -- A Weapon with a long blade and covered + -- handle. + fun Sword : Class ; + fun Sword_Class : SubClass Sword Weapon ; + + -- A sequence of Characters from the same Word + -- that denote a single sound. + fun Syllable : Class ; + fun Syllable_Class : SubClass Syllable SymbolicString ; + + -- A ShapeAttribute that applies to a + -- SelfConnectedObject that can be divided into two copies of each other. + fun SymmetricShape : Ind ShapeAttribute ; + + -- A piece of Furniture with four legs and a flat top. + -- It is used either for eating, paperwork or meetings. + fun Table : Class ; + fun Table_Class : SubClass Table Furniture ; + + -- Devices that are used in Ingesting (Eating + -- and/or Drinking) a meal. This coves dishware, flatware, and glassware. + fun Tableware : Class ; + fun Tableware_Class : SubClass Tableware Device ; + + -- A BodyPart which extends from the rear of the + -- main body of some Vertebrates. + fun Tail : Class ; + fun Tail_Class : SubClass Tail AnimalAnatomicalStructure ; + + -- Any VehicleLight which is attached to the back + -- of a Vehicle. + fun Taillight : Class ; + fun Taillight_Class : SubClass Taillight VehicleLight ; + + -- Any Process where the experiencer contracts a + -- DiseaseOrSyndrome. + fun TakingIll : Class ; + fun TakingIll_Class : SubClass TakingIll PathologicProcess ; + + -- Any instance of Translocation which starts on something other + -- than an AtmosphericRegion and which has an instance of Flying as a subProcess. + fun TakingOff : Class ; + fun TakingOff_Class : SubClass TakingOff Translocation ; + + -- A thin strip of Fabric or Paper that is used to attach + -- two things. + fun Tape : Class ; + fun Tape_Class : SubClass Tape AttachingDevice ; + + -- A Restaurant whose primary service is selling + -- AlcoholicBeverages to customers. + fun Tavern : Class ; + fun Tavern_Class : SubClass Tavern Restaurant ; + + -- A fee charged by a government on a product, income, or activity. + fun Tax : Class ; + fun Tax_Class : SubClass Tax ChargingAFee ; + + -- A FormText that is used for calculating the amount + -- of income tax owed in a given year. + fun TaxReturn : Class ; + fun TaxReturn_Class : SubClass TaxReturn FormText ; + + -- An Automobile which is used to transport people + -- on short trips in exchange for a fare. + fun Taxicab : Class ; + fun Taxicab_Class : SubClass Taxicab Automobile ; + + -- A Taxonomy is a ClassificationScheme + -- that typically includes the salient concepts of a domain of + -- interest, plus, minimally, a binary `broader than'/`narrower + -- than' relation by which the concepts are linked. The `broader + -- than'/`narrower than' relation is usually conceived as set_ or + -- class_based subsumption, but taxonomies are notorious for + -- conflating the set membership and set subsumption (i.e., + -- subset/superset) relations into a single `IS_A' relation. Some + -- taxonomies include additional binary relations, such as + -- `subpart'/`superpart'. + fun Taxonomy : Class ; + fun Taxonomy_Class : SubClass Taxonomy ClassificationScheme ; + + -- A Beverage which is prepared by infusing tea leaves + -- into hot water. + fun Tea : Class ; + fun Tea_Class : SubClass Tea (both Beverage PreparedFood) ; + + -- The Profession of being a teacher. + fun Teacher : Ind Profession ; + + -- Any Sport which is played by SportsTeams, e.g. + -- Baseball and Football. + fun TeamSport : Class ; + fun TeamSport_Class : SubClass TeamSport Sport ; + + -- The class of SalineSolutions produced by + -- the lacrimal glands of the Eyes. + fun TearSubstance : Class ; + fun TearSubstance_Class : SubClass TearSubstance (both LiquidBodySubstance SalineSolution) ; + + -- A HumanYouth between puberty and the age of 20. + fun Teenager : Class ; + fun Teenager_Class : SubClass Teenager HumanYouth ; + + -- A Device that permits LinguisticCommunication + -- between remote points by means of a code of aural dots and dashes that can + -- be converted into letters of an alphabet. + fun Telegraph : Class ; + fun Telegraph_Class : SubClass Telegraph (both CommunicationDevice ElectricDevice) ; + + -- A Device that permits LinguisticCommunication + -- between remote points by converting sound into electrical signals that are + -- then transmitted. When the signals are received, they are converted back + -- into sound. + fun Telephone : Class ; + fun Telephone_Class : SubClass Telephone (both CommunicationDevice ElectricDevice) ; + + -- A WireLine that carries telephone signals and + -- allows users of Telephones or Telegraphs to communicate with one another. + fun TelephoneLine : Class ; + fun TelephoneLine_Class : SubClass TelephoneLine WireLine ; + + -- Any instance of Speaking where the + -- instrument of Communication is a Telephone. + fun Telephoning : Class ; + fun Telephoning_Class : SubClass Telephoning Speaking ; + + -- Any instance of Broadcasting which + -- is intended to be received by a Television. + fun TelevisionBroadcasting : Class ; + fun TelevisionBroadcasting_Class : SubClass TelevisionBroadcasting Broadcasting ; + + -- A TelevisionReceiver is a Device for + -- receiving television broadcast signals from a TelevisionStation. TelevisionReceiver A TelevisionReceiver is a Device for receiving + -- television broadcast signals from a TelevisionStation or signals + -- transmitted through a cable from a CableTelevisionSystem. + fun TelevisionReceiver : Class ; + fun TelevisionReceiver_Class : SubClass TelevisionReceiver (both ReceiverDevice EngineeringComponent) ; + + -- Any Stating which is both False and believed + -- to be False by the agent of the Stating. + fun TellingALie : Class ; + fun TellingALie_Class : SubClass TellingALie Stating ; + + -- Tissue that connects Muscle to Bone. + fun Tendon : Class ; + fun Tendon_Class : SubClass Tendon (both AnimalSubstance Tissue) ; + + -- A MobileResidence that is made of Fabric and poles and + -- can be easily assembled and disassembled. + fun Tent : Class ; + fun Tent_Class : SubClass Tent MobileResidence ; + + -- A group that uses violent means in an + -- attempt to bring about their political aims. Those violent means are + -- distinguished from a war between nations, or a civil war in that the group + -- is at least partially clandestine and a significant proportion of its acts + -- are against non_military targets. + fun TerroristOrganization : Class ; + fun TerroristOrganization_Class : SubClass TerroristOrganization PoliticalOrganization ; + + -- A FormText which is intended to measure some aspect + -- of the cognitive capabilities, e.g. intelligence or knowledge of a domain, + -- of the person taking the test. + fun TestForm : Class ; + fun TestForm_Class : SubClass TestForm (both FormText MeasuringDevice) ; + + -- A Certificate that describes how a person's + -- property is to be distributed after the death of the person. + fun Testament : Class ; + fun Testament_Class : SubClass Testament Certificate ; + + -- Giving testimony as part of a JudicialProcess. + fun Testifying : Class ; + fun Testifying_Class : SubClass Testifying Stating ; + + -- Any ExpressingApproval to a person for something + -- that the person did in the past and that is regarded as being to the thanker's + -- benefit. + fun Thanking : Class ; + fun Thanking_Class : SubClass Thanking ExpressingApproval ; + + -- Often know as the stage, the + -- Position of performing live plays. + fun TheaterProfession : Class ; + fun TheaterProfession_Class : SubClass TheaterProfession EntertainmentProfession ; + + -- The systematic study of religious practice and religious truth. + fun Theology : Ind FieldOfStudy ; + + -- Any Device that measures and represents + -- TemperatureMeasure. + fun Thermometer : Class ; + fun Thermometer_Class : SubClass Thermometer MeasuringDevice ; + + -- Any Committing where the thing promised + -- is something that is deemed undesirable by the destination of the + -- Committing. + fun Threatening : Class ; + fun Threatening_Class : SubClass Threatening Committing ; + + -- A BodyVessel which connects the Mouth to the + -- lungs and stomach. + fun Throat : Class ; + fun Throat_Class : SubClass Throat (both AnimalAnatomicalStructure BodyVessel) ; + + -- Any instance of Impelling where the instrument is + -- an Arm. + fun Throwing : Class ; + fun Throwing_Class : SubClass Throwing (both BodyMotion Impelling) ; + + -- The thick, short Finger of each Hand. + fun Thumb : Class ; + fun Thumb_Class : SubClass Thumb Finger ; + + -- Any instance of RadiatingSound which is caused by + -- an instance of Lightning. + fun Thunder : Class ; + fun Thunder_Class : SubClass Thunder (both RadiatingSound WeatherProcess) ; + + -- A Gland in the neck that produces HormoneTSH, + -- which regulates body weight, metabolic rate, etc. + fun ThyroidGland : Class ; + fun ThyroidGland_Class : SubClass ThyroidGland Gland ; + + -- A Hormone secreted by the ThyroidGland. + fun ThyroidHormone : Class ; + fun ThyroidHormone_Class : SubClass ThyroidHormone Hormone ; + + -- A Certificate that allows the holder to perform + -- a specified act once, e.g. ride a bus, attend a concert, obtain a prize, + -- etc. + fun Ticket : Class ; + fun Ticket_Class : SubClass Ticket Certificate ; + + -- Clothing that is intended to be worn around the + -- Neck and knotted at the front. + fun TieClothing : Class ; + fun TieClothing_Class : SubClass TieClothing Clothing ; + + -- The ContestAttribute that applies to all contestParticipants + -- in a Contest when none of them have Won or Lost the Contest. + fun TieScore : Ind ContestAttribute ; + + -- Any Process of Digging, e.g. breaking and + -- turning over Soil that facilitates Agriculture. + fun Tilling : Class ; + fun Tilling_Class : SubClass Tilling (both Digging (both IntentionalProcess SurfaceChange)) ; + + -- An Amphibian that lacks a Tail and lives at least + -- partially outside of water. + fun Toad : Class ; + fun Toad_Class : SubClass Toad Amphibian ; + + -- A FloweringPlant containing nicotine whose leaves + -- are dried and then smoked or ingested. + fun Tobacco : Class ; + fun Tobacco_Class : SubClass Tobacco (both FloweringPlant PlantAgriculturalProduct) ; + + -- The five extremities of a Foot. + fun Toe : Class ; + fun Toe_Class : SubClass Toe (both AnimalAnatomicalStructure (both BodyPart DigitAppendage)) ; + + -- A Device for the disposal of wastes resulting from + -- urination and defecation. + fun Toilet : Class ; + fun Toilet_Class : SubClass Toilet Device ; + + -- A StationaryArtifact which is meant to contain someone who is Dead. + fun Tomb : Class ; + fun Tomb_Class : SubClass Tomb StationaryArtifact ; + + -- English mass unit that is equal to 2000 pounds. + fun TonMass : Ind UnitOfMass ; + + -- Any SpokenHumanLanguage that uses pitch to + -- differentiate otherwise identical words, e.g. Chinese. + fun TonalLanguage : Class ; + fun TonalLanguage_Class : SubClass TonalLanguage SpokenHumanLanguage ; + + -- Part of the Mouth, used for Tasting Food, + -- Vocalizing, and the initial stage of Digesting. + fun Tongue : Class ; + fun Tongue_Class : SubClass Tongue (both AnimalAnatomicalStructure BodyPart) ; + + -- Part of the Mouth, used for biting and chewing. + fun Tooth : Class ; + fun Tooth_Class : SubClass Tooth Bone ; + + -- A small BrushOrComb with relatively soft + -- bristles and a long handle, used for brushing teeth (see Tooth). It is + -- used help control bacteria living in the mouth. While most typically used + -- by humans on themselves, it can be used by Dentists on their + -- patients and by adults assisting children. They are occasionally used by + -- humans caring for pets, zoo animals and valuable livestock. + fun Toothbrush : Class ; + fun Toothbrush_Class : SubClass Toothbrush BrushOrComb ; + + -- The body of a Primate excluding its Limbs. + fun Torso : Class ; + fun Torso_Class : SubClass Torso (both AnimalAnatomicalStructure BodyPart) ; + + -- A tourist is a person who is travelling to a + -- place primarily for reasons of entertainment or education, rather than + -- business, although business transaction may take place during the trip. + fun Tourist : Ind SocialRole ; + + -- A tourist site is a location that has some + -- feature of interest to Tourists, which entertains or informs them. + fun TouristSite : Class ; + fun TouristSite_Class : SubClass TouristSite GeographicArea ; + + -- A piece of Fabric which is used for Drying. + fun Towel : Class ; + fun Towel_Class : SubClass Towel Fabric ; + + -- Any ContentDevelopment that results in a Blueprint. + fun Tracing : Class ; + fun Tracing_Class : SubClass Tracing (both ContentDevelopment SurfaceChange) ; + + -- TractorTrailer is the subclass of + -- RoadVehicles that are truck tractor_ truck trailer combinations. + fun TractorTrailer : Class ; + fun TractorTrailer_Class : SubClass TractorTrailer RoadVehicle ; + + -- The state of being free from Anxiety. + fun Tranquility : Ind EmotionalState ; + + -- A Device which is capable of converting one + -- form of energy into another. Formally, a Twoport that neither stores + -- nor dissipates, but only transfers energy between its two ports. + fun Transducer : Class ; + fun Transducer_Class : SubClass Transducer Device ; + + -- Any process within an Organization + -- where a person is moved from one Position to another, e.g. the promotion + -- or demotion of an employee. + fun TransferringPosition : Class ; + fun TransferringPosition_Class : SubClass TransferringPosition OrganizationalProcess ; + + -- A TransitSystem is a system of + -- interconnected Transitways over which some type(s) of vehicles or + -- travellers may pass. In addition to Transitways, TransitSystems + -- may also include TransitJunctions and TransitTerminals. Transit + -- systems may be demarcated by where they are located (e.g., the rail + -- system of Afghanistan), who owns or manages them (e.g., American + -- Airlines TransitSystem of AirRoutes, or state highways managed by + -- TexDOT), or the type of vehicles or travellers accommodated (e.g., + -- the system of Santa Clara county bike trails. + fun TransitSystem : Class ; + fun TransitSystem_Class : SubClass TransitSystem PhysicalSystem ; + + -- A Transparent material is one through which + -- it is possible to have Seeing. + fun Transparent : Ind InternalAttribute ; + + -- TransportViaRoadVehicle is the class of Transportation + -- events in which the instrument is an instance of + -- RoadVehicle. + fun TransportViaRoadVehicle : Class ; + fun TransportViaRoadVehicle_Class : SubClass TransportViaRoadVehicle LandTransportation ; + fun TransportViaRoadVehicle_Transportation : SubClassC TransportViaRoadVehicle Transportation (\TRANSPORT -> exists RoadVehicle (\VEHICLE -> instrument(var Transportation Process ? TRANSPORT)(var RoadVehicle Object ? VEHICLE))); + + -- A CommercialAgent whose services include Transportation, + -- e.g. a RailroadCompany, an airline, a cruise ship line, etc. + fun TransportationCompany : Class ; + fun TransportationCompany_Class : SubClass TransportationCompany CommercialAgent ; + + -- A Device whose purpose is to trap or cage Animals, + -- i.e. to be in instrument in an act of Confining. + fun TrapOrCage : Class ; + fun TrapOrCage_Class : SubClass TrapOrCage Holder ; + + -- Any Container which is intended to be + -- used for carrying clothing, toiletries, and other personal effects that + -- would be needed on a overnight trip. + fun TravelContainer : Class ; + fun TravelContainer_Class : SubClass TravelContainer Container ; + + -- A Holder that is designed for Food, dishes, and + -- flatware. + fun Tray : Class ; + fun Tray_Class : SubClass Tray Holder ; + + -- Any SkilledOccupation which involves receiving + -- and disbursing money. + fun Treasurer : Class ; + fun Treasurer_Class : SubClass Treasurer SkilledOccupation ; + + -- Any Contract which holds between two or more Nations. + fun Treaty : Ind DeonticAttribute ; + + -- Any PlantBranch which is part of a BotanicalTree. + fun TreeBranch : Class ; + fun TreeBranch_Class : SubClass TreeBranch PlantBranch ; + + -- Any BodyMotion which is involuntary and which is + -- repeated many times over a short time frame, e.g. a tremor in the hands, + -- shivering etc. + fun Trembling : Class ; + fun Trembling_Class : SubClass Trembling (both AutonomicProcess (both BodyMotion Tremor)) ; + + -- Motion that involves rapidly Rotating between two positions. + fun Tremor : Class ; + fun Tremor_Class : SubClass Tremor Rotating ; + + -- Entering property that does not belong to one and without + -- the permission of the owner of the property. + fun Trespassing : Class ; + fun Trespassing_Class : SubClass Trespassing (both CriminalAction Translocation) ; + + -- Any three_sided Polygon. + fun Triangle : Class ; + fun Triangle_Class : SubClass Triangle Polygon ; + + -- A piece of Clothing that covers each Leg of a person separately. + fun Trousers : Class ; + fun Trousers_Class : SubClass Trousers Clothing ; + + -- Any Vehicle that is intended to carry substantial + -- amounts of cargo, in addition to passengers. This includes 18_wheelers, + -- pickup trucks, tanker trucks etc. Consumer vehicles with trunks or enclosed + -- rear areas that can carry cargo are not defined as trucks. Truck is the subclass of RoadVehicles that + -- are designed primarily for transporting various kinds of non_passenger + -- loads. Truck is the class of single_bodied trucks or TruckTractors. + -- Note: TractorTrailer combinations are a distinct class. Truck an automotive vehicle suitable for hauling + fun Truck : Class ; + fun Truck_Class : SubClass Truck (both CargoVehicle SelfPoweredRoadVehicle) ; + + -- TruckTractor is the subclass of Trucks that are used to tow truck trailers. + -- Truck tractors are the cab portions of tractor_trailers. See also TruckTrailer. + fun TruckTractor : Class ; + fun TruckTractor_Class : SubClass TruckTractor Truck ; + + -- TruckTrailer is the subclass of Wagons + -- that are towed by TruckTractors. These are the trailers used in + -- tractor_trailer (semi_trailer) rigs. + fun TruckTrailer : Class ; + fun TruckTrailer_Class : SubClass TruckTrailer Wagon ; + + -- A long, narrow, and hollow Artifact that is designed for + -- moving Fluids from place to another. + fun Tube : Class ; + fun Tube_Class : SubClass Tube Artifact ; + + -- A BacterialDisease caused by the Tubercle Bacillus + -- that results in lesions on various body parts, especially the Lungs. Tuberculosis A disease that usually infects the lungs and causes severe + -- coughing. In some cases it will result in hemorrhage of the lungs. + fun Tuberculosis : Ind BacterialDisease ; + + -- Any AbnormalAnatomicalStructure which consists of a + -- mass of Tissue. Note that this class covers both malignant (i.e. cancerous) + -- and benign tumors. + fun Tumor : Class ; + fun Tumor_Class : SubClass Tumor AbnormalAnatomicalStructure ; + + -- An Engine which converts the kinetic energy of a moving + -- Liquid (typically Water) into mechanical energy. + fun Turbine : Class ; + fun Turbine_Class : SubClass Turbine Engine ; + + -- Any Process whose result is that the patient + -- of the process is in the state of DeviceOff. In other words, this class covers + -- any process of turning off a device, e.g. turning off the lights, switching off a + -- television set, etc. + fun TurningOffDevice : Class ; + fun TurningOffDevice_Class : SubClass TurningOffDevice InternalChange ; + + -- Any Process whose result is that the patient + -- of the process is in the state of DeviceOn. In other words, this class covers + -- any process of turning on a device, e.g. turning on the lights, switching on a + -- television set, etc. + fun TurningOnDevice : Class ; + fun TurningOnDevice_Class : SubClass TurningOnDevice InternalChange ; + + -- A real_world physical object + -- with a very flat aspect. This includes drawings on paper, cave + -- paintings and other surface alterations. + fun TwoDimensionalObject : Class ; + fun TwoDimensionalObject_Class : SubClass TwoDimensionalObject Object ; + + -- The Process of tying two things, or two strands of + -- the same thing, together. + fun Tying : Class ; + fun Tying_Class : SubClass Tying Attaching ; + + -- An Attribute which indicates that the + -- associated Object cannot be broken under normal usage conditions. + fun Unbreakable : Ind BreakabilityAttribute ; + + -- The state of being unhappy, experiencing pain, + -- sorrow or unease. + fun Unhappiness : Ind EmotionalState ; + + -- An Organization comprised of workers from + -- the same Corporation or Industry. The purpose of the UnionOrganization + -- is to strengthen its representation in bargaining with the Corporation or + -- Industry. + fun UnionOrganization : Class ; + fun UnionOrganization_Class : SubClass UnionOrganization Organization ; + + -- Any Soldier that served on the union side during + -- the American Civil War. UnionSoldier Any Soldier that served on the union + -- side during the American Civil War. + fun UnionSoldier : Class ; + fun UnionSoldier_Class : SubClass UnionSoldier Soldier ; + + -- The states of the UnitedStates that the + -- ConfederateStatesOfAmerica seceded from. + fun UnionStatesOfAmerica : Ind GeopoliticalArea ; + + -- The legislative branch of the government + -- of the UnitedStates. + fun UnitedStatesCongress : Ind LegislativeOrganization ; + + -- Manages and preserves public lands and natural resources in the UnitedStates. + fun UnitedStatesDepartmentOfInterior : Ind GovernmentOrganization ; + + -- The subOrganization of the US government that sets and enforces foreign policy. + fun UnitedStatesDepartmentOfState : Ind GovernmentOrganization ; + + -- A School which admits students that + -- have graduated from high school (known as undergraduate students) and + -- students who have received a bachelor's degree (known as graduate + -- students). A University confers both bachelor's and graduate + -- degrees. + fun University : Class ; + fun University_Class : SubClass University PostSecondarySchool ; + + -- Any Position which does not + -- require learning a set of skills. + fun UnskilledOccupation : Class ; + fun UnskilledOccupation_Class : SubClass UnskilledOccupation ManualLabor ; + + -- The Process of untying two things, or two strands + -- of the same thing. + fun Untying : Class ; + fun Untying_Class : SubClass Untying Detaching ; + + -- A PositionalAttribute to indicate that one thing is + -- one or more floors above a second thing in the same building. + fun Upstairs : Ind PositionalAttribute ; + + -- Urea is a dry, soluble, nitrogenous substance + -- that is the major solid component of the urine of mammals, and which + -- may be synthesized from ammonia and carbon dioxide, it is useful in the + -- production of Plastic and in Fertilizers. + fun Urea : Class ; + fun Urea_Class : SubClass Urea OrganicCompound ; + + -- Taking time off from Working. + fun Vacationing : Class ; + fun Vacationing_Class : SubClass Vacationing RecreationOrExercise ; + + -- An event where the objective of the agent + -- is to damage or destroy some property of another agent. This is + -- distinguished from acts where the prime objective is damage or loss + -- of life of another agent. + fun Vandalism : Class ; + fun Vandalism_Class : SubClass Vandalism Destruction ; + + -- An event in which a vehicle is used by an agent in order to inflict + -- injury, death or damage to people or property. + fun VehicleAttack : Class ; + fun VehicleAttack_Class : SubClass VehicleAttack ViolentContest ; + + -- A VehicleController which is capable of stopping the motion of a Vehicle. + fun VehicleBrake : Class ; + fun VehicleBrake_Class : SubClass VehicleBrake VehicleController ; + + -- Any Device which is used to start, stop or + -- control the movements of a Vehicle. This class covers steering wheels, brakes, + -- acceleration pedals, airplane sticks, etc. + fun VehicleController : Class ; + fun VehicleController_Class : SubClass VehicleController Device ; + + -- Any LightFixture which is attached to the + -- surface of a Vehicle and whose purpose is to illuminate that area around + -- the Vehicle so that potential obstacles can be detected or alerted. + fun VehicleLight : Class ; + fun VehicleLight_Class : SubClass VehicleLight LightFixture ; + + -- A VehicleController which controls the amount + -- of Fuel which is supplied to the Engine. + fun VehicleThrottle : Class ; + fun VehicleThrottle_Class : SubClass VehicleThrottle VehicleController ; + + -- A covering, usually made of rubber, for a Wheel. + fun VehicleTire : Class ; + fun VehicleTire_Class : SubClass VehicleTire Artifact ; + + -- VehicleWheel is a class of cylindrical + -- Devices used to move a RoadVehicle along a road, running either + -- directly on the wheel rims or on tires attached to the wheel rims. + fun VehicleWheel : Class ; + fun VehicleWheel_Class : SubClass VehicleWheel Wheel ; + + -- Any Window which is part of a Vehicle, + -- e.g. the Windshield and RearWindow of an Automobile. + fun VehicleWindow : Class ; + fun VehicleWindow_Class : SubClass VehicleWindow Window ; + + -- A piece of Clothing intended to cover or + -- obscure the face or hair of a Woman. This is commonly worn for + -- religious reasons when in public in Muslim countries, but is also customary + -- at Weddings and Funerals among some non_Muslim women. + fun Veil : Class ; + fun Veil_Class : SubClass Veil Clothing ; + + -- Any BloodVessel which transfers Blood from + -- the extremities of the body to the Heart. + fun Vein : Class ; + fun Vein_Class : SubClass Vein BloodVessel ; + + -- A Device which is capable of Selling a Product to a customer + -- automatically when the customer inserts the appropriate amount of Currency. + fun VendingDevice : Class ; + fun VendingDevice_Class : SubClass VendingDevice Device ; + + -- The Attribute that applies to someone who was a + -- Soldier at one time, but is not currently a Soldier. + fun Veteran : Ind SocialRole ; + + -- A representation of video on some medium such + -- as film, videotape or DVD. Instances of this class are also commonly + -- instances of AudioRecording. + fun VideoRecording : Class ; + fun VideoRecording_Class : SubClass VideoRecording ContentBearingObject ; + + -- A StringInstrument that has four strings, a hollow + -- body, and is played on the shoulder with a bow. + fun Violin : Class ; + fun Violin_Class : SubClass Violin StringInstrument ; + + -- A disease that is caused by instances of + -- Virus. + fun ViralDisease : Class ; + fun ViralDisease_Class : SubClass ViralDisease InfectiousDisease ; + + -- Music which is produced (at least in part) + -- by Singing. + fun VocalMusic : Class ; + fun VocalMusic_Class : SubClass VocalMusic Music ; + + -- Any School whose aim is to teach + -- students an OccupationalTrade. + fun VocationalSchool : Class ; + fun VocationalSchool_Class : SubClass VocationalSchool School ; + + -- A structure where Voting for an Election + -- takes place. + fun VotingPoll : Class ; + fun VotingPoll_Class : SubClass VotingPoll StationaryArtifact ; + + -- An AlphabeticCharacter that denotes a speech sound that + -- does not result in audible friction when it is pronounced. + fun Vowel : Class ; + fun Vowel_Class : SubClass Vowel AlphabeticCharacter ; + + -- A diurnal bird of prey with a bald head that + -- feeds on carrion. + fun Vulture : Class ; + fun Vulture_Class : SubClass Vulture Bird ; + + -- Any instance of Walking which occurs through a + -- BodyOfWater. + fun Wading : Class ; + fun Wading_Class : SubClass Wading Walking ; + + -- A Landcraft that is not self_propelled, but must be + -- pulled by either an Animal or a self_propelled Vehicle to move along the + -- ground. + fun Wagon : Class ; + fun Wagon_Class : SubClass Wagon LandVehicle ; + + -- The process of transitioning from a state of being + -- Asleep to a state of being Awake. + fun WakingUp : Class ; + fun WakingUp_Class : SubClass WakingUp PsychologicalProcess ; + + -- A Device which has the form of a staff with + -- a handle and which enables some people to walk with greater assurance. + fun WalkingCane : Class ; + fun WalkingCane_Class : SubClass WalkingCane Device ; + + -- A StationaryArtifact that supports a Building or + -- partitions it into Rooms. + fun Wall : Class ; + fun Wall_Class : SubClass Wall StationaryArtifact ; + + -- Any decorative paper that is used to cover the + -- Walls of Rooms. + fun Wallpaper : Class ; + fun Wallpaper_Class : SubClass Wallpaper ArtWork ; + + -- A very large CommercialBuilding whose purpose is + -- to store commodities. + fun Warehouse : Class ; + fun Warehouse_Class : SubClass Warehouse CommercialBuilding ; + + -- A WashingDevice which is intended to be used by + -- Humans for washing their Hands. + fun WashBasin : Class ; + fun WashBasin_Class : SubClass WashBasin WashingDevice ; + + -- Removing small particles from something by means of + -- a Detergent and Water. + fun Washing : Class ; + fun Washing_Class : SubClass Washing Removing ; + + -- Any Device whose purpose is Washing + -- something, e.g. washing machines, dishwashers, bathtubs, etc. + fun WashingDevice : Class ; + fun WashingDevice_Class : SubClass WashingDevice Device ; + + -- A Container which is used for trash. + fun Wastebasket : Class ; + fun Wastebasket_Class : SubClass Wastebasket Container ; + + -- A Clock that can be worn on the Wrist. + fun WatchClock : Class ; + fun WatchClock_Clock : SubClassC WatchClock Clock + (\C -> exists Human (\P -> exists Wrist (\W -> and (wears (var Human Animal ? P) + (var Clock Clothing ? C)) + (located (var Clock Physical ? C) + (var Wrist Object ? W))))); + + -- Any instance of Transportation where the instrument is a WaterVehicle. + fun WaterTransportation : Class ; + fun WaterTransportation_Class : SubClass WaterTransportation Transportation ; + + -- WaterVehicle is the class of all TransportationDevices used to travel on or in water. + fun WaterVehicle : Class ; + fun WaterVehicle_Class : SubClass WaterVehicle Vehicle ; + + -- A WaterWave is a raised ridge of water + -- moving along the surface of a body of water. The WaterWave moves + -- in a direction approximately transverse to the crest line of the wave. + -- The patient of the WaterWave is successive regions of water, which + -- do not travel in the direction of the wave or with it. + fun WaterWave : Class ; + fun WaterWave_Class : SubClass WaterWave LiquidMotion ; + + -- Any Paint which is a water_based Solution. + fun WatercolorPaint : Class ; + fun WatercolorPaint_Class : SubClass WatercolorPaint Paint ; + + -- Any PaintedPicture which is created + -- with water_based paints. + fun WatercolorPicture : Class ; + fun WatercolorPicture_Class : SubClass WatercolorPicture PaintedPicture ; + + -- Moving a Hand to indicate a greeting, farewell, + -- recognition, goodwill, etc. + fun Waving : Class ; + fun Waving_Class : SubClass Waving HandGesture ; + + -- Any Substance of high molecular weight that resembles + -- beeswax. + fun Wax : Class ; + fun Wax_Class : SubClass Wax Substance ; + + -- Nuclear, chemical and biological weapons. + -- What these weapons have in common is that they are designed to kill large numbers + -- of people indiscriminately. + fun WeaponOfMassDestruction : Class ; + fun WeaponOfMassDestruction_Class : SubClass WeaponOfMassDestruction Weapon ; + + -- Any Saturday and Sunday which are contiguous. + fun Weekend : Class ; + fun Weekend_Class : SubClass Weekend TimeInterval ; + + -- Expressing unhappiness by shedding tears. + fun Weeping : Class ; + fun Weeping_Class : SubClass Weeping FacialExpression ; + + -- Any Funding which is provided by a ServiceOrganization + -- to people in need. + fun Welfare : Class ; + fun Welfare_Class : SubClass Welfare Funding ; + + -- A long CerealGrain which is produced by certain grasses and + -- which is used to make BreadOrBiscuits. + fun WheatGrain : Class ; + fun WheatGrain_Class : SubClass WheatGrain CerealGrain ; + + -- A circular Artifact which is a component of + -- LandVehicles and of some Devices. + fun Wheel : Class ; + fun Wheel_Class : SubClass Wheel Artifact ; + + -- A Weapon that consists of a thin strand of + -- Fabric, usually Leather, and a handle by which the strand is + -- impelled at a high rate of speed. + fun Whip : Class ; + fun Whip_Class : SubClass Whip Weapon ; + + -- A DistilledAlcoholicBeverage that is prepared by + -- distilling fermented grain mash. + fun Whiskey : Class ; + fun Whiskey_Class : SubClass Whiskey DistilledAlcoholicBeverage ; + + -- BloodCells that lack hemoglobin, contain a + -- CellNucleus, and have no color. + fun WhiteBloodCell : Class ; + fun WhiteBloodCell_Class : SubClass WhiteBloodCell BloodCell ; + + -- A MercantileOrganization that sells its + -- goods exclusively to Corporations. + fun WholesaleStore : Class ; + fun WholesaleStore_Class : SubClass WholesaleStore (both Agency MercantileOrganization) ; + + -- The Attribute that applies to someone who was + -- married to someone who has died, and who has not remarried. + fun Widowed : Ind SocialRole ; + + -- A BotanicalTree of the genus Salix. + fun WillowTree : Class ; + fun WillowTree_Class : SubClass WillowTree BotanicalTree ; + + -- A MusicalInstrument which is played by + -- blowing it and which uses a reed, or resonator hole as in the case of a flute. + fun WindInstrument : Class ; + fun WindInstrument_Class : SubClass WindInstrument MusicalInstrument ; + + -- Windmill is the subclass of Engines that + -- produce mechanical power from Wind energy. + fun Windmill : Class ; + fun Windmill_Class : SubClass Windmill Engine ; + + -- An Artifact composed of transparent material + -- that admits light (and possibly air) into a Room, Building + -- or Vehicle. + fun Window : Class ; + fun Window_Class : SubClass Window Artifact ; + + -- An Artifact that is used to cover + -- Windows. Note that this class includes blinds, drapes, shutters, + -- etc. + fun WindowCovering : Class ; + fun WindowCovering_Class : SubClass WindowCovering Artifact ; + + -- Any VehicleWindow which located at the front + -- of an Automobile. + fun Windshield : Class ; + fun Windshield_Class : SubClass Windshield VehicleWindow ; + + -- An AlcoholicBeverage that is prepared by fermenting + -- the juice of grapes. + fun Wine : Class ; + fun Wine_Class : SubClass Wine (both AlcoholicBeverage PlantAgriculturalProduct) ; + + -- Any Limb which is capable of being an + -- instrument in Flying. + fun Wing : Class ; + fun Wing_Class : SubClass Wing Limb ; + + -- The wings of Aircraft, i.e. the parts of Aircraft + -- that allow them to become and remain airborne. + fun WingDevice : Class ; + fun WingDevice_Class : SubClass WingDevice EngineeringComponent ; + + -- Any instance of ClosingEyes which is intended to + -- express something to someone else. + fun Winking : Class ; + fun Winking_Class : SubClass Winking (both ClosingEyes Gesture) ; + + -- The SeasonOfYear that begins at the winter + -- solstice and ends at the spring equinox. + fun WinterSeason : Class ; + fun WinterSeason_Class : SubClass WinterSeason SeasonOfYear ; + + -- A long, thin strand of Metal that is used in a wide + -- range of applications, including the wiring of electrical systems, creating + -- bundles and the construction of cages. + fun Wire : Class ; + fun Wire_Class : SubClass Wire Artifact ; + + -- A Wire that is designed for conducting electricity. + fun WireLine : Class ; + fun WireLine_Class : SubClass WireLine (both EngineeringComponent Wire) ; + + -- An EngineeringComponent consisting of a coil of + -- Wire that returns to its original shape when pulled apart or pressed together. + fun WireSpring : Class ; + fun WireSpring_Class : SubClass WireSpring (both EngineeringComponent Wire) ; + + -- The ContestAttribute that applies to a Contest + -- participant who has won the Contest. + fun Won : Ind ContestAttribute ; + + -- Tissue that comprises the inner trunk of Trees. + -- It is often used in constructing Buildings and other Artifacts. + -- Wood is the principal substance making up a tree, and is distinguished from the + -- bark, roots, flowers, seeds, fruit and leaves. + fun Wood : Class ; + fun Wood_Class : SubClass Wood (both PlantSubstance Tissue) ; + + -- Wood that has been cut (and perhaps treated) for + -- some purpose, e.g. Constructing or Combustion. Note that this class covers + -- both lumber and firewood. + fun WoodArtifact : Class ; + fun WoodArtifact_Class : SubClass WoodArtifact Artifact ; + + -- Fabric that is made from the Hair of Sheep. + fun Wool : Class ; + fun Wool_Class : SubClass Wool Fabric ; + + -- Sterile members of an Insect colony which + -- are responsible for locating food and caring for eggs, larvae, etc. + fun WorkerInsect : Class ; + fun WorkerInsect_Class : SubClass WorkerInsect Insect ; + + -- Any FinancialTransaction where someone exchanges + -- his/her labor for an instance of CurrencyMeasure. + fun Working : Class ; + fun Working_Class : SubClass Working FinancialTransaction ; + + -- A Room, suite of Rooms or Building which is + -- devoted to hand_crafting Artifacts. + fun Workshop : Class ; + fun Workshop_Class : SubClass Workshop StationaryArtifact ; + + -- The joint in the Arm connecting the radius and carpal bones. + fun Wrist : Class ; + fun Wrist_Class : SubClass Wrist BodyJoint ; + + -- A Device whose purpose is to be an instrument + -- of Writing, e.g. pens, pencils, crayons, etc. + fun WritingDevice : Class ; + fun WritingDevice_Class : SubClass WritingDevice Device ; + + -- Any LinguisticCommunication where the + -- instrument is a Text, e.g. a letter, an email, a memo, etc. + fun WrittenCommunication : Class ; + fun WrittenCommunication_Class : SubClass WrittenCommunication LinguisticCommunication ; + + -- Electro_magnetic radiation of short wavelength, + -- often made use of by devices that scan the inside of objects. + fun XRayRadiation : Class ; + fun XRayRadiation_Class : SubClass XRayRadiation Radiating ; + + -- English unit of length, equal to 3 FeetLength. + fun YardLength : Ind UnitOfLength ; + + -- (address ?AGENT ?ADDRESS) means that ?ADDRESS + -- is an address or part of an address for the Agent ?AGENT. + fun address : El Agent -> El Address -> Formula ; + + fun affiliatedOrganization : El Organization -> El Organization -> Formula ; + + -- (alias ?STRING ?AGENT) means that ?STRING is an + -- alternate identifier for ?AGENT, and is likely being used to hide or + -- obscure ?AGENT's true identity. + fun alias : El SymbolicString -> El Agent -> Formula ; + + -- (allegiance ?AGENT ?ENTITY) means that the CognitiveAgent + -- ?AGENT owes its allegiance to the political entity ?ENTITY. + fun allegiance : El CognitiveAgent -> El CognitiveAgent -> Formula ; + + -- (ancestorOrganization ?ORG1 ?ORG2) means that + -- the Organization ?ORG1 descended from the Organization ?ORG2. + fun ancestorOrganization : El Organization -> El Organization -> Formula ; + + -- (anniversary ?PHYSICAL ?TIME) means that + -- ?TIME is the class of TimeIntervals which mark the anniversary of + -- ?PHYSICAL. For example, (anniversary Christmas (DayFn 35 December)) + -- means that Christmas is celebrated each year on the 25th of December. + fun anniversary : El Physical -> El TimeInterval -> Formula ; + + -- (areaOfResponsibility ?AGENT ?PROCESS_TYPE ?AREA) means that ?AGENT + -- (typically an instance of Organization) is responsible or accountable for + -- actions or undertakings of type ?PROCESS_TYPE in the + -- GeographicArea denoted by ?AREA. + fun areaOfResponsibility : El Agent -> Desc Process -> El GeographicArea -> Formula ; + + -- (arrested ?EVENT ?AGENT) means that during ?EVENT, ?AGENT is + -- taken into custody, typically by a representative of a law + -- enforcement organization. + fun arrested : El PlacingUnderArrest -> El Agent -> Formula ; + + -- (aunt ?AUNT ?PERSON) means that ?AUNT is + -- the sister of a parent of ?PERSON. + fun aunt : El Woman -> El Human -> Formula ; + + -- (axis ?A ?OBJ) means that a part ?A of an Object ?OBJ + -- is the axis of rotation in a Rotating. + fun axis : El Object -> El Object -> Formula ; + + -- (benefits ?PROCESS ?AGENT) means that + -- ?AGENT somehow derives benefit as a result of ?PROCESS. This is + -- a very general relation, and does not entail that ?AGENT is a + -- participant in ?PROCESS. + fun benefits : El Process -> El Agent -> Formula ; + + -- (birthdate ?PERSON ?DAY) means that ?DAY is the + -- Day on which the ?PERSON was born. + fun birthdate : El Human -> El Day -> Formula ; + + -- (birthday ?PERSON ?DAY) means that ?DAY is the + -- anniversary each year of the birth of ?PERSON. For example, (birthday + -- WilliamJeffersonClinton (DayFn 19 August)) means that Bill Clinton's + -- birthday is August 19th. + fun birthday : El Human -> El Day -> Formula ; + + -- (birthplace ?INDIV ?PLACE) means that the Animal ?INDIV was born + -- at the location ?PLACE. The location may be a geographic area or a building, such as a hospital. + fun birthplace : El Animal -> El Object -> Formula ; + + -- (brandName ?NAME ?PRODUCT) means that ?NAME + -- is the brand name for the product class ?PRODUCT, e.g. Cheerios is the + -- brand name for a certain class of breakfast cereal. + fun brandName : El SymbolicString -> El Product -> Formula ; + + -- (capacity ?OBJ ?QUANTITY) means that ?OBJ can contain + -- something that has the measure of ?QUANTITY. This predicate denotes maximal + -- capacity, i.e. ?OBJ can hold no more than ?QUANTITY. Note, however, that this + -- does not mean that capacity is a SingleValuedRelation, since an object may + -- have various maximal capacities across different dimensions, e.g. a particular + -- box may have a capacity of 3 pounds and a capacity of 1 liter. + fun capacity : El SelfConnectedObject -> El ConstantQuantity -> Formula ; + + -- (cargo ?EVENT ?OBJ) means that ?OBJ is transported as cargo in + -- the Shipping event ?EVENT. + fun cargo : El Shipping -> El Object -> Formula ; + + -- (changesLocation ?EVENT ?OBJECT) means that during the Translocation + -- event ?EVENT, ?OBJECT's location changes. ?OBJECT might also be the agent, + -- patient, or experiencer of ?EVENT. + fun changesLocation : El Translocation -> El Object -> Formula ; + + -- (cityAddress ?CITY ?ADDRESS) means that the + -- City ?CITY is part of the address ?ADDRESS. + fun cityAddress : El City -> El Address -> Formula ; + + -- (holdsDuring ?T1 (cohabitant ?H1 ?H2)) + -- means that during the time ?T1, ?H1 and ?H2 have the same home. + fun cohabitant : El Human -> El Human -> Formula ; + + -- (conjugate ?COMPOUND1 ?COMPOUND2) means that + -- ?COMPOUND1 and ?COMPOUND2 are identical CompoundSubstances except that + -- one has one more Proton than the other. + fun conjugate : El CompoundSubstance -> El CompoundSubstance -> Formula ; + + -- (contestParticipant ?CONTEST ?AGENT) + -- means that ?AGENT is one of the sides in the Contest ?CONTEST. For + -- example, if the ?CONTEST is a football game, then ?AGENT would be one of + -- the opposing teams. For another example, if ?CONTEST is a Battle, then + -- ?AGENT would be one of the sides fighting each other. + fun contestParticipant : El Contest -> El Agent -> Formula ; + + -- (controlled ?EVENT ?OBJECT) means that during the + -- AchievingControl denoted by ?EVENT, ?OBJECT comes to be + -- physically controlled by an Agent. + fun controlled : El AchievingControl -> El Object -> Formula ; + + -- (conveyance ?EVENT ?OBJ) means that ?OBJ is the + -- Vehicle or other transportation device used in ?EVENT. + fun conveyance : El Transportation -> El TransportationDevice -> Formula ; + + -- (cousin ?PERSON1 ?PERSON2) means that ?PERSON1 + -- and ?PERSON2 are cousins, i.e. ?PERSON1 and ?PERSON2 have grandparents + -- (but not parents) in common. + fun cousin : El Human -> El Human -> Formula ; + + -- (holdsDuring ?T1 (coworker ?H1 ?H2)) means + -- that during time ?T1, ?H1 and ?H2 are both employed by the same agent, are + -- of roughly the same job status, and come into contact at least part of the + -- time at the same work location. + fun coworker : El Human -> El Human -> Formula ; + + -- (birthdate ?PERSON ?DAY) means that ?DAY is the + -- Day on which the ?PERSON died. + fun deathdate : El Human -> El Day -> Formula ; + + -- (deathplace ?INDIV ?PLACE) means that the Animal ?INDIV died + -- at the location ?PLACE. The location may be a geographic area or a building, + -- such as a hospital. + fun deathplace : El Animal -> El Object -> Formula ; + + -- (deceptiveIdentifier ?OBJ ?AGENT) + -- means that ?AGENT presents ?OBJ as a representation of ?AGENT's `true' + -- identity, when in fact it is not. + fun deceptiveIdentifier : El ContentBearingObject -> El Agent -> Formula ; + + -- (defendant ?AGENT ?ACTION) means the LegalAction + -- ?ACTION makes a legal claim against ?AGENT. + fun defendant : El CognitiveAgent -> El LegalAction -> Formula ; + + -- (detainee ?EVENT ?OBJECT) means that in the + -- Confining ?EVENT, the Object ?OBJECT is restrained by force, threat, or + -- other form of intimidation. + fun detainee : El Confining -> El Animal -> Formula ; + + -- (deviceState ?DEVICE ?STATE) means that + -- the Object ?DEVICE is in the DeviceStateAttribute ?STATE. + fun deviceState : El Object -> El DeviceStateAttribute -> Formula ; + + -- (disapproves ?AGENT ?FORMULA) means that + -- ?AGENT has a feeling of antipathy to the state of affairs represented by + -- ?FORMULA, i.e. ?AGENT believes that the realization of ?FORMULA will + -- thwart one of his/her goals. Note that there is no implication that what + -- is disapproved of by an agent is not already true. + fun disapproves : El CognitiveAgent -> Formula -> Formula ; + + -- (dislikes ?AGENT ?OBJECT) means that ?AGENT has a + -- feeling of antipathy to ?OBJECT, i.e. ?AGENT believes that ?OBJECT will + -- thwart one of his/her goals. Note that there is no implication that what + -- is hated by an agent is not already possessed by the agent. + fun dislikes : El CognitiveAgent -> El Object -> Formula ; + + -- (distanceOnPath ?DIST ?PATH) means that for a given path (which is a pathInSystem) that the + -- distance of the route is the measurement ?DIST. distanceOnPath (distanceOnPath ?DIST ?PATH) + -- means that for a given path (which is a pathInSystem) that the distance of the route is + -- the measurement ?DIST. + fun distanceOnPath : El ConstantQuantity -> El Transitway -> Formula ; + + -- (holdsDuring ?T1 (domesticPartner ?H1 ?H2)) means that during the time ?T1, ?H1 + -- and ?H2 live together and share a common domestic life but are + -- not joined in a traditional marriage, a common_law marriage, or a + -- civil union. + fun domesticPartner : El Human -> El Human -> Formula ; + + -- (doubts ?AGENT ?FORMULA) means that ?AGENT is unsure + -- about the truth of ?FORMULA, in particular ?AGENT does not believe that + -- ?FORMULA is true. + fun doubts : El CognitiveAgent -> Formula -> Formula ; + + -- Models the effective range of some + -- device that is able to move by itself (like vehicles, rockets and so + -- on) or move other things (like weapons). + fun effectiveRange : El Device -> El LengthMeasure -> Formula ; + + -- (electronNumber ?SUBSTANCE ?NUMBER) means that + -- the PureSubstance ?SUBSTANCE has the number of Electrons ?NUMBER. + fun electronNumber : El PureSubstance -> El PositiveInteger -> Formula ; + + -- (enjoys ?AGENT ?PROCESS) means that the + -- CognitiveAgent ?AGENT tends to enjoy actions of type ?PROCESS, + -- i.e. tends to enjoy being the agent or experiencer of such + -- actions. + fun enjoys : El CognitiveAgent -> El IntentionalProcess -> Formula ; + + -- (equipmentCount ?OBJECT ?TYPE ?QUANTITY) means that ?OBJECT + -- is equipped with devices of the type ?TYPE, in the number ?QUANTITY. + -- Equipment associated with an ?OBJECT may be a component of ?OBJECT + -- (such as the emergency oxygen system built into passenger jets) or it may + -- be a device simply located on or with ?OBJECT (such as a first aid kit). + fun equipmentCount : El Object -> Desc Device -> El Quantity -> Formula ; + + -- (equipmentType ?THING ?TYPE) means that + -- the Artifact ?THING has a component or attachment of Device ?TYPE. + -- See also equipmentTypeCount. + fun equipmentType : El Artifact -> El Device -> Formula ; + + -- Any belief about the future. (expects ?AGENT ?BELIEF) means that + -- (believes ?AGENT ?BELIEF) and, if ?BELIEF happens, it will + -- happen in the future, i.e. after the expectation. + fun expects : El CognitiveAgent -> Formula -> Formula ; + + -- (experimentalControl ?EXPERIMENT ?OBJ) means that the Object ?OBJ + -- serves as a control in the instance of Experimenting ?EXPERIMENT, + -- i.e. ?OBJ is the standard against which something else in + -- the experiment can be compared. + fun experimentalControl : El Experimenting -> El Object -> Formula ; + + -- (familyName ?STRING ?HUMAN) means that the SymbolicString ?STRING denotes a non_optional + -- name that ?HUMAN has inherited by virtue of being born into a + -- particular family (kin group). surname is another word for this type + -- of name. Cf. givenName. + fun familyName : El SymbolicString -> El Human -> Formula ; + + -- (fears ?AGENT ?FORMULA) means that ?AGENT fears that + -- the proposition ?FORMULA will be true, i.e. he/she believes that it will + -- come to pass in the future and that it will be undesirable for ?AGENT. + fun fears : El CognitiveAgent -> Formula -> Formula ; + + -- A formal banking, brokerage, or business + -- relationship established to provide for regular services, dealings, and + -- other financial transactions. (financialAccount ?ACCOUNT ?ORG) means that + -- ?ACCOUNT is a financial account opened at the FinancialCompany + -- ?ORG. + fun financialAccount : El FinancialAccount -> El FinancialCompany -> Formula ; + + -- A predicate that relates an Agent to any + -- item of economic value owned by the Agent. Examples of financial assets + -- are cash, securities, accounts receivable, inventory, office equipment, a + -- house, a car, and other property. + fun financialAsset : El Agent -> El Object -> Formula ; + + -- (formerName ?NAME ?THING) means that the + -- string ?NAME is a name formerly used for ?THING. + fun formerName : El Entity -> El Entity -> Formula ; + + -- (holdsDuring ?T1 (friend ?H1 ?H2)) means that + -- during time ?T1, ?H1 and ?H2 know each other, share a relationship of + -- mutual care and concern, and probably also share some common interests. + fun friend : El Human -> El Human -> Formula ; + + -- (gainsControl ?EVENT ?AGENT) means that during ?EVENT, ?AGENT + -- gains control of the patient (object). + fun gainsControl : El AchievingControl -> El Agent -> Formula ; + + -- (givenName ?STRING ?HUMAN) + -- means that ?STRING is a name selected for ?HUMAN, usually from among + -- many options, as opposed to a mandatory name (cf. familyName) that + -- ?HUMAN has inherited by virtue of being born into a certain kin group, + -- caste, or occupation. + fun givenName : El SymbolicString -> El Human -> Formula ; + + -- (grammaticalRelation ?PHRASE ?SENTENCE) + -- means that the Phrase ?PHRASE has a grammatical relation to the Sentence + -- ?SENTENCE, i.e. it is a subject, object, main verb, etc. of the ?SENTENCE. + fun grammaticalRelation : El Phrase -> El Sentence -> Formula ; + + -- (grandfather ?PERSON ?PARENT) means that + -- ?PARENT is the grandfather of ?PERSON. + fun grandfather : El Human -> El Man -> Formula ; + + -- (grandmother ?PERSON ?PARENT) means that + -- ?PARENT is the grandmother of ?PERSON. + fun grandmother : El Human -> El Woman -> Formula ; + + -- (grandparent ?YOUNGER ?OLDER) means that + -- ?OLDER is a parent of ?YOUNGER's parent. + fun grandparent : El Human -> El Human -> Formula ; + + -- A subrelation of member, groupMember + -- is used to relate a Human to a GroupOfPeople of which he/she is a + -- member. + fun groupMember : El Human -> El GroupOfPeople -> Formula ; + + -- (half ?HALF ?WHOLE) means that ?HALF is one half + -- of ?WHOLE. + fun half : El Object -> El Object -> Formula ; + + -- (hasExpertise ?PERSON ?FIELD) means that ?PERSON has + -- studied the FieldOfStudy ?FIELD and is regarded as an expert. + fun hasExpertise : El Human -> El FieldOfStudy -> Formula ; + + -- (hasOccupation ?PERSON ?WORK) means that ?PERSON + -- engages in activities of the class ?WORK as a means of earning a living. + fun hasOccupation : El Human -> Desc IntentionalProcess -> Formula ; + + -- (headquartersOfOrganization ?ORG ?AREA) + -- means that the Organization ?ORG is headquartered in ?AREA. + fun headquartersOfOrganization : El Organization -> El GeopoliticalArea -> Formula ; + + -- (hopes ?AGENT ?FORMULA) means that ?AGENT hopes that + -- the proposition ?FORMULA will be true, i.e. he/she believes that it will + -- come to pass in the future and that it will be desirable for ?AGENT. + fun hopes : El CognitiveAgent -> Formula -> Formula ; + + -- (hostileForces ?UNIT1 ?UNIT2) means that + -- the MilitaryUnits ?UNIT1 and ?UNIT2 are, respectively, allied with + -- GeopoliticalAreas that are at war with one another. + fun hostileForces : El MilitaryUnit -> El MilitaryUnit -> Formula ; + + -- (humanCapacity ?CONSTRUCT ?NUMBER) means that the + -- StationaryArtifact ?CONSTRUCT, e.g. a Building or a Room, can hold a maximum + -- of ?NUMBER Humans without crowding. + fun humanCapacity : El StationaryArtifact -> El PositiveInteger -> Formula ; + + -- (ideologicalAffiliationOfOrganization ?ORG ?GOV) means that one of the goals + -- of ?ORG is to realize the FormOfGovernment ?GOV. + fun ideologicalAffiliationOfOrganization : El Organization -> El FormOfGovernment -> Formula ; + + -- Every instance of the first argument is initially + -- found as part of an instance of the second argument, even though it + -- might lose that part later in its lifetime. While the part must initially + -- exist as part of a whole, this does not say that each whole necessarily initially + -- contains such a part. For example, a thumb must at some time have been + -- part of a hand, but every hand need not have a thumb, even at birth. This + -- is a class_level relation roughly corresponding to part. + fun initialPart : Desc Object -> Desc Object -> Formula ; + + -- Every instance of the second argument initially + -- contains an instance of the first argument, even though it + -- might lose that part later in its lifetime. Every normal human starts life with an + -- appendix for example. While the whole must initially + -- contain such a part, this does not say that each part necessarily initially + -- exists as part of such a whole. This is a class_level relation roughly + -- corresponding to part. + fun initiallyContainsPart : Desc Object -> Desc Object -> Formula; + + -- (intelligenceQuotient ?PERSON ?NUMBER) means that ?NUMBER is the I.Q. of ?PERSON. + -- The I.Q. of a person is the ratio of their mental age (determined by a standardized test) + -- divided by their chronological age, multiplied by 100. + fun intelligenceQuotient : El Human -> El RationalNumber -> Formula ; + + -- (inventory ?CBO ?COLLECTION) means that + -- the ContentBearingObject ?CBO contains a list or enumeration of the + -- members of the Collection ?COLLECTION. + fun inventory : El ContentBearingObject -> El Collection -> Formula ; + + -- (lacks ?AGENT ?OBJECT) means that ?AGENT needs + -- ?OBJECT and it is not currently the case that ?AGENT possesses ?OBJECT. + fun lacks : El CognitiveAgent -> El Physical -> Formula ; + + -- (landlord ?PERSON ?UNIT) means that ?PERSON is a + -- landlord of the Residence ?UNIT, i.e. he or she owns ?UNIT and is renting + -- the unit to someone else. + fun landlord : El Agent -> El PermanentResidence -> Formula ; + + -- (holdsDuring ?T1 (legalGuardian ?H1 ?H2)) means that during the time ?T1, + -- ?H2 has legal authority over ?H1, and is responsible for looking after ?H1's interests. + fun legalGuardian : El Human -> El Human -> Formula ; + + -- (localLongName ?NAME ?THING) means that the string ?NAME is the long form of the name + -- used for ?THING in its local area or language. + fun localLongName : El SymbolicString -> El Entity -> Formula ; + + -- (localShortName ?NAME ?THING) means that the string ?NAME is the short form of the name + -- used for ?THING in its local area or language. + fun localShortName : El SymbolicString -> El Entity -> Formula ; + + -- (locatedAtTime ?OBJ ?TIME ?PLACE) means + -- that during the time specified by ?TIME, ?OBJ was in the location + -- specified by ?PLACE. + fun locatedAtTime : El Object -> El TimePosition -> El Object -> Formula ; + + -- (losesControl ?EVENT ?AGENT) means that during ?EVENT, ?AGENT + -- loses physical control of the controlled object. + fun losesControl : El ChangeOfControl -> El Agent -> Formula ; + + -- The amount by which the cost of an investment or + -- business operation exceeds its return, i.e. the negative quantity left + -- after subtracting for all expenses. + fun loss : El FinancialTransaction -> El CurrencyMeasure -> Formula; + + -- (measurementReading ?DEVICE ?QUANTITY) + -- means that ?QUANTITY is a reading of the MeasuringDevice ?DEVICE, e.g. if + -- ?THERMOMETER is a Thermometer, (measurementReading ?THERMOMETER + -- (MeasureFn 42 CelsiusDegree)) would mean that ?THERMOMETER registers 42 + -- degrees Celsius. + fun measurementReading : El MeasuringDevice -> El ConstantQuantity -> Formula ; + + -- (meatOfAnimal ?MEATCLASS ?ANIMALCLASS) states + -- that ?MEATCLASS was once part of the class of Animal ?ANIMALCLASS) + fun meatOfAnimal : Desc Meat -> Desc Animal -> Formula ; + + -- A relation between a Human and a + -- CareOrganization that treats the patient. + fun medicalPatient : El Human -> El CareOrganization -> Formula ; + + -- (memberAtTime ?MEMBER ?COLLECTION + -- ?TIME) means that during the time period denoted by ?TIME, + -- ?MEMBER is a member of ?COLLECTION. + fun memberAtTime : El SelfConnectedObject -> El Collection -> El TimePosition -> Formula ; + + -- (memberCount ?ORG ?NUMBER) means that there + -- is a total ?NUMBER of members in the Collection ?ORG. + fun memberCount : El Collection -> El Integer -> Formula ; + + -- (memberType ?GROUP ?TYPE) means that all + -- the members of the Collection ?GROUP belong to the SetOrClass + -- ?TYPE. + fun memberType : El Collection -> El SetOrClass -> Formula ; + + -- (memberTypeCount ?GROUP ?TYPE ?NUMBER) means that the + -- Collection ?GROUP has ?NUMBER members of the kind ?TYPE. + fun memberTypeCount : El Collection -> El SetOrClass -> El NonnegativeInteger -> Formula ; + + -- (middleName ?CHAR ?INDIV) means that the + -- SymbolicString ?CHAR contains the middle name of the Human ?INDIV. + fun middleName : El SymbolicString -> El Human -> Formula ; + + -- (monetaryWage ?ORG ?PERSON ?TIME ?MONEY) means + -- that the Organization employs ?PERSON and pays him/her the amount of money + -- ?MONEY per TimeDuration ?TIME. + fun monetaryWage : El Organization -> El Human -> El TimeDuration -> El CurrencyMeasure -> Formula ; + + -- (most ?MOST ?WHOLE) means that ?MOST is a part + -- of ?WHOLE that is greater than half of ?WHOLE. + fun most : El Object -> El Object -> Formula ; + + -- (moves ?MOTION ?OBJECT) means that during + -- the Motion event ?MOTION, ?OBJECT moves. This does not + -- necessarily imply that the location of ?OBJECT changes during + -- ?MOTION. See also changesLocation and Translocation. + fun moves : El Motion -> El Object -> Formula ; + + -- (mutualStranger ?H1 ?H2) means that ?H1 + -- and ?H2 have not met each other and do not know each other. Statements + -- made with this predicate should be temporally specified with + -- holdsDuring. See also the weaker, non_symmetric version of this + -- predicate, stranger. + fun mutualStranger : El Human -> El Human -> Formula ; + + -- (neighbor ?PERSON1 ?PERSON2) means that ?PERSON1 is + -- a neighbor of ?PERSON2, i.e. ?PERSON1 and ?PERSON2 have their homes Near + -- one another. + fun neighbor : El Human -> El Human -> Formula ; + + -- (nephew ?NEPHEW ?PERSON) means that ?NEPHEW is + -- the son of a sibling of ?PERSON. + fun nephew : El Man -> El Human -> Formula ; + + -- (niece ?NIECE ?PERSON) means that ?NIECE is + -- the daughter of a sibling of ?PERSON. + fun niece : El Woman -> El Human -> Formula ; + + -- (occupation ?PERSON ?TYPE) means that the occupation + -- of ?PERSON is ?TYPE. This predicate is most often used in combination with the + -- function OccupationFn, e.g. (occupation PoliceOfficerWilkins (OccupationFn + -- LawEnforcement)). + fun occupation : El Human -> El FinancialTransaction -> Formula ; + + -- (older ?OBJ1 ?OBJ2) means that ?OBJ1 is older than + -- ?OBJ2, i.e. the age of ?OBJ1 is greaterThan the age of ?OBJ2. + fun older : El Object -> El Object -> Formula ; + + -- (onboard ?OBJ ?VEHICLE) means that the + -- SelfConnectedObject ?OBJ is inside the Vehicle ?VEHICLE. + fun onboard : El SelfConnectedObject -> El Vehicle -> Formula ; + + -- (operator ?OBJECT ?AGENT) means that ?AGENT + -- determines how ?OBJECT is used, either by directly or indirectly operating + -- it. + fun operator : El Object -> El Agent -> Formula ; + + -- (parasite ?ORGANISM1 ?ORGANISM2) means that there + -- is a parasitic relationship between ?ORGANISM1 and ?ORGANISM2, i.e. ?ORGANISM1 + -- inhabits and obtains nourishment from ?ORGANISM2 in such a way that + -- ?ORGANISM2 is injured. + fun parasite : El Organism -> El Organism -> Formula ; + + -- (pathInSystem ?PATH ?SYSTEM) means that + -- the Physical thing ?PATH consists of one or more connected routes in + -- the PhysicalSystem ?SYSTEM. + fun pathInSystem : El Transitway -> El TransitSystem -> Formula ; + + -- The relation of receiving medical care + -- from a recognized medical practitioner. (patientMedical ?PATIENT + -- ?DOCTOR) means that ?PATIENT is the patient of ?DOCTOR. Note that + -- argument type restriction on the second argument is CognitiveAgent + -- to allow for cases where someone is the patient of an Organization, + -- viz. a CareOrganization. + fun patientMedical : El Human -> El CognitiveAgent -> Formula ; + + -- (plaintiff ?ACTION ?AGENT) means that ?AGENT + -- is responsible for initiating the LegalAction ?ACTION. + fun plaintiff : El LegalAction -> El CognitiveAgent -> Formula ; + + -- (postalBoxNumber ?NUMBER ?ADDRESS) means + -- that the post office box ?NUMBER is part of the address ?ADDRESS. + fun postalBoxNumber : El PositiveInteger -> El Address -> Formula ; + + -- (postalCode ?NUMBER ?ADDRESS) means that the + -- the postal code, e.g. zip code, ?NUMBER is part of the address ?ADDRESS. + fun postalCode : El PositiveInteger -> El Address -> Formula ; + + -- (potentialOfHydrogen ?SOLUTION ?NUMBER) + -- means that the Solution ?SOLUTION has a pH value of ?NUMBER. The ph varies + -- between 0 and 14, and it is a measure of the acidity or alkalinity of ?SOLUTION. + -- More precisely, and it is the logarithm of the reciprocal of the quantity of + -- AtomGrams of Hydrogen ions. + fun potentialOfHydrogen : El Solution -> El RealNumber -> Formula ; + + -- (powerPlant ?GENERATOR ?THING) means that + -- the Device ?GENERATOR is the power_producing component of the Artifact + -- ?THING which provides the energy for its operation. + fun powerPlant : El Device -> El Artifact -> Formula ; + + -- (protonNumber ?SUBSTANCE ?NUMBER) means that + -- the PureSubstance ?SUBSTANCE has the number of Protons ?NUMBER. + fun protonNumber : El PureSubstance -> El PositiveInteger -> Formula ; + + -- (quarter ?QUART ?WHOLE) means that ?QUART is a + -- quarter of ?WHOLE. + fun quarter : El Object -> El Object -> Formula ; + + -- (reactant ?PROCESS ?SUBSTANCE) means that ?SUBSTANCE + -- is a chemical reactant in the chemical reaction ?PROCESS, i.e. ?SUBSTANCE is + -- present at the beginning of the chemical reaction ?PROCESS. + fun reactant : El ChemicalProcess -> El Substance -> Formula ; + + -- (reagent ?PROCESS ?SUBSTANCE) means that ?SUBSTANCE + -- is a chemical agent in the chemical reaction ?PROCESS. + fun reagent : El ChemicalProcess -> El Substance -> Formula ; + + -- (registeredItem ?DOCUMENT ?ITEM) means + -- that the Text ?DOCUMENT contains an official record of the Physical + -- thing ?ITEM. The registered item could be an object or an event, e.g., + -- an automobile, a ship, a marriage, an adoption. + fun registeredItem : El Text -> El Physical -> Formula ; + + -- (religiousAffiliationOfOrganization ?ORG ?BELIEF) means + -- that one of the goals of ?ORG is to advance the religious teachings + -- of the BeliefGroup ?BELIEF. + fun religiousAffiliationOfOrganization : El Organization -> El BeliefGroup -> Formula ; + + -- (routeInSystem ?PART ?SYSTEM) means that + -- the Transitway ?PART is an established route of the + -- TransportationSystem ?SYSTEM. + fun routeInSystem : El Transitway -> El TransitSystem -> Formula ; + + -- (secretesSubstance ?OBJ ?STUFF) means + -- that the subclass of OrganicObject (either Organism or BodyPart) + -- ?OBJ produces the subclass of Substance ?STUFF. + fun secretesSubstance : Desc OrganicObject -> Desc NaturalSubstance -> Formula ; + + -- (sententialObject ?OBJECT ?SENTENCE) means that the NounPhrase ?OBJECT is + -- the object of the Sentence ?SENTENCE. + fun sententialObject : El NounPhrase -> El Sentence -> Formula ; + + -- (sententialSubject ?SUBJECT ?SENTENCE) means that the NounPhrase ?SUBJECT is + -- the subject of the Sentence ?SENTENCE. + fun sententialSubject : El NounPhrase -> El Sentence -> Formula ; + + -- (serviceProvider ?EVENT ?AGENT) + -- means that ?AGENT is the supplier of the service provided in ?EVENT. + fun serviceProvider : El ServiceProcess -> El CognitiveAgent -> Formula ; + + -- (serviceRecipient ?EVENT ?AGENT) means that ?AGENT is the + -- receiver of the service provided in ?EVENT. + fun serviceRecipient : El ServiceProcess -> El CognitiveAgent -> Formula ; + + -- (sideOfFigure ?SIDE ?FIGURE) means that the + -- OneDimensionalFigure ?POINT is a side of the GeometricFigure ?FIGURE. + fun sideOfFigure : El OneDimensionalFigure -> El GeometricFigure -> Formula ; + + -- (sliceOfFigure ?SLICE ?FIGURE) indicates + -- that ?SLICE is a 2_d section of the 3_d figure ?FIGURE. Or, more + -- formally, ?SLICE is 2_d figure formed by the intersection of a plane + -- with the 3_d figure ?FIGURE. + fun sliceOfFigure : El TwoDimensionalObject -> El CorpuscularObject -> Formula ; + + -- A relation between a Process of + -- MusicalTone and the fundamental frequency of that tone. + fun soundFrequency : El MusicalTone -> El FunctionQuantity -> Formula ; + + -- (speaksLanguage ?AGENT ?LANGUAGE) means that the SentientAgent ?AGENT is + -- capable of understanding and/or generating the Language ?LANGUAGE. + fun speaksLanguage : El SentientAgent -> El Language -> Formula ; + + -- (stepfather ?PERSON ?FATHER) means that ?FATHER + -- is the stepfather of ?PERSON, i.e. ?FATHER is the spouse of the mother + -- of ?PERSON, without also being the father of ?PERSON. + fun stepfather : El Human -> El Man -> Formula ; + + -- (stepmother ?PERSON ?MOTHER) means that ?MOTHER + -- is the stepmother of ?PERSON, i.e. ?MOTHER is the spouse of the father + -- of ?PERSON, without also being the mother of ?PERSON. + fun stepmother : El Human -> El Woman -> Formula ; + + -- (stockHolder ?Stock ?Agent) means that + -- ?Agent possesses the Stock ?Stock. + fun stockHolder : El Stock -> El CognitiveAgent -> Formula ; + + -- (stranger ?H1 ?H2) means that ?H1 has + -- not met ?H2, or, in other words, (not (acquaintance ?H1 ?H2)). + -- Statements made with stranger should be temporally + -- specified with holdsDuring. Note that stranger is not + -- symmetric, meaning that ?H2 might know ?H1. For the symmetric + -- version, see mutualStranger. + fun stranger : El Human -> El Human -> Formula ; + + -- (streetAddress ?STREET ?ADDRESS) means + -- that the Roadway ?STREET is part of the address ?ADDRESS. + fun streetAddress : El Roadway -> El Address -> Formula ; + + -- (streetNumber ?BUILDING ?ADDRESS) means + -- that the Building ?BUILDING is part of the address ?ADDRESS. + fun streetNumber : El Building -> El Address -> Formula ; + + -- (student ?ORG ?AGENT) means that ?AGENT is enrolled + -- in the EducationalOrganization ?ORG. + fun student : El EducationalOrganization -> El CognitiveAgent -> Formula ; + + -- (subField ?FIELD1 ?FIELD2) means that ?FIELD1 is a proper + -- part of the FieldOfStudy ?FIELD2. For example, Physiology is a subField of + -- Biology. + fun subField : El FieldOfStudy -> El FieldOfStudy -> Formula ; + + -- (subordinateInOrganization ?ORG ?PERSON1 ?PERSON2) means that + -- in the Organization ?ORG, ?PERSON1 is subordinate to ?PERSON2. + fun subordinateInOrganization : El Organization -> El Human -> El Human -> Formula ; + + -- (subordinatePosition ?ORG ?SUB ?SUPER) means that in + -- the Organization ?ORG, the holder of role ?SUB is subordinate to + -- the holder of role ?SUPER. + fun subordinatePosition : El Organization -> El Position -> El Position -> Formula ; + + -- (tangent ?LINE ?CIRCLE) means that the straight line + -- ?LINE is tangent to the figure ?CIRCLE, i.e. ?LINE touches ?CIRCLE without + -- intersecting it. + fun tangent : El OneDimensionalFigure -> El TwoDimensionalObject -> Formula ; + + -- This relation identifies the patient in the event that is the object of the attack. + fun targetInAttack : El Process -> El Object -> Formula ; + + -- (teacher ?ORG ?AGENT) means that ?AGENT is a teacher at the EducationalOrganization ?ORG. + fun teacher : El EducationalOrganization -> El CognitiveAgent -> Formula ; + + -- (telephoneNumber ?NUMBER ?AGENT) means + -- that ?NUMBER is a telephone number at which ?AGENT can be regularly contacted. + fun telephoneNumber : El SymbolicString -> El Agent -> Formula ; + + -- (tenant ?PERSON ?UNIT) means that ?PERSON is a tenant of the Residence ?UNIT, + -- i.e. he or she is renting the unit. + fun tenant : El Agent -> El Residence -> Formula ; + + -- (third ?THIRD ?WHOLE) means that ?THIRD is one third of ?WHOLE. + fun third : El Object -> El Object -> Formula ; + + -- A binary predicate used to indicate the title of a ContentBearingPhysical. Note that the + -- second argument type restriction is a subclass, rather than an + -- instance, of ContentBearingPhysical. Thus, the title + -- Murder_on_the_Orient_Express corresponds to a large class of Books, + -- and not just to a single copy of the book. + fun titles : El SymbolicString -> El ContentBearingPhysical -> Formula ; + + -- (transported ?EVENT ?OBJ) means that ?OBJ is transported + -- (carried/moved to a different physical location) in the Transportation ?EVENT. + fun transported : El Transportation -> El Object -> Formula ; + + -- An instance of the first argument is typically + -- found as part of an instance of the second argument. This is a + -- class_level relation roughly corresponding to part. Note that this does + -- not imply that such wholes typically have such parts. + fun typicalPart : Desc Object -> Desc Object -> Formula ; + + -- An instance of the second argument typically + -- contains an instance of the first argument. This is a + -- class_level relation roughly corresponding to part. Note that this does + -- not imply that such parts typically have such wholes. + fun typicallyContainsPart : Desc Object -> Desc Object -> Formula ; + + -- (uncle ?UNCLE ?PERSON) means that ?UNCLE is + -- the brother of a parent of ?PERSON. + fun uncle : El Man -> El Human -> Formula ; + + -- (unitNumber ?UNIT ?ADDRESS) means that the + -- StationaryArtifact ?UNIT is part of the address ?ADDRESS. + fun unitNumber : El StationaryArtifact -> El Address -> Formula ; + + -- (wavelength ?RADIATION ?MEASURE) means that the + -- instance of radiation, ?RADIATION, has an average wavelength of ?MEASURE. + fun wavelength : El Radiating -> El LengthMeasure -> Formula ; + + -- (yearOfFounding ?ORG ?NUMBER) means that the Organization ?ORG + -- was founded in the year expressed in ?NUMBER. + fun yearOfFounding : El Organization -> El Integer -> Formula ; + +} diff --git a/examples/SUMO/Mid_level_ontology.gf b/examples/SUMO/Mid_level_ontology.gf deleted file mode 100644 index a46cb87a2..000000000 --- a/examples/SUMO/Mid_level_ontology.gf +++ /dev/null @@ -1,8671 +0,0 @@ --- # -path=. :englishExtended -abstract Mid_level_ontology = open Merge,elements in { - - - --- Removing a human fetus from a Pregnant woman --- in such a way that the fetus cannot survive. -fun Aborting : Class ; -fun Aborting_Class : SubClass Aborting Removing ; - --- A Certificate that demonstrates that the holder --- of the Certificate has successfully completed an EducationalProgram. -fun AcademicDegree : Class ; -fun AcademicDegree_Class : SubClass AcademicDegree Certificate ; - --- Increasing the speed with which someone --- or something is moving. -fun Accelerating : Class ; -fun Accelerating_Class : SubClass Accelerating (both Increasing Translocation) ; - - --- The Profession of being an Accountant. -fun Accountant : Ind Profession ; - - --- Any process of certifying an EducationalOrganization. -fun Accrediting : Class ; -fun Accrediting_Class : SubClass Accrediting Declaring ; - --- AchievingControl is the --- class of all events in which an Agent gains physical --- control over some object. -fun AchievingControl : Class ; -fun AchievingControl_Class : SubClass AchievingControl Guiding ; - --- A UnitOfMeasure equal to 4840 square yards. -fun Acre : Ind UnitOfArea ; - - --- Any TwoDimensionalAngle that has an --- angularMeasure that is less than 90 AngularDegrees. -fun AcuteAngle : Class ; -fun AcuteAngle_Class : SubClass AcuteAngle TwoDimensionalAngle ; - --- A RelationalAttribute that indicates an address --- where an Agent can regularly be contacted. -fun Address : Class ; -fun Address_Class : SubClass Address RelationalAttribute ; - --- Combining a substance with Air. -fun Aerating : Class ; -fun Aerating_Class : SubClass Aerating Combining ; - --- A Device whose purpose is to mix Substances with --- Air. -fun Aerator : Class ; -fun Aerator_Class : SubClass Aerator Device ; - --- An RecreationOrExerciseDevice whose purpose is --- to develop the cardiovascular system. -fun AerobicExerciseDevice : Class ; -fun AerobicExerciseDevice_Class : SubClass AerobicExerciseDevice RecreationOrExerciseDevice ; - --- The class of TimeIntervals that begin at noon and --- end at Sunset. -fun Afternoon : Class ; -fun Afternoon_Class : SubClass Afternoon DayTime ; - --- A CommercialAgent whose customers are all other --- CommercialAgents, e.g. staffing agencies, food_service providers, etc. -fun Agency : Class ; -fun Agency_Class : SubClass Agency CommercialAgent ; - --- AgriculturalProduct is the --- subclass of Product that comprises the products of agricultural --- activity. -fun AgriculturalProduct : Class ; - - --- AirForce is the subclass of MilitaryService --- that comprises military air forces. -fun AirForce : Class ; -fun AirForce_Class : SubClass AirForce MilitaryService ; - --- Any instance of Transportation where the --- instrument is an Aircraft and which is through an AtmosphericRegion. -fun AirTransportation : Class ; -fun AirTransportation_Class : SubClass AirTransportation Transportation ; - --- Any Vehicle which is capable of --- AirTransportation. Note that this class covers both fixed_wing aircraft --- and helicopters. -fun Aircraft : Class ; -fun Aircraft_Class : SubClass Aircraft Vehicle ; - --- OrganicCompounds that are produced from hydrocarbons --- by distillation. -fun Alcohol : Class ; -fun Alcohol_Class : SubClass Alcohol OrganicCompound ; - --- Any Beverage that contains Alcohol. -fun AlcoholicBeverage : Class ; -fun AlcoholicBeverage_Class : SubClass AlcoholicBeverage (both Beverage Depressant) ; - - --- A ChemicalBase found in some Plants that has --- physiological and psychological effects. -fun Alkaloid : Class ; -fun Alkaloid_Class : SubClass Alkaloid (both BiologicallyActiveSubstance ChemicalBase) ; - - --- Any Character that is comprised of a single --- alphabetical character, e.g. A, B, C, D, ... -fun AlphabeticCharacter : Class ; -fun AlphabeticCharacter_Class : SubClass AlphabeticCharacter Character ; - --- Tiny sacs in the Lung which absorb Oxygen --- which is delivered to them by the BronchialDucts. -fun Alveolus : Class ; -fun Alveolus_Class : SubClass Alveolus (both AnimalAnatomicalStructure BodyVessel) ; - - --- Any Maneuver in a ViolentContest where one --- contestParticipant attempts to conceal himself from another --- contestParticipant so that he can Attack the other --- contestParticipant. -fun Ambush : Class ; -fun Ambush_Class : SubClass Ambush Maneuver ; - --- Organic acids that are the building blocks of --- Proteins. -fun AminoAcid : Class ; -fun AminoAcid_Class : SubClass AminoAcid (both ChemicalAcid OrganicCompound) ; - - --- A very large Boa that is found in South America. -fun Anaconda : Class ; -fun Anaconda_Class : SubClass Anaconda ConstrictorSnake ; - --- An RecreationOrExerciseDevice whose purpose --- is to develop Muscles without also developing the cardiovascular system. -fun AnaerobicExerciseDevice : Class ; -fun AnaerobicExerciseDevice_Class : SubClass AnaerobicExerciseDevice RecreationOrExerciseDevice ; - --- An AttachingDevice which is large hook or set of hooks --- that are used to secure a Ship on the open water. -fun Anchor : Class ; -fun Anchor_Class : SubClass Anchor AttachingDevice ; - --- The state of being wrathful, irate or indignant. -fun Anger : Ind EmotionalState ; - - --- AnimalAgriculturalProduct is the class of AgriculturalProducts --- that are animal in nature, including meat, fish, dairy products, --- hides, furs, animal fats and oils, etc. -fun AnimalAgriculturalProduct : Class ; -fun AnimalAgriculturalProduct_Class : SubClass AnimalAgriculturalProduct AgriculturalProduct ; - --- Any Device which is used to control the --- movements of an Animal or Human, e.g. leashes, reins, harnesses, muzzles, --- bridles, shackles, handcuffs, etc. -fun AnimalController : Class ; -fun AnimalController_Class : SubClass AnimalController Device ; - --- AnimalPoweredDevice is the subclass --- of Devices that function with power supplied by animals. Examples: --- oxcarts, horse_drawn plows, mule_driven mills. -fun AnimalPoweredDevice : Class ; -fun AnimalPoweredDevice_Class : SubClass AnimalPoweredDevice Device ; - --- An Artifact which is intended to house --- Animals and not Humans. Note that an AnimalResidence may or may not --- be a StationaryArtifact, e.g. a horse stall is stationary while a doghouse --- generally is not. -fun AnimalResidence : Class ; -fun AnimalResidence_Class : SubClass AnimalResidence Artifact ; - --- A hard shell of calcium that serves as a --- supporting structure for some Invertebrates. -fun AnimalShell : Class ; -fun AnimalShell_Class : SubClass AnimalShell (both AnimalAnatomicalStructure BodyPart) ; - - --- A GroupOfAnimals which are Pulling something. -fun AnimalTeam : Class ; -fun AnimalTeam_Class : SubClass AnimalTeam GroupOfAnimals ; - --- The joint in the Leg that connects the tibia and the --- fibula to the talus. -fun Ankle : Class ; -fun Ankle_Class : SubClass Ankle BodyJoint ; - --- Any Text which contains information about --- an event in the future. -fun Announcement : Class ; -fun Announcement_Class : SubClass Announcement FactualText ; - --- Responding to a Questioning, i.e. trying to answer --- someone's question. -fun Answering : Class ; -fun Answering_Class : SubClass Answering Stating ; - --- A colony Insect of three types: males, --- QueenInsect, and worker ants. -fun AntInsect : Class ; -fun AntInsect_Class : SubClass AntInsect Insect ; - --- The class of TimeIntervals that begin at midnight --- and end at noon. -fun AnteMeridiem : Class ; -fun AnteMeridiem_Class : SubClass AnteMeridiem TimeInterval ; - --- A HoofedMammal with long legs and backward_facing horns. --- This class includes gazelles, addax, blackbucks, etc. -fun Antelope : Class ; -fun Antelope_Class : SubClass Antelope HoofedMammal ; - --- A CommunicationDevice which enables or improves --- the reception of RadioEmissions by another CommunicationDevice (the --- radio or television receiver). -fun Antenna : Class ; -fun Antenna_Class : SubClass Antenna CommunicationDevice ; - --- The field of anthropology. -fun Anthropology : Ind SocialScience ; - - --- A BiologicallyActiveSubstance than can kill --- instances of Bacterium. -fun Antibiotic : Class ; -fun Antibiotic_Class : SubClass Antibiotic BiologicallyActiveSubstance ; - --- An immunoglobulin which is produced by the body --- and which has the ability to neutralize Antigens. -fun Antibody : Class ; -fun Antibody_Class : SubClass Antibody Protein ; - --- Any BiologicallyActiveSubstance that has the --- capacity to stimulate the production of Antibodies. -fun Antigen : Class ; -fun Antigen_Class : SubClass Antigen BiologicallyActiveSubstance ; - --- An Antigen that is carried in the red blood --- cells of those with BloodTypeA. -fun AntigenA : Class ; -fun AntigenA_Class : SubClass AntigenA Antigen ; - --- An Antigen that is carried in the red blood --- cells of those with BloodTypeB. -fun AntigenB : Class ; -fun AntigenB_Class : SubClass AntigenB Antigen ; - --- The BeliefGroup that is characterized by a --- dislike for Judaism. -fun Antisemitism : Ind BeliefGroup ; - - --- The state of being worried, troubled or uneasy. -fun Anxiety : Ind EmotionalState ; - - --- A ResidentialBuilding containing --- ApartmentUnits. -fun ApartmentBuilding : Class ; -fun ApartmentBuilding_Class : SubClass ApartmentBuilding ResidentialBuilding ; - --- A SingleFamilyResidence that is not owned --- by any member of the SocialUnit that lives there. -fun ApartmentUnit : Class ; -fun ApartmentUnit_Class : SubClass ApartmentUnit SingleFamilyResidence ; - --- A FruitOrVegetable that has a tart to sweet taste and --- a spherical shape. -fun Apple : Class ; -fun Apple_Class : SubClass Apple (both Food FruitOrVegetable) ; - - --- A FormText whose purpose is to obtain admission --- to an Organization or to receive assistance from an Organization. -fun Application : Class ; -fun Application_Class : SubClass Application FormText ; - --- Any instance of Declaring by which the --- patient is assigned to a Position within an Organization where --- the patient previously had no position. For example, the appointments --- of people to non_elective offices in a government. -fun Appointing : Class ; -fun Appointing_Class : SubClass Appointing Declaring ; - --- An item of Clothing that protects the front and --- middle part of the body while one is Cooking or doing other work. -fun Apron : Class ; -fun Apron_Class : SubClass Apron Clothing ; - --- The FieldOfStudy of designing Buildings, i.e. --- creating Blueprints for Buildings. -fun Architecture : Ind FieldOfStudy ; - - --- Any Stating which has the form of an Argument. -fun Arguing : Class ; -fun Arguing_Class : SubClass Arguing Stating ; - --- The upper Limbs of a Primate. -fun Arm : Class ; -fun Arm_Class : SubClass Arm Limb ; - --- MilitaryServices that are land forces. -fun Army : Class ; -fun Army_Class : SubClass Army MilitaryService ; - --- The final part of any instance of Translocation. -fun Arriving : Class ; -fun Arriving_Class : SubClass Arriving Translocation ; - --- An Icon which has the shape of an arrow and --- which is used to indicate direction or a relationship betwee two things. -fun ArrowFigure : Class ; -fun ArrowFigure_Class : SubClass ArrowFigure Icon ; - --- An Icon which has the shape of an arrow and which --- is used to indicate direction or a relationship betwee two things. -fun ArrowIcon : Class ; -fun ArrowIcon_Class : SubClass ArrowIcon Icon ; - --- A long, thin Projectile with a pointed tip is --- fired from a bow. -fun ArrowProjectile : Class ; -fun ArrowProjectile_Class : SubClass ArrowProjectile Projectile ; - --- An act where an agent sets something which it does not possess --- on fire in order to destroy it or its contents. -fun Arson : Class ; -fun Arson_Class : SubClass Arson (both Combustion Destruction) ; - - --- The Profession of reporting and critiquing current --- ArtWorks. -fun ArtCritic : Ind Journalist ; - - --- Any ContentDevelopment that results in a --- PaintedPicture. -fun ArtPainting : Class ; -fun ArtPainting_Class : SubClass ArtPainting (both ContentDevelopment Painting) ; - - --- Any School whose aim is to teach students --- how to create ArtWorks. -fun ArtSchool : Class ; -fun ArtSchool_Class : SubClass ArtSchool School ; - --- A Workshop, which is --- devoted to the creation of ArtWorks. -fun ArtStudio : Class ; -fun ArtStudio_Class : SubClass ArtStudio Workshop ; - --- Any BloodVessel which transfers Blood from --- the Heart to the extremities of the body. -fun Artery : Class ; -fun Artery_Class : SubClass Artery BloodVessel ; - --- A Gun that is too large to be carried and fired --- by a single Human. Typically, ArtilleryGuns are on wheels. -fun ArtilleryGun : Class ; -fun ArtilleryGun_Class : SubClass ArtilleryGun Gun ; - --- AtmosphericRegion is the class of --- all subregions of EarthsAtmosphere. -fun AtmosphericRegion : Class ; -fun AtmosphericRegion_Class : SubClass AtmosphericRegion SpaceRegion ; - --- Two or more Atoms that are bound together and --- comprise part of a Molecule. -fun AtomicGroup : Class ; -fun AtomicGroup_Class : SubClass AtomicGroup CompoundSubstance ; - --- Any decrease in the size of a BodyPart which is due to --- disease or lack of use. -fun Atrophy : Class ; -fun Atrophy_Class : SubClass Atrophy (both Decreasing PathologicProcess) ; - - --- The Profession of practicing law, whether as a --- judge or as a legal advocate. -fun Attorney : Class ; - - --- The head law officer of a GeopoliticalArea, --- usually a Nation or StateOrProvince. -fun AttorneyGeneral : Ind (both Profession GovernmentOfficer) ; - - --- A representation of sound on some medium such --- as wax cylinder, vinyl record, magnetic tape, CD or flash memory, that is --- intended to be used in some machine to reproduce that sound. -fun AudioRecording : Class ; -fun AudioRecording_Class : SubClass AudioRecording (both ContentBearingObject Text) ; - - --- Any Building whose purpose is to hold concerts, --- sports events, plays, etc. before an audience. This class includes theaters, --- sports stadiums, university auditoriums, etc. -fun Auditorium : Class ; -fun Auditorium_Class : SubClass Auditorium Building ; - --- A Seat within an Auditorium from which one --- can observe the PerformanceStage. -fun AuditoriumSeat : Class ; -fun AuditoriumSeat_Class : SubClass AuditoriumSeat Seat ; - --- A Gun that fires a burst of Projectiles --- with each pull of the trigger. Also known as a machine gun. -fun AutomaticGun : Class ; -fun AutomaticGun_Class : SubClass AutomaticGun Gun ; - --- Automobile is a subclass of --- SelfPoweredRoadVehicles including passenger cars, family vans, light --- trucks, and sport utility vehicles. In general, this class covers --- four_wheeled passenger road vehicles. -fun Automobile : Class ; -fun Automobile_Class : SubClass Automobile (both PassengerVehicle SelfPoweredRoadVehicle) ; - - --- A FruitOrVegetable that is shaped like a pear and --- has a dark green skin and a rich meat. -fun Avocado : Class ; -fun Avocado_Class : SubClass Avocado (both Food FruitOrVegetable) ; - - --- Axle is a class of Devices each of which can --- be paired with two VehicleWheels to rotate and move a RoadVehicle. -fun Axle : Class ; -fun Axle_Class : SubClass Axle Device ; - --- A disease that is caused by instances of --- Bacterium. -fun BacterialDisease : Class ; -fun BacterialDisease_Class : SubClass BacterialDisease InfectiousDisease ; - --- Any Container which is made of Fabric. -fun Bag : Class ; -fun Bag_Class : SubClass Bag Container ; - --- Any instance of Cooking where the instrument --- is an Oven. -fun Baking : Class ; -fun Baking_Class : SubClass Baking (both Cooking Heating) ; - - --- Any GamePiece which has the shape of a sphere. -fun Ball : Class ; -fun Ball_Class : SubClass Ball GamePiece ; - --- A Missile which is guided for the first stage --- of its flight but then falls to its target for the second stage. -fun BallisticMissile : Class ; -fun BallisticMissile_Class : SubClass BallisticMissile Missile ; - --- A FormText which is used in Voting. A list of --- candidates is printed on the form, and the voter selects the candidate he/she --- wants to vote for. -fun Ballot : Class ; -fun Ballot_Class : SubClass Ballot FormText ; - --- A piece of Fabric that is used in Covering an --- open wound. -fun Bandage : Class ; -fun Bandage_Class : SubClass Bandage Fabric ; - --- Any SkilledOccupation which involves working in a --- FinancialBank. -fun Banker : Ind SkilledOccupation ; - - --- A ReligiousProcess which marks the acceptance of --- the person being baptized into the ReligiousOrganization. -fun Baptizing : Class ; -fun Baptizing_Class : SubClass Baptizing (both JoiningAnOrganization ReligiousProcess) ; - - --- Offering to sell something to someone at a --- reduced price. -fun BargainSale : Class ; -fun BargainSale_Class : SubClass BargainSale Offering ; - --- Any instance of RadiatingSound which is produced --- by a Canine. -fun Barking : Class ; -fun Barking_Class : SubClass Barking RadiatingSound ; - --- A Building on a Farm that is used for keeping --- DomesticAnimals, Fodder or harvested crops. -fun Barn : Class ; -fun Barn_Class : SubClass Barn Building ; - -fun BaseballBase : Class ; - --- A BuildingLevel which satisfies two conditions, viz. it is --- lower than all of the other BuildingLevels in the same Building and it is below --- ground level. -fun Basement : Class ; -fun Basement_Class : SubClass Basement BuildingLevel ; - --- Washing the entire body of a Human or Animal. -fun Bathing : Class ; -fun Bathing_Class : SubClass Bathing Washing ; - --- A WashingDevice which is intended to be used by --- Humans for washing their bodies. Note that this class covers bathtubs, showers, --- etc. -fun BathingDevice : Class ; -fun BathingDevice_Class : SubClass BathingDevice WashingDevice ; - --- A Room that contains a WashBasin and --- possibly a Toilet. -fun Bathroom : Class ; -fun Bathroom_Room : SubClassC Bathroom Room (\R -> exists Toilet (\T -> located(var Toilet Physical ? T)(var Room Object ? R))); - - --- A thin stick which is used for OrchestralConducting. -fun Baton : Class ; -fun Baton_Class : SubClass Baton Device ; - --- Battery is a subclass of Device. Batteries are --- devices that use chemical means to store or produce electrical power. -fun Battery : Class ; -fun Battery_Class : SubClass Battery (both ElectricDevice PowerSource) ; - - --- The process of transitioning from a state of --- being Sober to a state of being Drunk. -fun BecomingDrunk : Class ; -fun BecomingDrunk_Class : SubClass BecomingDrunk PsychologicalProcess ; - --- A piece of Furniture which is primarily for sleeping. -fun Bed : Class ; -fun Bed_Class : SubClass Bed Furniture ; - --- A Room intended primarily for sleeping. -fun Bedroom : Class ; -fun Bedroom_Class : SubClass Bedroom Room ; - --- A hairy Insect, some species of which produce honey --- and/or sting. -fun Bee : Class ; -fun Bee_Class : SubClass Bee Insect ; - --- Meat that was originally part of a Cow. -fun Beef : Class ; -fun Beef_Class : SubClass Beef Meat ; - --- An AlcoholicBeverage that is prepared by fermenting --- malt and hops. -fun Beer : Class ; -fun Beer_Class : SubClass Beer AlcoholicBeverage ; - --- The TimeInterval that runs from --- NegativeInfinity to the time of the birth of Christ. -fun BeforeCommonEra : Ind TimeInterval ; - - --- The process of an Organization --- commencing operations. In the case of a Corporation, this would be --- the process of going into business. -fun BeginningOperations : Class ; -fun BeginningOperations_Class : SubClass BeginningOperations OrganizationalProcess ; - --- A PercussionInstrument that produces a single tone --- when it is struck. -fun Bell : Class ; -fun Bell_Class : SubClass Bell PercussionInstrument ; - --- A piece of Clothing that is worn around the waist --- to restrain another piece of clothing. -fun Belt : Class ; -fun Belt_Class : SubClass Belt Clothing ; - --- Any UnilateralGiving where the agent --- wills some part of his/her property to someone else upon his/her death. -fun Bequeathing : Class ; -fun Bequeathing_Class : SubClass Bequeathing UnilateralGiving ; - --- A HistoricalAccount which is concerned --- with the life of a single Human. -fun Biography : Class ; -fun Biography_Class : SubClass Biography HistoricalAccount ; - --- The production of a zygote from the fusion --- of a male and female gamete. -fun BiologicalConception : Class ; -fun BiologicalConception_Class : SubClass BiologicalConception OrganOrTissueProcess ; - --- The Class of all biological species, i.e. --- the class of all classes of Organism whose instances can interbreed. -fun BiologicalSpecies : Class ; - - --- The study of the classification, development, and --- functioning of Organisms. -fun Biology : Ind Science ; - - --- Any DiagnosticProcess which involves the examination of --- BodySubstances taken from a living Organism. -fun Biopsy : Class ; -fun Biopsy_Class : SubClass Biopsy (both DiagnosticProcess Removing) ; - - --- Any Egg that is produced by a Bird. -fun BirdEgg : Class ; -fun BirdEgg_Class : SubClass BirdEgg Egg ; - --- Any instance of Grabbing where the instrument is --- the Mouth of the agent. -fun Biting : Class ; -fun Biting_Class : SubClass Biting Grabbing ; - --- A piece of Fabric whose purpose is to keep a --- person who is in bed warm. -fun Blanket : Class ; -fun Blanket_Class : SubClass Blanket Fabric ; - --- The release of Blood from an Animal in response --- to an Injuring of some sort. -fun Bleeding : Class ; -fun Bleeding_Class : SubClass Bleeding AutonomicProcess ; - --- The Attribute that applies to Animals and Humans --- that are unable to see. -fun Blind : Ind BiologicalAttribute ; - - --- Any Process where the stomach or instestines of a --- Human or Animal become distended from excessive gas. -fun Bloating : Class ; -fun Bloating_Class : SubClass Bloating (both Increasing PathologicProcess) ; - - --- Any Maneuver in a Contest where one --- contestParticipant attempts to deny access to something that is wanted --- by another contestParticipant. -fun Blockade : Class ; -fun Blockade_Class : SubClass Blockade Maneuver ; - --- A Cell that is normally present in Blood. -fun BloodCell : Class ; -fun BloodCell_Class : SubClass BloodCell (both AnimalAnatomicalStructure Cell) ; - - --- The subclass of Blood that contains AntigenA --- and does not contain AntigenB. -fun BloodTypeA : Class ; -fun BloodTypeA_Class : SubClass BloodTypeA Blood ; - --- The subclass of Blood that contains both --- AntigenA and AntigenB. -fun BloodTypeAB : Class ; -fun BloodTypeAB_Class : SubClass BloodTypeAB Blood ; - --- The subclass of Blood that contains AntigenB --- and does not contain AntigenA. -fun BloodTypeB : Class ; -fun BloodTypeB_Class : SubClass BloodTypeB Blood ; - --- The subclass of Blood that contains neither --- AntigenA nor AntigenB. -fun BloodTypeO : Class ; -fun BloodTypeO_Class : SubClass BloodTypeO Blood ; - --- Any BodyVessel which is used to circulate --- Blood from one part of the body to another. -fun BloodVessel : Class ; -fun BloodVessel_Class : SubClass BloodVessel (both AnimalAnatomicalStructure BodyVessel) ; - - --- An Icon which is a scale model of an Artifact, --- whether the Artifact actually exists or not. -fun Blueprint : Class ; -fun Blueprint_Class : SubClass Blueprint Icon ; - --- The process of turning red in response to a --- stimulus which has a deep emotional effect. -fun Blushing : Class ; -fun Blushing_Class : SubClass Blushing AutonomicProcess ; - --- A piece of material with flat, rectangular sides. --- Note that boards and blocks are lumped into a single concept, because the --- difference between these notions cannot be precisely defined. -fun BoardOrBlock : Class ; -fun BoardOrBlock_Class : SubClass BoardOrBlock Artifact ; - --- Getting on a Vehicle, e.g. getting into an --- Automobile, boarding an Aircraft, etc. -fun Boarding : Class ; -fun Boarding_Class : SubClass Boarding Translocation ; - --- One of the levels of a WaterVehicle, e.g. the --- upper deck and lower deck of small boats with a cabin. -fun BoatDeck : Class ; -fun BoatDeck_Class : SubClass BoatDeck Artifact ; - --- BodyJunctions where different parts of the same --- Skeleton come together. -fun BodyJoint : Class ; -fun BodyJoint_Class : SubClass BodyJoint BodyJunction ; - --- A BodyOfWater is a connected body of --- water with established boundaries marked by either geographical features --- or conventional borders. -fun BodyOfWater : Class ; -fun BodyOfWater_Class : SubClass BodyOfWater SelfConnectedObject ; - --- A weapon that explodes in order to cause damage. -fun Bomb : Class ; -fun Bomb_Class : SubClass Bomb (both ExplosiveDevice Weapon) ; - - --- Any MilitaryAircraft whose purpose is to deliver --- ExplosiveDevices. -fun Bomber : Class ; -fun Bomber_Class : SubClass Bomber MilitaryAircraft ; - --- An act of Destruction where the thing destroyed --- is destroyed by means of an explosive device. -fun Bombing : Class ; -fun Bombing_Class : SubClass Bombing Destruction ; - --- BotanicalTree is an imprecise term --- for a perennial woody plant that is larger than a bush or shrub, --- generally understood to describe a large growth having one main trunk --- with few or no branches projecting from its base, a well_developed crown --- of foliage, and a height at maturity of at least 12 feet. -fun BotanicalTree : Class ; -fun BotanicalTree_Class : SubClass BotanicalTree FloweringPlant ; - --- A Container whose top is narrower than its bottom, which --- has no handle, and which is intended to store Liquids. -fun Bottle : Class ; -fun Bottle_Class : SubClass Bottle FluidContainer ; - --- Any downward motion of the body that indicates respect --- for or submission to another Agent. -fun Bowing : Class ; -fun Bowing_Class : SubClass Bowing (both Gesture (both Inclining MotionDownward)) ; - - --- Any six_sided Container whose sides are --- rectangular in shape. -fun Box : Class ; -fun Box_Class : SubClass Box Container ; - --- A HumanChild who is Male. -fun Boy : Class ; -fun Boy_Class : SubClass Boy (both HumanChild Man) ; - - --- The seat of the central nervous system. -fun Brain : Class ; -fun Brain_Class : SubClass Brain (both AnimalAnatomicalStructure Organ) ; - - --- A DistilledAlcoholicBeverage that is prepared by --- distilling Wine. -fun Brandy : Class ; -fun Brandy_Class : SubClass Brandy DistilledAlcoholicBeverage ; - --- A MetallicAlloy made from Copper and Zinc. -fun Brass : Class ; -fun Brass_Class : SubClass Brass MetallicAlloy ; - --- Food that consists largely of grain flour --- and water. Note that this class covers crackers, cookies, as well as any --- self_connected instance of bread, whether it is a loaf, a slice, a chunk --- of bread, etc. -fun BreadOrBiscuit : Class ; -fun BreadOrBiscuit_Class : SubClass BreadOrBiscuit PreparedFood ; - --- A subclass of Attributes for --- characterizing the breakability of CorpuscularObjects. -fun BreakabilityAttribute : Class ; -fun BreakabilityAttribute_Class : SubClass BreakabilityAttribute InternalAttribute ; - --- The paired Organs which are part of the chests --- of Primates. -fun Breast : Class ; -fun Breast_Class : SubClass Breast (both AnimalAnatomicalStructure Organ) ; - - --- A block of fired Clay that is used in Constructing. -fun Brick : Class ; -fun Brick_Class : SubClass Brick BoardOrBlock ; - --- A MilitaryGeneral that ranks below --- a MajorGeneral. -fun BrigadierGeneral : Class ; -fun BrigadierGeneral_Class : SubClass BrigadierGeneral MilitaryGeneral ; - --- BroadcastNetwork is the subclass of --- CommunicationSystems consisting of BroadcastingStations that are linked --- electronically and managed or owned by one organization. -fun BroadcastNetwork : Class ; -fun BroadcastNetwork_Class : SubClass BroadcastNetwork CommunicationSystem ; - --- A Series of episodes that are broadcast --- on television or radio. -fun BroadcastProgram : Class ; -fun BroadcastProgram_Class : SubClass BroadcastProgram Series ; - --- Disseminating information by using a --- CommunicationDevice that radiates RadioEmissions. -fun Broadcasting : Class ; -fun Broadcasting_Class : SubClass Broadcasting (both Disseminating RadioEmission) ; - - --- Any BodyVessel which is located in a --- Lung and which carries oxygen from the trachea to the alveoli. -fun BronchialDuct : Class ; -fun BronchialDuct_Class : SubClass BronchialDuct (both AnimalAnatomicalStructure BodyVessel) ; - - --- A GroupOfAnimals that are all born at the same time --- and to the same parents. -fun Brood : Class ; -fun Brood_Class : SubClass Brood GroupOfAnimals ; - --- A BrushOrComb whose purpose is to remove dirt and other --- small particles from floors. -fun Broom : Class ; -fun Broom_Class : SubClass Broom BrushOrComb ; - --- A SecondaryColor that resembles the color of wood or --- of soil. -fun Brown : Ind SecondaryColor ; - - --- A Device which consists of a handle and bristles and --- whose purpose is to remove particles from something or to smooth something out. -fun BrushOrComb : Class ; -fun BrushOrComb_Class : SubClass BrushOrComb Device ; - --- A globe which has a Liquid surface and which contains --- a Gas. -fun Bubble : Class ; -fun Bubble_Class : SubClass Bubble CorpuscularObject ; - --- A HoofedMammal with long hair whose habitat is the --- plains of NorthAmerica. -fun Buffalo : Class ; -fun Buffalo_Class : SubClass Buffalo HoofedMammal ; - --- A HornInstrument that has no valves. -fun Bugle : Class ; -fun Bugle_Class : SubClass Bugle HornInstrument ; - --- The story or level of a building, e.g. the Basement, --- the Attic, the ground level, the fourteenth floor, etc. -fun BuildingLevel : Class ; -fun BuildingLevel_Class : SubClass BuildingLevel StationaryArtifact ; - --- A Cow that is Male. -fun Bull : Class ; -fun Bull_Cow : SubClassC Bull Cow (\B -> attribute(var Cow Object ? B)(el SexAttribute Attribute ? Male)); - - --- A Projectile that is designed to be fired by a Gun. -fun Bullet : Class ; -fun Bullet_Class : SubClass Bullet Projectile ; - --- A large Bee which lacks a stinger. -fun BumbleBee : Class ; -fun BumbleBee_Class : SubClass BumbleBee Bee ; - --- A small Cave created by an Animal for the purpose --- of inhabiting it. -fun Burrow : Class ; -fun Burrow_Class : SubClass Burrow Cave ; - --- Putting something in the ground and then covering --- it with Soil. -fun Burying : Class ; -fun Burying_Class : SubClass Burying (both Digging Putting) ; - - --- Bus is the subclass of SelfPoweredRoadVehicles --- that can transport large numbers of passengers (i.e., dozens) at one --- time. It can be distinguished from a van which is --- designed to carry less than a dozen people. -fun Bus : Class ; -fun Bus_Class : SubClass Bus SelfPoweredRoadVehicle ; - --- An area, often, though not necessarily with --- seats or some kind of minimal shelter, where people gather to meet and --- board a bus. It must border a road. -fun BusStop : Class ; -fun BusStop_Class : SubClass BusStop GeographicArea ; - --- Any Contest where the contestParticipants --- are Corporations and the aim is to win as many customers as possible. -fun BusinessCompetition : Class ; -fun BusinessCompetition_Class : SubClass BusinessCompetition Contest ; - --- Any of a class of people in a professional --- occupation such as banking, finance, management, or engineering. This is --- distinguished from blue collar jobs that primarily involve manual labor --- rather than thought as the effort expended to derive remuneration. It is --- also distinguished from professions that may be outwardly similar but are --- done in a non_profit organization. -fun BusinessPerson : Ind OccupationalRole ; - - --- An emulsion of fat which is produced by churning Milk. -fun Butter : Class ; -fun Butter_Class : SubClass Butter (both DairyProduct PreparedFood) ; - - --- An AttachingDevice that is used on Clothing. -fun Button : Class ; -fun Button_Class : SubClass Button AttachingDevice ; - --- Any Restaurant which does not offer table service. --- Food is selected and purchased at a central counter. -fun Cafeteria : Class ; -fun Cafeteria_Class : SubClass Cafeteria Restaurant ; - --- A young Cow, i.e. a Cow that is NonFullyFormed. -fun Calf : Class ; -fun Calf_Cow : SubClassC Calf Cow (\C -> attribute(var Cow Object ? C)(el DevelopmentalAttribute Attribute ? NonFullyFormed)); - - --- A Device which is capable of Photographing. -fun Camera : Class ; -fun Camera_Class : SubClass Camera Device ; - --- A MobileResidence consisting of tents and other temporary --- living quarters that is constructed on an undeveloped LandArea. -fun Camp : Class ; -fun Camp_Class : SubClass Camp MobileResidence ; - --- A LandArea whose purpose is to have MobileResidences --- (e.g. recreational vehicles, mobile homes, Tents, etc.) located there. -fun Campground : Class ; -fun Campground_Class : SubClass Campground LandArea ; - --- A DiseaseOrSyndrome characterized by pathologic and --- uncontrolled cell division that results in a Tumor. -fun Cancer : Ind DiseaseOrSyndrome ; - - --- An LightFixture that consists of Wax and a wick, --- which is lit with a flame. -fun Candle : Class ; -fun Candle_Class : SubClass Candle LightFixture ; - --- A very small BloodVessel that connects arterioles --- (very small Arteries) with venules (very small Veins). -fun Capillary : Class ; -fun Capillary_Class : SubClass Capillary BloodVessel ; - --- A commissioned MilitaryOfficer who ranks --- above a Lieutenant but below a MajorOfficer. -fun CaptainOfficer : Class ; -fun CaptainOfficer_Class : SubClass CaptainOfficer MilitaryOfficer ; - --- A Capturing is a ChangeOfControl event in which an Agent --- gains physical control over another Agent. -fun Capturing : Class ; -fun Capturing_Class : SubClass Capturing ChangeOfControl ; - --- A car bombing is an attack in which a car is --- used as the delivery mechanism for a bomb. The car is usually destroyed --- in the blast if the bomb detonates successfully. -fun CarBombing : Class ; -fun CarBombing_Class : SubClass CarBombing Bombing ; - --- Any Organization whose purpose is to --- provide medical care for for Humans who reside there, either permanently --- or temporarily. -fun CareOrganization : Class ; -fun CareOrganization_Class : SubClass CareOrganization Organization ; - --- A Vehicle that is designed to --- carry Objects. Note that Vehicles that are primarily designed to carry --- people rather than cargo may still carry cargo. For example, a passenger sedan --- might be capable of carrying lumber strapped to the roof. For this --- reason, PassengerVehicle and CargoVehicle are not disjoint. -fun CargoVehicle : Class ; -fun CargoVehicle_Class : SubClass CargoVehicle Vehicle ; - --- Any occupation that involves creating and repairing --- structural and decorative portions of Buildings that are made chiefly of Wood. --- This does not include plumbing, roofing, electrical, foundation and site work. -fun Carpenter : Ind OccupationalTrade ; - - --- Making Buildings out of Wood. -fun Carpentry : Class ; -fun Carpentry_Class : SubClass Carpentry Making ; - --- Any Maneuver in a Game which results in a --- situation where the agent grasps the Ball. -fun Catching : Class ; -fun Catching_Class : SubClass Catching (both Maneuver Touching) ; - - --- Any Process whose result is that the --- patient of the process is happy. -fun CausingHappiness : Class ; -fun CausingHappiness_Class : SubClass CausingHappiness Process ; - --- Any Process whose result is that the --- patient of the process is in Pain. -fun CausingPain : Class ; -fun CausingPain_Class : SubClass CausingPain CausingUnhappiness ; - --- Any Process whose result is that the --- patient of the process is unhappy. -fun CausingUnhappiness : Class ; -fun CausingUnhappiness_Class : SubClass CausingUnhappiness Process ; - --- MilitaryUnits composed primarily of Soldiers --- who are mounted, i.e. who perform their combat missions from a Horse or --- Vehicle. -fun CavalryUnit : Class ; -fun CavalryUnit_Class : SubClass CavalryUnit MilitaryUnit ; - --- A Cave is a naturally formed opening beneath --- the surface of the Earth, generally formed by dissolution of carbonate --- bedrock. Caves may also form by erosion of coastal bedrock, partial --- melting of glaciers, or solidification of lava into hollow tubes. -fun Cave : Class ; - - --- The process of an Organization --- ceasing operations, i.e. its folding or going out of business in --- some other fashion. -fun CeasingOperations : Class ; -fun CeasingOperations_Class : SubClass CeasingOperations OrganizationalProcess ; - --- A StationaryArtifact that is the top surface --- of a Room. -fun Ceiling : Class ; -fun Ceiling_Class : SubClass Ceiling StationaryArtifact ; - --- Anyone who is known by a large number of people, --- either explicitly by name, or by action. -fun Celebrity : Class ; - - --- The part of the Cell that contains DNA and --- RNA. -fun CellNucleus : Class ; -fun CellNucleus_Class : SubClass CellNucleus OrganicObject ; - --- The main component of Plant Tissue. -fun Cellulose : Class ; -fun Cellulose_Class : SubClass Cellulose (both Carbohydrate PlantSubstance) ; - - --- A LandArea which is used for burying the dead. -fun Cemetery : Class ; -fun Cemetery_Class : SubClass Cemetery LandArea ; - --- Any instance of Rotating where there is --- Motion away from the center of the Rotating. -fun CentrifugalMotion : Class ; -fun CentrifugalMotion_Class : SubClass CentrifugalMotion Rotating ; - --- Any instance of Rotating where there is --- Motion towards the center of the Rotating. -fun CentripetalMotion : Class ; -fun CentripetalMotion_Class : SubClass CentripetalMotion Rotating ; - --- The TimeDuration of 100 years. -fun CenturyDuration : Ind UnitOfDuration ; - - --- Any Seed which is produced by the cereal grasses, --- e.g. rice, corn, wheat, etc. -fun CerealGrain : Class ; -fun CerealGrain_Class : SubClass CerealGrain (both Food Seed) ; - - --- A Seat that is designed to accommodate a single --- Human. -fun Chair : Class ; -fun Chair_Class : SubClass Chair Seat ; - --- A ChangeOfControl is an event in which an agent gains --- physical control over some object that was previously controlled --- by a different agent. -fun ChangeOfControl : Class ; -fun ChangeOfControl_Class : SubClass ChangeOfControl AchievingControl ; - --- Any instance of a process of --- RemovingClothing and Dressing. -fun ChangingClothing : Class ; -fun ChangingClothing_Class : SubClass ChangingClothing Transfer ; - --- A numbered and/or titled --- section of a Book, which is typically indicated in a table of --- contents for the Book. -fun Chapter : Class ; -fun Chapter_Class : SubClass Chapter Article ; - --- An activity of a fee being charged -fun ChargingAFee : Class ; -fun ChargingAFee_Class : SubClass ChargingAFee FinancialTransaction ; - --- An Icon which depicts one or more quantities. -fun Chart : Class ; -fun Chart_Class : SubClass Chart Icon ; - --- An area on or very near a border, usually along --- a road connecting two regions, where MilitaryPersons or Police --- restrict the flow of traffic in order to extract tarrifs, deny movement to --- certain kinds of people or goods, or other enforement actions. Because of --- the power relationship involved, such areas are often the site of illegal --- activities conducted by the officials in order to extract favors or --- bribes. -fun Checkpoint : Class ; -fun Checkpoint_Class : SubClass Checkpoint GeographicArea ; - --- A bitter CompoundSubstance that is capable of --- reacting with a ChemicalBase and forming a ChemicalSalt. -fun ChemicalAcid : Class ; -fun ChemicalAcid_Class : SubClass ChemicalAcid CompoundSubstance ; - --- An attack against people or property in which --- a chemical agent is used as the active ingredient of the attack. -fun ChemicalAttack : Class ; -fun ChemicalAttack_Class : SubClass ChemicalAttack ViolentContest ; - --- A CompoundSubstance that is capable of --- reacting with a ChemicalAcid and forming a ChemicalSalt. -fun ChemicalBase : Class ; -fun ChemicalBase_Class : SubClass ChemicalBase CompoundSubstance ; - --- The Attribute of being in a chemically --- stable state, i.e. the relative proportions of resources and results will --- not longer change. -fun ChemicalEquilibrium : Ind InternalAttribute ; - - --- Any ChemicalProcess where Electrons --- are added to the substance undergoing the ChemicalProcess. -fun ChemicalReduction : Class ; -fun ChemicalReduction_Class : SubClass ChemicalReduction ChemicalSynthesis ; - --- A bitter CompoundSubstance that is formed in a --- chemical reaction of a ChemicalBase with a ChemicalAcid. -fun ChemicalSalt : Class ; -fun ChemicalSalt_Class : SubClass ChemicalSalt CompoundSubstance ; - --- The study of the compositions, properties, and --- reactions of Substances. -fun Chemistry : Ind Science ; - - --- Any piece of Furniture which is also a --- Container, e.g. a chest of drawers, a memory chest, an armoire, etc. -fun ChestOrCabinet : Class ; -fun ChestOrCabinet_Class : SubClass ChestOrCabinet (both Container Furniture) ; - - --- Breaking up or mashing Food with one's teeth. -fun Chewing : Class ; -fun Chewing_Class : SubClass Chewing BodyMotion ; - --- A subclass of Bird that is raised for its meat --- and for its eggs. -fun Chicken : Class ; -fun Chicken_Class : SubClass Chicken Poultry ; - --- Meat that was originally part of a Chicken. -fun ChickenMeat : Class ; -fun ChickenMeat_Class : SubClass ChickenMeat Meat ; - --- A thin passageway through which Smoke from a controlled --- fire is conducted Outside of a Building or Room. -fun Chimney : Class ; -fun Chimney_Class : SubClass Chimney (both Device StationaryArtifact) ; - - --- A part of the Face which protrudes slightly and which --- is lower than all other parts of the Face. -fun Chin : Class ; -fun Chin_Class : SubClass Chin (both AnimalAnatomicalStructure BodyPart) ; - - --- A Steroid that is produced by the Liver and that --- is believed to be closely associated with various cardiological disorders. -fun Cholesterol : Class ; -fun Cholesterol_Class : SubClass Cholesterol (both AnimalSubstance Steroid) ; - - --- Planning that results in a sequence of dance --- steps that are executed as part of a Performance. -fun Choreographing : Class ; -fun Choreographing_Class : SubClass Choreographing Planning ; - --- Any instance of the collection of writings which --- is regarded as scripture by those who embrace Christianity. -fun ChristianBible : Class ; -fun ChristianBible_Class : SubClass ChristianBible Book ; - --- Four books in the New Testament of the --- ChristianBible that describe the life and teachings of Jesus Christ --- and that are referred to, respectively, as Matthew, Mark, Luke, and John. -fun ChristianGospel : Class ; -fun ChristianGospel_Class : SubClass ChristianGospel Text ; - --- Any ReligiousService that is conducted by --- members of Christianity. -fun ChristianService : Class ; -fun ChristianService_Class : SubClass ChristianService ReligiousService ; - --- Processes of Separating a LiquidMixture or --- a GasMixture into some or all of the PureSubstances that comprise it. -fun Chromatography : Class ; -fun Chromatography_Class : SubClass Chromatography Separating ; - --- A tube of thin paper containing finely ground --- tobacco that is smoked. -fun CigarOrCigarette : Class ; -fun CigarOrCigarette_Class : SubClass CigarOrCigarette SmokingDevice ; - --- A slice of a Circle, i.e. any --- ClosedTwoDimensionalFigure which consists of two Radii and the arc of --- the Circle that they bound. -fun CircleSector : Class ; -fun CircleSector_Class : SubClass CircleSector ClosedTwoDimensionalFigure ; - --- Removing the foreskin of the penis. This is --- usually performed on infants, but is occasionally performed on adolescents --- and adults, either for medical reasons, or after religious conversion. It is --- often conducted as a religious rite, since it is prescribed by both the --- Jewish and Muslim religions, although it is prevalent also as a social --- norm in the UnitedStates and other Nations. -fun Circumision : Class ; -fun Circumision_Class : SubClass Circumision (both Removing Surgery) ; - - --- (CitizenryFn ?AREA) denotes the --- GroupOfPeople who are legal and permanent residents of the --- GeopoliticalArea ?AREA. -fun CitizenryFn : El GeopoliticalArea -> Ind GroupOfPeople ; - - --- A square_shaped area surrounded by Roadways --- which is part of a City and typically contains Buildings. -fun CityBlock : Class ; -fun CityBlock_Class : SubClass CityBlock LandArea ; - --- Any geopoliticalSubdivision of a City. -fun CityDistrict : Class ; -fun CityDistrict_Class : SubClass CityDistrict GeopoliticalArea ; - --- CityGovernment is the class of --- governments of Cities. -fun CityGovernment : Class ; -fun CityGovernment_Class : SubClass CityGovernment Government ; - --- A War in which the fighting GeopoliticalAreas --- are both part of the same Nation. -fun CivilWar : Class ; -fun CivilWar_Class : SubClass CivilWar War ; - --- Someone who is not a member of an active --- MilitaryOrganization. -fun Civilian : Class ; -fun Civilian_Class : SubClass Civilian SocialRole ; - --- An AttachingDevice which is designed to attach --- two things together by means of a movable part which can be tightened --- or loosened. -fun Clamp : Class ; -fun Clamp_Class : SubClass Clamp AttachingDevice ; - --- Bringing the Hands together repeatedly to make --- a loud noise. -fun Clapping : Class ; -fun Clapping_Class : SubClass Clapping (both HandGesture (both Impacting RadiatingSound)) ; - - --- A ClassificationScheme is --- a conceptual structure, an abstract arrangement of concepts and --- the relations that link them. -fun ClassificationScheme : Class ; -fun ClassificationScheme_Class : SubClass ClassificationScheme Proposition ; - --- Any Room in a School where education --- takes place. -fun Classroom : Class ; -fun Classroom_Class : SubClass Classroom Room ; - --- The Profession of being in charge of or ministering --- to a ReligousOrganization. -fun Cleric : Class ; -fun Cleric_Class : SubClass Cleric ReligiousPosition ; - --- The class of Positions where the position --- holder is responsible for clerical duties, e.g. typing documents, answering --- phones, keeping schedules, etc. -fun ClericalSecretary : Ind SkilledOccupation ; - - --- A piece of Clothing that covers the whole body --- except the face (and possibly entire head), hands, and feet. -fun Cloak : Class ; -fun Cloak_Class : SubClass Cloak Clothing ; - --- Any Device that measures and represents TimeDuration --- or TimePosition. -fun Clock : Class ; -fun Clock_Class : SubClass Clock MeasuringDevice ; - --- A relatively small Room used for storage. -fun Closet : Class ; -fun Closet_Class : SubClass Closet Room ; - --- The Class of Processes where an aperture is --- closed in an Object. -fun Closing : Class ; -fun Closing_Class : SubClass Closing Motion ; - --- Completing a Contract of some sort, --- e.g. the purchase of a house, closing a business deal, etc. -fun ClosingContract : Class ; -fun ClosingContract_Class : SubClass ClosingContract Committing ; - --- The EyeMotion of tensing the eye lids so that --- the corneas are not exposed to light. -fun ClosingEyes : Class ; -fun ClosingEyes_Class : SubClass ClosingEyes (both Closing EyeMotion) ; - - --- A Collection of instances of Clothing that --- are designed to be worn together. -fun ClothingSuit : Class ; -fun ClothingSuit_Class : SubClass ClothingSuit Collection ; - --- Any occupation that involves training an athlete or a --- sports team. -fun Coach : Ind SkilledOccupation ; - - --- CoastGuard is the subclass of GovernmentOrganizations --- that enforce the maritime laws of a Nation and guard its Seacoast. This may be --- a military or quasi_military organization. -fun CoastGuard : Class ; -fun CoastGuard_Class : SubClass CoastGuard GovernmentOrganization ; - --- Clothing that has sleeves and covers from the neck --- down. Coats are intended to be worn outdoors. -fun Coat : Class ; -fun Coat_Class : SubClass Coat OutdoorClothing ; - --- A FruitOrVegetable that is produced by a type of palm --- and has an edible white meat. -fun Coconut : Class ; -fun Coconut_Class : SubClass Coconut (both Food FruitOrVegetable) ; - - --- A Beverage which is prepared by infusing ground, --- roasted coffee beans into hot water. -fun Coffee : Class ; -fun Coffee_Class : SubClass Coffee (both Beverage PreparedFood) ; - - --- A Container for a HumanCorpse. -fun Coffin : Class ; -fun Coffin_Class : SubClass Coffin Container ; - --- Any abstract ArtWork that is produced by arranging --- bits of paper or photographs. -fun Collage : Class ; -fun Collage_Class : SubClass Collage ArtWork ; - --- A piece of Clothing that fits around the Neck. --- A Collar is always part of a Coat or a Shirt. -fun Collar : Class ; -fun Collar_Class : SubClass Collar Clothing ; - --- A School which admits students who have --- graduated from high school and which confers a bachelor's degree, --- normally requiring four years of study. Note that a College does --- not confer any graduate degrees. For institutions that confer both --- bachelor's and graduate degrees, the concept University should be --- used. -fun College : Class ; -fun College_Class : SubClass College PostSecondarySchool ; - --- The Positions of a student at a PostSecondarySchool --- who has completed less than one year at the school. -fun CollegeFreshman : Ind CollegeStudentPosition ; - - --- The Positions of a student at a PostSecondarySchool --- who has completed at least two years and less than three years at the school. -fun CollegeJunior : Ind CollegeStudentPosition ; - - --- The Positions of a student at a PostSecondarySchool --- who has completed at least three years and less than four years at the school. -fun CollegeSenior : Ind CollegeStudentPosition ; - - --- The Positions of a student at a PostSecondarySchool --- who has completed at least one year and less than two years at the school. -fun CollegeSophomore : Ind CollegeStudentPosition ; - - --- Any Position at a PostSecondarySchool --- which is occupied exclusively by students. -fun CollegeStudentPosition : Class ; -fun CollegeStudentPosition_Class : SubClass CollegeStudentPosition Position ; - --- A commissioned MilitaryOfficer who ranks above --- a lieutenant colonel and below a brigadier general. -fun Colonel : Class ; -fun Colonel_Class : SubClass Colonel MilitaryOfficer ; - --- Positions which involve performing stand_up comedy, which --- is recorded and/or performed in front of live audiences. -fun Comedian : Ind EntertainmentProfession ; - - --- A Building which is intended for --- organizational activities, e.g. retail or wholesale selling, manufacturing, --- office work, etc. -fun CommercialBuilding : Class ; -fun CommercialBuilding_Class : SubClass CommercialBuilding (both Building PlaceOfCommerce) ; - - --- CommercialShipping is the subclass of --- Transportation events in which a commercial agent provides transportation --- of goods for remuneration. -fun CommercialShipping : Class ; -fun CommercialShipping_Class : SubClass CommercialShipping (both CommercialService Shipping) ; - - --- A Room or suite of Rooms intended for --- clerical and/or professional work of a single Organization. -fun CommercialUnit : Class ; -fun CommercialUnit_Class : SubClass CommercialUnit PlaceOfCommerce ; - --- A small, temporary Organization whose purpose --- is to investigate some issue. -fun Commission : Class ; -fun Commission_Class : SubClass Commission Organization ; - --- The TimeInterval that runs from the supposed --- time of the death of Christ to PositiveInfinity. -fun CommonEra : Ind TimeInterval ; - - --- A CommunicationDevice is a Device --- which serves at the instrument in a Communication Process by allowing --- the communicated message to be conveyed between the participants. -fun CommunicationDevice : Class ; - - --- CommunicationOrganization is --- the subclass of Organizations that manage Communications over physical --- infrastructure owned or leased by the organization. Such organizations --- may also produce and disseminate information, entertainment, or other --- content. Also see MediaOrganization. -fun CommunicationOrganization : Class ; -fun CommunicationOrganization_Class : SubClass CommunicationOrganization Organization ; - --- CommunicationSystem is a complex --- system with various components, enabling communication (in some --- medium) between points in a specific area, whether local or worldwide. -fun CommunicationSystem : Class ; -fun CommunicationSystem_Class : SubClass CommunicationSystem Collection ; - --- Any PoliticalParty that advocates for a --- CommunistState. -fun CommunistParty : Class ; -fun CommunistParty_Class : SubClass CommunistParty PoliticalParty ; - --- A Container which is part of another Container, --- e.g. a drawer, a zippered pouch in a piece of luggage, a compartment in a TV --- dinner, etc. -fun Compartment : Class ; -fun Compartment_Class : SubClass Compartment Container ; - --- A Device that indicates the direction of the --- various DirectionalAttributes with respect to the device. -fun Compass : Class ; -fun Compass_Class : SubClass Compass (both ContentBearingObject Device) ; - - --- ContentDevelopment which results in a --- MusicalComposition. -fun Composing : Class ; -fun Composing_Class : SubClass Composing ContentDevelopment ; - --- ContentDevelopment which results in a --- MusicalComposition. -fun ComposingMusic : Class ; -fun ComposingMusic_Class : SubClass ComposingMusic ContentDevelopment ; - --- Locating something in such a way that it cannot --- be seen. -fun Concealing : Class ; -fun Concealing_Class : SubClass Concealing Putting ; - --- A ResidentialBuilding containing --- CondominiumUnits. -fun CondominiumBuilding : Class ; -fun CondominiumBuilding_Class : SubClass CondominiumBuilding ResidentialBuilding ; - --- A SingleFamilyResidence that may be owned --- by a member of the SocialUnit that lives there. -fun CondominiumUnit : Class ; -fun CondominiumUnit_SingleFamilyResidence : SubClassC CondominiumUnit SingleFamilyResidence (\UNIT -> exists Human (\PERSON -> and ( home (var Human Human ? PERSON)(var SingleFamilyResidence PermanentResidence ? UNIT))( possesses(var Human Agent ? PERSON)(var SingleFamilyResidence Object ? UNIT)))); - - --- The class of ThreeDimensionalFigures which are --- produced by rotating a RightTriangle around its RightAngle. -fun Cone : Class ; -fun Cone_Class : SubClass Cone ThreeDimensionalFigure ; - --- Any Soldier that served on the confederate side --- during the American Civil War. ConfederateSoldier Any Soldier that served on the --- confederate side during the American Civil War. -fun ConfederateSoldier : Class ; -fun ConfederateSoldier_Class : SubClass ConfederateSoldier Soldier ; - --- The eleven states of the UnitedStates --- that tried to secede from the UnitedStates. -fun ConfederateStatesOfAmerica : Ind GeopoliticalArea ; - - --- Any ExpressingApproval to a person for --- something that the person did in the past and that is regarded as being --- to the benefit of the person congratulated. -fun Congratulating : Class ; -fun Congratulating_Class : SubClass Congratulating ExpressingApproval ; - --- A CompoundSubstance that results from --- the ChemicalSynthesis of two or more CompoundSubstances. -fun ConjugatedSubstance : Class ; -fun ConjugatedSubstance_Class : SubClass ConjugatedSubstance CompoundSubstance ; - --- An AlphabeticCharacter that denotes a speech sound --- that results in audible friction when it is pronounced. -fun Consonant : Class ; -fun Consonant_Class : SubClass Consonant AlphabeticCharacter ; - --- A Snake that lacks venom and kills its --- prey by crushing it to death. -fun ConstrictorSnake : Class ; -fun ConstrictorSnake_Class : SubClass ConstrictorSnake Snake ; - --- Any Holder whose purpose is to contain --- something else. Note that Container is more specific in meaning --- than Holder, because a Container must have a Hole that is at --- least partially filled by the thing contained. -fun Container : Class ; -fun Container_Class : SubClass Container Holder ; - --- ContainerEmpty is the Attribute of a --- Container that is empty. -fun ContainerEmpty : Ind RelationalAttribute ; - - --- ContainerFull is the Attribute of a --- Container that is full to capacity. -fun ContainerFull : Ind RelationalAttribute ; - - --- Devices which permit sexual intercourse but --- which reduce the likelihood of conception. -fun ContraceptiveDevice : Class ; -fun ContraceptiveDevice_Class : SubClass ContraceptiveDevice Device ; - --- A group of vehicles that all are being driven --- in formation (e.g., lines, rows, columns) to the same destination. --- That destination may be an intermediate destination on the way to a --- final destination for some of the vehicles however. This is --- distinguished from vehicles that have no common purpose, such as --- traffic on a freeway. This includes cases where some of the agents --- driving the vehicles intend to reach a point but fail to do so. -fun Convoy : Class ; -fun Convoy_Class : SubClass Convoy Collection ; - --- A Device whose purpose is Cooling something, --- e.g. air conditioners, refrigerators, freezers, etc. -fun CoolingDevice : Class ; -fun CoolingDevice_Class : SubClass CoolingDevice Device ; - --- Making a copy of something. -fun Copying : Class ; -fun Copying_Class : SubClass Copying Making ; - --- A GovernmentOfficer who investigates deaths that are --- suspected of being due to something other than natural causes. -fun Coroner : Ind GovernmentOfficer ; - - --- A noncomissioned MilitaryOfficer. -fun Corporal : Class ; -fun Corporal_Class : SubClass Corporal MilitaryOfficer ; - --- Instances of LinguisticCommunication which --- are achieved by means of Texts that are mailed between the persons --- communicating with one another. -fun Corresponding : Class ; -fun Corresponding_Class : SubClass Corresponding LinguisticCommunication ; - --- Fibers from the cotton plant that are used in --- Making CottonFabric. -fun Cotton : Class ; -fun Cotton_Class : SubClass Cotton PlantAnatomicalStructure ; - --- Any Fabric that is made entirely out of Cotton. -fun CottonFabric : Class ; -fun CottonFabric_Class : SubClass CottonFabric Fabric ; - --- Any Room whose purpose is to realize --- JudicialProcesses. -fun CourtRoom : Class ; -fun CourtRoom_Class : SubClass CourtRoom Room ; - --- A domesticated HoofedMammal that is raised for milk --- and beef, and is also used for work. -fun Cow : Class ; -fun Cow_Class : SubClass Cow (both DomesticAnimal HoofedMammal) ; - - --- Crane is a subclass of mechanical Devices --- that consist of a HoistingDevice on a moveable boom, designed to --- assist in moving heavy loads. -fun Crane : Class ; -fun Crane_Class : SubClass Crane MaterialHandlingEquipment ; - --- Creek is the class of small streams of fresh --- water flowing through land, usually into a River. -fun Creek : Class ; -fun Creek_Class : SubClass Creek (both BodyOfWater (both FreshWaterArea StreamWaterArea)) ; - - --- Any IntentionalProcess that violates a Law. -fun CriminalAction : Class ; -fun CriminalAction_Class : SubClass CriminalAction IntentionalProcess ; - --- A GroupOfPeople which exists (partially or --- wholly) for the purpose of CriminalAction. -fun CriminalGang : Class ; -fun CriminalGang_Class : SubClass CriminalGang GroupOfPeople ; - --- A LandArea which is dedicated to --- Agriculture, e.g. Lawns, gardens, and fields for growing crops. -fun CultivatedLandArea : Class ; -fun CultivatedLandArea_Class : SubClass CultivatedLandArea LandArea ; - --- A raised concrete or asphalt structure that connects a --- Sidewalk with a Roadway. -fun Curb : Class ; -fun Curb_Class : SubClass Curb StationaryArtifact ; - --- Any instance of Currency that is made --- of paper. -fun CurrencyBill : Class ; -fun CurrencyBill_Class : SubClass CurrencyBill Currency ; - --- Any instance of Currency that is made --- of Metal. -fun CurrencyCoin : Class ; -fun CurrencyCoin_Class : SubClass CurrencyCoin Currency ; - --- A piece of Fabric whose purpose is Covering a --- Window so as to keep out the light or prevent people from seeing inside. -fun Curtain : Class ; -fun Curtain_Class : SubClass Curtain (both Fabric WindowCovering) ; - - --- Any Device whose purpose is Cutting something --- else. This class covers knives of all times, axes, saws, razors, chisels etc. -fun CuttingDevice : Class ; -fun CuttingDevice_Class : SubClass CuttingDevice Device ; - --- The class of ThreeDimensionalFigures such that --- all GeometricPoints that make up the Cylinder are equidistant from a --- OneDimensionalFigure, known as the axis of the Cylinder. -fun Cylinder : Class ; -fun Cylinder_Class : SubClass Cylinder ThreeDimensionalFigure ; - -fun DairyProduct : Class ; -fun DairyProduct_Class : SubClass DairyProduct AnimalAgriculturalProduct ; --- A FruitOrVegetable that is produced by the date --- palm. -fun DateFruit : Class ; -fun DateFruit_Class : SubClass DateFruit (both Food FruitOrVegetable) ; - - --- A School that does not board its students, i.e. --- students attend classes during the day and then return to a private residence --- for the night. -fun DaySchool : Class ; -fun DaySchool_Class : SubClass DaySchool School ; - --- The class of TimeIntervals that begin at Sunrise --- and end at Sunset. -fun DayTime : Class ; -fun DayTime_Class : SubClass DayTime TimeInterval ; - --- Any Position within a ReligiousOrganization that is held --- by a layman, which is part_time, and which involves assisting a Cleric. -fun Deacon : Class ; -fun Deacon_Class : SubClass Deacon PartTimePosition ; - --- The Attribute that applies to Animals and Humans --- that are unable to hear. -fun Deaf : Ind BiologicalAttribute ; - - --- A Contest where each participant holds a different --- view regarding some issue, and each participant attempts to prove, by --- rhetoric or evidence, that his/her own views about a particular matter are --- correct and/or that the views of the other participants are incorrect. -fun Debating : Class ; -fun Debating_Class : SubClass Debating (both Contest LinguisticCommunication) ; - - --- Getting off a Vehicle, e.g. getting out of an --- Automobile, deplaning, getting off a WaterVehicle, etc. -fun Deboarding : Class ; -fun Deboarding_Class : SubClass Deboarding Translocation ; - --- The TimeDuration of 10 years. -fun DecadeDuration : Ind UnitOfDuration ; - - --- Decreasing the speed with which someone --- or something is moving. -fun Decelerating : Class ; -fun Decelerating_Class : SubClass Decelerating (both Decreasing Translocation) ; - - --- One of the two major political parties in --- the UnitedStates. The DemocraticParty represents liberal values. -fun DemocraticParty : Ind PoliticalParty ; - - --- The Profession of being a dentist, i.e. diagnosing --- and treating problems related to the teeth. -fun Dentist : Ind Profession ; - - --- Any BiologicallyActiveSubstance which has --- the effect of depressing the central nervous system, i.e. decreasing --- function or activity in the Brain or SpinalCord. -fun Depressant : Class ; -fun Depressant_Class : SubClass Depressant BiologicallyActiveSubstance ; - --- A Position which authorizes the holder of the position --- to act as the sheriff when the sheriff is not available. -fun Deputy : Ind PoliceOfficer ; - - --- (DescendantsFn ?PERSON) denotes all and only --- the descendants of ?PERSON, i.e. the Group consisting of ?OFFSPRING who --- satisfy the following formula: (ancestor ?OFFSPRING ?PERSON). -fun DescendantsFn : El Human -> Ind FamilyGroup ; - - --- A Table for a single person which is intended to be --- used for paperwork. -fun Desk : Class ; -fun Desk_Class : SubClass Desk Table ; - --- A detergent is a compound, or a mixture of --- compounds, whose molecules have two distinct regions: one that is --- hydrophilic, and dissolves easily in water, and another region that is --- hydrophobic, with little (if any) affinity for water. As a consequence, --- these compounds can aid in the solubilization of hydrophobic compounds in --- water, and usually are optimized for this property. Though Soap also has --- these properties, soaps in general are not considered detergents. Soap is --- a particular type of surfactant that is derived from oils and fats. They --- are created through the saponification process whereby the ester linkage --- in a vegetable oil or fat is hydrolytically cleaved, creating a sodium or --- potassium salt of a fatty acid (i.e. soap). Both detergents and soaps --- are considered to be surfactants. Surfactants that are not soaps are --- considered to be detergents. Detergents are also commonly known as any --- cleaning mixture containing surfactants. (from Wikipedia) -fun Detergent : Class ; -fun Detergent_Class : SubClass Detergent (both Mixture Surfactant) ; - - --- This class contains two Attributes to --- indicate whether a Device is or is not behaving as it is intended to --- behave, Functioning and Malfunctioning. -fun DeviceAttribute : Class ; -fun DeviceAttribute_Class : SubClass DeviceAttribute ObjectiveNorm ; - -fun DeviceClosed : Ind (both DeviceStateAttribute RelationalAttribute) ; - -fun DeviceOff : Ind (both DeviceStateAttribute InternalAttribute) ; - -fun DeviceOn : Ind (both DeviceStateAttribute InternalAttribute) ; - -fun DeviceOpen : Ind (both DeviceStateAttribute RelationalAttribute) ; - --- DeviceStateAttribute is the class --- of attributes that represent different states that a Device may be in. --- Examples: DeviceOff, DeviceOn, DeviceOpen, and DeviceClosed. -fun DeviceStateAttribute : Class ; -fun DeviceStateAttribute_Class : SubClass DeviceStateAttribute DeviceAttribute ; - --- Any process of Separating a Solution into two or more --- constituent PureSubstances by means of their unequal diffusion through membranes --- that are partially permeable. -fun Dialysis : Class ; -fun Dialysis_Class : SubClass Dialysis Separating ; - --- (DiameterFn ?CIRCLE) denotes the length of the --- diameter of the Circle ?CIRCLE. -fun DiameterFn : El Circle -> Ind LengthMeasure ; - - --- Crystalline Carbon that is valued as a gem and --- used in industrial applications. -fun Diamond : Class ; -fun Diamond_Class : SubClass Diamond (both Carbon Mineral) ; - - --- A DiseaseOrSyndrome of frequent, watery bowel --- movements. Severe cases can be fatal for the young or weak. It is --- a common cause of death for the very young in poor developing countries. -fun Diarrhea : Ind DiseaseOrSyndrome ; - - --- A ReferenceBook which specifies the meanings --- of the Words of a Language. -fun Dictionary : Class ; -fun Dictionary_Class : SubClass Dictionary ReferenceBook ; - --- DieselEngine is the subclass of --- InternalCombustionEngines that use DieselFuel as their resource. -fun DieselEngine : Class ; -fun DieselEngine_Class : SubClass DieselEngine InternalCombustionEngine ; - --- A Plan regarding what one is allowed to eat. -fun Diet : Class ; -fun Diet_Class : SubClass Diet Plan ; - --- Any Process of removing or turning over the Soil. -fun Digging : Class ; -fun Digging_Class : SubClass Digging (both IntentionalProcess SurfaceChange) ; - - --- Any of the extremities of Limbs that are --- found in the higer Vertebrates and the Amphibians. -fun DigitAppendage : Class ; -fun DigitAppendage_Class : SubClass DigitAppendage (both AnimalAnatomicalStructure BodyPart) ; - - --- Any Character that is comprised of a single digit, --- i.e. one of the numerals 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. -fun DigitCharacter : Class ; -fun DigitCharacter_Class : SubClass DigitCharacter Character ; - --- Adding a Liquid to a Solution to decrease --- the concentration of the Solution. -fun Diluting : Class ; -fun Diluting_Class : SubClass Diluting Putting ; - --- A Room intended primarily for Eating. -fun DiningRoom : Class ; -fun DiningRoom_Class : SubClass DiningRoom Room ; - --- A person who works as a facilitator for communication --- between countries, in the official employ of one of the countries. -fun Diplomat : Ind OccupationalRole ; - - --- A Holder for Food while the Food is being eaten. -fun Dish : Class ; -fun Dish_Class : SubClass Dish Holder ; - --- Any BodyMotion which results in not being On --- something else. -fun Dismounting : Class ; -fun Dismounting_Class : SubClass Dismounting BodyMotion ; - --- DisplacementHullWaterVehicle is --- a subclass of WaterVehicle with hulls designed to move water aside as they --- move through the water. Contrast with PlaningHullWaterVehicle. -fun DisplacementHullWaterVehicle : Class ; -fun DisplacementHullWaterVehicle_Class : SubClass DisplacementHullWaterVehicle WaterVehicle ; - --- Something for posting content so --- that it can be disseminated to the public. -fun DisplayArtifact : Class ; -fun DisplayArtifact_Class : SubClass DisplayArtifact Artifact ; - --- Someone who is opposed to the leadership --- of a particular country. Typically, a dissident suffers punishment --- at the hands of the country whose leadership he is opposing. -fun Dissident : Ind (both Civilian SocialRole) ; - - --- An AlcoholicBeverage that has --- had some part of its Water content removed by distillation. This class --- covers drinks of unmixed, hard liquor. -fun DistilledAlcoholicBeverage : Class ; -fun DistilledAlcoholicBeverage_Class : SubClass DistilledAlcoholicBeverage AlcoholicBeverage ; - --- A legal act whereby a marriage is dissolved. This --- includes annulments. -fun Divorcing : Class ; -fun Divorcing_Class : SubClass Divorcing Declaring ; - --- A MotionPicture which purports to represent the --- facts about a person, event, etc. -fun Documentary : Class ; -fun Documentary_Class : SubClass Documentary (both FactualText MotionPicture) ; - - --- Purposely moving one's body in such a way as --- to avoid being hit by something. -fun Dodging : Class ; -fun Dodging_Class : SubClass Dodging (both BodyMotion IntentionalProcess) ; - - --- Any Animal that is kept by a Human, as --- a pet, as livestock, for exhibition, etc. -fun DomesticAnimal : Class ; -fun DomesticAnimal_Class : SubClass DomesticAnimal Animal ; - --- A variety of Feline which has been domesticated --- by selective breeding. -fun DomesticCat : Class ; -fun DomesticCat_Class : SubClass DomesticCat (both DomesticAnimal Feline) ; - - --- Canines which have evolved from the common --- wolf by selective breeding. -fun DomesticDog : Class ; -fun DomesticDog_Class : SubClass DomesticDog (both Canine DomesticAnimal) ; - - --- A domesticated HoofedMammal that is used for --- work. -fun Donkey : Class ; -fun Donkey_Class : SubClass Donkey (both HoofedMammal Livestock) ; - - --- An Artifact that restricts and permits access to a --- StationaryArtifact (e.g. Building or Room) depending on whether the --- Door is open or locked. Note that the class Door also covers gates, --- because it is not possible to define objective criteria that reliably --- distinguish doors from gates. -fun Door : Class ; -fun Door_Class : SubClass Door Artifact ; - --- A StationaryArtifact consisting of a frame that --- holds a Door. -fun Doorway : Class ; -fun Doorway_Class : SubClass Doorway StationaryArtifact ; - --- A TemporaryResidence which is owned by a School --- and which is used to house students while they take classes at the School. -fun Dormitory : Class ; -fun Dormitory_Class : SubClass Dormitory (both ResidentialBuilding TemporaryResidence) ; - - --- A Mixture of Flour, Water, and possibly --- other ingredients (such as Butter and Salt), which is used in --- making BreadOrBiscuits. -fun Dough : Class ; -fun Dough_Class : SubClass Dough (both Mixture PreparedFood) ; - - --- A PositionalAttribute to indicate that one thing is --- one or more floors below a second thing in the same building. -fun Downstairs : Ind PositionalAttribute ; - - --- The commercial center of a City. The part of the --- City that contains more shops and offices than any other part. -fun Downtown : Class ; -fun Downtown_Class : SubClass Downtown CityDistrict ; - --- Playing a character in a Performance, --- MotionPicture, etc. -fun DramaticActing : Class ; -fun DramaticActing_Class : SubClass DramaticActing Pretending ; - --- The GroupOfPeople who engage in DramaticActing --- as part of the realization of a single FictionalText. -fun DramaticCast : Class ; -fun DramaticCast_Class : SubClass DramaticCast GroupOfPeople ; - --- The process of directing a DramaticActing --- in a MotionPicture or the Performance of a DramaticPlay. -fun DramaticDirecting : Class ; -fun DramaticDirecting_Class : SubClass DramaticDirecting Guiding ; - --- A Performance that consists exclusively of --- DramaticActing, e.g. a live performance of Death_of_a_Salesman in front --- of an audience. -fun DramaticPerformance : Class ; -fun DramaticPerformance_Class : SubClass DramaticPerformance Performance ; - --- A FictionalText that is intended to be realized --- as DramaticActing. -fun DramaticPlay : Class ; -fun DramaticPlay_Class : SubClass DramaticPlay FictionalText ; - --- Any ContentDevelopment that results in a Sketch. -fun Drawing : Class ; -fun Drawing_Class : SubClass Drawing (both ContentDevelopment SurfaceChange) ; - - --- A Process of producing metal images which occurs --- while one is Asleep. -fun Dreaming : Class ; -fun Dreaming_Class : SubClass Dreaming Imagining ; - --- An item of Clothing which covers the lower body of a --- Woman. -fun Dress : Class ; -fun Dress_Class : SubClass Dress Clothing ; - --- The Process of putting on Clothing. -fun Dressing : Class ; -fun Dressing_Class : SubClass Dressing Putting ; - --- Any Room which is intended for --- ChangingClothing. -fun DressingRoom : Class ; -fun DressingRoom_Class : SubClass DressingRoom Room ; - --- A Device that has the purpose of creating a --- Hole. This covers manual drills as well as electric or pneumatic --- drills. -fun Drill : Class ; -fun Drill_Class : SubClass Drill CuttingDevice ; - --- Any Process of producing a hole in a --- SelfConnectedObject which involves rotating a long, thin bit. -fun Drilling : Class ; -fun Drilling_Class : SubClass Drilling (both IntentionalProcess SurfaceChange) ; - - --- An open FluidContainer that is intended to serve a Beverage --- to a single person. Note that this class includes both cups with handles and --- drinking glasses. -fun DrinkingCup : Class ; -fun DrinkingCup_Class : SubClass DrinkingCup FluidContainer ; - --- Any LiquidMotion where the Liquid is moved --- drop by drop. -fun Dripping : Class ; -fun Dripping_Class : SubClass Dripping LiquidMotion ; - --- An EngineeringComponent whose purpose is to --- transfer force from one part of a Device to another part. -fun DriveComponent : Class ; -fun DriveComponent_Class : SubClass DriveComponent EngineeringComponent ; - --- A License which identifies the holder and --- indicates that he has the right to drive a certain class of RoadVehicle. -fun DriversLicense : Class ; -fun DriversLicense_Class : SubClass DriversLicense License ; - --- A small, private Roadway that is used for parking --- Automobiles or for connecting a Garage to a public Roadway. -fun Driveway : Class ; -fun Driveway_Class : SubClass Driveway Roadway ; - --- A RetailStore that sells Medicine, and --- perhaps other items as well. -fun DrugStore : Class ; -fun DrugStore_Class : SubClass DrugStore RetailStore ; - --- The ConsciousnessAttribute of someone whose motor and/or --- cognitive faculties are significantly impaired by a BiologicallyActiveSubstance. -fun Drugged : Ind ConsciousnessAttribute ; - - --- An atonal PercussionInstrument which consists of a --- hollow cylinder and a fabric stretched across at least one end of the --- cylinder. -fun Drum : Class ; -fun Drum_Class : SubClass Drum PercussionInstrument ; - --- Playing a Drum. Note that this includes both --- musical performance, as well as signalling and cerimonial applications. -fun Drumming : Class ; -fun Drumming_Class : SubClass Drumming (both Demonstrating RadiatingSound) ; - - --- The ConsciousnessAttribute of someone whose motor and --- cognitive faculties are significantly impaired by Alcohol. -fun Drunk : Ind ConsciousnessAttribute ; - - --- A subclass of Bird with webbed feet and a large bill. --- Some ducks live in the wild, and some are raised for meat and/or eggs. -fun Duck : Class ; -fun Duck_Class : SubClass Duck Poultry ; - --- Purposely moving one's body downward in such a way as --- to avoid being hit by something. -fun Ducking : Class ; -fun Ducking_Class : SubClass Ducking (both BodyMotion (both IntentionalProcess MotionDownward)) ; - - --- A Tax that is levied on imports and/or exports. -fun DutyTax : Class ; -fun DutyTax_Class : SubClass DutyTax Tax ; - --- The Organ of hearing. -fun Ear : Class ; -fun Ear_Class : SubClass Ear (both AnimalAnatomicalStructure Organ) ; - - --- Instances of RadiatingSound where the instrument --- is a surface which bounces sound waves back to their origin, where they can --- be heard again. -fun Echoing : Class ; -fun Echoing_Class : SubClass Echoing RadiatingSound ; - --- A class of Relations which are used --- to specify various economic measures, e.g. the GDP, the consumer price --- index, and the trade deficit. -fun EconomicRelation : El GeopoliticalArea -> El Entity -> Formula; - - --- The field of economics. -fun Economics : Ind SocialScience ; - - --- A schedule of class meetings offered by an --- EducationalOrganization. -fun EducationalCourse : Class ; -fun EducationalCourse_Class : SubClass EducationalCourse EducationalProgram ; - --- A building or campus, owned by an --- EducationalOrganization, which is intended as the location for --- EducationalProcesses. -fun EducationalFacility : Class ; -fun EducationalFacility_Class : SubClass EducationalFacility StationaryArtifact ; - --- A series of EducationalCourses that must --- be completed to receive an AcademicDegree or other Certificate. Note that --- an EducationalProgram, unlike an EducationalCourse, may be realized at more --- than one EducationalOrganization. -fun EducationalProgram : Class ; -fun EducationalProgram_Class : SubClass EducationalProgram Plan ; - --- The joint in the Arm connecting the forearm and the --- upper arm. -fun Elbow : Class ; -fun Elbow_Class : SubClass Elbow BodyJoint ; - --- ElectoralCollegeElection is --- the class of Elections in which the outcome is decided by the votes of --- electors who have been chosen by popular vote, rather than directly by --- results of the popular vote. ElectoralCollegeElection is an indirect --- method of election, in contrast to PopularElection. -fun ElectoralCollegeElection : Class ; -fun ElectoralCollegeElection_Class : SubClass ElectoralCollegeElection GeneralElection ; - --- A Device that uses Electricity as its --- primary power source. -fun ElectricDevice : Class ; -fun ElectricDevice_Class : SubClass ElectricDevice Device ; - --- ElectricMotor is the subclass of Engines --- that produce mechanical power from electricity. -fun ElectricMotor : Class ; -fun ElectricMotor_Class : SubClass ElectricMotor (both ElectricDevice Engine) ; - - --- ElectricalSignalling is the --- subclass of Signalling processes that involve control of an electrical --- current. Cf. ElectronicSignalling. -fun ElectricalSignalling : Class ; -fun ElectricalSignalling_Class : SubClass ElectricalSignalling Signalling ; - --- ElectrifiedRailwayCar is the --- subclass of railway cars that are powered by electricity, which is --- provided to the car through an overhead link or electrified third rail. -fun ElectrifiedRailwayCar : Class ; -fun ElectrifiedRailwayCar_Class : SubClass ElectrifiedRailwayCar (both ElectricDevice (both PoweredVehicle RollingStock)) ; - - --- ElectronicSignalling is the --- subclass of Signalling processes that involve a signal generated by --- a computer. -fun ElectronicSignalling : Class ; -fun ElectronicSignalling_Class : SubClass ElectronicSignalling Signalling ; - --- The branch of Physics that deals with the theory --- and applications of electron emissions. -fun Electronics : Ind FieldOfStudy ; - - --- A very large, almost hairless Herbivore with a long --- trunk. -fun Elephant : Class ; -fun Elephant_Class : SubClass Elephant Herbivore ; - --- A TransportationDevice consisting of a car that moves --- up and down in a vertical shaft so that people or objects can move from one floor to another --- in a building. -fun Elevator : Class ; -fun Elevator_Class : SubClass Elevator TransportationDevice ; - --- An embassy is a Building that is owned by a --- Government to house its diplomatic and consular staff that is in --- another country. -fun EmbassyBuilding : Class ; -fun EmbassyBuilding_Class : SubClass EmbassyBuilding GovernmentBuilding ; - --- The class of Touching processes where one Human --- hugs another one. -fun Embracing : Class ; -fun Embracing_Class : SubClass Embracing Touching ; - --- A DiseaseOrSyndrome that affects the Lungs and --- which results in a decrease of breathing ability. -fun Emphysema : Ind DiseaseOrSyndrome ; - - --- Involuntarily ending one's employment. --- Note that this covers termination due to inadequate performance, as --- well as layoffs. -fun EmploymentFiring : Class ; -fun EmploymentFiring_Class : SubClass EmploymentFiring TerminatingEmployment ; - --- Engine is a subclass of Transducer. Engines --- are devices for converting some form of energy resource into mechanical --- power. -fun Engine : Class ; -fun Engine_Class : SubClass Engine Transducer ; - --- The application of instances of Science to the solution --- of practical problems, i.e. the creation of various forms of technology. -fun Engineering : Ind Science ; - - --- A building that has the primary --- purpose of entertaining people. -fun EntertainmentBuilding : Class ; -fun EntertainmentBuilding_Class : SubClass EntertainmentBuilding Building ; - --- Any business whose services include --- Performances. This class covers nightclubs, commercial live theaters, --- and comedy clubs. -fun EntertainmentCompany : Class ; -fun EntertainmentCompany_Class : SubClass EntertainmentCompany CommercialAgent ; - --- Positions which involve creating --- content or performances that are intended to entertain. This class covers --- the TheaterProfession, FilmMakingProfession, being a comedian, etc. -fun EntertainmentProfession : Class ; -fun EntertainmentProfession_Class : SubClass EntertainmentProfession SkilledOccupation ; - --- More commonly known as burying, this is the class --- of processes of putting a HumanCorpse into a Tomb. Note that this class --- is not a subclass of Burying, since some Tombs are not covered with Soil, --- e.g. those in a mausoleum. -fun Entombing : Class ; -fun Entombing_Class : SubClass Entombing Putting ; - --- A sealable Container for one or more pieces of --- paper which is designed to protect the papers while they are transferred to --- someone. -fun Envelope : Class ; -fun Envelope_Class : SubClass Envelope Container ; - --- Any instance of Translocation where the agent brings --- it about that he/she is no longer confined without having the right to do --- so. -fun Escaping : Class ; -fun Escaping_Class : SubClass Escaping Translocation ; - --- Any Investigating by one Government of another --- Government where the second Government does not know that it is being --- spied upon. -fun Espionage : Class ; -fun Espionage_Class : SubClass Espionage (both Investigating PoliticalProcess) ; - - --- The class of nations that are in Europe. -fun EuropeanNation : Class ; -fun EuropeanNation_Class : SubClass EuropeanNation Nation ; - --- The state of being happy about a state of --- affairs that might occur in the future. -fun Excitement : Ind EmotionalState ; - - --- Killing of a Human by a Government for --- the commission of a CriminalAction. -fun Execution : Class ; -fun Execution_Class : SubClass Execution Killing ; - --- A Residence of a chiefOfState, e.g. --- the White House, a state governor's mansion, Buckingham Palace, etc. -fun ExecutiveResidence : Class ; -fun ExecutiveResidence_Class : SubClass ExecutiveResidence PermanentResidence ; - --- Any instance of Breathing where the breath is --- expelled from the Lungs. -fun Exhaling : Class ; -fun Exhaling_Class : SubClass Exhaling Breathing ; - --- Any sudden and massive release of energy that is --- the product of a chemical reaction. -fun Explosion : Class ; -fun Explosion_Class : SubClass Explosion Radiating ; - --- A Device whose purpose is to explode. Note --- that ExplosiveDevice is not a subclass of Weapon, since explosives can be --- used in demolition work and in fireworks displays, for example. -fun ExplosiveDevice : Class ; -fun ExplosiveDevice_Class : SubClass ExplosiveDevice Device ; - --- An ExplosiveDevice which is designed to --- explode when there is movement over it, e.g. by a person on foot, by a --- RoadVehicle, etc. -fun ExplosiveMine : Class ; -fun ExplosiveMine_Class : SubClass ExplosiveMine (both ExplosiveDevice Weapon) ; - - --- Any Substance which is capable of exploding. -fun ExplosiveSubstance : Class ; -fun ExplosiveSubstance_Class : SubClass ExplosiveSubstance Substance ; - --- Expressing favor about a physical thing --- or a state of affairs. -fun ExpressingApproval : Class ; -fun ExpressingApproval_Class : SubClass ExpressingApproval Expressing ; - --- Expressing disfavor about a physical --- thing or a state of affairs. -fun ExpressingDisapproval : Class ; -fun ExpressingDisapproval_Class : SubClass ExpressingDisapproval Expressing ; - --- Any instance of Expressing an acknowledgment --- of a person's departure. Note that this class is not a subclass of --- LinguisticCommunication, because it covers gestures of departure, e.g. Waving --- and Nodding in certain circumstances. -fun ExpressingFarewell : Class ; -fun ExpressingFarewell_Class : SubClass ExpressingFarewell Expressing ; - --- Any instance of Expressing that is also an --- instance of LinguisticCommunication, e.g. thanking someone, expressing condolence, --- expressing disapproval with an utterance rather than a Gesture, etc. -fun ExpressingInLanguage : Class ; -fun ExpressingInLanguage_Class : SubClass ExpressingInLanguage (both Expressing LinguisticCommunication) ; - - --- The Organ of sight. -fun Eye : Class ; -fun Eye_Class : SubClass Eye (both AnimalAnatomicalStructure Organ) ; - - --- A lens or pair of lenses with or without frames whose --- purpose is to to correct a defect in vision. This class covers ordinary eye --- glasses, reading glasses, contact lenses, monocles, etc. -fun EyeGlass : Class ; -fun EyeGlass_Class : SubClass EyeGlass OpticalDevice ; - --- Any Motion where a patient is the agent's --- own Eyelid or Eyelids. -fun EyeMotion : Class ; -fun EyeMotion_Class : SubClass EyeMotion BodyMotion ; - --- Folds of Skin that can be manipulated to --- cover or uncover Eyes. -fun Eyelid : Class ; -fun Eyelid_Class : SubClass Eyelid Skin ; - --- The part of the Head from forehead to chin and --- from ear to ear. -fun Face : Class ; -fun Face_Class : SubClass Face (both AnimalAnatomicalStructure BodyPart) ; - - --- Any Gesture whose instrument is the Face. -fun FacialExpression : Class ; -fun FacialExpression_Class : SubClass FacialExpression Gesture ; - --- Hair that grows on the Face. This --- class covers beards, mustaches, sideburns, midnight shadow, etc. -fun FacialHair : Class ; -fun FacialHair_Class : SubClass FacialHair Hair ; - --- The class of Statements that are True. -fun Fact : Class ; -fun Fact_Class : SubClass Fact Statement ; - --- A Building intended to house a process that --- produces goods of some value. -fun Factory : Class ; -fun Factory_Class : SubClass Factory Building ; - --- The SeasonOfYear that begins at the autumnal --- equinox and ends at the winter solstice. -fun FallSeason : Class ; -fun FallSeason_Class : SubClass FallSeason SeasonOfYear ; - --- The process of transitioning from a state of --- being Awake to a state of being Asleep. -fun FallingAsleep : Class ; -fun FallingAsleep_Class : SubClass FallingAsleep PsychologicalProcess ; - --- Radioactive powder that is typically dispersed by --- the explosion of a nuclear weapon. -fun Fallout : Class ; -fun Fallout_Class : SubClass Fallout Powder ; - --- A Partnership that is owned by a single --- family. -fun FamilyBusiness : Class ; -fun FamilyBusiness_Class : SubClass FamilyBusiness Partnership ; - --- A CoolingDevice which consists simply of one or more --- blades that circulate the air. Note that this class covers both electrical fans --- and fans that are manually operated. -fun FanDevice : Class ; -fun FanDevice_Class : SubClass FanDevice CoolingDevice ; - --- A StationaryArtifact consisting of a cultivated --- LandArea and Buildings for maintaining the land and/or the Animals --- on the land. -fun Farm : Class ; -fun Farm_Class : SubClass Farm StationaryArtifact ; - --- A Building on a Farm that is used for keeping --- DomesticAnimals, Fodder or harvested crops. -fun FarmBuilding : Class ; -fun FarmBuilding_Class : SubClass FarmBuilding Building ; - --- OccupationalTrades which involve Agriculture. -fun FarmHand : Ind OccupationalTrade ; - - --- Operating a farm, e.g. planting and harvesting crops, --- tending livestock, etc. -fun Farming : Class ; -fun Farming_Class : SubClass Farming Working ; - --- Each instance of this class is one of the structures --- that make up the external covering of Birds. -fun Feather : Class ; -fun Feather_Class : SubClass Feather (both AnimalAnatomicalStructure BodyPart) ; - - --- Giving Food to a Human or Animal. -fun Feeding : Class ; -fun Feeding_Class : SubClass Feeding Giving ; - --- A Cow that is Female. -fun FemaleCow : Class ; -fun FemaleCow_Cow : SubClassC FemaleCow Cow (\COW -> attribute (var Cow Object ? COW)(el SexAttribute Attribute ? Female)); - - --- A StationaryArtifact that serves to demarcate or --- to prevent access to or from the area that the Fence surrounds. -fun Fence : Class ; -fun Fence_Class : SubClass Fence StationaryArtifact ; - --- Having a body temperature which is (significantly) greater --- than 98.6 degrees Fahrenheit. This syndrome is often associated with dehydration --- and chills. -fun Fever : Ind DiseaseOrSyndrome ; - - --- A LandArea that has been cleared of BotanicalTrees. --- Note that a Field is not necessarily used for the cultivation of crops and --- that a Field may be very small, e.g. Lawn is a subclass of Field. -fun Field : Class ; -fun Field_Class : SubClass Field LandArea ; - --- The study of legal principles and the framework of national --- and/or international laws. -fun FieldOfLaw : Ind FieldOfStudy ; - - --- Any high_speed MilitaryAircraft whose purpose is --- to destroy enemy MilitaryAircraft. -fun Fighter : Class ; -fun Fighter_Class : SubClass Fighter MilitaryAircraft ; - --- A Device whose purpose is to make something --- smoother. For example, a nail file is used to even out the tips of one's --- finger nails. -fun FileDevice : Class ; -fun FileDevice_Class : SubClass FileDevice Device ; - --- Positions which involve directing MotionPictures. -fun FilmDirector : Class ; -fun FilmDirector_Class : SubClass FilmDirector FilmMakingProfession ; - --- ContentDevelopment where the result is a --- MotionPicture. -fun FilmMaking : Class ; -fun FilmMaking_Class : SubClass FilmMaking ContentDevelopment ; - --- Positions which involve FilmMaking, --- i.e. acting in films, directing films, producing films, etc. -fun FilmMakingProfession : Class ; -fun FilmMakingProfession_Class : SubClass FilmMakingProfession EntertainmentProfession ; - --- Positions which involve producing MotionPictures, --- i.e arranging the financing for the MotionPicture and supervising its production. -fun FilmProducer : Class ; -fun FilmProducer_Class : SubClass FilmProducer FilmMakingProfession ; - --- A Device whose purpose is to remove part of a --- Solution that is passed through the Filter. -fun Filter : Class ; -fun Filter_Class : SubClass Filter Device ; - --- A formal banking, brokerage, or business relationship --- established to provide for regular services, dealings, and other financial --- transactions. -fun FinancialAccount : Class ; - - --- Any item of economic value owned by an individual or --- corporation, especially that which could be converted to cash. Examples are cash, --- securities, accounts receivable, inventory, office equipment, a house, a car, and --- other property. -fun FinancialAsset : Class ; - - --- A brief statement that the stated amount --- of money is owed by the person to whom the bill is delivered. -fun FinancialBill : Class ; -fun FinancialBill_Class : SubClass FinancialBill FinancialText ; - --- The class FinancialCompany --- includes, as subclasses, FinancialBank, CreditUnion and SavingsAndLoan. -fun FinancialCompany : Class ; -fun FinancialCompany_Class : SubClass FinancialCompany CommercialAgent ; - --- Services performed by a --- FinancialCompany. -fun FinancialService : Class ; -fun FinancialService_Class : SubClass FinancialService CommercialService ; - --- A Report about monetary figures. This --- class covers FinancialBills, balance sheets, account statements, etc. -fun FinancialText : Class ; -fun FinancialText_Class : SubClass FinancialText Report ; - --- Any Funding which is provided by a FinancialCompany --- with the aim of making a profit on the money invested. -fun Financing : Class ; -fun Financing_Class : SubClass Financing (both FinancialService Funding) ; - - --- The five extremities of Hands. -fun Finger : Class ; -fun Finger_Class : SubClass Finger DigitAppendage ; - --- That pattern of arches, loops, and whorls that mark --- the imprint of a Finger. -fun Fingerprint : Class ; -fun Fingerprint_Class : SubClass Fingerprint (both BiologicalAttribute ShapeAttribute) ; - - --- Any Quantity that is limited or bounded in --- magnitude. -fun FiniteQuantity : Class ; -fun FiniteQuantity_Class : SubClass FiniteQuantity Quantity ; - --- A Gun that is small enough to be carried and fired by --- a single Human. -fun Firearm : Class ; -fun Firearm_Class : SubClass Firearm Gun ; - --- A Device in a Building which is used for burning wood, --- coal, etc for heat. -fun Fireplace : Class ; -fun Fireplace_Class : SubClass Fireplace (both Device StationaryArtifact) ; - - --- (FirstFn ?LIST) returns the first item in --- the List ?LIST. For example, (FirstFn (ListFn Monday Tuesday --- Wednesday)) would return the value of Monday. -fun FirstFn : El List -> Ind Entity ; - - --- Meat that was originally part of a Fish. -fun FishMeat : Class ; -fun FishMeat_Class : SubClass FishMeat Meat ; - --- The BodyPosition of having the fingers drawn into --- the palm so that the hand can be used for striking something. -fun Fist : Ind BodyPosition ; - - --- An Icon made of Fabric that refers to a particular --- GeopoliticalArea. -fun Flag : Class ; -fun Flag_Class : SubClass Flag Icon ; - --- A three dimensional object for which --- two dimensions are markedly larger than the third the --- two larger dimensions are also not of markedly different length. -fun Flat : Ind ShapeAttribute ; - - --- Flooding is the subclass of LiquidMotion --- processes in which the water level of a Waterway rises or water spreads --- over a flood plain along a Waterway. -fun Flooding : Class ; -fun Flooding_Class : SubClass Flooding LiquidMotion ; - --- A StationaryArtifact that is the bottom surface --- of a Room. -fun Floor : Class ; -fun Floor_Class : SubClass Floor StationaryArtifact ; - --- A Powder that is prepared from CerealGrain, e.g. --- wheat flour, rice flour, etc. Flour is most often used in the making --- of BreadOrBiscuits. -fun Flour : Class ; -fun Flour_Class : SubClass Flour (both Powder PreparedFood) ; - - --- The reproductive organ of FloweringPlants. -fun Flower : Class ; -fun Flower_Class : SubClass Flower (both Organ PlantAnatomicalStructure) ; - - --- A Container which is used to store Fluids, --- i.e. Liquids and Gases. -fun FluidContainer : Class ; -fun FluidContainer_Class : SubClass FluidContainer Container ; - --- Insects with Wings and two Limbs. -fun FlyInsect : Class ; -fun FlyInsect_Class : SubClass FlyInsect Insect ; - --- Any instance of Translocation which is through an --- AtmosphericRegion and which is powered by the wings of an Animal. -fun Flying : Class ; -fun Flying_Class : SubClass Flying Translocation ; - --- Altering the relative distance of a Lens --- so that a visual image is sharper. -fun Focusing : Class ; -fun Focusing_Class : SubClass Focusing QuantityChange ; - --- Fodder is the class of OrganicObjects that --- are used as food for domesticated animals. Fodder Fodder is the subclass of Food that is intended --- for instances of DomesticAnimal. -fun Fodder : Class ; -fun Fodder_Class : SubClass Fodder Food ; - --- Any WaterCloud that is in contact with the ground. -fun Fog : Class ; -fun Fog_Class : SubClass Fog WaterCloud ; - --- Bending something in such a way that one part of --- it covers another part. -fun Folding : Class ; -fun Folding_Class : SubClass Folding ShapeChange ; - --- The lower part of a Limb, the part which makes contact --- with the ground in locomotion of the Animal. -fun Foot : Class ; -fun Foot_Class : SubClass Foot (both AnimalAnatomicalStructure BodyPart) ; - - --- FormOfGovernment is a class of --- Attributes used to describe the characteristics of a government, --- especially a NationalGovernment. The concept FormOfGovernment is --- interpreted broadly enough to include Anarchy and Factionalism. -fun FormOfGovernment : Class ; -fun FormOfGovernment_Class : SubClass FormOfGovernment PoliticoEconomicAttribute ; - --- A page or set of pages containing spaces where --- information is to be entered by an Agent. -fun FormText : Class ; -fun FormText_Class : SubClass FormText Text ; - --- Any Meeting which is the result of Planning --- and whose purpose is not socializing. -fun FormalMeeting : Class ; -fun FormalMeeting_Class : SubClass FormalMeeting Meeting ; - --- FossilFuel is the subclass of Fuel whose --- instances are derived from fossilized organic deposits, such as Coal --- and LiquefiedPetroleumGas. -fun FossilFuel : Class ; -fun FossilFuel_Class : SubClass FossilFuel (both Fuel PetroleumProduct) ; - - --- A SportsAttribute that indicates that the GamePiece of --- a Sport is no longer in play because it has gone beyond the limits of the --- sports field. -fun Foul : Ind SportsAttribute ; - - --- Setting up an Organization. -fun Founding : Class ; -fun Founding_Class : SubClass Founding (both Declaring OrganizationalProcess) ; - - --- Canines with a bushy tail and pointed ears and nose. --- Foxes tend to be much smaller than most DomesticDogs. -fun Fox : Class ; -fun Fox_Class : SubClass Fox Canine ; - --- An Attribute which indicates that the --- associated Object is very breakable. -fun Fragile : Ind BreakabilityAttribute ; - - --- Any Atom which is not part of a Molecule. -fun FreeAtom : Class ; -fun FreeAtom_Class : SubClass FreeAtom Atom ; - --- A Romance language that is the official language --- of France and Belgium, and is widely spoken in Africa. -fun FrenchLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; - - --- Any PsychologicalProcess where the patient --- comes to feel Anxiety. -fun Frightening : Class ; -fun Frightening_Class : SubClass Frightening PsychologicalProcess ; - --- Furrowing the forehead in such a way as to convey --- unhappiness. -fun Frowning : Class ; -fun Frowning_Class : SubClass Frowning FacialExpression ; - --- Fuel is the class of Substances that can be --- used as resources in Combustion processes in order to produce heat. --- Mechanical energy can be produced by burning fuel in an Engine. -fun Fuel : Class ; -fun Fuel_Class : SubClass Fuel Substance ; - --- Any Position where the employee is either --- salaried or paid for at least 40 hour of work per week. -fun FullTimePosition : Class ; -fun FullTimePosition_Class : SubClass FullTimePosition Position ; - --- Indicates that a Device is performing its --- intended function. -fun Functioning : Ind DeviceAttribute ; - - --- A FormalMeeting whose purpose is to commemorate --- the Death of someone. -fun Funeral : Class ; -fun Funeral_Class : SubClass Funeral FormalMeeting ; - --- Any free_standing and movable --- Artifacts which are not which are used in day_to_day living and designed --- to rest on the Floor of a Room. -fun Furniture : Class ; -fun Furniture_Class : SubClass Furniture Artifact ; - --- The process of transitioning from a state --- of being Unconscious to a state of being Awake. -fun GainingConsciousness : Class ; -fun GainingConsciousness_Class : SubClass GainingConsciousness PsychologicalProcess ; - --- An Artifact that is designed to be used as an --- instrument in a Game. -fun GameArtifact : Class ; -fun GameArtifact_Class : SubClass GameArtifact Artifact ; - --- Any ContestAttribute that is specific --- to a Game. -fun GameAttribute : Class ; -fun GameAttribute_Class : SubClass GameAttribute ContestAttribute ; - --- A GameArtifact which is intended to be used as the --- game area for playing a particular game. -fun GameBoard : Class ; -fun GameBoard_Class : SubClass GameBoard GameArtifact ; - --- A decision issued by an official referee in a --- Game. Note that GameCall is a subclass of Declaring, because these --- decisions have binding, normative force. -fun GameCall : Class ; -fun GameCall_Class : SubClass GameCall (both Deciding Declaring) ; - - --- A small cube with 1 to 6 dots on each face that is --- used to generate numbers at random in a Game. -fun GameDie : Class ; -fun GameDie_Class : SubClass GameDie GamePiece ; - --- The location where a GameShot must end up if it --- is to constitute a Score. -fun GameGoal : Class ; -fun GameGoal_Class : SubClass GameGoal GameArtifact ; - --- A GameArtifact that is moved around in a game --- area. -fun GamePiece : Class ; -fun GamePiece_Class : SubClass GamePiece GameArtifact ; - --- A position which involves adjudicating contested --- Maneuvers in a Game, i.e. deciding whether or not the Maneuvers are --- permitted by the rules of the Game. -fun GameReferee : Class ; -fun GameReferee_Class : SubClass GameReferee SkilledOccupation ; - --- Impelling a GamePiece for the purpose of --- scoring a point or preventing the opposing player or team from scoring --- a point. Note that this class does not cover shots which are disallowed --- by the rules of the game. -fun GameShot : Class ; -fun GameShot_Class : SubClass GameShot (both Impelling Maneuver) ; - - --- A Building or part of a Building which is intended to house --- one or more Automobiles when they are not in use or are under --- repair. -fun Garage : Class ; -fun Garage_Class : SubClass Garage StationaryArtifact ; - --- GasolineEngine is the subclass of --- InternalCombustionEngines that use Gasoline as their resource. -fun GasolineEngine : Class ; -fun GasolineEngine_Class : SubClass GasolineEngine InternalCombustionEngine ; - --- A Mollusk with a distinct head that has no --- shell (e.g. slugs) or a univalve shell (e.g. snails). -fun Gastropod : Class ; -fun Gastropod_Class : SubClass Gastropod Mollusk ; - --- GeneralElection is the subclass of --- Elections that are held at regular intervals and in which all or most --- constituencies of a GeopoliticalArea participate. -fun GeneralElection : Class ; -fun GeneralElection_Class : SubClass GeneralElection Election ; - --- A Germanic language that is spoken primarily in --- Germany and Austria. -fun GermanLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; - - --- A HumanChild who is Female. -fun Girl : Class ; -fun Girl_Class : SubClass Girl (both HumanChild Woman) ; - - --- A transparent or translucent Mixture of silicates. -fun Glass : Class ; -fun Glass_Class : SubClass Glass Mixture ; - --- Clothing that is intended to be worn on the Hand. --- Note that this class covers both gloves which have individual compartments --- for each of the Fingers and mittens. -fun Glove : Class ; -fun Glove_Class : SubClass Glove Clothing ; - --- Any Mixture whose purpose is to be used as the instrument --- of Attaching one thing to another. -fun Glue : Class ; -fun Glue_Class : SubClass Glue Mixture ; - --- A DiseaseOrSyndrome which is due to an Iodine deficiency --- and which results in an enlarged ThyroidGland. -fun Goiter : Ind DiseaseOrSyndrome ; - - --- A subclass of Bird with webbed feet and a long neck --- and a large body. These Birds are often raised for their Meat. -fun Goose : Class ; -fun Goose_Class : SubClass Goose Poultry ; - --- A building belonging to a Government -fun GovernmentBuilding : Class ; -fun GovernmentBuilding_Class : SubClass GovernmentBuilding Building ; - --- Any Profession where the position occupied --- is within a GovernmentOrganization. -fun GovernmentOfficer : Class ; -fun GovernmentOfficer_Class : SubClass GovernmentOfficer Profession ; - --- A person who works for a Government. -fun GovernmentPerson : Ind OccupationalRole ; - - --- The class of Positions where the position holder --- is head of an adminstrative department of Government. -fun GovernmentSecretary : Class ; -fun GovernmentSecretary_Class : SubClass GovernmentSecretary SkilledOccupation ; - --- The head of the Government of an AmericanState. -fun Governor : Ind Position ; - - --- A School which is devoted to a specific --- subject area, which admits students that have a bachelor's degree, which --- grants masters and/or doctorate degrees, and which is part of a University. -fun GraduateSchool : Class ; -fun GraduateSchool_Class : SubClass GraduateSchool PostSecondarySchool ; - --- An Icon which depicts one or more quantities. -fun GraphDiagram : Class ; -fun GraphDiagram_Class : SubClass GraphDiagram Icon ; - --- FloweringPlants with green, narrow leaves that are --- used for lawns and Fields. Grass includes any plant of the family --- Gramineae, a widely distributed group of mostly annual and perennial --- herbs. -fun Grass : Class ; -fun Grass_Class : SubClass Grass FloweringPlant ; - --- Insects with enormous legs that are used for --- jumping. -fun Grasshopper : Class ; -fun Grasshopper_Class : SubClass Grasshopper Insect ; - --- A SecondaryColor that results from mixing Black and --- White. -fun GrayColor : Ind SecondaryColor ; - - --- An Indo_European language that is spoken in Greece. -fun GreekLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; - - --- A SecondaryColor that resembles the color of fresh --- grass. -fun Green : Ind SecondaryColor ; - - --- Any instance of Expressing an acknowledgment of a --- person's arrival. Note that this class is not a subclass of ExpressingInLanguage, --- because it covers gestures of greeting, e.g. Waving and Nodding in certain --- circumstances. -fun Greeting : Class ; -fun Greeting_Class : SubClass Greeting Expressing ; - -fun GroceryProduce : Class ; -fun GroceryProduce_Class : SubClass GroceryProduce (both FruitOrVegetable PlantAgriculturalProduct) ; - --- A RetailStore that sells Food, and perhaps --- other items as well. -fun GroceryStore : Class ; -fun GroceryStore_Class : SubClass GroceryStore RetailStore ; - --- Any Group which contains exclusively --- non_human members. -fun GroupOfAnimals : Class ; -fun GroupOfAnimals_Class : SubClass GroupOfAnimals Group ; - --- A StringInstrument that has six to twelve strings and --- is played by strumming with one hand while grasping frets with the other hand. -fun Guitar : Class ; -fun Guitar_Class : SubClass Guitar StringInstrument ; - --- A Weapon that shoots a Projectile. -fun Gun : Class ; -fun Gun_Class : SubClass Gun (both ProjectileLauncher Weapon) ; - - --- The part of a Gun through which a Projectile travels --- when it is fired. -fun GunBarrel : Class ; -fun GunBarrel_Class : SubClass GunBarrel EngineeringComponent ; - --- A Mixture of potassium nitrate, sulfur, and --- charcoal that is used in ExplosiveDevices and to propell Projectiles --- in ProjectileWeapons. -fun GunPowder : Class ; -fun GunPowder_Class : SubClass GunPowder Mixture ; - --- The part of a Gun that is placed against the --- shoulder to absorb some of the recoil action when it is fired. -fun GunStock : Class ; -fun GunStock_Class : SubClass GunStock EngineeringComponent ; - --- The part of the Gun which is pulled in Shooting --- the Gun. -fun GunTrigger : Class ; -fun GunTrigger_Class : SubClass GunTrigger EngineeringComponent ; - --- A filament that covers part of the body of many --- Mammals. -fun Hair : Class ; -fun Hair_Class : SubClass Hair AnimalAnatomicalStructure ; - --- Removing (some or all) the Hair from the --- body of an Animal. Note that this covers shaving hair, cutting hair, --- pulling hair out by the roots, etc. -fun HairRemoval : Class ; -fun HairRemoval_Class : SubClass HairRemoval Removing ; - --- A Device that is used to pound Nails into a --- surface, where they become firmly attached. -fun Hammer : Class ; -fun Hammer_Class : SubClass Hammer Device ; - --- The grasping, fingered part of an upper limb of a --- Primate. -fun Hand : Class ; -fun Hand_Class : SubClass Hand (both AnimalAnatomicalStructure BodyPart) ; - - --- Any Gesture which involves the Hands. -fun HandGesture : Class ; -fun HandGesture_Class : SubClass HandGesture Gesture ; - --- A hand grenade is a small explosive device --- with a simple trigger mechanism, usually lasting a few seconds, designed --- to be propelled by a human to its target. -fun HandGrenade : Class ; -fun HandGrenade_Class : SubClass HandGrenade Bomb ; - --- An attack in which a HandGrenade is --- employed as an explosive device for the purpose of Destruction. --- A case in which a hand grenade is used as a blunt striking object in --- an attack would not be in this class. -fun HandgrenadeAttack : Class ; -fun HandgrenadeAttack_Class : SubClass HandgrenadeAttack Bombing ; - --- The part or parts of an Artifact that are designed to be --- held with the Hands when the Artifact is used or carried. -fun Handle : Class ; -fun Handle_Class : SubClass Handle EngineeringComponent ; - --- The BodyPosition where one rests on one's hands --- and extends one's feet in the air. -fun Handstand : Ind BodyPosition ; - - --- Suffocating someone by suspending him/her from --- a rope wound around the neck until asphyxiation occurs. -fun Hanging : Class ; -fun Hanging_Class : SubClass Hanging Suffocating ; - --- The state of being happy, experiencing pleasure, --- joy or contentment. Note that this Attribute covers both active enjoyment, --- as well as the emotional state of simply being free from anxiety or fear. -fun Happiness : Ind EmotionalState ; - - --- Gathering the plant results of Agriculture. -fun Harvesting : Class ; -fun Harvesting_Class : SubClass Harvesting Removing ; - --- A type of Clothing that is worn on the Head. Note --- that this class covers caps, bonnets, berets, etc. -fun Hat : Class ; -fun Hat_Class : SubClass Hat Clothing ; - --- Grass that has been cut and cured for use as Fodder. -fun Hay : Class ; -fun Hay_Class : SubClass Hay Fodder ; - --- The part of the body containing the sense organs and --- the brain. -fun Head : Class ; -fun Head_Class : SubClass Head (both AnimalAnatomicalStructure BodyPart) ; - - --- Pain that that is restricted to the Head. -fun Headache : Ind EmotionalState ; - - --- Any VehicleLight which is attached to the front --- of a Vehicle. -fun Headlight : Class ; -fun Headlight_Class : SubClass Headlight VehicleLight ; - --- The Organ that pumps Blood throughout the body. -fun Heart : Class ; -fun Heart_Class : SubClass Heart (both AnimalAnatomicalStructure Organ) ; - - --- A Device whose purpose is Heating something, --- e.g. electric heaters, heat lamps, ovens, stoves, etc. -fun HeatingDevice : Class ; -fun HeatingDevice_Class : SubClass HeatingDevice Device ; - --- Any Aircraft with rapidly rotating wings. -fun Helicopter : Class ; -fun Helicopter_Class : SubClass Helicopter Aircraft ; - --- A Female Chicken. -fun Hen : Class ; -fun Hen_Chicken : SubClassC Hen Chicken (\H -> attribute(var Chicken Object ? H)(el SexAttribute Attribute ? Female)); - - --- A plant_eating Mammal. -fun Herbivore : Class ; -fun Herbivore_Class : SubClass Herbivore Mammal ; - --- A School which admits students who have --- graduated from a middle school and which normally covers the ninth through --- twelfth grades. A HighSchool confers a high school diploma. -fun HighSchool : Class ; -fun HighSchool_Class : SubClass HighSchool School ; - --- Robbing a Vehicle and then driving --- or piloting it away. -fun Hijacking : Class ; -fun Hijacking_Class : SubClass Hijacking Robbing ; - --- An EngineeringComponent that connects one thing to --- another in such a way that they can move relative to one another. -fun Hinge : Class ; -fun Hinge_Class : SubClass Hinge EngineeringComponent ; - --- A FactualAccount that describes --- significant events that occurred in the past. -fun HistoricalAccount : Class ; -fun HistoricalAccount_Class : SubClass HistoricalAccount (both FactualText NarrativeText) ; - - --- The recording and interpretation of past events involving --- Humans, including political events and cultural practices. -fun History : Ind FieldOfStudy ; - - --- HoistingDevice is a subclass of --- mechanical Devices that provide a mechanical advantage in lifting --- and lowering, e.g., by use of a block and tackle. -fun HoistingDevice : Class ; -fun HoistingDevice_Class : SubClass HoistingDevice MaterialHandlingEquipment ; - --- A large class of Devices whose purpose is to hold --- something else, i.e. be the instrument of a Keeping. -fun Holder : Class ; -fun Holder_Class : SubClass Holder Device ; - --- A stiff piece of Paper, usually folded over, which --- is sent to others in celebration of a Holiday. -fun HolidayCard : Class ; -fun HolidayCard_Class : SubClass HolidayCard ContentBearingObject ; - --- A Container for a Pistol. It is generally made of --- Leather and worn on either the shoulder or the waist. -fun Holster : Class ; -fun Holster_Class : SubClass Holster Container ; - --- The final BaseballBase which must be touched --- by the batter in order to achieve a BaseballRun. -fun HomeBase : Class ; -fun HomeBase_Class : SubClass HomeBase BaseballBase ; - --- An edible, sweet Substance produced by some species of --- Bees. -fun Honey : Class ; -fun Honey_Class : SubClass Honey (both AnimalSubstance Food) ; - - --- The hard end of the Foot of a HoofedMammal. -fun Hoof : Class ; -fun Hoof_Class : SubClass Hoof (both AnimalAnatomicalStructure BodyPart) ; - - --- A Hormone secreted by the ThyroidGland. -fun HormoneTSH : Class ; -fun HormoneTSH_Class : SubClass HormoneTSH Hormone ; - --- An outgrowth of Bone that is found on some --- HoofedMammals. -fun Horn : Class ; -fun Horn_Class : SubClass Horn Bone ; - --- A MusicalInstrument which is played by --- blowing it. It uses lip vibration to generates sound and control part --- of the pitch generation process as well. -fun HornInstrument : Class ; -fun HornInstrument_Class : SubClass HornInstrument MusicalInstrument ; - --- A domesticated HoofedMammal that is used for --- transportation and work. -fun Horse : Class ; -fun Horse_Class : SubClass Horse (both HoofedMammal Livestock) ; - - --- Any instance of Carrying where the Animal is --- a Horse. -fun HorseRiding : Class ; -fun HorseRiding_Class : SubClass HorseRiding Carrying ; - --- A Building that serves at the place of business for --- a HospitalOrganization. -fun HospitalBuilding : Class ; -fun HospitalBuilding_Class : SubClass HospitalBuilding TemporaryResidence ; - --- A CareOrganization where patients reside for a --- short period of time while they undergo treatment for a disease or disorder. -fun HospitalOrganization : Class ; -fun HospitalOrganization_Class : SubClass HospitalOrganization CareOrganization ; - --- An event in which one agent keeps another --- against his or her will, in order to force it or a third agent to --- accede to some demand. The hostages are typically kept in the place --- where they are first taken hostage, in contrast to a Kidnapping. --- Hostage taking often involves a number of people (although it may be --- just one), again, in contrast to a Kidnapping. -fun HostageTaking : Class ; -fun HostageTaking_Class : SubClass HostageTaking UnilateralGetting ; - --- A building which servers the purpose of a temporary --- home for people, either for people who are travelling, or occasionally for --- those who do not have another more permanent residence. A hotel is --- distinguished from a homeless shelter, or a residence loaned to a friend --- in that the primary purpose of the building is to generate revenue in --- return for the priviledge of staying there. Many hotels contains other --- facilities such as Restaurants or health clubs or even miscellaneous stores --- although that is not their primary business or purpose. -fun Hotel : Class ; -fun Hotel_Class : SubClass Hotel (both Building TemporaryResidence) ; - - --- A role occupied by a wife who manages the home --- while her husband earns income for the family. -fun Housewife : Ind SocialRole ; - - --- The class of Humans that are 18 years of --- age or older. -fun HumanAdult : Class ; -fun HumanAdult_Class : SubClass HumanAdult Human ; - --- A Human between birth and the first year of age. -fun HumanBaby : Class ; -fun HumanBaby_Class : SubClass HumanBaby HumanChild ; - --- A HumanYouth between birth and puberty, i.e a --- Human who is NonFullyFormed. -fun HumanChild : Class ; -fun HumanChild_Class : SubClass HumanChild HumanYouth ; - --- A Dead thing which was formerly a Human. -fun HumanCorpse : Class ; -fun HumanCorpse_Class : SubClass HumanCorpse OrganicObject ; - --- A Human who is owned by someone else. -fun HumanSlave : Ind SocialRole ; - - --- The class of Humans that are younger than --- 18 years of age. -fun HumanYouth : Class ; -fun HumanYouth_Class : SubClass HumanYouth Human ; - --- The Attribute that applies to Animals and Humans --- when they want Food. -fun Hungry : Ind BiologicalAttribute ; - - --- Any OrganicCompound that contains only Carbon --- and Hydrogen. -fun Hydrocarbon : Class ; -fun Hydrocarbon_Class : SubClass Hydrocarbon OrganicCompound ; - --- The part of the Brain lying below the --- thalamus that serves to regulate AutonomicProcesses. -fun Hypothalamus : Class ; -fun Hypothalamus_Class : SubClass Hypothalamus (both AnimalAnatomicalStructure BodyPart) ; - - --- Water that has the PhysicalState of Solid. -fun Ice : Class ; -fun Ice_Water : SubClassC Ice Water (\ICE -> attribute(var Water Object ? ICE)(el PhysicalState Attribute ? Solid)); - - --- A proposition is Illegal just in case it is inconsistent --- with any proposition that is a Law. -fun Illegal : Ind DeonticAttribute ; - - --- Forming a mental picture of something which --- is not present. -fun Imagining : Class ; -fun Imagining_Class : SubClass Imagining PsychologicalProcess ; - --- Any Translocation by a Human from one Nation --- to another Nation where the person is not a citizen for the purpose of taking --- up residence. -fun Immigrating : Class ; -fun Immigrating_Class : SubClass Immigrating Translocation ; - --- The class of Confining processes where the detainee --- is put in Prison. -fun Imprisoning : Class ; -fun Imprisoning_Class : SubClass Imprisoning Confining ; - --- An attack in which an agent --- uses a device which causes fire in order to destroy life or property. -fun IncendiaryDeviceAttack : Class ; -fun IncendiaryDeviceAttack_Class : SubClass IncendiaryDeviceAttack (both Combustion ViolentContest) ; - - --- Moving one's body downward from a vertical position. --- Note that this class covers cases of leaning forward, as well as those of --- reclining backwards. -fun Inclining : Class ; -fun Inclining_Class : SubClass Inclining (both BodyMotion MotionDownward) ; - - --- A Tax on annual income. -fun IncomeTax : Class ; -fun IncomeTax_Class : SubClass IncomeTax Tax ; - --- Pointing out a person, place or thing with --- one's hand or with an Artifact. -fun Indicating : Class ; -fun Indicating_Class : SubClass Indicating (both BodyMotion Communication) ; - - --- Any Region which is enclosed by a Building. -fun Indoors : Ind Region ; - - --- A Building or part of a Building or group --- of Buildings whose purpose is to Manufacture something. -fun IndustrialPlant : Class ; -fun IndustrialPlant_Class : SubClass IndustrialPlant StationaryArtifact ; - --- The class of Collections of Corporations --- which are in the same line of business. -fun Industry : Class ; -fun Industry_Class : SubClass Industry Collection ; - --- Any DiseaseOrSyndrome that is caused by a --- Microorganism. -fun InfectiousDisease : Class ; -fun InfectiousDisease_Class : SubClass InfectiousDisease DiseaseOrSyndrome ; - --- An event in which an agent joins an --- organization under false pretenses. The objective of such an act --- is often to gather information helpful to a rival organization. -fun Infiltration : Class ; -fun Infiltration_Class : SubClass Infiltration JoiningAnOrganization ; - --- Any Quantity that is not limited or bounded --- in magnitude. -fun InfiniteQuantity : Class ; -fun InfiniteQuantity_Class : SubClass InfiniteQuantity Quantity ; - --- Any instance of Breathing where the breath is --- taken into the Lungs. -fun Inhaling : Class ; -fun Inhaling_Class : SubClass Inhaling Breathing ; - --- Any UnilateralGetting where the agent --- receives some part of the property of a person upon the death of the --- person. -fun Inheriting : Class ; -fun Inheriting_Class : SubClass Inheriting UnilateralGetting ; - --- Inside is a PositionalAttribute used to --- describe the relative location of one object or region to another --- region. For example, (orientation Virginia UnitedStates Inside). -fun Inside : Ind PositionalAttribute ; - - --- Putting a Device in a location and configuring --- the Device so that it can be used as intended after the installation. -fun Installing : Class ; -fun Installing_Class : SubClass Installing Putting ; - --- Music which is produced (at least in part) --- by a MusicalInstrument. -fun InstrumentalMusic : Class ; -fun InstrumentalMusic_Class : SubClass InstrumentalMusic Music ; - --- A Hormone secreted by the Pancreas that is used --- to regulate the metabolism of Carbohydrates. -fun Insulin : Class ; -fun Insulin_Class : SubClass Insulin Hormone ; - --- A CommercialAgent that insures Agents --- for the payment of a premium or premiums. -fun InsuranceCompany : Class ; -fun InsuranceCompany_Class : SubClass InsuranceCompany CommercialAgent ; - --- A Certificate that states the terms of an --- insurance contract. -fun InsurancePolicy : Class ; -fun InsurancePolicy_Class : SubClass InsurancePolicy Certificate ; - --- The FieldOfStudy of designing the interiors of --- Buildings. -fun InteriorDesign : Ind FieldOfStudy ; - - --- InternalCombustionEngine is --- the subclass of Engines in which a heat reaction that occurs inside --- the engine is transformed into mechanical energy. -fun InternalCombustionEngine : Class ; -fun InternalCombustionEngine_Class : SubClass InternalCombustionEngine Engine ; - --- An Attribute that applies to Propositions --- that express Laws concerning the relations between Nations. -fun InternationalLaw : Ind DeonticAttribute ; - - --- A FormalMeeting whose purpose is to acquire --- information from the interviewee that can be used in a media report. -fun Interviewing : Class ; -fun Interviewing_Class : SubClass Interviewing FormalMeeting ; - --- A BodyVessel which connects the Stomach to --- the anus and which is used in digesting Food. -fun Intestine : Class ; -fun Intestine_Class : SubClass Intestine (both AnimalAnatomicalStructure BodyVessel) ; - - --- An item of value purchased for income or capital appreciation. -fun Investment : Class ; -fun Investment_Class : SubClass Investment FinancialAsset ; - --- An electronically charged Atom or Molecule. In --- other words, a PureSubstance that has lost one of its Electrons. -fun Ion : Class ; -fun Ion_Class : SubClass Ion PureSubstance ; - --- A very hard substance that makes up the tusks of --- elephants and walruses. -fun Ivory : Class ; -fun Ivory_Class : SubClass Ivory Bone ; - --- Any Position which involves cleaning a Building --- or some of the Rooms within a Building. -fun Janitor : Class ; -fun Janitor_Class : SubClass Janitor UnskilledOccupation ; - --- The Profession of being a news reporter, i.e. --- investigating and reporting, in a publication or broadcast program, current --- events. -fun Journalist : Class ; -fun Journalist_Class : SubClass Journalist Profession ; - --- An Attorney who has the power of deciding legal cases. -fun Judge : Class ; -fun Judge_Class : SubClass Judge (both Attorney GovernmentOfficer) ; - - --- Any MotionUpward which is done by one's body --- and which results in a situation where one's feet are unsupported. -fun Jumping : Class ; -fun Jumping_Class : SubClass Jumping (both BodyMotion MotionUpward) ; - - --- The class of PostSecondarySchools that --- offer an associate's degree and do not offer a bachelor's degree. -fun JuniorCollege : Class ; -fun JuniorCollege_Class : SubClass JuniorCollege PostSecondarySchool ; - --- A GroupOfPeople who are given the duty of rendering a --- verdict with respect to a LegalAction. -fun Jury : Class ; -fun Jury_Class : SubClass Jury GroupOfPeople ; - --- A Device which opens and closes a Lock. -fun Key : Class ; -fun Key_Class : SubClass Key SecurityDevice ; - --- Any instance of Impelling where the instrument --- is a Foot of the agent. -fun Kicking : Class ; -fun Kicking_Class : SubClass Kicking Impelling ; - --- An event in which one agent keeps another --- against his or her will, in order to force it or a third agent to --- accede to some demand. The kidnapped party is normally removed from --- the location where first attacked. In contrast to a HotageTaking, --- a kidnapping normally involves an attack on one, or a very small --- number of people, such as a couple. -fun Kidnapping : Class ; -fun Kidnapping_Class : SubClass Kidnapping Robbing ; - --- An Organ that separates urine from other --- BodySubstances and passes it to the bladder. -fun Kidney : Class ; -fun Kidney_Class : SubClass Kidney (both AnimalAnatomicalStructure Organ) ; - - --- The class of Touching processes where the lips --- of two persons are brought into contact with each other. -fun Kissing : Class ; -fun Kissing_Class : SubClass Kissing Touching ; - --- A Room intended for Cooking. -fun Kitchen : Class ; -fun Kitchen_Class : SubClass Kitchen Room ; - --- The joint in the Leg connecting the tibia and fibula --- with the femur. -fun Knee : Class ; -fun Knee_Class : SubClass Knee BodyJoint ; - --- The BodyPosition of resting one's weight on one's --- Knees. -fun Kneeling : Ind BodyPosition ; - - --- A sharp object used for cutting. The object must --- have at least single blade or major protrusion which may be sharp at its --- end as well. It may be sharp on both sides, or just one. Unlike an awl --- it has a sharp edge rather than a point. Unlike scissors, it is a single --- blade without additional articulated parts. Unlike an axe, a knife is --- well_designed for slicing rather than chopping, although a heavy knife --- such as a broadsword can also be used for chopping, whereas a non_knife is --- not well designed for slicing meat for example. A knife can be small like --- a pocket knife, or large like a two_handed broadsword. A knife may also --- include other protrusions such as in the split swords and trident_like --- objects (that also possess a long sharp edge) in Chinese weaponry. -fun Knife : Class ; -fun Knife_Class : SubClass Knife CuttingDevice ; - --- An attack in which a knife is used. -fun KnifeAttack : Class ; -fun KnifeAttack_Class : SubClass KnifeAttack ViolentContest ; - --- A SocialRole that is assigned by the --- UnitedKingdom to persons for reasons of personal merit. -fun Knight : Ind SocialRole ; - - --- Any joint in a Finger. -fun Knuckle : Class ; -fun Knuckle_Class : SubClass Knuckle BodyJoint ; - --- A very brief Text that is attached to an Object --- and that indicates very specific information about the Object, e.g. its --- name, its monetaryValue, etc. -fun Label : Class ; -fun Label_Class : SubClass Label Text ; - --- A Process in which some or all of the --- employees of an Organization refuse to work until their pay is --- increased or their working conditions are improved in some respect. -fun LaborStriking : Class ; -fun LaborStriking_Class : SubClass LaborStriking OrganizationalProcess ; - --- A Building, Room or suite of Rooms where --- scientific research, i.e. Experimenting, is conducted. -fun Laboratory : Class ; -fun Laboratory_Class : SubClass Laboratory StationaryArtifact ; - --- An Artifact which consists of two parallel supports --- connected by a series of rungs which can be used to ascend or descend. -fun Ladder : Class ; -fun Ladder_Class : SubClass Ladder Artifact ; - --- A young Sheep, i.e. a Sheep that is NonFullyFormed. -fun Lamb : Class ; -fun Lamb_Sheep : SubClassC Lamb Sheep (\L -> attribute(var Sheep Object ? L)(el DevelopmentalAttribute Attribute ? NonFullyFormed)); - - --- Any instance of Transportation where the --- instrument is a LandVehicle. -fun LandTransportation : Class ; -fun LandTransportation_Class : SubClass LandTransportation Transportation ; - --- LandVehicle is the class of TransportationDevices that travel on --- land. The two main types of LandVehicle are RoadVehicle and --- RailVehicle. Note that this includes vehicles which travel on any solid --- surface, including a frozen body of water or snow. -fun LandVehicle : Class ; -fun LandVehicle_Class : SubClass LandVehicle Vehicle ; - --- Any instance of Translocation which ends up on something other --- than an AtmosphericRegion and which has an instance of Flying as a subProcess. -fun Landing : Class ; -fun Landing_Class : SubClass Landing Translocation ; - --- (LastFn ?LIST) returns the last item in the --- List ?LIST. For example, (LastFn (ListFn Monday Tuesday --- Wednesday)) would return the value of Wednesday. -fun LastFn : El List -> Ind Entity ; - - --- A Language that was spoken in ancient Rome and --- is still the official language of the Vatican. -fun LatinLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; - - --- Expressing happiness by Vocalizing in a --- certain way. -fun Laughing : Class ; -fun Laughing_Class : SubClass Laughing (both FacialExpression Vocalizing) ; - - --- Any RegulatoryProcess where the agent is either --- a PoliceOrganization or a member of a PoliceOrganization. This covers --- everything from issuing a traffic ticket to arresting someone on suspicion of having --- committed a Murder. -fun LawEnforcement : Class ; -fun LawEnforcement_Class : SubClass LawEnforcement (both PoliticalProcess RegulatoryProcess) ; - - --- A CultivatedLandArea and Field --- containing mowed Grass. -fun Lawn : Class ; -fun Lawn_Class : SubClass Lawn (both CultivatedLandArea Field) ; - - --- Any OrganismProcess where an Egg is expelled --- from the body of a Animal, e.g. a Bird or Reptile laying eggs. -fun LayingEggs : Class ; -fun LayingEggs_Class : SubClass LayingEggs OrganismProcess ; - --- A Fabric that is the result of tanning an Animal --- Skin. -fun Leather : Class ; -fun Leather_Class : SubClass Leather Fabric ; - --- The initial part of any instance of Translocation. -fun Leaving : Class ; -fun Leaving_Class : SubClass Leaving Translocation ; - --- Any instance of Speaking which is done before an --- assembled audience. -fun Lecture : Class ; -fun Lecture_Class : SubClass Lecture (both Demonstrating Speaking) ; - - --- The lower Limbs of Primates. -fun Leg : Class ; -fun Leg_Class : SubClass Leg Limb ; - --- A proposition is Legal just in case it is not inconsistent --- with any proposition that is a Law. -fun Legal : Ind DeonticAttribute ; - - --- Asking that a higher court reconsider a LegalDecision --- of a lower court. -fun LegalAppeal : Class ; -fun LegalAppeal_Class : SubClass LegalAppeal (both JudicialProcess Requesting) ; - - --- Any LegalDecision where the defendant is found --- not to be guilty of the crime for which the corresponding trial was held. -fun LegalAquittal : Class ; -fun LegalAquittal_Class : SubClass LegalAquittal LegalDecision ; - --- Any LegalDecision which gives to the plaintiff of --- the corresponding LegalAction some amount of monetary compensation. -fun LegalAward : Class ; -fun LegalAward_Class : SubClass LegalAward LegalDecision ; - --- Any LegalAction of which a Government is --- the agent. -fun LegalCharge : Class ; -fun LegalCharge_Class : SubClass LegalCharge LegalAction ; - --- Any LegalDecision where the defendant is found --- guilty of the crime for which the corresponding trial was held. -fun LegalConviction : Class ; -fun LegalConviction_Class : SubClass LegalConviction LegalDecision ; - --- Any LegalDecision where the LegalAction of --- the plaintiff is dismissed by the court, e.g. for lack of merit. -fun LegalDismissal : Class ; -fun LegalDismissal_Class : SubClass LegalDismissal LegalDecision ; - --- An Argument that explains the reasoning behind a --- LegalDecision. -fun LegalOpinion : Class ; -fun LegalOpinion_Class : SubClass LegalOpinion Argument ; - --- An official order that a person appear at a --- CourtRoom at a specified time. -fun LegalSummons : Class ; -fun LegalSummons_Class : SubClass LegalSummons (both JudicialProcess Ordering) ; - - --- The Attribute of being a proposed law, --- i.e. being under consideration by a legislative body of Government. -fun LegislativeBill : Ind DeonticAttribute ; - - --- LegislativeOrganization is the --- class of Organizations that have as their main purpose the passing of --- laws or regulations. -fun LegislativeOrganization : Class ; -fun LegislativeOrganization_Class : SubClass LegislativeOrganization Organization ; - --- A citrus FruitOrVegetable that has a Yellow skin --- and a tart, acidic flavor. -fun LemonFruit : Class ; -fun LemonFruit_Class : SubClass LemonFruit (both Food FruitOrVegetable) ; - - --- Increasing the length of something. -fun Lengthening : Class ; -fun Lengthening_Class : SubClass Lengthening Increasing ; - --- An OpticalDevice which consists of a polished, --- transparent piece of glass or plastic. Lenses are often part of --- other OpticalDevices. -fun Lens : Class ; -fun Lens_Class : SubClass Lens OpticalDevice ; - --- Any AbnormalAnatomicalStructure which is the result of --- an Injuring and which is found on the surface of an Organ. -fun Lesion : Class ; -fun Lesion_Class : SubClass Lesion AbnormalAnatomicalStructure ; - --- A brief message which is intended to be mailed --- to a person or Organization. -fun Letter : Class ; -fun Letter_Class : SubClass Letter FactualText ; - --- An attack with a bomb that is --- concealed in a letter or package, which is typically designed to --- explode upon opening. -fun LetterBombAttack : Class ; -fun LetterBombAttack_Class : SubClass LetterBombAttack Bombing ; - --- The ShapeAttribute of Objects where no --- part of the top of the Object is higher than any other part of the --- top. -fun LevelShape : Ind ShapeAttribute ; - - --- An EducationalOrganization which is a repository --- of Texts which have been classified for efficient retrieval. -fun Library : Class ; -fun Library_Class : SubClass Library EducationalOrganization ; - --- License is the subclass of Certificates that --- are granted by a GovernmentOrganization and that authorize the performance --- of a kind of action, e.g., driving, exporting, travelling to another --- country, etc. -fun License : Class ; -fun License_Class : SubClass License Certificate ; - --- The class of Touching processes where the Tongue --- is brought into contact with something else. -fun Licking : Class ; -fun Licking_Class : SubClass Licking Touching ; - --- A commissioned MilitaryOfficer. -fun Lieutenant : Class ; -fun Lieutenant_Class : SubClass Lieutenant MilitaryOfficer ; - --- The second_in_command of some Governments --- of AmericanStates. -fun LieutenantGovernor : Ind Position ; - - --- Any Device whose purpose is to be a source of --- visible light. -fun LightFixture : Class ; -fun LightFixture_Class : SubClass LightFixture Device ; - --- A WeatherProcess which involves a significant --- release of electricity from a Cloud. -fun Lightning : Class ; -fun Lightning_Class : SubClass Lightning (both Radiating WeatherProcess) ; - - --- A FloweringPlant that has large clusters of --- aromatic flowers. -fun Lilac : Class ; -fun Lilac_Class : SubClass Lilac FloweringPlant ; - --- Any of the limbs of a Vertebrate. --- Animal Appendages with joints that are used for movement --- and grasping. -fun Limb : Class ; -fun Limb_Class : SubClass Limb (both AnimalAnatomicalStructure BodyPart) ; - - --- A ShapeAttribute that applies to --- Collections and indicates that all of the members of the Collection --- are arrayed in a line, i.e. each member (except possibly the first) is --- behind or to the side of exactly one other member. -fun LineFormation : Ind ShapeAttribute ; - - --- Any Attribute that is --- expressed by a Language or class of Languages. -fun LinguisticAttribute : Class ; -fun LinguisticAttribute_Class : SubClass LinguisticAttribute InternalAttribute ; - --- The field of linguistics. -fun Linguistics : Ind SocialScience ; - - --- Folds of Tissue surrounding the mouths of some --- Vertebrates. -fun Lip : Class ; -fun Lip_Class : SubClass Lip (both AnimalAnatomicalStructure BodyPart) ; - - --- LiquefiedPetroleumGas is a --- compressed hydrocarbon gas. -fun LiquefiedPetroleumGas : Class ; -fun LiquefiedPetroleumGas_Class : SubClass LiquefiedPetroleumGas (both FossilFuel RefinedPetroleumProduct) ; - - --- Any BodySubstance which is Liquid --- under normal circumstances. -fun LiquidBodySubstance : Class ; -fun LiquidBodySubstance_Class : SubClass LiquidBodySubstance BodySubstance ; - --- A UnitOfMeasure used in preparing AlcoholicBeverages. -fun LiquorShot : Ind UnitOfVolume ; - - --- The ability to read and write. Someone who --- has this Attribute is able to read and write. -fun LiteracyAttribute : Ind TraitAttribute ; - - --- The study of literature, i.e. instances of FictionalText --- that are regarded as having special merit. -fun Literature : Ind FieldOfStudy ; - - --- An Organ that secretes bile and serves metabolic --- functions. -fun Liver : Class ; -fun Liver_Class : SubClass Liver (both AnimalAnatomicalStructure Organ) ; - - --- Livestock is the class of live animals --- raised as AgriculturalProducts. -fun Livestock : Class ; -fun Livestock_Class : SubClass Livestock (both AnimalAgriculturalProduct DomesticAnimal) ; - - --- Inserting ammunition into a ProjectileWeapon --- in such a way that the ammunition can be fired by the weapon. -fun LoadingWeapon : Class ; -fun LoadingWeapon_Class : SubClass LoadingWeapon Inserting ; - --- A Device, which, through a Key or a combination prevents --- access to a Container or StationaryArtifact. -fun Lock : Class ; -fun Lock_Class : SubClass Lock SecurityDevice ; - --- A three dimensional object that --- has two thin dimensions and one markedly larger one. -fun LongAndThin : Ind ShapeAttribute ; - - --- The process of transitioning from a state --- of being Awake to a state of being Unconscious. -fun LosingConsciousness : Class ; -fun LosingConsciousness_Class : SubClass LosingConsciousness PsychologicalProcess ; - --- The ContestAttribute that applies to a Contest --- participant who has lost the Contest. -fun Lost : Ind ContestAttribute ; - - --- A respiratory organ of Vertebrates. Its function is --- to furnish the blood with oxygen and to remove carbon dioxide. -fun Lung : Class ; -fun Lung_Class : SubClass Lung (both AnimalAnatomicalStructure Organ) ; - - --- The BodyMotion of moving from a Sitting --- to a Prostrate position. -fun LyingDown : Class ; -fun LyingDown_Class : SubClass LyingDown (both BodyMotion MotionDownward) ; - - --- A lynching is a form of Killing conducted under --- a thin guise of legitimacy by a vigilante group. It may be a purge of an --- individual from the group who is perceived to have gone astray, or it may --- be the summary execution of an individual outside the group that the group --- has determined has violated some law or code, either of the group, or the --- larger society. A lynching is distinguished from a legal execution in --- that the laws of a government are not followed in carrying out the --- killing. A lynching is distinguished from a murder in that there is the --- pretense of some process carried out by a group in the name of their own --- group or a higher power. -fun Lynching : Class ; -fun Lynching_Class : SubClass Lynching Killing ; - --- Any Text which is intended to be sung. -fun Lyrics : Class ; -fun Lyrics_Class : SubClass Lyrics Text ; - --- A Periodical that is softbound and printed on --- glossy paper. -fun Magazine : Class ; -fun Magazine_Class : SubClass Magazine Periodical ; - --- Any instance of RadiatingElectromagnetic which --- involves the attraction of Iron. -fun Magnetism : Class ; -fun Magnetism_Class : SubClass Magnetism RadiatingElectromagnetic ; - --- Any ServicePosition where various needs of a person --- or family are served over a long period of time. Note that these Positions --- are, by definition, filled only by Women. -fun Maid : Class ; -fun Maid_Class : SubClass Maid ServicePosition ; - --- A Container whose purpose is to receive items --- that are mailed to the address associated with the Mailbox. -fun Mailbox : Class ; -fun Mailbox_Class : SubClass Mailbox Container ; - --- Any instance of Transfer where a postal system is --- used to move the patient, either a letter or a package. -fun Mailing : Class ; -fun Mailing_Class : SubClass Mailing Transfer ; - --- A CerealGrain which is found on long ears of a Plant --- native to the Americas. -fun MaizeGrain : Class ; -fun MaizeGrain_Class : SubClass MaizeGrain (both CerealGrain GroceryProduce) ; - - --- A MilitaryGeneral that ranks above a --- BrigadierGeneral. -fun MajorGeneral : Class ; -fun MajorGeneral_Class : SubClass MajorGeneral MilitaryGeneral ; - --- Indicates that a Device is not performing --- its intended function. -fun Malfunctioning : Ind DeviceAttribute ; - - --- A pipe which has several outlets for other pipes that flow --- into or out of it. -fun Manifold : Class ; -fun Manifold_Class : SubClass Manifold EngineeringComponent ; - --- Any Position which involves manual --- work. -fun ManualLabor : Class ; -fun ManualLabor_Class : SubClass ManualLabor Position ; - --- An Icon which represents one or more GeographicAreas --- (or even the entire Earth). -fun Map : Class ; -fun Map_Class : SubClass Map Icon ; - --- A metamorphic Rock that is used in Constructing --- and in creating Sculptures. -fun Marble : Class ; -fun Marble_Class : SubClass Marble Rock ; - --- An area, building, or set of buildings --- where FinancialTransactions are intended to take place. There should --- be more than one owner or renter of space or buildings within the --- marketplace. -fun Marketplace : Class ; -fun Marketplace_Class : SubClass Marketplace GeographicArea ; - --- A Contract between a married couple --- about how assets owned by the couple will be distributed in the event --- that the couple is divorced. -fun MarriageContract : Ind DeonticAttribute ; - - --- A PoliceOfficer whose responsibility is to enforce --- the decisions of a law court. -fun Marshal : Class ; -fun Marshal_Class : SubClass Marshal PoliceOfficer ; - --- A subclass of TherapeuticProcess which involves --- kneading Muscles in such a way that tension is relieved, blood circulation --- is increased, etc. -fun Massaging : Class ; -fun Massaging_Class : SubClass Massaging (both TherapeuticProcess Touching) ; - - --- A large pole in the center of a WaterVehicle which is --- used to support a sail. -fun Mast : Class ; -fun Mast_Class : SubClass Mast Artifact ; - --- A small stick of carboard or wood that is treated --- with chemicals that can be easily ignited with friction. MatchDevices are --- used for starting fires. -fun MatchDevice : Class ; -fun MatchDevice_Class : SubClass MatchDevice Device ; - --- MaterialHandlingEquipment --- is a class of Devices that are equipment used for handling goods and --- supplies more efficiently or safely. Examples are cranes, hoists, --- forklifts, conveyors, racks, etc. -fun MaterialHandlingEquipment : Class ; -fun MaterialHandlingEquipment_Class : SubClass MaterialHandlingEquipment Device ; - --- The FieldOfStudy dealing with quantities and their --- relations to one another. -fun Mathematics : Ind FieldOfStudy ; - - --- Any process of sexual intercourse between two Humans --- or Animals. -fun Mating : Class ; -fun Mating_Class : SubClass Mating OrganismProcess ; - --- The head of the Government of a City. -fun Mayor : Ind Position ; - - --- MediaOrganization is the subclass --- of Organization for groups whose primary purpose is the production or --- dissemination of media content. For organizations that physically enable --- Communication, see CommunicationOrganization. -fun MediaOrganization : Class ; -fun MediaOrganization_Class : SubClass MediaOrganization Organization ; - --- A CareOrganization which provides medical care --- on an out_patient basis only, i.e. there are no rooms where patients may take --- up residence for a period of time while they receive care. -fun MedicalClinic : Class ; -fun MedicalClinic_Class : SubClass MedicalClinic CareOrganization ; - -fun MedicalClinicBuilding : Class ; -fun MedicalClinicBuilding_Class : SubClass MedicalClinicBuilding Building ; --- The Profession of being a medical doctor, --- i.e. having attended medical school and being licensed to practice medicine. -fun MedicalDoctor : Class ; - - --- A GraduateSchool that is devoted to --- MedicalScience and that grants the degree of doctor of medicine. -fun MedicalSchool : Class ; -fun MedicalSchool_Class : SubClass MedicalSchool GraduateSchool ; - --- The field of medicine. -fun MedicalScience : Ind Science ; - - --- Any BiologicallyActiveSubstance which has a --- therapeutic effect under certain conditions. -fun Medicine : Class ; -fun Medicine_Class : SubClass Medicine BiologicallyActiveSubstance ; - --- The process of committing a Text to memory. -fun Memorizing : Class ; -fun Memorizing_Class : SubClass Memorizing Learning ; - --- A periodic discharge of Blood and other --- BiologicalSubstances by Females that is part of a readjustment of --- the uterus. -fun Menstruation : Class ; -fun Menstruation_Class : SubClass Menstruation OrganOrTissueProcess ; - --- A FactualText which is intended to be delivered to --- and read by a Human, GroupOfPeople or Organization. -fun Message : Class ; -fun Message_Class : SubClass Message FactualText ; - --- Any instance of Transfer where a Message is the --- patient. -fun Messaging : Class ; -fun Messaging_Class : SubClass Messaging Transfer ; - --- A Mixture of two or more Metals, and possibly --- nonmetallic elements as well. For example, steel is an alloy containing iron --- and manganese. -fun MetallicAlloy : Class ; -fun MetallicAlloy_Class : SubClass MetallicAlloy Mixture ; - --- Any Meteoroid that leaves traces on the surface --- of Earth. -fun Meteorite : Class ; -fun Meteorite_Class : SubClass Meteorite Meteoroid ; - --- Any AstronomicalBody that breaks through the --- Atmosphere of Earth. -fun Meteoroid : Class ; -fun Meteoroid_Class : SubClass Meteoroid AstronomicalBody ; - --- MetricTon is a UnitOfMeasure that represents --- a weight of 2,205 PoundMass. -fun MetricTon : Ind UnitOfMass ; - - --- A CommunicationDevice that converts sound --- into electrical energy. -fun Microphone : Class ; -fun Microphone_Class : SubClass Microphone (both CommunicationDevice ElectricDevice) ; - - --- An OpticalDevice with a stand and a focus, which is --- used for magnifying the images of things that are placed in the stand. -fun Microscope : Class ; -fun Microscope_Class : SubClass Microscope OpticalDevice ; - --- A militant is someone who is not --- officially authorized by a government to engage in combat, but who --- does so on behalf of a PoliticalOrganization. -fun Militant : Ind SocialRole ; - - --- Any Aircraft which is made for a --- MilitaryOrganization. This includes fighters, Bombers, attack --- helicopters, etc. -fun MilitaryAircraft : Class ; -fun MilitaryAircraft_Class : SubClass MilitaryAircraft (both Aircraft MilitaryVehicle) ; - - --- Any Artifact which is made for a --- MilitaryOrganization. -fun MilitaryArtifact : Class ; -fun MilitaryArtifact_Class : SubClass MilitaryArtifact Artifact ; - --- Any MilitaryUnit with the rank of --- corps. -fun MilitaryCorps : Class ; -fun MilitaryCorps_Class : SubClass MilitaryCorps MilitaryUnit ; - --- A GeographicArea along which opposing military --- forces confront one another in a Battle. -fun MilitaryFront : Class ; -fun MilitaryFront_Class : SubClass MilitaryFront GeographicArea ; - --- MilitaryGeneral is a generic Position --- that indicates holding (or having held) the rank of General in some --- military force. An indicator that someone uses the title, without --- committing to his or her exact rank or military affiliation. -fun MilitaryGeneral : Class ; -fun MilitaryGeneral_Class : SubClass MilitaryGeneral MilitaryOfficer ; - --- Any Process by a MilitaryOrganization --- which involves moving through enemy positions without detection by the enemy. -fun MilitaryInfiltration : Class ; -fun MilitaryInfiltration_Class : SubClass MilitaryInfiltration (both MilitaryProcess Translocation) ; - - --- A StationaryArtifact consisting of grounds --- and Buildings that is intended to be used by a MilitaryOrganization. -fun MilitaryInstallation : Class ; -fun MilitaryInstallation_Class : SubClass MilitaryInstallation (both MilitaryArtifact StationaryArtifact) ; - - --- Any Maneuver which takes place in a Battle --- and which is intended to secure a tactical advantage for one of the agents of --- the Battle. -fun MilitaryManeuver : Class ; -fun MilitaryManeuver_Class : SubClass MilitaryManeuver Maneuver ; - --- The class of Soldiers who have authority or command. -fun MilitaryOfficer : Class ; -fun MilitaryOfficer_Class : SubClass MilitaryOfficer Soldier ; - --- Someone who is a member of a --- ModernMilitaryOrganization. -fun MilitaryPerson : Ind OccupationalRole ; - - --- An enlisted Soldier of the lowest rank. -fun MilitaryPrivate : Class ; -fun MilitaryPrivate_Class : SubClass MilitaryPrivate Soldier ; - --- MilitaryReserveForce is the subclass --- of MilitaryOrganizations that consist of forces trained in military --- procedures and activities, which are subject to being called to active duty --- if needed. -fun MilitaryReserveForce : Class ; -fun MilitaryReserveForce_Class : SubClass MilitaryReserveForce MilitaryOrganization ; - --- The study of the principles of war. -fun MilitaryScience : Ind FieldOfStudy ; - - --- A branch of the armed forces of a Nation. --- For example, there are five military services in the United States, the army, --- the navy, the air force, the marines, and the coast guard. -fun MilitaryService : Class ; -fun MilitaryService_Class : SubClass MilitaryService MilitaryOrganization ; - --- Any Ship which is made for a MilitaryOrganization. --- This includes aircraft carriers, destroyers, etc. -fun MilitaryShip : Class ; -fun MilitaryShip_Class : SubClass MilitaryShip (both MilitaryWaterVehicle Ship) ; - - --- Any MilitaryUnit with the rank of squad. -fun MilitarySquad : Class ; -fun MilitarySquad_Class : SubClass MilitarySquad MilitaryUnit ; - --- Any MilitaryArtifact which is sold to a --- non_military customer. -fun MilitarySurplus : Class ; -fun MilitarySurplus_Class : SubClass MilitarySurplus MilitaryArtifact ; - --- A MilitaryVehicle that moves along the ground --- on treaded wheels and that contains a large cannon. -fun MilitaryTank : Class ; -fun MilitaryTank_Class : SubClass MilitaryTank (both ArtilleryGun (both MilitaryVehicle RoadVehicle)) ; - - --- Any MilitaryOrganization that can be dispatched --- to an area of operations. -fun MilitaryUnit : Class ; -fun MilitaryUnit_Class : SubClass MilitaryUnit MilitaryOrganization ; - --- Any Vehicle which is intended to be --- used by a MilitaryOrganization. MilitaryVehicle Military platforms which are also vehicles. --- This would include things like airplanes and tanks, but exclude things like --- towed platforms. -fun MilitaryVehicle : Class ; -fun MilitaryVehicle_Class : SubClass MilitaryVehicle Vehicle ; - --- MilitaryWaterVehicle is the class of --- all WaterVehicle owned or leased for use by some MilitaryOrganization. -fun MilitaryWaterVehicle : Class ; -fun MilitaryWaterVehicle_Class : SubClass MilitaryWaterVehicle WaterVehicle ; - --- A nutritious BodySubstance produced by Mammals --- that has evolved to provide nourishment for their offspring during --- their initial period of life. -fun Milk : Class ; -fun Milk_Class : SubClass Milk (both Beverage LiquidBodySubstance) ; - - --- The UnitOfDuration of 1000 years. -fun MillenniumDuration : Ind UnitOfDuration ; - - --- An construction in the earth from which Minerals are removed, --- either in pure form or as part of ores. -fun Mine : Class ; -fun Mine_Class : SubClass Mine StationaryArtifact ; - --- MiningProduct is the class of things --- that are produced from the earth for human use by mining or another form --- of extraction. This includes metal ores, petroleum, and other products. -fun MiningProduct : Class ; -fun MiningProduct_Class : SubClass MiningProduct Product ; - --- An Artifact with a surface that is capable of --- displaying an image by reflecting light. -fun Mirror : Class ; -fun Mirror_Class : SubClass Mirror Artifact ; - --- A Projectile which is propelled by a rocket and --- contains a Bomb. -fun Missile : Class ; -fun Missile_Class : SubClass Missile (both Projectile SelfPoweredDevice) ; - - --- The class of ReligiousOrganizations --- that send members to foreign countries with the aim of coverting citizens --- of those countries to the beliefs of the ReligiousOrganization. -fun MissionOrganization : Class ; -fun MissionOrganization_Class : SubClass MissionOrganization ReligiousOrganization ; - --- Anything which serves to house people but --- which changes its location from time to time, e.g. a motorhome, a mobile --- home, a camp, etc. Note that MobileResidence is disjoint from Residence, --- because the latter is a subclass of StationaryArtifact. -fun MobileResidence : Class ; -fun MobileResidence_Class : SubClass MobileResidence Artifact ; - --- Any Position which involves posing for an --- artist or photographer. -fun ModellingPosition : Class ; -fun ModellingPosition_Class : SubClass ModellingPosition Position ; - --- Music which has a single part, i.e. Music --- which cannot be divided into two or more contemporaneous subProcesses which --- are also instances of Music. -fun MonophonicMusic : Class ; -fun MonophonicMusic_Class : SubClass MonophonicMusic Music ; - --- A StationaryArtifact whose purpose is to commemorate --- a person, animal or event. -fun Monument : Class ; -fun Monument_Class : SubClass Monument StationaryArtifact ; - --- The class of TimeIntervals that begin at Sunrise --- and end at noon. -fun Morning : Class ; -fun Morning_Class : SubClass Morning DayTime ; - --- A mortar is a bomb that is shot at a location. A --- howitzer is a weapon that fires mortars. The mortar may not include the --- propelling charge that provides the motive force for delivering it to its --- target, which distinguishes it from a rocket. A mortar is distinguished --- from other bombs in that it is propelled rather than exploded in place, or --- dropped, or propelled by human power. -fun Mortar : Class ; -fun Mortar_Class : SubClass Mortar Weapon ; - --- An attack in which a Mortar weapon is --- used. -fun MortarAttack : Class ; -fun MortarAttack_Class : SubClass MortarAttack Bombing ; - --- A short_range Gun that is positioned on the ground --- at a high angle and fires explosive shells. -fun MortarGun : Class ; -fun MortarGun_Class : SubClass MortarGun ArtilleryGun ; - --- Nocturnal Insect with a large body and antennae. -fun Moth : Class ; -fun Moth_Class : SubClass Moth Insect ; - --- A discrete part of a MotionPicture which is set in --- the same time period and the same location. -fun MotionPictureScene : Class ; -fun MotionPictureScene_Class : SubClass MotionPictureScene MotionPicture ; - --- A unit of action in a MotionPicture, a --- MotionPictureShot is a sequence of images which are captured by a single --- camera without interruption. -fun MotionPictureShot : Class ; -fun MotionPictureShot_Class : SubClass MotionPictureShot MotionPicture ; - --- Motorcycle is the subclass of RoadVehicles --- that have two wheels one behind the other in the frame, upon which the rider --- sits on a seat above the engine. -fun Motorcycle : Class ; -fun Motorcycle_Class : SubClass Motorcycle SelfPoweredRoadVehicle ; - --- MotorizedRailwayCar is the subclass --- of railway cars that carry their own power source. -fun MotorizedRailwayCar : Class ; -fun MotorizedRailwayCar_Class : SubClass MotorizedRailwayCar (both PoweredVehicle RollingStock) ; - - --- Any BodyMotion which results in being On --- something else. -fun Mounting : Class ; -fun Mounting_Class : SubClass Mounting BodyMotion ; - --- A Rodent that has a hairless tail like a rat but that --- is smaller than a Rat. -fun Mouse : Class ; -fun Mouse_Class : SubClass Mouse Rodent ; - --- Part of the Face, used for Ingesting Food --- and Vocalizing. -fun Mouth : Class ; -fun Mouth_Class : SubClass Mouth (both AnimalAnatomicalStructure BodyPart) ; - - --- The process of changing one's residence, i.e. --- moving one's belongs to a new home. -fun MovingResidence : Class ; -fun MovingResidence_Class : SubClass MovingResidence Transfer ; - --- The product of a Male Donkey and a Female --- Horse. Mules are always sterile. -fun Mule : Class ; -fun Mule_Class : SubClass Mule (both DomesticAnimal HoofedMammal) ; - - --- Impermissible Killing of a Human. -fun Murder : Class ; -fun Murder_Class : SubClass Murder (both CriminalAction Killing) ; - - --- An EducationalOrganization where Artifacts of historic, --- scientific or aesthetic value are collected and exhibited. -fun Museum : Class ; -fun Museum_Class : SubClass Museum EducationalOrganization ; - --- An AudioRecording of Music. Note that --- many AudioRecordings contain music, so only an audio recording without --- any music would be an instance of AudioRecording rather than of --- MusicRecording. -fun MusicRecording : Class ; -fun MusicRecording_Class : SubClass MusicRecording AudioRecording ; - --- A Text in a Language that represents a form --- of music. -fun MusicText : Class ; -fun MusicText_Class : SubClass MusicText Text ; - --- A Text that expresses the notes, --- words, etc. of a song or other sort of Music. -fun MusicalComposition : Class ; -fun MusicalComposition_Class : SubClass MusicalComposition Text ; - --- A GroupOfPeople that create Music --- together. -fun MusicalGroup : Class ; -fun MusicalGroup_Class : SubClass MusicalGroup GroupOfPeople ; - --- A Performance that consists exclusively of --- Music, e.g. an orchestra playing a symphony to an assembled audience. -fun MusicalPerformance : Class ; -fun MusicalPerformance_Class : SubClass MusicalPerformance Performance ; - --- A Process of RadiatingSound where the --- sound has a fundamental frequency and 0 or more partial frequencies --- or unrelated transients or noise components that have a lesser --- amplitude than the fundamental. -fun MusicalTone : Class ; -fun MusicalTone_Class : SubClass MusicalTone RadiatingSound ; - --- A Musician is someone who is capable of giving a MusicalPerformance. --- This includes amateurs and others who don't formally make a living at the activity --- or choose it as a profession. -fun Musician : Ind SocialRole ; - - --- A FictionalText whose central plot element is a --- crime of some sort, usually a murder. -fun MysteryStory : Class ; -fun MysteryStory_Class : SubClass MysteryStory FictionalText ; - --- An AttachingDevice which is a thin piece of metal, with --- or without a head, that is fastened with a Hammer. -fun Nail : Class ; -fun Nail_Class : SubClass Nail AttachingDevice ; - --- Any of the horny structures which are found --- on the DigitAppendages of Primates and other Animals. This includes --- fingernails and toenails. -fun NailDigit : Class ; -fun NailDigit_Class : SubClass NailDigit AnimalAnatomicalStructure ; - --- Any Text that tells a story, whether true --- or false. -fun NarrativeText : Class ; -fun NarrativeText_Class : SubClass NarrativeText Text ; - --- A Flag that is the official flag of a Nation, --- e.g. the stars and stripes is the NationalFlag of the UnitedStates. -fun NationalFlag : Class ; -fun NationalFlag_Class : SubClass NationalFlag Flag ; - --- The German PoliticalParty headed by Adolf Hitler. -fun NaziParty : Ind PoliticalParty ; - - --- The part of the body that connects the Head to the --- rest of the body. -fun Neck : Class ; -fun Neck_Class : SubClass Neck (both AnimalAnatomicalStructure BodyPart) ; - - --- A sweet, sticky liquid that is produced by Plants --- and that attracts Insects. -fun Nectar : Class ; -fun Nectar_Class : SubClass Nectar PlantSubstance ; - --- A Contest where each participant attempts to --- maximize his self_interest in a Promise that marks the end of the Contest. -fun Negotiating : Class ; -fun Negotiating_Class : SubClass Negotiating (both Contest LinguisticCommunication) ; - - --- The Cells that make up a NervousSystem. -fun NerveCell : Class ; -fun NerveCell_Class : SubClass NerveCell (both AnimalAnatomicalStructure Cell) ; - - --- Any structure which is created by nonhuman Animals for --- the purpose of giving birth to their offspring. -fun Nest : Class ; -fun Nest_Class : SubClass Nest CorpuscularObject ; - --- Any PsychologicalDysfunction which is not due --- to an organic impairment of the NervousSystem. -fun Neurosis : Class ; -fun Neurosis_Class : SubClass Neurosis PsychologicalDysfunction ; - --- The second and final part of the ChristianBible, --- describing the life and teachings of Jesus Christ and the activities of his --- apostles. -fun NewTestament : Class ; -fun NewTestament_Class : SubClass NewTestament Book ; - --- A BroadcastProgram that is devoted to --- reporting the latest events in a city, region, nation or the world at --- large. -fun NewsProgram : Class ; -fun NewsProgram_Class : SubClass NewsProgram BroadcastProgram ; - --- The Profession of being a news reporter, i.e. --- investigating and reporting, in a publication or broadcast program, current --- events. -fun NewsReporter : Ind Profession ; - - --- A Periodical that is published on a daily or --- weekly basis, that contains Reports, and whose issues are printed on --- newsprint paper. -fun Newspaper : Class ; -fun Newspaper_Class : SubClass Newspaper Periodical ; - --- The class of TimeIntervals that begin at Sunset --- and end at Sunrise. -fun NightTime : Class ; -fun NightTime_Class : SubClass NightTime TimeInterval ; - --- Moving the Head up and down or side to side --- to indicate approval or disapproval. -fun Nodding : Class ; -fun Nodding_Class : SubClass Nodding Gesture ; - --- Any Organization whose purpose is something --- other than making a profit. -fun NonprofitOrganization : Class ; -fun NonprofitOrganization_Class : SubClass NonprofitOrganization Organization ; - --- The class of DiseaseOrSyndromes that are not --- caused by a single type of Microorganism. -fun NonspecificDisease : Class ; -fun NonspecificDisease_Class : SubClass NonspecificDisease DiseaseOrSyndrome ; - --- The Organ of Smelling. -fun Nose : Class ; -fun Nose_Class : SubClass Nose (both AnimalAnatomicalStructure Organ) ; - - --- Either of two BodyVessels that run through the Nose --- and connect it to the Throat. -fun Nostril : Class ; -fun Nostril_Class : SubClass Nostril (both AnimalAnatomicalStructure BodyVessel) ; - - --- A FictionalText that is larger than a ShortStory --- and that is bound independently (i.e. it is a Book). -fun Novel : Class ; -fun Novel_Class : SubClass Novel (both Book FictionalText) ; - - --- A NuclearFamily is a SocialUnit composed --- of at least two and not more than three generations of familyRelations: --- parents, their children, and possibly the parents' parents (children's --- grandparents). -fun NuclearFamily : Class ; -fun NuclearFamily_Class : SubClass NuclearFamily (both FamilyGroup SocialUnit) ; - - --- An ExplosiveDevice and RadioactiveWeapon --- which achieves its effect by means of a critical mass of a radioactive substance. -fun NuclearWeapon : Class ; -fun NuclearWeapon_Class : SubClass NuclearWeapon (both ExplosiveDevice (both RadioactiveWeapon Weapon)) ; - - --- Any WoodArtifact that is made from the Wood of an --- oak tree. -fun OakWood : Class ; -fun OakWood_Class : SubClass OakWood WoodArtifact ; - --- A Device consisting of a flat, broad surface attached to a --- handle that is used as an instrument in Rowing. -fun Oar : Class ; -fun Oar_Class : SubClass Oar TransportationDevice ; - --- Any TwoDimensionalAngle that has an --- angularMeasure that is greater than 90 AngularDegrees. -fun ObliqueAngle : Class ; -fun ObliqueAngle_Class : SubClass ObliqueAngle TwoDimensionalAngle ; - --- (OccupationFn ?PROCESS) denotes the --- subclass of ?PROCESS where instances of ?PROCESS are performed as --- one's occupation, i.e. as part of a FinancialTransaction where one --- earns money for the performance of ?PROCESS. -fun OccupationFn : El IntentionalProcess -> Desc FinancialTransaction ; - - --- A Role of a Human in a OrganizationalProcess. -fun OccupationalRole : Class ; -fun OccupationalRole_Class : SubClass OccupationalRole Position ; - --- Any Position that involves skilled --- manual work. -fun OccupationalTrade : Class ; -fun OccupationalTrade_Class : SubClass OccupationalTrade (both ManualLabor SkilledOccupation) ; - - --- Offering to sell something to someone. -fun OfferingForSale : Class ; -fun OfferingForSale_Class : SubClass OfferingForSale Offering ; - --- Offering to buy something from someone. -fun OfferingToPurchase : Class ; -fun OfferingToPurchase_Class : SubClass OfferingToPurchase Offering ; - --- A building in which work activities take --- place which is not primarily designed for manufacturing or retail sales. -fun OfficeBuilding : Class ; -fun OfficeBuilding_Class : SubClass OfficeBuilding Building ; - --- A greasy, viscous Solution that cannot be mixed with Water. --- Note that this general class covers petroleum oil, vegetable oil, animal fat, etc. -fun Oil : Class ; -fun Oil_Class : SubClass Oil Solution ; - --- Any Paint which is an oil_based Solution. -fun OilPaint : Class ; -fun OilPaint_Class : SubClass OilPaint Paint ; - --- Any OilPicture which is created --- with oil_based paints. -fun OilPicture : Class ; -fun OilPicture_Class : SubClass OilPicture PaintedPicture ; - --- The first part of the ChristianBible, describing --- the history of the Hebrew people. -fun OldTestament : Class ; -fun OldTestament_Class : SubClass OldTestament Book ; - --- An Ontology is a --- ClassificationScheme that links concepts via many different --- relations. Ontologies typically are not restricted to binary --- relations and are structured by several kinds of conceptual --- hierarchies, including set_ or class_based subsumption, spatial --- containment, mereology --- (theory of parts and wholes), and logical contexts. Thus, --- an ontology typically includes multiple taxonomies. -fun Ontology : Class ; -fun Ontology_Class : SubClass Ontology ClassificationScheme ; - --- The Class of Processes where an aperture is --- created in an Object. Note that the aperture may be created intentionally, --- as when one opens a door, or unintentionally, as when the ground ruptures --- in a seismic event. -fun Opening : Class ; -fun Opening_Class : SubClass Opening Motion ; - --- The BodyMotion of relaxing the eye lids so that --- the corneas are exposed to light. -fun OpeningEyes : Class ; -fun OpeningEyes_Class : SubClass OpeningEyes (both EyeMotion Opening) ; - - --- A DramaticPlay that is set to Music. -fun Opera : Class ; -fun Opera_Class : SubClass Opera DramaticPlay ; - --- A substance harvested from the seed capsules of the --- opium poppy that contains various powerful alkaloids. -fun Opium : Class ; -fun Opium_Class : SubClass Opium (both BiologicallyActiveSubstance (both Depressant PlantSubstance)) ; - - --- A Device which enables someone to see something --- more clearly or with greater magnification. -fun OpticalDevice : Class ; -fun OpticalDevice_Class : SubClass OpticalDevice Device ; - --- A SecondaryColor that results from mixing Red --- and Yellow and resembles the color of a ripe orange fruit. -fun OrangeColor : Ind SecondaryColor ; - - --- A citrus FruitOrVegetable that has an OrangeColor --- skin and a sweet, acidic flavor. -fun OrangeFruit : Class ; -fun OrangeFruit_Class : SubClass OrangeFruit (both Food FruitOrVegetable) ; - - --- A GroupOfPeople that create InstrumentalMusic --- together. -fun Orchestra : Class ; -fun Orchestra_Class : SubClass Orchestra MusicalGroup ; - --- The Process of directing an orchestra. -fun OrchestralConducting : Class ; -fun OrchestralConducting_Class : SubClass OrchestralConducting Guiding ; - --- A Sentence that expresses an order for something or --- that something be done. -fun Order : Class ; -fun Order_Sentence : SubClassC Order Sentence (\SENTENCE -> exists Ordering (\ORDER -> result(var Ordering Process ? ORDER)(var Sentence Entity ? SENTENCE))); - - --- Any CompoundSubstance that has a Carbon --- base. -fun OrganicCompound : Class ; -fun OrganicCompound_Class : SubClass OrganicCompound CompoundSubstance ; - --- Any BiologicalProcess that results in --- the formation of an Organ. -fun Organification : Class ; -fun Organification_Class : SubClass Organification OrganOrTissueProcess ; - --- Part of an Organization that --- is responsible for managing the Organization. -fun OrganizationalBoard : Class ; -fun OrganizationalBoard_Class : SubClass OrganizationalBoard Organization ; - --- The process of two or more --- Organizations merging into a single Organization. -fun OrganizationalMerging : Class ; -fun OrganizationalMerging_Class : SubClass OrganizationalMerging OrganizationalProcess ; - --- A method for representing the sounds of a Language --- with written Characters. -fun Orthography : Class ; -fun Orthography_Class : SubClass Orthography Procedure ; - --- Any BiologicalProcess that results in the --- formation of Bones. -fun Ossification : Class ; -fun Ossification_Class : SubClass Ossification OrganOrTissueProcess ; - --- Clothing that is intended to be worn --- outdoors. -fun OutdoorClothing : Class ; -fun OutdoorClothing_Class : SubClass OutdoorClothing Clothing ; - --- Any Region which is not enclosed by a Building --- or part of a Building. -fun Outdoors : Ind Region ; - - --- The class of all Regions which are --- neither GeographicAreas nor AtmosphericRegions. -fun OuterSpaceRegion : Class ; -fun OuterSpaceRegion_Class : SubClass OuterSpaceRegion SpaceRegion ; - --- Outside is a PositionalAttribute used to --- describe the relative location of one object or region to another --- region. For example, (orientation Cuba UnitedStates Outside). -fun Outside : Ind PositionalAttribute ; - - --- A HeatingDevice with a door for inserting and removing --- Food that is to undergo Baking. -fun Oven : Class ; -fun Oven_Class : SubClass Oven (both Container HeatingDevice) ; - - --- A nocturnal bird of prey with a large head and --- forward_facing eyes. -fun Owl : Class ; -fun Owl_Class : SubClass Owl Bird ; - --- Any ChemicalProcess where Electrons --- are removed from the substance undergoing the ChemicalProcess. -fun Oxidation : Class ; -fun Oxidation_Class : SubClass Oxidation ChemicalDecomposition ; - --- A single page of Text. -fun Page : Ind UnitOfInformation ; - - --- A physical sensation of discomfort which can vary widely --- in intensity. -fun Pain : Ind EmotionalState ; - - --- Any Solution which is capable of Coloring something. -fun Paint : Class ; -fun Paint_Class : SubClass Paint Solution ; - --- Any ArtWork which is produced by Painting. -fun PaintedPicture : Class ; -fun PaintedPicture_Class : SubClass PaintedPicture ArtWork ; - --- The application of Paint to a surface. Note that --- this class covers both ArtPainting (the creation of PaintedPictures), as --- well as painting one's kitchen, for example. -fun Painting : Class ; -fun Painting_Class : SubClass Painting (both Coloring Covering) ; - - --- A large Gland that secretes Insulin and other --- substances. -fun Pancreas : Class ; -fun Pancreas_Class : SubClass Pancreas Gland ; - --- Paper is a flat sheet of fibers, usually produced by --- spreading a wet solution of wood particles on a flat surface and drying --- through heat and pressure. The fibers can also be cotton or a synthetic, --- although typically the bulk of the substance is wood fibers. This --- includes all manner of paper products that may have varying thicknesses, --- colors or texture. This is distinguished from flat wood products such as --- plywood and particle board which have a structural function in building --- construction. Sheathing materials such as the paper affixed to sheetrock --- however, is paper. -fun Paper : Class ; -fun Paper_Class : SubClass Paper Artifact ; - --- A Text which consists of one or more sentences, --- begins with an indented line, and expresses a single topic. -fun Paragraph : Class ; -fun Paragraph_Class : SubClass Paragraph Text ; - --- A publicly owned LandArea which is intended to be used --- for recreation and/or exercise. -fun Park : Class ; -fun Park_Class : SubClass Park LandArea ; - --- A LandArea which has been levelled, paved, and --- marked off for parking Automobiles. -fun ParkingLot : Class ; -fun ParkingLot_Class : SubClass ParkingLot StationaryArtifact ; - --- Any Position where the employee is not --- salaried and is paid for less than 40 hours of work per week. -fun PartTimePosition : Class ; -fun PartTimePosition_Class : SubClass PartTimePosition Position ; - --- A CommercialAgent that is owned by more --- than one person. -fun Partnership : Class ; -fun Partnership_Class : SubClass Partnership CommercialAgent ; - --- A Text which is authored by a PoliticalParty --- and which contains the core goals and principles of the PoliticalParty for a --- particular year or election cycle. -fun PartyPlatform : Class ; -fun PartyPlatform_Class : SubClass PartyPlatform FactualText ; - --- A Certificate that allows the holder to --- be at or away from a specified location, e.g. a pass for a leave of --- absence, a hall pass, a pass to enter a cleared facility, etc. -fun PassCertificate : Class ; -fun PassCertificate_Class : SubClass PassCertificate Certificate ; - --- A Vehicle that is designed to --- carry Humans. Note that Vehicles that are not designed to --- carry people may still do so. For example, a boxcar might still --- transport homeless people, but was not built to do so. -fun PassengerVehicle : Class ; - - --- The Process of converting a LegislativeBill --- into Law by a duly authorized legislative body of Government. -fun PassingABill : Class ; -fun PassingABill_Class : SubClass PassingABill (both Declaring PoliticalProcess) ; - - --- A License which identifies the holder and permits --- travel between different countries. -fun Passport : Class ; -fun Passport_Class : SubClass Passport License ; - --- The edible Seed of a pea plant. -fun Pea : Class ; -fun Pea_Class : SubClass Pea (both Food Seed) ; - - --- A military deployment which is intended --- to prevent hostilities between two other entities located in the same rough --- geographic area. -fun PeaceKeepingMission : Class ; -fun PeaceKeepingMission_Class : SubClass PeaceKeepingMission MilitaryOrganization ; - --- A FruitOrVegetable that has a thick skin and the --- shape of a tear drop. -fun PearFruit : Class ; -fun PearFruit_Class : SubClass PearFruit (both Food FruitOrVegetable) ; - - --- Removing the Skin (or part of the Skin) from --- an Organism. Note that this class covers a large range of cases, including --- peeling an orange, pelting an Animal, etc. -fun Peeling : Class ; -fun Peeling_Class : SubClass Peeling Removing ; - --- A WritingDevice that consists of an encased piece of --- graphite. -fun Pencil : Class ; -fun Pencil_Class : SubClass Pencil WritingDevice ; - --- A qualified retirement plan set up by a --- corporation, labor union, government, or other organization for its --- employees. Examples include profit_sharing plans, stock bonus and --- employee stock ownership plans, thrift plans, target benefit plans, --- money purchase plans, and defined benefit plans. -fun PensionPlan : Class ; -fun PensionPlan_Class : SubClass PensionPlan FinancialAccount ; - --- A MusicalInstrument which does not --- have strings and which is played by striking it. -fun PercussionInstrument : Class ; -fun PercussionInstrument_Class : SubClass PercussionInstrument MusicalInstrument ; - --- A Demonstrating which includes DramaticActing --- and/or Music and which is intended to entertain the audience. -fun Performance : Class ; -fun Performance_Class : SubClass Performance Demonstrating ; - --- A discrete subProcess of a Performance, --- e.g. an act of a play, a movement of a performance of a symphony, etc. -fun PerformanceAct : Class ; -fun PerformanceAct_Class : SubClass PerformanceAct Performance ; - --- A Text that describes the events --- and/or participants in a Performance. -fun PerformanceProgram : Class ; -fun PerformanceProgram_Class : SubClass PerformanceProgram FactualText ; - --- A large platform for theatrical plays, --- lectures, dances, music recitals, etc, which can be observed by an audience. -fun PerformanceStage : Class ; -fun PerformanceStage_Class : SubClass PerformanceStage StationaryArtifact ; - --- A part of the PerformanceStage that is not --- visible to members of the audience. -fun PerformanceStageWing : Class ; -fun PerformanceStageWing_Class : SubClass PerformanceStageWing StationaryArtifact ; - --- Any Publisher that publishes --- Periodicals, e.g. newspaper and magazine publishing houses. -fun PeriodicalPublisher : Class ; -fun PeriodicalPublisher_Class : SubClass PeriodicalPublisher Publisher ; - --- PetroleumProduct is a broad class that --- includes both crude oil (Petroleum) and RefinedPetroleumProducts. -fun PetroleumProduct : Class ; -fun PetroleumProduct_Class : SubClass PetroleumProduct (both MiningProduct Oil) ; - - --- The Profession of being a pharmacist, i.e. --- preparing and dispensing BiologicallyActiveSubstances. -fun Pharmacist : Class ; -fun Pharmacist_Class : SubClass Pharmacist Profession ; - --- The study of first principles, including epistemology, --- metaphysics, and ethics. -fun Philosophy : Ind FieldOfStudy ; - - --- An Icon that is the result of a process of --- Photographing. -fun Photograph : Class ; -fun Photograph_Class : SubClass Photograph Icon ; - --- Celluloid covered with an emulsion which can --- be converted into photographic negatives by a Camera. -fun PhotographicFilm : Class ; -fun PhotographicFilm_Class : SubClass PhotographicFilm Artifact ; - --- ContentDevelopment where the instrument --- is a camera and the result is a Photograph. -fun Photographing : Class ; -fun Photographing_Class : SubClass Photographing ContentDevelopment ; - --- The study of matter and energy and their relations. -fun Physics : Ind Science ; - - --- The part of Biology dealing with the functioning of --- Organisms. -fun Physiology : Ind Science ; - - --- A StringInstrument with keys that, when pressed down, --- activate hammers that, in turn, strike strings. -fun Piano : Class ; -fun Piano_Class : SubClass Piano StringInstrument ; - --- A frame which surrounds a PaintedPicture or --- Photograph and has the function of protecting and accenting the picture. -fun PictureFrame : Class ; -fun PictureFrame_Class : SubClass PictureFrame Artifact ; - --- A domesticated HoofedMammal that is raised for pork. -fun Pig : Class ; -fun Pig_Class : SubClass Pig (both HoofedMammal Livestock) ; - - --- A subclass of Bird with a stout body and short legs. -fun Pigeon : Class ; -fun Pigeon_Class : SubClass Pigeon Bird ; - --- A soft, stuffed Artifact to support the Head or --- the body as a whole while one is sleeping or relaxing. -fun Pillow : Class ; -fun Pillow_Class : SubClass Pillow Artifact ; - --- A SecondaryColor that results from mixing Red and --- White. -fun Pink : Ind SecondaryColor ; - - --- Pipeline is the class of pipelines used --- to transport various kinds of fluids. -fun Pipeline : Class ; -fun Pipeline_Class : SubClass Pipeline Transitway ; - --- A Firearm that is intended to be aimed and fired with a --- single hand. -fun Pistol : Class ; -fun Pistol_Class : SubClass Pistol Firearm ; - --- The place where the pitcher in Baseball --- stands when he is throwing balls to the batter. -fun PitchersMound : Class ; -fun PitchersMound_Class : SubClass PitchersMound GameArtifact ; - --- Throwing a Ball to the batter in a game of --- Baseball or softball. -fun Pitching : Class ; -fun Pitching_Class : SubClass Pitching (both GameShot Throwing) ; - - --- The main Gland of the endocrine system. -fun PituitaryGland : Class ; -fun PituitaryGland_Class : SubClass PituitaryGland Gland ; - --- A Building or part of a Building which is --- intended for organizational activities, e.g. retail or wholesale selling, --- manufacturing, office work, etc. -fun PlaceOfCommerce : Class ; -fun PlaceOfCommerce_Class : SubClass PlaceOfCommerce StationaryArtifact ; - --- Any place designed for ReligiousProcesses. -fun PlaceOfWorship : Class ; -fun PlaceOfWorship_Class : SubClass PlaceOfWorship Building ; - --- PlacingUnderArrest is the class of events in which a --- CognitiveAgent, typically a law enforcement professional, --- legally takes into custody a human or group of humans. -fun PlacingUnderArrest : Class ; -fun PlacingUnderArrest_Class : SubClass PlacingUnderArrest (both Capturing (both LawEnforcement (both LegalAction SocialInteraction))) ; - - --- PlantAgriculturalProduct --- is the class of AgriculturalProducts that are vegetable in nature, --- in the widest sense, e.g., fruits, grains, green vegetables, cotton, --- linen, flowers, wine grapes, hops. -fun PlantAgriculturalProduct : Class ; -fun PlantAgriculturalProduct_Class : SubClass PlantAgriculturalProduct AgriculturalProduct ; - --- The stem of a Plant or any shoot arising from --- the stem of a Plant. -fun PlantBranch : Class ; -fun PlantBranch_Class : SubClass PlantBranch (both BodyPart PlantAnatomicalStructure) ; - - --- An Organ of Plants whose main purpose is --- photosynthesis. -fun PlantLeaf : Class ; -fun PlantLeaf_Class : SubClass PlantLeaf (both Organ PlantAnatomicalStructure) ; - - --- An Organ of Plants whose main purpose is --- twofold, viz. to absorb nutrients from the ground and to anchor the Plant --- in place. -fun PlantRoot : Class ; -fun PlantRoot_Class : SubClass PlantRoot (both Organ PlantAnatomicalStructure) ; - - --- A small piece of stiff paper with markings --- which is intended to be used for playing card games. -fun PlayingCard : Class ; -fun PlayingCard_Class : SubClass PlayingCard (both ContentBearingObject GameArtifact) ; - - --- Stating in a court of law a claim about whether or --- not one is guilty of the crime of which one has been accused. -fun Pleading : Class ; -fun Pleading_Class : SubClass Pleading Stating ; - --- An Artifact which is designed to fit snugly within --- a Hole. -fun Plug : Class ; -fun Plug_Class : SubClass Plug Artifact ; - --- Any occupation that involves installing, repairing, and --- replacing pipes and pipe fixtures. -fun Plumber : Ind OccupationalTrade ; - - --- A pouch of Fabric in an instance of Clothing where --- something can be kept. -fun Pocket : Class ; -fun Pocket_Class : SubClass Pocket Fabric ; - --- A PoliceOfficer who is in charge of a precinct. -fun PoliceCaptain : Class ; -fun PoliceCaptain_Class : SubClass PoliceCaptain PoliceOfficer ; - --- The Profession of being a police --- detective, i.e. being a PoliceOfficer whose duties include the --- investigation of crimes. -fun PoliceDetective : Ind PoliceOfficer ; - - --- A building designed to house PolicePersons. -fun PoliceFacility : Class ; -fun PoliceFacility_Class : SubClass PoliceFacility Building ; - --- The Profession of being a police officer, i.e. --- working for a law enforcement agency that is part of a Government. -fun PoliceOfficer : Class ; -fun PoliceOfficer_Class : SubClass PoliceOfficer (both GovernmentOfficer Profession) ; - - --- A member of a government whose occupation --- has the primary purpose of preventing crime and arresting criminals. -fun PolicePerson : Ind OccupationalRole ; - - --- A PoliceOfficer with the rank of sergeant. -fun PoliceSergeant : Class ; -fun PoliceSergeant_Class : SubClass PoliceSergeant PoliceOfficer ; - --- A CriminalAction that is committed by or --- against Governments. -fun PoliticalCrime : Class ; -fun PoliticalCrime_Class : SubClass PoliticalCrime (both CriminalAction PoliticalProcess) ; - - --- A well known person who participates --- in a PoliticalProcess. This must either be the person's principal --- occupation, or what is intended to become his principal occupation --- (for example, after an election). -fun PoliticalFigure : Class ; -fun PoliticalFigure_Class : SubClass PoliticalFigure Celebrity ; - --- PoliticalParty is the class of --- PoliticalOrganizations that may sponsor candidates for Elections. -fun PoliticalParty : Class ; -fun PoliticalParty_Class : SubClass PoliticalParty PoliticalOrganization ; - --- The violent overthrow of one Government --- and its replacement by another. This covers grass_roots revolutions, as well --- as coups d'etat. -fun PoliticalRevolution : Class ; -fun PoliticalRevolution_Class : SubClass PoliticalRevolution (both PoliticalProcess ViolentContest) ; - - --- The field of political science. -fun PoliticalScience : Ind SocialScience ; - - --- Any Attribute of a Government --- which specifies some aspect of the political or economic system of the --- Government. -fun PoliticoEconomicAttribute : Class ; -fun PoliticoEconomicAttribute_Class : SubClass PoliticoEconomicAttribute RelationalAttribute ; - --- Investigating what people believe (and in what proportions) --- by asking a set of structured questions to a random sample of people. -fun Polling : Class ; -fun Polling_Class : SubClass Polling Investigating ; - --- A ClosedTwoDimensionalFigure that is composed --- exclusively of straight lines, i.e. OneDimensionalFigures. -fun Polygon : Class ; -fun Polygon_Class : SubClass Polygon ClosedTwoDimensionalFigure ; - --- Music which has two or more parts, i.e. Music --- which can be divided into two or more contemporaneous subProcesses which are --- also instances of Music. -fun PolyphonicMusic : Class ; -fun PolyphonicMusic_Music : SubClassC PolyphonicMusic Music (\MUSIC -> exists Music (\PART1 -> exists Music (\PART2 -> and( and (and (and ( subProcess(var Music Process ? PART1)(var Music Process ? MUSIC))( subProcess(var Music Process ? PART2)(var Music Process ? MUSIC)))( not (equal(var Music Entity ? PART1)(var Music Entity ? PART2)))) (cooccur(var Music Physical ? PART1)(var Music Physical ? MUSIC))) ( cooccur(var Music Physical ? PART2)(var Music Physical ? MUSIC))))); - - --- The Position of head of the RomanCatholicChurch. -fun Pope : Ind Position ; - - --- PopularElection is the class of --- Elections in which office_holders and issues are determined directly by --- the outcome of the votes cast by the enfranchised. For example, U.S. --- Senators and Representatives are elected by PopularElection. By --- contrast, U.S. Presidents are elected by indirect elections, in which the --- Electoral College determines the actual outcome. See electionWinner. -fun PopularElection : Class ; -fun PopularElection_Class : SubClass PopularElection GeneralElection ; - --- A StationaryArtifact which is connected to a --- Building and which provides some shelter in entering or leaving the --- Building or in sitting outside. -fun Porch : Class ; -fun Porch_Class : SubClass Porch StationaryArtifact ; - --- Meat that was originally part of a Pig. -fun Pork : Class ; -fun Pork_Class : SubClass Pork Meat ; - --- A PaintedPicture that represents someone's Face. -fun Portrait : Class ; -fun Portrait_Class : SubClass Portrait PaintedPicture ; - --- The class of TimeIntervals that begin at noon and --- end at midnight. -fun PostMeridiem : Class ; -fun PostMeridiem_Class : SubClass PostMeridiem TimeInterval ; - --- The class of Schools that offer --- an associate's degree or a bachelor's degree. -fun PostSecondarySchool : Class ; -fun PostSecondarySchool_Class : SubClass PostSecondarySchool School ; - --- A Container which has a handle and is used for --- Cooking. -fun PotOrPan : Class ; -fun PotOrPan_Class : SubClass PotOrPan Container ; - --- Any occupation that involves the creation of Pottery. -fun Potter : Ind OccupationalTrade ; - - --- Household Artifacts that are made out of baked Clay. -fun Pottery : Class ; -fun Pottery_Class : SubClass Pottery Artifact ; - -fun Poultry : Class ; -fun Poultry_Class : SubClass Poultry (both Bird Livestock) ; - --- Any instance of Transfer from one Container to --- another, where the thing transferred is a Liquid. -fun Pouring : Class ; -fun Pouring_Class : SubClass Pouring (both LiquidMotion Transfer) ; - - --- Any Solid Substance which consists of loose, --- identical, and very small particles. -fun Powder : Class ; -fun Powder_Class : SubClass Powder Substance ; - --- A source of electrical power. -fun PowerSource : Class ; - - --- A Vehicle that has a powerComponent. --- Note that PoweredVehicles include those vehicles that have a powerComponent --- where the user can and does often choose not to use it, such as a moped with pedals. -fun PoweredVehicle : Class ; -fun PoweredVehicle_Class : SubClass PoweredVehicle Vehicle ; - --- A formal or informal process of private worship which --- may or may not be carried out in a ReligiousBuilding. -fun Praying : Class ; -fun Praying_Class : SubClass Praying (both ReligiousProcess Requesting) ; - - --- The Attribute that applies to Female Animals and --- Humans that have an embryo or fetus growing inside of them as the result of --- having one of the Female's Eggs fertilized. -fun Pregnant : Ind BiologicalAttribute ; - - --- Food that is the result of Cooking. -fun PreparedFood : Class ; -fun PreparedFood_Class : SubClass PreparedFood Food ; - --- The position of being head of the --- UnitedStates. -fun PresidentOfTheUnitedStates : Ind Position ; - - --- Any Device that measures and --- represents PressureMeasure. -fun PressureMeasuringDevice : Class ; -fun PressureMeasuringDevice_Class : SubClass PressureMeasuringDevice MeasuringDevice ; - --- An installation which is owned and maintained by --- a Government for the purpose of Confining people. This class covers --- jails, federal prisons, concentration camps, gulags, etc. -fun Prison : Class ; -fun Prison_Class : SubClass Prison StationaryArtifact ; - --- The Profession of being a private detective, --- i.e. a detective who can be hired for a fee to investigate something. -fun PrivateDetective : Ind Profession ; - - --- A School which is not publicly owned. -fun PrivateSchool : Class ; -fun PrivateSchool_Class : SubClass PrivateSchool School ; - --- Any instance of Speaking before an assembled --- audience that effects an institutional change, e.g. a change in the laws of --- the government. -fun Proclaiming : Class ; -fun Proclaiming_Class : SubClass Proclaiming (both Declaring Lecture) ; - - --- Any occupation that requires at least a bachelor's --- degree. -fun Profession : Class ; -fun Profession_Class : SubClass Profession SkilledOccupation ; - --- The Profession of being a teacher at a --- PostSecondarySchool. -fun Professor : Ind Profession ; - - --- An arrangement in which an employer --- shares its profits with its employees. The compensation can be stocks, --- bonds or cash, and can be immediate or deferred until retirement. -fun ProfitSharingPlan : Class ; -fun ProfitSharingPlan_Class : SubClass ProfitSharingPlan PensionPlan ; - --- A missile, bullet, etc. that is fired from --- a Weapon. -fun Projectile : Class ; -fun Projectile_Class : SubClass Projectile Weapon ; - --- A Weapon that shoots a Projectile. -fun ProjectileLauncher : Class ; -fun ProjectileLauncher_Class : SubClass ProjectileLauncher Weapon ; - --- The outer casing of a Projectile. -fun ProjectileShell : Class ; -fun ProjectileShell_Class : SubClass ProjectileShell Container ; - --- A CommunicationDevice upon which images --- are projected so that they can be viewed. -fun ProjectionScreen : Class ; -fun ProjectionScreen_Class : SubClass ProjectionScreen CommunicationDevice ; - --- A CommercialAgent that is owned by a --- single person. -fun Proprietorship : Class ; -fun Proprietorship_Class : SubClass Proprietorship CommercialAgent ; - --- Unicellular Organisms that are capable of movement --- and that are found in almost every part of the world. This class includes --- amoebas, sporozoans, and paramecia. -fun Protozoa : Class ; -fun Protozoa_Class : SubClass Protozoa Microorganism ; - --- The field of psychology. -fun Psychology : Ind SocialScience ; - - --- Any PsychologicalDysfunction which is the --- result of an organic impairment of the NervousSystem. -fun Psychosis : Class ; -fun Psychosis_Class : SubClass Psychosis PsychologicalDysfunction ; - --- The DevelopmentalAttribute of having functional sex --- glands which are not fully mature. -fun Puberty : Ind DevelopmentalAttribute ; - - --- An Attorney who defends criminal cases for a --- GovernmentOrganization. -fun PublicDefender : Class ; -fun PublicDefender_Class : SubClass PublicDefender (both Attorney GovernmentOfficer) ; - - --- A Library which is financed by taxes and which --- is open to everyone. -fun PublicLibrary : Class ; -fun PublicLibrary_Class : SubClass PublicLibrary (both GovernmentOrganization Library) ; - - --- A Park that is publicly owned, i.e. owned --- by a Government. -fun PublicPark : Class ; -fun PublicPark_Class : SubClass PublicPark Park ; - --- An Attorney who prosecutes criminal cases for --- a GovernmentOrganization. -fun PublicProsecutor : Class ; -fun PublicProsecutor_Class : SubClass PublicProsecutor (both Attorney GovernmentOfficer) ; - - --- A School which is financed primarily by taxes. -fun PublicSchool : Class ; -fun PublicSchool_Class : SubClass PublicSchool (both GovernmentOrganization School) ; - - --- Any business whose services include the --- Publication of Texts. -fun Publisher : Class ; -fun Publisher_Class : SubClass Publisher CommercialAgent ; - --- Any instance of LandTransportation, where a --- TransportationDevice is dragged by something else, whether the something --- else is an Animal or a self_powered TransportationDevice. -fun Pulling : Class ; -fun Pulling_Class : SubClass Pulling LandTransportation ; - --- An Artery that carries Blood from --- the Heart to a Lung. -fun PulmonaryArtery : Class ; -fun PulmonaryArtery_Class : SubClass PulmonaryArtery Artery ; - --- A Vein that carries Blood from the --- Lungs to the Heart. -fun PulmonaryVein : Class ; -fun PulmonaryVein_Class : SubClass PulmonaryVein Vein ; - --- A Device that moves Fluids by means of pressure or suction. -fun Pump : Class ; -fun Pump_Class : SubClass Pump TransportationDevice ; - --- Any instance of Impelling where the instrument --- is a Fist of the agent. -fun Punching : Class ; -fun Punching_Class : SubClass Punching Impelling ; - --- A RegulatoryProcess where the agent does --- something to the destination that the agent knows is undesirable --- for the destination. -fun Punishing : Class ; -fun Punishing_Class : SubClass Punishing RegulatoryProcess ; - --- A SecondaryColor that results from mixing Red and --- Blue. -fun Purple : Ind SecondaryColor ; - - --- Any four_sided Polygon. -fun Quadrilateral : Class ; -fun Quadrilateral_Class : SubClass Quadrilateral Polygon ; - --- A Female Insect which is the sole member of --- her colony with the capability to reproduce. -fun QueenInsect : Class ; -fun QueenInsect_Class : SubClass QueenInsect Insect ; - --- An interrogative Sentence, a Sentence that --- poses a question. -fun Question : Class ; -fun Question_Sentence : SubClassC Question Sentence (\SENTENCE -> exists Questioning (\QUESTION -> result(var Questioning Process ? QUESTION)(var Sentence Entity ? SENTENCE))); - - --- A burrowing Rodent with a short tail and long ears. -fun Rabbit : Class ; -fun Rabbit_Class : SubClass Rabbit Rodent ; - --- A sport which involves a contest of speed between the --- participants. Note that this covers a variety of things, including auto --- racing, running competitions, etc. -fun Racing : Class ; -fun Racing_Class : SubClass Racing Sport ; - --- An ElectricDevice that emits and receives microwave --- radiation for the purpose of locating and tracking distant objects. -fun Radar : Class ; -fun Radar_Class : SubClass Radar ElectricDevice ; - -fun RadiatingInfrared_Radiating : SubClass RadiatingInfrared Radiating ; - --- All sound waves that have frequencies --- above those that normal Human ears can detect. -fun RadiatingSoundUltrasonic : Class ; -fun RadiatingSoundUltrasonic_Class : SubClass RadiatingSoundUltrasonic RadiatingSound ; - --- Any case of RadiatingElectromagnetic where the --- wavelengths are shorter than those of visible light and longer than those --- of X_Rays. -fun RadiatingUltraviolet : Class ; -fun RadiatingUltraviolet_Class : SubClass RadiatingUltraviolet RadiatingElectromagnetic ; - --- Any instance of RadiatingLight that can --- be detected by normal human visual perception. -fun RadiatingVisibleLight : Class ; -fun RadiatingVisibleLight_RadiatingLight : SubClassC RadiatingVisibleLight RadiatingLight (\R -> exists Human (\H -> exists Seeing (\S -> and ( agent(var Seeing Process ? S)(var Human Agent ? H))( patient(var Seeing Process ? S)(var RadiatingLight Entity ? R))))); - - --- Any instance of Broadcasting which is --- intended to be received by a RadioReceiver. -fun RadioBroadcasting : Class ; -fun RadioBroadcasting_Class : SubClass RadioBroadcasting Broadcasting ; - --- Any instance of RadiatingElectromagnetic --- where the waves have a wavelength between 5 milimeters and 30,000 meters. -fun RadioEmission : Class ; -fun RadioEmission_Class : SubClass RadioEmission RadiatingElectromagnetic ; - --- A RadioReceiver is a Device for receiving --- radio broadcast signals from a RadioStation. -fun RadioReceiver : Class ; -fun RadioReceiver_Class : SubClass RadioReceiver ReceiverDevice ; - --- A WeaponOfMassDestruction which --- achieves its effect through radioactivity, either by an explosion resulting --- from nuclear fission or by a conventional explosive device that scatters --- radioactive debris. -fun RadioactiveWeapon : Class ; -fun RadioactiveWeapon_Class : SubClass RadioactiveWeapon WeaponOfMassDestruction ; - --- Weapons which are designed to spread --- radioactive particles over a large area by means of a conventional --- explosive device rather than a nuclear reaction. These weapons are often --- referred to as 'dirty bombs'. -fun RadiologicalWeapon : Class ; -fun RadiologicalWeapon_Class : SubClass RadiologicalWeapon RadioactiveWeapon ; - --- A PlantRoot that is often used in salads. -fun Radish : Class ; -fun Radish_Class : SubClass Radish (both Food PlantRoot) ; - - --- (RadiusFn ?CIRCLE) denotes the length of the radius --- of the Circle ?CIRCLE. -fun RadiusFn : El Circle -> Ind LengthMeasure ; - - --- RailTransportationSystem --- is the subclass of TransitSystems whose routes are Railways. -fun RailTransportationSystem : Class ; -fun RailTransportationSystem_Class : SubClass RailTransportationSystem TransitSystem ; - --- A Vehicle designed to move on Railways. -fun RailVehicle : Class ; -fun RailVehicle_Class : SubClass RailVehicle LandVehicle ; - --- Any TransportationCompany whose services --- include Transportation by Train. -fun RailroadCompany : Class ; -fun RailroadCompany_Class : SubClass RailroadCompany TransportationCompany ; - --- Ramp is the class of SelfConnectedObjects that are --- inclined planes used for moving objects from one level to another, --- especially used for wheeled vehicles and people who cannot climb stairs. -fun Ramp : Class ; -fun Ramp_Class : SubClass Ramp SelfConnectedObject ; - --- Any instance of Mating where one participant does not --- consent. This is limited to acts between Humans. -fun Raping : Class ; -fun Raping_Class : SubClass Raping (both CriminalAction Mating) ; - - --- A Rodent that has a hairless tail like a Mouse --- but that is larger than a Mouse. -fun Rat : Class ; -fun Rat_Class : SubClass Rat Rodent ; - --- A subclass of Snake which derives its name --- from the fact that it can manipulate its tail in such a way as to produce --- a sound like that of a rattle. -fun Rattlesnake : Class ; -fun Rattlesnake_Class : SubClass Rattlesnake Snake ; - --- Food that is not the result of Cooking. -fun RawFood : Class ; -fun RawFood_Class : SubClass RawFood Food ; - --- Any VehicleWindow which is located at the back --- of an Automobile. -fun RearWindow : Class ; -fun RearWindow_Class : SubClass RearWindow VehicleWindow ; - --- An ElectricDevice that is capable of --- receiving and decoding RadioEmissions, e.g. Radios and Televisions. -fun ReceiverDevice : Class ; -fun ReceiverDevice_Class : SubClass ReceiverDevice (both CommunicationDevice ElectricDevice) ; - - --- Any instance of Speaking where what is --- uttered is contained within a Text. -fun Reciting : Class ; -fun Reciting_Class : SubClass Reciting Speaking ; - --- Any Process where the experiencer recovers --- from a DiseaseOrSyndrome. -fun RecoveringFromIllness : Class ; -fun RecoveringFromIllness_Class : SubClass RecoveringFromIllness OrganismProcess ; - --- A Device whose purpose is RecreationOrExercise. -fun RecreationOrExerciseDevice : Class ; -fun RecreationOrExerciseDevice_Class : SubClass RecreationOrExerciseDevice Device ; - --- Any Quadrilateral whose angles are all --- RightAngles. -fun Rectangle : Class ; -fun Rectangle_Class : SubClass Rectangle Quadrilateral ; - --- BloodCells that contain hemoglobin, lack a --- CellNucleus, and carry Oxygen to the tissues of the body. -fun RedBloodCell : Class ; -fun RedBloodCell_Class : SubClass RedBloodCell BloodCell ; - --- Any Soldier that served on the British side during --- the American revolutionary war. RedcoatSoldier Any Soldier that served on the --- British side during the American revolutionary war. -fun RedcoatSoldier : Class ; -fun RedcoatSoldier_Class : SubClass RedcoatSoldier Soldier ; - --- A Book which is not intended to be read --- from cover to cover, but which is meant to be consulted to answer specific --- factual questions, e.g. about the meaning of a word, the location of a --- country, etc. -fun ReferenceBook : Class ; -fun ReferenceBook_Class : SubClass ReferenceBook (both Book FactualText) ; - - --- A Text which is not intended to be read --- from beginning to end, but which is meant to be consulted to answer specific --- factual questions, e.g. about the meaning of a word, the location of a --- country, etc. -fun ReferenceText : Class ; -fun ReferenceText_Class : SubClass ReferenceText FactualText ; - --- A Substance that is the result --- of the Distilling of Petroleum. -fun RefinedPetroleumProduct : Class ; -fun RefinedPetroleumProduct_Class : SubClass RefinedPetroleumProduct PetroleumProduct ; - --- Any instance of Radiating where the radiated --- waves rebound from a surface, e.g. an echo of sound or a reflection of --- light. -fun Reflecting : Class ; -fun Reflecting_Class : SubClass Reflecting Radiating ; - --- Those instances of RadiatingLight where the --- instrument is not a light source, but is simply a surface which bends light --- waves that come in contact with it. -fun ReflectingLight : Class ; -fun ReflectingLight_Class : SubClass ReflectingLight (both RadiatingLight Reflecting) ; - - --- Any Muscle reaction which is a response --- to a specific stimulus and which does not reach the level of consciousness. -fun ReflexiveProcess : Class ; -fun ReflexiveProcess_Class : SubClass ReflexiveProcess AutonomicProcess ; - --- The intersection of Containers and ElectricDevices --- in which the temperature is reduced from that of the outside air by a Cooling --- process. -fun Refrigerator : Class ; -fun Refrigerator_Class : SubClass Refrigerator (both Container (both CoolingDevice ElectricDevice)) ; - - --- Submitting official paperwork in a government --- agency, e.g. filing for divorce, making a legal claim against someone. -fun Registering : Class ; -fun Registering_Class : SubClass Registering (both PoliticalProcess Stating) ; - - --- ExpressingDisapproval about a state of affairs --- that has already occurred. -fun Regretting : Class ; -fun Regretting_Class : SubClass Regretting ExpressingDisapproval ; - --- Any TherapeuticProcess that removes Pain from --- the patient of the process. -fun RelievingPain : Class ; -fun RelievingPain_Class : SubClass RelievingPain TherapeuticProcess ; - --- A Building which is intended to be --- used for religious worship. This class covers churches, temples, --- religious shrines, etc. -fun ReligiousBuilding : Class ; -fun ReligiousBuilding_Class : SubClass ReligiousBuilding Building ; - --- A well_known leader of a religious group. -fun ReligiousFigure : Class ; -fun ReligiousFigure_Class : SubClass ReligiousFigure Celebrity ; - --- Any Position within a ReligousOrganization. -fun ReligiousPosition : Class ; -fun ReligiousPosition_Class : SubClass ReligiousPosition Position ; - --- A formal process of public worship which is --- typically carried out in a church, temple or other sanctified building and --- which typically accords with a prescribed set of rules. -fun ReligiousService : Class ; -fun ReligiousService_Class : SubClass ReligiousService (both Demonstrating ReligiousProcess) ; - - --- Any Requesting that is intended to cause a --- Remembering of something. -fun Reminding : Class ; -fun Reminding_Class : SubClass Reminding Requesting ; - --- Removing Clothing from a Human or --- Animal in such a way that the Human or Animal no longer wears the --- Clothing. -fun RemovingClothing : Class ; -fun RemovingClothing_Class : SubClass RemovingClothing Uncovering ; - --- Giving money to the owner of an Object in --- exchange for the right to use the Object for a fixed time period. -fun Renting : Class ; -fun Renting_Class : SubClass Renting (both Borrowing FinancialTransaction) ; - - --- A relatively brief FactualText, often it --- describes the findings of a study or experiment, or a series of --- observations. -fun Report : Class ; -fun Report_Class : SubClass Report (both Article FactualText) ; - - --- One of the two major political parties in --- the UnitedStates. The RepublicanParty represents traditional, --- conservative values. -fun RepublicanParty : Ind PoliticalParty ; - - --- A Sentence that expresses a request for something or --- that something be done. -fun Request : Class ; -fun Request_Sentence : SubClassC Request Sentence (\SENTENCE -> exists Requesting (\REQUEST -> result (var Requesting Process ? REQUEST)(var Sentence Entity ? SENTENCE))); - - --- The Profession of being a scientific --- researcher. -fun Researcher : Class ; -fun Researcher_Class : SubClass Researcher Profession ; - --- (ResidentFn ?AREA) denotes the --- GroupOfPeople who have their home in ?AREA. -fun ResidentFn : El GeopoliticalArea -> Ind GroupOfPeople ; - - --- Voluntarily ending one's employment. -fun Resigning : Class ; -fun Resigning_Class : SubClass Resigning TerminatingEmployment ; - --- Any instance of Deciding which is conducted at a --- FormalMeeting and where the agent is an Organization. -fun Resolution : Class ; -fun Resolution_Class : SubClass Resolution Deciding ; - --- Any CommercialAgent whose services include selling --- Food to customers which is intended to be eaten on the premises. -fun Restaurant : Class ; -fun Restaurant_Class : SubClass Restaurant CommercialAgent ; - --- A Building where people pay to be served food --- and eat. Some restaurants may also offer entertainment. -fun RestaurantBuilding : Class ; -fun RestaurantBuilding_Class : SubClass RestaurantBuilding Building ; - --- A Store where individuals who are not --- representing an Organization purchase items. This distinguishes --- retail stores from wholesale establishments, where the purchasers --- are businesses or their representatives, as well as mail order or --- office buildings where transactions are facillitated but the consumer --- does not take possession of the item on the premises. More succinctly, --- the complement of WholesaleStore, i.e. --- MercantileOrganizations that sell their goods to the general public. -fun RetailStore : Class ; -fun RetailStore_Class : SubClass RetailStore MercantileOrganization ; - --- A membrane that covers the Eye and converts --- the image formed by the lens of the Eye into neurochemical impulses --- which can be processed by the Brain. -fun Retina : Class ; -fun Retina_Class : SubClass Retina (both AnimalAnatomicalStructure Organ) ; - - --- Voluntary unemployment toward the end of one's life. -fun Retired : Ind SocialRole ; - - --- Voluntarily leaving employment at the end of one's --- career in order to take time off in the later years of one's life. -fun Retiring : Class ; -fun Retiring_Class : SubClass Retiring Resigning ; - --- Any instance of Translocation where the agent --- goes to a location where he/she had been before the Translocation took place. -fun Returning : Class ; -fun Returning_Class : SubClass Returning Translocation ; - --- Moving something in such a way that its top --- becomes its bottom and vice versa. -fun Reversing : Class ; -fun Reversing_Class : SubClass Reversing Motion ; - --- A Pistol whose magazine is a revolving cylinder with --- six chambers for Bullets. -fun RevolverGun : Class ; -fun RevolverGun_Class : SubClass RevolverGun Pistol ; - --- A CerealGrain which has short and long grain varieties --- and which is usually prepared for eating by steaming. -fun RiceGrain : Class ; -fun RiceGrain_Class : SubClass RiceGrain CerealGrain ; - --- A Firearm with a long barrel that is intended to be fired --- from the shoulder. -fun Rifle : Class ; -fun Rifle_Class : SubClass Rifle Firearm ; - --- Any TwoDimensionalAngle that has the --- angularMeasure of 90 AngularDegrees. -fun RightAngle : Class ; -fun RightAngle_Class : SubClass RightAngle TwoDimensionalAngle ; - --- Any Triangle that contains a RightAngle. -fun RightTriangle : Class ; -fun RightTriangle_Class : SubClass RightTriangle Triangle ; - --- Any instance of RadiatingSound which is produced by --- a Bell. -fun Ringing : Class ; -fun Ringing_Class : SubClass Ringing RadiatingSound ; - --- A path along which vehicles travel. It is typically, --- although not necessarily, paved and intended for cars. -fun Road : Class ; -fun Road_Class : SubClass Road Region ; - --- RoadTransportationSystem --- is the subclass of TransportationSystems whose routes are Roadways. -fun RoadTransportationSystem : Class ; -fun RoadTransportationSystem_Class : SubClass RoadTransportationSystem TransitSystem ; - --- The class of LandVehicles that are not --- RollingStock. -fun RoadVehicle : Class ; -fun RoadVehicle_Class : SubClass RoadVehicle LandVehicle ; - --- Any instance of Stealing which involves the threat --- of the use of force. -fun Robbing : Class ; -fun Robbing_Class : SubClass Robbing Stealing ; - --- Rock is any naturally formed aggregate of one or more --- minerals, consolidated or not, with some degree of mineralogic and chemical --- constancy, in popular use the term is usually restricted to those aggregates --- that are hard, compact, and coherent. -fun Rock : Class ; -fun Rock_Class : SubClass Rock Substance ; - --- A Spacecraft which has the shape of a cylinder --- with a cone on top and which is powered by a jet engine. -fun Rocket : Class ; -fun Rocket_Class : SubClass Rocket (both Projectile Spacecraft) ; - - --- An attack in which a rocket or --- missile is used. -fun RocketMissileAttack : Class ; -fun RocketMissileAttack_Class : SubClass RocketMissileAttack Bombing ; - --- A single rail car. Any RailVehicle that is --- not composed of other RailVehicles. -fun RollingStock : Class ; -fun RollingStock_Class : SubClass RollingStock RailVehicle ; - --- The top of a Building. -fun Roof : Class ; -fun Roof_Class : SubClass Roof StationaryArtifact ; - --- A Male Chicken. -fun Rooster : Class ; -fun Rooster_Chicken : SubClassC Rooster Chicken (\R -> attribute(var Chicken Object ? R)(el SexAttribute Attribute ? Male)); - - --- Motion that begins and ends at the same point, --- because the trajectory of the Motion is circular. -fun Rotating : Class ; -fun Rotating_Class : SubClass Rotating Motion ; - --- The Rotating component of a motor, generator or similar --- Device. Rotor The rotating armature of a motor or generator. -fun Rotor : Class ; -fun Rotor_Class : SubClass Rotor EngineeringComponent ; - --- Any ThreeDimensionalFigure that has a single --- tangent at every point on its surface. -fun RoundShape : Ind ThreeDimensionalFigure ; - - --- Any instance of WaterTransportation where the --- instrument is an Oar that is manually powered. -fun Rowing : Class ; -fun Rowing_Class : SubClass Rowing WaterTransportation ; - --- A latex that is produced by certain species of --- BotanticalTrees. -fun Rubber : Class ; -fun Rubber_Class : SubClass Rubber PlantSubstance ; - --- A piece of Fabric whose purpose is to cover a Floor. -fun Rug : Class ; -fun Rug_Class : SubClass Rug Fabric ; - --- A Slavic language that is spoken in Russia. -fun RussianLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; - - --- A Device which allows a Human to ride on a --- Horse. -fun Saddle : Class ; -fun Saddle_Class : SubClass Saddle Holder ; - --- A Container with a Lock which is intended --- to secure items from theft. Note that this covers safes, lockers, and locked --- storage compartments. -fun SafeContainer : Class ; -fun SafeContainer_Class : SubClass SafeContainer (both Container SecurityDevice) ; - - --- The class of Positions which involve working on a --- ship, whether a merchant ship or a navy ship. -fun Sailor : Class ; -fun Sailor_Class : SubClass Sailor SkilledOccupation ; - --- Any instance of Working that involves Selling or --- trying to sell items. -fun Sales : Class ; -fun Sales_Class : SubClass Sales Working ; - --- Any Position which involves Selling --- or trying to sell items. -fun SalesPosition : Class ; -fun SalesPosition_Class : SubClass SalesPosition SkilledOccupation ; - --- A Solution consisting of SodiumChloride and --- Water. -fun SalineSolution : Class ; -fun SalineSolution_Class : SubClass SalineSolution Solution ; - --- Any kind of open shoe lacking a markedly --- thicker heel. The toe may be enclosed, but there must be some opening in the upper --- other than the Hole through which the foot is inserted. -fun Sandal : Class ; -fun Sandal_Class : SubClass Sandal Shoe ; - --- Any Food which consists of two or more pieces --- of bread and some sort of filling between the two pieces of bread. -fun Sandwich : Class ; -fun Sandwich_Class : SubClass Sandwich PreparedFood ; - --- The state of being happy about a state of --- affairs that occurred in the past. In cases where that state of affairs --- is the product of one's own doing, this is known as pride. -fun Satisfaction : Ind EmotionalState ; - - --- Any instance of Increasing where the PhysicalQuantity --- involved is a CurrencyMeasure. This includes saving in a financial account --- as well as stuffing gold bars under the matress, or a squirrel saving nuts --- for winter. -fun Saving : Class ; -fun Saving_Class : SubClass Saving Increasing ; - --- A federally or state chartered --- FinancialCompany that takes Deposits from individuals, funds --- Mortgages, and pays Dividends. -fun SavingsAndLoan : Class ; -fun SavingsAndLoan_Class : SubClass SavingsAndLoan FinancialCompany ; - --- Any AbnormalAnatomicalStructure which results from the --- healing of a Lesion. -fun Scar : Class ; -fun Scar_Class : SubClass Scar AbnormalAnatomicalStructure ; - --- Any Funding which is made on the basis of merit --- and whose purpose is to allow the destination to realize an --- EducationalProgram. -fun Scholarship : Class ; -fun Scholarship_Class : SubClass Scholarship Funding ; - --- An EducationalOrganization with a curriculum, --- teachers, and students. Most Schools are housed in a Building --- dedicated to the EducationalOrganization. -fun School : Class ; -fun School_Class : SubClass School EducationalOrganization ; - --- Any FieldOfStudy which tests theories on the basis of --- careful observations and/or experiments and which has a cumulative body of results. -fun Science : Class ; -fun Science_Class : SubClass Science FieldOfStudy ; - --- A successful attempt to score a point in a Game. -fun Score : Class ; -fun Score_Class : SubClass Score GameShot ; - --- An AttachingDevice which contains a spiral of grooves to --- hold it in place and which is fastened with a Screwdriver. -fun Screw : Class ; -fun Screw_Class : SubClass Screw AttachingDevice ; - --- A Device that is used to rotate --- a Screw, which by the action of its helical threads is driven into a --- medium that is softer than the material of the screw itself. -fun Screwdriver : Class ; -fun Screwdriver_Class : SubClass Screwdriver Device ; - --- The collection of Characters in a particular --- written language. Every WrittenCommunication consists of Characters --- written in a particular script. Scripts include different typefaces, as --- well as entirely different characters. 'Times Roman' is a very specific --- script. While the 'latin' character set is a general one, that has --- specific subclasses like Times Roman. Other scripts include Devanagri --- (which may be expressed in many different more specific typefaces), or --- Simplified Chinese. -fun Script : Class ; -fun Script_Class : SubClass Script Collection ; - --- Any ArtWork which is not constructed on the --- two_dimensional surface of a canvas, piece of paper, etc. -fun Sculpture : Class ; -fun Sculpture_Class : SubClass Sculpture ArtWork ; - --- SeasonOfYear is the class of four --- seasons correlated with the calendar Year and associated with --- changes in the length of daylight and with overall temperature --- changes. Depending upon the GeographicArea, a SeasonOfYear --- may also be associated with weather patterns (e.g., rainy, dry, --- windy). The characteristics of seasons (cold vs. hot temperatures, --- long vs. short days) are reversed from the NorthernHemisphere --- to the SouthernHemisphere. -fun SeasonOfYear : Class ; -fun SeasonOfYear_Class : SubClass SeasonOfYear TimeInterval ; - --- Any instance of Furniture which is designed to --- accommodate Humans who are Sitting. -fun Seat : Class ; -fun Seat_Class : SubClass Seat Furniture ; - --- Guiding someone to a Seat, e.g. as when an usher --- shows someone to a Seat in an Auditorium. -fun Seating : Class ; -fun Seating_Class : SubClass Seating Guiding ; - --- A color that is the product of mixing together --- two or more PrimaryColors. -fun SecondaryColor : Class ; -fun SecondaryColor_Class : SubClass SecondaryColor ColorAttribute ; - --- A School which admits students who have --- graduated from a middle school and which normally covers the ninth through --- twelfth grades. A SecondarySchool confers a high school diploma. -fun SecondarySchool : Class ; -fun SecondarySchool_Class : SubClass SecondarySchool School ; - --- The head of the UnitedStatesDepartmentOfInterior. -fun SecretaryOfTheInterior : Ind GovernmentSecretary ; - - --- The head of the United States Treasury Department. -fun SecretaryOfTheTreasury : Ind GovernmentSecretary ; - - --- A SecurityDevice that detects intrusions to --- a StationaryArtifact and issues a warning of some sort. -fun SecurityAlarm : Class ; -fun SecurityAlarm_Class : SubClass SecurityAlarm (both ElectricDevice SecurityDevice) ; - - --- A Device whose purpose is to protect people or --- property from kidnappers and/or thieves. -fun SecurityDevice : Class ; -fun SecurityDevice_Class : SubClass SecurityDevice Device ; - --- The Organization that is charged with --- ensuring the security of members of the overall Organization and the --- property of the Organization. -fun SecurityUnit : Class ; -fun SecurityUnit_Class : SubClass SecurityUnit Organization ; - --- Any instance of UnilateralGetting which is done by --- a Government and which is not permitted by the origin of the UnilateralGetting. -fun SeizingProperty : Class ; -fun SeizingProperty_Class : SubClass SeizingProperty UnilateralGetting ; - --- SelfPoweredDevice is --- the subclass of Devices whose action is powered by some kind of on_board --- component or power source (not the user, which would be a --- UserPoweredVehicle). -fun SelfPoweredDevice : Class ; -fun SelfPoweredDevice_Device : SubClassC SelfPoweredDevice Device (\O -> exists Artifact (\G -> powerPlant(var Device Device ? O) (var Artifact Artifact ? G))); - - --- SelfPoweredRoadVehicle is the --- class of RoadVehicles that are also PoweredVehicles. --- SelfPoweredRoadVehicle covers motorcycles, semi_trailers, RVs, etc., --- as well as Automobiles. This class includes vehicles powered by --- electricity, gasoline, diesel, and other fuels. -fun SelfPoweredRoadVehicle : Class ; -fun SelfPoweredRoadVehicle_Class : SubClass SelfPoweredRoadVehicle (both PoweredVehicle RoadVehicle) ; - - --- Any LegalDecision where the defendant is assigned --- a punishment for a CriminalAction which was the subject of an earlier --- LegalConviction. -fun Sentencing : Class ; -fun Sentencing_Class : SubClass Sentencing LegalDecision ; - --- A noncomissioned MilitaryOfficer. -fun Sergeant : Class ; -fun Sergeant_Class : SubClass Sergeant MilitaryOfficer ; - --- A Lecture that is part of a ReligiousService. -fun Sermon : Class ; -fun Sermon_Class : SubClass Sermon Lecture ; - --- Any LiquidBodySubstance other than Blood. -fun Serum : Class ; -fun Serum_Class : SubClass Serum LiquidBodySubstance ; - --- An Organization that performs --- a public service and is regulated by the Government. -fun ServiceOrganization : Class ; -fun ServiceOrganization_Class : SubClass ServiceOrganization Organization ; - --- Any Position which involves working --- as a waiter or servant, either for an Organization (e.g. a restaurant) --- or for a person or family. -fun ServicePosition : Class ; -fun ServicePosition_Class : SubClass ServicePosition SkilledOccupation ; - --- Working as a waiter or servant, either for an --- Organization (e.g. a Restaurant) or for a person or family. -fun Serving : Class ; -fun Serving_Class : SubClass Serving Working ; - --- A Pipline which is used to transport human --- waste to an area where it can be treated and/or disposed of. -fun SewageSystem : Class ; -fun SewageSystem_Class : SubClass SewageSystem Pipeline ; - --- Attaching two pieces of Fabric or one part of a --- piece of Fabric to another part by means of needle and thread. -fun Sewing : Class ; -fun Sewing_Class : SubClass Sewing Attaching ; - --- The subclass of ChangeOfPossession where a --- properPart of the patient is given by the agent or the destination. -fun Sharing : Class ; -fun Sharing_Class : SubClass Sharing ChangeOfPossession ; - --- A domesticated HoofedMammal that is bred for its --- wool and for its meat (known as mutton). -fun Sheep : Class ; -fun Sheep_Class : SubClass Sheep (both DomesticAnimal HoofedMammal) ; - - --- An piece of Furniture or part of a piece of Furniture --- that is used for keeping or displaying things. -fun Shelf : Class ; -fun Shelf_Class : SubClass Shelf Artifact ; - --- A PoliceOfficer whose jurisdiction is a County. -fun Sheriff : Class ; -fun Sheriff_Class : SubClass Sheriff PoliceOfficer ; - --- An Artifact that is held by the hand or whole arm and --- is used to prevent injuries from Weapons. -fun Shield : Class ; -fun Shield_Class : SubClass Shield Artifact ; - --- Ship is the class of large WaterVehicle used --- for travel on oceans, seas, or large lakes. -fun Ship : Class ; -fun Ship_Class : SubClass Ship DisplacementHullWaterVehicle ; - --- The class of Positions which involve the command --- of a ship. -fun ShipCaptain : Class ; -fun ShipCaptain_Class : SubClass ShipCaptain Sailor ; - --- The class of Positions that involve some responsibility --- on a ship and are lower in rank than ShipCaptain. -fun ShipMate : Class ; -fun ShipMate_Class : SubClass ShipMate Sailor ; - --- The class of Sailors which have a position of --- responsibility on a Ship. -fun ShipOfficer : Class ; -fun ShipOfficer_Class : SubClass ShipOfficer Sailor ; - --- Shipping is the subclass of Transportation --- events in which goods are transported from one place to another by an --- agent who is entrusted with the goods temporarily just in order to move --- them. Shipping may be done within an organization or it may be done --- by an outside commercial agent. See CommercialShipping. -fun Shipping : Class ; -fun Shipping_Class : SubClass Shipping Transportation ; - --- An item of Clothing which covers the upper body of a --- Human. -fun Shirt : Class ; -fun Shirt_Class : SubClass Shirt Clothing ; - --- Clothing that is intended to be worn on the Foot. --- It consists of an upper, a sole, and a heel. -fun Shoe : Class ; -fun Shoe_Class : SubClass Shoe Clothing ; - --- The bottom part of a Shoe that is --- intended to be the point of contact with the ground while the --- shoe is being worn. -fun ShoeSole : Class ; -fun ShoeSole_Class : SubClass ShoeSole Artifact ; - --- A MercantileOrganization which is a collection --- of various shops gathered together in a single, modern development. -fun ShoppingMall : Class ; -fun ShoppingMall_Class : SubClass ShoppingMall MercantileOrganization ; - --- A brief work of fiction, often bound with other --- short stories in a Book or Periodical. -fun ShortStory : Class ; -fun ShortStory_Class : SubClass ShortStory (both Article FictionalText) ; - - --- Decreasing the length of something. -fun Shortening : Class ; -fun Shortening_Class : SubClass Shortening Decreasing ; - --- A solid metal Ball that is used in the sport of --- shotput. -fun ShotBall : Class ; -fun ShotBall_Class : SubClass ShotBall Ball ; - --- The part of a Primate between the Arm and --- the neck. -fun Shoulder : Class ; -fun Shoulder_Class : SubClass Shoulder (both AnimalAnatomicalStructure BodyPart) ; - - --- Moving the Shoulders in such a way that the motion --- is intended to express something to someone else. -fun Shrugging : Class ; -fun Shrugging_Class : SubClass Shrugging (both BodyMotion Gesture) ; - - --- A prepared path for pedestrians alongside a Roadway. -fun Sidewalk : Class ; -fun Sidewalk_Class : SubClass Sidewalk StationaryArtifact ; - --- Signalling is the subclass of Guiding --- processes in which an agent, animate or inanimate, sends a signal to --- another Object. In many cases, this signal will be an electrical or --- electronic one. Some signals may directly control the behavior of --- the object signalled, while others may merely cause information to be --- presented. Instances of electrical Signalling are typically more --- complex than simply than operation of a DeviceSwitch, though in some --- cases, Signalling involves remote activation of such a switch by another --- device. -fun Signalling : Class ; -fun Signalling_Class : SubClass Signalling Guiding ; - --- Fabric that is woven from the strands produced by --- certain Larval Insects. -fun Silk : Class ; -fun Silk_Class : SubClass Silk Fabric ; - --- The class of Falling processes that occur --- in a BodyOfWater. -fun Sinking : Class ; -fun Sinking_Class : SubClass Sinking Falling ; - --- The BodyMotion of moving from a Standing --- to a Sitting position. -fun SittingDown : Class ; -fun SittingDown_Class : SubClass SittingDown (both BodyMotion MotionDownward) ; - - --- Any ArtWork which is produced by a pencil or --- piece of charcoal. -fun Sketch : Class ; -fun Sketch_Class : SubClass Sketch ArtWork ; - --- Any Position which requires --- learning a set of skills. -fun SkilledOccupation : Class ; -fun SkilledOccupation_Class : SubClass SkilledOccupation Position ; - --- A BodyCovering that comprises part of the surface --- of Animals. -fun Skin : Class ; -fun Skin_Class : SubClass Skin (both AnimalAnatomicalStructure BodyCovering) ; - - --- The Bone that is found in the Heads of Vertebrates. -fun Skull : Class ; -fun Skull_Class : SubClass Skull Bone ; - --- A Window that is part of the Ceiling of --- a Room. -fun Skylight : Class ; -fun Skylight_Class : SubClass Skylight Window ; - --- A piece of Clothing that covers the Arm. A --- Sleeve is always part of a Coat or a Shirt. -fun Sleeve : Class ; -fun Sleeve_Class : SubClass Sleeve Clothing ; - --- Spreading the lips in such a way as to convey --- happiness. -fun Smiling : Class ; -fun Smiling_Class : SubClass Smiling FacialExpression ; - --- Inhaling and exhaling Smoke produced by a --- CigarOrCigarette. -fun Smoking : Class ; -fun Smoking_Class : SubClass Smoking RecreationOrExercise ; - --- Any Device whose purpose is Smoking. -fun SmokingDevice : Class ; -fun SmokingDevice_Class : SubClass SmokingDevice Device ; - --- A SmokingDevice consisting of a tube and a small --- bowl. -fun SmokingPipe : Class ; -fun SmokingPipe_Class : SubClass SmokingPipe SmokingDevice ; - --- Any instance Transportation which is also a --- CriminalAction. -fun Smuggling : Class ; -fun Smuggling_Class : SubClass Smuggling (both CriminalAction Transportation) ; - - --- A long and narrow Reptile which lacks Limbs. -fun Snake : Class ; -fun Snake_Class : SubClass Snake Reptile ; - --- The ConsciousnessAttribute of someone whose motor and --- cognitive faculties are not significantly impaired by a BiologicallyActiveSubstance. -fun Sober : Ind ConsciousnessAttribute ; - - --- The process of transitioning from a state of --- being Drunk to a state of being Sober. -fun SoberingUp : Class ; -fun SoberingUp_Class : SubClass SoberingUp PsychologicalProcess ; - --- Any Meeting where the intent is primarily --- to socialize and be entertained. -fun SocialParty : Class ; -fun SocialParty_Class : SubClass SocialParty (both Meeting RecreationOrExercise) ; - - --- Any Science which studies human behavior, either in --- the aggregate, as do, for example, Economics and Linguistics, or with respect to --- the individual, as does Psychology. -fun SocialScience : Class ; -fun SocialScience_Class : SubClass SocialScience Science ; - --- A piece of Clothing that is made of a soft Fabric --- like Cotton and that is intended to be worn on the Foot. -fun Sock : Class ; -fun Sock_Class : SubClass Sock Clothing ; - --- SodiumChloride is the compound of Sodium and Chloride, --- which may appear in crystalline form or in solution with water or other substances. --- It is a compound found in solution in significant quantities in sea water. -fun SodiumChloride : Class ; -fun SodiumChloride_Class : SubClass SodiumChloride ChemicalSalt ; - --- A padded Seat that is designed to accommodate more --- than one Human. -fun Sofa : Class ; -fun Sofa_Class : SubClass Sofa Seat ; - --- Attaching two things by means of a MetallicAlloy. -fun Soldering : Class ; -fun Soldering_Class : SubClass Soldering Attaching ; - --- The class of SkilledOccupations which involve serving in --- the armed forces of a Nation. -fun Soldier : Class ; -fun Soldier_Class : SubClass Soldier SkilledOccupation ; - --- Any BodyMotion which begins and ends in --- a Sitting position and where the feet roll over the head and return to --- their original position. -fun Somersaulting : Class ; -fun Somersaulting_Class : SubClass Somersaulting BodyMotion ; - --- Something that emits and receives sound --- for the purpose of locating and tracking distant objects. Note that --- this covers both manmade devices and BodyParts such as the sonar --- of bats and dolphins. -fun Sonar : Class ; -fun Sonar_Class : SubClass Sonar CorpuscularObject ; - --- Any MusicalComposition which contains Lyrics. -fun Song : Class ; -fun Song_Class : SubClass Song MusicalComposition ; - --- Food which is prepared by reducing Meat --- and/or FruitOrVegetables to a translucent broth which can be used as --- a base for soups or sauces. -fun SoupStock : Class ; -fun SoupStock_Class : SubClass SoupStock PreparedFood ; - --- The class of all Regions which are not --- GeographicAreas. -fun SpaceRegion : Class ; -fun SpaceRegion_Class : SubClass SpaceRegion Region ; - --- Any instance of Transportation where the --- instrument is a Spacecraft and which is through a SpaceRegion. -fun SpaceTransportation : Class ; -fun SpaceTransportation_Class : SubClass SpaceTransportation Transportation ; - --- Any Vehicle which is capable of --- SpaceTransportation. -fun Spacecraft : Class ; -fun Spacecraft_Class : SubClass Spacecraft Vehicle ; - --- A Romance language that is the official language --- of Spain, Mexico, and many Central and South American countries. -fun SpanishLanguage : Ind (both SpokenHumanLanguage NaturalLanguage) ; - - --- A Weapon with a long handle and a short --- blade. -fun Spear : Class ; -fun Spear_Class : SubClass Spear Weapon ; - --- The class of ThreeDimensionalFigures such that --- all GeometricPoints that make up the Sphere are equidistant from a --- single GeometricPoint, known as the center of the Sphere. -fun Sphere : Class ; -fun Sphere_Class : SubClass Sphere ThreeDimensionalFigure ; - --- A cord of nerves that carries impulses to --- and from the Brain. It is contained within the SpinalColumn. -fun SpinalCord : Class ; -fun SpinalCord_Class : SubClass SpinalCord Organ ; - --- Any instance of Impelling where the origin is --- the Mouth of the agent. -fun Spitting : Class ; -fun Spitting_Class : SubClass Spitting Impelling ; - --- An Organ on the left side of the body that produces --- Cells that play a crucial role in immune response. -fun Spleen : Class ; -fun Spleen_Class : SubClass Spleen (both AnimalAnatomicalStructure Organ) ; - - --- The BodyPosition of extending one's Legs at --- right angles to one's Torso. -fun Splitting : Ind BodyPosition ; - - --- A GameShot which is part of a Sport and --- which serves to start the Sport, e.g. the beginning shot in Tennis, --- Badminton or Squash. -fun SportServe : Class ; -fun SportServe_Class : SubClass SportServe GameShot ; - --- Any GameAttribute that is specific to --- a Sport. -fun SportsAttribute : Class ; -fun SportsAttribute_Class : SubClass SportsAttribute GameAttribute ; - --- A specially designated and maintained facility --- where Sports are played. Note that this covers sports fields, stadiums, --- and gymnasiums. -fun SportsFacility : Class ; -fun SportsFacility_Class : SubClass SportsFacility StationaryArtifact ; - --- A specially designated and maintained area --- where Sports are played. -fun SportsGround : Class ; -fun SportsGround_Class : SubClass SportsGround StationaryArtifact ; - --- An Organization whose members are SportsTeams --- and whose purpose is to set up games between its members. -fun SportsLeague : Class ; -fun SportsLeague_Class : SubClass SportsLeague Organization ; - --- A SportsAttribute that indicates that a player in --- a Sport can no longer compete because he has been tagged with the GamePiece. -fun SportsOut : Ind SportsAttribute ; - - --- A Plan for a Maneuver within a TeamSport. -fun SportsPlay : Class ; -fun SportsPlay_Class : SubClass SportsPlay Plan ; - --- A Position which is filled by someone on a --- SportsTeam and which represents the role played by the person on the team. -fun SportsPosition : Class ; -fun SportsPosition_Class : SubClass SportsPosition SkilledOccupation ; - --- A GroupOfPeople who habitually play a Sport --- together, either as an occupation or as a leisure activity. -fun SportsTeam : Class ; -fun SportsTeam_Class : SubClass SportsTeam GroupOfPeople ; - --- Any instance of Transfer of a Liquid which is --- accomplished by converting the Liquid into a mist. -fun Spraying : Class ; -fun Spraying_Class : SubClass Spraying (both LiquidMotion Transfer) ; - - --- The SeasonOfYear that begins at the spring --- equinox and ends at the summer solstice. SpringSeason is the class of --- TimeIntervals associated with the calendar months of March --- through May. -fun SpringSeason : Class ; -fun SpringSeason_Class : SubClass SpringSeason SeasonOfYear ; - --- Any Rectangle whose sides are all equal. -fun Square : Class ; -fun Square_Class : SubClass Square Rectangle ; - --- SquareMile represents a UnitOfMeasure --- equal to one square Mile. -fun SquareMile : Ind UnitOfArea ; - - --- SquareYard represents a UnitOfMeasure --- equal to one square YardLength. -fun SquareYard : Ind UnitOfArea ; - - --- Sitting on one's heels. -fun Squatting : Ind BodyPosition ; - - --- A tree_dwelling Rodent with a bushy tail. -fun Squirrel : Class ; -fun Squirrel_Class : SubClass Squirrel Rodent ; - --- A Wagon that is pulled by Horses and whose purpose --- was to transport Humans and their luggage from one City to the next, especially --- in areas which did not have an established transportation system, e.g. the old west. -fun StageCoach : Class ; -fun StageCoach_Class : SubClass StageCoach Wagon ; - --- A StationaryArtifact which allows one to climb, step --- by step, from one level to another. -fun Stairway : Class ; -fun Stairway_Class : SubClass Stairway StationaryArtifact ; - --- The BodyMotion of moving from a Sitting --- to a Standing position. -fun StandingUp : Class ; -fun StandingUp_Class : SubClass StandingUp (both BodyMotion MotionUpward) ; - - --- A complex Carbohydrate that is the main form in --- which Carbohydrates are stored. -fun Starch : Class ; -fun Starch_Class : SubClass Starch Carbohydrate ; - --- (StartFn ?PROCESS) denotes IntentionalProcesses --- of bringing it about that Processes of type ?PROCESS begin, e.g. start --- working, begin running, etc. -fun StartFn : El Process -> Desc IntentionalProcess ; - - --- Killing someone by depriving them of Food. -fun Starving : Class ; -fun Starving_Class : SubClass Starving Killing ; - --- The class of Governments whose --- jurisdictions are StateOrProvinces. -fun StateGovernment : Class ; -fun StateGovernment_Class : SubClass StateGovernment Government ; - --- A Sentence that is stated to be true. -fun Statement : Class ; -fun Statement_Sentence : SubClassC Statement Sentence (\SENTENCE -> exists Stating (\STATE -> result(var Stating Process ? STATE)(var Sentence Entity ? SENTENCE))); - - --- Any UnilateralGetting which is not permitted by the --- origin of the UnilateralGetting. These cases of UnilateralGetting are --- distinguished from ones where the destination is the subject of charity or --- other forms of benefaction. -fun Stealing : Class ; -fun Stealing_Class : SubClass Stealing (both CriminalAction UnilateralGetting) ; - - --- SteamEngine is the subclass of Engines --- that produce mechanical power from heat and steam pressure. -fun SteamEngine : Class ; -fun SteamEngine_Class : SubClass SteamEngine Engine ; - --- A MetallicAlloy made from Iron and other elements. -fun Steel : Class ; -fun Steel_Class : SubClass Steel MetallicAlloy ; - --- A component of a ReligiousBuilding that is tall --- and narrow and symbolizes the connection between humanity and a deity. -fun Steeple : Class ; -fun Steeple_Class : SubClass Steeple StationaryArtifact ; - --- A VehicleController which enables one to steer --- a Vehicle. -fun SteeringWheel : Class ; -fun SteeringWheel_Class : SubClass SteeringWheel VehicleController ; - --- The BodyMotion of extending one foot forward --- and then bringing the other foot to the same lateral position as the --- first leg. -fun Stepping : Class ; -fun Stepping_Class : SubClass Stepping BodyMotion ; - --- A StationaryArtifact which allows one to climb, step --- by step, from one level to another. -fun Steps : Class ; -fun Steps_Class : SubClass Steps StationaryArtifact ; - --- A class of OrganicCompounds having the same basic --- chemical structure and having significant physiological effects. -fun Steroid : Class ; -fun Steroid_Class : SubClass Steroid (both BiologicallyActiveSubstance OrganicCompound) ; - - --- Any BiologicallyActiveSubstance which has --- the effect of stimulating the central nervous system, i.e. increasing --- function or activity in the Brain or SpinalCord. -fun Stimulant : Class ; -fun Stimulant_Class : SubClass Stimulant BiologicallyActiveSubstance ; - --- Any instance of LiquidMotion which is also an --- instance of Combining two or more Liquids. -fun Stirring : Class ; -fun Stirring_Class : SubClass Stirring (both Combining LiquidMotion) ; - - --- An instrument that signifies an ownership position, --- or equity, in a Corporation, and represents a claim on its proportionate --- share in the corporation's assets and profits. -fun Stock : Class ; -fun Stock_Class : SubClass Stock (both FinancialInstrument Investment) ; - - --- A muscular sac that is the principal organ of --- digestion. -fun Stomach : Class ; -fun Stomach_Class : SubClass Stomach (both AnimalAnatomicalStructure Organ) ; - - --- An act where a victim or victims is attacked --- with stones. The stones may either be placed on top of a victim in --- order to cause death by pressure and suffocation, in which case the act --- is typically part of a ritualized legal sentence, or where the victim --- is pelted with stones causing injury or death by trauma. The intent --- of such an act is usually the death of the victim. -fun Stoning : Class ; -fun Stoning_Class : SubClass Stoning ViolentContest ; - --- (StopFn ?PROCESS) denotes IntentionalProcesses --- of bringing it about that Processes of type ?PROCESS end, e.g. stop --- walking, quit working, etc. -fun StopFn : El Process -> Desc IntentionalProcess ; - - --- A Building that has the purpose of housing --- FinancialTransactions. -fun Store : Class ; -fun Store_Class : SubClass Store Building ; - --- Someone who operates a store which he --- either owns or rents. -fun StoreOwner : Ind OccupationalRole ; - - --- The Region where two or more unstable air --- masses meet. -fun StormFront : Class ; -fun StormFront_Class : SubClass StormFront AtmosphericRegion ; - --- A HeatingDevice which consists one or more burners for --- heating pots and pans of Food. -fun Stove : Class ; -fun Stove_Class : SubClass Stove HeatingDevice ; - --- Any instance of Grabbing where the patient is --- someone else's throat and the intention is to make it impossible for the other --- person to breathe. -fun Strangling : Class ; -fun Strangling_Class : SubClass Strangling Grabbing ; - --- (StreetAddressFn ?BUILDING ?ROAD ?CITY --- ?COUNTRY) returns the Agent, e.g. a family, an organization, a person, --- etc. that resides or conducts business at the corresponding address. -fun StreetAddressFn : El StationaryArtifact -> El Roadway -> El City -> El Nation -> Ind Agent ; - - --- Streetcar is the subclass of --- ElectrifiedRailwayCars that run on tracks laid into, along, or --- beside city Streets. -fun Streetcar : Class ; -fun Streetcar_Class : SubClass Streetcar ElectrifiedRailwayCar ; - --- A SoundAttribute of Syllables. It denotes --- the quality of being emphasized over the other Syllables in the same --- Word. -fun Stressed : Ind SoundAttribute ; - - --- Moving two sides of an object in opposite --- directions so that the object becomes both longer and thinner. -fun Stretching : Class ; -fun Stretching_Class : SubClass Stretching (both Lengthening Motion) ; - - --- A long, thin strand of Fabric that is used for Tying --- things together, etc. Note that this class covers a cord of any width, including --- rope, twine, and thread, for example. -fun String : Class ; -fun String_Class : SubClass String Artifact ; - --- A MusicalInstrument which is played by --- striking strings, either directly as with a guitar or indirectly via keys --- as with Pianos. -fun StringInstrument : Class ; -fun StringInstrument_Class : SubClass StringInstrument MusicalInstrument ; - --- A person who participates in an --- EducationalProcess in order to learn something. -fun Student : Ind SocialRole ; - - --- A WaterVehicle which is capable of travelling --- under the water level by filling tanks with water. -fun Submarine : Class ; -fun Submarine_Class : SubClass Submarine WaterVehicle ; - --- A subway is a hollow area of the earth, typically --- under large cities, designed for running trains that move people. It is --- distinguished from other kinds of tunnels in that trains run through --- them, primarily for the purpose of carrying people rather than ore, for --- example. -fun Subway : Class ; -fun Subway_Class : SubClass Subway Hole ; - --- Any RailTransportationSystem that runs --- exclusively through Tunnels. -fun SubwaySystem : Class ; -fun SubwaySystem_Class : SubClass SubwaySystem RailTransportationSystem ; - --- Killing someone by asphyxiation, i.e. by --- depriving them of Oxygen. -fun Suffocating : Class ; -fun Suffocating_Class : SubClass Suffocating Killing ; - --- A simple Carbohydrate that has a sweet taste and --- consists mostly or entirely of sucrose. -fun Sugar : Class ; -fun Sugar_Class : SubClass Sugar Carbohydrate ; - --- Any instance of Killing where the agent and --- the experiencer are identical. -fun Suicide : Class ; -fun Suicide_Class : SubClass Suicide Killing ; - --- A bomb attack in which the bomber --- intends to blow himself up during the course of the attack. The bomber --- is the delivery mechanism for the explosive and the bomb is typically --- in close contact with the bomber, such as being strapped around his --- torso. This action is distinguished from actions in which the bomber --- merely happens to be blown up by his own bomb in that the bomber --- knows that he is committing suicide. -fun SuicideBombing : Class ; -fun SuicideBombing_Class : SubClass SuicideBombing (both Bombing Killing) ; - - --- The SeasonOfYear that begins at the summer --- solstice and ends at the autumnal equinox. -fun SummerSeason : Class ; -fun SummerSeason_Class : SubClass SummerSeason SeasonOfYear ; - --- Any instance of RadiatingLight where the --- Sun (Sol) is the origin. -fun Sunlight : Class ; -fun Sunlight_Class : SubClass Sunlight RadiatingLight ; - --- The TimeInterval of each Day when the sun is rising --- and is partially overlapped by the horizon line. -fun Sunrise : Class ; -fun Sunrise_Class : SubClass Sunrise TimeInterval ; - --- The TimeInterval of each Day when the sun is setting --- and is partially overlapped by the horizon line. -fun Sunset : Class ; -fun Sunset_Class : SubClass Sunset TimeInterval ; - --- A Sentence that is assumed to be true, possibly --- just for the sake of argument. -fun Supposition : Class ; -fun Supposition_Sentence : SubClassC Supposition Sentence (\SENTENCE -> exists Supposing (\SUPPOSE -> result(var Supposing Process ? SUPPOSE)(var Sentence Entity ? SENTENCE))); - - --- Surfactants, also known as Wetting agents, --- lower the surface tension of a Liquid, allowing easier spreading. The --- term surfactant is a compression of 'Surface active agent'. Surfactants --- are usually organic compounds that contain both hydrophobic and --- hydrophilic groups, and are thus semi_soluble in both organic and aqueous --- solvents. -fun Surfactant : Class ; -fun Surfactant_Class : SubClass Surfactant Substance ; - --- The Profession of being a surgeon, i.e. being a --- medical doctor who specializes in performing surgical operations. -fun Surgeon : Class ; -fun Surgeon_Class : SubClass Surgeon MedicalDoctor ; - --- The EmotionalState that one experiences when something --- unexpected and of significance occurs. -fun Surprise : Ind EmotionalState ; - - --- An AnimalSubstance that contains SodiumChloride --- and is produced by the sweat glands. -fun Sweat : Class ; -fun Sweat_Class : SubClass Sweat AnimalSubstance ; - --- Removing small particles from the floor by means of --- a Broom. -fun Sweeping : Class ; -fun Sweeping_Class : SubClass Sweeping Removing ; - --- A FluidContainer that is filled with Water --- and that is used for Swimming. -fun SwimmingPool : Class ; -fun SwimmingPool_Class : SubClass SwimmingPool (both FluidContainer StationaryArtifact) ; - - --- An EngineeringComponent which is capable of turning --- an ElectricDevice on and off. -fun SwitchDevice : Class ; -fun SwitchDevice_Class : SubClass SwitchDevice EngineeringComponent ; - --- A Weapon with a long blade and covered --- handle. -fun Sword : Class ; -fun Sword_Class : SubClass Sword Weapon ; - --- A sequence of Characters from the same Word --- that denote a single sound. -fun Syllable : Class ; -fun Syllable_Class : SubClass Syllable SymbolicString ; - --- A ShapeAttribute that applies to a --- SelfConnectedObject that can be divided into two copies of each other. -fun SymmetricShape : Ind ShapeAttribute ; - - --- A piece of Furniture with four legs and a flat top. --- It is used either for eating, paperwork or meetings. -fun Table : Class ; -fun Table_Class : SubClass Table Furniture ; - --- Devices that are used in Ingesting (Eating --- and/or Drinking) a meal. This coves dishware, flatware, and glassware. -fun Tableware : Class ; -fun Tableware_Class : SubClass Tableware Device ; - --- A BodyPart which extends from the rear of the --- main body of some Vertebrates. -fun Tail : Class ; -fun Tail_Class : SubClass Tail AnimalAnatomicalStructure ; - --- Any VehicleLight which is attached to the back --- of a Vehicle. -fun Taillight : Class ; -fun Taillight_Class : SubClass Taillight VehicleLight ; - --- Any Process where the experiencer contracts a --- DiseaseOrSyndrome. -fun TakingIll : Class ; -fun TakingIll_Class : SubClass TakingIll PathologicProcess ; - --- Any instance of Translocation which starts on something other --- than an AtmosphericRegion and which has an instance of Flying as a subProcess. -fun TakingOff : Class ; -fun TakingOff_Class : SubClass TakingOff Translocation ; - --- A thin strip of Fabric or Paper that is used to attach --- two things. -fun Tape : Class ; -fun Tape_Class : SubClass Tape AttachingDevice ; - --- A Restaurant whose primary service is selling --- AlcoholicBeverages to customers. -fun Tavern : Class ; -fun Tavern_Class : SubClass Tavern Restaurant ; - --- A fee charged by a government on a product, income, or activity. -fun Tax : Class ; -fun Tax_Class : SubClass Tax ChargingAFee ; - --- A FormText that is used for calculating the amount --- of income tax owed in a given year. -fun TaxReturn : Class ; -fun TaxReturn_Class : SubClass TaxReturn FormText ; - --- An Automobile which is used to transport people --- on short trips in exchange for a fare. -fun Taxicab : Class ; -fun Taxicab_Class : SubClass Taxicab Automobile ; - --- A Taxonomy is a ClassificationScheme --- that typically includes the salient concepts of a domain of --- interest, plus, minimally, a binary `broader than'/`narrower --- than' relation by which the concepts are linked. The `broader --- than'/`narrower than' relation is usually conceived as set_ or --- class_based subsumption, but taxonomies are notorious for --- conflating the set membership and set subsumption (i.e., --- subset/superset) relations into a single `IS_A' relation. Some --- taxonomies include additional binary relations, such as --- `subpart'/`superpart'. -fun Taxonomy : Class ; -fun Taxonomy_Class : SubClass Taxonomy ClassificationScheme ; - --- A Beverage which is prepared by infusing tea leaves --- into hot water. -fun Tea : Class ; -fun Tea_Class : SubClass Tea (both Beverage PreparedFood) ; - - --- The Profession of being a teacher. -fun Teacher : Ind Profession ; - - --- Any Sport which is played by SportsTeams, e.g. --- Baseball and Football. -fun TeamSport : Class ; -fun TeamSport_Class : SubClass TeamSport Sport ; - --- The class of SalineSolutions produced by --- the lacrimal glands of the Eyes. -fun TearSubstance : Class ; -fun TearSubstance_Class : SubClass TearSubstance (both LiquidBodySubstance SalineSolution) ; - - --- A HumanYouth between puberty and the age of 20. -fun Teenager : Class ; -fun Teenager_Class : SubClass Teenager HumanYouth ; - --- A Device that permits LinguisticCommunication --- between remote points by means of a code of aural dots and dashes that can --- be converted into letters of an alphabet. -fun Telegraph : Class ; -fun Telegraph_Class : SubClass Telegraph (both CommunicationDevice ElectricDevice) ; - - --- A Device that permits LinguisticCommunication --- between remote points by converting sound into electrical signals that are --- then transmitted. When the signals are received, they are converted back --- into sound. -fun Telephone : Class ; -fun Telephone_Class : SubClass Telephone (both CommunicationDevice ElectricDevice) ; - - --- A WireLine that carries telephone signals and --- allows users of Telephones or Telegraphs to communicate with one another. -fun TelephoneLine : Class ; -fun TelephoneLine_Class : SubClass TelephoneLine WireLine ; - --- Any instance of Speaking where the --- instrument of Communication is a Telephone. -fun Telephoning : Class ; -fun Telephoning_Class : SubClass Telephoning Speaking ; - --- Any instance of Broadcasting which --- is intended to be received by a Television. -fun TelevisionBroadcasting : Class ; -fun TelevisionBroadcasting_Class : SubClass TelevisionBroadcasting Broadcasting ; - --- A TelevisionReceiver is a Device for --- receiving television broadcast signals from a TelevisionStation. TelevisionReceiver A TelevisionReceiver is a Device for receiving --- television broadcast signals from a TelevisionStation or signals --- transmitted through a cable from a CableTelevisionSystem. -fun TelevisionReceiver : Class ; -fun TelevisionReceiver_Class : SubClass TelevisionReceiver ReceiverDevice ; - --- Any Stating which is both False and believed --- to be False by the agent of the Stating. -fun TellingALie : Class ; -fun TellingALie_Class : SubClass TellingALie Stating ; - --- Tissue that connects Muscle to Bone. -fun Tendon : Class ; -fun Tendon_Class : SubClass Tendon (both AnimalSubstance Tissue) ; - - --- A MobileResidence that is made of Fabric and poles and --- can be easily assembled and disassembled. -fun Tent : Class ; -fun Tent_Class : SubClass Tent MobileResidence ; - --- A group that uses violent means in an --- attempt to bring about their political aims. Those violent means are --- distinguished from a war between nations, or a civil war in that the group --- is at least partially clandestine and a significant proportion of its acts --- are against non_military targets. -fun TerroristOrganization : Class ; -fun TerroristOrganization_Class : SubClass TerroristOrganization PoliticalOrganization ; - --- A FormText which is intended to measure some aspect --- of the cognitive capabilities, e.g. intelligence or knowledge of a domain, --- of the person taking the test. -fun TestForm : Class ; -fun TestForm_Class : SubClass TestForm (both FormText MeasuringDevice) ; - - --- A Certificate that describes how a person's --- property is to be distributed after the death of the person. -fun Testament : Class ; -fun Testament_Class : SubClass Testament Certificate ; - --- Giving testimony as part of a JudicialProcess. -fun Testifying : Class ; -fun Testifying_Class : SubClass Testifying Stating ; - --- Any ExpressingApproval to a person for something --- that the person did in the past and that is regarded as being to the thanker's --- benefit. -fun Thanking : Class ; -fun Thanking_Class : SubClass Thanking ExpressingApproval ; - --- Often know as the stage, the --- Position of performing live plays. -fun TheaterProfession : Class ; -fun TheaterProfession_Class : SubClass TheaterProfession EntertainmentProfession ; - --- The systematic study of religious practice and religious truth. -fun Theology : Ind FieldOfStudy ; - - --- Any Device that measures and represents --- TemperatureMeasure. -fun Thermometer : Class ; -fun Thermometer_Class : SubClass Thermometer MeasuringDevice ; - --- Any Committing where the thing promised --- is something that is deemed undesirable by the destination of the --- Committing. -fun Threatening : Class ; -fun Threatening_Class : SubClass Threatening Committing ; - --- A BodyVessel which connects the Mouth to the --- lungs and stomach. -fun Throat : Class ; -fun Throat_Class : SubClass Throat (both AnimalAnatomicalStructure BodyVessel) ; - - --- Any instance of Impelling where the instrument is --- an Arm. -fun Throwing : Class ; -fun Throwing_Class : SubClass Throwing (both BodyMotion Impelling) ; - - --- The thick, short Finger of each Hand. -fun Thumb : Class ; -fun Thumb_Class : SubClass Thumb Finger ; - --- Any instance of RadiatingSound which is caused by --- an instance of Lightning. -fun Thunder : Class ; -fun Thunder_Class : SubClass Thunder (both RadiatingSound WeatherProcess) ; - - --- A Gland in the neck that produces --- HormoneTSH, which regulates body weight, metabolic rate, etc. -fun ThyroidGland : Class ; -fun ThyroidGland_Class : SubClass ThyroidGland Gland ; - --- A Hormone secreted by the ThyroidGland. -fun ThyroidHormone : Class ; -fun ThyroidHormone_Class : SubClass ThyroidHormone Hormone ; - --- A Certificate that allows the holder to perform --- a specified act once, e.g. ride a bus, attend a concert, obtain a prize, --- etc. -fun Ticket : Class ; -fun Ticket_Class : SubClass Ticket Certificate ; - --- Clothing that is intended to be worn around the --- Neck and knotted at the front. -fun TieClothing : Class ; -fun TieClothing_Class : SubClass TieClothing Clothing ; - --- The ContestAttribute that applies to all contestParticipants --- in a Contest when none of them have Won or Lost the Contest. -fun TieScore : Ind ContestAttribute ; - - --- Any Process of Digging, e.g. breaking and --- turning over Soil that facilitates Agriculture. -fun Tilling : Class ; -fun Tilling_Class : SubClass Tilling (both Digging (both IntentionalProcess SurfaceChange)) ; - - --- An Amphibian that lacks a Tail and lives at least --- partially outside of water. -fun Toad : Class ; -fun Toad_Class : SubClass Toad Amphibian ; - --- A FloweringPlant containing nicotine whose leaves --- are dried and then smoked or ingested. -fun Tobacco : Class ; -fun Tobacco_Class : SubClass Tobacco FloweringPlant ; - --- The five extremities of a Foot. -fun Toe : Class ; -fun Toe_Class : SubClass Toe (both AnimalAnatomicalStructure (both BodyPart DigitAppendage)) ; - - --- A Device for the disposal of wastes resulting from --- urination and defecation. -fun Toilet : Class ; -fun Toilet_Class : SubClass Toilet Device ; - --- A StationaryArtifact which is meant to contain someone --- who is Dead. -fun Tomb : Class ; -fun Tomb_Class : SubClass Tomb StationaryArtifact ; - --- English mass unit that is equal to 2000 pounds. -fun TonMass : Ind UnitOfMass ; - - --- Any SpokenHumanLanguage that uses pitch to --- differentiate otherwise identical words, e.g. Chinese. -fun TonalLanguage : Class ; -fun TonalLanguage_Class : SubClass TonalLanguage SpokenHumanLanguage ; - --- Part of the Mouth, used for Tasting Food, --- Vocalizing, and the initial stage of Digesting. -fun Tongue : Class ; -fun Tongue_Class : SubClass Tongue (both AnimalAnatomicalStructure BodyPart) ; - - --- Part of the Mouth, used for biting and chewing. -fun Tooth : Class ; -fun Tooth_Class : SubClass Tooth Bone ; - --- A small BrushOrComb with relatively soft --- bristles and a long handle, used for brushing teeth (see Tooth). It is --- used help control bacteria living in the mouth. While most typically used --- by humans on themselves, it can be used by Dentists on their --- patients and by adults assisting children. They are occasionally used by --- humans caring for pets, zoo animals and valuable livestock. -fun Toothbrush : Class ; -fun Toothbrush_Class : SubClass Toothbrush BrushOrComb ; - --- The body of a Primate excluding its Limbs. -fun Torso : Class ; -fun Torso_Class : SubClass Torso (both AnimalAnatomicalStructure BodyPart) ; - - --- A tourist is a person who is travelling to a --- place primarily for reasons of entertainment or education, rather than --- business, although business transaction may take place during the trip. -fun Tourist : Ind SocialRole ; - - --- A tourist site is a location that has some --- feature of interest to Tourists, which entertains or informs them. -fun TouristSite : Class ; -fun TouristSite_Class : SubClass TouristSite GeographicArea ; - --- A piece of Fabric which is used for Drying. -fun Towel : Class ; -fun Towel_Class : SubClass Towel Fabric ; - --- Any ContentDevelopment that results in a Blueprint. -fun Tracing : Class ; -fun Tracing_Class : SubClass Tracing (both ContentDevelopment SurfaceChange) ; - - --- TractorTrailer is the subclass of --- RoadVehicles that are truck tractor_ truck trailer combinations. -fun TractorTrailer : Class ; -fun TractorTrailer_Class : SubClass TractorTrailer RoadVehicle ; - --- The state of being free from Anxiety. -fun Tranquility : Ind EmotionalState ; - - --- A Device which is capable of converting one --- form of energy into another. Formally, a Twoport that neither stores --- nor dissipates, but only transfers energy between its two ports. -fun Transducer : Class ; -fun Transducer_Class : SubClass Transducer Device ; - --- Any process within an Organization --- where a person is moved from one Position to another, e.g. the promotion --- or demotion of an employee. -fun TransferringPosition : Class ; -fun TransferringPosition_Class : SubClass TransferringPosition OrganizationalProcess ; - --- A TransitSystem is a system of --- interconnected Transitways over which some type(s) of vehicles or --- travellers may pass. In addition to Transitways, TransitSystems --- may also include TransitJunctions and TransitTerminals. Transit --- systems may be demarcated by where they are located (e.g., the rail --- system of Afghanistan), who owns or manages them (e.g., American --- Airlines TransitSystem of AirRoutes, or state highways managed by --- TexDOT), or the type of vehicles or travellers accommodated (e.g., --- the system of Santa Clara county bike trails. -fun TransitSystem : Class ; -fun TransitSystem_Class : SubClass TransitSystem PhysicalSystem ; - --- A Transparent material is one through which --- it is possible to have Seeing. -fun Transparent : Ind InternalAttribute ; - - --- TransportViaRoadVehicle is the class of Transportation --- events in which the instrument is an instance of --- RoadVehicle. -fun TransportViaRoadVehicle : Class ; -fun TransportViaRoadVehicle_Class : SubClass TransportViaRoadVehicle LandTransportation ; -fun TransportViaRoadVehicle_Transportation : SubClassC TransportViaRoadVehicle Transportation (\TRANSPORT -> exists RoadVehicle (\VEHICLE -> instrument(var Transportation Process ? TRANSPORT)(var RoadVehicle Object ? VEHICLE))); - - --- A CommercialAgent whose services --- include Transportation, e.g. a RailroadCompany, an airline, a cruise --- ship line, etc. -fun TransportationCompany : Class ; -fun TransportationCompany_Class : SubClass TransportationCompany CommercialAgent ; - --- A Device whose purpose is to trap or cage Animals, --- i.e. to be in instrument in an act of Confining. -fun TrapOrCage : Class ; -fun TrapOrCage_Class : SubClass TrapOrCage Holder ; - --- Any Container which is intended to be --- used for carrying clothing, toiletries, and other personal effects that --- would be needed on a overnight trip. -fun TravelContainer : Class ; -fun TravelContainer_Class : SubClass TravelContainer Container ; - --- A Holder that is designed for Food, dishes, and --- flatware. -fun Tray : Class ; -fun Tray_Class : SubClass Tray Holder ; - --- Any SkilledOccupation which involves receiving --- and disbursing money. -fun Treasurer : Class ; -fun Treasurer_Class : SubClass Treasurer SkilledOccupation ; - --- Any Contract which holds between two or more --- Nations. -fun Treaty : Ind DeonticAttribute ; - - --- Any PlantBranch which is part of a --- BotanicalTree. -fun TreeBranch : Class ; -fun TreeBranch_Class : SubClass TreeBranch PlantBranch ; - --- Any BodyMotion which is involuntary and which is --- repeated many times over a short time frame, e.g. a tremor in the hands, --- shivering etc. -fun Trembling : Class ; -fun Trembling_Class : SubClass Trembling (both AutonomicProcess (both BodyMotion Tremor)) ; - - --- Motion that involves rapidly Rotating between --- two positions. -fun Tremor : Class ; -fun Tremor_Class : SubClass Tremor Rotating ; - --- Entering property that does not belong to one and without --- the permission of the owner of the property. -fun Trespassing : Class ; -fun Trespassing_Class : SubClass Trespassing (both CriminalAction Translocation) ; - - --- Any three_sided Polygon. -fun Triangle : Class ; -fun Triangle_Class : SubClass Triangle Polygon ; - --- A piece of Clothing that covers each Leg --- of a person separately. -fun Trousers : Class ; -fun Trousers_Class : SubClass Trousers Clothing ; - --- Any Vehicle that is intended to carry substantial --- amounts of cargo, in addition to passengers. This includes 18_wheelers, --- pickup trucks, tanker trucks etc. Consumer vehicles with trunks or enclosed --- rear areas that can carry cargo are not defined as trucks. Truck is the subclass of RoadVehicles that --- are designed primarily for transporting various kinds of non_passenger --- loads. Truck is the class of single_bodied trucks or TruckTractors. --- Note: TractorTrailer combinations are a distinct class. Truck an automotive vehicle suitable for hauling -fun Truck : Class ; -fun Truck_Class : SubClass Truck (both CargoVehicle SelfPoweredRoadVehicle) ; - - --- TruckTractor is the subclass of Trucks --- that are used to tow truck trailers. Truck tractors are the cab portions --- of tractor_trailers. See also TruckTrailer. -fun TruckTractor : Class ; -fun TruckTractor_Class : SubClass TruckTractor Truck ; - --- TruckTrailer is the subclass of Wagons --- that are towed by TruckTractors. These are the trailers used in --- tractor_trailer (semi_trailer) rigs. -fun TruckTrailer : Class ; -fun TruckTrailer_Class : SubClass TruckTrailer Wagon ; - --- A long, narrow, and hollow Artifact that is designed for --- moving Fluids from place to another. -fun Tube : Class ; -fun Tube_Class : SubClass Tube Artifact ; - --- A BacterialDisease caused by the Tubercle Bacillus --- that results in lesions on various body parts, especially the Lungs. Tuberculosis A disease that usually infects the lungs and causes severe --- coughing. In some cases it will result in hemorrhage of the lungs. -fun Tuberculosis : Ind BacterialDisease ; - - --- Any AbnormalAnatomicalStructure which consists of a --- mass of Tissue. Note that this class covers both malignant (i.e. cancerous) --- and benign tumors. -fun Tumor : Class ; -fun Tumor_Class : SubClass Tumor AbnormalAnatomicalStructure ; - --- An Engine which converts the kinetic energy of a moving --- Liquid (typically Water) into mechanical energy. -fun Turbine : Class ; -fun Turbine_Class : SubClass Turbine Engine ; - --- Any Process whose result is that the patient --- of the process is in the state of DeviceOff. In other words, this class covers --- any process of turning off a device, e.g. turning off the lights, switching off a --- television set, etc. -fun TurningOffDevice : Class ; -fun TurningOffDevice_Class : SubClass TurningOffDevice InternalChange ; - --- Any Process whose result is that the patient --- of the process is in the state of DeviceOn. In other words, this class covers --- any process of turning on a device, e.g. turning on the lights, switching on a --- television set, etc. -fun TurningOnDevice : Class ; -fun TurningOnDevice_Class : SubClass TurningOnDevice InternalChange ; - --- A real_world physical object --- with a very flat aspect. This includes drawings on paper, cave --- paintings and other surface alterations. -fun TwoDimensionalObject : Class ; -fun TwoDimensionalObject_Class : SubClass TwoDimensionalObject Object ; - --- The Process of tying two things, or two strands of --- the same thing, together. -fun Tying : Class ; -fun Tying_Class : SubClass Tying Attaching ; - --- An Attribute which indicates that the --- associated Object cannot be broken under normal usage conditions. -fun Unbreakable : Ind BreakabilityAttribute ; - - --- The state of being unhappy, experiencing pain, --- sorrow or unease. -fun Unhappiness : Ind EmotionalState ; - - --- An Organization comprised of workers from --- the same Corporation or Industry. The purpose of the UnionOrganization --- is to strengthen its representation in bargaining with the Corporation or --- Industry. -fun UnionOrganization : Class ; -fun UnionOrganization_Class : SubClass UnionOrganization Organization ; - --- Any Soldier that served on the union side during --- the American Civil War. UnionSoldier Any Soldier that served on the union --- side during the American Civil War. -fun UnionSoldier : Class ; -fun UnionSoldier_Class : SubClass UnionSoldier Soldier ; - --- The states of the UnitedStates that the --- ConfederateStatesOfAmerica seceded from. -fun UnionStatesOfAmerica : Ind GeopoliticalArea ; - - --- The legislative branch of the government --- of the UnitedStates. -fun UnitedStatesCongress : Ind LegislativeOrganization ; - - --- Manages and preserves public lands --- and natural resources in the UnitedStates. -fun UnitedStatesDepartmentOfInterior : Ind GovernmentOrganization ; - - --- The subOrganization of the US --- government that sets and enforces foreign policy. -fun UnitedStatesDepartmentOfState : Ind GovernmentOrganization ; - - --- A School which admits students that --- have graduated from high school (known as undergraduate students) and --- students who have received a bachelor's degree (known as graduate --- students). A University confers both bachelor's and graduate --- degrees. -fun University : Class ; -fun University_Class : SubClass University PostSecondarySchool ; - --- Any Position which does not --- require learning a set of skills. -fun UnskilledOccupation : Class ; -fun UnskilledOccupation_Class : SubClass UnskilledOccupation ManualLabor ; - --- The Process of untying two things, or two strands --- of the same thing. -fun Untying : Class ; -fun Untying_Class : SubClass Untying Detaching ; - --- A PositionalAttribute to indicate that one thing is --- one or more floors above a second thing in the same building. -fun Upstairs : Ind PositionalAttribute ; - - --- Urea is a dry, soluble, nitrogenous substance --- that is the major solid component of the urine of mammals, and which --- may be synthesized from ammonia and carbon dioxide, it is useful in the --- production of Plastic and in Fertilizers. -fun Urea : Class ; -fun Urea_Class : SubClass Urea OrganicCompound ; - --- Taking time off from Working. -fun Vacationing : Class ; -fun Vacationing_Class : SubClass Vacationing RecreationOrExercise ; - --- An event where the objective of the agent --- is to damage or destroy some property of another agent. This is --- distinguished from acts where the prime objective is damage or loss --- of life of another agent. -fun Vandalism : Class ; -fun Vandalism_Class : SubClass Vandalism Destruction ; - --- An event in which a vehicle is used --- by an agent in order to inflict injury, death or damage to people --- or property. -fun VehicleAttack : Class ; -fun VehicleAttack_Class : SubClass VehicleAttack ViolentContest ; - --- A VehicleController which is capable of stopping --- the motion of a Vehicle. -fun VehicleBrake : Class ; -fun VehicleBrake_Class : SubClass VehicleBrake VehicleController ; - --- Any Device which is used to start, stop or --- control the movements of a Vehicle. This class covers steering wheels, brakes, --- acceleration pedals, airplane sticks, etc. -fun VehicleController : Class ; -fun VehicleController_Class : SubClass VehicleController Device ; - --- Any LightFixture which is attached to the --- surface of a Vehicle and whose purpose is to illuminate that area around --- the Vehicle so that potential obstacles can be detected or alerted. -fun VehicleLight : Class ; -fun VehicleLight_Class : SubClass VehicleLight LightFixture ; - --- A VehicleController which controls the amount --- of Fuel which is supplied to the Engine. -fun VehicleThrottle : Class ; -fun VehicleThrottle_Class : SubClass VehicleThrottle VehicleController ; - --- A covering, usually made of rubber, for a Wheel. -fun VehicleTire : Class ; -fun VehicleTire_Class : SubClass VehicleTire Artifact ; - --- VehicleWheel is a class of cylindrical --- Devices used to move a RoadVehicle along a road, running either --- directly on the wheel rims or on tires attached to the wheel rims. -fun VehicleWheel : Class ; -fun VehicleWheel_Class : SubClass VehicleWheel Wheel ; - --- Any Window which is part of a Vehicle, --- e.g. the Windshield and RearWindow of an Automobile. -fun VehicleWindow : Class ; -fun VehicleWindow_Class : SubClass VehicleWindow Window ; - --- A piece of Clothing intended to cover or --- obscure the face or hair of a Woman. This is commonly worn for --- religious reasons when in public in Muslim countries, but is also customary --- at Weddings and Funerals among some non_Muslim women. -fun Veil : Class ; -fun Veil_Class : SubClass Veil Clothing ; - --- Any BloodVessel which transfers Blood from --- the extremities of the body to the Heart. -fun Vein : Class ; -fun Vein_Class : SubClass Vein BloodVessel ; - --- A Device which is capable of Selling a Product --- to a customer automatically when the customer inserts the appropriate amount of --- Currency. -fun VendingDevice : Class ; -fun VendingDevice_Class : SubClass VendingDevice Device ; - --- The Attribute that applies to someone who was a --- Soldier at one time, but is not currently a Soldier. -fun Veteran : Ind SocialRole ; - - --- A representation of video on some medium such --- as film, videotape or DVD. Instances of this class are also commonly --- instances of AudioRecording. -fun VideoRecording : Class ; -fun VideoRecording_Class : SubClass VideoRecording ContentBearingObject ; - --- A StringInstrument that has four strings, a hollow --- body, and is played on the shoulder with a bow. -fun Violin : Class ; -fun Violin_Class : SubClass Violin StringInstrument ; - --- A disease that is caused by instances of --- Virus. -fun ViralDisease : Class ; -fun ViralDisease_Class : SubClass ViralDisease InfectiousDisease ; - --- Music which is produced (at least in part) --- by Singing. -fun VocalMusic : Class ; -fun VocalMusic_Class : SubClass VocalMusic Music ; - --- Any School whose aim is to teach --- students an OccupationalTrade. -fun VocationalSchool : Class ; -fun VocationalSchool_Class : SubClass VocationalSchool School ; - --- A structure where Voting for an Election --- takes place. -fun VotingPoll : Class ; -fun VotingPoll_Class : SubClass VotingPoll StationaryArtifact ; - --- An AlphabeticCharacter that denotes a speech sound that --- does not result in audible friction when it is pronounced. -fun Vowel : Class ; -fun Vowel_Class : SubClass Vowel AlphabeticCharacter ; - --- A diurnal bird of prey with a bald head that --- feeds on carrion. -fun Vulture : Class ; -fun Vulture_Class : SubClass Vulture Bird ; - --- Any instance of Walking which occurs through a --- BodyOfWater. -fun Wading : Class ; -fun Wading_Class : SubClass Wading Walking ; - --- A Landcraft that is not self_propelled, but must be --- pulled by either an Animal or a self_propelled Vehicle to move along the --- ground. -fun Wagon : Class ; -fun Wagon_Class : SubClass Wagon LandVehicle ; - --- The process of transitioning from a state of being --- Asleep to a state of being Awake. -fun WakingUp : Class ; -fun WakingUp_Class : SubClass WakingUp PsychologicalProcess ; - --- A Device which has the form of a staff with --- a handle and which enables some people to walk with greater assurance. -fun WalkingCane : Class ; -fun WalkingCane_Class : SubClass WalkingCane Device ; - --- A StationaryArtifact that supports a Building or --- partitions it into Rooms. -fun Wall : Class ; -fun Wall_Class : SubClass Wall StationaryArtifact ; - --- Any decorative paper that is used to cover the --- Walls of Rooms. -fun Wallpaper : Class ; -fun Wallpaper_Class : SubClass Wallpaper ArtWork ; - --- A very large CommercialBuilding whose purpose is --- to store commodities. -fun Warehouse : Class ; -fun Warehouse_Class : SubClass Warehouse CommercialBuilding ; - --- A WashingDevice which is intended to be used by --- Humans for washing their Hands. -fun WashBasin : Class ; -fun WashBasin_Class : SubClass WashBasin WashingDevice ; - --- Removing small particles from something by means of --- a Detergent and Water. -fun Washing : Class ; -fun Washing_Class : SubClass Washing Removing ; - --- Any Device whose purpose is Washing --- something, e.g. washing machines, dishwashers, bathtubs, etc. -fun WashingDevice : Class ; -fun WashingDevice_Class : SubClass WashingDevice Device ; - --- A Container which is used for trash. -fun Wastebasket : Class ; -fun Wastebasket_Class : SubClass Wastebasket Container ; - --- A Clock that can be worn on the Wrist. -fun WatchClock : Class ; -fun WatchClock_Clock : SubClassC WatchClock Clock (\C -> exists Human (\P -> exists Wrist (\W -> and ( wears (var Human Animal ? P)(var Clock Clothing ? C))( located(var Clock Physical ? C)(var Wrist Object ? W))))); - - --- Any instance of Transportation where --- the instrument is a WaterVehicle. -fun WaterTransportation : Class ; -fun WaterTransportation_Class : SubClass WaterTransportation Transportation ; - --- WaterVehicle is the class of all --- TransportationDevices used to travel on or in water. -fun WaterVehicle : Class ; -fun WaterVehicle_Class : SubClass WaterVehicle Vehicle ; - --- A WaterWave is a raised ridge of water --- moving along the surface of a body of water. The WaterWave moves --- in a direction approximately transverse to the crest line of the wave. --- The patient of the WaterWave is successive regions of water, which --- do not travel in the direction of the wave or with it. -fun WaterWave : Class ; -fun WaterWave_Class : SubClass WaterWave LiquidMotion ; - --- Any Paint which is a water_based Solution. -fun WatercolorPaint : Class ; -fun WatercolorPaint_Class : SubClass WatercolorPaint Paint ; - --- Any PaintedPicture which is created --- with water_based paints. -fun WatercolorPicture : Class ; -fun WatercolorPicture_Class : SubClass WatercolorPicture PaintedPicture ; - --- Moving a Hand to indicate a greeting, farewell, --- recognition, goodwill, etc. -fun Waving : Class ; -fun Waving_Class : SubClass Waving HandGesture ; - --- Any Substance of high molecular weight that resembles --- beeswax. -fun Wax : Class ; -fun Wax_Class : SubClass Wax Substance ; - --- Nuclear, chemical and biological weapons. --- What these weapons have in common is that they are designed to kill large numbers --- of people indiscriminately. -fun WeaponOfMassDestruction : Class ; -fun WeaponOfMassDestruction_Class : SubClass WeaponOfMassDestruction Weapon ; - --- Any Saturday and Sunday which are contiguous. -fun Weekend : Class ; -fun Weekend_Class : SubClass Weekend TimeInterval ; - --- Expressing unhappiness by shedding tears. -fun Weeping : Class ; -fun Weeping_Class : SubClass Weeping FacialExpression ; - --- Any Funding which is provided by a ServiceOrganization --- to people in need. -fun Welfare : Class ; -fun Welfare_Class : SubClass Welfare Funding ; - --- A long CerealGrain which is produced by certain grasses and --- which is used to make BreadOrBiscuits. -fun WheatGrain : Class ; -fun WheatGrain_Class : SubClass WheatGrain CerealGrain ; - --- A circular Artifact which is a component of --- LandVehicles and of some Devices. -fun Wheel : Class ; -fun Wheel_Class : SubClass Wheel Artifact ; - --- A Weapon that consists of a thin strand of --- Fabric, usually Leather, and a handle by which the strand is --- impelled at a high rate of speed. -fun Whip : Class ; -fun Whip_Class : SubClass Whip Weapon ; - --- A DistilledAlcoholicBeverage that is prepared by --- distilling fermented grain mash. -fun Whiskey : Class ; -fun Whiskey_Class : SubClass Whiskey DistilledAlcoholicBeverage ; - --- BloodCells that lack hemoglobin, contain a --- CellNucleus, and have no color. -fun WhiteBloodCell : Class ; -fun WhiteBloodCell_Class : SubClass WhiteBloodCell BloodCell ; - --- A MercantileOrganization that sells its --- goods exclusively to Corporations. -fun WholesaleStore : Class ; -fun WholesaleStore_Class : SubClass WholesaleStore (both Agency MercantileOrganization) ; - - --- The Attribute that applies to someone who was --- married to someone who has died, and who has not remarried. -fun Widowed : Ind SocialRole ; - - --- A BotanicalTree of the genus Salix. -fun WillowTree : Class ; -fun WillowTree_Class : SubClass WillowTree BotanicalTree ; - --- A MusicalInstrument which is played by --- blowing it and which uses a reed, or resonator hole as in the case of a flute. -fun WindInstrument : Class ; -fun WindInstrument_Class : SubClass WindInstrument MusicalInstrument ; - --- Windmill is the subclass of Engines that --- produce mechanical power from Wind energy. -fun Windmill : Class ; -fun Windmill_Class : SubClass Windmill Engine ; - --- An Artifact composed of transparent material --- that admits light (and possibly air) into a Room, Building --- or Vehicle. -fun Window : Class ; -fun Window_Class : SubClass Window Artifact ; - --- An Artifact that is used to cover --- Windows. Note that this class includes blinds, drapes, shutters, --- etc. -fun WindowCovering : Class ; -fun WindowCovering_Class : SubClass WindowCovering Artifact ; - --- Any VehicleWindow which located at the front --- of an Automobile. -fun Windshield : Class ; -fun Windshield_Class : SubClass Windshield VehicleWindow ; - --- An AlcoholicBeverage that is prepared by fermenting --- the juice of grapes. -fun Wine : Class ; -fun Wine_Class : SubClass Wine AlcoholicBeverage ; - --- Any Limb which is capable of being an --- instrument in Flying. -fun Wing : Class ; -fun Wing_Class : SubClass Wing Limb ; - --- The wings of Aircraft, i.e. the parts of Aircraft --- that allow them to become and remain airborne. -fun WingDevice : Class ; -fun WingDevice_Class : SubClass WingDevice EngineeringComponent ; - --- Any instance of ClosingEyes which is intended to --- express something to someone else. -fun Winking : Class ; -fun Winking_Class : SubClass Winking (both ClosingEyes Gesture) ; - - --- The SeasonOfYear that begins at the winter --- solstice and ends at the spring equinox. -fun WinterSeason : Class ; -fun WinterSeason_Class : SubClass WinterSeason SeasonOfYear ; - --- A long, thin strand of Metal that is used in a wide --- range of applications, including the wiring of electrical systems, creating --- bundles and the construction of cages. -fun Wire : Class ; -fun Wire_Class : SubClass Wire Artifact ; - --- A Wire that is designed for conducting electricity. -fun WireLine : Class ; -fun WireLine_Class : SubClass WireLine (both EngineeringComponent Wire) ; - - --- An EngineeringComponent consisting of a coil of --- Wire that returns to its original shape when pulled apart or pressed together. -fun WireSpring : Class ; -fun WireSpring_Class : SubClass WireSpring (both EngineeringComponent Wire) ; - - --- The ContestAttribute that applies to a Contest --- participant who has won the Contest. -fun Won : Ind ContestAttribute ; - - --- Tissue that comprises the inner trunk of Trees. --- It is often used in constructing Buildings and other Artifacts. --- Wood is the principal substance making up a tree, and is distinguished from the --- bark, roots, flowers, seeds, fruit and leaves. -fun Wood : Class ; -fun Wood_Class : SubClass Wood (both PlantSubstance Tissue) ; - - --- Wood that has been cut (and perhaps treated) for --- some purpose, e.g. Constructing or Combustion. Note that this class covers --- both lumber and firewood. -fun WoodArtifact : Class ; -fun WoodArtifact_Class : SubClass WoodArtifact Artifact ; - --- Fabric that is made from the Hair of Sheep. -fun Wool : Class ; -fun Wool_Class : SubClass Wool Fabric ; - --- Sterile members of an Insect colony which --- are responsible for locating food and caring for eggs, larvae, etc. -fun WorkerInsect : Class ; -fun WorkerInsect_Class : SubClass WorkerInsect Insect ; - --- Any FinancialTransaction where someone exchanges --- his/her labor for an instance of CurrencyMeasure. -fun Working : Class ; -fun Working_Class : SubClass Working FinancialTransaction ; - --- A Room, suite of Rooms or Building which is --- devoted to hand_crafting Artifacts. -fun Workshop : Class ; -fun Workshop_Class : SubClass Workshop StationaryArtifact ; - --- The joint in the Arm connecting the radius and carpal --- bones. -fun Wrist : Class ; -fun Wrist_Class : SubClass Wrist BodyJoint ; - --- A Device whose purpose is to be an instrument --- of Writing, e.g. pens, pencils, crayons, etc. -fun WritingDevice : Class ; -fun WritingDevice_Class : SubClass WritingDevice Device ; - --- Any LinguisticCommunication where the --- instrument is a Text, e.g. a letter, an email, a memo, etc. -fun WrittenCommunication : Class ; -fun WrittenCommunication_Class : SubClass WrittenCommunication LinguisticCommunication ; - --- Electro_magnetic radiation of short wavelength, --- often made use of by devices that scan the inside of objects. -fun XRayRadiation : Class ; -fun XRayRadiation_Class : SubClass XRayRadiation Radiating ; - --- English unit of length, equal to 3 FeetLength. -fun YardLength : Ind UnitOfLength ; - - --- (address ?AGENT ?ADDRESS) means that ?ADDRESS --- is an address or part of an address for the Agent ?AGENT. -fun address : El Agent -> El Address -> Formula ; - - -fun affiliatedOrganization : El Organization -> El Organization -> Formula ; - --- (alias ?STRING ?AGENT) means that ?STRING is an --- alternate identifier for ?AGENT, and is likely being used to hide or --- obscure ?AGENT's true identity. -fun alias : El SymbolicString -> El Agent -> Formula ; - - --- (allegiance ?AGENT ?ENTITY) means that the CognitiveAgent --- ?AGENT owes its allegiance to the political entity ?ENTITY. -fun allegiance : El CognitiveAgent -> El CognitiveAgent -> Formula ; - - --- (ancestorOrganization ?ORG1 ?ORG2) means that --- the Organization ?ORG1 descended from the Organization ?ORG2. -fun ancestorOrganization : El Organization -> El Organization -> Formula ; - - --- (anniversary ?PHYSICAL ?TIME) means that --- ?TIME is the class of TimeIntervals which mark the anniversary of --- ?PHYSICAL. For example, (anniversary Christmas (DayFn 35 December)) --- means that Christmas is celebrated each year on the 25th of December. -fun anniversary : El Physical -> El TimeInterval -> Formula ; - - --- (areaOfResponsibility --- ?AGENT ?PROCESS_TYPE ?AREA) means that ?AGENT (typically an --- instance of Organization) is responsible or accountable for --- actions or undertakings of type ?PROCESS_TYPE in the --- GeographicArea denoted by ?AREA. -fun areaOfResponsibility : El Agent -> Desc Process -> El GeographicArea -> Formula ; - - --- (arrested ?EVENT ?AGENT) means that during ?EVENT, ?AGENT is --- taken into custody, typically by a representative of a law --- enforcement organization. -fun arrested : El PlacingUnderArrest -> El Agent -> Formula ; - - --- (aunt ?AUNT ?PERSON) means that ?AUNT is --- the sister of a parent of ?PERSON. -fun aunt : El Woman -> El Human -> Formula ; - - --- (axis ?A ?OBJ) means that a part ?A of an Object ?OBJ --- is the axis of rotation in a Rotating. -fun axis : El Object -> El Object -> Formula ; - - --- (benefits ?PROCESS ?AGENT) means that --- ?AGENT somehow derives benefit as a result of ?PROCESS. This is --- a very general relation, and does not entail that ?AGENT is a --- participant in ?PROCESS. -fun benefits : El Process -> El Agent -> Formula ; - - --- (birthdate ?PERSON ?DAY) means that ?DAY is the --- Day on which the ?PERSON was born. -fun birthdate : El Human -> El Day -> Formula ; - - --- (birthday ?PERSON ?DAY) means that ?DAY is the --- anniversary each year of the birth of ?PERSON. For example, (birthday --- WilliamJeffersonClinton (DayFn 19 August)) means that Bill Clinton's --- birthday is August 19th. -fun birthday : El Human -> El Day -> Formula ; - - --- (birthplace ?INDIV ?PLACE) means that the Animal ?INDIV was born --- at the location ?PLACE. The location may be a geographic area or a building, such as a hospital. -fun birthplace : El Animal -> El Object -> Formula ; - - --- (brandName ?NAME ?PRODUCT) means that ?NAME --- is the brand name for the product class ?PRODUCT, e.g. Cheerios is the --- brand name for a certain class of breakfast cereal. -fun brandName : El SymbolicString -> El Product -> Formula ; - - --- (capacity ?OBJ ?QUANTITY) means that ?OBJ can contain --- something that has the measure of ?QUANTITY. This predicate denotes maximal --- capacity, i.e. ?OBJ can hold no more than ?QUANTITY. Note, however, that this --- does not mean that capacity is a SingleValuedRelation, since an object may --- have various maximal capacities across different dimensions, e.g. a particular --- box may have a capacity of 3 pounds and a capacity of 1 liter. -fun capacity : El SelfConnectedObject -> El ConstantQuantity -> Formula ; - - --- (cargo ?EVENT ?OBJ) means that --- ?OBJ is transported as cargo in the Shipping event --- ?EVENT. -fun cargo : El Shipping -> El Object -> Formula ; - - --- (changesLocation ?EVENT --- ?OBJECT) means that during the Translocation event ?EVENT, --- ?OBJECT's location changes. ?OBJECT might also be the agent, --- patient, or experiencer of ?EVENT. -fun changesLocation : El Translocation -> El Object -> Formula ; - - --- (cityAddress ?CITY ?ADDRESS) means that the --- City ?CITY is part of the address ?ADDRESS. -fun cityAddress : El City -> El Address -> Formula ; - - --- (holdsDuring ?T1 (cohabitant ?H1 ?H2)) --- means that during the time ?T1, ?H1 and ?H2 have the same home. -fun cohabitant : El Human -> El Human -> Formula ; - - --- (conjugate ?COMPOUND1 ?COMPOUND2) means that --- ?COMPOUND1 and ?COMPOUND2 are identical CompoundSubstances except that --- one has one more Proton than the other. -fun conjugate : El CompoundSubstance -> El CompoundSubstance -> Formula ; - - --- (contestParticipant ?CONTEST ?AGENT) --- means that ?AGENT is one of the sides in the Contest ?CONTEST. For --- example, if the ?CONTEST is a football game, then ?AGENT would be one of --- the opposing teams. For another example, if ?CONTEST is a Battle, then --- ?AGENT would be one of the sides fighting each other. -fun contestParticipant : El Contest -> El Agent -> Formula ; - - --- (controlled ?EVENT ?OBJECT) means that during the --- AchievingControl denoted by ?EVENT, ?OBJECT comes to be --- physically controlled by an Agent. -fun controlled : El AchievingControl -> El Object -> Formula ; - - --- (conveyance ?EVENT ?OBJ) means that --- ?OBJ is the Vehicle or other transportation device used in --- ?EVENT. -fun conveyance : El Transportation -> El TransportationDevice -> Formula ; - - --- (cousin ?PERSON1 ?PERSON2) means that ?PERSON1 --- and ?PERSON2 are cousins, i.e. ?PERSON1 and ?PERSON2 have grandparents --- (but not parents) in common. -fun cousin : El Human -> El Human -> Formula ; - - --- (holdsDuring ?T1 (coworker ?H1 ?H2)) means --- that during time ?T1, ?H1 and ?H2 are both employed by the same agent, are --- of roughly the same job status, and come into contact at least part of the --- time at the same work location. -fun coworker : El Human -> El Human -> Formula ; - - --- (birthdate ?PERSON ?DAY) means that ?DAY is the --- Day on which the ?PERSON died. -fun deathdate : El Human -> El Day -> Formula ; - - --- (deathplace ?INDIV ?PLACE) means that the Animal ?INDIV died --- at the location ?PLACE. The location may be a geographic area or a building, such as a hospital. -fun deathplace : El Animal -> El Object -> Formula ; - - --- (deceptiveIdentifier ?OBJ ?AGENT) --- means that ?AGENT presents ?OBJ as a representation of ?AGENT's `true' --- identity, when in fact it is not. -fun deceptiveIdentifier : El ContentBearingObject -> El Agent -> Formula ; - - --- (defendant ?AGENT ?ACTION) means the LegalAction --- ?ACTION makes a legal claim against ?AGENT. -fun defendant : El CognitiveAgent -> El LegalAction -> Formula ; - - --- (detainee ?EVENT ?OBJECT) means that in the --- Confining ?EVENT, the Object ?OBJECT is restrained by force, threat, or --- other form of intimidation. -fun detainee : El Confining -> El Animal -> Formula ; - - --- (deviceState ?DEVICE ?STATE) means that --- the Object ?DEVICE is in the DeviceStateAttribute ?STATE. -fun deviceState : El Object -> El DeviceStateAttribute -> Formula ; - - --- (disapproves ?AGENT ?FORMULA) means that --- ?AGENT has a feeling of antipathy to the state of affairs represented by --- ?FORMULA, i.e. ?AGENT believes that the realization of ?FORMULA will --- thwart one of his/her goals. Note that there is no implication that what --- is disapproved of by an agent is not already true. -fun disapproves : El CognitiveAgent -> Formula -> Formula ; - - --- (dislikes ?AGENT ?OBJECT) means that ?AGENT has a --- feeling of antipathy to ?OBJECT, i.e. ?AGENT believes that ?OBJECT will --- thwart one of his/her goals. Note that there is no implication that what --- is hated by an agent is not already possessed by the agent. -fun dislikes : El CognitiveAgent -> El Object -> Formula ; - - --- (distanceOnPath ?DIST --- ?PATH) means that for a given path (which is a pathInSystem) that the --- distance of the route is the measurement ?DIST. distanceOnPath (distanceOnPath ?DIST ?PATH) means that for a given path (which is a --- pathInSystem) that the distance of the route is the measurement ?DIST. -fun distanceOnPath : El ConstantQuantity -> El Transitway -> Formula ; - - --- (holdsDuring ?T1 --- (domesticPartner ?H1 ?H2)) means that during the time ?T1, ?H1 --- and ?H2 live together and share a common domestic life but are --- not joined in a traditional marriage, a common_law marriage, or a --- civil union. -fun domesticPartner : El Human -> El Human -> Formula ; - - --- (doubts ?AGENT ?FORMULA) means that ?AGENT is unsure --- about the truth of ?FORMULA, in particular ?AGENT does not believe that --- ?FORMULA is true. -fun doubts : El CognitiveAgent -> Formula -> Formula ; - - --- Models the effective range of some --- device that is able to move by itself (like vehicles, rockets and so --- on) or move other things (like weapons). -fun effectiveRange : El Device -> El LengthMeasure -> Formula ; - - --- (electronNumber ?SUBSTANCE ?NUMBER) means that --- the PureSubstance ?SUBSTANCE has the number of Electrons ?NUMBER. -fun electronNumber : El PureSubstance -> El PositiveInteger -> Formula ; - - --- (enjoys ?AGENT ?PROCESS) means that the --- CognitiveAgent ?AGENT tends to enjoy actions of type ?PROCESS, --- i.e. tends to enjoy being the agent or experiencer of such --- actions. -fun enjoys : El CognitiveAgent -> El IntentionalProcess -> Formula ; - - --- (equipmentCount ?OBJECT ?TYPE ?QUANTITY) means that ?OBJECT --- is equipped with devices of the type ?TYPE, in the number ?QUANTITY. --- Equipment associated with an ?OBJECT may be a component of ?OBJECT --- (such as the emergency oxygen system built into passenger jets) or it may --- be a device simply located on or with ?OBJECT (such as a first aid kit). -fun equipmentCount : El Object -> Desc Device -> El Quantity -> Formula ; - - --- (equipmentType ?THING ?TYPE) means that --- the Artifact ?THING has a component or attachment of Device ?TYPE. --- See also equipmentTypeCount. -fun equipmentType : El Artifact -> El Device -> Formula ; - - --- Any belief about the future. (expects --- ?AGENT ?BELIEF) means that (believes ?AGENT ?BELIEF) and, if --- ?BELIEF happens, it will happen in the future, i.e. after the --- expectation. -fun expects : El CognitiveAgent -> Formula -> Formula ; - - --- (experimentalControl ?EXPERIMENT ?OBJ) --- means that the Object ?OBJ serves as a control in the instance of --- Experimenting ?EXPERIMENT, i.e. ?OBJ is the standard against which something --- else in the experiment can be compared. -fun experimentalControl : El Experimenting -> El Object -> Formula ; - - --- (familyName ?STRING --- ?HUMAN) means that the SymbolicString ?STRING denotes a non_optional --- name that ?HUMAN has inherited by virtue of being born into a --- particular family (kin group). surname is another word for this type --- of name. Cf. givenName. -fun familyName : El SymbolicString -> El Human -> Formula ; - - --- (fears ?AGENT ?FORMULA) means that ?AGENT fears that --- the proposition ?FORMULA will be true, i.e. he/she believes that it will --- come to pass in the future and that it will be undesirable for ?AGENT. -fun fears : El CognitiveAgent -> Formula -> Formula ; - - --- A formal banking, brokerage, or business --- relationship established to provide for regular services, dealings, and --- other financial transactions. (financialAccount ?ACCOUNT ?ORG) means that --- ?ACCOUNT is a financial account opened at the FinancialCompany --- ?ORG. -fun financialAccount : El FinancialAccount -> El FinancialCompany -> Formula ; - - --- A predicate that relates an Agent to any --- item of economic value owned by the Agent. Examples of financial assets --- are cash, securities, accounts receivable, inventory, office equipment, a --- house, a car, and other property. -fun financialAsset : El Agent -> El Object -> Formula ; - - --- (formerName ?NAME ?THING) means that the --- string ?NAME is a name formerly used for ?THING. -fun formerName : El Entity -> El Entity -> Formula ; - - --- (holdsDuring ?T1 (friend ?H1 ?H2)) means that --- during time ?T1, ?H1 and ?H2 know each other, share a relationship of --- mutual care and concern, and probably also share some common interests. -fun friend : El Human -> El Human -> Formula ; - - --- (gainsControl ?EVENT ?AGENT) means that during ?EVENT, ?AGENT --- gains control of the patient (object). -fun gainsControl : El AchievingControl -> El Agent -> Formula ; - - --- (givenName ?STRING ?HUMAN) --- means that ?STRING is a name selected for ?HUMAN, usually from among --- many options, as opposed to a mandatory name (cf. familyName) that --- ?HUMAN has inherited by virtue of being born into a certain kin group, --- caste, or occupation. -fun givenName : El SymbolicString -> El Human -> Formula ; - - --- (grammaticalRelation ?PHRASE ?SENTENCE) --- means that the Phrase ?PHRASE has a grammatical relation to the Sentence --- ?SENTENCE, i.e. it is a subject, object, main verb, etc. of the ?SENTENCE. -fun grammaticalRelation : El Phrase -> El Sentence -> Formula ; - - --- (grandfather ?PERSON ?PARENT) means that --- ?PARENT is the grandfather of ?PERSON. -fun grandfather : El Human -> El Man -> Formula ; - - --- (grandmother ?PERSON ?PARENT) means that --- ?PARENT is the grandmother of ?PERSON. -fun grandmother : El Human -> El Woman -> Formula ; - - --- (grandparent ?YOUNGER ?OLDER) means that --- ?OLDER is a parent of ?YOUNGER's parent. -fun grandparent : El Human -> El Human -> Formula ; - - --- A subrelation of member, groupMember --- is used to relate a Human to a GroupOfPeople of which he/she is a --- member. -fun groupMember : El Human -> El GroupOfPeople -> Formula ; - - --- (half ?HALF ?WHOLE) means that ?HALF is one half --- of ?WHOLE. -fun half : El Object -> El Object -> Formula ; - - --- (hasExpertise ?PERSON ?FIELD) means that ?PERSON has --- studied the FieldOfStudy ?FIELD and is regarded as an expert. -fun hasExpertise : El Human -> El FieldOfStudy -> Formula ; - - --- (hasOccupation ?PERSON ?WORK) means that ?PERSON --- engages in activities of the class ?WORK as a means of earning a living. -fun hasOccupation : El Human -> Desc IntentionalProcess -> Formula ; - - --- (headquartersOfOrganization ?ORG ?AREA) --- means that the Organization ?ORG is headquartered in ?AREA. -fun headquartersOfOrganization : El Organization -> El GeopoliticalArea -> Formula ; - - --- (hopes ?AGENT ?FORMULA) means that ?AGENT hopes that --- the proposition ?FORMULA will be true, i.e. he/she believes that it will --- come to pass in the future and that it will be desirable for ?AGENT. -fun hopes : El CognitiveAgent -> Formula -> Formula ; - - --- (hostileForces ?UNIT1 ?UNIT2) means that --- the MilitaryUnits ?UNIT1 and ?UNIT2 are, respectively, allied with --- GeopoliticalAreas that are at war with one another. -fun hostileForces : El MilitaryUnit -> El MilitaryUnit -> Formula ; - - --- (humanCapacity ?CONSTRUCT ?NUMBER) means that the --- StationaryArtifact ?CONSTRUCT, e.g. a Building or a Room, can hold a maximum --- of ?NUMBER Humans without crowding. -fun humanCapacity : El StationaryArtifact -> El PositiveInteger -> Formula ; - - --- (ideologicalAffiliationOfOrganization --- ?ORG ?GOV) means that one of the goals of ?ORG is to realize the FormOfGovernment ?GOV. -fun ideologicalAffiliationOfOrganization : El Organization -> El FormOfGovernment -> Formula ; - - --- Every instance of the first argument is initially --- found as part of an instance of the second argument, even though it --- might lose that part later in its lifetime. While the part must initially --- exist as part of a whole, this does not say that each whole necessarily initially --- contains such a part. For example, a thumb must at some time have been --- part of a hand, but every hand need not have a thumb, even at birth. This --- is a class_level relation roughly corresponding to part. -fun initialPart : Desc Object -> Desc Object -> Formula ; - - --- Every instance of the second argument initially --- contains an instance of the first argument, even though it --- might lose that part later in its lifetime. Every normal human starts life with an --- appendix for example. While the whole must initially --- contain such a part, this does not say that each part necessarily initially --- exists as part of such a whole. This is a class_level relation roughly --- corresponding to part. -fun initiallyContainsPart : Desc Object -> Desc Object -> Formula; - - --- (intelligenceQuotient ?PERSON ?NUMBER) --- means that ?NUMBER is the I.Q. of ?PERSON. The I.Q. of a person is the ratio --- of their mental age (determined by a standardized test) divided by their --- chronological age, multiplied by 100. -fun intelligenceQuotient : El Human -> El RationalNumber -> Formula ; - - --- (inventory ?CBO ?COLLECTION) means that --- the ContentBearingObject ?CBO contains a list or enumeration of the --- members of the Collection ?COLLECTION. -fun inventory : El ContentBearingObject -> El Collection -> Formula ; - - --- (lacks ?AGENT ?OBJECT) means that ?AGENT needs --- ?OBJECT and it is not currently the case that ?AGENT possesses ?OBJECT. -fun lacks : El CognitiveAgent -> El Physical -> Formula ; - - --- (landlord ?PERSON ?UNIT) means that ?PERSON is a --- landlord of the Residence ?UNIT, i.e. he or she owns ?UNIT and is renting --- the unit to someone else. -fun landlord : El Agent -> El PermanentResidence -> Formula ; - - --- (holdsDuring ?T1 (legalGuardian ?H1 --- ?H2)) means that during the time ?T1, ?H2 has legal authority over --- ?H1, and is responsible for looking after ?H1's interests. -fun legalGuardian : El Human -> El Human -> Formula ; - - --- (localLongName ?NAME ?THING) means that --- the string ?NAME is the long form of the name used for ?THING in its local --- area or language. -fun localLongName : El SymbolicString -> El Entity -> Formula ; - - --- (localShortName ?NAME ?THING) means that --- the string ?NAME is the short form of the name used for ?THING in its --- local area or language. -fun localShortName : El SymbolicString -> El Entity -> Formula ; - - --- (locatedAtTime ?OBJ ?TIME ?PLACE) means --- that during the time specified by ?TIME, ?OBJ was in the location --- specified by ?PLACE. -fun locatedAtTime : El Object -> El TimePosition -> El Object -> Formula ; - - --- (losesControl ?EVENT ?AGENT) means that during ?EVENT, ?AGENT --- loses physical control of the controlled object. -fun losesControl : El ChangeOfControl -> El Agent -> Formula ; - - --- The amount by which the cost of an investment or --- business operation exceeds its return, i.e. the negative quantity left --- after subtracting for all expenses. -fun loss : El FinancialTransaction -> El CurrencyMeasure -> Formula; - - --- (measurementReading ?DEVICE ?QUANTITY) --- means that ?QUANTITY is a reading of the MeasuringDevice ?DEVICE, e.g. if --- ?THERMOMETER is a Thermometer, (measurementReading ?THERMOMETER --- (MeasureFn 42 CelsiusDegree)) would mean that ?THERMOMETER registers 42 --- degrees Celsius. -fun measurementReading : El MeasuringDevice -> El ConstantQuantity -> Formula ; - - --- (meatOfAnimal ?MEATCLASS ?ANIMALCLASS) states --- that ?MEATCLASS was once part of the class of Animal ?ANIMALCLASS) -fun meatOfAnimal : Desc Meat -> Desc Animal -> Formula ; - - --- A relation between a Human and a --- CareOrganization that treats the patient. -fun medicalPatient : El Human -> El CareOrganization -> Formula ; - - --- (memberAtTime ?MEMBER ?COLLECTION --- ?TIME) means that during the time period denoted by ?TIME, --- ?MEMBER is a member of ?COLLECTION. -fun memberAtTime : El SelfConnectedObject -> El Collection -> El TimePosition -> Formula ; - - --- (memberCount ?ORG ?NUMBER) means that there --- is a total ?NUMBER of members in the Collection ?ORG. -fun memberCount : El Collection -> El Integer -> Formula ; - - --- (memberType ?GROUP ?TYPE) means that all --- the members of the Collection ?GROUP belong to the SetOrClass --- ?TYPE. -fun memberType : El Collection -> El SetOrClass -> Formula ; - - --- (memberTypeCount ?GROUP ?TYPE ?NUMBER) means that the --- Collection ?GROUP has ?NUMBER members of the kind ?TYPE. -fun memberTypeCount : El Collection -> El SetOrClass -> El NonnegativeInteger -> Formula ; - - --- (middleName ?CHAR ?INDIV) means that the --- SymbolicString ?CHAR contains the middle name of the Human ?INDIV. -fun middleName : El SymbolicString -> El Human -> Formula ; - - --- (monetaryWage ?ORG ?PERSON ?TIME ?MONEY) means --- that the Organization employs ?PERSON and pays him/her the amount of money --- ?MONEY per TimeDuration ?TIME. -fun monetaryWage : El Organization -> El Human -> El TimeDuration -> El CurrencyMeasure -> Formula ; - - --- (most ?MOST ?WHOLE) means that ?MOST is a part --- of ?WHOLE that is greater than half of ?WHOLE. -fun most : El Object -> El Object -> Formula ; - - --- (moves ?MOTION ?OBJECT) means that during --- the Motion event ?MOTION, ?OBJECT moves. This does not --- necessarily imply that the location of ?OBJECT changes during --- ?MOTION. See also changesLocation and Translocation. -fun moves : El Motion -> El Object -> Formula ; - - --- (mutualStranger ?H1 ?H2) means that ?H1 --- and ?H2 have not met each other and do not know each other. Statements --- made with this predicate should be temporally specified with --- holdsDuring. See also the weaker, non_symmetric version of this --- predicate, stranger. -fun mutualStranger : El Human -> El Human -> Formula ; - - --- (neighbor ?PERSON1 ?PERSON2) means that ?PERSON1 is --- a neighbor of ?PERSON2, i.e. ?PERSON1 and ?PERSON2 have their homes Near --- one another. -fun neighbor : El Human -> El Human -> Formula ; - - --- (nephew ?NEPHEW ?PERSON) means that ?NEPHEW is --- the son of a sibling of ?PERSON. -fun nephew : El Man -> El Human -> Formula ; - - --- (niece ?NIECE ?PERSON) means that ?NIECE is --- the daughter of a sibling of ?PERSON. -fun niece : El Woman -> El Human -> Formula ; - - --- (occupation ?PERSON ?TYPE) means that the occupation --- of ?PERSON is ?TYPE. This predicate is most often used in combination with the --- function OccupationFn, e.g. (occupation PoliceOfficerWilkins (OccupationFn --- LawEnforcement)). -fun occupation : El Human -> El FinancialTransaction -> Formula ; - - --- (older ?OBJ1 ?OBJ2) means that ?OBJ1 is older than --- ?OBJ2, i.e. the age of ?OBJ1 is greaterThan the age of ?OBJ2. -fun older : El Object -> El Object -> Formula ; - - --- (onboard ?OBJ ?VEHICLE) means that the --- SelfConnectedObject ?OBJ is inside the Vehicle ?VEHICLE. -fun onboard : El SelfConnectedObject -> El Vehicle -> Formula ; - - --- (operator ?OBJECT ?AGENT) means that ?AGENT --- determines how ?OBJECT is used, either by directly or indirectly operating --- it. -fun operator : El Object -> El Agent -> Formula ; - - --- (parasite ?ORGANISM1 ?ORGANISM2) means that there --- is a parasitic relationship between ?ORGANISM1 and ?ORGANISM2, i.e. ?ORGANISM1 --- inhabits and obtains nourishment from ?ORGANISM2 in such a way that --- ?ORGANISM2 is injured. -fun parasite : El Organism -> El Organism -> Formula ; - - --- (pathInSystem ?PATH ?SYSTEM) means that --- the Physical thing ?PATH consists of one or more connected routes in --- the PhysicalSystem ?SYSTEM. -fun pathInSystem : El Transitway -> El TransitSystem -> Formula ; - - --- The relation of receiving medical care --- from a recognized medical practitioner. (patientMedical ?PATIENT --- ?DOCTOR) means that ?PATIENT is the patient of ?DOCTOR. Note that --- argument type restriction on the second argument is CognitiveAgent --- to allow for cases where someone is the patient of an Organization, --- viz. a CareOrganization. -fun patientMedical : El Human -> El CognitiveAgent -> Formula ; - - --- (plaintiff ?ACTION ?AGENT) means that ?AGENT --- is responsible for initiating the LegalAction ?ACTION. -fun plaintiff : El LegalAction -> El CognitiveAgent -> Formula ; - - --- (postalBoxNumber ?NUMBER ?ADDRESS) means --- that the post office box ?NUMBER is part of the address ?ADDRESS. -fun postalBoxNumber : El PositiveInteger -> El Address -> Formula ; - - --- (postalCode ?NUMBER ?ADDRESS) means that the --- the postal code, e.g. zip code, ?NUMBER is part of the address ?ADDRESS. -fun postalCode : El PositiveInteger -> El Address -> Formula ; - - --- (potentialOfHydrogen ?SOLUTION ?NUMBER) --- means that the Solution ?SOLUTION has a pH value of ?NUMBER. The ph varies --- between 0 and 14, and it is a measure of the acidity or alkalinity of ?SOLUTION. --- More precisely, and it is the logarithm of the reciprocal of the quantity of --- AtomGrams of Hydrogen ions. -fun potentialOfHydrogen : El Solution -> El RealNumber -> Formula ; - - --- (powerPlant ?GENERATOR ?THING) means that --- the Device ?GENERATOR is the power_producing component of the Artifact --- ?THING which provides the energy for its operation. -fun powerPlant : El Device -> El Artifact -> Formula ; - - --- (protonNumber ?SUBSTANCE ?NUMBER) means that --- the PureSubstance ?SUBSTANCE has the number of Protons ?NUMBER. -fun protonNumber : El PureSubstance -> El PositiveInteger -> Formula ; - - --- (quarter ?QUART ?WHOLE) means that ?QUART is a --- quarter of ?WHOLE. -fun quarter : El Object -> El Object -> Formula ; - - --- (reactant ?PROCESS ?SUBSTANCE) means that ?SUBSTANCE --- is a chemical reactant in the chemical reaction ?PROCESS, i.e. ?SUBSTANCE is --- present at the beginning of the chemical reaction ?PROCESS. -fun reactant : El ChemicalProcess -> El Substance -> Formula ; - - --- (reagent ?PROCESS ?SUBSTANCE) means that ?SUBSTANCE --- is a chemical agent in the chemical reaction ?PROCESS. -fun reagent : El ChemicalProcess -> El Substance -> Formula ; - - --- (registeredItem ?DOCUMENT ?ITEM) means --- that the Text ?DOCUMENT contains an official record of the Physical --- thing ?ITEM. The registered item could be an object or an event, e.g., --- an automobile, a ship, a marriage, an adoption. -fun registeredItem : El Text -> El Physical -> Formula ; - - --- (religiousAffiliationOfOrganization --- ?ORG ?BELIEF) means that one of the goals of ?ORG is to advance the religious teachings --- of the BeliefGroup ?BELIEF. -fun religiousAffiliationOfOrganization : El Organization -> El BeliefGroup -> Formula ; - - --- (routeInSystem ?PART ?SYSTEM) means that --- the Transitway ?PART is an established route of the --- TransportationSystem ?SYSTEM. -fun routeInSystem : El Transitway -> El TransitSystem -> Formula ; - - --- (secretesSubstance ?OBJ ?STUFF) means --- that the subclass of OrganicObject (either Organism or BodyPart) --- ?OBJ produces the subclass of Substance ?STUFF. -fun secretesSubstance : Desc OrganicObject -> Desc NaturalSubstance -> Formula ; - - --- (sententialObject ?OBJECT ?SENTENCE) --- means that the NounPhrase ?OBJECT is the object of the Sentence --- ?SENTENCE. -fun sententialObject : El NounPhrase -> El Sentence -> Formula ; - - --- (sententialSubject ?SUBJECT ?SENTENCE) --- means that the NounPhrase ?SUBJECT is the subject of the Sentence --- ?SENTENCE. -fun sententialSubject : El NounPhrase -> El Sentence -> Formula ; - - --- (serviceProvider ?EVENT ?AGENT) --- means that ?AGENT is the supplier of the service provided in --- ?EVENT. -fun serviceProvider : El ServiceProcess -> El CognitiveAgent -> Formula ; - - --- (serviceRecipient ?EVENT ?AGENT) means that ?AGENT is the --- receiver of the service provided in ?EVENT. -fun serviceRecipient : El ServiceProcess -> El CognitiveAgent -> Formula ; - - --- (sideOfFigure ?SIDE ?FIGURE) means that the --- OneDimensionalFigure ?POINT is a side of the GeometricFigure ?FIGURE. -fun sideOfFigure : El OneDimensionalFigure -> El GeometricFigure -> Formula ; - - --- (sliceOfFigure ?SLICE ?FIGURE) indicates --- that ?SLICE is a 2_d section of the 3_d figure ?FIGURE. Or, more --- formally, ?SLICE is 2_d figure formed by the intersection of a plane --- with the 3_d figure ?FIGURE. -fun sliceOfFigure : El TwoDimensionalObject -> El CorpuscularObject -> Formula ; - - --- A relation between a Process of --- MusicalTone and the fundamental frequency of that tone. -fun soundFrequency : El MusicalTone -> El FunctionQuantity -> Formula ; - - --- (speaksLanguage ?AGENT ?LANGUAGE) means that the --- SentientAgent ?AGENT is capable of understanding and/or generating the Language --- ?LANGUAGE. -fun speaksLanguage : El SentientAgent -> El Language -> Formula ; - - --- (stepfather ?PERSON ?FATHER) means that ?FATHER --- is the stepfather of ?PERSON, i.e. ?FATHER is the spouse of the mother --- of ?PERSON, without also being the father of ?PERSON. -fun stepfather : El Human -> El Man -> Formula ; - - --- (stepmother ?PERSON ?MOTHER) means that ?MOTHER --- is the stepmother of ?PERSON, i.e. ?MOTHER is the spouse of the father --- of ?PERSON, without also being the mother of ?PERSON. -fun stepmother : El Human -> El Woman -> Formula ; - - --- (stockHolder ?Stock ?Agent) means that --- ?Agent possesses the Stock ?Stock. -fun stockHolder : El Stock -> El CognitiveAgent -> Formula ; - - --- (stranger ?H1 ?H2) means that ?H1 has --- not met ?H2, or, in other words, (not (acquaintance ?H1 --- ?H2)). Statements made with stranger should be temporally --- specified with holdsDuring. Note that stranger is not --- symmetric, meaning that ?H2 might know ?H1. For the symmetric --- version, see mutualStranger. -fun stranger : El Human -> El Human -> Formula ; - - --- (streetAddress ?STREET ?ADDRESS) means --- that the Roadway ?STREET is part of the address ?ADDRESS. -fun streetAddress : El Roadway -> El Address -> Formula ; - - --- (streetNumber ?BUILDING ?ADDRESS) means --- that the Building ?BUILDING is part of the address ?ADDRESS. -fun streetNumber : El Building -> El Address -> Formula ; - - --- (student ?ORG ?AGENT) means that ?AGENT is enrolled --- in the EducationalOrganization ?ORG. -fun student : El EducationalOrganization -> El CognitiveAgent -> Formula ; - - --- (subField ?FIELD1 ?FIELD2) means that ?FIELD1 is a proper --- part of the FieldOfStudy ?FIELD2. For example, Physiology is a subField of --- Biology. -fun subField : El FieldOfStudy -> El FieldOfStudy -> Formula ; - - --- (subordinateInOrganization ?ORG ?PERSON1 ?PERSON2) means that --- in the Organization ?ORG, ?PERSON1 is subordinate to ?PERSON2. -fun subordinateInOrganization : El Organization -> El Human -> El Human -> Formula ; - - --- (subordinatePosition ?ORG ?SUB ?SUPER) means that in --- the Organization ?ORG, the holder of role ?SUB is subordinate to --- the holder of role ?SUPER. -fun subordinatePosition : El Organization -> El Position -> El Position -> Formula ; - - --- (tangent ?LINE ?CIRCLE) means that the straight line --- ?LINE is tangent to the figure ?CIRCLE, i.e. ?LINE touches ?CIRCLE without --- intersecting it. -fun tangent : El OneDimensionalFigure -> El TwoDimensionalObject -> Formula ; - - --- This relation --- identifies the patient in the event that is the object of the --- attack. -fun targetInAttack : El Process -> El Object -> Formula ; - - --- (teacher ?ORG ?AGENT) means that ?AGENT is a --- teacher at the EducationalOrganization ?ORG. -fun teacher : El EducationalOrganization -> El CognitiveAgent -> Formula ; - - --- (telephoneNumber ?NUMBER ?AGENT) means --- that ?NUMBER is a telephone number at which ?AGENT can be regularly contacted. -fun telephoneNumber : El SymbolicString -> El Agent -> Formula ; - - --- (tenant ?PERSON ?UNIT) means that ?PERSON is a tenant --- of the Residence ?UNIT, i.e. he or she is renting the unit. -fun tenant : El Agent -> El Residence -> Formula ; - - --- (third ?THIRD ?WHOLE) means that ?THIRD is one --- third of ?WHOLE. -fun third : El Object -> El Object -> Formula ; - - --- A BinaryPredicate used to --- indicate the title of a ContentBearingPhysical. Note that the --- second argument type restriction is a subclass, rather than an --- instance, of ContentBearingPhysical. Thus, the title --- Murder_on_the_Orient_Express corresponds to a large class of Books, --- and not just to a single copy of the book. -fun titles : El SymbolicString -> El ContentBearingPhysical -> Formula ; - - --- (transported ?EVENT ?OBJ) --- means that ?OBJ is transported (carried/moved to a --- different physical location) in the Transportation --- ?EVENT. -fun transported : El Transportation -> El Object -> Formula ; - - --- An instance of the first argument is typically --- found as part of an instance of the second argument. This is a --- class_level relation roughly corresponding to part. Note that this does --- not imply that such wholes typically have such parts. -fun typicalPart : Desc Object -> Desc Object -> Formula ; - - --- An instance of the second argument typically --- contains an instance of the first argument. This is a --- class_level relation roughly corresponding to part. Note that this does --- not imply that such parts typically have such wholes. -fun typicallyContainsPart : Desc Object -> Desc Object -> Formula ; - - --- (uncle ?UNCLE ?PERSON) means that ?UNCLE is --- the brother of a parent of ?PERSON. -fun uncle : El Man -> El Human -> Formula ; - - --- (unitNumber ?UNIT ?ADDRESS) means that the --- StationaryArtifact ?UNIT is part of the address ?ADDRESS. -fun unitNumber : El StationaryArtifact -> El Address -> Formula ; - - --- (wavelength ?RADIATION ?MEASURE) means that the --- instance of radiation, ?RADIATION, has an average wavelength of ?MEASURE. -fun wavelength : El Radiating -> El LengthMeasure -> Formula ; - - --- (yearOfFounding ?ORG ?NUMBER) means that the Organization --- ?ORG was founded in the year expressed in ?NUMBER. -fun yearOfFounding : El Organization -> El Integer -> Formula ; -} diff --git a/examples/SUMO/Mid_level_ontologyEng.gf b/examples/SUMO/Mid_level_ontologyEng.gf deleted file mode 100644 index b0a8b06d1..000000000 --- a/examples/SUMO/Mid_level_ontologyEng.gf +++ /dev/null @@ -1,1501 +0,0 @@ ---# -path=.:englishExtended -concrete Mid_level_ontologyEng of Mid_level_ontology = MergeEng ** open DictLangEng, DictEng, ParadigmsEng in{ - -lin - --- individual instances : - -Accountant = MassNP (UseN accountant_N) ; -Acre = MassNP (UseN acre_N) ; -Anthropology = MassNP (UseN anthropology_N) ; -Architecture = MassNP (UseN architecture_N) ; -AttorneyGeneral = MassNP (ApposCN (UseN attorney_N) (MassNP (UseN general_N))) ; -Banker = MassNP (UseN banker_N) ; -Biology = MassNP (UseN biology_N) ; -Blind = MassNP (UseN blind_N) ; -BusinessPerson = MassNP (ApposCN (UseN business_N) (MassNP (UseN person_N))) ; -Cancer = MassNP (UseN cancer_N) ; -Carpenter = MassNP (UseN carpenter_N) ; -CenturyDuration = MassNP (ApposCN (UseN century_N) (MassNP (UseN duration_N))) ; -ChemicalEquilibrium = MassNP (AdjCN (PositA chemical_A) (UseN equilibrium_N)) ; -Chemistry = MassNP (UseN chemistry_N) ; -ClericalSecretary = MassNP (AdjCN (PositA clerical_A) (UseN secretary_N)) ; -Coach = MassNP (UseN coach_N) ; -CollegeFreshman = MassNP (ApposCN (UseN college_N) (MassNP (UseN freshman_N))) ; -CollegeJunior = MassNP (ApposCN (UseN college_N) (MassNP (UseN junior_N))) ; -CollegeSenior = MassNP (ApposCN (UseN college_N) (MassNP (UseN senior_N))) ; -CollegeSophomore = MassNP (ApposCN (UseN college_N) (MassNP (UseN sophomore_N))) ; -Comedian = MassNP (UseN comedian_N) ; -CommonEra = MassNP (AdjCN (PositA common_A) (UseN era_N)) ; -ContainerEmpty = MassNP (ApposCN (UseN container_N) (MassNP (UseN empty_N))) ; -Coroner = MassNP (UseN coroner_N) ; -DecadeDuration = MassNP (ApposCN (UseN decade_N) (MassNP (UseN duration_N))) ; -DemocraticParty = MassNP (AdjCN (PositA democratic_A) (UseN party_N)) ; -Dentist = MassNP (UseN dentist_N) ; -Diarrhea = MassNP (UseN diarrhea_N) ; -Diplomat = MassNP (UseN diplomat_N) ; -Dissident = MassNP (UseN dissident_N) ; -Economics = DetCN (DetQuant IndefArt NumPl) (UseN economics_N) ; -Electronics = DetCN (DetQuant IndefArt NumPl) (UseN electronics_N) ; -Engineering = DetCN (DetQuant IndefArt NumPl) (UseN2 (VerbToNounV2 engineer_V2)) ; -FarmHand = MassNP (ApposCN (UseN farm_N) (MassNP (UseN hand_N))) ; -Fever = MassNP (UseN fever_N) ; -FieldOfLaw = AdvNP (MassNP (UseN field_N)) (PrepNP part_Prep (MassNP (UseN law_N))) ; -Fist = MassNP (UseN fist_N) ; -Flat = MassNP (UseN flat_N) ; -Foul = MassNP (UseN foul_N) ; -Functioning = DetCN (DetQuant IndefArt NumSg) (UseN (VerbToNoun function_V)) ; -GovernmentPerson = MassNP (ApposCN (UseN government_N) (MassNP (UseN person_N))) ; -Governor = MassNP (UseN governor_N) ; -Green = MassNP (UseN green_N) ; -Handstand = MassNP (UseN handstand_N) ; -Happiness = MassNP (UseN happiness_N) ; -History = MassNP (UseN history_N) ; -HumanSlave = MassNP (AdjCN (PositA human_A) (UseN slave_N)) ; -Inside = MassNP (UseN inside_N) ; -InteriorDesign = MassNP (AdjCN (PositA interior_A) (UseN design_N)) ; -Kneeling = DetCN (DetQuant IndefArt NumSg) (UseN (VerbToNoun kneel_V)) ; -Knight = MassNP (UseN knight_N) ; -LegislativeBill = MassNP (AdjCN (PositA legislative_A) (UseN bill_N)) ; -LevelShape = MassNP (AdjCN (PositA level_A) (UseN shape_N)) ; -LieutenantGovernor = MassNP (ApposCN (UseN lieutenant_N) (MassNP (UseN governor_N))) ; -LineFormation = MassNP (ApposCN (UseN line_N) (MassNP (UseN formation_N))) ; -Linguistics = DetCN (DetQuant IndefArt NumPl) (UseN linguistics_N) ; -LiquorShot = PPartNP (MassNP (UseN liquor_N)) overshoot_V2 ; -Literature = MassNP (UseN literature_N) ; -Malfunctioning = DetCN (DetQuant IndefArt NumSg) (UseN (VerbToNoun malfunction_V)) ; -Mathematics = DetCN (DetQuant IndefArt NumPl) (UseN mathematics_N) ; -Mayor = MassNP (UseN mayor_N) ; -MedicalScience = MassNP (AdjCN (PositA medical_A) (UseN science_N)) ; -MetricTon = MassNP (AdjCN (PositA metric_A) (UseN ton_N)) ; -Militant = MassNP (UseN militant_N) ; -MilitaryPerson = MassNP (AdjCN (PositA military_A) (UseN person_N)) ; -MilitaryScience = MassNP (AdjCN (PositA military_A) (UseN science_N)) ; -MillenniumDuration = MassNP (ApposCN (UseN millennium_N) (MassNP (UseN duration_N))) ; -Musician = MassNP (UseN musician_N) ; -NaziParty = MassNP (AdjCN (PositA nazi_A) (UseN party_N)) ; -NewsReporter = MassNP (ApposCN (UseN news_N) (MassNP (UseN reporter_N))) ; -Outside = MassNP (UseN outside_N) ; -Page = MassNP (UseN page_N) ; -Philosophy = MassNP (UseN philosophy_N) ; -Physics = DetCN (DetQuant IndefArt NumPl) (UseN physic_N) ; -Physiology = MassNP (UseN physiology_N) ; -Pink = MassNP (UseN pink_N) ; -Plumber = MassNP (UseN plumber_N) ; -PoliticalScience = MassNP (AdjCN (PositA political_A) (UseN science_N)) ; -Pope = MassNP (UseN pope_N) ; -Potter = MassNP (UseN potter_N) ; -PresidentOfTheUnitedStates = AdvNP (MassNP (UseN president_N)) (PrepNP part_Prep (DetCN (DetQuant DefArt NumPl) (AdjCN (PositA united_A) (UseN state_N)))) ; -PrivateDetective = MassNP (AdjCN (PositA private_A) (UseN detective_N)) ; -Psychology = MassNP (UseN psychology_N) ; -Purple = MassNP (UseN purple_N) ; -RepublicanParty = MassNP (AdjCN (PositA republican_A) (UseN party_N)) ; -RoundShape = MassNP (AdjCN (PositA round_A) (UseN shape_N)) ; -SecretaryOfTheInterior = AdvNP (MassNP (UseN secretary_N)) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (UseN interior_N))) ; -SecretaryOfTheTreasury = AdvNP (MassNP (UseN secretary_N)) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (UseN treasury_N))) ; -Splitting = DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 split_V2)) ; -SportsOut = AdvNP (DetCN (DetQuant IndefArt NumPl) (UseN sport_N)) out_Adv ; -SquareMile = MassNP (AdjCN (PositA square_A) (UseN mile_N)) ; -SquareYard = MassNP (AdjCN (PositA square_A) (UseN yard_N)) ; -StoreOwner = MassNP (ApposCN (UseN store_N) (MassNP (UseN owner_N))) ; -Student = MassNP (UseN student_N) ; -Surprise = MassNP (UseN surprise_N) ; -SymmetricShape = MassNP (AdjCN (PositA symmetric_A) (UseN shape_N)) ; -Teacher = MassNP (UseN teacher_N) ; -Theology = MassNP (UseN theology_N) ; -TieScore = MassNP (ApposCN (UseN tie_N) (MassNP (UseN score_N))) ; -TonMass = MassNP (ApposCN (UseN ton_N) (MassNP (UseN mass_N))) ; -Tourist = MassNP (UseN tourist_N) ; -Tuberculosis = MassNP (UseN tuberculosis_N) ; -Unhappiness = MassNP (UseN unhappiness_N) ; -UnitedStatesCongress = DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN congress_N)))) ; -UnitedStatesDepartmentOfInterior = AdvNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN department_N))))) (PrepNP part_Prep (MassNP (UseN interior_N))) ; -UnitedStatesDepartmentOfState = AdvNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA united_A) (ApposCN (UseN state_N) (MassNP (UseN department_N))))) (PrepNP part_Prep (MassNP (UseN state_N))) ; -Veteran = MassNP (UseN veteran_N) ; -YardLength = MassNP (ApposCN (UseN yard_N) (MassNP (UseN length_N))) ; -Drunk = MassNP (UseN drunk_N) ; -InternationalLaw = MassNP (AdjCN (PositA international_A) (UseN law_N)) ; -MarriageContract = MassNP (ApposCN (UseN marriage_N) (MassNP (UseN contract_N))) ; -Treaty = MassNP (UseN treaty_N) ; -Satisfaction = MassNP (UseN satisfaction_N) ; -Tranquility = MassNP (UseN tranquility_N) ; -Excitement = MassNP (UseN excitement_N) ; -Anxiety = MassNP (UseN anxiety_N) ; -Anger = MassNP (UseN anger_N) ; -Pain = MassNP (UseN pain_N) ; -Headache = MassNP (UseN headache_N) ; -Puberty = MassNP (UseN puberty_N) ; -Squatting = DetCN (DetQuant IndefArt NumSg) (UseN (VerbToNoun squat_V)) ; -Housewife = MassNP (UseN housewife_N) ; -Deputy = MassNP (UseN deputy_N) ; -AttorneyGeneral = MassNP (ApposCN (UseN attorney_N) (MassNP (UseN general_N))) ; -Professor = MassNP (UseN professor_N) ; -ArtCritic = MassNP (ApposCN (UseN art_N) (MassNP (UseN critic_N))) ; -Dissident = MassNP (UseN dissident_N) ; - - --- subclasses -Aborting = UseN2 (VerbToNounV2 abort_V2) ; -AcademicDegree = AdjCN (PositA academic_A) (UseN degree_N) ; -Accelerating = UseN2 (VerbToNounV2 accelerate_V2) ; -Accrediting = UseN2 (VerbToNounV2 accredit_V2) ; -AchievingControl = AdjCN (PositA (VerbToGerundA achieve_V2)) (UseN control_N) ; -AcuteAngle = AdjCN (PositA acute_A) (UseN angle_N) ; -Address = UseN address_N ; -Aerating = UseN2 (VerbToNounV2 aerate_V2) ; -Afternoon = UseN afternoon_N ; -Agency = UseN agency_N ; -AirForce = ApposCN (UseN air_N) (MassNP (UseN force_N)) ; -AirTransportation = ApposCN (UseN air_N) (MassNP (UseN transportation_N)) ; -Aircraft = UseN aircraft_N ; -Alcohol = UseN alcohol_N ; -AlcoholicBeverage = AdjCN (PositA alcoholic_A) (UseN beverage_N) ; -Ambush = UseN ambush_N ; -Anaconda = UseN anaconda_N ; -Anchor = UseN anchor_N ; -AnimalController = ApposCN (UseN animal_N) (MassNP (UseN controller_N)) ; -AnimalPoweredDevice = ApposCN (UseN animal_N) (MassNP (AdjCN (PositA powered_A) (UseN device_N))) ; -AnimalResidence = ApposCN (UseN animal_N) (MassNP (UseN residence_N)) ; -AnimalShell = ApposCN (UseN animal_N) (MassNP (UseN shell_N)) ; -AnimalTeam = ApposCN (UseN animal_N) (MassNP (UseN team_N)) ; -Ankle = UseN ankle_N ; -Announcement = UseN announcement_N ; -Answering = UseN2 (VerbToNounV2 answer_V2) ; -AntInsect = ApposCN (UseN ant_N) (MassNP (UseN insect_N)) ; -Antelope = UseN antelope_N ; -Antenna = UseN antenna_N ; -Antibiotic = UseN antibiotic_N ; -Antibody = UseN antibody_N ; -ApartmentBuilding = ApposCN (UseN apartment_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -ApartmentUnit = ApposCN (UseN apartment_N) (MassNP (UseN unit_N)) ; -Apple = UseN apple_N ; -Application = UseN application_N ; -Appointing = UseN2 (VerbToNounV2 appoint_V2) ; -Apron = UseN apron_N ; -Arguing = UseN2 (VerbToNounV2 argue_V2) ; -Arm = UseN arm_N ; -Army = UseN army_N ; -Arriving = UseN (VerbToNoun arrive_V) ; -ArrowFigure = ApposCN (UseN arrow_N) (MassNP (UseN figure_N)) ; -ArrowIcon = ApposCN (UseN arrow_N) (MassNP (UseN icon_N)) ; -ArrowProjectile = ApposCN (UseN arrow_N) (MassNP (UseN projectile_N)) ; -Arson = UseN arson_N ; -ArtPainting = ApposCN (UseN art_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 paint_V2))) ; -ArtSchool = ApposCN (UseN art_N) (MassNP (UseN school_N)) ; -ArtStudio = ApposCN (UseN art_N) (MassNP (UseN studio_N)) ; -Artery = UseN artery_N ; -ArtilleryGun = ApposCN (UseN artillery_N) (MassNP (UseN gun_N)) ; -AtmosphericRegion = AdjCN (PositA atmospheric_A) (UseN region_N) ; -AtomicGroup = AdjCN (PositA atomic_A) (UseN group_N) ; -Atrophy = UseN atrophy_N ; -Auditorium = UseN auditorium_N ; -AuditoriumSeat = ApposCN (UseN auditorium_N) (MassNP (UseN seat_N)) ; -AutomaticGun = AdjCN (PositA automatic_A) (UseN gun_N) ; -Automobile = UseN automobile_N ; -Avocado = UseN avocado_N ; -Axle = UseN axle_N ; -BacterialDisease = AdjCN (PositA bacterial_A) (UseN disease_N) ; -Bag = UseN bag_N ; -Baking = UseN2 (VerbToNounV2 bake_V2) ; -Ball = UseN ball_N ; -BallisticMissile = AdjCN (PositA ballistic_A) (UseN missile_N) ; -Ballot = UseN ballot_N ; -Bandage = UseN bandage_N ; -Baptizing = UseN2 (VerbToNounV2 baptize_V2) ; -BargainSale = ApposCN (UseN bargain_N) (MassNP (UseN sale_N)) ; -Barking = UseN2 (VerbToNounV2 bark_V2) ; -Barn = UseN barn_N ; -Basement = UseN basement_N ; -Bathing = UseN bathing_N ; -BathingDevice = AdjCN (PositA (VerbToGerundA bath_V2)) (UseN device_N) ; -Bathroom = UseN bathroom_N ; -Baton = UseN baton_N ; -Battery = UseN battery_N ; -BecomingDrunk = AdjCN (PositA becoming_A) (UseN drunk_N) ; -Bed = UseN bed_N ; -Bedroom = UseN bedroom_N ; -Bee = UseN bee_N ; -Beef = UseN beef_N ; -Beer = UseN beer_N ; -BeginningOperations = AdjCN (PositA (VerbToGerundA begin_V2)) (UseN operation_N) ; -Bell = UseN bell_N ; -Belt = UseN belt_N ; -Bequeathing = UseN2 (VerbToNounV2 bequeath_V2) ; -Biography = UseN biography_N ; -BiologicalConception = AdjCN (PositA biological_A) (UseN conception_N) ; -BiologicalSpecies = AdjCN (PositA biological_A) (UseN species_N) ; -BirdEgg = ApposCN (UseN bird_N) (MassNP (UseN egg_N)) ; -Biting = UseN2 (VerbToNounV2 backbite_V2) ; -Blanket = UseN blanket_N ; -Bleeding = UseN2 (VerbToNounV2 bleed_V2) ; -Blockade = UseN blockade_N ; -BloodCell = ApposCN (UseN blood_N) (MassNP (UseN cell_N)) ; -BloodVessel = ApposCN (UseN blood_N) (MassNP (UseN vessel_N)) ; -Blueprint = UseN blueprint_N ; -Blushing = UseN (VerbToNoun blush_V) ; -BoardOrBlock = ConjCN or_Conj (BaseCN (UseN board_N) (UseN block_N)) ; -Boarding = UseN boarding_N ; -BoatDeck = ApposCN (UseN boat_N) (MassNP (UseN deck_N)) ; -BodyJoint = ApposCN (UseN body_N) (MassNP (UseN joint_N)) ; -Bomb = UseN bomb_N ; -Bomber = UseN bomber_N ; -Bombing = UseN2 (VerbToNounV2 bomb_V2) ; -Bottle = UseN bottle_N ; -Bowing = UseN bowing_N ; -Box = UseN box_N ; -Boy = UseN boy_N ; -Brain = UseN brain_N ; -Brandy = UseN brandy_N ; -Brass = UseN brass_N ; -BreadOrBiscuit = ConjCN or_Conj (BaseCN (UseN bread_N) (UseN biscuit_N)) ; -Breast = UseN breast_N ; -Brick = UseN brick_N ; -BrigadierGeneral = ApposCN (UseN brigadier_N) (MassNP (UseN general_N)) ; -BroadcastNetwork = ApposCN (UseN broadcast_N) (MassNP (UseN network_N)) ; -BroadcastProgram = ApposCN (UseN broadcast_N) (MassNP (UseN program_N)) ; -Broadcasting = UseN broadcasting_N ; -BronchialDuct = AdjCN (PositA bronchial_A) (UseN duct_N) ; -Brood = UseN brood_N ; -Broom = UseN broom_N ; -BrushOrComb = ConjCN or_Conj (BaseCN (UseN brush_N) (UseN comb_N)) ; -Bubble = UseN bubble_N ; -Buffalo = UseN buffalo_N ; -Bugle = UseN bugle_N ; -BuildingLevel = AdjCN (PositA (VerbToGerundA build_V2)) (UseN level_N) ; -Bull = UseN bull_N ; -Bullet = UseN bullet_N ; -Burrow = UseN burrow_N ; -Burying = UseN2 (VerbToNounV2 bury_V2) ; -Bus = UseN bus_N ; -BusStop = ApposCN (UseN bus_N) (MassNP (UseN stop_N)) ; -BusinessCompetition = ApposCN (UseN business_N) (MassNP (UseN competition_N)) ; -Butter = UseN butter_N ; -Button = UseN button_N ; -Cafeteria = UseN cafeteria_N ; -Calf = UseN calf_N ; -Camera = UseN camera_N ; -Camp = UseN camp_N ; -Candle = UseN candle_N ; -Capillary = UseN capillary_N ; -CaptainOfficer = ApposCN (UseN captain_N) (MassNP (UseN officer_N)) ; -Capturing = UseN2 (VerbToNounV2 capture_V2) ; -CarBombing = ApposCN (UseN car_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 bomb_V2))) ; -CareOrganization = ApposCN (UseN care_N) (MassNP (UseN organization_N)) ; -Carpentry = UseN carpentry_N ; -Catching = UseN2 (VerbToNounV2 catch_V2) ; -CausingHappiness = AdjCN (PositA (VerbToGerundA cause_V2)) (UseN happiness_N) ; -CausingPain = AdjCN (PositA (VerbToGerundA cause_V2)) (UseN pain_N) ; -CausingUnhappiness = AdjCN (PositA (VerbToGerundA cause_V2)) (UseN unhappiness_N) ; -CavalryUnit = ApposCN (UseN cavalry_N) (MassNP (UseN unit_N)) ; -CeasingOperations = AdjCN (PositA (VerbToGerundA cease_V2)) (UseN operation_N) ; -Ceiling = UseN ceiling_N ; -CellNucleus = ApposCN (UseN cell_N) (MassNP (UseN nucleus_N)) ; -Cellulose = UseN cellulose_N ; -Cemetery = UseN cemetery_N ; -CentrifugalMotion = AdjCN (PositA centrifugal_A) (UseN motion_N) ; -CentripetalMotion = AdjCN (PositA centripetal_A) (UseN motion_N) ; -CerealGrain = ApposCN (UseN cereal_N) (MassNP (UseN grain_N)) ; -Chair = UseN chair_N ; -ChangeOfControl = AdvCN (UseN change_N) (PrepNP part_Prep (MassNP (UseN control_N))) ; -ChangingClothing = AdjCN (PositA (VerbToGerundA change_V2)) (UseN clothing_N) ; -Chapter = UseN chapter_N ; -Chart = UseN chart_N ; -Checkpoint = UseN checkpoint_N ; -ChemicalAcid = AdjCN (PositA chemical_A) (UseN acid_N) ; -ChemicalAttack = AdjCN (PositA chemical_A) (UseN attack_N) ; -ChemicalBase = AdjCN (PositA chemical_A) (UseN base_N) ; -ChemicalReduction = AdjCN (PositA chemical_A) (UseN reduction_N) ; -ChemicalSalt = AdjCN (PositA chemical_A) (UseN salt_N) ; -ChestOrCabinet = ConjCN or_Conj (BaseCN (UseN chest_N) (UseN cabinet_N)) ; -Chewing = UseN2 (VerbToNounV2 chew_V2) ; -Chicken = UseN chicken_N ; -ChickenMeat = ApposCN (UseN chicken_N) (MassNP (UseN meat_N)) ; -Chimney = UseN chimney_N ; -Chin = UseN chin_N ; -ChristianBible = AdjCN (PositA christian_A) (UseN bible_N) ; -ChristianGospel = AdjCN (PositA christian_A) (UseN gospel_N) ; -ChristianService = AdjCN (PositA christian_A) (UseN service_N) ; -CigarOrCigarette = ConjCN or_Conj (BaseCN (UseN cigar_N) (UseN cigarette_N)) ; -CircleSector = ApposCN (UseN circle_N) (MassNP (UseN sector_N)) ; -CityBlock = ApposCN (UseN city_N) (MassNP (UseN block_N)) ; -CityDistrict = ApposCN (UseN city_N) (MassNP (UseN district_N)) ; -CityGovernment = ApposCN (UseN city_N) (MassNP (UseN government_N)) ; -CivilWar = AdjCN (PositA civil_A) (UseN war_N) ; -Civilian = UseN civilian_N ; -Clamp = UseN clamp_N ; -Clapping = UseN2 (VerbToNounV2 clap_V2) ; -ClassificationScheme = ApposCN (UseN classification_N) (MassNP (UseN scheme_N)) ; -Classroom = UseN classroom_N ; -Cleric = UseN cleric_N ; -Cloak = UseN cloak_N ; -Clock = UseN clock_N ; -Closet = UseN closet_N ; -Closing = UseN2 (VerbToNounV2 close_V2) ; -ClosingContract = AdjCN (PositA (VerbToGerundA close_V2)) (UseN contract_N) ; -ClosingEyes = AdjCN (PositA (VerbToGerundA close_V2)) (UseN eye_N) ; -ClothingSuit = AdjCN (PositA (VerbToGerundA clothe_V2)) (UseN suit_N) ; -CoastGuard = ApposCN (UseN coast_N) (MassNP (UseN guard_N)) ; -Coat = UseN coat_N ; -Coconut = UseN coconut_N ; -Coffee = UseN coffee_N ; -Coffin = UseN coffin_N ; -Collage = UseN collage_N ; -Collar = UseN collar_N ; -College = UseN college_N ; -CollegeStudentPosition = ApposCN (ApposCN (UseN college_N) (MassNP (UseN student_N))) (MassNP (UseN position_N)) ; -Colonel = UseN colonel_N ; -CommercialBuilding = AdjCN (PositA commercial_A) (UseN building_N) ; -CommercialShipping = AdjCN (PositA commercial_A) (UseN shipping_N) ; -CommercialUnit = AdjCN (PositA commercial_A) (UseN unit_N) ; -Commission = UseN commission_N ; -CommunicationOrganization = ApposCN (UseN communication_N) (MassNP (UseN organization_N)) ; -CommunicationSystem = ApposCN (UseN communication_N) (MassNP (UseN system_N)) ; -CommunistParty = AdjCN (PositA communist_A) (UseN party_N) ; -Compartment = UseN compartment_N ; -Compass = UseN compass_N ; -Composing = UseN2 (VerbToNounV2 compose_V2) ; -ComposingMusic = AdjCN (PositA (VerbToGerundA compose_V2)) (UseN music_N) ; -Concealing = UseN2 (VerbToNounV2 conceal_V2) ; -CondominiumBuilding = ApposCN (UseN condominium_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -CondominiumUnit = ApposCN (UseN condominium_N) (MassNP (UseN unit_N)) ; -Cone = UseN cone_N ; -ConfederateSoldier = AdjCN (PositA confederate_A) (UseN soldier_N) ; -Congratulating = UseN2 (VerbToNounV2 congratulate_V2) ; -ConjugatedSubstance = AdjCN (PositA (VerbToParticipeA conjugate_V)) (UseN substance_N) ; -Consonant = UseN consonant_N ; -Container = UseN container_N ; -ContraceptiveDevice = AdjCN (PositA contraceptive_A) (UseN device_N) ; -Convoy = UseN convoy_N ; -CoolingDevice = AdjCN (PositA (VerbToGerundA cool_V2)) (UseN device_N) ; -Copying = UseN2 (VerbToNounV2 copy_V2) ; -Corporal = UseN corporal_N ; -Corresponding = UseN (VerbToNoun correspond_V) ; -Cotton = UseN cotton_N ; -CottonFabric = ApposCN (UseN cotton_N) (MassNP (UseN fabric_N)) ; -CourtRoom = ApposCN (UseN court_N) (MassNP (UseN room_N)) ; -Cow = UseN cow_N ; -Crane = UseN crane_N ; -Creek = UseN creek_N ; -CriminalAction = AdjCN (PositA criminal_A) (UseN action_N) ; -CriminalGang = AdjCN (PositA criminal_A) (UseN gang_N) ; -CultivatedLandArea = AdjCN (PositA cultivated_A) (ApposCN (UseN land_N) (MassNP (UseN area_N))) ; -Curb = UseN curb_N ; -CurrencyBill = ApposCN (UseN currency_N) (MassNP (UseN bill_N)) ; -CurrencyCoin = ApposCN (UseN currency_N) (MassNP (UseN coin_N)) ; -Curtain = UseN curtain_N ; -CuttingDevice = AdjCN (PositA cutting_A) (UseN device_N) ; -Cylinder = UseN cylinder_N ; -DateFruit = ApposCN (UseN date_N) (MassNP (UseN fruit_N)) ; -DaySchool = ApposCN (UseN day_N) (MassNP (UseN school_N)) ; -DayTime = ApposCN (UseN day_N) (MassNP (UseN time_N)) ; -Deacon = UseN deacon_N ; -Debating = UseN2 (VerbToNounV2 debate_V2) ; -Decelerating = UseN2 (VerbToNounV2 decelerate_V2) ; -Desk = UseN desk_N ; -Detergent = UseN detergent_N ; -DeviceAttribute = ApposCN (UseN device_N) (MassNP (UseN attribute_N)) ; -DeviceStateAttribute = ApposCN (ApposCN (UseN device_N) (MassNP (UseN state_N))) (MassNP (UseN attribute_N)) ; -Diamond = UseN diamond_N ; -Dictionary = UseN dictionary_N ; -DieselEngine = ApposCN (UseN diesel_N) (MassNP (UseN engine_N)) ; -Diet = UseN diet_N ; -Digging = UseN digging_N ; -DigitAppendage = ApposCN (UseN digit_N) (MassNP (UseN appendage_N)) ; -DigitCharacter = ApposCN (UseN digit_N) (MassNP (UseN character_N)) ; -Diluting = UseN2 (VerbToNounV2 dilute_V2) ; -DiningRoom = AdjCN (PositA (VerbToGerundA dine_V2)) (UseN room_N) ; -Dish = UseN dish_N ; -Dismounting = UseN2 (VerbToNounV2 dismount_V2) ; -DisplayArtifact = ApposCN (UseN display_N) (MassNP (UseN artifact_N)) ; -DistilledAlcoholicBeverage = AdjCN (PositA (VerbToParticipeA distil_V)) (AdjCN (PositA alcoholic_A) (UseN beverage_N)) ; -Divorcing = UseN2 (VerbToNounV2 divorce_V2) ; -Dodging = UseN2 (VerbToNounV2 dodge_V2) ; -DomesticAnimal = AdjCN (PositA domestic_A) (UseN animal_N) ; -DomesticCat = AdjCN (PositA domestic_A) (UseN cat_N) ; -DomesticDog = AdjCN (PositA domestic_A) (UseN dog_N) ; -Donkey = UseN donkey_N ; -Door = UseN door_N ; -Doorway = UseN doorway_N ; -Dormitory = UseN dormitory_N ; -Dough = UseN dough_N ; -DramaticActing = AdjCN (PositA dramatic_A) (UseN acting_N) ; -DramaticCast = AdjCN (PositA dramatic_A) (UseN cast_N) ; -DramaticDirecting = AdjCN (PositA dramatic_A) (UseN2 (VerbToNounV2 direct_V2)) ; -DramaticPerformance = AdjCN (PositA dramatic_A) (UseN performance_N) ; -DramaticPlay = AdjCN (PositA dramatic_A) (UseN play_N) ; -Drawing = UseN drawing_N ; -Dreaming = UseN2 (VerbToNounV2 dream_V2) ; -Dress = UseN dress_N ; -Dressing = UseN dressing_N ; -DressingRoom = AdjCN (PositA (VerbToGerundA dress_V2)) (UseN room_N) ; -Drill = UseN drill_N ; -Drilling = UseN2 (VerbToNounV2 drill_V2) ; -DrinkingCup = AdjCN (PositA (VerbToGerundA drink_V2)) (UseN cup_N) ; -Dripping = UseN dripping_N ; -DriveComponent = ApposCN (UseN drive_N) (MassNP (UseN component_N)) ; -Driveway = UseN driveway_N ; -DrugStore = ApposCN (UseN drug_N) (MassNP (UseN store_N)) ; -Drum = UseN drum_N ; -Drumming = UseN2 (VerbToNounV2 drum_V2) ; -Duck = UseN duck_N ; -Ducking = UseN ducking_N ; -DutyTax = ApposCN (UseN duty_N) (MassNP (UseN tax_N)) ; -Ear = UseN ear_N ; -Echoing = UseN2 (VerbToNounV2 echo_V2) ; -EducationalCourse = AdjCN (PositA educational_A) (UseN course_N) ; -EducationalFacility = AdjCN (PositA educational_A) (UseN facility_N) ; -EducationalProgram = AdjCN (PositA educational_A) (UseN program_N) ; -Elbow = UseN elbow_N ; -ElectoralCollegeElection = AdjCN (PositA electoral_A) (ApposCN (UseN college_N) (MassNP (UseN election_N))) ; -ElectricDevice = AdjCN (PositA electric_A) (UseN device_N) ; -ElectricMotor = AdjCN (PositA electric_A) (UseN motor_N) ; -ElectricalSignalling = AdjCN (PositA electrical_A) (UseN2 (VerbToNounV2 signal_V2)) ; -ElectronicSignalling = AdjCN (PositA electronic_A) (UseN2 (VerbToNounV2 signal_V2)) ; -Elephant = UseN elephant_N ; -Elevator = UseN elevator_N ; -EmbassyBuilding = ApposCN (UseN embassy_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -Embracing = UseN2 (VerbToNounV2 embrace_V2) ; -EmploymentFiring = ApposCN (UseN employment_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 fire_V2))) ; -Engine = UseN engine_N ; -EntertainmentBuilding = ApposCN (UseN entertainment_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -EntertainmentCompany = ApposCN (UseN entertainment_N) (MassNP (UseN company_N)) ; -EntertainmentProfession = ApposCN (UseN entertainment_N) (MassNP (UseN profession_N)) ; -Entombing = UseN2 (VerbToNounV2 entomb_V2) ; -Envelope = UseN envelope_N ; -Escaping = UseN2 (VerbToNounV2 escape_V2) ; -Espionage = UseN espionage_N ; -EuropeanNation = AdjCN (PositA european_A) (UseN nation_N) ; -Execution = UseN execution_N ; -ExecutiveResidence = AdjCN (PositA executive_A) (UseN residence_N) ; -Exhaling = UseN2 (VerbToNounV2 exhale_V2) ; -Explosion = UseN explosion_N ; -ExplosiveDevice = AdjCN (PositA explosive_A) (UseN device_N) ; -ExplosiveMine = AdjCN (PositA explosive_A) (UseN mine_N) ; -ExplosiveSubstance = AdjCN (PositA explosive_A) (UseN substance_N) ; -ExpressingApproval = AdjCN (PositA (VerbToGerundA express_V2)) (UseN approval_N) ; -ExpressingDisapproval = AdjCN (PositA (VerbToGerundA express_V2)) (UseN disapproval_N) ; -ExpressingFarewell = AdjCN (PositA (VerbToGerundA express_V2)) (UseN farewell_N) ; -ExpressingInLanguage = AdjCN (PositA (VerbToGerundA express_V2)) (ApposCN (UseN in_N) (MassNP (UseN language_N))) ; -Eye = UseN eye_N ; -EyeGlass = ApposCN (UseN eye_N) (MassNP (UseN glass_N)) ; -EyeMotion = ApposCN (UseN eye_N) (MassNP (UseN motion_N)) ; -Eyelid = UseN eyelid_N ; -Face = UseN face_N ; -FacialExpression = AdjCN (PositA facial_A) (UseN expression_N) ; -FacialHair = AdjCN (PositA facial_A) (UseN hair_N) ; -Fact = UseN fact_N ; -Factory = UseN factory_N ; -FallSeason = ApposCN (UseN fall_N) (MassNP (UseN season_N)) ; -FallingAsleep = AdvCN (UseN2 (VerbToNounV2 befall_V2)) asleep_Adv ; -Fallout = UseN fallout_N ; -FamilyBusiness = ApposCN (UseN family_N) (MassNP (UseN business_N)) ; -FanDevice = ApposCN (UseN fan_N) (MassNP (UseN device_N)) ; -Farm = UseN farm_N ; -FarmBuilding = ApposCN (UseN farm_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -Farming = UseN2 (VerbToNounV2 farm_V2) ; -Feather = UseN feather_N ; -Feeding = UseN2 (VerbToNounV2 breastfeed_V2) ; -FemaleCow = AdjCN (PositA female_A) (UseN cow_N) ; -Fence = UseN fence_N ; -Field = UseN field_N ; -Fighter = UseN fighter_N ; -FileDevice = ApposCN (UseN file_N) (MassNP (UseN device_N)) ; -FilmDirector = ApposCN (UseN film_N) (MassNP (UseN director_N)) ; -FilmMaking = ApposCN (UseN film_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 make_V2))) ; -FilmMakingProfession = ApposCN (ApposCN (UseN film_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 make_V2)))) (MassNP (UseN profession_N)) ; -FilmProducer = ApposCN (UseN film_N) (MassNP (UseN producer_N)) ; -Filter = UseN filter_N ; -FinancialBill = AdjCN (PositA financial_A) (UseN bill_N) ; -FinancialCompany = AdjCN (PositA financial_A) (UseN company_N) ; -FinancialService = AdjCN (PositA financial_A) (UseN service_N) ; -FinancialText = AdjCN (PositA financial_A) (UseN text_N) ; -Financing = UseN2 (VerbToNounV2 finance_V2) ; -Finger = UseN finger_N ; -Fingerprint = UseN fingerprint_N ; -FiniteQuantity = AdjCN (PositA finite_A) (UseN quantity_N) ; -Firearm = UseN firearm_N ; -Fireplace = UseN fireplace_N ; -FishMeat = ApposCN (UseN fish_N) (MassNP (UseN meat_N)) ; -Flag = UseN flag_N ; -Flooding = UseN2 (VerbToNounV2 flood_V2) ; -Floor = UseN floor_N ; -Flour = UseN flour_N ; -Flower = UseN flower_N ; -FluidContainer = AdjCN (PositA fluid_A) (UseN container_N) ; -FlyInsect = AdjCN (PositA fly_A) (UseN insect_N) ; -Flying = UseN2 (VerbToNounV2 fly_V2) ; -Focusing = UseN2 (VerbToNounV2 focus_V2) ; -Fodder = UseN fodder_N ; -Fog = UseN fog_N ; -Folding = UseN2 (VerbToNounV2 fold_V2) ; -Foot = UseN foot_N ; -FormOfGovernment = AdvCN (UseN form_N) (PrepNP part_Prep (MassNP (UseN government_N))) ; -FormText = ApposCN (UseN form_N) (MassNP (UseN text_N)) ; -FormalMeeting = AdjCN (PositA formal_A) (UseN meeting_N) ; -FossilFuel = ApposCN (UseN fossil_N) (MassNP (UseN fuel_N)) ; -Founding = UseN2 (VerbToNounV2 found_V2) ; -Fox = UseN fox_N ; -FreeAtom = AdjCN (PositA free_A) (UseN atom_N) ; -Frightening = UseN2 (VerbToNounV2 frighten_V2) ; -Frowning = UseN (VerbToNoun frown_V) ; -Fuel = UseN fuel_N ; -FullTimePosition = AdjCN (PositA full_A) (ApposCN (UseN time_N) (MassNP (UseN position_N))) ; -Funeral = UseN funeral_N ; -Furniture = UseN furniture_N ; -GainingConsciousness = AdjCN (PositA (VerbToGerundA gain_V2)) (UseN consciousness_N) ; -GameArtifact = AdjCN (PositA game_A) (UseN artifact_N) ; -GameAttribute = AdjCN (PositA game_A) (UseN attribute_N) ; -GameBoard = AdjCN (PositA game_A) (UseN board_N) ; -GameCall = AdjCN (PositA game_A) (UseN call_N) ; -GameDie = AdjCN (PositA game_A) (UseN die_N) ; -GameGoal = AdjCN (PositA game_A) (UseN goal_N) ; -GamePiece = AdjCN (PositA game_A) (UseN piece_N) ; -GameReferee = AdjCN (PositA game_A) (UseN referee_N) ; -GameShot = AdjCN (PositA game_A) (UseN shot_N) ; -Garage = UseN garage_N ; -GasolineEngine = ApposCN (UseN gasoline_N) (MassNP (UseN engine_N)) ; -Girl = UseN girl_N ; -Glass = UseN glass_N ; -Glove = UseN glove_N ; -Glue = UseN glue_N ; -Goose = UseN goose_N ; -GovernmentBuilding = ApposCN (UseN government_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -GovernmentOfficer = ApposCN (UseN government_N) (MassNP (UseN officer_N)) ; -GovernmentSecretary = ApposCN (UseN government_N) (MassNP (UseN secretary_N)) ; -GraduateSchool = ApposCN (UseN graduate_N) (MassNP (UseN school_N)) ; -GraphDiagram = ApposCN (UseN graph_N) (MassNP (UseN diagram_N)) ; -Grass = UseN grass_N ; -Grasshopper = UseN grasshopper_N ; -Greeting = UseN greeting_N ; -GroceryStore = ApposCN (UseN grocery_N) (MassNP (UseN store_N)) ; -GroupOfAnimals = AdvCN (UseN group_N) (PrepNP part_Prep (DetCN (DetQuant IndefArt NumSg) (UseN animal_N))) ; -Guitar = UseN guitar_N ; -Gun = UseN gun_N ; -GunBarrel = ApposCN (UseN gun_N) (MassNP (UseN barrel_N)) ; -GunPowder = ApposCN (UseN gun_N) (MassNP (UseN powder_N)) ; -GunStock = ApposCN (UseN gun_N) (MassNP (UseN stock_N)) ; -GunTrigger = ApposCN (UseN gun_N) (MassNP (UseN trigger_N)) ; -Hair = UseN hair_N ; -HairRemoval = ApposCN (UseN hair_N) (MassNP (UseN removal_N)) ; -Hammer = UseN hammer_N ; -Hand = UseN hand_N ; -HandGesture = ApposCN (UseN hand_N) (MassNP (UseN gesture_N)) ; -HandGrenade = ApposCN (UseN hand_N) (MassNP (UseN grenade_N)) ; -Handle = UseN handle_N ; -Hanging = UseN hanging_N ; -Harvesting = UseN2 (VerbToNounV2 harvest_V2) ; -Hat = UseN hat_N ; -Hay = UseN hay_N ; -Head = UseN head_N ; -Headlight = UseN headlight_N ; -Heart = UseN heart_N ; -HeatingDevice = AdjCN (PositA (VerbToGerundA heat_V2)) (UseN device_N) ; -Helicopter = UseN helicopter_N ; -Hen = UseN hen_N ; -HighSchool = AdjCN (PositA high_A) (UseN school_N) ; -Hijacking = UseN2 (VerbToNounV2 hijack_V2) ; -Hinge = UseN hinge_N ; -HistoricalAccount = AdjCN (PositA historical_A) (UseN account_N) ; -HoistingDevice = AdjCN (PositA (VerbToGerundA hoist_V2)) (UseN device_N) ; -Holder = UseN holder_N ; -HolidayCard = ApposCN (UseN holiday_N) (MassNP (UseN card_N)) ; -Holster = UseN holster_N ; -HomeBase = ApposCN (UseN home_N) (MassNP (UseN base_N)) ; -Honey = UseN honey_N ; -Hoof = UseN hoof_N ; -Horn = UseN horn_N ; -HornInstrument = ApposCN (UseN horn_N) (MassNP (UseN instrument_N)) ; -Horse = UseN horse_N ; -HorseRiding = ApposCN (UseN horse_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 outride_V2))) ; -HospitalBuilding = ApposCN (UseN hospital_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -HospitalOrganization = ApposCN (UseN hospital_N) (MassNP (UseN organization_N)) ; -HostageTaking = ApposCN (UseN hostage_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 betake_V2))) ; -Hotel = UseN hotel_N ; -HumanAdult = AdjCN (PositA human_A) (UseN adult_N) ; -HumanBaby = AdjCN (PositA human_A) (UseN baby_N) ; -HumanChild = AdjCN (PositA human_A) (UseN child_N) ; -HumanCorpse = AdjCN (PositA human_A) (UseN corpse_N) ; -HumanYouth = AdjCN (PositA human_A) (UseN youth_N) ; -Hydrocarbon = UseN hydrocarbon_N ; -Ice = UseN ice_N ; -Imagining = UseN2 (VerbToNounV2 imagine_V2) ; -Immigrating = UseN (VerbToNoun immigrate_V) ; -Imprisoning = UseN2 (VerbToNounV2 imprison_V2) ; -IncendiaryDeviceAttack = ApposCN (ApposCN (UseN incendiary_N) (MassNP (UseN device_N))) (MassNP (UseN attack_N)) ; -Inclining = UseN2 (VerbToNounV2 incline_V2) ; -IncomeTax = ApposCN (UseN income_N) (MassNP (UseN tax_N)) ; -Indicating = UseN2 (VerbToNounV2 indicate_V2) ; -IndustrialPlant = AdjCN (PositA industrial_A) (UseN plant_N) ; -Industry = UseN industry_N ; -InfectiousDisease = AdjCN (PositA infectious_A) (UseN disease_N) ; -Infiltration = UseN infiltration_N ; -InfiniteQuantity = AdjCN (PositA infinite_A) (UseN quantity_N) ; -Inhaling = UseN2 (VerbToNounV2 inhale_V2) ; -Inheriting = UseN2 (VerbToNounV2 inherit_V2) ; -Installing = UseN2 (VerbToNounV2 install_V2) ; -InstrumentalMusic = AdjCN (PositA instrumental_A) (UseN music_N) ; -Insulin = UseN insulin_N ; -InsuranceCompany = ApposCN (UseN insurance_N) (MassNP (UseN company_N)) ; -InsurancePolicy = ApposCN (UseN insurance_N) (MassNP (UseN policy_N)) ; -InternalCombustionEngine = AdjCN (PositA internal_A) (ApposCN (UseN combustion_N) (MassNP (UseN engine_N))) ; -Interviewing = UseN2 (VerbToNounV2 interview_V2) ; -Intestine = UseN intestine_N ; -Ion = UseN ion_N ; -Ivory = UseN ivory_N ; -Janitor = UseN janitor_N ; -Journalist = UseN journalist_N ; -Judge = UseN judge_N ; -Jumping = UseN2 (VerbToNounV2 jump_V2) ; -JuniorCollege = AdjCN (PositA junior_A) (UseN college_N) ; -Jury = UseN jury_N ; -Key = UseN key_N ; -Kicking = UseN2 (VerbToNounV2 kick_V2) ; -Kidnapping = UseN2 (VerbToNounV2 kidnap_V2) ; -Kidney = UseN kidney_N ; -Kissing = UseN2 (VerbToNounV2 kiss_V2) ; -Kitchen = UseN kitchen_N ; -Knee = UseN knee_N ; -Knife = UseN knife_N ; -KnifeAttack = ApposCN (UseN knife_N) (MassNP (UseN attack_N)) ; -Knuckle = UseN knuckle_N ; -Label = UseN label_N ; -Laboratory = UseN laboratory_N ; -Ladder = UseN ladder_N ; -Lamb = UseN lamb_N ; -LandTransportation = ApposCN (UseN land_N) (MassNP (UseN transportation_N)) ; -LandVehicle = ApposCN (UseN land_N) (MassNP (UseN vehicle_N)) ; -Landing = UseN landing_N ; -Laughing = UseN2 (VerbToNounV2 laugh_V2) ; -LawEnforcement = ApposCN (UseN law_N) (MassNP (UseN enforcement_N)) ; -Lawn = UseN lawn_N ; -LayingEggs = AdjCN (PositA (VerbToGerundA inlay_V2)) (UseN egg_N) ; -Leather = UseN leather_N ; -Leaving = UseN2 (VerbToNounV2 leave_V2) ; -Lecture = UseN lecture_N ; -Leg = UseN leg_N ; -LegalAppeal = AdjCN (PositA legal_A) (UseN appeal_N) ; -LegalAward = AdjCN (PositA legal_A) (UseN award_N) ; -LegalCharge = AdjCN (PositA legal_A) (UseN charge_N) ; -LegalConviction = AdjCN (PositA legal_A) (UseN conviction_N) ; -LegalDismissal = AdjCN (PositA legal_A) (UseN dismissal_N) ; -LegalOpinion = AdjCN (PositA legal_A) (UseN opinion_N) ; -LegalSummons = AdjCN (PositA legal_A) (UseN summons_N) ; -LemonFruit = ApposCN (UseN lemon_N) (MassNP (UseN fruit_N)) ; -Lengthening = UseN2 (VerbToNounV2 lengthen_V2) ; -Lens = UseN lens_N ; -Lesion = UseN lesion_N ; -Letter = UseN letter_N ; -LetterBombAttack = ApposCN (ApposCN (UseN letter_N) (MassNP (UseN bomb_N))) (MassNP (UseN attack_N)) ; -Library = UseN library_N ; -Licking = UseN licking_N ; -Lieutenant = UseN lieutenant_N ; -LightFixture = AdjCN (PositA light_A) (UseN fixture_N) ; -Lightning = UseN lightning_N ; -Lilac = UseN lilac_N ; -Limb = UseN limb_N ; -LinguisticAttribute = AdjCN (PositA linguistic_A) (UseN attribute_N) ; -Lip = UseN lip_N ; -LiquefiedPetroleumGas = AdjCN (PositA (VerbToParticipeA liquefy_V)) (ApposCN (UseN petroleum_N) (MassNP (UseN gas_N))) ; -LiquidBodySubstance = AdjCN (PositA liquid_A) (ApposCN (UseN body_N) (MassNP (UseN substance_N))) ; -Liver = UseN liver_N ; -LoadingWeapon = AdjCN (PositA (VerbToGerundA load_V2)) (UseN weapon_N) ; -Lock = UseN lock_N ; -LosingConsciousness = AdjCN (PositA (VerbToGerundA lose_V2)) (UseN consciousness_N) ; -Lung = UseN lung_N ; -LyingDown = AdjCN (PositA (VerbToGerundA belie_V2)) (UseN down_N) ; -Lynching = UseN2 (VerbToNounV2 lynch_V2) ; -Lyrics = UseN lyric_N ; -Magazine = UseN magazine_N ; -Magnetism = UseN magnetism_N ; -Maid = UseN maid_N ; -Mailbox = UseN mailbox_N ; -Mailing = UseN2 (VerbToNounV2 mail_V2) ; -MaizeGrain = ApposCN (UseN maize_N) (MassNP (UseN grain_N)) ; -MajorGeneral = AdjCN (PositA major_A) (UseN general_N) ; -Manifold = UseN manifold_N ; -Map = UseN map_N ; -Marble = UseN marble_N ; -Marketplace = UseN marketplace_N ; -Marshal = UseN marshal_N ; -Massaging = UseN2 (VerbToNounV2 massage_V2) ; -Mast = UseN mast_N ; -MatchDevice = ApposCN (UseN match_N) (MassNP (UseN device_N)) ; -MaterialHandlingEquipment = AdjCN (PositA material_A) (AdjCN (PositA (VerbToGerundA handle_V2)) (UseN equipment_N)) ; -Mating = UseN2 (VerbToNounV2 mate_V2) ; -MedicalClinic = AdjCN (PositA medical_A) (UseN clinic_N) ; -MedicalClinicBuilding = AdjCN (PositA medical_A) (ApposCN (UseN clinic_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2)))) ; -MedicalSchool = AdjCN (PositA medical_A) (UseN school_N) ; -Medicine = UseN medicine_N ; -Memorizing = UseN2 (VerbToNounV2 memorize_V2) ; -Menstruation = UseN menstruation_N ; -Message = UseN message_N ; -MetallicAlloy = AdjCN (PositA metallic_A) (UseN alloy_N) ; -Meteorite = UseN meteorite_N ; -Microphone = UseN microphone_N ; -Microscope = UseN microscope_N ; -MilitaryAircraft = AdjCN (PositA military_A) (UseN aircraft_N) ; -MilitaryArtifact = AdjCN (PositA military_A) (UseN artifact_N) ; -MilitaryCorps = AdjCN (PositA military_A) (UseN corps_N) ; -MilitaryFront = AdjCN (PositA military_A) (UseN front_N) ; -MilitaryInfiltration = AdjCN (PositA military_A) (UseN infiltration_N) ; -MilitaryInstallation = AdjCN (PositA military_A) (UseN installation_N) ; -MilitaryOfficer = AdjCN (PositA military_A) (UseN officer_N) ; -MilitaryPrivate = AdjCN (PositA military_A) (UseN private_N) ; -MilitaryReserveForce = AdjCN (PositA military_A) (ApposCN (UseN reserve_N) (MassNP (UseN force_N))) ; -MilitaryService = AdjCN (PositA military_A) (UseN service_N) ; -MilitaryShip = AdjCN (PositA military_A) (UseN ship_N) ; -MilitarySquad = AdjCN (PositA military_A) (UseN squad_N) ; -MilitarySurplus = AdjCN (PositA military_A) (UseN surplus_N) ; -MilitaryTank = AdjCN (PositA military_A) (UseN tank_N) ; -MilitaryUnit = AdjCN (PositA military_A) (UseN unit_N) ; -MilitaryVehicle = AdjCN (PositA military_A) (UseN vehicle_N) ; -MilitaryWaterVehicle = AdjCN (PositA military_A) (ApposCN (UseN water_N) (MassNP (UseN vehicle_N))) ; -Milk = UseN milk_N ; -Mine = UseN mine_N ; -Mirror = UseN mirror_N ; -Missile = UseN missile_N ; -MissionOrganization = ApposCN (UseN mission_N) (MassNP (UseN organization_N)) ; -MobileResidence = AdjCN (PositA mobile_A) (UseN residence_N) ; -ModellingPosition = AdjCN (PositA (VerbToGerundA model_V2)) (UseN position_N) ; -Monument = UseN monument_N ; -Morning = UseN morning_N ; -Mortar = UseN mortar_N ; -MortarAttack = ApposCN (UseN mortar_N) (MassNP (UseN attack_N)) ; -MortarGun = ApposCN (UseN mortar_N) (MassNP (UseN gun_N)) ; -Moth = UseN moth_N ; -MotionPictureScene = ApposCN (ApposCN (UseN motion_N) (MassNP (UseN picture_N))) (MassNP (UseN scene_N)) ; -MotionPictureShot = ApposCN (ApposCN (UseN motion_N) (MassNP (UseN picture_N))) (MassNP (UseN shot_N)) ; -Motorcycle = UseN motorcycle_N ; -Mounting = UseN2 (VerbToNounV2 mount_V2) ; -Mouse = UseN mouse_N ; -Mouth = UseN mouth_N ; -MovingResidence = AdjCN (PositA (VerbToGerundA move_V2)) (UseN residence_N) ; -Mule = UseN mule_N ; -Murder = UseN murder_N ; -Museum = UseN museum_N ; -MusicRecording = ApposCN (UseN music_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 record_V2))) ; -MusicText = ApposCN (UseN music_N) (MassNP (UseN text_N)) ; -MusicalComposition = AdjCN (PositA musical_A) (UseN composition_N) ; -MusicalGroup = AdjCN (PositA musical_A) (UseN group_N) ; -MusicalPerformance = AdjCN (PositA musical_A) (UseN performance_N) ; -MusicalTone = AdjCN (PositA musical_A) (UseN tone_N) ; -MysteryStory = ApposCN (UseN mystery_N) (MassNP (UseN story_N)) ; -Nail = UseN nail_N ; -NailDigit = ApposCN (UseN nail_N) (MassNP (UseN digit_N)) ; -NarrativeText = ApposCN (UseN narrative_N) (MassNP (UseN text_N)) ; -NationalFlag = AdjCN (PositA national_A) (UseN flag_N) ; -Neck = UseN neck_N ; -Nectar = UseN nectar_N ; -Negotiating = UseN2 (VerbToNounV2 negotiate_V2) ; -NerveCell = ApposCN (UseN nerve_N) (MassNP (UseN cell_N)) ; -NervousSystem = AdjCN (PositA nervous_A) (UseN system_N) ; -Nest = UseN nest_N ; -Neurosis = UseN neurosis_N ; -NewTestament = AdjCN (PositA new_A) (UseN testament_N) ; -NewsProgram = ApposCN (UseN news_N) (MassNP (UseN program_N)) ; -Newspaper = UseN newspaper_N ; -NightTime = ApposCN (UseN night_N) (MassNP (UseN time_N)) ; -Nodding = UseN2 (VerbToNounV2 nod_V2) ; -Nose = UseN nose_N ; -Nostril = UseN nostril_N ; -Novel = UseN novel_N ; -NuclearFamily = AdjCN (PositA nuclear_A) (UseN family_N) ; -NuclearWeapon = AdjCN (PositA nuclear_A) (UseN weapon_N) ; -OakWood = ApposCN (UseN oak_N) (MassNP (UseN wood_N)) ; -Oar = UseN oar_N ; -ObliqueAngle = AdjCN (PositA oblique_A) (UseN angle_N) ; -OccupationalRole = AdjCN (PositA occupational_A) (UseN role_1_N) ; -OccupationalTrade = AdjCN (PositA occupational_A) (UseN trade_N) ; -OfferingForSale = AdvCN (UseN offering_N) (PrepNP for_Prep (MassNP (UseN sale_N))) ; -OfferingToPurchase = AdvCN (UseN offering_N) (PrepNP to_Prep (MassNP (UseN purchase_N))) ; -OfficeBuilding = ApposCN (UseN office_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -Oil = UseN oil_N ; -OilPaint = ApposCN (UseN oil_N) (MassNP (UseN paint_N)) ; -OilPicture = ApposCN (UseN oil_N) (MassNP (UseN picture_N)) ; -OldTestament = AdjCN (PositA old_A) (UseN testament_N) ; -Ontology = UseN ontology_N ; -Opening = UseN opening_N ; -OpeningEyes = AdjCN (PositA opening_A) (UseN eye_N) ; -Opera = UseN opera_N ; -Opium = UseN opium_N ; -OpticalDevice = AdjCN (PositA optical_A) (UseN device_N) ; -OrangeFruit = AdjCN (PositA orange_A) (UseN fruit_N) ; -Orchestra = UseN orchestra_N ; -OrchestralConducting = AdjCN (PositA orchestral_A) (UseN2 (VerbToNounV2 conduct_V2)) ; -Order = UseN order_N ; -OrganicCompound = AdjCN (PositA organic_A) (UseN compound_N) ; -OrganizationalBoard = AdjCN (PositA organizational_A) (UseN board_N) ; -OrganizationalMerging = AdjCN (PositA organizational_A) (UseN2 (VerbToNounV2 merge_V2)) ; -Orthography = UseN orthography_N ; -Ossification = UseN ossification_N ; -OutdoorClothing = AdjCN (PositA outdoor_A) (UseN clothing_N) ; -OuterSpaceRegion = AdjCN (PositA outer_A) (ApposCN (UseN space_N) (MassNP (UseN region_N))) ; -Oven = UseN oven_N ; -Owl = UseN owl_N ; -Oxidation = UseN oxidation_N ; -Paint = UseN paint_N ; -PaintedPicture = AdjCN (PositA (VerbToParticipeA paint_V)) (UseN picture_N) ; -Painting = UseN painting_N ; -Pancreas = UseN pancreas_N ; -Paper = UseN paper_N ; -Paragraph = UseN paragraph_N ; -Park = UseN park_N ; -ParkingLot = AdjCN (PositA (VerbToGerundA park_V2)) (UseN lot_N) ; -PartTimePosition = ApposCN (ApposCN (UseN part_N) (MassNP (UseN time_N))) (MassNP (UseN position_N)) ; -Partnership = UseN partnership_N ; -PartyPlatform = ApposCN (UseN party_N) (MassNP (UseN platform_N)) ; -PassCertificate = ApposCN (UseN pass_N) (MassNP (UseN certificate_N)) ; -PassingABill = ApposCN (UseN passing_N) (DetCN (DetQuant IndefArt NumSg) (UseN bill_N)) ; -Passport = UseN passport_N ; -Pea = UseN pea_N ; -PeaceKeepingMission = ApposCN (ApposCN (UseN peace_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 keep_V2)))) (MassNP (UseN mission_N)) ; -PearFruit = ApposCN (UseN pear_N) (MassNP (UseN fruit_N)) ; -Peeling = UseN2 (VerbToNounV2 peel_V2) ; -Pencil = UseN pencil_N ; -PensionPlan = ApposCN (UseN pension_N) (MassNP (UseN plan_N)) ; -PercussionInstrument = ApposCN (UseN percussion_N) (MassNP (UseN instrument_N)) ; -Performance = UseN performance_N ; -PerformanceAct = ApposCN (UseN performance_N) (MassNP (UseN act_N)) ; -PerformanceProgram = ApposCN (UseN performance_N) (MassNP (UseN program_N)) ; -PerformanceStage = ApposCN (UseN performance_N) (MassNP (UseN stage_N)) ; -PerformanceStageWing = ApposCN (ApposCN (UseN performance_N) (MassNP (UseN stage_N))) (MassNP (UseN wing_N)) ; -PeriodicalPublisher = AdjCN (PositA periodical_A) (UseN publisher_N) ; -PetroleumProduct = ApposCN (UseN petroleum_N) (MassNP (UseN product_N)) ; -Pharmacist = UseN pharmacist_N ; -Photograph = UseN photograph_N ; -PhotographicFilm = AdjCN (PositA photographic_A) (UseN film_N) ; -Photographing = UseN2 (VerbToNounV2 photograph_V2) ; -Piano = UseN piano_N ; -PictureFrame = ApposCN (UseN picture_N) (MassNP (UseN frame_N)) ; -Pig = UseN pig_N ; -Pigeon = UseN pigeon_N ; -Pillow = UseN pillow_N ; -Pistol = UseN pistol_N ; -PitchersMound = ApposCN (UseN pitcher_N) (MassNP (UseN mound_N)) ; -Pitching = UseN2 (VerbToNounV2 pitch_V2) ; -PituitaryGland = AdjCN (PositA pituitary_A) (UseN gland_N) ; -PlaceOfCommerce = AdvCN (UseN place_N) (PrepNP part_Prep (MassNP (UseN commerce_N))) ; -PlaceOfWorship = AdvCN (UseN place_N) (PrepNP part_Prep (MassNP (UseN worship_N))) ; -PlacingUnderArrest = AdvCN (UseN placing_N) (PrepNP under_Prep (MassNP (UseN arrest_N))) ; -PlantBranch = ApposCN (UseN plant_N) (MassNP (UseN branch_N)) ; -PlantLeaf = ApposCN (UseN plant_N) (MassNP (UseN leaf_N)) ; -PlantRoot = ApposCN (UseN plant_N) (MassNP (UseN root_N)) ; -PlayingCard = AdjCN (PositA (VerbToGerundA play_V2)) (UseN card_N) ; -Pleading = UseN2 (VerbToNounV2 plead_V2) ; -Plug = UseN plug_N ; -Pocket = UseN pocket_N ; -PoliticalCrime = AdjCN (PositA political_A) (UseN crime_N) ; -PoliticalFigure = AdjCN (PositA political_A) (UseN figure_N) ; -PoliticalRevolution = AdjCN (PositA political_A) (UseN revolution_N) ; -Polling = UseN2 (VerbToNounV2 poll_V2) ; -Polygon = UseN polygon_N ; -PolyphonicMusic = AdjCN (PositA polyphonic_A) (UseN music_N) ; -PopularElection = AdjCN (PositA popular_A) (UseN election_N) ; -Porch = UseN porch_N ; -Pork = UseN pork_N ; -Portrait = UseN portrait_N ; -PostSecondarySchool = ApposCN (UseN post_N) (MassNP (AdjCN (PositA secondary_A) (UseN school_N))) ; -PotOrPan = ConjCN or_Conj (BaseCN (UseN pot_N) (UseN pan_N)) ; -Pottery = UseN pottery_N ; -Pouring = UseN2 (VerbToNounV2 pour_V2) ; -Powder = UseN powder_N ; -Praying = UseN2 (VerbToNounV2 pray_V2) ; -PreparedFood = AdjCN (PositA (VerbToParticipeA prepare_V)) (UseN food_N) ; -PressureMeasuringDevice = ApposCN (ApposCN (UseN pressure_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 measure_V2)))) (MassNP (UseN device_N)) ; -Prison = UseN prison_N ; -PrivateSchool = AdjCN (PositA private_A) (UseN school_N) ; -Proclaiming = UseN2 (VerbToNounV2 proclaim_V2) ; -Profession = UseN profession_N ; -ProfitSharingPlan = ApposCN (ApposCN (UseN profit_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 share_V2)))) (MassNP (UseN plan_N)) ; -Projectile = UseN projectile_N ; -ProjectileLauncher = AdjCN (PositA projectile_A) (UseN launcher_N) ; -ProjectileShell = AdjCN (PositA projectile_A) (UseN shell_N) ; -ProjectionScreen = ApposCN (UseN projection_N) (MassNP (UseN screen_N)) ; -Psychosis = UseN psychosis_N ; -PublicDefender = AdjCN (PositA public_A) (UseN defender_N) ; -PublicLibrary = AdjCN (PositA public_A) (UseN library_N) ; -PublicPark = AdjCN (PositA public_A) (UseN park_N) ; -PublicProsecutor = AdjCN (PositA public_A) (UseN prosecutor_N) ; -PublicSchool = AdjCN (PositA public_A) (UseN school_N) ; -Publisher = UseN publisher_N ; -Pulling = UseN2 (VerbToNounV2 pull_V2) ; -PulmonaryArtery = AdjCN (PositA pulmonary_A) (UseN artery_N) ; -PulmonaryVein = AdjCN (PositA pulmonary_A) (UseN vein_N) ; -Pump = UseN pump_N ; -Punching = UseN2 (VerbToNounV2 punch_V2) ; -Punishing = UseN2 (VerbToNounV2 punish_V2) ; -Quadrilateral = UseN quadrilateral_N ; -QueenInsect = ApposCN (UseN queen_N) (MassNP (UseN insect_N)) ; -Question = UseN question_N ; -Rabbit = UseN rabbit_N ; -Racing = UseN racing_N ; -Radar = UseN radar_N ; -RadiatingVisibleLight = AdjCN (PositA (VerbToGerundA radiate_V2)) (AdjCN (PositA visible_A) (UseN light_N)) ; -RadioBroadcasting = ApposCN (UseN radio_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 broadcast_V2))) ; -RadioEmission = ApposCN (UseN radio_N) (MassNP (UseN emission_N)) ; -RadioReceiver = ApposCN (UseN radio_N) (MassNP (UseN receiver_N)) ; -RadioactiveWeapon = AdjCN (PositA radioactive_A) (UseN weapon_N) ; -Radish = UseN radish_N ; -RailroadCompany = ApposCN (UseN railroad_N) (MassNP (UseN company_N)) ; -Ramp = UseN ramp_N ; -Raping = UseN2 (VerbToNounV2 rape_V2) ; -Rat = UseN rat_N ; -Rattlesnake = UseN rattlesnake_N ; -RawFood = AdjCN (PositA raw_A) (UseN food_N) ; -RearWindow = ApposCN (UseN rear_N) (MassNP (UseN window_N)) ; -ReceiverDevice = ApposCN (UseN receiver_N) (MassNP (UseN device_N)) ; -Reciting = UseN2 (VerbToNounV2 recite_V2) ; -RecoveringFromIllness = AdvCN (UseN2 (VerbToNounV2 recover_V2)) (PrepNP from_Prep (MassNP (UseN illness_N))) ; -RecreationOrExerciseDevice = ApposCN (ConjCN or_Conj (BaseCN (UseN recreation_N) (UseN exercise_N))) (MassNP (UseN device_N)) ; -Rectangle = UseN rectangle_N ; -RedBloodCell = AdjCN (PositA red_A) (ApposCN (UseN blood_N) (MassNP (UseN cell_N))) ; -RedcoatSoldier = ApposCN (UseN redcoat_N) (MassNP (UseN soldier_N)) ; -ReferenceBook = ApposCN (UseN reference_N) (MassNP (UseN book_N)) ; -ReferenceText = ApposCN (UseN reference_N) (MassNP (UseN text_N)) ; -Reflecting = UseN2 (VerbToNounV2 reflect_V2) ; -ReflectingLight = AdjCN (PositA (VerbToGerundA reflect_V2)) (UseN light_N) ; -ReflexiveProcess = AdjCN (PositA reflexive_A) (UseN process_N) ; -Refrigerator = UseN refrigerator_N ; -Registering = UseN2 (VerbToNounV2 register_V2) ; -Regretting = UseN2 (VerbToNounV2 regret_V2) ; -RelievingPain = AdjCN (PositA (VerbToGerundA relieve_V2)) (UseN pain_N) ; -ReligiousBuilding = AdjCN (PositA religious_A) (UseN building_N) ; -ReligiousFigure = AdjCN (PositA religious_A) (UseN figure_N) ; -ReligiousPosition = AdjCN (PositA religious_A) (UseN position_N) ; -ReligiousService = AdjCN (PositA religious_A) (UseN service_N) ; -Reminding = UseN2 (VerbToNounV2 remind_V2) ; -RemovingClothing = AdjCN (PositA (VerbToGerundA remove_V2)) (UseN clothing_N) ; -Renting = UseN2 (VerbToNounV2 rent_V2) ; -Report = UseN report_N ; -Request = UseN request_N ; -Researcher = UseN researcher_N ; -Resigning = UseN2 (VerbToNounV2 resign_V2) ; -Resolution = UseN resolution_N ; -Restaurant = UseN restaurant_N ; -RestaurantBuilding = ApposCN (UseN restaurant_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 build_V2))) ; -RetailStore = ApposCN (UseN retail_N) (MassNP (UseN store_N)) ; -Retina = UseN retina_N ; -Retiring = UseN2 (VerbToNounV2 retire_V2) ; -Returning = UseN2 (VerbToNounV2 return_V2) ; -Reversing = UseN2 (VerbToNounV2 reverse_V2) ; -RevolverGun = ApposCN (UseN revolver_N) (MassNP (UseN gun_N)) ; -RiceGrain = ApposCN (UseN rice_N) (MassNP (UseN grain_N)) ; -Rifle = UseN rifle_N ; -RightAngle = AdjCN (PositA right_A) (UseN angle_N) ; -RightTriangle = AdjCN (PositA right_A) (UseN triangle_N) ; -Ringing = UseN2 (VerbToNounV2 ring_V2) ; -Road = UseN road_N ; -RoadTransportationSystem = ApposCN (ApposCN (UseN road_N) (MassNP (UseN transportation_N))) (MassNP (UseN system_N)) ; -RoadVehicle = ApposCN (UseN road_N) (MassNP (UseN vehicle_N)) ; -Robbing = UseN2 (VerbToNounV2 rob_V2) ; -Rocket = UseN rocket_N ; -RocketMissileAttack = ApposCN (ApposCN (UseN rocket_N) (MassNP (UseN missile_N))) (MassNP (UseN attack_N)) ; -Roof = UseN roof_N ; -Rooster = UseN rooster_N ; -Rotating = UseN2 (VerbToNounV2 rotate_V2) ; -Rotor = UseN rotor_N ; -Rowing = UseN rowing_N ; -Rubber = UseN rubber_N ; -Rug = UseN rug_N ; -Saddle = UseN saddle_N ; -SafeContainer = AdjCN (PositA safe_A) (UseN container_N) ; -Sailor = UseN sailor_N ; -Sales = UseN sale_N ; -SalesPosition = ApposCN (UseN sale_N) (MassNP (UseN position_N)) ; -SalineSolution = AdjCN (PositA saline_A) (UseN solution_N) ; -Sandal = UseN sandal_N ; -Sandwich = UseN sandwich_N ; -Saving = UseN saving_N ; -Scar = UseN scar_N ; -Scholarship = UseN scholarship_N ; -School = UseN school_N ; -Science = UseN science_N ; -Score = UseN score_N ; -Screw = UseN screw_N ; -Screwdriver = UseN screwdriver_N ; -Script = UseN script_N ; -Sculpture = UseN sculpture_N ; -SeasonOfYear = AdvCN (UseN season_N) (PrepNP part_Prep (MassNP (UseN year_N))) ; -Seat = UseN seat_N ; -Seating = UseN2 (VerbToNounV2 seat_V2) ; -SecondarySchool = AdjCN (PositA secondary_A) (UseN school_N) ; -SecurityAlarm = ApposCN (UseN security_N) (MassNP (UseN alarm_N)) ; -SecurityDevice = ApposCN (UseN security_N) (MassNP (UseN device_N)) ; -SecurityUnit = ApposCN (UseN security_N) (MassNP (UseN unit_N)) ; -SeizingProperty = AdjCN (PositA (VerbToGerundA seize_V2)) (UseN property_N) ; -SelfPoweredDevice = ApposCN (UseN self_N) (MassNP (AdjCN (PositA powered_A) (UseN device_N))) ; -SelfPoweredRoadVehicle = ApposCN (ApposCN (UseN self_N) (MassNP (AdjCN (PositA powered_A) (UseN road_N)))) (MassNP (UseN vehicle_N)) ; -Sentencing = UseN2 (VerbToNounV2 sentence_V2) ; -Sergeant = UseN sergeant_N ; -Sermon = UseN sermon_N ; -Serum = UseN serum_N ; -ServiceOrganization = ApposCN (UseN service_N) (MassNP (UseN organization_N)) ; -ServicePosition = ApposCN (UseN service_N) (MassNP (UseN position_N)) ; -Serving = UseN serving_N ; -SewageSystem = ApposCN (UseN sewage_N) (MassNP (UseN system_N)) ; -Sewing = UseN sewing_N ; -Sharing = UseN2 (VerbToNounV2 share_V2) ; -Sheep = UseN sheep_N ; -Shelf = UseN shelf_N ; -Sheriff = UseN sheriff_N ; -Shield = UseN shield_N ; -ShipCaptain = ApposCN (UseN ship_N) (MassNP (UseN captain_N)) ; -ShipMate = ApposCN (UseN ship_N) (MassNP (UseN mate_1_N)) ; -ShipOfficer = ApposCN (UseN ship_N) (MassNP (UseN officer_N)) ; -Shipping = UseN shipping_N ; -Shirt = UseN shirt_N ; -Shoe = UseN shoe_N ; -ShoeSole = ApposCN (UseN shoe_N) (MassNP (UseN sole_N)) ; -ShortStory = AdjCN (PositA short_A) (UseN story_N) ; -Shortening = UseN shortening_N ; -ShotBall = AdjCN (PositA (VerbToParticipeA shoot_V)) (UseN ball_N) ; -Shoulder = UseN shoulder_N ; -Shrugging = UseN2 (VerbToNounV2 shrug_V2) ; -Sidewalk = UseN sidewalk_N ; -Signalling = UseN2 (VerbToNounV2 signal_V2) ; -Silk = UseN silk_N ; -Sinking = UseN sinking_N ; -SittingDown = AdjCN (PositA (VerbToGerundA sit_V2)) (UseN down_N) ; -Skeleton = UseN skeleton_N ; -Sketch = UseN sketch_N ; -SkilledOccupation = AdjCN (PositA skilled_A) (UseN occupation_N) ; -Skin = UseN skin_N ; -Skull = UseN skull_N ; -Skylight = UseN skylight_N ; -Sleeve = UseN sleeve_N ; -Smiling = UseN2 (VerbToNounV2 smile_V2) ; -Smoking = UseN smoking_N ; -SmokingDevice = AdjCN (PositA (VerbToGerundA smoke_V2)) (UseN device_N) ; -SmokingPipe = AdjCN (PositA (VerbToGerundA smoke_V2)) (UseN pipe_N) ; -Smuggling = UseN2 (VerbToNounV2 smuggle_V2) ; -Snake = UseN snake_N ; -SoberingUp = AdvCN (UseN2 (VerbToNounV2 sober_V2)) up_Adv ; -SocialParty = AdjCN (PositA social_A) (UseN party_N) ; -SocialScience = AdjCN (PositA social_A) (UseN science_N) ; -Sock = UseN sock_N ; -SodiumChloride = ApposCN (UseN sodium_N) (MassNP (UseN chloride_N)) ; -Sofa = UseN sofa_N ; -Soldering = UseN2 (VerbToNounV2 solder_V2) ; -Soldier = UseN soldier_N ; -Somersaulting = UseN (VerbToNoun somersault_V) ; -Sonar = UseN sonar_N ; -Song = UseN song_N ; -SoupStock = ApposCN (UseN soup_N) (MassNP (UseN stock_N)) ; -SpaceRegion = ApposCN (UseN space_N) (MassNP (UseN region_N)) ; -SpaceTransportation = ApposCN (UseN space_N) (MassNP (UseN transportation_N)) ; -Spacecraft = UseN spacecraft_N ; -Spear = UseN spear_N ; -Sphere = UseN sphere_N ; -SpinalColumn = AdjCN (PositA spinal_A) (UseN column_N) ; -SpinalCord = AdjCN (PositA spinal_A) (UseN cord_N) ; -Spitting = UseN spitting_N ; -Spleen = UseN spleen_N ; -SportServe = ApposCN (UseN sport_N) (MassNP (UseN serve_N)) ; -SportsAttribute = ApposCN (UseN sport_N) (MassNP (UseN attribute_N)) ; -SportsFacility = ApposCN (UseN sport_N) (MassNP (UseN facility_N)) ; -SportsGround = ApposCN (UseN sport_N) (MassNP (UseN ground_N)) ; -SportsLeague = ApposCN (UseN sport_N) (MassNP (UseN league_N)) ; -SportsPlay = ApposCN (UseN sport_N) (MassNP (UseN play_N)) ; -SportsPosition = ApposCN (UseN sport_N) (MassNP (UseN position_N)) ; -SportsTeam = ApposCN (UseN sport_N) (MassNP (UseN team_N)) ; -Spraying = UseN2 (VerbToNounV2 spray_V2) ; -SpringSeason = ApposCN (UseN spring_N) (MassNP (UseN season_N)) ; -Square = UseN square_N ; -Squirrel = UseN squirrel_N ; -StageCoach = ApposCN (UseN stage_N) (MassNP (UseN coach_N)) ; -Stairway = UseN stairway_N ; -StandingUp = AdvCN (UseN standing_N) up_Adv ; -Starch = UseN starch_N ; -Starving = UseN2 (VerbToNounV2 starve_V2) ; -StateGovernment = ApposCN (UseN state_N) (MassNP (UseN government_N)) ; -Statement = UseN statement_N ; -Stealing = UseN2 (VerbToNounV2 steal_V2) ; -SteamEngine = ApposCN (UseN steam_N) (MassNP (UseN engine_N)) ; -Steel = UseN steel_N ; -Steeple = UseN steeple_N ; -SteeringWheel = AdjCN (PositA (VerbToGerundA steer_V2)) (UseN wheel_N) ; -Stepping = UseN2 (VerbToNounV2 step_V2) ; -Steps = UseN step_N ; -Stimulant = UseN stimulant_N ; -Stirring = UseN2 (VerbToNounV2 stir_V2) ; -Stomach = UseN stomach_N ; -Stoning = UseN2 (VerbToNounV2 stone_V2) ; -Store = UseN store_N ; -StormFront = ApposCN (UseN storm_N) (MassNP (UseN front_N)) ; -Stove = UseN stove_N ; -Strangling = UseN2 (VerbToNounV2 strangle_V2) ; -Streetcar = UseN streetcar_N ; -Stretching = UseN2 (VerbToNounV2 stretch_V2) ; -String = UseN string_N ; -StringInstrument = ApposCN (UseN string_N) (MassNP (UseN instrument_N)) ; -Submarine = UseN submarine_N ; -Subway = UseN subway_N ; -SubwaySystem = ApposCN (UseN subway_N) (MassNP (UseN system_N)) ; -Suffocating = UseN2 (VerbToNounV2 suffocate_V2) ; -Sugar = UseN sugar_N ; -Suicide = UseN suicide_N ; -SuicideBombing = ApposCN (UseN suicide_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 bomb_V2))) ; -SummerSeason = ApposCN (UseN summer_N) (MassNP (UseN season_N)) ; -Sunlight = UseN sunlight_N ; -Sunrise = UseN sunrise_N ; -Sunset = UseN sunset_N ; -Supposition = UseN supposition_N ; -Surgeon = UseN surgeon_N ; -Sweat = UseN sweat_N ; -Sweeping = UseN sweeping_N ; -SwimmingPool = AdjCN (PositA (VerbToGerundA swim_V2)) (UseN pool_N) ; -SwitchDevice = ApposCN (UseN switch_N) (MassNP (UseN device_N)) ; -Sword = UseN sword_N ; -Syllable = UseN syllable_N ; -Table = UseN table_N ; -Tableware = UseN tableware_N ; -Tail = UseN tail_N ; -TakingIll = AdjCN (PositA taking_A) (UseN ill_N) ; -TakingOff = AdvCN (UseN2 (VerbToNounV2 betake_V2)) off_Adv ; -Tape = UseN tape_N ; -Tavern = UseN tavern_N ; -TaxReturn = ApposCN (UseN tax_N) (MassNP (UseN return_N)) ; -Taxicab = UseN taxicab_N ; -Taxonomy = UseN taxonomy_N ; -Tea = UseN tea_N ; -TeamSport = ApposCN (UseN team_N) (MassNP (UseN sport_N)) ; -TearSubstance = ApposCN (UseN tear_N) (MassNP (UseN substance_N)) ; -Teenager = UseN teenager_N ; -Telegraph = UseN telegraph_N ; -Telephone = UseN telephone_N ; -TelephoneLine = ApposCN (UseN telephone_N) (MassNP (UseN line_N)) ; -Telephoning = UseN2 (VerbToNounV2 telephone_V2) ; -TelevisionBroadcasting = ApposCN (UseN television_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 broadcast_V2))) ; -TelevisionReceiver = ApposCN (UseN television_N) (MassNP (UseN receiver_N)) ; -TellingALie = ApposCN (UseN2 (VerbToNounV2 foretell_V2)) (DetCN (DetQuant IndefArt NumSg) (UseN lie_N)) ; -Tendon = UseN tendon_N ; -Tent = UseN tent_N ; -TerroristOrganization = ApposCN (UseN terrorist_N) (MassNP (UseN organization_N)) ; -TestForm = ApposCN (UseN test_N) (MassNP (UseN form_N)) ; -Testament = UseN testament_N ; -Testifying = UseN2 (VerbToNounV2 testify_V2) ; -Thanking = UseN2 (VerbToNounV2 thank_V2) ; -Thermometer = UseN thermometer_N ; -Threatening = UseN2 (VerbToNounV2 threaten_V2) ; -Throat = UseN throat_N ; -Throwing = UseN2 (VerbToNounV2 throw_V2) ; -Thumb = UseN thumb_N ; -Thunder = UseN thunder_N ; -ThyroidGland = ApposCN (UseN thyroid_N) (MassNP (UseN gland_N)) ; -ThyroidHormone = ApposCN (UseN thyroid_N) (MassNP (UseN hormone_N)) ; -Ticket = UseN ticket_N ; -TieClothing = ApposCN (UseN tie_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 clothe_V2))) ; -Tilling = UseN2 (VerbToNounV2 till_V2) ; -Toad = UseN toad_N ; -Tobacco = UseN tobacco_N ; -Toe = UseN toe_N ; -Toilet = UseN toilet_N ; -Tomb = UseN tomb_N ; -TonalLanguage = AdjCN (PositA tonal_A) (UseN language_N) ; -Tongue = UseN tongue_N ; -Tooth = UseN tooth_N ; -Toothbrush = UseN toothbrush_N ; -Torso = UseN torso_N ; -TouristSite = ApposCN (UseN tourist_N) (MassNP (UseN site_N)) ; -Towel = UseN towel_N ; -Tracing = UseN tracing_N ; -TractorTrailer = ApposCN (UseN tractor_N) (MassNP (UseN trailer_N)) ; -TransferringPosition = AdjCN (PositA (VerbToGerundA transfer_V2)) (UseN position_N) ; -TransportationCompany = ApposCN (UseN transportation_N) (MassNP (UseN company_N)) ; -TrapOrCage = ConjCN or_Conj (BaseCN (UseN trap_N) (UseN cage_N)) ; -TravelContainer = ApposCN (UseN travel_N) (MassNP (UseN container_N)) ; -Tray = UseN tray_N ; -Treasurer = UseN treasurer_N ; -TreeBranch = ApposCN (UseN tree_N) (MassNP (UseN branch_N)) ; -Trembling = UseN (VerbToNoun tremble_V) ; -Tremor = UseN tremor_N ; -Trespassing = UseN (VerbToNoun trespass_V) ; -Triangle = UseN triangle_N ; -Trousers = UseN trouser_N ; -Truck = UseN truck_N ; -TruckTractor = ApposCN (UseN truck_N) (MassNP (UseN tractor_N)) ; -TruckTrailer = ApposCN (UseN truck_N) (MassNP (UseN trailer_N)) ; -Tube = UseN tube_N ; -Turbine = UseN turbine_N ; -TurningOffDevice = AdjCN (PositA (VerbToGerundA turn_V2)) (AdjCN (PositA off_A) (UseN device_N)) ; -TurningOnDevice = AdvCN (UseN turning_N) (PrepNP on_Prep (MassNP (UseN device_N))) ; -TwoDimensionalObject = AdjCN (PositA (compoundA (regA "two-dimensional"))) (UseN object_N) ; -UnionOrganization = ApposCN (UseN union_N) (MassNP (UseN organization_N)) ; -UnionSoldier = ApposCN (UseN union_N) (MassNP (UseN soldier_N)) ; -University = UseN university_N ; -UnskilledOccupation = AdjCN (PositA unskilled_A) (UseN occupation_N) ; -Vacationing = UseN (VerbToNoun vacation_V) ; -Vandalism = UseN vandalism_N ; -VehicleAttack = ApposCN (UseN vehicle_N) (MassNP (UseN attack_N)) ; -VehicleBrake = ApposCN (UseN vehicle_N) (MassNP (UseN brake_N)) ; -VehicleController = ApposCN (UseN vehicle_N) (MassNP (UseN controller_N)) ; -VehicleLight = AdvCN (UseN vehicle_N) light_Adv ; -VehicleThrottle = ApposCN (UseN vehicle_N) (MassNP (UseN throttle_N)) ; -VehicleTire = ApposCN (UseN vehicle_N) (MassNP (UseN tire_N)) ; -VehicleWheel = ApposCN (UseN vehicle_N) (MassNP (UseN wheel_N)) ; -VehicleWindow = ApposCN (UseN vehicle_N) (MassNP (UseN window_N)) ; -Veil = UseN veil_N ; -Vein = UseN vein_N ; -VendingDevice = AdjCN (PositA (VerbToGerundA vend_V2)) (UseN device_N) ; -VideoRecording = ApposCN (UseN video_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 record_V2))) ; -Violin = UseN violin_N ; -VocalMusic = AdjCN (PositA vocal_A) (UseN music_N) ; -VocationalSchool = AdjCN (PositA vocational_A) (UseN school_N) ; -VotingPoll = AdjCN (PositA (VerbToGerundA vote_V2)) (UseN poll_N) ; -Vowel = UseN vowel_N ; -Vulture = UseN vulture_N ; -Wading = UseN2 (VerbToNounV2 wade_V2) ; -WakingUp = AdvCN (UseN2 (VerbToNounV2 wake_V2)) up_Adv ; -WalkingCane = AdjCN (PositA (VerbToGerundA walk_V2)) (UseN cane_N) ; -Wall = UseN wall_N ; -Wallpaper = UseN wallpaper_N ; -Warehouse = UseN warehouse_N ; -WashBasin = ApposCN (UseN wash_N) (MassNP (UseN basin_N)) ; -Washing = UseN washing_N ; -WashingDevice = AdjCN (PositA (VerbToGerundA wash_V2)) (UseN device_N) ; -Wastebasket = UseN wastebasket_N ; -WatchClock = ApposCN (UseN watch_N) (MassNP (UseN clock_N)) ; -WaterTransportation = ApposCN (UseN water_N) (MassNP (UseN transportation_N)) ; -WaterWave = ApposCN (UseN water_N) (MassNP (UseN wave_N)) ; -Waving = UseN2 (VerbToNounV2 wave_V2) ; -Wax = UseN wax_N ; -WeaponOfMassDestruction = AdvCN (UseN weapon_N) (PrepNP part_Prep (MassNP (ApposCN (UseN mass_N) (MassNP (UseN destruction_N))))) ; -Weekend = UseN weekend_N ; -Weeping = UseN2 (VerbToNounV2 weep_V2) ; -Welfare = UseN welfare_N ; -WheatGrain = ApposCN (UseN wheat_N) (MassNP (UseN grain_N)) ; -Wheel = UseN wheel_N ; -Whip = UseN whip_N ; -Whiskey = UseN whiskey_N ; -WhiteBloodCell = AdjCN (PositA white_A) (ApposCN (UseN blood_N) (MassNP (UseN cell_N))) ; -WholesaleStore = AdjCN (PositA wholesale_A) (UseN store_N) ; -WillowTree = ApposCN (UseN willow_N) (MassNP (UseN tree_N)) ; -WindInstrument = ApposCN (UseN wind_N) (MassNP (UseN instrument_N)) ; -Windmill = UseN windmill_N ; -Window = UseN window_N ; -WindowCovering = ApposCN (UseN window_N) (DetCN (DetQuant IndefArt NumSg) (UseN2 (VerbToNounV2 cover_V2))) ; -Windshield = UseN windshield_N ; -Wine = UseN wine_N ; -Wing = UseN wing_N ; -WingDevice = ApposCN (UseN wing_N) (MassNP (UseN device_N)) ; -Winking = UseN2 (VerbToNounV2 wink_V2) ; -WinterSeason = ApposCN (UseN winter_N) (MassNP (UseN season_N)) ; -Wire = UseN wire_N ; -WireLine = ApposCN (UseN wire_N) (MassNP (UseN line_N)) ; -WireSpring = ApposCN (UseN wire_N) (MassNP (UseN spring_N)) ; -Wood = UseN wood_N ; -WoodArtifact = ApposCN (UseN wood_N) (MassNP (UseN artifact_N)) ; -Wool = UseN wool_N ; -WorkerInsect = ApposCN (UseN worker_N) (MassNP (UseN insect_N)) ; -Working = UseN working_N ; -Workshop = UseN workshop_N ; -Wrist = UseN wrist_N ; -WritingDevice = AdjCN (PositA (VerbToGerundA rewrite_V2)) (UseN device_N) ; -WrittenCommunication = AdjCN (PositA (VerbToParticipeA write_V)) (UseN communication_N) ; -LegislativeOrganization = AdjCN (PositA legislative_A) (UseN organization_N) ; -CommunicationDevice = ApposCN (UseN communication_N) (MassNP (UseN device_N)) ; -PassengerVehicle = ApposCN (UseN passenger_N) (MassNP (UseN vehicle_N)) ; -PowerSource = ApposCN (UseN power_N) (MassNP (UseN source_N)) ; -MilitaryGeneral = AdjCN (PositA military_A) (UseN general_N) ; -Cave = UseN cave_N ; -DairyProduct = ApposCN (UseN dairy_N) (MassNP (UseN product_N)) ; -PoliticalParty = AdjCN (PositA political_A) (UseN party_N) ; -BodyOfWater = AdvCN (UseN body_N) (PrepNP part_Prep (MassNP (UseN water_N))) ; -AnimalAgriculturalProduct = ApposCN (UseN animal_N) (MassNP (AdjCN (PositA agricultural_A) (UseN product_N))) ; -AgriculturalProduct = AdjCN (PositA agricultural_A) (UseN product_N) ; -Livestock = UseN livestock_N ; -Tax = UseN tax_N ; -ChargingAFee = ApposCN (UseN2 (VerbToNounV2 charge_V2)) (DetCN (DetQuant IndefArt NumSg) (UseN fee_N)) ; -GeneralElection = AdjCN (PositA general_A) (UseN election_N) ; -BaseballBase = ApposCN (UseN baseball_N) (MassNP (UseN base_N)) ; -Attorney = UseN attorney_N ; -RefinedPetroleumProduct = AdjCN (PositA (VerbToParticipeA refine_V)) (ApposCN (UseN petroleum_N) (MassNP (UseN product_N))) ; -GroceryProduce = ApposCN (UseN grocery_N) (MassNP (UseN produce_N)) ; -PlantAgriculturalProduct = ApposCN (UseN plant_N) (MassNP (AdjCN (PositA agricultural_A) (UseN product_N))) ; -Rock = UseN rock_N ; -Ship = UseN ship_N ; -DisplacementHullWaterVehicle = ApposCN (ApposCN (ApposCN (UseN displacement_N) (MassNP (UseN hull_N))) (MassNP (UseN water_N))) (MassNP (UseN vehicle_N)) ; -WaterVehicle = ApposCN (UseN water_N) (MassNP (UseN vehicle_N)) ; -PoweredVehicle = AdjCN (PositA powered_A) (UseN vehicle_N) ; -RollingStock = AdjCN (PositA (VerbToGerundA roll_V2)) (UseN stock_N) ; -RailVehicle = ApposCN (UseN rail_N) (MassNP (UseN vehicle_N)) ; -FinancialAccount = AdjCN (PositA financial_A) (UseN account_N) ; -MiningProduct = AdjCN (PositA (VerbToGerundA mine_V2)) (UseN product_N) ; -Celebrity = UseN celebrity_N ; -TransitSystem = ApposCN (UseN transit_N) (MassNP (UseN system_N)) ; -Pipeline = UseN pipeline_N ; -RailTransportationSystem = ApposCN (ApposCN (UseN rail_N) (MassNP (UseN transportation_N))) (MassNP (UseN system_N)) ; -MedicalDoctor = AdjCN (PositA medical_A) (UseN doctor_N) ; -CargoVehicle = ApposCN (UseN cargo_N) (MassNP (UseN vehicle_N)) ; -BotanicalTree = AdjCN (PositA botanical_A) (UseN tree_N) ; -Stock = UseN stock_N ; -Investment = UseN investment_N ; -FinancialAsset = AdjCN (PositA financial_A) (UseN asset_N) ; - --- unary functions : - -DescendantsFn ob = AdvNP (DetCN (DetQuant DefArt NumPl) (UseN descendant_N)) (PrepNP part_Prep ob) ; -DiameterFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN diameter_N)) (PrepNP part_Prep ob) ; -FirstFn ob = AdvNP (DetCN (DetQuantOrd DefArt NumSg (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01)))))) (UseN element_N)) (PrepNP part_Prep ob) ; -LastFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA last_A) (UseN element_N))) (PrepNP part_Prep ob) ; -OccupationFn ob = AdvCN (UseN occupation_N) (PrepNP part_Prep ob) ; -RadiusFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN radius_N)) (PrepNP part_Prep ob) ; -ResidentFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (UseN resident_N)) (PrepNP part_Prep ob) ; -StartFn ob = AdvCN (UseN start_N) (PrepNP part_Prep ob) ; -StopFn ob = AdvCN (UseN stop_N) (PrepNP part_Prep ob) ; -CitizenryFn ob = AdvNP (DetCN (DetQuant DefArt NumPl) (UseN citizen_N)) (PrepNP part_Prep ob) ; - - --- quaternary functions : -StreetAddressFn ob1 ob2 ob3 ob4= AdvNP (DetCN (DetQuant DefArt NumSg) (UseN inhabitant_N)) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (ApposCN (ApposCN (ApposCN (UseN address_N) ob1) ob2) ob3) ob4))) ; - - - --- ternary predicates : -areaOfResponsibility ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompAP (PositA responsible_A))) (PrepNP for_Prep (MassNP ob2))) (PrepNP in_Prep ob3))) ; -subordinateInOrganization ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN subordinate_N)))) (PrepNP part_Prep ob2)) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN organization_N) ob3))))) ; -subordinatePosition ob1 ob2 ob3 = mkPolSent (PredVP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN holder_N)) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN position_N) ob1)))) (AdvVP (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN subordinate_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (UseN holder_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN position_N) ob2)))) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN organization_N) ob3))))) ; -equipmentCount ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (PassV2 equip_V2) (PrepNP with_Prep (DetCN (DetQuant IndefArt NumSg) (ApposCN (AdvCN (UseN number_N) (PrepNP part_Prep (MassNP ob2))) (DetCN (DetQuant IndefArt NumPl) (UseN device_N)))))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN type_N) ob3))))) ; -memberTypeCount ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumSg) (ApposCN (AdvCN (UseN number_N) (PrepNP part_Prep ob2)) (DetCN (DetQuant IndefArt NumPl) (UseN member_N))))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN type_N) ob3))))) ; -memberAtTime ob1 ob2 ob3 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN member_N)))) (PrepNP part_Prep ob2)) (PrepNP at_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN time_N) ob3))))) ; -locatedAtTime ob1 ob2 ob3 = mkPolSent (PredVP ob1 (UseComp (CompAdv (ConjAdv and_Conj (BaseAdv (PrepNP at_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN time_N) ob2))) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN place_N) ob3)))))))) ; - --- quaternary predicates - -monetaryWage ob1 ob2 ob3 ob4 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (AdvVP (ComplSlash (SlashV2a employ_V2) ob2) (PrepNP with_Prep (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA monetary_A) (UseN wage_N))))) (PrepNP part_Prep ob3)) (PrepNP per_Prep ob4))) ; - - --- binary predicates - -address ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN address_N)))) (PrepNP part_Prep ob1))) ; -affiliatedOrganization ob1 ob2 = mkPolSent (PredVP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN organization_N) ob1)) (AdvVP (PassV2 affiliate_V2) (PrepNP to_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN organization_N) ob2))))) ; -alias ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN alias_N)))) (PrepNP for_Prep ob2))) ; -ancestorOrganization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN ancestor_N) (MassNP (UseN organization_N)))))) (PrepNP part_Prep ob2))) ; -anniversary ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN anniversary_N)))) (PrepNP part_Prep ob2))) ; -axis ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN axis_N)))) (PrepNP part_Prep ob2))) ; -benefits ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a benefit_V2) ob2)) ; -birthdate ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN birth_N) (MassNP (UseN date_N)))))) (PrepNP part_Prep ob2))) ; -birthplace ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN birth_N) (MassNP (UseN place_N)))))) (PrepNP part_Prep ob2))) ; -capacity ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN capacity_N)))) (PrepNP part_Prep ob2))) ; -cohabitant ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA same_A) (UseN home_N))))) ; -coworker ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (AdvVP (UseV work_V) together_Adv)) ; -deathdate ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN death_N) (MassNP (UseN date_N)))))) (PrepNP part_Prep ob2))) ; -deathplace ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN death_N) (MassNP (UseN place_N)))))) (PrepNP part_Prep ob2))) ; -deviceState ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAdv (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN state_N) ob2)))))) ; -disapproves ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseV disapprove_V) (PrepNP part_Prep (sentToNoun ob2)))) ; -domesticPartner ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA domestic_A) (ApposCN (UseN partner_N) ob2)))))) ; -doubts ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a doubt_V2) (sentToNoun ob2))) ; -effectiveRange ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA effective_A) (UseN range_N))))) (PrepNP part_Prep ob2))) ; -electronNumber ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN electron_N) (MassNP (UseN number_N)))))) (PrepNP part_Prep ob2))) ; -equipmentType ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumSg) (UseN component_N))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN type_N) ob2))))) ; -grammaticalRelation ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA grammatical_A) (UseN relation_N)))) (PrepNP to_Prep ob2))) ; -grandparent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN grandparent_N)))) (PrepNP part_Prep ob2))) ; -hasExpertise ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (MassNP (UseN expertise_N))) (PrepNP in_Prep ob2))) ; -hasOccupation ob1 ob2 = mkPolSent (PredVP (MassNP ob2) (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN occupation_N)))) (PrepNP part_Prep ob1))) ; -hostileForces ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA hostile_A) (UseN force_N)))))) ; -humanCapacity ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumSg) (ApposCN (AdvCN (UseN capacity_N) (PrepNP part_Prep ob2)) (DetCN (DetQuant IndefArt NumPl) (UseN human_N)))))) ; -ideologicalAffiliationOfOrganization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA ideological_A) (UseN affiliation_N))))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN organization_N) ob2))))) ; -intelligenceQuotient ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN intelligence_N) (MassNP (UseN quotient_N))))) (PrepNP part_Prep ob2))) ; -inventory ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN inventory_N)))) (PrepNP part_Prep ob2))) ; -landlord ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN landlord_N)))) (PrepNP part_Prep ob2))) ; -legalGuardian ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA legal_A) (UseN guardian_N))))) (PrepNP part_Prep ob2))) ; -measurementReading ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumPl) (UseN2 (VerbToNounV2 lip_read_V2))))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN measurement_N) ob2))))) ; -medicalPatient ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA medical_A) (UseN patient_N))))) (PrepNP part_Prep ob2))) ; -memberCount ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a have_V2) (DetCN (DetQuant IndefArt NumSg) (ApposCN (AdvCN (UseN number_N) (PrepNP part_Prep ob2)) (DetCN (DetQuant IndefArt NumPl) (UseN member_N)))))) ; -memberType ob1 ob2 = mkPolSent (PredVP (AdvNP (DetCN (DetQuant DefArt NumPl) (UseN member_N)) (PrepNP part_Prep ob1)) (AdvVP (UseV belong_V) (PrepNP to_Prep ob2))) ; -mutualStranger ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (UseComp (CompNP (DetCN (DetQuant IndefArt NumPl) (AdjCN (PositA mutual_A) (UseN stranger_N)))))) ; -neighbor ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN neighbour_N)))) (PrepNP part_Prep ob2))) ; -occupation ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN occupation_N)))) (PrepNP part_Prep ob1))) ; -older ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompAP (ComparA old_A ob2)))) ; -operator ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN operator_N)))) (PrepNP part_Prep ob1))) ; -parasite ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN parasite_N)))) (PrepNP part_Prep ob2))) ; -pathInSystem ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN path_N)))) (PrepNP in_Prep ob2))) ; -patientMedical ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN patient_N)))) (PrepNP part_Prep ob2))) ; -potentialOfHydrogen ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN potential_N)))) (PrepNP part_Prep (MassNP (UseN hydrogen_N)))) (PrepNP part_Prep ob2))) ; -powerPlant ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN power_N) (MassNP (UseN plant_N)))))) (PrepNP part_Prep ob2))) ; -protonNumber ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN proton_N) (MassNP (UseN number_N)))))) (PrepNP part_Prep ob2))) ; -religiousAffiliationOfOrganization ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA religious_A) (UseN affiliation_N))))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN organization_N) ob2))))) ; -secretesSubstance ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (ComplSlash (SlashV2a secrete_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN substance_N) (MassNP ob2))))) ; -sliceOfFigure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN slice_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN figure_N) ob2))))) ; -speaksLanguage ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a bespeak_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2)))) ; -stranger ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN stranger_N)))) (PrepNP to_Prep ob2))) ; -tangent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (MassNP (UseN tangent_N)))) (PrepNP to_Prep ob2))) ; -tenant ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN tenant_N)))) (PrepNP part_Prep ob2))) ; -transported ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 transport_V2) (PrepNP in_Prep ob2))) ; -yearOfFounding ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN year_N)))) (PrepNP part_Prep (DetCN (DetQuant IndefArt NumPl) (UseN2 (VerbToNounV2 found_V2))))) (PrepNP part_Prep ob2))) ; -wavelength ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN wavelength_N)))) (PrepNP part_Prep ob2))) ; -cityAddress ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN city_N) (MassNP (UseN address_N)))))) (PrepNP part_Prep ob2))) ; -streetAddress ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN street_N) (MassNP (UseN address_N)))))) (PrepNP part_Prep ob2))) ; -streetNumber ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN street_N) (MassNP (UseN number_N)))))) (PrepNP part_Prep ob2))) ; -unitNumber ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN unit_N) (MassNP (UseN number_N)))))) (PrepNP part_Prep ob2))) ; -detainee ob1 ob2 = mkPolSent (PredVP ob2 (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN detainee_N) ob2))))) ; -targetInAttack ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN target_N)))) (PrepNP in_Prep (MassNP (ApposCN (UseN attack_N) ob2))))) ; -enjoys ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a enjoy_V2) ob2)) ; -dislikes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a dislike_V2) ob2)) ; -groupMember ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN member_N)))) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN group_N) ob2))))) ; -titles ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN title_N)))) (PrepNP part_Prep ob2))) ; -familyName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN family_N) (MassNP (UseN name_N)))))) (PrepNP part_Prep ob2))) ; -middleName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN middle_N) (MassNP (UseN name_N)))))) (PrepNP part_Prep ob2))) ; -givenName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA (VerbToParticipeA give_V)) (UseN name_N))))) (PrepNP part_Prep ob2))) ; -localLongName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA local_A) (AdjCN (PositA long_A) (UseN name_N)))))) (PrepNP part_Prep ob2))) ; -localShortName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA local_A) (AdjCN (PositA short_A) (UseN name_N)))))) (PrepNP part_Prep ob2))) ; -defendant ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN defendant_N)))) (PrepNP part_Prep ob2))) ; -registeredItem ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a contain_V2) (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA official_A) (UseN record_N)))) (PrepNP part_Prep ob2))) ; -student ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN student_N)))) (PrepNP part_Prep ob2))) ; -teacher ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN teacher_N)))) (PrepNP part_Prep ob2))) ; -onboard ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompNP (MassNP (ApposCN (UseN inside_N) ob2))))) ; -sideOfFigure ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN side_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN figure_N) ob2))))) ; -contestParticipant ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN participant_N)))) (PrepNP in_Prep ob2))) ; -subField ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN sub_N) (MassNP (UseN field_N)))))) (PrepNP part_Prep ob2))) ; -financialAccount ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA financial_A) (UseN account_N))))) (PrepNP part_Prep ob2))) ; -serviceProvider ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN provider_N)))) (PrepNP part_Prep ob2))) ; -serviceRecipient ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN recipient_N)))) (PrepNP part_Prep ob2))) ; -moves ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a move_V2) ob2)) ; -changesLocation ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a change_V2) (DetCN (DetQuant DefArt NumSg) (UseN location_N))) (PrepNP part_Prep ob2))) ; -friend ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN friend_N)))) (PrepNP part_Prep ob2))) ; -grandfather ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN grandfather_N)))) (PrepNP part_Prep ob2))) ; -aunt ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN aunt_N)))) (PrepNP part_Prep ob2))) ; -cousin ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN cousin_N)))) (PrepNP part_Prep ob2))) ; -grandmother ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN grandmother_N)))) (PrepNP part_Prep ob2))) ; -nephew ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN nephew_N)))) (PrepNP part_Prep ob2))) ; -niece ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN niece_N)))) (PrepNP part_Prep ob2))) ; -uncle ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN uncle_N)))) (PrepNP part_Prep ob2))) ; -stepfather ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN stepfather_N)))) (PrepNP part_Prep ob2))) ; -stepmother ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN stepmother_N)))) (PrepNP part_Prep ob2))) ; -controlled ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (PassV2 control_V2) (PrepNP by8agent_Prep ob2))) ; -gainsControl ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a gain_V2) (MassNP (UseN control_N))) (PrepNP part_Prep ob2))) ; -losesControl ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a lose_V2) (MassNP (UseN control_N))) (PrepNP part_Prep ob2))) ; -arrested ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (PassV2 arrest_V2) (PrepNP during_Prep ob1))) ; -conveyance ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (PPartNP (DetCN (DetQuant IndefArt NumSg) (UseN vehicle_N)) use_V2))) (PrepNP in_Prep ob1))) ; -birthday ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN birthday_N)))) (PrepNP part_Prep ob2))) ; -routeInSystem ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN route_N)))) (PrepNP in_Prep ob2))) ; -expects ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a expect_V2) (sentToNoun ob2))) ; -financialAsset ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA financial_A) (UseN asset_N))))) (PrepNP part_Prep ob2))) ; -half ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN half_N)))) (PrepNP part_Prep ob2))) ; -lacks ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a lack_V2) ob2)) ; -most ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN large_N)))) part_Adv) (PrepNP part_Prep ob2))) ; -quarter ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN quarter_N)))) (PrepNP part_Prep ob2))) ; -third ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN (mkN "third"))))) (PrepNP part_Prep ob2))) ; -fears ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a fear_V2) (sentToNoun ob2))) ; -hopes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a hope_V2) (sentToNoun ob2))) ; -plaintiff ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN plaintiff_N)))) (PrepNP part_Prep ob2))) ; -brandName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN brand_N) (MassNP (UseN name_N)))))) (PrepNP part_Prep ob2))) ; -formerName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA former_A) (UseN name_N))))) (PrepNP part_Prep ob2))) ; -reactant ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseV participate_V) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN reaction_N) ob1))))) ; -reagent ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN reagent_N)))) (PrepNP part_Prep ob2))) ; -postalBoxNumber ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA postal_A) (ApposCN (UseN box_N) (MassNP (UseN number_N))))))) (PrepNP part_Prep ob2))) ; -postalCode ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA postal_A) (UseN code_N))))) (PrepNP part_Prep ob2))) ; -telephoneNumber ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN telephone_N) (MassNP (UseN number_N)))))) (PrepNP part_Prep ob2))) ; -conjugate ob1 ob2 = mkPolSent (PredVP (ConjNP and_Conj (BaseNP ob1 ob2)) (PassV2 conjugate_V2)) ; -sententialObject ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN object_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN sentence_N) ob2))))) ; -sententialSubject ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN subject_N)))) (PrepNP part_Prep (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN sentence_N) ob2))))) ; -stockHolder ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a possess_V2) ob2)) ; -experimentalControl ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN controller_N)))) (PrepNP in_Prep ob1))) ; -allegiance ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (ComplSlash (SlashV2a owe_V2) (MassNP (UseN allegiance_N))) (PrepNP to_Prep ob2))) ; -deceptiveIdentifier ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA deceptive_A) (UseN identification_N))))) (PrepNP part_Prep ob2))) ; -cargo ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN cargo_N)))) (PrepNP part_Prep ob2))) ; -meatOfAnimal ob1 ob2 = mkPolSent (PredVP (MassNP ob1) (UseComp (CompNP (AdvNP (MassNP (UseN meat_N)) (PrepNP part_Prep (MassNP (ApposCN (UseN animal_N) (MassNP ob2)))))))) ; -distanceOnPath ob1 ob2 = mkPolSent (PredVP ob1 (UseComp (CompNP (AdvNP (AdvNP (DetCN (DetQuant DefArt NumSg) (UseN distance_N)) (PrepNP on_Prep (MassNP (UseN path_N)))) (PrepNP part_Prep ob1))))) ; -loss ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN loss_N)))) (PrepNP part_Prep ob1))) ; -soundFrequency ob1 ob2 = mkPolSent (PredVP ob2 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA sound_A) (UseN frequency_N))))) (PrepNP part_Prep ob1))) ; - }; \ No newline at end of file diff --git a/examples/SUMO/Mid_level_ontologyFre.gf b/examples/SUMO/Mid_level_ontologyFre.gf deleted file mode 100644 index 57739c253..000000000 --- a/examples/SUMO/Mid_level_ontologyFre.gf +++ /dev/null @@ -1,42 +0,0 @@ ---# -path=.:french:romance:abstract:prelude:common -concrete Mid_level_ontologyFre of Mid_level_ontology = MergeFre ** open DictLangFre, ParadigmsFre, LexiconFre, ExtraLexiconFre in{ - -lin - --- individual instances : - -Student = MassNP (UseN student_N) ; -Teacher = MassNP (UseN teacher_N) ; - - --- subclasses -Apple = UseN apple_N ; -ArtSchool = ApposCN (UseN art_N) (MassNP (UseN school_N)) ; -Beer = UseN beer_N ; -BirdEgg = ApposCN (UseN bird_N) (MassNP (UseN egg_N)) ; -Boy = UseN boy_N ; -Closing = UseN2 (VerbToNounV2 close_V2) ; -DaySchool = ApposCN (UseN day_N) (MassNP (UseN school_N)) ; -Eye = UseN eye_N ; -Girl = UseN girl_N ; -Grass = UseN grass_N ; -Head = UseN head_N ; -Heart = UseN heart_N ; -Knee = UseN knee_N ; -Milk = UseN milk_N ; -Restaurant = UseN restaurant_N ; - --- unary functions : - -FirstFn ob = AdvNP (DetCN (DetQuantOrd DefArt NumSg (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01)))))) (UseN element_N)) (PrepNP part_Prep ob) ; - - ---bespeak_V2 -speaksLanguage ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a speak_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2)))) ; -student ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN student_N)))) (PrepNP part_Prep ob2))) ; -teacher ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN teacher_N)))) (PrepNP part_Prep ob2))) ; -friend ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN friend_N)))) (PrepNP part_Prep ob2))) ; -cousin ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN cousin_N)))) (PrepNP part_Prep ob2))) ; -fears ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a fear_V2) (sentToNoun ob2))) ; - - }; \ No newline at end of file diff --git a/examples/SUMO/Mid_level_ontologyRon.gf b/examples/SUMO/Mid_level_ontologyRon.gf deleted file mode 100644 index 389d42cfd..000000000 --- a/examples/SUMO/Mid_level_ontologyRon.gf +++ /dev/null @@ -1,43 +0,0 @@ ---# -path=.:romanian:abstract:prelude:common -concrete Mid_level_ontologyRon of Mid_level_ontology = MergeRon ** open DictLangRon, ParadigmsRon, LexiconRon, ExtraLexiconRon in{ - -lin - --- individual instances : - -Student = MassNP (UseN student_N) ; -Teacher = MassNP (UseN teacher_N) ; - - --- subclasses -Apple = UseN apple_N ; -ArtSchool = ApposCN (UseN art_N) (MassNP (UseN school_N)) ; -Beer = UseN beer_N ; -BirdEgg = ApposCN (UseN bird_N) (MassNP (UseN egg_N)) ; -Boy = UseN boy_N ; -Closing = UseN2 (VerbToNounV2 close_V2) ; -DaySchool = ApposCN (UseN day_N) (MassNP (UseN school_N)) ; -Eye = UseN eye_N ; -Girl = UseN girl_N ; -Grass = UseN grass_N ; -Head = UseN head_N ; -Heart = UseN heart_N ; -Knee = UseN knee_N ; -Milk = UseN milk_N ; -Restaurant = UseN restaurant_N ; - --- unary functions : - -FirstFn ob = AdvNP (DetCN (DetQuantOrd DefArt NumSg (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01)))))) (UseN element_N)) (PrepNP part_Prep ob) ; ---LastFn ob = AdvNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA last_A) (UseN element_N))) (PrepNP part_Prep ob); - - ---bespeak_V2 -speaksLanguage ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a speak_V2) (DetCN (DetQuant DefArt NumSg) (ApposCN (UseN language_N) ob2)))) ; -student ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN student_N)))) (PrepNP part_Prep ob2))) ; -teacher ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN teacher_N)))) (PrepNP part_Prep ob2))) ; -friend ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN friend_N)))) (PrepNP part_Prep ob2))) ; -cousin ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (UseN cousin_N)))) (PrepNP part_Prep ob2))) ; -fears ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a fear_V2) (sentToNoun ob2))) ; - - }; \ No newline at end of file diff --git a/examples/SUMO/Military.gf b/examples/SUMO/Military.gf index 9e938c7fd..7f0f5d03c 100644 --- a/examples/SUMO/Military.gf +++ b/examples/SUMO/Military.gf @@ -1,431 +1,397 @@ -abstract Military = open Merge, Mid_level_ontology in { - - - - --- A modern nation_states' air forces --- (the whole branch of service) and not a subdivision thereof. -fun AirForce_BranchOfService : Class ; -fun AirForce_BranchOfService_Class : SubClass AirForce_BranchOfService MilitaryOrganization ; - --- (AvailableForMilitaryServiceMaleFn --- ?AREA) denotes the Integer that represents the count of the population of --- males of military age in the GeopoliticalArea ?AREA. -fun AvailableForMilitaryServiceMaleFn : El GeopoliticalArea -> Ind Integer ; - - --- In military terminology, a battalion consists of --- two to six companies typically commanded by a lieutenant colonel. The --- nomenclature varies by nationality and by branch of arms, e.g. some --- armies organize their infantry into battalions, but call battalion_sized --- cavalry, reconnaissance, or tank units a squadron or a regiment instead. --- There may even be subtle distinctions within a nation's branches of arms, --- such a distinction between a tank battalion and an armored squadron, --- depending on how the unit's operational role is perceived to fit into the --- army's historical organization. A battalion is potentially the smallest --- military unit capable of independent operations (i.e. not attached to a --- higher command), but is usually part of a regiment or a brigade or both, --- depending on the organizational model used by that service. Battalions --- are ordinarily homogeneous with respect to type (e.g. an infantry --- battalion or a tank battalion), although there are occasional --- exceptions. (from Wikipedia) -fun Battalion : Class ; -fun Battalion_Class : SubClass Battalion MilitaryUnit ; - --- Brigade is a term from military science which --- refers to a group of several battalions (typically two to four), and --- directly attached supporting units (normally including at least an --- artillery battery and additional logistic support). A brigade is smaller --- than a division and roughly equal to or a little larger than a regiment. --- Strength typically ranges between 1,500 and 3,500 personnel. (from Wikipedia) -fun Brigade : Class ; -fun Brigade_Class : SubClass Brigade MilitaryUnit ; - --- In military organizations, an officer --- is a member of the service who holds a position of responsibility. --- Commissioned officers derive authority directly from a sovereign power --- and, as such, hold a commission charging them with the duties and --- responsibilities of a specific office or position. Commissioned officers --- are typically the only persons in a military able to exercise command --- (according to the most technical definition of the word) over a military --- unit. Non_commissioned officers in positions of authority can be said to --- have control or charge rather than command per se, although the use of the --- word command to describe any use of authority is widespread and often --- official. (from Wikipedia) -fun CommissionedOfficerRank : Class ; -fun CommissionedOfficerRank_Class : SubClass CommissionedOfficerRank MilitaryRank ; - --- The ranks of junior officers are the --- three or four lowest ranks of officers, possibily complicated by the --- status of trainee officers. Their units are generally not expected to --- operate independently for any significant length of time. Typical ranks --- for this level are captains, who typically lead companies and smaller --- units Lieutenant. Company grade officers will also fill staff roles in --- some units. (from Wikipedia) -fun CompanyGradeRank : Class ; -fun CompanyGradeRank_Class : SubClass CompanyGradeRank CommissionedOfficerRank ; - --- A company is a military unit, typically --- consisting of 100_200 soldiers. Most companies are formed of three or --- four platoons although the exact number may vary by country, unit type and --- structure. (from Wikipedia) -fun Company_Military : Class ; -fun Company_Military_Class : SubClass Company_Military MilitaryUnit ; - --- Soldiers who are enlisted in some --- military and have no command. -fun EnlistedSoldierRank : Class ; -fun EnlistedSoldierRank_Class : SubClass EnlistedSoldierRank MilitaryRank ; - --- Senior officers who typically --- command units that can be expected to operate independently for short --- periods of time (battalions and regiments, large warships). Field Grade --- officers also commonly fill staff positions. (from Wikipedia) -fun FieldGradeOfficerRank : Class ; -fun FieldGradeOfficerRank_Class : SubClass FieldGradeOfficerRank CommissionedOfficerRank ; - --- (FitForMilitaryServiceMaleFn --- ?AREA) denotes the Integer that represents the count of the population of --- males of military age in the GeopoliticalArea ?AREA that is also capable --- of being a member of the military. -fun FitForMilitaryServiceMaleFn : El GeopoliticalArea -> Ind Integer ; - - --- Admirals (Navy), Generals (Army) and --- Marshals who typically command units that are expected to operate --- independently for extended periods of time (brigades and larger, fleets of --- ships). (from Wikipedia) -fun FlagOfficerRank : Class ; -fun FlagOfficerRank_Class : SubClass FlagOfficerRank CommissionedOfficerRank ; - --- Military operations conducted to --- distribute food to the friendly force. (from FM 100_40) -fun FoodDistributionOperation : Class ; -fun FoodDistributionOperation_Class : SubClass FoodDistributionOperation (both Getting (both Giving MilitaryOperation)) ; - - --- A MilitaryUnit composed primarily of Soldiers --- who fight on foot, i.e. without the use of heavy artillery. -fun InfantryUnit : Class ; -fun InfantryUnit_Class : SubClass InfantryUnit MilitaryUnit ; - --- Ranks with grade E5 or E6. -fun JuniorNCORank : Class ; -fun JuniorNCORank_Class : SubClass JuniorNCORank NonCommissionedOfficerRank ; - --- Modern nation_states' marine units (the --- whole branch of service) and not a subdivision thereof. -fun Marines_BranchOfService : Class ; -fun Marines_BranchOfService_Class : SubClass Marines_BranchOfService MilitaryOrganization ; - --- A Convoy of MilitaryVehicles, travelling to the same --- at least intermediate destination, in relatively close proximity. -fun MilitaryConvoy : Class ; -fun MilitaryConvoy_Class : SubClass MilitaryConvoy Convoy ; - --- Trucks used by a military to transport food. -fun MilitaryFoodTruck : Class ; -fun MilitaryFoodTruck_Class : SubClass MilitaryFoodTruck MilitarySupportVehicle ; - --- A MilitaryOperation is distinguished --- from the broader class of MilitaryProcess in that it is planned in --- advance. -fun MilitaryOperation : Class ; -fun MilitaryOperation_Class : SubClass MilitaryOperation MilitaryProcess ; - --- Military platforms. These are usually mobile --- entities which can carry military equipment such as Weapons and --- communications equipment. Often, as with a tank outfitted with a gun, a --- MilitaryPlatform carrying some Weapon comprises a WeaponSystem. -fun MilitaryPlatform : Class ; -fun MilitaryPlatform_Class : SubClass MilitaryPlatform TransportationDevice ; - --- The class of Positions in a Military. Rank --- is usually commensurate with degrees of power, prestige and --- pay. -fun MilitaryRank : Class ; -fun MilitaryRank_Class : SubClass MilitaryRank SkilledOccupation ; - --- Trucks used by a military to transport supplies. -fun MilitarySupplyTruck : Class ; -fun MilitarySupplyTruck_Class : SubClass MilitarySupplyTruck (both MilitarySupportVehicle Truck) ; - - --- Vehicles meant to be used for support, rather --- than combat in a military context. -fun MilitarySupportVehicle : Class ; -fun MilitarySupportVehicle_Class : SubClass MilitarySupportVehicle MilitaryVehicle ; - -fun MilitaryVehicle_MilitaryPlatform : SubClass MilitaryVehicle MilitaryPlatform ; - --- Modern nation_states' naval air --- forces (the whole branch of service) and not a subdivision thereof. -fun NavalAirForce_BranchOfService : Class ; -fun NavalAirForce_BranchOfService_Class : SubClass NavalAirForce_BranchOfService MilitaryOrganization ; - --- MilitaryOrganizations that are sea forces. -fun Navy_BranchOfService : Class ; -fun Navy_BranchOfService_Class : SubClass Navy_BranchOfService MilitaryOrganization ; - --- Non_commissioned officers, or NCOs, in --- positions of authority can be said to have control or charge rather than --- command per se, although the use of the word command to describe any use --- of authority is widespread and often official. This is distinguished from --- the official responsibility for command entrusted to a --- CommissionedOfficer. NCOs are enlisted positions. (from Wikipedia) -fun NonCommissionedOfficerRank : Class ; -fun NonCommissionedOfficerRank_Class : SubClass NonCommissionedOfficerRank EnlistedSoldierRank ; - --- A MilitaryUnit, the purpose of which is --- to prevent violent actions but providing deterrent to such actions through --- the threat of overwhelming retaliation. -fun PeacekeepingUnit : Class ; -fun PeacekeepingUnit_Class : SubClass PeacekeepingUnit MilitaryUnit ; - --- Platoon is a term from military science. In an --- army, a platoon is a unit of thirty to forty soldiers typically commanded --- by a Lieutenant assisted by a non_commissioned officer. A platoon is --- formed by at least two squads (usually 3 or 4) and is smaller than a --- company (typically there are 3 or 4 platoons per company). Most platoons --- are infantry platoons, some carry other designations such as mortar or --- heavy weapons platoons. A platoon is the smallest military unit led by a --- commissioned officer. (from Wikipedia) -fun Platoon : Class ; -fun Platoon_Class : SubClass Platoon MilitaryUnit ; - --- The lowest group of ranks in the military --- (Grade E1 through E4). These Soldiers usually have no authority --- based on their ranks. -fun PrivateRank : Class ; -fun PrivateRank_Class : SubClass PrivateRank EnlistedSoldierRank ; - --- (equal --- (ReachingMilitaryAgeAnnuallyMaleFn ?AREA ?YEAR) ?COUNT) means that in the --- GeopoliticalArea ?AREA, there are ?COUNT number of male individuals who for --- that year ?YEAR come to be of militaryAge. -fun ReachingMilitaryAgeAnnuallyMaleFn : El GeopoliticalArea -> El Year -> Ind Integer ; - +abstract Military = MidLevelOntology ** { + + -- A modern nation_states' air forces + -- (the whole branch of service) and not a subdivision thereof. + fun AirForce_BranchOfService : Class ; + fun AirForce_BranchOfService_Class : SubClass AirForce_BranchOfService MilitaryOrganization ; + + -- (AvailableForMilitaryServiceMaleFn + -- ?AREA) denotes the Integer that represents the count of the population of + -- males of military age in the GeopoliticalArea ?AREA. + fun AvailableForMilitaryServiceMaleFn : El GeopoliticalArea -> Ind Integer ; + + -- In military terminology, a battalion consists of + -- two to six companies typically commanded by a lieutenant colonel. The + -- nomenclature varies by nationality and by branch of arms, e.g. some + -- armies organize their infantry into battalions, but call battalion_sized + -- cavalry, reconnaissance, or tank units a squadron or a regiment instead. + -- There may even be subtle distinctions within a nation's branches of arms, + -- such a distinction between a tank battalion and an armored squadron, + -- depending on how the unit's operational role is perceived to fit into the + -- army's historical organization. A battalion is potentially the smallest + -- military unit capable of independent operations (i.e. not attached to a + -- higher command), but is usually part of a regiment or a brigade or both, + -- depending on the organizational model used by that service. Battalions + -- are ordinarily homogeneous with respect to type (e.g. an infantry + -- battalion or a tank battalion), although there are occasional + -- exceptions. (from Wikipedia) + fun Battalion : Class ; + fun Battalion_Class : SubClass Battalion MilitaryUnit ; + + -- Brigade is a term from military science which + -- refers to a group of several battalions (typically two to four), and + -- directly attached supporting units (normally including at least an + -- artillery battery and additional logistic support). A brigade is smaller + -- than a division and roughly equal to or a little larger than a regiment. + -- Strength typically ranges between 1,500 and 3,500 personnel. (from Wikipedia) + fun Brigade : Class ; + fun Brigade_Class : SubClass Brigade MilitaryUnit ; + + -- In military organizations, an officer + -- is a member of the service who holds a position of responsibility. + -- Commissioned officers derive authority directly from a sovereign power + -- and, as such, hold a commission charging them with the duties and + -- responsibilities of a specific office or position. Commissioned officers + -- are typically the only persons in a military able to exercise command + -- (according to the most technical definition of the word) over a military + -- unit. Non_commissioned officers in positions of authority can be said to + -- have control or charge rather than command per se, although the use of the + -- word command to describe any use of authority is widespread and often + -- official. (from Wikipedia) + fun CommissionedOfficerRank : Class ; + fun CommissionedOfficerRank_Class : SubClass CommissionedOfficerRank MilitaryRank ; + + -- The ranks of junior officers are the + -- three or four lowest ranks of officers, possibily complicated by the + -- status of trainee officers. Their units are generally not expected to + -- operate independently for any significant length of time. Typical ranks + -- for this level are captains, who typically lead companies and smaller + -- units Lieutenant. Company grade officers will also fill staff roles in + -- some units. (from Wikipedia) + fun CompanyGradeRank : Class ; + fun CompanyGradeRank_Class : SubClass CompanyGradeRank CommissionedOfficerRank ; + + -- A company is a military unit, typically + -- consisting of 100_200 soldiers. Most companies are formed of three or + -- four platoons although the exact number may vary by country, unit type and + -- structure. (from Wikipedia) + fun Company_Military : Class ; + fun Company_Military_Class : SubClass Company_Military MilitaryUnit ; + + -- Soldiers who are enlisted in some + -- military and have no command. + fun EnlistedSoldierRank : Class ; + fun EnlistedSoldierRank_Class : SubClass EnlistedSoldierRank MilitaryRank ; + + -- Senior officers who typically + -- command units that can be expected to operate independently for short + -- periods of time (battalions and regiments, large warships). Field Grade + -- officers also commonly fill staff positions. (from Wikipedia) + fun FieldGradeOfficerRank : Class ; + fun FieldGradeOfficerRank_Class : SubClass FieldGradeOfficerRank CommissionedOfficerRank ; + + -- (FitForMilitaryServiceMaleFn + -- ?AREA) denotes the Integer that represents the count of the population of + -- males of military age in the GeopoliticalArea ?AREA that is also capable + -- of being a member of the military. + fun FitForMilitaryServiceMaleFn : El GeopoliticalArea -> Ind Integer ; + + -- Admirals (Navy), Generals (Army) and + -- Marshals who typically command units that are expected to operate + -- independently for extended periods of time (brigades and larger, fleets of + -- ships). (from Wikipedia) + fun FlagOfficerRank : Class ; + fun FlagOfficerRank_Class : SubClass FlagOfficerRank CommissionedOfficerRank ; + + -- Military operations conducted to distribute food to the friendly force. (from FM 100_40) + fun FoodDistributionOperation : Class ; + fun FoodDistributionOperation_Class : SubClass FoodDistributionOperation (both Getting (both Giving MilitaryOperation)) ; + + -- A MilitaryUnit composed primarily of Soldiers + -- who fight on foot, i.e. without the use of heavy artillery. + fun InfantryUnit : Class ; + fun InfantryUnit_Class : SubClass InfantryUnit MilitaryUnit ; + + -- Ranks with grade E5 or E6. + fun JuniorNCORank : Class ; + fun JuniorNCORank_Class : SubClass JuniorNCORank NonCommissionedOfficerRank ; + + -- Modern nation_states' marine units (the + -- whole branch of service) and not a subdivision thereof. + fun Marines_BranchOfService : Class ; + fun Marines_BranchOfService_Class : SubClass Marines_BranchOfService MilitaryOrganization ; + + -- A Convoy of MilitaryVehicles, travelling to the same + -- at least intermediate destination, in relatively close proximity. + fun MilitaryConvoy : Class ; + fun MilitaryConvoy_Class : SubClass MilitaryConvoy Convoy ; + + -- Trucks used by a military to transport food. + fun MilitaryFoodTruck : Class ; + fun MilitaryFoodTruck_Class : SubClass MilitaryFoodTruck MilitarySupportVehicle ; + + -- A MilitaryOperation is distinguished + -- from the broader class of MilitaryProcess in that it is planned in + -- advance. + fun MilitaryOperation : Class ; + fun MilitaryOperation_Class : SubClass MilitaryOperation MilitaryProcess ; + + -- Military platforms. These are usually mobile + -- entities which can carry military equipment such as Weapons and + -- communications equipment. Often, as with a tank outfitted with a gun, a + -- MilitaryPlatform carrying some Weapon comprises a WeaponSystem. + fun MilitaryPlatform : Class ; + fun MilitaryPlatform_Class : SubClass MilitaryPlatform TransportationDevice ; + + -- The class of Positions in a Military. Rank is usually commensurate + -- with degrees of power, prestige and pay. + fun MilitaryRank : Class ; + fun MilitaryRank_Class : SubClass MilitaryRank SkilledOccupation ; + + -- Trucks used by a military to transport supplies. + fun MilitarySupplyTruck : Class ; + fun MilitarySupplyTruck_Class : SubClass MilitarySupplyTruck (both MilitarySupportVehicle Truck) ; + + -- Vehicles meant to be used for support, rather + -- than combat in a military context. + fun MilitarySupportVehicle : Class ; + fun MilitarySupportVehicle_Class : SubClass MilitarySupportVehicle MilitaryVehicle ; + + fun MilitaryVehicle_MilitaryPlatform : SubClass MilitaryVehicle MilitaryPlatform ; + + -- Modern nation_states' naval air + -- forces (the whole branch of service) and not a subdivision thereof. + fun NavalAirForce_BranchOfService : Class ; + fun NavalAirForce_BranchOfService_Class : SubClass NavalAirForce_BranchOfService MilitaryOrganization ; + + -- MilitaryOrganizations that are sea forces. + fun Navy_BranchOfService : Class ; + fun Navy_BranchOfService_Class : SubClass Navy_BranchOfService MilitaryOrganization ; + + -- Non_commissioned officers, or NCOs, in + -- positions of authority can be said to have control or charge rather than + -- command per se, although the use of the word command to describe any use + -- of authority is widespread and often official. This is distinguished from + -- the official responsibility for command entrusted to a + -- CommissionedOfficer. NCOs are enlisted positions. (from Wikipedia) + fun NonCommissionedOfficerRank : Class ; + fun NonCommissionedOfficerRank_Class : SubClass NonCommissionedOfficerRank EnlistedSoldierRank ; + + -- A MilitaryUnit, the purpose of which is + -- to prevent violent actions but providing deterrent to such actions through + -- the threat of overwhelming retaliation. + fun PeacekeepingUnit : Class ; + fun PeacekeepingUnit_Class : SubClass PeacekeepingUnit MilitaryUnit ; + + -- Platoon is a term from military science. In an + -- army, a platoon is a unit of thirty to forty soldiers typically commanded + -- by a Lieutenant assisted by a non_commissioned officer. A platoon is + -- formed by at least two squads (usually 3 or 4) and is smaller than a + -- company (typically there are 3 or 4 platoons per company). Most platoons + -- are infantry platoons, some carry other designations such as mortar or + -- heavy weapons platoons. A platoon is the smallest military unit led by a + -- commissioned officer. (from Wikipedia) + fun Platoon : Class ; + fun Platoon_Class : SubClass Platoon MilitaryUnit ; + + -- The lowest group of ranks in the military + -- (Grade E1 through E4). These Soldiers usually have no authority + -- based on their ranks. + fun PrivateRank : Class ; + fun PrivateRank_Class : SubClass PrivateRank EnlistedSoldierRank ; + + -- (equal (ReachingMilitaryAgeAnnuallyMaleFn ?AREA ?YEAR) ?COUNT) means that in the + -- GeopoliticalArea ?AREA, there are ?COUNT number of male individuals who for + -- that year ?YEAR come to be of militaryAge. + fun ReachingMilitaryAgeAnnuallyMaleFn : El GeopoliticalArea -> El Year -> Ind Integer ; + + -- Military operations conducted to protect the friendly + -- force by providing early and accurate warning of enemy operations, to provide the force + -- being protected with time and maneuver space within which to react to the enemy, and to + -- develop the situation to allow the commander to effectively use the protected force. + -- Security operations orient on the force or facility to be protected, rather than on the + -- enemy. (from FM 100_40). + fun SecurityOperation : Class ; + fun SecurityOperation_Class : SubClass SecurityOperation MilitaryOperation ; + + -- Ranks with grade E7 through E9. + fun SeniorNCORank : Class ; + fun SeniorNCORank_Class : SubClass SeniorNCORank NonCommissionedOfficerRank ; + + -- Any Soldier who is tasked with carrying the colors of his/her unit in Battles and parades. + fun StandardBearer : Class ; + fun StandardBearer_Class : SubClass StandardBearer Soldier ; + + -- Any Soldier who served during the American Civil War + fun USCivilWarSoldier : Ind Soldier ; + + -- The class of Positions in the USMilitary. + fun USMilitaryRank : Class ; + fun USMilitaryRank_Class : SubClass USMilitaryRank MilitaryRank ; + + -- A USMilitaryRank that is variously called + -- Airman Basic in the Air Force, Private in the USArmy, + -- Private in the USMarineCorps, and Seaman Recruit in the USNavy. + fun USMilitaryRankE1 : Ind (both PrivateRank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Airman in the Air Force, Private in the USArmy, + -- Private First Class in the USMarineCorps, and Seaman Apprentice in the USNavy. + fun USMilitaryRankE2 : Ind (both PrivateRank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Airman First Class in the Air Force, Private First Class in the USArmy, + -- Lance Corporal in the USMarineCorps, and Seaman in the USNavy. + fun USMilitaryRankE3 : Ind (both PrivateRank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Senior Airman in the Air Force, Specialist or Corporal in the USArmy, + -- Corporal in the USMarineCorps, and Petty Officer 3rd Class in the USNavy. + fun USMilitaryRankE4 : Ind (both PrivateRank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Staff Sergeant in the Air Force, Sergeant in the USArmy, + -- Sergeant in the USMarineCorps, and Petty Officer 2nd Class in the USNavy. + fun USMilitaryRankE5 : Ind (both JuniorNCORank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Technical Sergeant in the Air Force, Staff Sergeant in the USArmy, + -- Staff Sergeant in the USMarineCorps, and Petty Officer 1st Class in the USNavy. + fun USMilitaryRankE6 : Ind (both JuniorNCORank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Master Sergeant in the Air Force, Sergeant First Class in the USArmy, + -- Gunnery Sergeant in the USMarineCorps, and Chief Petty Officer in the USNavy. + fun USMilitaryRankE7 : Ind (both SeniorNCORank USMilitaryRank) ; + + -- A USMilitaryRank that is variously called + -- Senior Master Sergeant in the Air Force, Master Sergeant or First Sergeant in the USArmy, + -- Master Sergeant or First Sergeant in the USMarineCorps, and Senior Chief Petty Officer in the USNavy. + fun USMilitaryRankE8 : Ind (both SeniorNCORank USMilitaryRank) ; + + -- A USMilitaryRank that is variously + -- called Chief Master Sergeant or Command Chief Master Sergeant or Chief + -- Master Sergeant of the Air Force in the Air Force, Sergeant Major or + -- Command Sergeant Major or Sergeant Major of the Army in the USArmy, + -- Master Gunnery Sergeant or Sergeant Major or Sergeant Major of the Marine + -- Corps in the USMarineCorps, and Master Chief Petty Officer or Command + -- Master Chief Petty Officer or Master Chief Petty Officer of the Navy in + -- the USNavy. + fun USMilitaryRankE9 : Ind (both SeniorNCORank USMilitaryRank) ; + + -- A special USMilitaryRank above E9 that marks usually the end of + -- carrier of non_commissioned officers. + fun USMilitaryRankE9special : Ind (both USMilitaryRank SeniorNCORank) ; + + fun USMilitaryRankO1 : Ind (both CompanyGradeRank USMilitaryRank) ; + + fun USMilitaryRankO10 : Ind (both FlagOfficerRank USMilitaryRank) ; + + fun USMilitaryRankO2 : Ind (both CompanyGradeRank USMilitaryRank) ; + + fun USMilitaryRankO3 : Ind (both CompanyGradeRank USMilitaryRank) ; + + fun USMilitaryRankO4 : Ind (both FieldGradeOfficerRank USMilitaryRank) ; + + fun USMilitaryRankO5 : Ind (both FieldGradeOfficerRank USMilitaryRank) ; + + fun USMilitaryRankO6 : Ind (both FieldGradeOfficerRank USMilitaryRank) ; + + fun USMilitaryRankO7 : Ind (both FlagOfficerRank USMilitaryRank) ; + + fun USMilitaryRankO8 : Ind (both FlagOfficerRank USMilitaryRank) ; + + fun USMilitaryRankO9 : Ind (both FlagOfficerRank USMilitaryRank) ; + + fun USMilitaryRankSpecial : Ind (both FlagOfficerRank USMilitaryRank) ; + + fun USMilitaryRankWO1 : Ind (both USWarrantOfficerRank USMilitaryRank) ; + + fun USMilitaryRankWO2 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; + + fun USMilitaryRankWO3 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; + + fun USMilitaryRankWO4 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; + + fun USMilitaryRankWO5 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; + + -- Any Soldier who served + -- during the American Revolutionary War + fun USRevolutionaryWarSoldier : Ind Soldier ; + + -- In the United States military, a + -- warrant officer was originally, and strictly, a highly skilled, + -- single_track specialty officer. But as many chief warrant officers assume + -- positions as officer in charge or department head, along with the high + -- number of bachelor's and master’s degrees held within the community, their + -- contribution and expertise as a community is ever_increasing. There are + -- no 'warrant officers' per se in the U.S. Navy, but rather the term 'chief + -- warrant officer' is correct. In the U.S. Navy, a sailor must be in one + -- of the top three enlisted ranks to be eligible to become a Chief Warrant + -- Officer. In the U.S. Army, a person can progress to the warrant officer + -- rank at a grade lower than E_7 thus having a longer career and greater + -- opportunity to serve and grow. In the U.S. Marine Corps, after serving + -- at least eight years of enlisted service, and reaching the grade of E_5 + -- (sergeant), an enlisted Marine can apply for the Warrant Officer program. + -- Upon the initial appointment to WO1 a warrant is given by the secretary of + -- the service, and upon promotion to chief warrant officer (CW2 and above) + -- they are commissioned by the President of the United States, take the same + -- oath and receive the same commission and charges as commissioned officers, + -- thus deriving their authority from the same source. + fun USWarrantOfficerRank : Class ; + fun USWarrantOfficerRank_Class : SubClass USWarrantOfficerRank CommissionedOfficerRank ; + + -- (betweenOnPath ?OBJ1 ?OBJ2 ?OBJ3 ?PATH) + -- means that ?OBJ2 is spatially located between ?OBJ1 and ?OBJ3 on the path + -- ?PATH. Note that this is a more specialized relation of between since any + -- object that is between others with respect to a particular path is also + -- simply between them. + fun betweenOnPath : El Object -> El Object -> El Object -> Formula ; + + -- The typical MilitaryRank of + -- the leader of an instance of the given MilitaryEchelon. + fun commandRankOfEchelon: Desc MilitaryUnit -> El MilitaryRank -> Formula ; + + -- (fitForMilitaryService ?AGENT ?PROCESS) + -- means that ?AGENT is capable of carrying out the MilitaryProcess ?PROCESS as + -- the agent of the ?PROCESS. + fun fitForMilitaryService: El CognitiveAgent -> Desc MilitaryProcess -> Formula ; + + -- (militaryAge ?AREA ?AGE) means that in the + -- GeopoliticalArea ?AREA, a person must be ?AGE or older in order to be a + -- member of the military of the ?AREA. + fun militaryAge : El GeopoliticalArea -> El TimeDuration -> Formula ; + + -- (militaryExpendituresFractionOfGDP ?AREA ?FRACTION) means + -- that the estimated military spending of the GeopoliticalArea ?AREA is + -- ?FRACTION of the gross domestic product (GDP) of that area. + fun militaryExpendituresFractionOfGDP : El GeopoliticalArea -> El RationalNumber -> Formula ; + + -- (militaryExpendituresFractionOfGDPInPeriod ?AREA ?FRACTION ?PERIOD) + -- means that the estimated military spending of the GeopoliticalArea ?AREA + -- was ?FRACTION of the gross domestic product (GDP) of that area during the + -- TimeInterval indicated by ?PERIOD. + fun militaryExpendituresFractionOfGDPInPeriod : El GeopoliticalArea -> El RationalNumber -> El TimeInterval -> Formula ; + + -- (militaryExpendituresInUSDollars ?AREA ?AMOUNT) means that the + -- estimated military spending of the GeopoliticalArea ?AREA is ?AMOUNT + -- in UnitedStatesDollars. Note: This predicate was created to represent + -- data from the CIA World Fact Book, which calculates ?AMOUNT by multiplying + -- estimated percentage of ?AREA's budget spent on defense by its gross + -- domestic product (GDP) expressed in U.S. dollars. Note that this GDP is + -- calculated by the exchange rate method rather than by + -- PPPBasedEconomicValuation. Military expenditures data is approximate. + fun militaryExpendituresInUSDollars : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; + + -- (militaryExpendituresInUSDollarsInPeriod ?AREA ?AMOUNT ?PERIOD) means + -- that the estimated military spending of the GeopoliticalArea ?AREA was + -- ?AMOUNT in UnitedStatesDollars during the TimeInterval indicated by + -- ?PERIOD. Note: This predicate was created to represent data from the CIA + -- World Fact Book, which calculates ?AMOUNT by multiplying estimated defense + -- spending of an ?AREA in percentage terms by the gross domestic product (GDP) + -- for ?PERIOD. Note that for this figure, GDP is calculated by the exchange + -- rate method rather than by PPPBasedEconomicValuation. In any case, + -- military expenditures data should be treated as only approximate. + fun militaryExpendituresInUSDollarsInPeriod : El GeopoliticalArea -> El CurrencyMeasure -> El TimeInterval -> Formula ; + + -- (militaryOfArea ?MILITARY ?AREA) + -- denotes that ?MILITARY is a MilitaryOrganization serving in defense of + -- the GeopoliticalArea ?AREA. + fun militaryOfArea : El MilitaryOrganization -> El GeopoliticalArea -> Formula ; + + -- A subEchelon is a relationship between + -- named organizational unit types in which a unit of one type is a + -- subOrganization of the other. + fun subEchelon: Desc MilitaryUnit -> Desc MilitaryUnit -> Formula ; --- Military operations conducted to protect the friendly --- force by providing early and accurate warning of enemy operations, to provide the force --- being protected with time and maneuver space within which to react to the enemy, and to --- develop the situation to allow the commander to effectively use the protected force. --- Security operations orient on the force or facility to be protected, rather than on the --- enemy. (from FM 100_40). -fun SecurityOperation : Class ; -fun SecurityOperation_Class : SubClass SecurityOperation MilitaryOperation ; - --- Ranks with grade E7 through E9. -fun SeniorNCORank : Class ; -fun SeniorNCORank_Class : SubClass SeniorNCORank NonCommissionedOfficerRank ; - --- Any Soldier who is tasked with --- carrying the colors of his/her unit in Battles and parades. -fun StandardBearer : Class ; -fun StandardBearer_Class : SubClass StandardBearer Soldier ; - --- Any Soldier who served during the --- American Civil War -fun USCivilWarSoldier : Ind Soldier ; - - --- The class of Positions in the USMilitary. -fun USMilitaryRank : Class ; -fun USMilitaryRank_Class : SubClass USMilitaryRank MilitaryRank ; - --- A USMilitaryRank that is variously called --- Airman Basic in the Air Force, Private in the USArmy, --- Private in the USMarineCorps, and Seaman Recruit in the USNavy. -fun USMilitaryRankE1 : Ind (both PrivateRank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Airman in the Air Force, Private in the USArmy, --- Private First Class in the USMarineCorps, and Seaman Apprentice in the USNavy. -fun USMilitaryRankE2 : Ind (both PrivateRank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Airman First Class in the Air Force, Private First Class in the USArmy, --- Lance Corporal in the USMarineCorps, and Seaman in the USNavy. -fun USMilitaryRankE3 : Ind (both PrivateRank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Senior Airman in the Air Force, Specialist or Corporal in the USArmy, --- Corporal in the USMarineCorps, and Petty Officer 3rd Class in the USNavy. -fun USMilitaryRankE4 : Ind (both PrivateRank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Staff Sergeant in the Air Force, Sergeant in the USArmy, --- Sergeant in the USMarineCorps, and Petty Officer 2nd Class in the USNavy. -fun USMilitaryRankE5 : Ind (both JuniorNCORank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Technical Sergeant in the Air Force, Staff Sergeant in the USArmy, --- Staff Sergeant in the USMarineCorps, and Petty Officer 1st Class in the USNavy. -fun USMilitaryRankE6 : Ind (both JuniorNCORank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Master Sergeant in the Air Force, Sergeant First Class in the USArmy, --- Gunnery Sergeant in the USMarineCorps, and Chief Petty Officer in the USNavy. -fun USMilitaryRankE7 : Ind (both SeniorNCORank USMilitaryRank) ; - - --- A USMilitaryRank that is variously called --- Senior Master Sergeant in the Air Force, Master Sergeant or First Sergeant in the USArmy, --- Master Sergeant or First Sergeant in the USMarineCorps, and Senior Chief Petty Officer in the USNavy. -fun USMilitaryRankE8 : Ind (both SeniorNCORank USMilitaryRank) ; - - --- A USMilitaryRank that is variously --- called Chief Master Sergeant or Command Chief Master Sergeant or Chief --- Master Sergeant of the Air Force in the Air Force, Sergeant Major or --- Command Sergeant Major or Sergeant Major of the Army in the USArmy, --- Master Gunnery Sergeant or Sergeant Major or Sergeant Major of the Marine --- Corps in the USMarineCorps, and Master Chief Petty Officer or Command --- Master Chief Petty Officer or Master Chief Petty Officer of the Navy in --- the USNavy. -fun USMilitaryRankE9 : Ind (both SeniorNCORank USMilitaryRank) ; - - --- A special USMilitaryRank --- above E9 that marks usually the end of carrier of non_commissioned --- officers. -fun USMilitaryRankE9special : Ind (both USMilitaryRank SeniorNCORank) ; - - -fun USMilitaryRankO1 : Ind (both CompanyGradeRank USMilitaryRank) ; - -fun USMilitaryRankO10 : Ind (both FlagOfficerRank USMilitaryRank) ; - -fun USMilitaryRankO2 : Ind (both CompanyGradeRank USMilitaryRank) ; - -fun USMilitaryRankO3 : Ind (both CompanyGradeRank USMilitaryRank) ; - -fun USMilitaryRankO4 : Ind (both FieldGradeOfficerRank USMilitaryRank) ; - -fun USMilitaryRankO5 : Ind (both FieldGradeOfficerRank USMilitaryRank) ; - -fun USMilitaryRankO6 : Ind (both FieldGradeOfficerRank USMilitaryRank) ; - -fun USMilitaryRankO7 : Ind (both FlagOfficerRank USMilitaryRank) ; - -fun USMilitaryRankO8 : Ind (both FlagOfficerRank USMilitaryRank) ; - -fun USMilitaryRankO9 : Ind (both FlagOfficerRank USMilitaryRank) ; - -fun USMilitaryRankSpecial : Ind (both FlagOfficerRank USMilitaryRank) ; - -fun USMilitaryRankWO1 : Ind (both USWarrantOfficerRank USMilitaryRank) ; - -fun USMilitaryRankWO2 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; - -fun USMilitaryRankWO3 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; - -fun USMilitaryRankWO4 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; - -fun USMilitaryRankWO5 : Ind (both USWarrantOfficerRank (both USMilitaryRank CommissionedOfficerRank)) ; - --- Any Soldier who served --- during the American Revolutionary War -fun USRevolutionaryWarSoldier : Ind Soldier ; - - --- In the United States military, a --- warrant officer was originally, and strictly, a highly skilled, --- single_track specialty officer. But as many chief warrant officers assume --- positions as officer in charge or department head, along with the high --- number of bachelor's and master’s degrees held within the community, their --- contribution and expertise as a community is ever_increasing. There are --- no 'warrant officers' per se in the U.S. Navy, but rather the term 'chief --- warrant officer' is correct. In the U.S. Navy, a sailor must be in one --- of the top three enlisted ranks to be eligible to become a Chief Warrant --- Officer. In the U.S. Army, a person can progress to the warrant officer --- rank at a grade lower than E_7 thus having a longer career and greater --- opportunity to serve and grow. In the U.S. Marine Corps, after serving --- at least eight years of enlisted service, and reaching the grade of E_5 --- (sergeant), an enlisted Marine can apply for the Warrant Officer program. --- Upon the initial appointment to WO1 a warrant is given by the secretary of --- the service, and upon promotion to chief warrant officer (CW2 and above) --- they are commissioned by the President of the United States, take the same --- oath and receive the same commission and charges as commissioned officers, --- thus deriving their authority from the same source. -fun USWarrantOfficerRank : Class ; -fun USWarrantOfficerRank_Class : SubClass USWarrantOfficerRank CommissionedOfficerRank ; - --- (betweenOnPath ?OBJ1 ?OBJ2 ?OBJ3 ?PATH) --- means that ?OBJ2 is spatially located between ?OBJ1 and ?OBJ3 on the path --- ?PATH. Note that this is a more specialized relation of between since any --- object that is between others with respect to a particular path is also --- simply between them. -fun betweenOnPath : El Object -> El Object -> El Object -> Formula ; - - --- The typical MilitaryRank of --- the leader of an instance of the given MilitaryEchelon. -fun commandRankOfEchelon: Desc MilitaryUnit -> El MilitaryRank -> Formula ; - - --- (fitForMilitaryService ?AGENT ?PROCESS) --- means that ?AGENT is capable of carrying out the MilitaryProcess ?PROCESS as --- the agent of the ?PROCESS. -fun fitForMilitaryService: El CognitiveAgent -> Desc MilitaryProcess -> Formula ; - - --- (militaryAge ?AREA ?AGE) means that in the --- GeopoliticalArea ?AREA, a person must be ?AGE or older in order to be a --- member of the military of the ?AREA. -fun militaryAge : El GeopoliticalArea -> El TimeDuration -> Formula ; - - --- (militaryExpendituresFractionOfGDP ?AREA ?FRACTION) means --- that the estimated military spending of the GeopoliticalArea ?AREA is --- ?FRACTION of the gross domestic product (GDP) of that area. -fun militaryExpendituresFractionOfGDP : El GeopoliticalArea -> El RationalNumber -> Formula ; - - --- (militaryExpendituresFractionOfGDPInPeriod ?AREA ?FRACTION ?PERIOD) --- means that the estimated military spending of the GeopoliticalArea ?AREA --- was ?FRACTION of the gross domestic product (GDP) of that area during the --- TimeInterval indicated by ?PERIOD. -fun militaryExpendituresFractionOfGDPInPeriod : El GeopoliticalArea -> El RationalNumber -> El TimeInterval -> Formula ; - - --- (militaryExpendituresInUSDollars ?AREA ?AMOUNT) means that the --- estimated military spending of the GeopoliticalArea ?AREA is ?AMOUNT --- in UnitedStatesDollars. Note: This predicate was created to represent --- data from the CIA World Fact Book, which calculates ?AMOUNT by multiplying --- estimated percentage of ?AREA's budget spent on defense by its gross --- domestic product (GDP) expressed in U.S. dollars. Note that this GDP is --- calculated by the exchange rate method rather than by --- PPPBasedEconomicValuation. Military expenditures data is approximate. -fun militaryExpendituresInUSDollars : El GeopoliticalArea -> El CurrencyMeasure -> Formula ; - - --- (militaryExpendituresInUSDollarsInPeriod ?AREA ?AMOUNT ?PERIOD) means --- that the estimated military spending of the GeopoliticalArea ?AREA was --- ?AMOUNT in UnitedStatesDollars during the TimeInterval indicated by --- ?PERIOD. Note: This predicate was created to represent data from the CIA --- World Fact Book, which calculates ?AMOUNT by multiplying estimated defense --- spending of an ?AREA in percentage terms by the gross domestic product (GDP) --- for ?PERIOD. Note that for this figure, GDP is calculated by the exchange --- rate method rather than by PPPBasedEconomicValuation. In any case, --- military expenditures data should be treated as only approximate. -fun militaryExpendituresInUSDollarsInPeriod : El GeopoliticalArea -> El CurrencyMeasure -> El TimeInterval -> Formula ; - - --- (militaryOfArea ?MILITARY ?AREA) --- denotes that ?MILITARY is a MilitaryOrganization serving in defense of --- the GeopoliticalArea ?AREA. -fun militaryOfArea : El MilitaryOrganization -> El GeopoliticalArea -> Formula ; - - --- A subEchelon is a relationship between --- named organizational unit types in which a unit of one type is a --- subOrganization of the other. -fun subEchelon: Desc MilitaryUnit -> Desc MilitaryUnit -> Formula ; } diff --git a/examples/SUMO/Mondial.gf b/examples/SUMO/Mondial.gf new file mode 100644 index 000000000..da580f3f1 --- /dev/null +++ b/examples/SUMO/Mondial.gf @@ -0,0 +1,11116 @@ +abstract Mondial = MidLevelOntology, Geography, Government ** { + + fun Afghanistan : Ind (both Country Nation); + + fun Albania : Ind (both Country Nation); + + fun Algeria : Ind (both Country Nation); + + fun Andorra : Ind (both Country EuropeanNation); + + fun Angola : Ind (both Country Nation); + + fun AntiguaAndBarbuda : Ind (both Country Nation); + + fun Argentina : Ind (both Country Nation); + + fun Armenia : Ind (both Country Nation); + + fun Australia : Ind (both Country Nation); + + fun Austria : Ind (both Country Nation); + + fun Azerbaijan : Ind (both Country Nation); + + fun Bahamas : Ind Country ; + + fun Bahrain : Ind (both Country Nation); + + fun Bangladesh : Ind (both Country Nation); + + fun Barbados : Ind (both Country Nation); + + fun Belarus : Ind (both Country Nation); + + fun Belgium : Ind (both Country EuropeanNation); + + fun Belize : Ind (both Country Nation); + + fun Benin : Ind (both Country Nation); + + fun Bhutan : Ind (both Country Nation); + + fun Bolivia : Ind (both Country Nation); + + fun BosniaAndHerzegovina : Ind (both Country Nation); + + fun Botswana : Ind (both Country Nation); + + fun Brazil : Ind (both Country Nation); + + fun Brunei : Ind (both Country Nation); + + fun Bulgaria : Ind (both Country Nation); + + fun BurkinaFaso : Ind (both Country Nation); + + fun Burma : Ind Country ; + + fun Burundi : Ind (both Country Nation); + + fun Cambodia : Ind (both Country Nation); + + fun Cameroon : Ind (both Country Nation); + + fun Canada : Ind (both Country Nation); + + fun CapeVerde : Ind (both Country Nation); + + fun CentralAfricanRepublic : Ind (both Country Nation); + + fun Chad : Ind (both Country Nation); + + fun Chile : Ind (both Country Nation); + + fun China : Ind (both Country Nation); + + fun Colombia : Ind (both Country Nation); + + fun Comoros : Ind (both Country Nation); + + fun Congo : Ind Country ; + + fun Continents_Africa : Ind Continent ; + + fun Continents_America : Ind Continent ; + + fun Continents_Asia : Ind Continent ; + + fun Continents_Australia_Oceania : Ind Continent ; + + fun Continents_Europe : Ind Continent ; + + fun CostaRica : Ind (both Country Nation); + + fun CoteDIvoire : Ind (both Country Nation); + + fun Countries_AFG_cities_Kabul : Ind City ; + + fun Countries_AG_cities_SaintJohns : Ind City ; + + fun Countries_AL_cities_Durres : Ind City ; + + fun Countries_AL_cities_Elbasan : Ind City ; + + fun Countries_AL_cities_Korce : Ind City ; + + fun Countries_AL_cities_Shkoder : Ind City ; + + fun Countries_AL_cities_Tirane : Ind City ; + + fun Countries_AL_cities_Vlore : Ind City ; + + fun Countries_AND_cities_AndorralaVella : Ind City ; + + fun Countries_ANG_provinces_Bengo : Ind Province ; + + fun Countries_ANG_provinces_Bengo_cities_Caxito : Ind City ; + + fun Countries_ANG_provinces_Benguela : Ind Province ; + + fun Countries_ANG_provinces_Benguela_cities_Benguela : Ind City ; + + fun Countries_ANG_provinces_Bie : Ind Province ; + + fun Countries_ANG_provinces_Bie_cities_Bie : Ind City ; + + fun Countries_ANG_provinces_Cabinda : Ind Province ; + + fun Countries_ANG_provinces_Cabinda_cities_Cabinda : Ind City ; + + fun Countries_ANG_provinces_CuandoCubango : Ind Province ; + + fun Countries_ANG_provinces_CuandoCubango_cities_Menongue : Ind City ; + + fun Countries_ANG_provinces_CuanzaNorte : Ind Province ; + + fun Countries_ANG_provinces_CuanzaNorte_cities_Ndalatando : Ind City ; + + fun Countries_ANG_provinces_CuanzaSul : Ind Province ; + + fun Countries_ANG_provinces_CuanzaSul_cities_Sumbe : Ind City ; + + fun Countries_ANG_provinces_Cunene : Ind Province ; + + fun Countries_ANG_provinces_Cunene_cities_Ngiva : Ind City ; + + fun Countries_ANG_provinces_Huambo : Ind Province ; + + fun Countries_ANG_provinces_Huambo_cities_Huambo : Ind City ; + + fun Countries_ANG_provinces_Huila : Ind Province ; + + fun Countries_ANG_provinces_Huila_cities_Lubango : Ind City ; + + fun Countries_ANG_provinces_Luanda : Ind Province ; + + fun Countries_ANG_provinces_Luanda_cities_Luanda : Ind City ; + + fun Countries_ANG_provinces_LundaNorte : Ind Province ; + + fun Countries_ANG_provinces_LundaNorte_cities_Lucapa : Ind City ; + + fun Countries_ANG_provinces_LundaSul : Ind Province ; + + fun Countries_ANG_provinces_LundaSul_cities_Saurimo : Ind City ; + + fun Countries_ANG_provinces_Malanje : Ind Province ; + + fun Countries_ANG_provinces_Malanje_cities_Malanje : Ind City ; + + fun Countries_ANG_provinces_Moxico : Ind Province ; + + fun Countries_ANG_provinces_Moxico_cities_Luena : Ind City ; + + fun Countries_ANG_provinces_Namibe : Ind Province ; + + fun Countries_ANG_provinces_Namibe_cities_Namibe : Ind City ; + + fun Countries_ANG_provinces_Uige : Ind Province ; + + fun Countries_ANG_provinces_Uige_cities_Uige : Ind City ; + + fun Countries_ANG_provinces_Zaire : Ind Province ; + + fun Countries_ANG_provinces_Zaire_cities_MbanzaCongo : Ind City ; + + fun Countries_ARM_cities_Yerevan : Ind City ; + + fun Countries_AUS_provinces_AustraliaCapitalTerritory : Ind Province ; + + fun Countries_AUS_provinces_AustraliaCapitalTerritory_cities_Canberra : Ind City ; + + fun Countries_AUS_provinces_CocosIslands : Ind Province ; + + fun Countries_AUS_provinces_CocosIslands_cities_BantamVillage : Ind City ; + + fun Countries_AUS_provinces_Kirimati : Ind Province ; + + fun Countries_AUS_provinces_Kirimati_cities_FlyingFishCove : Ind City ; + + fun Countries_AUS_provinces_NewSouthWales : Ind Province ; + + fun Countries_AUS_provinces_NewSouthWales_cities_Geelong : Ind City ; + + fun Countries_AUS_provinces_NewSouthWales_cities_Newcastle : Ind City ; + + fun Countries_AUS_provinces_NewSouthWales_cities_SunshineCoast : Ind City ; + + fun Countries_AUS_provinces_NewSouthWales_cities_Sydney : Ind City ; + + fun Countries_AUS_provinces_NewSouthWales_cities_Wollongong : Ind City ; + + fun Countries_AUS_provinces_NorfolkIsland : Ind Province ; + + fun Countries_AUS_provinces_NorfolkIsland_cities_Kingston : Ind City ; + + fun Countries_AUS_provinces_NorthernTerritory : Ind Province ; + + fun Countries_AUS_provinces_NorthernTerritory_cities_Darwin : Ind City ; + + fun Countries_AUS_provinces_Queensland : Ind Province ; + + fun Countries_AUS_provinces_Queensland_cities_Brisbane : Ind City ; + + fun Countries_AUS_provinces_Queensland_cities_GoldCoast : Ind City ; + + fun Countries_AUS_provinces_Queensland_cities_Townsville : Ind City ; + + fun Countries_AUS_provinces_SouthAustralia : Ind Province ; + + fun Countries_AUS_provinces_SouthAustralia_cities_Adelaide : Ind City ; + + fun Countries_AUS_provinces_Tasmania : Ind Province ; + + fun Countries_AUS_provinces_Tasmania_cities_Hobart : Ind City ; + + fun Countries_AUS_provinces_Victoria : Ind Province ; + + fun Countries_AUS_provinces_Victoria_cities_Melbourne : Ind City ; + + fun Countries_AUS_provinces_WesternAustralia : Ind Province ; + + fun Countries_AUS_provinces_WesternAustralia_cities_Albany : Ind City ; + + fun Countries_AUS_provinces_WesternAustralia_cities_Perth : Ind City ; + + fun Countries_AZ_cities_Baku : Ind City ; + + fun Countries_A_provinces_Burgenland : Ind Province ; + + fun Countries_A_provinces_Burgenland_cities_Eisenstadt : Ind City ; + + fun Countries_A_provinces_Carinthia : Ind Province ; + + fun Countries_A_provinces_Carinthia_cities_Klagenfurt : Ind City ; + + fun Countries_A_provinces_LowerAustria : Ind Province ; + + fun Countries_A_provinces_LowerAustria_cities_St_Polten : Ind City ; + + fun Countries_A_provinces_Salzburg : Ind Province ; + + fun Countries_A_provinces_Salzburg_cities_Salzburg : Ind City ; + + fun Countries_A_provinces_Styria : Ind Province ; + + fun Countries_A_provinces_Styria_cities_Graz : Ind City ; + + fun Countries_A_provinces_Tyrol : Ind Province ; + + fun Countries_A_provinces_Tyrol_cities_Innsbruck : Ind City ; + + fun Countries_A_provinces_UpperAustria : Ind Province ; + + fun Countries_A_provinces_UpperAustria_cities_Linz : Ind City ; + + fun Countries_A_provinces_Vienna : Ind Province ; + + fun Countries_A_provinces_Vienna_cities_Vienna : Ind City ; + + fun Countries_A_provinces_Vorarlberg : Ind Province ; + + fun Countries_A_provinces_Vorarlberg_cities_Bregenz : Ind City ; + + fun Countries_BDS_cities_Bridgetown : Ind City ; + + fun Countries_BD_cities_Barisal : Ind City ; + + fun Countries_BD_cities_Bogra : Ind City ; + + fun Countries_BD_cities_Brahmanbaria : Ind City ; + + fun Countries_BD_cities_Chittagong : Ind City ; + + fun Countries_BD_cities_Comilla : Ind City ; + + fun Countries_BD_cities_Dhaka : Ind City ; + + fun Countries_BD_cities_Dinajpur : Ind City ; + + fun Countries_BD_cities_Gazipur : Ind City ; + + fun Countries_BD_cities_Jamalpur : Ind City ; + + fun Countries_BD_cities_Jessore : Ind City ; + + fun Countries_BD_cities_Khulna : Ind City ; + + fun Countries_BD_cities_Mymensingh : Ind City ; + + fun Countries_BD_cities_Naogaon : Ind City ; + + fun Countries_BD_cities_Narayanganj : Ind City ; + + fun Countries_BD_cities_Narsinghdi : Ind City ; + + fun Countries_BD_cities_Nawabganj : Ind City ; + + fun Countries_BD_cities_Pabna : Ind City ; + + fun Countries_BD_cities_Rajshahi : Ind City ; + + fun Countries_BD_cities_Rangpur : Ind City ; + + fun Countries_BD_cities_Saidpur : Ind City ; + + fun Countries_BD_cities_Savar : Ind City ; + + fun Countries_BD_cities_Sirajganj : Ind City ; + + fun Countries_BD_cities_Sylhet : Ind City ; + + fun Countries_BD_cities_Tangail : Ind City ; + + fun Countries_BD_cities_Tongi : Ind City ; + + fun Countries_BEN_cities_Porto_Novo : Ind City ; + + fun Countries_BF_cities_Ouagadougou : Ind City ; + + fun Countries_BG_cities_Sofia : Ind City ; + + fun Countries_BHT_cities_Thimphu : Ind City ; + + fun Countries_BIH_cities_Sarajevo : Ind City ; + + fun Countries_BI_cities_Bujumbura : Ind City ; + + fun Countries_BOL_cities_Cochabamba : Ind City ; + + fun Countries_BOL_cities_LaPaz : Ind City ; + + fun Countries_BOL_cities_Sucre : Ind City ; + + fun Countries_BRN_cities_Manama : Ind City ; + + fun Countries_BRU_cities_BandarSeriBegawan : Ind City ; + + fun Countries_BR_cities_Abaetetuba : Ind City ; + + fun Countries_BR_cities_Alvorada : Ind City ; + + fun Countries_BR_cities_Betim : Ind City ; + + fun Countries_BR_cities_CabodeSantoAgostinho : Ind City ; + + fun Countries_BR_cities_CamposdosGoytacazes : Ind City ; + + fun Countries_BR_cities_Contagem : Ind City ; + + fun Countries_BR_cities_Hortolandia : Ind City ; + + fun Countries_BR_cities_Ibirite : Ind City ; + + fun Countries_BR_cities_NossaSenhoradoSocorro : Ind City ; + + fun Countries_BR_cities_RibeiraodasNeves : Ind City ; + + fun Countries_BR_cities_SantaBarbaradOeste : Ind City ; + + fun Countries_BR_cities_SaoJosedosPinhais : Ind City ; + + fun Countries_BR_cities_SapucaiadoSul : Ind City ; + + fun Countries_BR_cities_Sumare : Ind City ; + + fun Countries_BR_provinces_Acre : Ind Province ; + + fun Countries_BR_provinces_Acre_cities_RioBranco : Ind City ; + + fun Countries_BR_provinces_Alagoas : Ind Province ; + + fun Countries_BR_provinces_Alagoas_cities_Maceio : Ind City ; + + fun Countries_BR_provinces_Amapa : Ind Province ; + + fun Countries_BR_provinces_Amapa_cities_Macapa : Ind City ; + + fun Countries_BR_provinces_Amazonas : Ind Province ; + + fun Countries_BR_provinces_Amazonas_cities_Manaus : Ind City ; + + fun Countries_BR_provinces_Bahia : Ind Province ; + + fun Countries_BR_provinces_Bahia_cities_Alagoinhas : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Barreiras : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Camacari : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_FeiradeSantana : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Ilheus : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Itabuna : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Jequie : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Juazeiro : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_Salvador : Ind City ; + + fun Countries_BR_provinces_Bahia_cities_VitoriadaConquista : Ind City ; + + fun Countries_BR_provinces_Ceara : Ind Province ; + + fun Countries_BR_provinces_Ceara_cities_Caucaia : Ind City ; + + fun Countries_BR_provinces_Ceara_cities_Fortaleza : Ind City ; + + fun Countries_BR_provinces_Ceara_cities_JuazeirodoNorte : Ind City ; + + fun Countries_BR_provinces_Ceara_cities_Maracanau : Ind City ; + + fun Countries_BR_provinces_Ceara_cities_Sobral : Ind City ; + + fun Countries_BR_provinces_DistritoFederal : Ind Province ; + + fun Countries_BR_provinces_DistritoFederal_cities_Brasilia : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto : Ind Province ; + + fun Countries_BR_provinces_EspiritoSanto_cities_CachoeirodeItapemirim : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto_cities_Cariacica : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto_cities_Colatina : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto_cities_Linhares : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto_cities_Serra : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto_cities_VilaVelha : Ind City ; + + fun Countries_BR_provinces_EspiritoSanto_cities_Vitoria : Ind City ; + + fun Countries_BR_provinces_Goias : Ind Province ; + + fun Countries_BR_provinces_Goias_cities_Anapolis : Ind City ; + + fun Countries_BR_provinces_Goias_cities_Araguaina : Ind City ; + + fun Countries_BR_provinces_Goias_cities_Goiania : Ind City ; + + fun Countries_BR_provinces_Goias_cities_Luziania : Ind City ; + + fun Countries_BR_provinces_Goias_cities_RioVerde : Ind City ; + + fun Countries_BR_provinces_Maranhao : Ind Province ; + + fun Countries_BR_provinces_Maranhao_cities_Caxias : Ind City ; + + fun Countries_BR_provinces_Maranhao_cities_Codo : Ind City ; + + fun Countries_BR_provinces_Maranhao_cities_Imperatriz : Ind City ; + + fun Countries_BR_provinces_Maranhao_cities_SaoLuis : Ind City ; + + fun Countries_BR_provinces_Maranhao_cities_Timon : Ind City ; + + fun Countries_BR_provinces_MatoGrosso : Ind Province ; + + fun Countries_BR_provinces_MatoGrosso_cities_Cuiaba : Ind City ; + + fun Countries_BR_provinces_MatoGrosso_cities_Rondonopolis : Ind City ; + + fun Countries_BR_provinces_MatoGrosso_cities_VarzeaGrande : Ind City ; + + fun Countries_BR_provinces_MatoGrossodoSul : Ind Province ; + + fun Countries_BR_provinces_MatoGrossodoSul_cities_CampoGrande : Ind City ; + + fun Countries_BR_provinces_MatoGrossodoSul_cities_Dourados : Ind City ; + + fun Countries_BR_provinces_MatoGrossodoSul_cities_Parnaiba : Ind City ; + + fun Countries_BR_provinces_MinasGerais : Ind Province ; + + fun Countries_BR_provinces_MinasGerais_cities_Barbacena : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_BeloHorizonte : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_Divinopolis : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_GovernadorValadares : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_Ipatinga : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_ItapecericadaSerra : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_JuizdeFora : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_MontesClaros : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_PatosdeMinas : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_PocosdeCaldas : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_Sabara : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_SeteLagoas : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_TeofiloOtoni : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_Uberaba : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_Uberlandia : Ind City ; + + fun Countries_BR_provinces_MinasGerais_cities_Varginha : Ind City ; + + fun Countries_BR_provinces_Para : Ind Province ; + + fun Countries_BR_provinces_Para_cities_Ananindeua : Ind City ; + + fun Countries_BR_provinces_Para_cities_Belem : Ind City ; + + fun Countries_BR_provinces_Para_cities_Castanhal : Ind City ; + + fun Countries_BR_provinces_Para_cities_Itaituba : Ind City ; + + fun Countries_BR_provinces_Para_cities_Maraba : Ind City ; + + fun Countries_BR_provinces_Para_cities_Santarem : Ind City ; + + fun Countries_BR_provinces_Paraiba : Ind Province ; + + fun Countries_BR_provinces_Paraiba_cities_CampinaGrande : Ind City ; + + fun Countries_BR_provinces_Paraiba_cities_JoaoPessoa : Ind City ; + + fun Countries_BR_provinces_Paraiba_cities_SantaLuzia : Ind City ; + + fun Countries_BR_provinces_Paraiba_cities_SantaRita : Ind City ; + + fun Countries_BR_provinces_Parana : Ind Province ; + + fun Countries_BR_provinces_Parana_cities_Apucarana : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Cascavel : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Colombo : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Curitiba : Ind City ; + + fun Countries_BR_provinces_Parana_cities_FozdoIguacu : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Guarapuava : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Londrina : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Maringa : Ind City ; + + fun Countries_BR_provinces_Parana_cities_Paranagua : Ind City ; + + fun Countries_BR_provinces_Parana_cities_PontaGrossa : Ind City ; + + fun Countries_BR_provinces_Pernambuco : Ind Province ; + + fun Countries_BR_provinces_Pernambuco_cities_Camaragibe : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_Caruaru : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_Garanhuns : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_Gravatai : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_JaboataodosGuararapes : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_Paulista : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_Petrolina : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_Recife : Ind City ; + + fun Countries_BR_provinces_Pernambuco_cities_VitoriadeSantoAntao : Ind City ; + + fun Countries_BR_provinces_Piaui : Ind Province ; + + fun Countries_BR_provinces_Piaui_cities_Teresina : Ind City ; + + fun Countries_BR_provinces_RioGrandedoNorte : Ind Province ; + + fun Countries_BR_provinces_RioGrandedoNorte_cities_Mossoro : Ind City ; + + fun Countries_BR_provinces_RioGrandedoNorte_cities_Natal : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul : Ind Province ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_Bage : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_Canoas : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_CaxiasdoSul : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_NovoHamburgo : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_PassoFundo : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_Pelotas : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_PortoAlegre : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_RioGrande : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_SantaCruzdoSul : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_SantaMaria : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_SaoLeopoldo : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_Uruguaiana : Ind City ; + + fun Countries_BR_provinces_RioGrandedoSul_cities_Viamao : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro : Ind Province ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_BarraMansa : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_BelfortRoxo : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_CaboFrio : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_DuquedeCaxias : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Itaborai : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Macae : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Mage : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Nilopolis : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Niteroi : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_NovaFriburgo : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_NovoIguacu : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Olinda : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Petropolis : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Queimados : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_RiodeJaneiro : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_SaoGoncalo : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_SaoJoaodeMeriti : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_Teresopolis : Ind City ; + + fun Countries_BR_provinces_RiodeJaneiro_cities_VoltaRedonda : Ind City ; + + fun Countries_BR_provinces_Rondonia : Ind Province ; + + fun Countries_BR_provinces_Rondonia_cities_PortoVelho : Ind City ; + + fun Countries_BR_provinces_Roraima : Ind Province ; + + fun Countries_BR_provinces_Roraima_cities_BoaVista : Ind City ; + + fun Countries_BR_provinces_SantaCatarina : Ind Province ; + + fun Countries_BR_provinces_SantaCatarina_cities_Blumenau : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_Chapeco : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_Criciuma : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_Florianopolis : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_Itajai : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_Joinvile : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_Lages : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_PraiaGrande : Ind City ; + + fun Countries_BR_provinces_SantaCatarina_cities_SaoJose : Ind City ; + + fun Countries_BR_provinces_SaoPaulo : Ind Province ; + + fun Countries_BR_provinces_SaoPaulo_cities_Americana : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_AparecidadeGoiania : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Aracatuba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Araraquara : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Barretos : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Barueri : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Bauru : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Botucatu : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_BragancaPaulista : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Campinas : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Carapicuiba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Catanduva : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Cotia : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Diadema : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Embu : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_FerrazdeVasconcelos : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Franca : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_FranciscoMorato : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Guaruja : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Guarulhos : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Indaiatuba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Itapetininga : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Itapevi : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Itaquaquecetuba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Itu : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Jacarei : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Jau : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Jundiai : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Limeira : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Marilia : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Maua : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_MojiGuacu : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_MojidasCruzes : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Osasco : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Pindamonhangaba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Piracicaba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_PresidentePrudente : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_RibeiraoPires : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_RibeiraoPreto : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_RioClaro : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SantoAndre : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Santos : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoBernardodoCampo : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoCaetanodoSul : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoCarlos : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoJosedoRioPreto : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoJosedosCampos : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoPaulo : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_SaoVicente : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Sorocaba : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Suzano : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_TaboaodaSerra : Ind City ; + + fun Countries_BR_provinces_SaoPaulo_cities_Taubate : Ind City ; + + fun Countries_BR_provinces_Sergipe : Ind Province ; + + fun Countries_BR_provinces_Sergipe_cities_Aracaju : Ind City ; + + fun Countries_BR_provinces_Sergipe_cities_Arapiraca : Ind City ; + + fun Countries_BR_provinces_Tocantins : Ind Province ; + + fun Countries_BR_provinces_Tocantins_cities_Palmas : Ind City ; + + fun Countries_BS_cities_Nassau : Ind City ; + + fun Countries_BY_cities_Minsk : Ind City ; + + fun Countries_BZ_cities_Belmopan : Ind City ; + + fun Countries_B_provinces_Antwerp : Ind Province ; + + fun Countries_B_provinces_Antwerp_cities_Antwerp : Ind City ; + + fun Countries_B_provinces_Brabant : Ind Province ; + + fun Countries_B_provinces_Brabant_cities_Brussels : Ind City ; + + fun Countries_B_provinces_EastFlanders : Ind Province ; + + fun Countries_B_provinces_EastFlanders_cities_Ghent : Ind City ; + + fun Countries_B_provinces_Hainaut : Ind Province ; + + fun Countries_B_provinces_Hainaut_cities_Charleroi : Ind City ; + + fun Countries_B_provinces_Hainaut_cities_Mons : Ind City ; + + fun Countries_B_provinces_Liege : Ind Province ; + + fun Countries_B_provinces_Liege_cities_Liege : Ind City ; + + fun Countries_B_provinces_Limburg : Ind Province ; + + fun Countries_B_provinces_Limburg_cities_Hasselt : Ind City ; + + fun Countries_B_provinces_Luxembourg : Ind Province ; + + fun Countries_B_provinces_Luxembourg_cities_Arlon : Ind City ; + + fun Countries_B_provinces_Namur : Ind Province ; + + fun Countries_B_provinces_Namur_cities_Namur : Ind City ; + + fun Countries_B_provinces_WestFlanders : Ind Province ; + + fun Countries_B_provinces_WestFlanders_cities_Brugge : Ind City ; + + fun Countries_CAM_provinces_Adamaoua : Ind Province ; + + fun Countries_CAM_provinces_Adamaoua_cities_Ngaoundere : Ind City ; + + fun Countries_CAM_provinces_Centre : Ind Province ; + + fun Countries_CAM_provinces_Centre_cities_Yaounde : Ind City ; + + fun Countries_CAM_provinces_Cote : Ind Province ; + + fun Countries_CAM_provinces_Cote_cities_Douala : Ind City ; + + fun Countries_CAM_provinces_Est : Ind Province ; + + fun Countries_CAM_provinces_Est_cities_Bertoua : Ind City ; + + fun Countries_CAM_provinces_Nord : Ind Province ; + + fun Countries_CAM_provinces_Nord_cities_Garoua : Ind City ; + + fun Countries_CAM_provinces_Nordextreme : Ind Province ; + + fun Countries_CAM_provinces_Nordextreme_cities_Maroua : Ind City ; + + fun Countries_CAM_provinces_Nordoueste : Ind Province ; + + fun Countries_CAM_provinces_Nordoueste_cities_Bamenda : Ind City ; + + fun Countries_CAM_provinces_Ouest : Ind Province ; + + fun Countries_CAM_provinces_Ouest_cities_Bafoussam : Ind City ; + + fun Countries_CAM_provinces_Sud : Ind Province ; + + fun Countries_CAM_provinces_Sud_cities_Ebolowa : Ind City ; + + fun Countries_CAM_provinces_Sudoueste : Ind Province ; + + fun Countries_CAM_provinces_Sudoueste_cities_Buea : Ind City ; + + fun Countries_CDN_cities_Surrey : Ind City ; + + fun Countries_CDN_provinces_Alberta : Ind Province ; + + fun Countries_CDN_provinces_Alberta_cities_Calgary : Ind City ; + + fun Countries_CDN_provinces_Alberta_cities_Edmonton : Ind City ; + + fun Countries_CDN_provinces_BritishColumbia : Ind Province ; + + fun Countries_CDN_provinces_BritishColumbia_cities_Burnaby : Ind City ; + + fun Countries_CDN_provinces_BritishColumbia_cities_Vancouver : Ind City ; + + fun Countries_CDN_provinces_BritishColumbia_cities_Victoria : Ind City ; + + fun Countries_CDN_provinces_Manitoba : Ind Province ; + + fun Countries_CDN_provinces_Manitoba_cities_Winnipeg : Ind City ; + + fun Countries_CDN_provinces_NewBrunswick : Ind Province ; + + fun Countries_CDN_provinces_NewBrunswick_cities_Fredericton : Ind City ; + + fun Countries_CDN_provinces_Newfoundland : Ind Province ; + + fun Countries_CDN_provinces_Newfoundland_cities_SaintJohns : Ind City ; + + fun Countries_CDN_provinces_NorthwestTerritories : Ind Province ; + + fun Countries_CDN_provinces_NorthwestTerritories_cities_Yellowknife : Ind City ; + + fun Countries_CDN_provinces_NovaScotia : Ind Province ; + + fun Countries_CDN_provinces_NovaScotia_cities_Halifax : Ind City ; + + fun Countries_CDN_provinces_Ontario : Ind Province ; + + fun Countries_CDN_provinces_Ontario_cities_Brampton : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Burlington : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_EastYork : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Etobicoke : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Glouchester : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Hamilton : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Kitchener : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_London : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Markham : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Mississauga : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Nepean : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_NorthYork : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Oshawa : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Ottawa : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_SaintCatharines : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Scarborough : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_ThunderBay : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Toronto : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Vaughan : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_Windsor : Ind City ; + + fun Countries_CDN_provinces_Ontario_cities_York : Ind City ; + + fun Countries_CDN_provinces_PrinceEdwardIsland : Ind Province ; + + fun Countries_CDN_provinces_PrinceEdwardIsland_cities_Charlottetown : Ind City ; + + fun Countries_CDN_provinces_Quebec : Ind Province ; + + fun Countries_CDN_provinces_Quebec_cities_Laval : Ind City ; + + fun Countries_CDN_provinces_Quebec_cities_Longueuil : Ind City ; + + fun Countries_CDN_provinces_Quebec_cities_Montreal : Ind City ; + + fun Countries_CDN_provinces_Quebec_cities_Quebec : Ind City ; + + fun Countries_CDN_provinces_Quebec_cities_Richmond : Ind City ; + + fun Countries_CDN_provinces_Saskatchewan : Ind Province ; + + fun Countries_CDN_provinces_Saskatchewan_cities_Regina : Ind City ; + + fun Countries_CDN_provinces_Saskatchewan_cities_Saskatoon : Ind City ; + + fun Countries_CDN_provinces_YukonTerritory : Ind Province ; + + fun Countries_CDN_provinces_YukonTerritory_cities_Whitehorse : Ind City ; + + fun Countries_CH_provinces_AG : Ind Province ; + + fun Countries_CH_provinces_AG_cities_Aarau : Ind City ; + + fun Countries_CH_provinces_AI : Ind Province ; + + fun Countries_CH_provinces_AI_cities_Appenzell : Ind City ; + + fun Countries_CH_provinces_AR : Ind Province ; + + fun Countries_CH_provinces_AR_cities_Herisau : Ind City ; + + fun Countries_CH_provinces_BE : Ind Province ; + + fun Countries_CH_provinces_BE_cities_Bern : Ind City ; + + fun Countries_CH_provinces_BE_cities_Biel : Ind City ; + + fun Countries_CH_provinces_BL : Ind Province ; + + fun Countries_CH_provinces_BL_cities_Liestal : Ind City ; + + fun Countries_CH_provinces_BS : Ind Province ; + + fun Countries_CH_provinces_BS_cities_Basel : Ind City ; + + fun Countries_CH_provinces_FR : Ind Province ; + + fun Countries_CH_provinces_FR_cities_Fribourg : Ind City ; + + fun Countries_CH_provinces_GE : Ind Province ; + + fun Countries_CH_provinces_GE_cities_Geneva : Ind City ; + + fun Countries_CH_provinces_GL : Ind Province ; + + fun Countries_CH_provinces_GL_cities_Glarus : Ind City ; + + fun Countries_CH_provinces_GR : Ind Province ; + + fun Countries_CH_provinces_GR_cities_Chur : Ind City ; + + fun Countries_CH_provinces_JU : Ind Province ; + + fun Countries_CH_provinces_JU_cities_Delemont : Ind City ; + + fun Countries_CH_provinces_LU : Ind Province ; + + fun Countries_CH_provinces_LU_cities_Luzern : Ind City ; + + fun Countries_CH_provinces_NE : Ind Province ; + + fun Countries_CH_provinces_NE_cities_Neuchatel : Ind City ; + + fun Countries_CH_provinces_NW : Ind Province ; + + fun Countries_CH_provinces_NW_cities_Stans : Ind City ; + + fun Countries_CH_provinces_OW : Ind Province ; + + fun Countries_CH_provinces_OW_cities_Sarnen : Ind City ; + + fun Countries_CH_provinces_SG : Ind Province ; + + fun Countries_CH_provinces_SG_cities_SanktGallen : Ind City ; + + fun Countries_CH_provinces_SH : Ind Province ; + + fun Countries_CH_provinces_SH_cities_Schaffhausen : Ind City ; + + fun Countries_CH_provinces_SO : Ind Province ; + + fun Countries_CH_provinces_SO_cities_Solothurn : Ind City ; + + fun Countries_CH_provinces_SZ : Ind Province ; + + fun Countries_CH_provinces_SZ_cities_Schwyz : Ind City ; + + fun Countries_CH_provinces_TG : Ind Province ; + + fun Countries_CH_provinces_TG_cities_Frauenfeld : Ind City ; + + fun Countries_CH_provinces_TI : Ind Province ; + + fun Countries_CH_provinces_TI_cities_Bellinzona : Ind City ; + + fun Countries_CH_provinces_UR : Ind Province ; + + fun Countries_CH_provinces_UR_cities_Altdorf : Ind City ; + + fun Countries_CH_provinces_VD : Ind Province ; + + fun Countries_CH_provinces_VD_cities_Lausanne : Ind City ; + + fun Countries_CH_provinces_VS : Ind Province ; + + fun Countries_CH_provinces_VS_cities_Sion : Ind City ; + + fun Countries_CH_provinces_ZG : Ind Province ; + + fun Countries_CH_provinces_ZG_cities_Zug : Ind City ; + + fun Countries_CH_provinces_ZH : Ind Province ; + + fun Countries_CH_provinces_ZH_cities_Winterthur : Ind City ; + + fun Countries_CH_provinces_ZH_cities_Zurich : Ind City ; + + fun Countries_CI_cities_Abidjan : Ind City ; + + fun Countries_CI_cities_Yamoussoukro : Ind City ; + + fun Countries_CL_cities_Colombo : Ind City ; + + fun Countries_COM_cities_Moroni : Ind City ; + + fun Countries_CO_provinces_Amazonas : Ind Province ; + + fun Countries_CO_provinces_Amazonas_cities_Leticia : Ind City ; + + fun Countries_CO_provinces_Antioquia : Ind Province ; + + fun Countries_CO_provinces_Antioquia_cities_Bello : Ind City ; + + fun Countries_CO_provinces_Antioquia_cities_Envigado : Ind City ; + + fun Countries_CO_provinces_Antioquia_cities_Itagui : Ind City ; + + fun Countries_CO_provinces_Antioquia_cities_Medellin : Ind City ; + + fun Countries_CO_provinces_Antioquia_cities_Turbo : Ind City ; + + fun Countries_CO_provinces_Arauca : Ind Province ; + + fun Countries_CO_provinces_Arauca_cities_Arauca : Ind City ; + + fun Countries_CO_provinces_Atlantico : Ind Province ; + + fun Countries_CO_provinces_Atlantico_cities_Barranquilla : Ind City ; + + fun Countries_CO_provinces_Atlantico_cities_Malambo : Ind City ; + + fun Countries_CO_provinces_Atlantico_cities_Soledad : Ind City ; + + fun Countries_CO_provinces_Bolivar : Ind Province ; + + fun Countries_CO_provinces_Bolivar_cities_Cartagena : Ind City ; + + fun Countries_CO_provinces_Bolivar_cities_Mangangue : Ind City ; + + fun Countries_CO_provinces_Boyaca : Ind Province ; + + fun Countries_CO_provinces_Boyaca_cities_Tunja : Ind City ; + + fun Countries_CO_provinces_Caldas : Ind Province ; + + fun Countries_CO_provinces_Caldas_cities_Manizales : Ind City ; + + fun Countries_CO_provinces_Caqueta : Ind Province ; + + fun Countries_CO_provinces_Caqueta_cities_Florencia : Ind City ; + + fun Countries_CO_provinces_Casanare : Ind Province ; + + fun Countries_CO_provinces_Casanare_cities_Yopal : Ind City ; + + fun Countries_CO_provinces_Cauca : Ind Province ; + + fun Countries_CO_provinces_Cauca_cities_Popayan : Ind City ; + + fun Countries_CO_provinces_Cesar : Ind Province ; + + fun Countries_CO_provinces_Cesar_cities_Valledupar : Ind City ; + + fun Countries_CO_provinces_Choco : Ind Province ; + + fun Countries_CO_provinces_Choco_cities_Quibdo : Ind City ; + + fun Countries_CO_provinces_Cordoba : Ind Province ; + + fun Countries_CO_provinces_Cordoba_cities_Monteria : Ind City ; + + fun Countries_CO_provinces_Cundinamarca : Ind Province ; + + fun Countries_CO_provinces_Cundinamarca_cities_Soacha : Ind City ; + + fun Countries_CO_provinces_Guainia : Ind Province ; + + fun Countries_CO_provinces_Guainia_cities_PuertoInirida : Ind City ; + + fun Countries_CO_provinces_Guajira_La : Ind Province ; + + fun Countries_CO_provinces_Guajira_La_cities_Cienaga : Ind City ; + + fun Countries_CO_provinces_Guajira_La_cities_Riohacha : Ind City ; + + fun Countries_CO_provinces_Guaviare : Ind Province ; + + fun Countries_CO_provinces_Guaviare_cities_SanJosedelGuaviare : Ind City ; + + fun Countries_CO_provinces_Huila : Ind Province ; + + fun Countries_CO_provinces_Huila_cities_Neiva : Ind City ; + + fun Countries_CO_provinces_Magdalena : Ind Province ; + + fun Countries_CO_provinces_Magdalena_cities_SantaMarta : Ind City ; + + fun Countries_CO_provinces_Meta : Ind Province ; + + fun Countries_CO_provinces_Meta_cities_Villavicencio : Ind City ; + + fun Countries_CO_provinces_Narino : Ind Province ; + + fun Countries_CO_provinces_Narino_cities_Pasto : Ind City ; + + fun Countries_CO_provinces_Narino_cities_Tumaco : Ind City ; + + fun Countries_CO_provinces_NortedeSantander : Ind Province ; + + fun Countries_CO_provinces_NortedeSantander_cities_Cucuta : Ind City ; + + fun Countries_CO_provinces_Putumayo : Ind Province ; + + fun Countries_CO_provinces_Putumayo_cities_Mocoa : Ind City ; + + fun Countries_CO_provinces_Quindio : Ind Province ; + + fun Countries_CO_provinces_Quindio_cities_Armenia : Ind City ; + + fun Countries_CO_provinces_Risaralda : Ind Province ; + + fun Countries_CO_provinces_Risaralda_cities_Dosquebradas : Ind City ; + + fun Countries_CO_provinces_Risaralda_cities_Pereira : Ind City ; + + fun Countries_CO_provinces_SanAndresyProvidencia : Ind Province ; + + fun Countries_CO_provinces_SanAndresyProvidencia_cities_SanAndres : Ind City ; + + fun Countries_CO_provinces_SantaFedeBogota_DC : Ind Province ; + + fun Countries_CO_provinces_SantaFedeBogota_DC_cities_Bogota : Ind City ; + + fun Countries_CO_provinces_SantanderdelSur : Ind Province ; + + fun Countries_CO_provinces_SantanderdelSur_cities_Barrancabermeja : Ind City ; + + fun Countries_CO_provinces_SantanderdelSur_cities_Bucaramanga : Ind City ; + + fun Countries_CO_provinces_SantanderdelSur_cities_Floridablanca : Ind City ; + + fun Countries_CO_provinces_Sucre : Ind Province ; + + fun Countries_CO_provinces_Sucre_cities_Sincelejo : Ind City ; + + fun Countries_CO_provinces_Tolima : Ind Province ; + + fun Countries_CO_provinces_Tolima_cities_Ibague : Ind City ; + + fun Countries_CO_provinces_ValledeCauca : Ind Province ; + + fun Countries_CO_provinces_ValledeCauca_cities_Buenaventura : Ind City ; + + fun Countries_CO_provinces_ValledeCauca_cities_Cali : Ind City ; + + fun Countries_CO_provinces_ValledeCauca_cities_Cartago : Ind City ; + + fun Countries_CO_provinces_ValledeCauca_cities_Palmira : Ind City ; + + fun Countries_CO_provinces_ValledeCauca_cities_Tulua : Ind City ; + + fun Countries_CO_provinces_Vaupes : Ind Province ; + + fun Countries_CO_provinces_Vaupes_cities_Mitu : Ind City ; + + fun Countries_CO_provinces_Vichada : Ind Province ; + + fun Countries_CO_provinces_Vichada_cities_PuertoCarreno : Ind City ; + + fun Countries_CR_provinces_Alajuela : Ind Province ; + + fun Countries_CR_provinces_Alajuela_cities_Alajuela : Ind City ; + + fun Countries_CR_provinces_Cartago : Ind Province ; + + fun Countries_CR_provinces_Cartago_cities_Cartago : Ind City ; + + fun Countries_CR_provinces_Guanacaste : Ind Province ; + + fun Countries_CR_provinces_Guanacaste_cities_Liberia : Ind City ; + + fun Countries_CR_provinces_Heredia : Ind Province ; + + fun Countries_CR_provinces_Heredia_cities_Heredia : Ind City ; + + fun Countries_CR_provinces_Limon : Ind Province ; + + fun Countries_CR_provinces_Limon_cities_Limon : Ind City ; + + fun Countries_CR_provinces_Punarenas : Ind Province ; + + fun Countries_CR_provinces_Punarenas_cities_Puntarenas : Ind City ; + + fun Countries_CR_provinces_SanJose : Ind Province ; + + fun Countries_CR_provinces_SanJose_cities_SanJose : Ind City ; + + fun Countries_CV_cities_Praia : Ind City ; + + fun Countries_CY_cities_Nicosia : Ind City ; + + fun Countries_CZ_provinces_Jihocesky : Ind Province ; + + fun Countries_CZ_provinces_Jihocesky_cities_CeskeBudejovice : Ind City ; + + fun Countries_CZ_provinces_Jihomoravsky : Ind Province ; + + fun Countries_CZ_provinces_Jihomoravsky_cities_Brno : Ind City ; + + fun Countries_CZ_provinces_Jihomoravsky_cities_Zlin : Ind City ; + + fun Countries_CZ_provinces_Praha : Ind Province ; + + fun Countries_CZ_provinces_Praha_cities_Prague : Ind City ; + + fun Countries_CZ_provinces_Severocesky : Ind Province ; + + fun Countries_CZ_provinces_Severocesky_cities_Liberec : Ind City ; + + fun Countries_CZ_provinces_Severocesky_cities_UstinadLabem : Ind City ; + + fun Countries_CZ_provinces_Severomoravsky : Ind Province ; + + fun Countries_CZ_provinces_Severomoravsky_cities_Olomouc : Ind City ; + + fun Countries_CZ_provinces_Severomoravsky_cities_Ostrava : Ind City ; + + fun Countries_CZ_provinces_Vychodocesky : Ind Province ; + + fun Countries_CZ_provinces_Vychodocesky_cities_HradecKralove : Ind City ; + + fun Countries_CZ_provinces_Vychodocesky_cities_Pardubice : Ind City ; + + fun Countries_CZ_provinces_Zapadocesky : Ind Province ; + + fun Countries_CZ_provinces_Zapadocesky_cities_Plzen : Ind City ; + + fun Countries_C_provinces_Camaguey : Ind Province ; + + fun Countries_C_provinces_Camaguey_cities_Camaguey : Ind City ; + + fun Countries_C_provinces_CiegodeAvila : Ind Province ; + + fun Countries_C_provinces_CiegodeAvila_cities_CiegodeAvila : Ind City ; + + fun Countries_C_provinces_Cienfuegos : Ind Province ; + + fun Countries_C_provinces_Cienfuegos_cities_Cienfuegos : Ind City ; + + fun Countries_C_provinces_CiudaddelaHabana : Ind Province ; + + fun Countries_C_provinces_CiudaddelaHabana_cities_Havana : Ind City ; + + fun Countries_C_provinces_Granma : Ind Province ; + + fun Countries_C_provinces_Granma_cities_Bayamo : Ind City ; + + fun Countries_C_provinces_Granma_cities_Manzanillo : Ind City ; + + fun Countries_C_provinces_Guantanamo : Ind Province ; + + fun Countries_C_provinces_Guantanamo_cities_Guantanamo : Ind City ; + + fun Countries_C_provinces_Holguin : Ind Province ; + + fun Countries_C_provinces_Holguin_cities_Holguin : Ind City ; + + fun Countries_C_provinces_IsladelaJuventud : Ind Province ; + + fun Countries_C_provinces_IsladelaJuventud_cities_NuevaGerona : Ind City ; + + fun Countries_C_provinces_LaHabana : Ind Province ; + + fun Countries_C_provinces_LasTunas : Ind Province ; + + fun Countries_C_provinces_LasTunas_cities_VictoriadelasTunas : Ind City ; + + fun Countries_C_provinces_Matanzas : Ind Province ; + + fun Countries_C_provinces_Matanzas_cities_Matanzas : Ind City ; + + fun Countries_C_provinces_PinardelRio : Ind Province ; + + fun Countries_C_provinces_PinardelRio_cities_PinardelRio : Ind City ; + + fun Countries_C_provinces_SanctiSpiritus : Ind Province ; + + fun Countries_C_provinces_SanctiSpiritus_cities_SanctiSpiritus : Ind City ; + + fun Countries_C_provinces_SantiagodeCuba : Ind Province ; + + fun Countries_C_provinces_SantiagodeCuba_cities_SantiagodeCuba : Ind City ; + + fun Countries_C_provinces_VillaClara : Ind Province ; + + fun Countries_C_provinces_VillaClara_cities_SantaClara : Ind City ; + + fun Countries_DJI_cities_Djibouti : Ind City ; + + fun Countries_DK_cities_Aalborg : Ind City ; + + fun Countries_DK_cities_Aarhus : Ind City ; + + fun Countries_DK_cities_Copenhagen : Ind City ; + + fun Countries_DK_cities_Esbjerg : Ind City ; + + fun Countries_DK_cities_Odense : Ind City ; + + fun Countries_DK_cities_Randers : Ind City ; + + fun Countries_DOM_cities_SantoDomingo : Ind City ; + + fun Countries_DZ_cities_Algiers : Ind City ; + + fun Countries_DZ_cities_Annaba : Ind City ; + + fun Countries_DZ_cities_Batna : Ind City ; + + fun Countries_DZ_cities_Bechar : Ind City ; + + fun Countries_DZ_cities_Bejaia : Ind City ; + + fun Countries_DZ_cities_Blida : Ind City ; + + fun Countries_DZ_cities_Constantine : Ind City ; + + fun Countries_DZ_cities_Mostaganem : Ind City ; + + fun Countries_DZ_cities_Oran : Ind City ; + + fun Countries_DZ_cities_Setif : Ind City ; + + fun Countries_DZ_cities_SidibelAbbes : Ind City ; + + fun Countries_DZ_cities_Skikda : Ind City ; + + fun Countries_DZ_cities_Tebessa : Ind City ; + + fun Countries_DZ_cities_Tlemcen : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg : Ind Province ; + + fun Countries_D_provinces_BadenWurttemberg_cities_FreiburgimBreisgau : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Heidelberg : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Heilbronn : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Karlsruhe : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Mannheim : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Pforzheim : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Reutlingen : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Stuttgart : Ind City ; + + fun Countries_D_provinces_BadenWurttemberg_cities_Ulm : Ind City ; + + fun Countries_D_provinces_Bayern : Ind Province ; + + fun Countries_D_provinces_Bayern_cities_Augsburg : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Erlangen : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Furth : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Ingolstadt : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Munich : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Nurnberg : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Regensburg : Ind City ; + + fun Countries_D_provinces_Bayern_cities_Wurzburg : Ind City ; + + fun Countries_D_provinces_Berlin : Ind Province ; + + fun Countries_D_provinces_Berlin_cities_Berlin : Ind City ; + + fun Countries_D_provinces_Brandenburg : Ind Province ; + + fun Countries_D_provinces_Brandenburg_cities_Cottbus : Ind City ; + + fun Countries_D_provinces_Brandenburg_cities_Potsdam : Ind City ; + + fun Countries_D_provinces_Bremen : Ind Province ; + + fun Countries_D_provinces_Bremen_cities_Bremen : Ind City ; + + fun Countries_D_provinces_Bremen_cities_Bremerhaven : Ind City ; + + fun Countries_D_provinces_Hamburg : Ind Province ; + + fun Countries_D_provinces_Hamburg_cities_Hamburg : Ind City ; + + fun Countries_D_provinces_Hessen : Ind Province ; + + fun Countries_D_provinces_Hessen_cities_Darmstadt : Ind City ; + + fun Countries_D_provinces_Hessen_cities_FrankfurtamMain : Ind City ; + + fun Countries_D_provinces_Hessen_cities_Kassel : Ind City ; + + fun Countries_D_provinces_Hessen_cities_OffenbachamMain : Ind City ; + + fun Countries_D_provinces_Hessen_cities_Wiesbaden : Ind City ; + + fun Countries_D_provinces_MecklenburgVorpommern : Ind Province ; + + fun Countries_D_provinces_MecklenburgVorpommern_cities_Rostock : Ind City ; + + fun Countries_D_provinces_MecklenburgVorpommern_cities_Schwerin : Ind City ; + + fun Countries_D_provinces_Niedersachsen : Ind Province ; + + fun Countries_D_provinces_Niedersachsen_cities_Braunschweig : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Gottingen : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Hannover : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Hildesheim : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Oldenburg : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Osnabruck : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Salzgitter : Ind City ; + + fun Countries_D_provinces_Niedersachsen_cities_Wolfsburg : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen : Ind Province ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Aachen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_BergischGladbach : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Bielefeld : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Bochum : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Bonn : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Bottrop : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Dortmund : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Duisburg : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Dusseldorf : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Essen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Gelsenkirchen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Hagen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Hamm : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Herne : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Koln : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Krefeld : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Leverkusen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Moers : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Monchengladbach : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_MulheimanderRuhr : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Munster : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Neuss : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Oberhausen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Paderborn : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Recklinghausen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Remscheid : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Siegen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Solingen : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Witten : Ind City ; + + fun Countries_D_provinces_NordrheinWestfalen_cities_Wuppertal : Ind City ; + + fun Countries_D_provinces_RheinlandPfalz : Ind Province ; + + fun Countries_D_provinces_RheinlandPfalz_cities_Kaiserslautern : Ind City ; + + fun Countries_D_provinces_RheinlandPfalz_cities_Koblenz : Ind City ; + + fun Countries_D_provinces_RheinlandPfalz_cities_Ludwigshafen : Ind City ; + + fun Countries_D_provinces_RheinlandPfalz_cities_Mainz : Ind City ; + + fun Countries_D_provinces_Saarland : Ind Province ; + + fun Countries_D_provinces_Saarland_cities_Saarbrucken : Ind City ; + + fun Countries_D_provinces_Sachsen : Ind Province ; + + fun Countries_D_provinces_SachsenAnhalt : Ind Province ; + + fun Countries_D_provinces_SachsenAnhalt_cities_Halle : Ind City ; + + fun Countries_D_provinces_SachsenAnhalt_cities_Magdeburg : Ind City ; + + fun Countries_D_provinces_Sachsen_cities_Chemnitz : Ind City ; + + fun Countries_D_provinces_Sachsen_cities_Dresden : Ind City ; + + fun Countries_D_provinces_Sachsen_cities_Leipzig : Ind City ; + + fun Countries_D_provinces_Sachsen_cities_Zwickau : Ind City ; + + fun Countries_D_provinces_SchleswigHolstein : Ind Province ; + + fun Countries_D_provinces_SchleswigHolstein_cities_Kiel : Ind City ; + + fun Countries_D_provinces_SchleswigHolstein_cities_Lubeck : Ind City ; + + fun Countries_D_provinces_Thuringen : Ind Province ; + + fun Countries_D_provinces_Thuringen_cities_Erfurt : Ind City ; + + fun Countries_D_provinces_Thuringen_cities_Gera : Ind City ; + + fun Countries_D_provinces_Thuringen_cities_Jena : Ind City ; + + fun Countries_EAK_provinces_Central : Ind Province ; + + fun Countries_EAK_provinces_Central_cities_Nyeri : Ind City ; + + fun Countries_EAK_provinces_Central_cities_Thika : Ind City ; + + fun Countries_EAK_provinces_Coast : Ind Province ; + + fun Countries_EAK_provinces_Coast_cities_Malindi : Ind City ; + + fun Countries_EAK_provinces_Coast_cities_Mombasa : Ind City ; + + fun Countries_EAK_provinces_Eastern : Ind Province ; + + fun Countries_EAK_provinces_Eastern_cities_Embu : Ind City ; + + fun Countries_EAK_provinces_Eastern_cities_Machakos : Ind City ; + + fun Countries_EAK_provinces_Eastern_cities_Meru : Ind City ; + + fun Countries_EAK_provinces_Nairobi : Ind Province ; + + fun Countries_EAK_provinces_Nairobi_cities_Nairobi : Ind City ; + + fun Countries_EAK_provinces_NorthEastern : Ind Province ; + + fun Countries_EAK_provinces_NorthEastern_cities_Garissa : Ind City ; + + fun Countries_EAK_provinces_Nyanza : Ind Province ; + + fun Countries_EAK_provinces_Nyanza_cities_Kisii : Ind City ; + + fun Countries_EAK_provinces_Nyanza_cities_Kisumu : Ind City ; + + fun Countries_EAK_provinces_RiftValley : Ind Province ; + + fun Countries_EAK_provinces_RiftValley_cities_Eldoret : Ind City ; + + fun Countries_EAK_provinces_RiftValley_cities_Kericho : Ind City ; + + fun Countries_EAK_provinces_RiftValley_cities_Kitale : Ind City ; + + fun Countries_EAK_provinces_RiftValley_cities_Nakuru : Ind City ; + + fun Countries_EAK_provinces_Western : Ind Province ; + + fun Countries_EAK_provinces_Western_cities_Kakamega : Ind City ; + + fun Countries_EAT_provinces_Arusha : Ind Province ; + + fun Countries_EAT_provinces_Arusha_cities_Arusha : Ind City ; + + fun Countries_EAT_provinces_Daressalam : Ind Province ; + + fun Countries_EAT_provinces_Daressalam_cities_DaresSalaam : Ind City ; + + fun Countries_EAT_provinces_Dodoma : Ind Province ; + + fun Countries_EAT_provinces_Dodoma_cities_Dodoma : Ind City ; + + fun Countries_EAT_provinces_Iringa : Ind Province ; + + fun Countries_EAT_provinces_Iringa_cities_Iringa : Ind City ; + + fun Countries_EAT_provinces_Kagera : Ind Province ; + + fun Countries_EAT_provinces_Kagera_cities_Bukoba : Ind City ; + + fun Countries_EAT_provinces_KaskaziniPemba : Ind Province ; + + fun Countries_EAT_provinces_KaskaziniPemba_cities_Wete : Ind City ; + + fun Countries_EAT_provinces_KaskaziniUjunga : Ind Province ; + + fun Countries_EAT_provinces_KaskaziniUjunga_cities_Mkokotoni : Ind City ; + + fun Countries_EAT_provinces_Kigoma : Ind Province ; + + fun Countries_EAT_provinces_Kigoma_cities_KigomaUjiji : Ind City ; + + fun Countries_EAT_provinces_Kilimanjaro : Ind Province ; + + fun Countries_EAT_provinces_Kilimanjaro_cities_Moshi : Ind City ; + + fun Countries_EAT_provinces_KusiniPemba : Ind Province ; + + fun Countries_EAT_provinces_KusiniPemba_cities_ChakeCahke : Ind City ; + + fun Countries_EAT_provinces_KusiniUjunga : Ind Province ; + + fun Countries_EAT_provinces_KusiniUjunga_cities_Koani : Ind City ; + + fun Countries_EAT_provinces_Lindi : Ind Province ; + + fun Countries_EAT_provinces_Lindi_cities_Lindi : Ind City ; + + fun Countries_EAT_provinces_Mara : Ind Province ; + + fun Countries_EAT_provinces_Mara_cities_Musoma : Ind City ; + + fun Countries_EAT_provinces_Mbeya : Ind Province ; + + fun Countries_EAT_provinces_Mbeya_cities_Mbeya : Ind City ; + + fun Countries_EAT_provinces_MjiniMagharibi : Ind Province ; + + fun Countries_EAT_provinces_MjiniMagharibi_cities_Zanzibar : Ind City ; + + fun Countries_EAT_provinces_Morogoro : Ind Province ; + + fun Countries_EAT_provinces_Morogoro_cities_Morogoro : Ind City ; + + fun Countries_EAT_provinces_Mtwara : Ind Province ; + + fun Countries_EAT_provinces_Mtwara_cities_MtwaraMikandani : Ind City ; + + fun Countries_EAT_provinces_Mwanza : Ind Province ; + + fun Countries_EAT_provinces_Mwanza_cities_Mwanza : Ind City ; + + fun Countries_EAT_provinces_Pwani : Ind Province ; + + fun Countries_EAT_provinces_Rukwa : Ind Province ; + + fun Countries_EAT_provinces_Rukwa_cities_Sumbawanga : Ind City ; + + fun Countries_EAT_provinces_Ruvuma : Ind Province ; + + fun Countries_EAT_provinces_Ruvuma_cities_Songea : Ind City ; + + fun Countries_EAT_provinces_Shinyanga : Ind Province ; + + fun Countries_EAT_provinces_Shinyanga_cities_Shinyanga : Ind City ; + + fun Countries_EAT_provinces_Singida : Ind Province ; + + fun Countries_EAT_provinces_Singida_cities_Singida : Ind City ; + + fun Countries_EAT_provinces_Tabora : Ind Province ; + + fun Countries_EAT_provinces_Tabora_cities_Tabora : Ind City ; + + fun Countries_EAT_provinces_Tanga : Ind Province ; + + fun Countries_EAT_provinces_Tanga_cities_Tanga : Ind City ; + + fun Countries_EAU_cities_Kampala : Ind City ; + + fun Countries_EC_cities_Guayaquil : Ind City ; + + fun Countries_EC_cities_Quito : Ind City ; + + fun Countries_ER_cities_Asmara : Ind City ; + + fun Countries_ES_cities_Apopa : Ind City ; + + fun Countries_ES_cities_Delgado : Ind City ; + + fun Countries_ES_cities_Mejicanos : Ind City ; + + fun Countries_ES_cities_Soyapango : Ind City ; + + fun Countries_ES_provinces_Ahuachapan : Ind Province ; + + fun Countries_ES_provinces_Ahuachapan_cities_Ahuachapan : Ind City ; + + fun Countries_ES_provinces_Cabanas : Ind Province ; + + fun Countries_ES_provinces_Cabanas_cities_Sensuntepeque : Ind City ; + + fun Countries_ES_provinces_Chalatenango : Ind Province ; + + fun Countries_ES_provinces_Chalatenango_cities_Chalatenango : Ind City ; + + fun Countries_ES_provinces_Cuscatlan : Ind Province ; + + fun Countries_ES_provinces_Cuscatlan_cities_Cojutepeque : Ind City ; + + fun Countries_ES_provinces_LaLibertad : Ind Province ; + + fun Countries_ES_provinces_LaLibertad_cities_NuevaSanSalvador : Ind City ; + + fun Countries_ES_provinces_LaPaz : Ind Province ; + + fun Countries_ES_provinces_LaPaz_cities_Zacatecoluca : Ind City ; + + fun Countries_ES_provinces_LaUnion : Ind Province ; + + fun Countries_ES_provinces_LaUnion_cities_LaUnion : Ind City ; + + fun Countries_ES_provinces_Morazan : Ind Province ; + + fun Countries_ES_provinces_Morazan_cities_SanFranciscoGotera : Ind City ; + + fun Countries_ES_provinces_SanMiguel : Ind Province ; + + fun Countries_ES_provinces_SanMiguel_cities_SanMiguel : Ind City ; + + fun Countries_ES_provinces_SanSalvador : Ind Province ; + + fun Countries_ES_provinces_SanSalvador_cities_SanSalvador : Ind City ; + + fun Countries_ES_provinces_SanVicente : Ind Province ; + + fun Countries_ES_provinces_SanVicente_cities_SanVicente : Ind City ; + + fun Countries_ES_provinces_SantaAna : Ind Province ; + + fun Countries_ES_provinces_SantaAna_cities_SantaAna : Ind City ; + + fun Countries_ES_provinces_Sonsonate : Ind Province ; + + fun Countries_ES_provinces_Sonsonate_cities_Sonsonate : Ind City ; + + fun Countries_ES_provinces_Usulutan : Ind Province ; + + fun Countries_ES_provinces_Usulutan_cities_Usulutan : Ind City ; + + fun Countries_ETH_cities_AddisAbaba : Ind City ; + + fun Countries_ETH_cities_BahirDar : Ind City ; + + fun Countries_ETH_cities_Debrezit : Ind City ; + + fun Countries_ETH_cities_Dese : Ind City ; + + fun Countries_ETH_cities_DireDawa : Ind City ; + + fun Countries_ETH_cities_Gonder : Ind City ; + + fun Countries_ETH_cities_Harer : Ind City ; + + fun Countries_ETH_cities_Jima : Ind City ; + + fun Countries_ETH_cities_Mekele : Ind City ; + + fun Countries_ETH_cities_Nazret : Ind City ; + + fun Countries_ET_provinces_Aswan : Ind Province ; + + fun Countries_ET_provinces_Aswan_cities_Aswan : Ind City ; + + fun Countries_ET_provinces_Asyut : Ind Province ; + + fun Countries_ET_provinces_Asyut_cities_Asyut : Ind City ; + + fun Countries_ET_provinces_BeniSuef : Ind Province ; + + fun Countries_ET_provinces_BeniSuef_cities_BeniSuef : Ind City ; + + fun Countries_ET_provinces_BurSaid_munic : Ind Province ; + + fun Countries_ET_provinces_BurSaid_munic_cities_BurSaid : Ind City ; + + fun Countries_ET_provinces_BurSaid_munic_cities_PortSaid : Ind City ; + + fun Countries_ET_provinces_Dumyat : Ind Province ; + + fun Countries_ET_provinces_Dumyat_cities_Dumyat : Ind City ; + + fun Countries_ET_provinces_ElBahrelAhmar : Ind Province ; + + fun Countries_ET_provinces_ElBahrelAhmar_cities_Hurghada : Ind City ; + + fun Countries_ET_provinces_ElBuhayra : Ind Province ; + + fun Countries_ET_provinces_ElBuhayra_cities_Damanhur : Ind City ; + + fun Countries_ET_provinces_ElBuhayra_cities_KafrelDauwar : Ind City ; + + fun Countries_ET_provinces_ElDaqahliya : Ind Province ; + + fun Countries_ET_provinces_ElDaqahliya_cities_ElMansura : Ind City ; + + fun Countries_ET_provinces_ElFaiyum : Ind Province ; + + fun Countries_ET_provinces_ElFaiyum_cities_ElFaiyum : Ind City ; + + fun Countries_ET_provinces_ElGharbiya : Ind Province ; + + fun Countries_ET_provinces_ElGharbiya_cities_ElMahallaelKubra : Ind City ; + + fun Countries_ET_provinces_ElGharbiya_cities_Tanta : Ind City ; + + fun Countries_ET_provinces_ElGiza : Ind Province ; + + fun Countries_ET_provinces_ElGiza_cities_ElGiza : Ind City ; + + fun Countries_ET_provinces_ElIskandariya_munic : Ind Province ; + + fun Countries_ET_provinces_ElIskandariya_munic_cities_Alexandria : Ind City ; + + fun Countries_ET_provinces_ElIskandariya_munic_cities_ElIskandariya : Ind City ; + + fun Countries_ET_provinces_ElMinufiya : Ind Province ; + + fun Countries_ET_provinces_ElMinufiya_cities_ShibinelKom : Ind City ; + + fun Countries_ET_provinces_ElMinya : Ind Province ; + + fun Countries_ET_provinces_ElMinya_cities_ElMinya : Ind City ; + + fun Countries_ET_provinces_ElQahira_munic : Ind Province ; + + fun Countries_ET_provinces_ElQahira_munic_cities_Cairo : Ind City ; + + fun Countries_ET_provinces_ElQahira_munic_cities_ElQahira : Ind City ; + + fun Countries_ET_provinces_ElQahira_munic_cities_Helwan : Ind City ; + + fun Countries_ET_provinces_ElQalubiya : Ind Province ; + + fun Countries_ET_provinces_ElQalubiya_cities_Benha : Ind City ; + + fun Countries_ET_provinces_ElQalubiya_cities_ShubraelKheima : Ind City ; + + fun Countries_ET_provinces_ElSuweiz_munic : Ind Province ; + + fun Countries_ET_provinces_ElSuweiz_munic_cities_ElSuweiz : Ind City ; + + fun Countries_ET_provinces_ElSuweiz_munic_cities_Suez : Ind City ; + + fun Countries_ET_provinces_ElWadielJadid : Ind Province ; + + fun Countries_ET_provinces_ElWadielJadid_cities_ElKharga : Ind City ; + + fun Countries_ET_provinces_Ismailiya : Ind Province ; + + fun Countries_ET_provinces_Ismailiya_cities_Ismailiya : Ind City ; + + fun Countries_ET_provinces_KafrelSheikh : Ind Province ; + + fun Countries_ET_provinces_KafrelSheikh_cities_KafrelSheikh : Ind City ; + + fun Countries_ET_provinces_Matruh : Ind Province ; + + fun Countries_ET_provinces_Matruh_cities_MarsaMatruh : Ind City ; + + fun Countries_ET_provinces_Qena : Ind Province ; + + fun Countries_ET_provinces_Qena_cities_ElUqsur : Ind City ; + + fun Countries_ET_provinces_Qena_cities_Qena : Ind City ; + + fun Countries_ET_provinces_Sharqiya : Ind Province ; + + fun Countries_ET_provinces_Sharqiya_cities_Zagazig : Ind City ; + + fun Countries_ET_provinces_SinaalJanubiyah : Ind Province ; + + fun Countries_ET_provinces_SinaalJanubiyah_cities_ElTur : Ind City ; + + fun Countries_ET_provinces_SinaashShamaliyah : Ind Province ; + + fun Countries_ET_provinces_SinaashShamaliyah_cities_ElArish : Ind City ; + + fun Countries_ET_provinces_Sohag : Ind Province ; + + fun Countries_ET_provinces_Sohag_cities_Sohag : Ind City ; + + fun Countries_EW_cities_Tallinn : Ind City ; + + fun Countries_E_provinces_Andalusia : Ind Province ; + + fun Countries_E_provinces_Andalusia_cities_Algeciras : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Almeria : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Cadiz : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Cordoba : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Granada : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Huelva : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Jaen : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_JerezdelaFrontera : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Malaga : Ind City ; + + fun Countries_E_provinces_Andalusia_cities_Sevilla : Ind City ; + + fun Countries_E_provinces_Aragon : Ind Province ; + + fun Countries_E_provinces_Aragon_cities_Zaragoza : Ind City ; + + fun Countries_E_provinces_Asturias : Ind Province ; + + fun Countries_E_provinces_Asturias_cities_Gijon : Ind City ; + + fun Countries_E_provinces_Asturias_cities_Oviedo : Ind City ; + + fun Countries_E_provinces_BalearicIslands : Ind Province ; + + fun Countries_E_provinces_BalearicIslands_cities_PalmadeMallorca : Ind City ; + + fun Countries_E_provinces_BasqueCountry : Ind Province ; + + fun Countries_E_provinces_BasqueCountry_cities_Bilbao : Ind City ; + + fun Countries_E_provinces_BasqueCountry_cities_Donostia : Ind City ; + + fun Countries_E_provinces_BasqueCountry_cities_VitoriaGasteiz : Ind City ; + + fun Countries_E_provinces_CanaryIslands : Ind Province ; + + fun Countries_E_provinces_CanaryIslands_cities_LaLaguna : Ind City ; + + fun Countries_E_provinces_CanaryIslands_cities_LasPalmasdeGranCanaria : Ind City ; + + fun Countries_E_provinces_CanaryIslands_cities_SantaCruzdeTenerife : Ind City ; + + fun Countries_E_provinces_Cantabria : Ind Province ; + + fun Countries_E_provinces_Cantabria_cities_Santander : Ind City ; + + fun Countries_E_provinces_CastileLaMancha : Ind Province ; + + fun Countries_E_provinces_CastileLaMancha_cities_Toledo : Ind City ; + + fun Countries_E_provinces_CastileandLeon : Ind Province ; + + fun Countries_E_provinces_CastileandLeon_cities_Albacete : Ind City ; + + fun Countries_E_provinces_CastileandLeon_cities_Burgos : Ind City ; + + fun Countries_E_provinces_CastileandLeon_cities_Leon : Ind City ; + + fun Countries_E_provinces_CastileandLeon_cities_Salamanca : Ind City ; + + fun Countries_E_provinces_CastileandLeon_cities_Valladolid : Ind City ; + + fun Countries_E_provinces_Catalonia : Ind Province ; + + fun Countries_E_provinces_Catalonia_cities_Badalona : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Baracaldo : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Barcelona : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_HospitaletdeLlobregat : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Lleida : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Mataro : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Sabadell : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_SantaColomadeGramanet : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Tarragona : Ind City ; + + fun Countries_E_provinces_Catalonia_cities_Terrassa : Ind City ; + + fun Countries_E_provinces_Estremadura : Ind Province ; + + fun Countries_E_provinces_Estremadura_cities_Badajoz : Ind City ; + + fun Countries_E_provinces_Estremadura_cities_Merida : Ind City ; + + fun Countries_E_provinces_Galicia : Ind Province ; + + fun Countries_E_provinces_Galicia_cities_LaCoruna : Ind City ; + + fun Countries_E_provinces_Galicia_cities_Orense : Ind City ; + + fun Countries_E_provinces_Galicia_cities_SantiagodeCompostella : Ind City ; + + fun Countries_E_provinces_Galicia_cities_Vigo : Ind City ; + + fun Countries_E_provinces_Madrid : Ind Province ; + + fun Countries_E_provinces_Madrid_cities_AlcaladeHenares : Ind City ; + + fun Countries_E_provinces_Madrid_cities_Alcorcon : Ind City ; + + fun Countries_E_provinces_Madrid_cities_Fuenlabrada : Ind City ; + + fun Countries_E_provinces_Madrid_cities_Getafe : Ind City ; + + fun Countries_E_provinces_Madrid_cities_Leganes : Ind City ; + + fun Countries_E_provinces_Madrid_cities_Madrid : Ind City ; + + fun Countries_E_provinces_Madrid_cities_Mostoles : Ind City ; + + fun Countries_E_provinces_Murcia : Ind Province ; + + fun Countries_E_provinces_Murcia_cities_Cartagena : Ind City ; + + fun Countries_E_provinces_Murcia_cities_Murcia : Ind City ; + + fun Countries_E_provinces_Navarre : Ind Province ; + + fun Countries_E_provinces_Navarre_cities_Pamplona : Ind City ; + + fun Countries_E_provinces_Rioja : Ind Province ; + + fun Countries_E_provinces_Rioja_cities_Logrono : Ind City ; + + fun Countries_E_provinces_Valencia : Ind Province ; + + fun Countries_E_provinces_Valencia_cities_Alacant : Ind City ; + + fun Countries_E_provinces_Valencia_cities_CastellondelaPlana : Ind City ; + + fun Countries_E_provinces_Valencia_cities_Elx : Ind City ; + + fun Countries_E_provinces_Valencia_cities_Valencia : Ind City ; + + fun Countries_FGU_cities_Cayenne : Ind City ; + + fun Countries_FJI_cities_Suva : Ind City ; + + fun Countries_FL_cities_Vaduz : Ind City ; + + fun Countries_FSM_cities_Kolonia : Ind City ; + + fun Countries_F_provinces_Alsace : Ind Province ; + + fun Countries_F_provinces_Alsace_cities_Mulhouse : Ind City ; + + fun Countries_F_provinces_Alsace_cities_Strasbourg : Ind City ; + + fun Countries_F_provinces_Aquitaine : Ind Province ; + + fun Countries_F_provinces_Aquitaine_cities_Bordeaux : Ind City ; + + fun Countries_F_provinces_Auvergne : Ind Province ; + + fun Countries_F_provinces_Auvergne_cities_ClermontFerrand : Ind City ; + + fun Countries_F_provinces_BasseNormandie : Ind Province ; + + fun Countries_F_provinces_BasseNormandie_cities_Caen : Ind City ; + + fun Countries_F_provinces_Bourgogne : Ind Province ; + + fun Countries_F_provinces_Bourgogne_cities_Dijon : Ind City ; + + fun Countries_F_provinces_Bretagne : Ind Province ; + + fun Countries_F_provinces_Bretagne_cities_Brest : Ind City ; + + fun Countries_F_provinces_Bretagne_cities_Rennes : Ind City ; + + fun Countries_F_provinces_Centre : Ind Province ; + + fun Countries_F_provinces_Centre_cities_Orleans : Ind City ; + + fun Countries_F_provinces_Centre_cities_Tours : Ind City ; + + fun Countries_F_provinces_ChampagneArdenne : Ind Province ; + + fun Countries_F_provinces_ChampagneArdenne_cities_ChalonssurMarne : Ind City ; + + fun Countries_F_provinces_ChampagneArdenne_cities_Reims : Ind City ; + + fun Countries_F_provinces_Corse : Ind Province ; + + fun Countries_F_provinces_Corse_cities_Ajaccio : Ind City ; + + fun Countries_F_provinces_FrancheComte : Ind Province ; + + fun Countries_F_provinces_FrancheComte_cities_Besancon : Ind City ; + + fun Countries_F_provinces_HauteNormandie : Ind Province ; + + fun Countries_F_provinces_HauteNormandie_cities_LeHavre : Ind City ; + + fun Countries_F_provinces_HauteNormandie_cities_Rouen : Ind City ; + + fun Countries_F_provinces_IledeFrance : Ind Province ; + + fun Countries_F_provinces_IledeFrance_cities_BoulogneBillancourt : Ind City ; + + fun Countries_F_provinces_IledeFrance_cities_Paris : Ind City ; + + fun Countries_F_provinces_LanguedocRousillon : Ind Province ; + + fun Countries_F_provinces_LanguedocRousillon_cities_Montpellier : Ind City ; + + fun Countries_F_provinces_LanguedocRousillon_cities_Nimes : Ind City ; + + fun Countries_F_provinces_LanguedocRousillon_cities_Perpignan : Ind City ; + + fun Countries_F_provinces_Limousin : Ind Province ; + + fun Countries_F_provinces_Limousin_cities_Limoges : Ind City ; + + fun Countries_F_provinces_Lorraine : Ind Province ; + + fun Countries_F_provinces_Lorraine_cities_Metz : Ind City ; + + fun Countries_F_provinces_Lorraine_cities_Nancy : Ind City ; + + fun Countries_F_provinces_MidiPyrenees : Ind Province ; + + fun Countries_F_provinces_MidiPyrenees_cities_Toulouse : Ind City ; + + fun Countries_F_provinces_NordPasdeCalais : Ind Province ; + + fun Countries_F_provinces_NordPasdeCalais_cities_Lille : Ind City ; + + fun Countries_F_provinces_PaysdelaLoire : Ind Province ; + + fun Countries_F_provinces_PaysdelaLoire_cities_Angers : Ind City ; + + fun Countries_F_provinces_PaysdelaLoire_cities_LeMans : Ind City ; + + fun Countries_F_provinces_PaysdelaLoire_cities_Nantes : Ind City ; + + fun Countries_F_provinces_Picardie : Ind Province ; + + fun Countries_F_provinces_Picardie_cities_Amiens : Ind City ; + + fun Countries_F_provinces_PoitouCharentes : Ind Province ; + + fun Countries_F_provinces_PoitouCharentes_cities_Poitiers : Ind City ; + + fun Countries_F_provinces_ProvenceCotedAzur : Ind Province ; + + fun Countries_F_provinces_ProvenceCotedAzur_cities_AixenProvence : Ind City ; + + fun Countries_F_provinces_ProvenceCotedAzur_cities_Marseille : Ind City ; + + fun Countries_F_provinces_ProvenceCotedAzur_cities_Nice : Ind City ; + + fun Countries_F_provinces_ProvenceCotedAzur_cities_Toulon : Ind City ; + + fun Countries_F_provinces_RhoneAlpes : Ind Province ; + + fun Countries_F_provinces_RhoneAlpes_cities_Grenoble : Ind City ; + + fun Countries_F_provinces_RhoneAlpes_cities_Lyon : Ind City ; + + fun Countries_F_provinces_RhoneAlpes_cities_SaintEtienne : Ind City ; + + fun Countries_F_provinces_RhoneAlpes_cities_Villeurbanne : Ind City ; + + fun Countries_GB_cities_Sandwell : Ind City ; + + fun Countries_GB_cities_WrexhamMaelor : Ind City ; + + fun Countries_GB_provinces_AberconwyandColwyn : Ind Province ; + + fun Countries_GB_provinces_AberconwyandColwyn_cities_ColwynBay : Ind City ; + + fun Countries_GB_provinces_Anglesey : Ind Province ; + + fun Countries_GB_provinces_Anglesey_cities_Llangefni : Ind City ; + + fun Countries_GB_provinces_Avon : Ind Province ; + + fun Countries_GB_provinces_Avon_cities_Bristol : Ind City ; + + fun Countries_GB_provinces_Bedfordshire : Ind Province ; + + fun Countries_GB_provinces_Bedfordshire_cities_Bedford : Ind City ; + + fun Countries_GB_provinces_Bedfordshire_cities_Luton : Ind City ; + + fun Countries_GB_provinces_Berkshire : Ind Province ; + + fun Countries_GB_provinces_Berkshire_cities_Bracknell : Ind City ; + + fun Countries_GB_provinces_Berkshire_cities_Newbury : Ind City ; + + fun Countries_GB_provinces_Berkshire_cities_Reading : Ind City ; + + fun Countries_GB_provinces_Berkshire_cities_Slough : Ind City ; + + fun Countries_GB_provinces_Berkshire_cities_Windsor : Ind City ; + + fun Countries_GB_provinces_Berkshire_cities_Wokingham : Ind City ; + + fun Countries_GB_provinces_BlaenauGwent : Ind Province ; + + fun Countries_GB_provinces_BlaenauGwent_cities_EbbwVale : Ind City ; + + fun Countries_GB_provinces_Borders : Ind Province ; + + fun Countries_GB_provinces_Borders_cities_NewtownSt_Boswells : Ind City ; + + fun Countries_GB_provinces_Bridgend : Ind Province ; + + fun Countries_GB_provinces_Bridgend_cities_Bridgend : Ind City ; + + fun Countries_GB_provinces_Buckinghamshire : Ind Province ; + + fun Countries_GB_provinces_Buckinghamshire_cities_Aylesbury : Ind City ; + + fun Countries_GB_provinces_Buckinghamshire_cities_MiltonKeynes : Ind City ; + + fun Countries_GB_provinces_Buckinghamshire_cities_Wycombe : Ind City ; + + fun Countries_GB_provinces_Caerphilly : Ind Province ; + + fun Countries_GB_provinces_Caerphilly_cities_YstradFawr : Ind City ; + + fun Countries_GB_provinces_Cambridgeshire : Ind Province ; + + fun Countries_GB_provinces_Cambridgeshire_cities_Cambridge : Ind City ; + + fun Countries_GB_provinces_Cambridgeshire_cities_Huntingdon : Ind City ; + + fun Countries_GB_provinces_Cambridgeshire_cities_Peterborough : Ind City ; + + fun Countries_GB_provinces_Cardiff : Ind Province ; + + fun Countries_GB_provinces_Cardiff_cities_Cardiff : Ind City ; + + fun Countries_GB_provinces_Carmarthenshire : Ind Province ; + + fun Countries_GB_provinces_Carmarthenshire_cities_Carmarthen : Ind City ; + + fun Countries_GB_provinces_Central : Ind Province ; + + fun Countries_GB_provinces_Central_cities_Stirling : Ind City ; + + fun Countries_GB_provinces_Ceredigion : Ind Province ; + + fun Countries_GB_provinces_Ceredigion_cities_Aberystwyth : Ind City ; + + fun Countries_GB_provinces_Cheshire : Ind Province ; + + fun Countries_GB_provinces_Cheshire_cities_Chester : Ind City ; + + fun Countries_GB_provinces_Cheshire_cities_Crewe : Ind City ; + + fun Countries_GB_provinces_Cheshire_cities_Macclesfield : Ind City ; + + fun Countries_GB_provinces_Cheshire_cities_Warrington : Ind City ; + + fun Countries_GB_provinces_Cleveland : Ind Province ; + + fun Countries_GB_provinces_Cleveland_cities_Middlesbrough : Ind City ; + + fun Countries_GB_provinces_Cleveland_cities_StocktononTees : Ind City ; + + fun Countries_GB_provinces_Cornwall_IslesofScilly : Ind Province ; + + fun Countries_GB_provinces_Cornwall_IslesofScilly_cities_Truro : Ind City ; + + fun Countries_GB_provinces_Cumbria : Ind Province ; + + fun Countries_GB_provinces_Cumbria_cities_Carlisle : Ind City ; + + fun Countries_GB_provinces_Denbighshire : Ind Province ; + + fun Countries_GB_provinces_Denbighshire_cities_Ruthin : Ind City ; + + fun Countries_GB_provinces_Derbyshire : Ind Province ; + + fun Countries_GB_provinces_Derbyshire_cities_Chesterfield : Ind City ; + + fun Countries_GB_provinces_Derbyshire_cities_Derby : Ind City ; + + fun Countries_GB_provinces_Derbyshire_cities_Matlock : Ind City ; + + fun Countries_GB_provinces_Derbyshire_cities_SuttoninAshfield : Ind City ; + + fun Countries_GB_provinces_Devon : Ind Province ; + + fun Countries_GB_provinces_Devon_cities_Exeter : Ind City ; + + fun Countries_GB_provinces_Devon_cities_Plymouth : Ind City ; + + fun Countries_GB_provinces_Dorset : Ind Province ; + + fun Countries_GB_provinces_Dorset_cities_Bournemouth : Ind City ; + + fun Countries_GB_provinces_Dorset_cities_Dorchester : Ind City ; + + fun Countries_GB_provinces_Dorset_cities_Poole : Ind City ; + + fun Countries_GB_provinces_DumfriesandGalloway : Ind Province ; + + fun Countries_GB_provinces_DumfriesandGalloway_cities_Dumfries : Ind City ; + + fun Countries_GB_provinces_Durham : Ind Province ; + + fun Countries_GB_provinces_Durham_cities_Darlington : Ind City ; + + fun Countries_GB_provinces_Durham_cities_Durham : Ind City ; + + fun Countries_GB_provinces_EastSussex : Ind Province ; + + fun Countries_GB_provinces_EastSussex_cities_Brighton : Ind City ; + + fun Countries_GB_provinces_EastSussex_cities_Lewes : Ind City ; + + fun Countries_GB_provinces_Essex : Ind Province ; + + fun Countries_GB_provinces_Essex_cities_Basildon : Ind City ; + + fun Countries_GB_provinces_Essex_cities_Braintree : Ind City ; + + fun Countries_GB_provinces_Essex_cities_Chelmsford : Ind City ; + + fun Countries_GB_provinces_Essex_cities_Colchester : Ind City ; + + fun Countries_GB_provinces_Essex_cities_EppingForest : Ind City ; + + fun Countries_GB_provinces_Essex_cities_SouthendonSea : Ind City ; + + fun Countries_GB_provinces_Fife : Ind Province ; + + fun Countries_GB_provinces_Fife_cities_Glenrothes : Ind City ; + + fun Countries_GB_provinces_Flintshire : Ind Province ; + + fun Countries_GB_provinces_Flintshire_cities_Mold : Ind City ; + + fun Countries_GB_provinces_Gloucestershire : Ind Province ; + + fun Countries_GB_provinces_Gloucestershire_cities_Cheltenham : Ind City ; + + fun Countries_GB_provinces_Gloucestershire_cities_Gloucester : Ind City ; + + fun Countries_GB_provinces_Gloucestershire_cities_Glouchester : Ind City ; + + fun Countries_GB_provinces_Gloucestershire_cities_Stroud : Ind City ; + + fun Countries_GB_provinces_Grampian : Ind Province ; + + fun Countries_GB_provinces_Grampian_cities_Aberdeen : Ind City ; + + fun Countries_GB_provinces_GreaterLondon : Ind Province ; + + fun Countries_GB_provinces_GreaterLondon_cities_London : Ind City ; + + fun Countries_GB_provinces_GreaterManchester : Ind Province ; + + fun Countries_GB_provinces_GreaterManchester_cities_Bolton : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Bury : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Manchester : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Oldham : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Rochdale : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Salford : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Stockport : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Tameside : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Trafford : Ind City ; + + fun Countries_GB_provinces_GreaterManchester_cities_Wigan : Ind City ; + + fun Countries_GB_provinces_Gwynedd : Ind Province ; + + fun Countries_GB_provinces_Gwynedd_cities_Caernarfon : Ind City ; + + fun Countries_GB_provinces_Hampshire : Ind Province ; + + fun Countries_GB_provinces_Hampshire_cities_Basingstoke : Ind City ; + + fun Countries_GB_provinces_Hampshire_cities_Eastleigh : Ind City ; + + fun Countries_GB_provinces_Hampshire_cities_Fareham : Ind City ; + + fun Countries_GB_provinces_Hampshire_cities_Havant : Ind City ; + + fun Countries_GB_provinces_Hampshire_cities_Portsmouth : Ind City ; + + fun Countries_GB_provinces_Hampshire_cities_Southampton : Ind City ; + + fun Countries_GB_provinces_Hampshire_cities_Winchester : Ind City ; + + fun Countries_GB_provinces_HerefordandWorcester : Ind Province ; + + fun Countries_GB_provinces_HerefordandWorcester_cities_Worcester : Ind City ; + + fun Countries_GB_provinces_Hertfordshire : Ind Province ; + + fun Countries_GB_provinces_Hertfordshire_cities_Hertford : Ind City ; + + fun Countries_GB_provinces_Hertfordshire_cities_SaintAlbans : Ind City ; + + fun Countries_GB_provinces_Highland : Ind Province ; + + fun Countries_GB_provinces_Highland_cities_Inverness : Ind City ; + + fun Countries_GB_provinces_Humberside : Ind Province ; + + fun Countries_GB_provinces_Humberside_cities_Beverley : Ind City ; + + fun Countries_GB_provinces_Humberside_cities_Hull : Ind City ; + + fun Countries_GB_provinces_Humberside_cities_KingstonuponHull : Ind City ; + + fun Countries_GB_provinces_IslandAreas_munic : Ind Province ; + + fun Countries_GB_provinces_IslandAreas_munic_cities_IslandAreas : Ind City ; + + fun Countries_GB_provinces_IsleofWight : Ind Province ; + + fun Countries_GB_provinces_Kent : Ind Province ; + + fun Countries_GB_provinces_Kent_cities_Canterbury : Ind City ; + + fun Countries_GB_provinces_Kent_cities_Dover : Ind City ; + + fun Countries_GB_provinces_Kent_cities_Maidstone : Ind City ; + + fun Countries_GB_provinces_Kent_cities_RochesteruponMedway : Ind City ; + + fun Countries_GB_provinces_Kent_cities_Sevenoaks : Ind City ; + + fun Countries_GB_provinces_Kent_cities_Swale : Ind City ; + + fun Countries_GB_provinces_Kent_cities_Tonbridge : Ind City ; + + fun Countries_GB_provinces_Kent_cities_TunbridgeWells : Ind City ; + + fun Countries_GB_provinces_Lancashire : Ind Province ; + + fun Countries_GB_provinces_Lancashire_cities_Blackburn : Ind City ; + + fun Countries_GB_provinces_Lancashire_cities_Blackpool : Ind City ; + + fun Countries_GB_provinces_Lancashire_cities_Lancaster : Ind City ; + + fun Countries_GB_provinces_Lancashire_cities_Preston : Ind City ; + + fun Countries_GB_provinces_Leicestershire : Ind Province ; + + fun Countries_GB_provinces_Leicestershire_cities_Leicester : Ind City ; + + fun Countries_GB_provinces_Leicestershire_cities_Leichester : Ind City ; + + fun Countries_GB_provinces_Lincolnshire : Ind Province ; + + fun Countries_GB_provinces_Lincolnshire_cities_Lincoln : Ind City ; + + fun Countries_GB_provinces_Lothian : Ind Province ; + + fun Countries_GB_provinces_Lothian_cities_Edinburgh : Ind City ; + + fun Countries_GB_provinces_Merseyside : Ind Province ; + + fun Countries_GB_provinces_Merseyside_cities_Knowsley : Ind City ; + + fun Countries_GB_provinces_Merseyside_cities_Liverpool : Ind City ; + + fun Countries_GB_provinces_Merseyside_cities_SaintHelens : Ind City ; + + fun Countries_GB_provinces_Merseyside_cities_Sefton : Ind City ; + + fun Countries_GB_provinces_Merseyside_cities_Wiral : Ind City ; + + fun Countries_GB_provinces_MerthyrTydfil : Ind Province ; + + fun Countries_GB_provinces_MerthyrTydfil_cities_MerthyrTydfil : Ind City ; + + fun Countries_GB_provinces_Monmouthshire : Ind Province ; + + fun Countries_GB_provinces_Monmouthshire_cities_Cwmbran : Ind City ; + + fun Countries_GB_provinces_NeathandPortTalbot : Ind Province ; + + fun Countries_GB_provinces_NeathandPortTalbot_cities_PortTalbot : Ind City ; + + fun Countries_GB_provinces_Newport : Ind Province ; + + fun Countries_GB_provinces_Newport_cities_Newport : Ind City ; + + fun Countries_GB_provinces_Norfolk : Ind Province ; + + fun Countries_GB_provinces_Norfolk_cities_KingsLynn : Ind City ; + + fun Countries_GB_provinces_Norfolk_cities_Norwich : Ind City ; + + fun Countries_GB_provinces_NorthYorkshire : Ind Province ; + + fun Countries_GB_provinces_NorthYorkshire_cities_Harrogate : Ind City ; + + fun Countries_GB_provinces_NorthYorkshire_cities_Northallerton : Ind City ; + + fun Countries_GB_provinces_NorthYorkshire_cities_Scarborough : Ind City ; + + fun Countries_GB_provinces_NorthYorkshire_cities_York : Ind City ; + + fun Countries_GB_provinces_Northamptonshire : Ind Province ; + + fun Countries_GB_provinces_Northamptonshire_cities_Northampton : Ind City ; + + fun Countries_GB_provinces_NorthernIreland : Ind Province ; + + fun Countries_GB_provinces_NorthernIreland_cities_Belfast : Ind City ; + + fun Countries_GB_provinces_Northumberland : Ind Province ; + + fun Countries_GB_provinces_Nottinghamshire : Ind Province ; + + fun Countries_GB_provinces_Nottinghamshire_cities_Mansfield : Ind City ; + + fun Countries_GB_provinces_Nottinghamshire_cities_NewarkonTrent : Ind City ; + + fun Countries_GB_provinces_Nottinghamshire_cities_Nottingham : Ind City ; + + fun Countries_GB_provinces_Oxfordshire : Ind Province ; + + fun Countries_GB_provinces_Oxfordshire_cities_Oxford : Ind City ; + + fun Countries_GB_provinces_Pembrokeshire : Ind Province ; + + fun Countries_GB_provinces_Pembrokeshire_cities_Haverfordwest : Ind City ; + + fun Countries_GB_provinces_Powys : Ind Province ; + + fun Countries_GB_provinces_Powys_cities_LlandrindodWells : Ind City ; + + fun Countries_GB_provinces_RhonddaCynonTaff : Ind Province ; + + fun Countries_GB_provinces_RhonddaCynonTaff_cities_Rhondda : Ind City ; + + fun Countries_GB_provinces_Shropshire : Ind Province ; + + fun Countries_GB_provinces_Shropshire_cities_Shrewsbury : Ind City ; + + fun Countries_GB_provinces_Somerset : Ind Province ; + + fun Countries_GB_provinces_Somerset_cities_Taunton : Ind City ; + + fun Countries_GB_provinces_SouthYorkshire : Ind Province ; + + fun Countries_GB_provinces_SouthYorkshire_cities_Barnsley : Ind City ; + + fun Countries_GB_provinces_SouthYorkshire_cities_Doncaster : Ind City ; + + fun Countries_GB_provinces_SouthYorkshire_cities_Rotherham : Ind City ; + + fun Countries_GB_provinces_SouthYorkshire_cities_Sheffield : Ind City ; + + fun Countries_GB_provinces_Staffordshire : Ind Province ; + + fun Countries_GB_provinces_Staffordshire_cities_NewcastleunderLyme : Ind City ; + + fun Countries_GB_provinces_Staffordshire_cities_Stafford : Ind City ; + + fun Countries_GB_provinces_Staffordshire_cities_StokeonTrent : Ind City ; + + fun Countries_GB_provinces_Strathclyde : Ind Province ; + + fun Countries_GB_provinces_Strathclyde_cities_Glasgow : Ind City ; + + fun Countries_GB_provinces_Strathclyde_cities_Renfrew : Ind City ; + + fun Countries_GB_provinces_Suffolk : Ind Province ; + + fun Countries_GB_provinces_Suffolk_cities_Ipswich : Ind City ; + + fun Countries_GB_provinces_Surrey : Ind Province ; + + fun Countries_GB_provinces_Surrey_cities_Elmbridge : Ind City ; + + fun Countries_GB_provinces_Surrey_cities_Guildford : Ind City ; + + fun Countries_GB_provinces_Surrey_cities_Kingston : Ind City ; + + fun Countries_GB_provinces_Surrey_cities_Reigate : Ind City ; + + fun Countries_GB_provinces_Swansea : Ind Province ; + + fun Countries_GB_provinces_Swansea_cities_Swansea : Ind City ; + + fun Countries_GB_provinces_Tayside : Ind Province ; + + fun Countries_GB_provinces_Tayside_cities_Dundee : Ind City ; + + fun Countries_GB_provinces_Torfaen : Ind Province ; + + fun Countries_GB_provinces_Torfaen_cities_Pontypool : Ind City ; + + fun Countries_GB_provinces_TyneandWear : Ind Province ; + + fun Countries_GB_provinces_TyneandWear_cities_Gateshead : Ind City ; + + fun Countries_GB_provinces_TyneandWear_cities_Newcastle : Ind City ; + + fun Countries_GB_provinces_TyneandWear_cities_NewcastleuponTyne : Ind City ; + + fun Countries_GB_provinces_TyneandWear_cities_Sunderland : Ind City ; + + fun Countries_GB_provinces_ValeofGlamorgan : Ind Province ; + + fun Countries_GB_provinces_ValeofGlamorgan_cities_Barry : Ind City ; + + fun Countries_GB_provinces_ValeofGlamorgan_cities_RhymneyValley : Ind City ; + + fun Countries_GB_provinces_Warwickshire : Ind Province ; + + fun Countries_GB_provinces_Warwickshire_cities_Nuneaton : Ind City ; + + fun Countries_GB_provinces_Warwickshire_cities_StratfordonAvon : Ind City ; + + fun Countries_GB_provinces_Warwickshire_cities_Warwick : Ind City ; + + fun Countries_GB_provinces_WestMidlands : Ind Province ; + + fun Countries_GB_provinces_WestMidlands_cities_Birmingham : Ind City ; + + fun Countries_GB_provinces_WestMidlands_cities_Coventry : Ind City ; + + fun Countries_GB_provinces_WestMidlands_cities_Dudley : Ind City ; + + fun Countries_GB_provinces_WestMidlands_cities_Solihull : Ind City ; + + fun Countries_GB_provinces_WestMidlands_cities_Walsall : Ind City ; + + fun Countries_GB_provinces_WestMidlands_cities_WestBromwich : Ind City ; + + fun Countries_GB_provinces_WestMidlands_cities_Wolverhampton : Ind City ; + + fun Countries_GB_provinces_WestSussex : Ind Province ; + + fun Countries_GB_provinces_WestSussex_cities_Chichester : Ind City ; + + fun Countries_GB_provinces_WestSussex_cities_Horsham : Ind City ; + + fun Countries_GB_provinces_WestYorkshire : Ind Province ; + + fun Countries_GB_provinces_WestYorkshire_cities_Bradford : Ind City ; + + fun Countries_GB_provinces_WestYorkshire_cities_Huddersfield : Ind City ; + + fun Countries_GB_provinces_WestYorkshire_cities_Kirklees : Ind City ; + + fun Countries_GB_provinces_WestYorkshire_cities_Leeds : Ind City ; + + fun Countries_GB_provinces_WestYorkshire_cities_Wakefield : Ind City ; + + fun Countries_GB_provinces_Wiltshire : Ind Province ; + + fun Countries_GB_provinces_Wiltshire_cities_Salisbury : Ind City ; + + fun Countries_GB_provinces_Wiltshire_cities_Trowbridge : Ind City ; + + fun Countries_GB_provinces_Wrexham : Ind Province ; + + fun Countries_GB_provinces_Wrexham_cities_Wrexham : Ind City ; + + fun Countries_GCA_cities_GuatemalaCity : Ind City ; + + fun Countries_GCA_cities_Mixco : Ind City ; + + fun Countries_GCA_cities_VillaNueva : Ind City ; + + fun Countries_GE_cities_Tbilisi : Ind City ; + + fun Countries_GH_cities_Accra : Ind City ; + + fun Countries_GH_cities_CapeCoast : Ind City ; + + fun Countries_GH_cities_Kumasi : Ind City ; + + fun Countries_GH_cities_Sekondi : Ind City ; + + fun Countries_GH_cities_Takoradi : Ind City ; + + fun Countries_GH_cities_Tamale : Ind City ; + + fun Countries_GH_cities_Tema : Ind City ; + + fun Countries_GNB_cities_Bissau : Ind City ; + + fun Countries_GQ_cities_Malabo : Ind City ; + + fun Countries_GQ_cities_Sta_Isabel : Ind City ; + + fun Countries_GR_cities_Iraklion : Ind City ; + + fun Countries_GR_cities_Kavalla : Ind City ; + + fun Countries_GR_cities_Larisa : Ind City ; + + fun Countries_GR_cities_Patrai : Ind City ; + + fun Countries_GR_cities_Piraeus : Ind City ; + + fun Countries_GR_cities_Thessaloniki : Ind City ; + + fun Countries_GR_cities_Volos : Ind City ; + + fun Countries_GR_provinces_AnatolikiMakedhoniakaiThraki : Ind Province ; + + fun Countries_GR_provinces_Attiki : Ind Province ; + + fun Countries_GR_provinces_Attiki_cities_Athens : Ind City ; + + fun Countries_GR_provinces_DhytikiEllas : Ind Province ; + + fun Countries_GR_provinces_DhytikiMakedhonia : Ind Province ; + + fun Countries_GR_provinces_IonioiNisoi : Ind Province ; + + fun Countries_GR_provinces_Ipiros : Ind Province ; + + fun Countries_GR_provinces_KedrikiMakedhonia : Ind Province ; + + fun Countries_GR_provinces_Kriti : Ind Province ; + + fun Countries_GR_provinces_NotionAiyaion : Ind Province ; + + fun Countries_GR_provinces_Peloponnisos : Ind Province ; + + fun Countries_GR_provinces_StereaEllas : Ind Province ; + + fun Countries_GR_provinces_Thessalia : Ind Province ; + + fun Countries_GR_provinces_VoreionAiyaion : Ind Province ; + + fun Countries_GUY_cities_Georgetown : Ind City ; + + fun Countries_G_cities_Libreville : Ind City ; + + fun Countries_HCA_provinces_Atlantida : Ind Province ; + + fun Countries_HCA_provinces_Atlantida_cities_LaCeiba : Ind City ; + + fun Countries_HCA_provinces_Atlantida_cities_Tela : Ind City ; + + fun Countries_HCA_provinces_Choluteca : Ind Province ; + + fun Countries_HCA_provinces_Choluteca_cities_Choluteca : Ind City ; + + fun Countries_HCA_provinces_Colon : Ind Province ; + + fun Countries_HCA_provinces_Colon_cities_Trujillo : Ind City ; + + fun Countries_HCA_provinces_Comayagua : Ind Province ; + + fun Countries_HCA_provinces_Comayagua_cities_Comayagua : Ind City ; + + fun Countries_HCA_provinces_Copan : Ind Province ; + + fun Countries_HCA_provinces_Copan_cities_SantaRosadeCopan : Ind City ; + + fun Countries_HCA_provinces_Cortes : Ind Province ; + + fun Countries_HCA_provinces_Cortes_cities_PuertoCortes : Ind City ; + + fun Countries_HCA_provinces_Cortes_cities_SanPedroSula : Ind City ; + + fun Countries_HCA_provinces_ElParaiso : Ind Province ; + + fun Countries_HCA_provinces_ElParaiso_cities_Danli : Ind City ; + + fun Countries_HCA_provinces_ElParaiso_cities_Yuscaran : Ind City ; + + fun Countries_HCA_provinces_FranciscoMorazan : Ind Province ; + + fun Countries_HCA_provinces_FranciscoMorazan_cities_Siguatepeque : Ind City ; + + fun Countries_HCA_provinces_FranciscoMorazan_cities_Tegucigalpa : Ind City ; + + fun Countries_HCA_provinces_GraciasaDios : Ind Province ; + + fun Countries_HCA_provinces_GraciasaDios_cities_PuertoLempira : Ind City ; + + fun Countries_HCA_provinces_Intibuca : Ind Province ; + + fun Countries_HCA_provinces_Intibuca_cities_LaEsperanza : Ind City ; + + fun Countries_HCA_provinces_IslasdelaBahia : Ind Province ; + + fun Countries_HCA_provinces_IslasdelaBahia_cities_Roatan : Ind City ; + + fun Countries_HCA_provinces_LaPaz : Ind Province ; + + fun Countries_HCA_provinces_LaPaz_cities_LaPaz : Ind City ; + + fun Countries_HCA_provinces_Lempira : Ind Province ; + + fun Countries_HCA_provinces_Lempira_cities_Gracias : Ind City ; + + fun Countries_HCA_provinces_Ocotepeque : Ind Province ; + + fun Countries_HCA_provinces_Ocotepeque_cities_Ocotepeque : Ind City ; + + fun Countries_HCA_provinces_Olancho : Ind Province ; + + fun Countries_HCA_provinces_Olancho_cities_Jutigalpa : Ind City ; + + fun Countries_HCA_provinces_SantaBarbara : Ind Province ; + + fun Countries_HCA_provinces_SantaBarbara_cities_SantaBarbara : Ind City ; + + fun Countries_HCA_provinces_Valle : Ind Province ; + + fun Countries_HCA_provinces_Valle_cities_Nacaome : Ind City ; + + fun Countries_HCA_provinces_Yoro : Ind Province ; + + fun Countries_HCA_provinces_Yoro_cities_ElProgreso : Ind City ; + + fun Countries_HCA_provinces_Yoro_cities_Olanchito : Ind City ; + + fun Countries_HCA_provinces_Yoro_cities_Yoro : Ind City ; + + fun Countries_HR_cities_Zagreb : Ind City ; + + fun Countries_H_provinces_BacsKiskun : Ind Province ; + + fun Countries_H_provinces_BacsKiskun_cities_Kecskemet : Ind City ; + + fun Countries_H_provinces_Baranya : Ind Province ; + + fun Countries_H_provinces_Bekes : Ind Province ; + + fun Countries_H_provinces_Bekes_cities_Bekescaba : Ind City ; + + fun Countries_H_provinces_BorsodAbaujZemplen : Ind Province ; + + fun Countries_H_provinces_Budapest_munic : Ind Province ; + + fun Countries_H_provinces_Budapest_munic_cities_Budapest : Ind City ; + + fun Countries_H_provinces_Csongrad : Ind Province ; + + fun Countries_H_provinces_Csongrad_cities_Hodmezovasarhely : Ind City ; + + fun Countries_H_provinces_Debrecen_munic : Ind Province ; + + fun Countries_H_provinces_Debrecen_munic_cities_Debrecen : Ind City ; + + fun Countries_H_provinces_Fejer : Ind Province ; + + fun Countries_H_provinces_Fejer_cities_Szekesfehervar : Ind City ; + + fun Countries_H_provinces_GyorSopron : Ind Province ; + + fun Countries_H_provinces_Gyor_munic : Ind Province ; + + fun Countries_H_provinces_Gyor_munic_cities_Gyor : Ind City ; + + fun Countries_H_provinces_HajduBihar : Ind Province ; + + fun Countries_H_provinces_Heves : Ind Province ; + + fun Countries_H_provinces_Heves_cities_Eger : Ind City ; + + fun Countries_H_provinces_KomaromEsztergom : Ind Province ; + + fun Countries_H_provinces_KomaromEsztergom_cities_Tatabanya : Ind City ; + + fun Countries_H_provinces_Miskolc_munic : Ind Province ; + + fun Countries_H_provinces_Miskolc_munic_cities_Miskolc : Ind City ; + + fun Countries_H_provinces_Nograd : Ind Province ; + + fun Countries_H_provinces_Nograd_cities_Salgotarjan : Ind City ; + + fun Countries_H_provinces_Pecs_munic : Ind Province ; + + fun Countries_H_provinces_Pecs_munic_cities_Pecs : Ind City ; + + fun Countries_H_provinces_Pest : Ind Province ; + + fun Countries_H_provinces_Somogy : Ind Province ; + + fun Countries_H_provinces_Somogy_cities_Kaposvar : Ind City ; + + fun Countries_H_provinces_SzabolcsSzatmar : Ind Province ; + + fun Countries_H_provinces_SzabolcsSzatmar_cities_Nyiregyhaza : Ind City ; + + fun Countries_H_provinces_Szeged_munic : Ind Province ; + + fun Countries_H_provinces_Szeged_munic_cities_Szeged : Ind City ; + + fun Countries_H_provinces_Szolnok : Ind Province ; + + fun Countries_H_provinces_Szolnok_cities_Szolnok : Ind City ; + + fun Countries_H_provinces_Tolna : Ind Province ; + + fun Countries_H_provinces_Tolna_cities_Szekszard : Ind City ; + + fun Countries_H_provinces_Vas : Ind Province ; + + fun Countries_H_provinces_Vas_cities_Szombathely : Ind City ; + + fun Countries_H_provinces_Veszprem : Ind Province ; + + fun Countries_H_provinces_Veszprem_cities_Veszprem : Ind City ; + + fun Countries_H_provinces_Zala : Ind Province ; + + fun Countries_H_provinces_Zala_cities_Zalaegerszeg : Ind City ; + + fun Countries_IL_provinces_Central : Ind Province ; + + fun Countries_IL_provinces_Central_cities_Jerusalem : Ind City ; + + fun Countries_IL_provinces_Central_cities_Ramla : Ind City ; + + fun Countries_IL_provinces_Haifa : Ind Province ; + + fun Countries_IL_provinces_Haifa_cities_Haifa : Ind City ; + + fun Countries_IL_provinces_North : Ind Province ; + + fun Countries_IL_provinces_North_cities_Nazareth : Ind City ; + + fun Countries_IL_provinces_South : Ind Province ; + + fun Countries_IL_provinces_South_cities_BeerSheva : Ind City ; + + fun Countries_IL_provinces_TelAviv : Ind Province ; + + fun Countries_IL_provinces_TelAviv_cities_TelAviv : Ind City ; + + fun Countries_IND_cities_PimpriChinchwad : Ind City ; + + fun Countries_IND_provinces_AndamanandNicobarIs_ : Ind Province ; + + fun Countries_IND_provinces_AndamanandNicobarIs__cities_PortBlair : Ind City ; + + fun Countries_IND_provinces_AndhraPradesh : Ind Province ; + + fun Countries_IND_provinces_AndhraPradesh_cities_Guntur : Ind City ; + + fun Countries_IND_provinces_AndhraPradesh_cities_Hyderabad : Ind City ; + + fun Countries_IND_provinces_AndhraPradesh_cities_Rajahmundry : Ind City ; + + fun Countries_IND_provinces_AndhraPradesh_cities_Vijayawada : Ind City ; + + fun Countries_IND_provinces_AndhraPradesh_cities_Vishakhapatnam : Ind City ; + + fun Countries_IND_provinces_AndhraPradesh_cities_Warangal : Ind City ; + + fun Countries_IND_provinces_ArunachalPradesh : Ind Province ; + + fun Countries_IND_provinces_ArunachalPradesh_cities_Itanagar : Ind City ; + + fun Countries_IND_provinces_Assam : Ind Province ; + + fun Countries_IND_provinces_Assam_cities_Dispur : Ind City ; + + fun Countries_IND_provinces_Assam_cities_Gauhati : Ind City ; + + fun Countries_IND_provinces_Bihar : Ind Province ; + + fun Countries_IND_provinces_Bihar_cities_BokaraSteelCity : Ind City ; + + fun Countries_IND_provinces_Bihar_cities_Jamshedpur : Ind City ; + + fun Countries_IND_provinces_Bihar_cities_Patna : Ind City ; + + fun Countries_IND_provinces_Bihar_cities_Ranchi : Ind City ; + + fun Countries_IND_provinces_Chandigarh : Ind Province ; + + fun Countries_IND_provinces_Chandigarh_cities_Chandigarh : Ind City ; + + fun Countries_IND_provinces_DadraandNagarHaveli : Ind Province ; + + fun Countries_IND_provinces_DadraandNagarHaveli_cities_Silvassa : Ind City ; + + fun Countries_IND_provinces_DamanandDiu : Ind Province ; + + fun Countries_IND_provinces_DamanandDiu_cities_Daman : Ind City ; + + fun Countries_IND_provinces_Delhi : Ind Province ; + + fun Countries_IND_provinces_Delhi_cities_Ghaziabad : Ind City ; + + fun Countries_IND_provinces_Delhi_cities_NewDelhi : Ind City ; + + fun Countries_IND_provinces_Goa : Ind Province ; + + fun Countries_IND_provinces_Goa_cities_Panaji : Ind City ; + + fun Countries_IND_provinces_Gujarat : Ind Province ; + + fun Countries_IND_provinces_Gujarat_cities_Ahmadabad : Ind City ; + + fun Countries_IND_provinces_Gujarat_cities_Bhavnagar : Ind City ; + + fun Countries_IND_provinces_Gujarat_cities_Gandhinagar : Ind City ; + + fun Countries_IND_provinces_Gujarat_cities_Jamnagar : Ind City ; + + fun Countries_IND_provinces_Gujarat_cities_Rajkot : Ind City ; + + fun Countries_IND_provinces_Gujarat_cities_Surat : Ind City ; + + fun Countries_IND_provinces_Gujarat_cities_Vadodara : Ind City ; + + fun Countries_IND_provinces_Haryana : Ind Province ; + + fun Countries_IND_provinces_HimachalPradesh : Ind Province ; + + fun Countries_IND_provinces_HimachalPradesh_cities_Simla : Ind City ; + + fun Countries_IND_provinces_JammuandKashmir : Ind Province ; + + fun Countries_IND_provinces_JammuandKashmir_cities_Jammu : Ind City ; + + fun Countries_IND_provinces_JammuandKashmir_cities_Srinagar : Ind City ; + + fun Countries_IND_provinces_Karnataka : Ind Province ; + + fun Countries_IND_provinces_Karnataka_cities_Bangalore : Ind City ; + + fun Countries_IND_provinces_Karnataka_cities_Hubli : Ind City ; + + fun Countries_IND_provinces_Karnataka_cities_Mysore : Ind City ; + + fun Countries_IND_provinces_Kerala : Ind Province ; + + fun Countries_IND_provinces_Kerala_cities_Cochin : Ind City ; + + fun Countries_IND_provinces_Kerala_cities_Kozhikode : Ind City ; + + fun Countries_IND_provinces_Kerala_cities_Trivandrum : Ind City ; + + fun Countries_IND_provinces_LakshadweepIs_ : Ind Province ; + + fun Countries_IND_provinces_LakshadweepIs__cities_Kavaratti : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh : Ind Province ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Bhatpara : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Bhilai : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Bhopal : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Gwalior : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Indore : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Jabalpur : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Raipur : Ind City ; + + fun Countries_IND_provinces_MadhyaPradesh_cities_Ujjain : Ind City ; + + fun Countries_IND_provinces_Maharashtra : Ind Province ; + + fun Countries_IND_provinces_Maharashtra_cities_Amravati : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Aurangabad : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Bhiwandi : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Bombay : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Kalyan : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Kolhapur : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Mumbai : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Nagpur : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Nasik : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_NewBombay : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Pune : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Sholapur : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Thane : Ind City ; + + fun Countries_IND_provinces_Maharashtra_cities_Ulhasnagar : Ind City ; + + fun Countries_IND_provinces_Manipur : Ind Province ; + + fun Countries_IND_provinces_Manipur_cities_Imphal : Ind City ; + + fun Countries_IND_provinces_Meghalaya : Ind Province ; + + fun Countries_IND_provinces_Meghalaya_cities_Shillong : Ind City ; + + fun Countries_IND_provinces_Mizoram : Ind Province ; + + fun Countries_IND_provinces_Mizoram_cities_Aijal : Ind City ; + + fun Countries_IND_provinces_Nagaland : Ind Province ; + + fun Countries_IND_provinces_Nagaland_cities_Kohima : Ind City ; + + fun Countries_IND_provinces_Orissa : Ind Province ; + + fun Countries_IND_provinces_Orissa_cities_Bhubaneswar : Ind City ; + + fun Countries_IND_provinces_Orissa_cities_Cuttack : Ind City ; + + fun Countries_IND_provinces_Pondicherry : Ind Province ; + + fun Countries_IND_provinces_Pondicherry_cities_Pondicherry : Ind City ; + + fun Countries_IND_provinces_Punjab : Ind Province ; + + fun Countries_IND_provinces_Punjab_cities_Amritsar : Ind City ; + + fun Countries_IND_provinces_Punjab_cities_Jalandhar : Ind City ; + + fun Countries_IND_provinces_Punjab_cities_Ludhiana : Ind City ; + + fun Countries_IND_provinces_Rajasthan : Ind Province ; + + fun Countries_IND_provinces_Rajasthan_cities_Ajmer : Ind City ; + + fun Countries_IND_provinces_Rajasthan_cities_Bikaner : Ind City ; + + fun Countries_IND_provinces_Rajasthan_cities_Jaipur : Ind City ; + + fun Countries_IND_provinces_Rajasthan_cities_Jodhpur : Ind City ; + + fun Countries_IND_provinces_Rajasthan_cities_Kota : Ind City ; + + fun Countries_IND_provinces_Sikkim : Ind Province ; + + fun Countries_IND_provinces_Sikkim_cities_Gangtok : Ind City ; + + fun Countries_IND_provinces_TamilNadu : Ind Province ; + + fun Countries_IND_provinces_TamilNadu_cities_Coimbatore : Ind City ; + + fun Countries_IND_provinces_TamilNadu_cities_Madras : Ind City ; + + fun Countries_IND_provinces_TamilNadu_cities_Madurai : Ind City ; + + fun Countries_IND_provinces_TamilNadu_cities_Salem : Ind City ; + + fun Countries_IND_provinces_TamilNadu_cities_Tiruchchirappalli : Ind City ; + + fun Countries_IND_provinces_Tripura : Ind Province ; + + fun Countries_IND_provinces_Tripura_cities_Agartala : Ind City ; + + fun Countries_IND_provinces_UttarPradesh : Ind Province ; + + fun Countries_IND_provinces_UttarPradesh_cities_Agra : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Aligarh : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Allahabad : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Bareilly : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Faridabad : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Gorakhpur : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Jhansi : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Kanpur : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Lucknow : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Meerut : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Moradabad : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Saharanpur : Ind City ; + + fun Countries_IND_provinces_UttarPradesh_cities_Varanasi : Ind City ; + + fun Countries_IND_provinces_WestBengal : Ind Province ; + + fun Countries_IND_provinces_WestBengal_cities_Calcutta : Ind City ; + + fun Countries_IND_provinces_WestBengal_cities_Durgapur : Ind City ; + + fun Countries_IND_provinces_WestBengal_cities_Haora : Ind City ; + + fun Countries_IRL_cities_Dublin : Ind City ; + + fun Countries_IRQ_provinces_AdTamim : Ind Province ; + + fun Countries_IRQ_provinces_AdTamim_cities_Kirkuk : Ind City ; + + fun Countries_IRQ_provinces_AlAnbar : Ind Province ; + + fun Countries_IRQ_provinces_AlAnbar_cities_ArRamadi : Ind City ; + + fun Countries_IRQ_provinces_AlBasrah : Ind Province ; + + fun Countries_IRQ_provinces_AlBasrah_cities_AlBasrah : Ind City ; + + fun Countries_IRQ_provinces_AlMuthanna : Ind Province ; + + fun Countries_IRQ_provinces_AlMuthanna_cities_AsSamawah : Ind City ; + + fun Countries_IRQ_provinces_AlQadisiyah : Ind Province ; + + fun Countries_IRQ_provinces_AlQadisiyah_cities_AdDiwaniyah : Ind City ; + + fun Countries_IRQ_provinces_AlQadisiyah_cities_Diwaniyah : Ind City ; + + fun Countries_IRQ_provinces_AnNajaf : Ind Province ; + + fun Countries_IRQ_provinces_AnNajaf_cities_AnNajaf : Ind City ; + + fun Countries_IRQ_provinces_AsSulaymaniyah : Ind Province ; + + fun Countries_IRQ_provinces_AsSulaymaniyah_cities_AsSulaymaniyah : Ind City ; + + fun Countries_IRQ_provinces_Babil : Ind Province ; + + fun Countries_IRQ_provinces_Babil_cities_AlHillah : Ind City ; + + fun Countries_IRQ_provinces_Baghdad : Ind Province ; + + fun Countries_IRQ_provinces_Baghdad_cities_Baghdad : Ind City ; + + fun Countries_IRQ_provinces_Dahuk : Ind Province ; + + fun Countries_IRQ_provinces_Dahuk_cities_Dahuk : Ind City ; + + fun Countries_IRQ_provinces_DhiQar : Ind Province ; + + fun Countries_IRQ_provinces_DhiQar_cities_AnNasiriyah : Ind City ; + + fun Countries_IRQ_provinces_Diyala : Ind Province ; + + fun Countries_IRQ_provinces_Diyala_cities_Baqubah : Ind City ; + + fun Countries_IRQ_provinces_Irbil : Ind Province ; + + fun Countries_IRQ_provinces_Irbil_cities_Irbil : Ind City ; + + fun Countries_IRQ_provinces_Karbala : Ind Province ; + + fun Countries_IRQ_provinces_Karbala_cities_Karbala : Ind City ; + + fun Countries_IRQ_provinces_Maysan : Ind Province ; + + fun Countries_IRQ_provinces_Maysan_cities_AlAmarah : Ind City ; + + fun Countries_IRQ_provinces_Ninawa : Ind Province ; + + fun Countries_IRQ_provinces_Ninawa_cities_AlMawsil : Ind City ; + + fun Countries_IRQ_provinces_Ninawa_cities_Mosul : Ind City ; + + fun Countries_IRQ_provinces_SalahadDin : Ind Province ; + + fun Countries_IRQ_provinces_SalahadDin_cities_Samarra : Ind City ; + + fun Countries_IRQ_provinces_Wasit : Ind Province ; + + fun Countries_IRQ_provinces_Wasit_cities_AlKut : Ind City ; + + fun Countries_IR_cities_Islamshahr : Ind City ; + + fun Countries_IR_cities_Mehrshahr : Ind City ; + + fun Countries_IR_cities_Rajaishahr : Ind City ; + + fun Countries_IR_provinces_AzarbayianeGharbt : Ind Province ; + + fun Countries_IR_provinces_AzarbayianeGharbt_cities_Khvoy : Ind City ; + + fun Countries_IR_provinces_AzarbayianeGharbt_cities_Maragheh : Ind City ; + + fun Countries_IR_provinces_AzarbayianeGharbt_cities_Orumiyeh : Ind City ; + + fun Countries_IR_provinces_AzarbayianeSharqi : Ind Province ; + + fun Countries_IR_provinces_AzarbayianeSharqi_cities_Ardabil : Ind City ; + + fun Countries_IR_provinces_AzarbayianeSharqi_cities_Tabriz : Ind City ; + + fun Countries_IR_provinces_Bakhtaran : Ind Province ; + + fun Countries_IR_provinces_Bakhtaran_cities_Bakhtaran : Ind City ; + + fun Countries_IR_provinces_BoyerAhmadeKohkiluyeh : Ind Province ; + + fun Countries_IR_provinces_BoyerAhmadeKohkiluyeh_cities_Yasuj : Ind City ; + + fun Countries_IR_provinces_Bushehr : Ind Province ; + + fun Countries_IR_provinces_Bushehr_cities_BandareBushehr : Ind City ; + + fun Countries_IR_provinces_Bushehr_cities_Bushehr : Ind City ; + + fun Countries_IR_provinces_ChaharMahaleBakhtiari : Ind Province ; + + fun Countries_IR_provinces_ChaharMahaleBakhtiari_cities_ShahreKord : Ind City ; + + fun Countries_IR_provinces_Esfahan : Ind Province ; + + fun Countries_IR_provinces_Esfahan_cities_Esfahan : Ind City ; + + fun Countries_IR_provinces_Esfahan_cities_Khomeynishahr : Ind City ; + + fun Countries_IR_provinces_Esfahan_cities_Najafabad : Ind City ; + + fun Countries_IR_provinces_Fars : Ind Province ; + + fun Countries_IR_provinces_Fars_cities_Shiraz : Ind City ; + + fun Countries_IR_provinces_Gilan : Ind Province ; + + fun Countries_IR_provinces_Gilan_cities_Rasht : Ind City ; + + fun Countries_IR_provinces_Hamadan : Ind Province ; + + fun Countries_IR_provinces_Hamadan_cities_Hamadan : Ind City ; + + fun Countries_IR_provinces_Hamadan_cities_Malayer : Ind City ; + + fun Countries_IR_provinces_Hormozgan : Ind Province ; + + fun Countries_IR_provinces_Hormozgan_cities_BandarAbbas : Ind City ; + + fun Countries_IR_provinces_Ilam : Ind Province ; + + fun Countries_IR_provinces_Ilam_cities_Ilam : Ind City ; + + fun Countries_IR_provinces_Kerman : Ind Province ; + + fun Countries_IR_provinces_Kerman_cities_Kerman : Ind City ; + + fun Countries_IR_provinces_Kerman_cities_Sirjan : Ind City ; + + fun Countries_IR_provinces_Khorasan : Ind Province ; + + fun Countries_IR_provinces_Khorasan_cities_Birjand : Ind City ; + + fun Countries_IR_provinces_Khorasan_cities_Bojnurd : Ind City ; + + fun Countries_IR_provinces_Khorasan_cities_Mashhad : Ind City ; + + fun Countries_IR_provinces_Khorasan_cities_Neyshabur : Ind City ; + + fun Countries_IR_provinces_Khorasan_cities_Sabzevar : Ind City ; + + fun Countries_IR_provinces_Khuzestan : Ind Province ; + + fun Countries_IR_provinces_Khuzestan_cities_Ahvaz : Ind City ; + + fun Countries_IR_provinces_Khuzestan_cities_Dezful : Ind City ; + + fun Countries_IR_provinces_Khuzestan_cities_Khorramshahr : Ind City ; + + fun Countries_IR_provinces_Khuzestan_cities_MasjedeSoleyman : Ind City ; + + fun Countries_IR_provinces_Kordestan : Ind Province ; + + fun Countries_IR_provinces_Kordestan_cities_Sanandaj : Ind City ; + + fun Countries_IR_provinces_Lorestan : Ind Province ; + + fun Countries_IR_provinces_Lorestan_cities_Borujerd : Ind City ; + + fun Countries_IR_provinces_Lorestan_cities_Khorramabad : Ind City ; + + fun Countries_IR_provinces_Markazi : Ind Province ; + + fun Countries_IR_provinces_Markazi_cities_Arak : Ind City ; + + fun Countries_IR_provinces_Mazandaran : Ind Province ; + + fun Countries_IR_provinces_Mazandaran_cities_Amol : Ind City ; + + fun Countries_IR_provinces_Mazandaran_cities_Babol : Ind City ; + + fun Countries_IR_provinces_Mazandaran_cities_GonbadeKavus : Ind City ; + + fun Countries_IR_provinces_Mazandaran_cities_Gorgan : Ind City ; + + fun Countries_IR_provinces_Mazandaran_cities_Qaemshahr : Ind City ; + + fun Countries_IR_provinces_Mazandaran_cities_Sari : Ind City ; + + fun Countries_IR_provinces_Semnan : Ind Province ; + + fun Countries_IR_provinces_Semnan_cities_Semnan : Ind City ; + + fun Countries_IR_provinces_SistaneBaluchestan : Ind Province ; + + fun Countries_IR_provinces_SistaneBaluchestan_cities_Zahedan : Ind City ; + + fun Countries_IR_provinces_Tehran : Ind Province ; + + fun Countries_IR_provinces_Tehran_cities_Karaj : Ind City ; + + fun Countries_IR_provinces_Tehran_cities_Kashan : Ind City ; + + fun Countries_IR_provinces_Tehran_cities_Qazvin : Ind City ; + + fun Countries_IR_provinces_Tehran_cities_Qom : Ind City ; + + fun Countries_IR_provinces_Tehran_cities_Tehran : Ind City ; + + fun Countries_IR_provinces_Yazd : Ind Province ; + + fun Countries_IR_provinces_Yazd_cities_Yazd : Ind City ; + + fun Countries_IR_provinces_Zanjan : Ind Province ; + + fun Countries_IR_provinces_Zanjan_cities_Zanjan : Ind City ; + + fun Countries_IS_cities_Akureyri : Ind City ; + + fun Countries_IS_cities_Hafnarfjoerdur : Ind City ; + + fun Countries_IS_cities_Keflavik : Ind City ; + + fun Countries_IS_cities_Reykjavik : Ind City ; + + fun Countries_I_cities_Forli : Ind City ; + + fun Countries_I_provinces_Abruzzo : Ind Province ; + + fun Countries_I_provinces_Abruzzo_cities_LAquila : Ind City ; + + fun Countries_I_provinces_Abruzzo_cities_Pescara : Ind City ; + + fun Countries_I_provinces_Basilicata : Ind Province ; + + fun Countries_I_provinces_Basilicata_cities_Potenza : Ind City ; + + fun Countries_I_provinces_Calabria : Ind Province ; + + fun Countries_I_provinces_Calabria_cities_Catanzaro : Ind City ; + + fun Countries_I_provinces_Calabria_cities_Cosenza : Ind City ; + + fun Countries_I_provinces_Calabria_cities_Messina : Ind City ; + + fun Countries_I_provinces_Calabria_cities_ReggiodiCalabria : Ind City ; + + fun Countries_I_provinces_Campania : Ind Province ; + + fun Countries_I_provinces_Campania_cities_Napoli : Ind City ; + + fun Countries_I_provinces_Campania_cities_Salerno : Ind City ; + + fun Countries_I_provinces_Campania_cities_TorredelGreco : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna : Ind Province ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Bologna : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Ferrara : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Modena : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Parma : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Piacenza : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Ravenna : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_ReggionellEmilia : Ind City ; + + fun Countries_I_provinces_EmiliaRomagna_cities_Rimini : Ind City ; + + fun Countries_I_provinces_FriuliVeneziaGiulia : Ind Province ; + + fun Countries_I_provinces_FriuliVeneziaGiulia_cities_Trieste : Ind City ; + + fun Countries_I_provinces_Lazio : Ind Province ; + + fun Countries_I_provinces_Lazio_cities_Latina : Ind City ; + + fun Countries_I_provinces_Lazio_cities_Rome : Ind City ; + + fun Countries_I_provinces_Liguria : Ind Province ; + + fun Countries_I_provinces_Liguria_cities_Genua : Ind City ; + + fun Countries_I_provinces_Liguria_cities_LaSpezia : Ind City ; + + fun Countries_I_provinces_Lombardia : Ind Province ; + + fun Countries_I_provinces_Lombardia_cities_Bergamo : Ind City ; + + fun Countries_I_provinces_Lombardia_cities_Brescia : Ind City ; + + fun Countries_I_provinces_Lombardia_cities_Milan : Ind City ; + + fun Countries_I_provinces_Lombardia_cities_Monza : Ind City ; + + fun Countries_I_provinces_Marche : Ind Province ; + + fun Countries_I_provinces_Marche_cities_Ancona : Ind City ; + + fun Countries_I_provinces_Molise : Ind Province ; + + fun Countries_I_provinces_Molise_cities_Campobasso : Ind City ; + + fun Countries_I_provinces_Piemonte : Ind Province ; + + fun Countries_I_provinces_Piemonte_cities_Novara : Ind City ; + + fun Countries_I_provinces_Piemonte_cities_Turin : Ind City ; + + fun Countries_I_provinces_Puglia : Ind Province ; + + fun Countries_I_provinces_Puglia_cities_Bari : Ind City ; + + fun Countries_I_provinces_Puglia_cities_Foggia : Ind City ; + + fun Countries_I_provinces_Puglia_cities_Lecce : Ind City ; + + fun Countries_I_provinces_Puglia_cities_Taranto : Ind City ; + + fun Countries_I_provinces_Sardegna : Ind Province ; + + fun Countries_I_provinces_Sardegna_cities_Cagliari : Ind City ; + + fun Countries_I_provinces_Sardegna_cities_Sassari : Ind City ; + + fun Countries_I_provinces_Sicilia : Ind Province ; + + fun Countries_I_provinces_Sicilia_cities_Catania : Ind City ; + + fun Countries_I_provinces_Sicilia_cities_Palermo : Ind City ; + + fun Countries_I_provinces_Sicilia_cities_Siracusa : Ind City ; + + fun Countries_I_provinces_Toscana : Ind Province ; + + fun Countries_I_provinces_Toscana_cities_Firenze : Ind City ; + + fun Countries_I_provinces_Toscana_cities_Livorno : Ind City ; + + fun Countries_I_provinces_Toscana_cities_Pisa : Ind City ; + + fun Countries_I_provinces_Toscana_cities_Prato : Ind City ; + + fun Countries_I_provinces_TrentinoAltoAdige : Ind Province ; + + fun Countries_I_provinces_TrentinoAltoAdige_cities_Bolzano : Ind City ; + + fun Countries_I_provinces_TrentinoAltoAdige_cities_Trento : Ind City ; + + fun Countries_I_provinces_Umbria : Ind Province ; + + fun Countries_I_provinces_Umbria_cities_Perugia : Ind City ; + + fun Countries_I_provinces_Umbria_cities_Terni : Ind City ; + + fun Countries_I_provinces_ValledAosta : Ind Province ; + + fun Countries_I_provinces_ValledAosta_cities_Aosta : Ind City ; + + fun Countries_I_provinces_Veneto : Ind Province ; + + fun Countries_I_provinces_Veneto_cities_Padova : Ind City ; + + fun Countries_I_provinces_Veneto_cities_Venice : Ind City ; + + fun Countries_I_provinces_Veneto_cities_Verona : Ind City ; + + fun Countries_I_provinces_Veneto_cities_Vicenza : Ind City ; + + fun Countries_JA_cities_Kingston : Ind City ; + + fun Countries_JOR_cities_Amman : Ind City ; + + fun Countries_J_provinces_Aichi : Ind Province ; + + fun Countries_J_provinces_Aichi_cities_Nagoya : Ind City ; + + fun Countries_J_provinces_Akita : Ind Province ; + + fun Countries_J_provinces_Akita_cities_Akita : Ind City ; + + fun Countries_J_provinces_Aomori : Ind Province ; + + fun Countries_J_provinces_Aomori_cities_Aomori : Ind City ; + + fun Countries_J_provinces_Chiba : Ind Province ; + + fun Countries_J_provinces_Chiba_cities_Chiba : Ind City ; + + fun Countries_J_provinces_Ehime : Ind Province ; + + fun Countries_J_provinces_Ehime_cities_Matsuyama : Ind City ; + + fun Countries_J_provinces_Fukui : Ind Province ; + + fun Countries_J_provinces_Fukui_cities_Fukui : Ind City ; + + fun Countries_J_provinces_Fukuoka : Ind Province ; + + fun Countries_J_provinces_Fukuoka_cities_Fukuoka : Ind City ; + + fun Countries_J_provinces_Fukuoka_cities_Kitakyushu : Ind City ; + + fun Countries_J_provinces_Fukushima : Ind Province ; + + fun Countries_J_provinces_Fukushima_cities_Fukushima : Ind City ; + + fun Countries_J_provinces_Gifu : Ind Province ; + + fun Countries_J_provinces_Gifu_cities_Gifu : Ind City ; + + fun Countries_J_provinces_Gumma : Ind Province ; + + fun Countries_J_provinces_Gumma_cities_Maebashi : Ind City ; + + fun Countries_J_provinces_Hiroshima : Ind Province ; + + fun Countries_J_provinces_Hiroshima_cities_Hiroshima : Ind City ; + + fun Countries_J_provinces_Hokkaido : Ind Province ; + + fun Countries_J_provinces_Hokkaido_cities_Sapporo : Ind City ; + + fun Countries_J_provinces_Hyogo : Ind Province ; + + fun Countries_J_provinces_Hyogo_cities_Kobe : Ind City ; + + fun Countries_J_provinces_Ibaraki : Ind Province ; + + fun Countries_J_provinces_Ibaraki_cities_Mito : Ind City ; + + fun Countries_J_provinces_Ishikawa : Ind Province ; + + fun Countries_J_provinces_Ishikawa_cities_Kanazawa : Ind City ; + + fun Countries_J_provinces_Iwate : Ind Province ; + + fun Countries_J_provinces_Iwate_cities_Morioka : Ind City ; + + fun Countries_J_provinces_Kagawa : Ind Province ; + + fun Countries_J_provinces_Kagawa_cities_Takamatsu : Ind City ; + + fun Countries_J_provinces_Kagoshima : Ind Province ; + + fun Countries_J_provinces_Kagoshima_cities_Kagoshima : Ind City ; + + fun Countries_J_provinces_Kanagawa : Ind Province ; + + fun Countries_J_provinces_Kanagawa_cities_Kawasaki : Ind City ; + + fun Countries_J_provinces_Kanagawa_cities_Yokohama : Ind City ; + + fun Countries_J_provinces_Kochi : Ind Province ; + + fun Countries_J_provinces_Kochi_cities_Kochi : Ind City ; + + fun Countries_J_provinces_Kumamoto : Ind Province ; + + fun Countries_J_provinces_Kumamoto_cities_Kumamoto : Ind City ; + + fun Countries_J_provinces_Kyoto : Ind Province ; + + fun Countries_J_provinces_Kyoto_cities_Kyoto : Ind City ; + + fun Countries_J_provinces_Mie : Ind Province ; + + fun Countries_J_provinces_Mie_cities_Tsu : Ind City ; + + fun Countries_J_provinces_Miyagi : Ind Province ; + + fun Countries_J_provinces_Miyagi_cities_Sendai : Ind City ; + + fun Countries_J_provinces_Miyazaki : Ind Province ; + + fun Countries_J_provinces_Miyazaki_cities_Miyazaki : Ind City ; + + fun Countries_J_provinces_Nagano : Ind Province ; + + fun Countries_J_provinces_Nagano_cities_Nagano : Ind City ; + + fun Countries_J_provinces_Nagasaki : Ind Province ; + + fun Countries_J_provinces_Nagasaki_cities_Nagasaki : Ind City ; + + fun Countries_J_provinces_Nara : Ind Province ; + + fun Countries_J_provinces_Nara_cities_Nara : Ind City ; + + fun Countries_J_provinces_Niigata : Ind Province ; + + fun Countries_J_provinces_Niigata_cities_Niigata : Ind City ; + + fun Countries_J_provinces_Oita : Ind Province ; + + fun Countries_J_provinces_Oita_cities_Oita : Ind City ; + + fun Countries_J_provinces_Okayama : Ind Province ; + + fun Countries_J_provinces_Okayama_cities_Okayama : Ind City ; + + fun Countries_J_provinces_Okinawa : Ind Province ; + + fun Countries_J_provinces_Okinawa_cities_Naha : Ind City ; + + fun Countries_J_provinces_Osaka : Ind Province ; + + fun Countries_J_provinces_Osaka_cities_Osaka : Ind City ; + + fun Countries_J_provinces_Saga : Ind Province ; + + fun Countries_J_provinces_Saga_cities_Saga : Ind City ; + + fun Countries_J_provinces_Saitama : Ind Province ; + + fun Countries_J_provinces_Saitama_cities_Urawa : Ind City ; + + fun Countries_J_provinces_Shiga : Ind Province ; + + fun Countries_J_provinces_Shiga_cities_Otsu : Ind City ; + + fun Countries_J_provinces_Shimane : Ind Province ; + + fun Countries_J_provinces_Shimane_cities_Matsue : Ind City ; + + fun Countries_J_provinces_Shizuoka : Ind Province ; + + fun Countries_J_provinces_Shizuoka_cities_Shizuoka : Ind City ; + + fun Countries_J_provinces_Tochigi : Ind Province ; + + fun Countries_J_provinces_Tochigi_cities_Utsonomiya : Ind City ; + + fun Countries_J_provinces_Tokushima : Ind Province ; + + fun Countries_J_provinces_Tokushima_cities_Tokushima : Ind City ; + + fun Countries_J_provinces_Tokyo : Ind Province ; + + fun Countries_J_provinces_Tokyo_cities_Tokyo : Ind City ; + + fun Countries_J_provinces_Tottori : Ind Province ; + + fun Countries_J_provinces_Tottori_cities_Tottori : Ind City ; + + fun Countries_J_provinces_Toyama : Ind Province ; + + fun Countries_J_provinces_Toyama_cities_Toyama : Ind City ; + + fun Countries_J_provinces_Wakayama : Ind Province ; + + fun Countries_J_provinces_Wakayama_cities_Wakayama : Ind City ; + + fun Countries_J_provinces_Yamagata : Ind Province ; + + fun Countries_J_provinces_Yamagata_cities_Yamagata : Ind City ; + + fun Countries_J_provinces_Yamaguchi : Ind Province ; + + fun Countries_J_provinces_Yamaguchi_cities_Yamaguchi : Ind City ; + + fun Countries_J_provinces_Yamanashi : Ind Province ; + + fun Countries_J_provinces_Yamanashi_cities_Kofu : Ind City ; + + fun Countries_KAZ_provinces_Almaty : Ind Province ; + + fun Countries_KAZ_provinces_Almaty_munic : Ind Province ; + + fun Countries_KAZ_provinces_Almaty_munic_cities_Almaty : Ind City ; + + fun Countries_KAZ_provinces_Aqmola : Ind Province ; + + fun Countries_KAZ_provinces_Aqmola_cities_Aqmola : Ind City ; + + fun Countries_KAZ_provinces_Aqtobe : Ind Province ; + + fun Countries_KAZ_provinces_Aqtobe_cities_Aqtobe : Ind City ; + + fun Countries_KAZ_provinces_Atyrau : Ind Province ; + + fun Countries_KAZ_provinces_Atyrau_cities_Atyrau : Ind City ; + + fun Countries_KAZ_provinces_BatysQazaqstan : Ind Province ; + + fun Countries_KAZ_provinces_BatysQazaqstan_cities_Oral : Ind City ; + + fun Countries_KAZ_provinces_Kokchetau : Ind Province ; + + fun Countries_KAZ_provinces_Kokchetau_cities_Kokchetau : Ind City ; + + fun Countries_KAZ_provinces_Leninsk_munic : Ind Province ; + + fun Countries_KAZ_provinces_Leninsk_munic_cities_Leninsk : Ind City ; + + fun Countries_KAZ_provinces_Mangghystau : Ind Province ; + + fun Countries_KAZ_provinces_Mangghystau_cities_Aqtau : Ind City ; + + fun Countries_KAZ_provinces_OngtustikQazaqstan : Ind Province ; + + fun Countries_KAZ_provinces_OngtustikQazaqstan_cities_Shymkent : Ind City ; + + fun Countries_KAZ_provinces_Pavlodar : Ind Province ; + + fun Countries_KAZ_provinces_Pavlodar_cities_Ekibastuz : Ind City ; + + fun Countries_KAZ_provinces_Pavlodar_cities_Pavlodar : Ind City ; + + fun Countries_KAZ_provinces_Qaraghandy : Ind Province ; + + fun Countries_KAZ_provinces_Qaraghandy_cities_Karaganda : Ind City ; + + fun Countries_KAZ_provinces_Qaraghandy_cities_Temirtau : Ind City ; + + fun Countries_KAZ_provinces_Qostanay : Ind Province ; + + fun Countries_KAZ_provinces_Qostanay_cities_Qostanay : Ind City ; + + fun Countries_KAZ_provinces_Qostanay_cities_Rudny : Ind City ; + + fun Countries_KAZ_provinces_Qyzylorda : Ind Province ; + + fun Countries_KAZ_provinces_Qyzylorda_cities_Qyzylorda : Ind City ; + + fun Countries_KAZ_provinces_Semey : Ind Province ; + + fun Countries_KAZ_provinces_Semey_cities_Semey : Ind City ; + + fun Countries_KAZ_provinces_ShyghysQazaqstan : Ind Province ; + + fun Countries_KAZ_provinces_ShyghysQazaqstan_cities_Oskemen : Ind City ; + + fun Countries_KAZ_provinces_SoltustikQazaqstan : Ind Province ; + + fun Countries_KAZ_provinces_SoltustikQazaqstan_cities_Petropavl : Ind City ; + + fun Countries_KAZ_provinces_Taldyqorghan : Ind Province ; + + fun Countries_KAZ_provinces_Taldyqorghan_cities_Taldyqorghan : Ind City ; + + fun Countries_KAZ_provinces_Torghay : Ind Province ; + + fun Countries_KAZ_provinces_Torghay_cities_Arqalyq : Ind City ; + + fun Countries_KAZ_provinces_Zhambyl : Ind Province ; + + fun Countries_KAZ_provinces_Zhambyl_cities_Dzhambul : Ind City ; + + fun Countries_KAZ_provinces_Zhambyl_cities_Zhambyl : Ind City ; + + fun Countries_KAZ_provinces_Zhezkazghan : Ind Province ; + + fun Countries_KAZ_provinces_Zhezkazghan_cities_Zhezkazghan : Ind City ; + + fun Countries_KAZ_provinces_Zhezkazghan_cities_Zhezqazghan : Ind City ; + + fun Countries_KGZ_cities_Bishkek : Ind City ; + + fun Countries_KIR_cities_Tarawa : Ind City ; + + fun Countries_KN_cities_Basseterre : Ind City ; + + fun Countries_KWT_cities_Kuwait : Ind City ; + + fun Countries_K_cities_PhnomPenh : Ind City ; + + fun Countries_LAO_cities_Vientiane : Ind City ; + + fun Countries_LAR_cities_Bengasi : Ind City ; + + fun Countries_LAR_cities_Tripoli : Ind City ; + + fun Countries_LB_cities_Monrovia : Ind City ; + + fun Countries_LS_cities_Maseru : Ind City ; + + fun Countries_LT_cities_Vilnius : Ind City ; + + fun Countries_LV_cities_Riga : Ind City ; + + fun Countries_L_cities_Luxembourg : Ind City ; + + fun Countries_MAL_cities_SeloyangBaru : Ind City ; + + fun Countries_MAL_provinces_Fed_Terr_ofKualaLumpur : Ind Province ; + + fun Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_KualaLumpur : Ind City ; + + fun Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_PetalingJaya : Ind City ; + + fun Countries_MAL_provinces_Fed_Terr_ofLabuan : Ind Province ; + + fun Countries_MAL_provinces_Fed_Terr_ofLabuan_cities_Labuan : Ind City ; + + fun Countries_MAL_provinces_Johor : Ind Province ; + + fun Countries_MAL_provinces_Johor_cities_JohorBaharu : Ind City ; + + fun Countries_MAL_provinces_Kedah : Ind Province ; + + fun Countries_MAL_provinces_Kedah_cities_AlorSetar : Ind City ; + + fun Countries_MAL_provinces_Kelantan : Ind Province ; + + fun Countries_MAL_provinces_Kelantan_cities_KotaBaharu : Ind City ; + + fun Countries_MAL_provinces_Melaka : Ind Province ; + + fun Countries_MAL_provinces_Melaka_cities_Melaka : Ind City ; + + fun Countries_MAL_provinces_NegeriSembilan : Ind Province ; + + fun Countries_MAL_provinces_NegeriSembilan_cities_Seremban : Ind City ; + + fun Countries_MAL_provinces_Pahang : Ind Province ; + + fun Countries_MAL_provinces_Pahang_cities_Kuantan : Ind City ; + + fun Countries_MAL_provinces_Perak : Ind Province ; + + fun Countries_MAL_provinces_Perak_cities_Ipoh : Ind City ; + + fun Countries_MAL_provinces_Perak_cities_Taiping : Ind City ; + + fun Countries_MAL_provinces_Perlis : Ind Province ; + + fun Countries_MAL_provinces_Perlis_cities_Kangar : Ind City ; + + fun Countries_MAL_provinces_PulauPinang : Ind Province ; + + fun Countries_MAL_provinces_PulauPinang_cities_GeorgeTown : Ind City ; + + fun Countries_MAL_provinces_Sabah : Ind Province ; + + fun Countries_MAL_provinces_Sabah_cities_KotaKinabalu : Ind City ; + + fun Countries_MAL_provinces_Sabah_cities_Sandakan : Ind City ; + + fun Countries_MAL_provinces_Sabah_cities_Tawai : Ind City ; + + fun Countries_MAL_provinces_Sarawak : Ind Province ; + + fun Countries_MAL_provinces_Sarawak_cities_Kuching : Ind City ; + + fun Countries_MAL_provinces_Sarawak_cities_Sibu : Ind City ; + + fun Countries_MAL_provinces_Selangor : Ind Province ; + + fun Countries_MAL_provinces_Selangor_cities_Kelang : Ind City ; + + fun Countries_MAL_provinces_Selangor_cities_ShahAlam : Ind City ; + + fun Countries_MAL_provinces_Terengganu : Ind Province ; + + fun Countries_MAL_provinces_Terengganu_cities_KualaTerengganu : Ind City ; + + fun Countries_MA_cities_Agadir : Ind City ; + + fun Countries_MA_cities_BeniMellal : Ind City ; + + fun Countries_MA_cities_Casablanca : Ind City ; + + fun Countries_MA_cities_Fes : Ind City ; + + fun Countries_MA_cities_Kenitra : Ind City ; + + fun Countries_MA_cities_Khouribga : Ind City ; + + fun Countries_MA_cities_Marrakech : Ind City ; + + fun Countries_MA_cities_Meknes : Ind City ; + + fun Countries_MA_cities_Oujda : Ind City ; + + fun Countries_MA_cities_Rabat : Ind City ; + + fun Countries_MA_cities_Safi : Ind City ; + + fun Countries_MA_cities_Tanger : Ind City ; + + fun Countries_MA_cities_Tetouan : Ind City ; + + fun Countries_MA_provinces_Centre : Ind Province ; + + fun Countries_MA_provinces_CentreNord : Ind Province ; + + fun Countries_MA_provinces_CentreSud : Ind Province ; + + fun Countries_MA_provinces_NordOuest : Ind Province ; + + fun Countries_MA_provinces_Oriental : Ind Province ; + + fun Countries_MA_provinces_Tensift : Ind Province ; + + fun Countries_MC_cities_Monaco : Ind City ; + + fun Countries_MD_cities_Chisinau : Ind City ; + + fun Countries_MEX_cities_AtizapandeZaragoza : Ind City ; + + fun Countries_MEX_cities_CiudadApodaca : Ind City ; + + fun Countries_MEX_cities_Llave : Ind City ; + + fun Countries_MEX_cities_SanPedroGarzaGarcia : Ind City ; + + fun Countries_MEX_cities_SoledaddeGracianoSanchez : Ind City ; + + fun Countries_MEX_provinces_Aguascalientes : Ind Province ; + + fun Countries_MEX_provinces_Aguascalientes_cities_Aguascalientes : Ind City ; + + fun Countries_MEX_provinces_BajaCalifornia : Ind Province ; + + fun Countries_MEX_provinces_BajaCaliforniaSur : Ind Province ; + + fun Countries_MEX_provinces_BajaCaliforniaSur_cities_LaPaz : Ind City ; + + fun Countries_MEX_provinces_BajaCalifornia_cities_Ensenada : Ind City ; + + fun Countries_MEX_provinces_BajaCalifornia_cities_Mexicali : Ind City ; + + fun Countries_MEX_provinces_BajaCalifornia_cities_Tijuana : Ind City ; + + fun Countries_MEX_provinces_Campeche : Ind Province ; + + fun Countries_MEX_provinces_Campeche_cities_Campeche : Ind City ; + + fun Countries_MEX_provinces_Chiapas : Ind Province ; + + fun Countries_MEX_provinces_Chiapas_cities_Nezahualcoyotl : Ind City ; + + fun Countries_MEX_provinces_Chiapas_cities_Tapachula : Ind City ; + + fun Countries_MEX_provinces_Chiapas_cities_Tonala : Ind City ; + + fun Countries_MEX_provinces_Chiapas_cities_TuxtlaGutierrez : Ind City ; + + fun Countries_MEX_provinces_Chihuahua : Ind Province ; + + fun Countries_MEX_provinces_Chihuahua_cities_Chihuahua : Ind City ; + + fun Countries_MEX_provinces_Chihuahua_cities_Juarez : Ind City ; + + fun Countries_MEX_provinces_Coahuila : Ind Province ; + + fun Countries_MEX_provinces_Coahuila_cities_Monclova : Ind City ; + + fun Countries_MEX_provinces_Coahuila_cities_Saltillo : Ind City ; + + fun Countries_MEX_provinces_Coahuila_cities_Torreon : Ind City ; + + fun Countries_MEX_provinces_Colima : Ind Province ; + + fun Countries_MEX_provinces_Colima_cities_Colima : Ind City ; + + fun Countries_MEX_provinces_DistritoFederal : Ind Province ; + + fun Countries_MEX_provinces_DistritoFederal_cities_MexicoCity : Ind City ; + + fun Countries_MEX_provinces_Durango : Ind Province ; + + fun Countries_MEX_provinces_Durango_cities_Durango : Ind City ; + + fun Countries_MEX_provinces_Durango_cities_GomezPalacio : Ind City ; + + fun Countries_MEX_provinces_Durango_cities_VictoriadeDurango : Ind City ; + + fun Countries_MEX_provinces_Guanajuato : Ind Province ; + + fun Countries_MEX_provinces_Guanajuato_cities_Celaya : Ind City ; + + fun Countries_MEX_provinces_Guanajuato_cities_Guanajuato : Ind City ; + + fun Countries_MEX_provinces_Guanajuato_cities_Irapuato : Ind City ; + + fun Countries_MEX_provinces_Guanajuato_cities_Leon : Ind City ; + + fun Countries_MEX_provinces_Guanajuato_cities_Salamanca : Ind City ; + + fun Countries_MEX_provinces_Guerrero : Ind Province ; + + fun Countries_MEX_provinces_Guerrero_cities_Acapulco : Ind City ; + + fun Countries_MEX_provinces_Guerrero_cities_Chilpancingo : Ind City ; + + fun Countries_MEX_provinces_Hidalgo : Ind Province ; + + fun Countries_MEX_provinces_Hidalgo_cities_Pachuca : Ind City ; + + fun Countries_MEX_provinces_Hidalgo_cities_PachucadeSoto : Ind City ; + + fun Countries_MEX_provinces_Jalisco : Ind Province ; + + fun Countries_MEX_provinces_Jalisco_cities_Cuautla : Ind City ; + + fun Countries_MEX_provinces_Jalisco_cities_Guadalajara : Ind City ; + + fun Countries_MEX_provinces_Jalisco_cities_Tlaquepaque : Ind City ; + + fun Countries_MEX_provinces_Jalisco_cities_Zapopan : Ind City ; + + fun Countries_MEX_provinces_Mexico_Estadode : Ind Province ; + + fun Countries_MEX_provinces_Mexico_Estadode_cities_Toluca : Ind City ; + + fun Countries_MEX_provinces_Mexico_Estadode_cities_TolucadeLerdo : Ind City ; + + fun Countries_MEX_provinces_Michoacan : Ind Province ; + + fun Countries_MEX_provinces_Michoacan_cities_Morelia : Ind City ; + + fun Countries_MEX_provinces_Michoacan_cities_Uruapan : Ind City ; + + fun Countries_MEX_provinces_Michoacan_cities_Zamora : Ind City ; + + fun Countries_MEX_provinces_Morelos : Ind Province ; + + fun Countries_MEX_provinces_Morelos_cities_Cuernavaca : Ind City ; + + fun Countries_MEX_provinces_Nayarit : Ind Province ; + + fun Countries_MEX_provinces_Nayarit_cities_Tepic : Ind City ; + + fun Countries_MEX_provinces_NuevoLeon : Ind Province ; + + fun Countries_MEX_provinces_NuevoLeon_cities_CiudadSantaCatarina : Ind City ; + + fun Countries_MEX_provinces_NuevoLeon_cities_Guadalupe : Ind City ; + + fun Countries_MEX_provinces_NuevoLeon_cities_Monterrey : Ind City ; + + fun Countries_MEX_provinces_NuevoLeon_cities_SanNicolasdelosGarza : Ind City ; + + fun Countries_MEX_provinces_Oaxaca : Ind Province ; + + fun Countries_MEX_provinces_Oaxaca_cities_Oaxaca : Ind City ; + + fun Countries_MEX_provinces_Puebla : Ind Province ; + + fun Countries_MEX_provinces_Puebla_cities_Puebla : Ind City ; + + fun Countries_MEX_provinces_Puebla_cities_Tehuacan : Ind City ; + + fun Countries_MEX_provinces_Queretaro : Ind Province ; + + fun Countries_MEX_provinces_Queretaro_cities_Queretaro : Ind City ; + + fun Countries_MEX_provinces_QuintanaRoo : Ind Province ; + + fun Countries_MEX_provinces_QuintanaRoo_cities_Cancun : Ind City ; + + fun Countries_MEX_provinces_QuintanaRoo_cities_Chetumal : Ind City ; + + fun Countries_MEX_provinces_SanLuisPotosi : Ind Province ; + + fun Countries_MEX_provinces_SanLuisPotosi_cities_SanLuisPotosi : Ind City ; + + fun Countries_MEX_provinces_Sinaloa : Ind Province ; + + fun Countries_MEX_provinces_Sinaloa_cities_Culiacan : Ind City ; + + fun Countries_MEX_provinces_Sinaloa_cities_LosMochis : Ind City ; + + fun Countries_MEX_provinces_Sinaloa_cities_Mazatlan : Ind City ; + + fun Countries_MEX_provinces_Sonora : Ind Province ; + + fun Countries_MEX_provinces_Sonora_cities_CiudadObregon : Ind City ; + + fun Countries_MEX_provinces_Sonora_cities_Hermosillo : Ind City ; + + fun Countries_MEX_provinces_Sonora_cities_HeroicaNogales : Ind City ; + + fun Countries_MEX_provinces_Tabasco : Ind Province ; + + fun Countries_MEX_provinces_Tabasco_cities_Villahermosa : Ind City ; + + fun Countries_MEX_provinces_Tamaulipas : Ind Province ; + + fun Countries_MEX_provinces_Tamaulipas_cities_CiudadMadero : Ind City ; + + fun Countries_MEX_provinces_Tamaulipas_cities_CiudadVictoria : Ind City ; + + fun Countries_MEX_provinces_Tamaulipas_cities_Matamoros : Ind City ; + + fun Countries_MEX_provinces_Tamaulipas_cities_NuevoLaredo : Ind City ; + + fun Countries_MEX_provinces_Tamaulipas_cities_Reynosa : Ind City ; + + fun Countries_MEX_provinces_Tamaulipas_cities_Tampico : Ind City ; + + fun Countries_MEX_provinces_Tlaxcala : Ind Province ; + + fun Countries_MEX_provinces_Tlaxcala_cities_Tlaxcala : Ind City ; + + fun Countries_MEX_provinces_Veracruz : Ind Province ; + + fun Countries_MEX_provinces_Veracruz_cities_Coatzacoalcos : Ind City ; + + fun Countries_MEX_provinces_Veracruz_cities_Cordoba : Ind City ; + + fun Countries_MEX_provinces_Veracruz_cities_Jalapa : Ind City ; + + fun Countries_MEX_provinces_Veracruz_cities_Minatitlan : Ind City ; + + fun Countries_MEX_provinces_Veracruz_cities_Orizaba : Ind City ; + + fun Countries_MEX_provinces_Veracruz_cities_PozaRica : Ind City ; + + fun Countries_MEX_provinces_Veracruz_cities_XalapaEnriquez : Ind City ; + + fun Countries_MEX_provinces_Yucatan : Ind Province ; + + fun Countries_MEX_provinces_Yucatan_cities_Merida : Ind City ; + + fun Countries_MEX_provinces_Zacatecas : Ind Province ; + + fun Countries_MEX_provinces_Zacatecas_cities_Zacatecas : Ind City ; + + fun Countries_MH_cities_Majuro : Ind City ; + + fun Countries_MK_cities_Skopje : Ind City ; + + fun Countries_MNG_cities_Ulaanbaatar : Ind City ; + + fun Countries_MOC_cities_Matala : Ind City ; + + fun Countries_MOC_provinces_CaboDelgado : Ind Province ; + + fun Countries_MOC_provinces_CaboDelgado_cities_Pemba : Ind City ; + + fun Countries_MOC_provinces_Gaza : Ind Province ; + + fun Countries_MOC_provinces_Gaza_cities_XaiXai : Ind City ; + + fun Countries_MOC_provinces_Inhambane : Ind Province ; + + fun Countries_MOC_provinces_Inhambane_cities_Inhambane : Ind City ; + + fun Countries_MOC_provinces_Manica : Ind Province ; + + fun Countries_MOC_provinces_Manica_cities_Chimoio : Ind City ; + + fun Countries_MOC_provinces_Maputo : Ind Province ; + + fun Countries_MOC_provinces_Maputo_cities_Nacala : Ind City ; + + fun Countries_MOC_provinces_Maputo_munic : Ind Province ; + + fun Countries_MOC_provinces_Maputo_munic_cities_Maputo : Ind City ; + + fun Countries_MOC_provinces_Nampula : Ind Province ; + + fun Countries_MOC_provinces_Nampula_cities_Nampula : Ind City ; + + fun Countries_MOC_provinces_Niassa : Ind Province ; + + fun Countries_MOC_provinces_Niassa_cities_Lichinga : Ind City ; + + fun Countries_MOC_provinces_Sofala : Ind Province ; + + fun Countries_MOC_provinces_Sofala_cities_Beira : Ind City ; + + fun Countries_MOC_provinces_Tete : Ind Province ; + + fun Countries_MOC_provinces_Tete_cities_Tete : Ind City ; + + fun Countries_MOC_provinces_Zambezia : Ind Province ; + + fun Countries_MOC_provinces_Zambezia_cities_Quelimane : Ind City ; + + fun Countries_MS_cities_PortLouis : Ind City ; + + fun Countries_MV_cities_Male : Ind City ; + + fun Countries_MW_cities_Lilongwe : Ind City ; + + fun Countries_MYA_provinces_Ayeyarwady : Ind Province ; + + fun Countries_MYA_provinces_Ayeyarwady_cities_Pathein : Ind City ; + + fun Countries_MYA_provinces_Bago : Ind Province ; + + fun Countries_MYA_provinces_Bago_cities_Bago : Ind City ; + + fun Countries_MYA_provinces_Chin : Ind Province ; + + fun Countries_MYA_provinces_Chin_cities_Hakha : Ind City ; + + fun Countries_MYA_provinces_Kachin : Ind Province ; + + fun Countries_MYA_provinces_Kachin_cities_Myitkyina : Ind City ; + + fun Countries_MYA_provinces_Kayah : Ind Province ; + + fun Countries_MYA_provinces_Kayah_cities_Loikaw : Ind City ; + + fun Countries_MYA_provinces_Kayin : Ind Province ; + + fun Countries_MYA_provinces_Kayin_cities_Hpaan : Ind City ; + + fun Countries_MYA_provinces_Magway : Ind Province ; + + fun Countries_MYA_provinces_Magway_cities_Magway : Ind City ; + + fun Countries_MYA_provinces_Mandalay : Ind Province ; + + fun Countries_MYA_provinces_Mandalay_cities_Mandalay : Ind City ; + + fun Countries_MYA_provinces_Mon : Ind Province ; + + fun Countries_MYA_provinces_Mon_cities_Moulmein : Ind City ; + + fun Countries_MYA_provinces_Rakhine : Ind Province ; + + fun Countries_MYA_provinces_Rakhine_cities_Akyab : Ind City ; + + fun Countries_MYA_provinces_Sagaing : Ind Province ; + + fun Countries_MYA_provinces_Sagaing_cities_Monywa : Ind City ; + + fun Countries_MYA_provinces_Sagaing_cities_Sagaing : Ind City ; + + fun Countries_MYA_provinces_Shan : Ind Province ; + + fun Countries_MYA_provinces_Shan_cities_Taunggyi : Ind City ; + + fun Countries_MYA_provinces_Tanintharyi : Ind Province ; + + fun Countries_MYA_provinces_Tanintharyi_cities_Tavoy : Ind City ; + + fun Countries_MYA_provinces_Yangon : Ind Province ; + + fun Countries_MYA_provinces_Yangon_cities_Rangoon : Ind City ; + + fun Countries_M_cities_Valletta : Ind City ; + + fun Countries_NAM_cities_Windhoek : Ind City ; + + fun Countries_NAU_cities_Yaren : Ind City ; + + fun Countries_NCA_cities_Noumea : Ind City ; + + fun Countries_NEP_cities_Kathmandu : Ind City ; + + fun Countries_NIC_cities_Chinandega : Ind City ; + + fun Countries_NIC_cities_Leon : Ind City ; + + fun Countries_NIC_cities_Managua : Ind City ; + + fun Countries_NIC_cities_Masaya : Ind City ; + + fun Countries_NL_provinces_Drenthe : Ind Province ; + + fun Countries_NL_provinces_Drenthe_cities_Assen : Ind City ; + + fun Countries_NL_provinces_Flevoland : Ind Province ; + + fun Countries_NL_provinces_Flevoland_cities_Lelystad : Ind City ; + + fun Countries_NL_provinces_Friesland : Ind Province ; + + fun Countries_NL_provinces_Friesland_cities_Leeuwarden : Ind City ; + + fun Countries_NL_provinces_Gelderland : Ind Province ; + + fun Countries_NL_provinces_Gelderland_cities_Arnhem : Ind City ; + + fun Countries_NL_provinces_Gelderland_cities_Nijmegen : Ind City ; + + fun Countries_NL_provinces_Groningen : Ind Province ; + + fun Countries_NL_provinces_Groningen_cities_Groningen : Ind City ; + + fun Countries_NL_provinces_Limburg : Ind Province ; + + fun Countries_NL_provinces_Limburg_cities_Geleen : Ind City ; + + fun Countries_NL_provinces_Limburg_cities_Heerlen : Ind City ; + + fun Countries_NL_provinces_Limburg_cities_Maastricht : Ind City ; + + fun Countries_NL_provinces_NoordBrabant : Ind Province ; + + fun Countries_NL_provinces_NoordBrabant_cities_Breda : Ind City ; + + fun Countries_NL_provinces_NoordBrabant_cities_Eindhoven : Ind City ; + + fun Countries_NL_provinces_NoordBrabant_cities_Tilburg : Ind City ; + + fun Countries_NL_provinces_NoordBrabant_cities_sHertogenbosch : Ind City ; + + fun Countries_NL_provinces_NoordHolland : Ind Province ; + + fun Countries_NL_provinces_NoordHolland_cities_Amsterdam : Ind City ; + + fun Countries_NL_provinces_NoordHolland_cities_Haarlem : Ind City ; + + fun Countries_NL_provinces_NoordHolland_cities_Hilversum : Ind City ; + + fun Countries_NL_provinces_NoordHolland_cities_Velsen : Ind City ; + + fun Countries_NL_provinces_NoordHolland_cities_Zaanstreek : Ind City ; + + fun Countries_NL_provinces_Overijssel : Ind Province ; + + fun Countries_NL_provinces_Overijssel_cities_Enschede : Ind City ; + + fun Countries_NL_provinces_Overijssel_cities_Zwolle : Ind City ; + + fun Countries_NL_provinces_Utrecht : Ind Province ; + + fun Countries_NL_provinces_Utrecht_cities_Utrecht : Ind City ; + + fun Countries_NL_provinces_Zeeland : Ind Province ; + + fun Countries_NL_provinces_Zeeland_cities_Middelburg : Ind City ; + + fun Countries_NL_provinces_ZuidHolland : Ind Province ; + + fun Countries_NL_provinces_ZuidHolland_cities_Dordrecht : Ind City ; + + fun Countries_NL_provinces_ZuidHolland_cities_Leiden : Ind City ; + + fun Countries_NL_provinces_ZuidHolland_cities_Rotterdam : Ind City ; + + fun Countries_NL_provinces_ZuidHolland_cities_sGravenhage : Ind City ; + + fun Countries_NOK_cities_Anju : Ind City ; + + fun Countries_NOK_cities_Chongjin : Ind City ; + + fun Countries_NOK_cities_Haeju : Ind City ; + + fun Countries_NOK_cities_HamhungHungnam : Ind City ; + + fun Countries_NOK_cities_Huichon : Ind City ; + + fun Countries_NOK_cities_Kaesong : Ind City ; + + fun Countries_NOK_cities_Kanggye : Ind City ; + + fun Countries_NOK_cities_Kusong : Ind City ; + + fun Countries_NOK_cities_Nampo : Ind City ; + + fun Countries_NOK_cities_Pyongyang : Ind City ; + + fun Countries_NOK_cities_Sinpo : Ind City ; + + fun Countries_NOK_cities_Sinuiju : Ind City ; + + fun Countries_NOK_cities_Songjin : Ind City ; + + fun Countries_NOK_cities_Sunchon : Ind City ; + + fun Countries_NOK_cities_Tanchon : Ind City ; + + fun Countries_NOK_cities_Tokchon : Ind City ; + + fun Countries_NOK_cities_Wonsan : Ind City ; + + fun Countries_NZ_cities_Auckland : Ind City ; + + fun Countries_NZ_cities_Wellington : Ind City ; + + fun Countries_N_provinces_Akershus : Ind Province ; + + fun Countries_N_provinces_AustAgder : Ind Province ; + + fun Countries_N_provinces_AustAgder_cities_Arendal : Ind City ; + + fun Countries_N_provinces_Buskerud : Ind Province ; + + fun Countries_N_provinces_Buskerud_cities_Drammen : Ind City ; + + fun Countries_N_provinces_Finnmark : Ind Province ; + + fun Countries_N_provinces_Finnmark_cities_Hammerfest : Ind City ; + + fun Countries_N_provinces_Finnmark_cities_Vadsoe : Ind City ; + + fun Countries_N_provinces_Hedmark : Ind Province ; + + fun Countries_N_provinces_Hedmark_cities_Hamar : Ind City ; + + fun Countries_N_provinces_Hordaland : Ind Province ; + + fun Countries_N_provinces_Hordaland_cities_Bergen : Ind City ; + + fun Countries_N_provinces_MoereogRomsdal : Ind Province ; + + fun Countries_N_provinces_MoereogRomsdal_cities_Molde : Ind City ; + + fun Countries_N_provinces_NordTrondelag : Ind Province ; + + fun Countries_N_provinces_NordTrondelag_cities_Steinkjer : Ind City ; + + fun Countries_N_provinces_Nordland : Ind Province ; + + fun Countries_N_provinces_Nordland_cities_Bodoe : Ind City ; + + fun Countries_N_provinces_Nordland_cities_Narvik : Ind City ; + + fun Countries_N_provinces_Nordland_cities_Svolvaer : Ind City ; + + fun Countries_N_provinces_Oestfold : Ind Province ; + + fun Countries_N_provinces_Oestfold_cities_Moss : Ind City ; + + fun Countries_N_provinces_Oppland : Ind Province ; + + fun Countries_N_provinces_Oppland_cities_Lillehammer : Ind City ; + + fun Countries_N_provinces_Oslo : Ind Province ; + + fun Countries_N_provinces_Oslo_cities_Oslo : Ind City ; + + fun Countries_N_provinces_Rogaland : Ind Province ; + + fun Countries_N_provinces_Rogaland_cities_Stavanger : Ind City ; + + fun Countries_N_provinces_SoerTrondelag : Ind Province ; + + fun Countries_N_provinces_SoerTrondelag_cities_Trondheim : Ind City ; + + fun Countries_N_provinces_SognogFjordane : Ind Province ; + + fun Countries_N_provinces_SognogFjordane_cities_Hermannsverk : Ind City ; + + fun Countries_N_provinces_Telemark : Ind Province ; + + fun Countries_N_provinces_Telemark_cities_Skien : Ind City ; + + fun Countries_N_provinces_Troms : Ind Province ; + + fun Countries_N_provinces_Troms_cities_Tromsoe : Ind City ; + + fun Countries_N_provinces_VestAgder : Ind Province ; + + fun Countries_N_provinces_VestAgder_cities_Kristiansand : Ind City ; + + fun Countries_N_provinces_Vestfold : Ind Province ; + + fun Countries_N_provinces_Vestfold_cities_Toensberg : Ind City ; + + fun Countries_OM_cities_Muscat : Ind City ; + + fun Countries_PAL_cities_Koror : Ind City ; + + fun Countries_PA_provinces_BocasdelToro : Ind Province ; + + fun Countries_PA_provinces_BocasdelToro_cities_BocasdelToro : Ind City ; + + fun Countries_PA_provinces_Chiriqui : Ind Province ; + + fun Countries_PA_provinces_Chiriqui_cities_David : Ind City ; + + fun Countries_PA_provinces_Cocle : Ind Province ; + + fun Countries_PA_provinces_Cocle_cities_Penonome : Ind City ; + + fun Countries_PA_provinces_Colon : Ind Province ; + + fun Countries_PA_provinces_Colon_cities_Colon : Ind City ; + + fun Countries_PA_provinces_ComarcadeSanBlas : Ind Province ; + + fun Countries_PA_provinces_ComarcadeSanBlas_cities_ElPorvenir : Ind City ; + + fun Countries_PA_provinces_Darien : Ind Province ; + + fun Countries_PA_provinces_Darien_cities_LaPalma : Ind City ; + + fun Countries_PA_provinces_Herrera : Ind Province ; + + fun Countries_PA_provinces_Herrera_cities_Chitre : Ind City ; + + fun Countries_PA_provinces_LosSantos : Ind Province ; + + fun Countries_PA_provinces_LosSantos_cities_LasTablas : Ind City ; + + fun Countries_PA_provinces_Panama : Ind Province ; + + fun Countries_PA_provinces_Panama_cities_PanamaCity : Ind City ; + + fun Countries_PA_provinces_Panama_cities_SanMiguelito : Ind City ; + + fun Countries_PA_provinces_Veraguas : Ind Province ; + + fun Countries_PA_provinces_Veraguas_cities_Santiago : Ind City ; + + fun Countries_PE_provinces_Amazonas : Ind Province ; + + fun Countries_PE_provinces_Amazonas_cities_Chachapoyas : Ind City ; + + fun Countries_PE_provinces_Ancash : Ind Province ; + + fun Countries_PE_provinces_Ancash_cities_Chimbote : Ind City ; + + fun Countries_PE_provinces_Ancash_cities_Huaraz : Ind City ; + + fun Countries_PE_provinces_Apurimac : Ind Province ; + + fun Countries_PE_provinces_Apurimac_cities_Abancay : Ind City ; + + fun Countries_PE_provinces_Arequipa : Ind Province ; + + fun Countries_PE_provinces_Arequipa_cities_Arequipa : Ind City ; + + fun Countries_PE_provinces_Ayacucho : Ind Province ; + + fun Countries_PE_provinces_Ayacucho_cities_Ayacucho : Ind City ; + + fun Countries_PE_provinces_Cajamarca : Ind Province ; + + fun Countries_PE_provinces_Cajamarca_cities_Cajamarca : Ind City ; + + fun Countries_PE_provinces_Callao : Ind Province ; + + fun Countries_PE_provinces_Callao_cities_Callao : Ind City ; + + fun Countries_PE_provinces_Cuzco : Ind Province ; + + fun Countries_PE_provinces_Cuzco_cities_Cuzco : Ind City ; + + fun Countries_PE_provinces_Huancavelica : Ind Province ; + + fun Countries_PE_provinces_Huancavelica_cities_Huancavelica : Ind City ; + + fun Countries_PE_provinces_Huanuco : Ind Province ; + + fun Countries_PE_provinces_Huanuco_cities_Huanuco : Ind City ; + + fun Countries_PE_provinces_Ica : Ind Province ; + + fun Countries_PE_provinces_Ica_cities_ChinchaAlta : Ind City ; + + fun Countries_PE_provinces_Ica_cities_Ica : Ind City ; + + fun Countries_PE_provinces_Junin : Ind Province ; + + fun Countries_PE_provinces_Junin_cities_Huancayo : Ind City ; + + fun Countries_PE_provinces_LaLibertad : Ind Province ; + + fun Countries_PE_provinces_LaLibertad_cities_Trujillo : Ind City ; + + fun Countries_PE_provinces_Lambayeque : Ind Province ; + + fun Countries_PE_provinces_Lambayeque_cities_Chiclayo : Ind City ; + + fun Countries_PE_provinces_Lima : Ind Province ; + + fun Countries_PE_provinces_Lima_cities_Lima : Ind City ; + + fun Countries_PE_provinces_Loreto : Ind Province ; + + fun Countries_PE_provinces_Loreto_cities_Iquitos : Ind City ; + + fun Countries_PE_provinces_MadredeDios : Ind Province ; + + fun Countries_PE_provinces_MadredeDios_cities_PuertoMaldonado : Ind City ; + + fun Countries_PE_provinces_Moquegua : Ind Province ; + + fun Countries_PE_provinces_Moquegua_cities_Moquegua : Ind City ; + + fun Countries_PE_provinces_Pasco : Ind Province ; + + fun Countries_PE_provinces_Pasco_cities_CerrodePasco : Ind City ; + + fun Countries_PE_provinces_Piura : Ind Province ; + + fun Countries_PE_provinces_Piura_cities_Piura : Ind City ; + + fun Countries_PE_provinces_Piura_cities_Sullana : Ind City ; + + fun Countries_PE_provinces_Piura_cities_Talara : Ind City ; + + fun Countries_PE_provinces_Puno : Ind Province ; + + fun Countries_PE_provinces_Puno_cities_Juliaca : Ind City ; + + fun Countries_PE_provinces_Puno_cities_Puno : Ind City ; + + fun Countries_PE_provinces_SanMartin : Ind Province ; + + fun Countries_PE_provinces_SanMartin_cities_Moyobamba : Ind City ; + + fun Countries_PE_provinces_Tacna : Ind Province ; + + fun Countries_PE_provinces_Tacna_cities_Tacna : Ind City ; + + fun Countries_PE_provinces_Tumbes : Ind Province ; + + fun Countries_PE_provinces_Tumbes_cities_Tumbes : Ind City ; + + fun Countries_PE_provinces_Ucayali : Ind Province ; + + fun Countries_PE_provinces_Ucayali_cities_Pucallpa : Ind City ; + + fun Countries_PK_cities_Bahawalpur : Ind City ; + + fun Countries_PK_cities_Chiniot : Ind City ; + + fun Countries_PK_cities_DeraGhaziKhan : Ind City ; + + fun Countries_PK_cities_Gujranwala : Ind City ; + + fun Countries_PK_cities_Gujrat : Ind City ; + + fun Countries_PK_cities_Hyderabad : Ind City ; + + fun Countries_PK_cities_Islamabad : Ind City ; + + fun Countries_PK_cities_Jhang : Ind City ; + + fun Countries_PK_cities_Jhelum : Ind City ; + + fun Countries_PK_cities_Karachi : Ind City ; + + fun Countries_PK_cities_Kasur : Ind City ; + + fun Countries_PK_cities_Lahore : Ind City ; + + fun Countries_PK_cities_LahoreCantonment : Ind City ; + + fun Countries_PK_cities_Larkana : Ind City ; + + fun Countries_PK_cities_Lyallpur : Ind City ; + + fun Countries_PK_cities_Mardan : Ind City ; + + fun Countries_PK_cities_MirpurKhas : Ind City ; + + fun Countries_PK_cities_Multan : Ind City ; + + fun Countries_PK_cities_Nawabshah : Ind City ; + + fun Countries_PK_cities_Okara : Ind City ; + + fun Countries_PK_cities_Peshawar : Ind City ; + + fun Countries_PK_cities_Quetta : Ind City ; + + fun Countries_PK_cities_RahimYarKhan : Ind City ; + + fun Countries_PK_cities_Rawalpindi : Ind City ; + + fun Countries_PK_cities_Sahiwal : Ind City ; + + fun Countries_PK_cities_Sargodha : Ind City ; + + fun Countries_PK_cities_Sheikhupura : Ind City ; + + fun Countries_PK_cities_Sialkot : Ind City ; + + fun Countries_PK_cities_Sukkur : Ind City ; + + fun Countries_PK_cities_WahCantonment : Ind City ; + + fun Countries_PL_cities_DabrowaGornicza : Ind City ; + + fun Countries_PL_cities_JastrzebieZdroj : Ind City ; + + fun Countries_PL_provinces_Bialostockie : Ind Province ; + + fun Countries_PL_provinces_Bialostockie_cities_Bialystok : Ind City ; + + fun Countries_PL_provinces_Bialskopodlaskie : Ind Province ; + + fun Countries_PL_provinces_Bialskopodlaskie_cities_BialaPodlaska : Ind City ; + + fun Countries_PL_provinces_Bielskie : Ind Province ; + + fun Countries_PL_provinces_Bielskie_cities_BielskoBiala : Ind City ; + + fun Countries_PL_provinces_Bydgoskie : Ind Province ; + + fun Countries_PL_provinces_Bydgoskie_cities_Bydgoszcz : Ind City ; + + fun Countries_PL_provinces_Chelmskie : Ind Province ; + + fun Countries_PL_provinces_Chelmskie_cities_Chelm : Ind City ; + + fun Countries_PL_provinces_Ciechanowskie : Ind Province ; + + fun Countries_PL_provinces_Ciechanowskie_cities_Ciechanow : Ind City ; + + fun Countries_PL_provinces_Czestochowskie : Ind Province ; + + fun Countries_PL_provinces_Czestochowskie_cities_Czestochowa : Ind City ; + + fun Countries_PL_provinces_Elblaskie : Ind Province ; + + fun Countries_PL_provinces_Elblaskie_cities_Elblag : Ind City ; + + fun Countries_PL_provinces_Gdanskie : Ind Province ; + + fun Countries_PL_provinces_Gdanskie_cities_Gdansk : Ind City ; + + fun Countries_PL_provinces_Gdanskie_cities_Gdynia : Ind City ; + + fun Countries_PL_provinces_Gorzowskie : Ind Province ; + + fun Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolski : Ind City ; + + fun Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolskie : Ind City ; + + fun Countries_PL_provinces_Jeleniogorskie : Ind Province ; + + fun Countries_PL_provinces_Jeleniogorskie_cities_JeleniaGora : Ind City ; + + fun Countries_PL_provinces_Kaliskie : Ind Province ; + + fun Countries_PL_provinces_Kaliskie_cities_Kalisz : Ind City ; + + fun Countries_PL_provinces_Katowickie : Ind Province ; + + fun Countries_PL_provinces_Katowickie_cities_Bytom : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Chorzow : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Gliwice : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Katowice : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_RudaSlaska : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Rybnik : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Sosnowiec : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Tychy : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_WodzilawSlaski : Ind City ; + + fun Countries_PL_provinces_Katowickie_cities_Zabrze : Ind City ; + + fun Countries_PL_provinces_Kieleckie : Ind Province ; + + fun Countries_PL_provinces_Kieleckie_cities_Kielce : Ind City ; + + fun Countries_PL_provinces_Koninskie : Ind Province ; + + fun Countries_PL_provinces_Koninskie_cities_Konin : Ind City ; + + fun Countries_PL_provinces_Koszalinskie : Ind Province ; + + fun Countries_PL_provinces_Koszalinskie_cities_Koszalin : Ind City ; + + fun Countries_PL_provinces_Krakowskie : Ind Province ; + + fun Countries_PL_provinces_Krakowskie_cities_Krakow : Ind City ; + + fun Countries_PL_provinces_Krosnienskie : Ind Province ; + + fun Countries_PL_provinces_Krosnienskie_cities_Krosno : Ind City ; + + fun Countries_PL_provinces_Legnickie : Ind Province ; + + fun Countries_PL_provinces_Legnickie_cities_Legnica : Ind City ; + + fun Countries_PL_provinces_Leszczynskie : Ind Province ; + + fun Countries_PL_provinces_Leszczynskie_cities_Leszno : Ind City ; + + fun Countries_PL_provinces_Lodzkie : Ind Province ; + + fun Countries_PL_provinces_Lodzkie_cities_Lodz : Ind City ; + + fun Countries_PL_provinces_Lomzynskie : Ind Province ; + + fun Countries_PL_provinces_Lomzynskie_cities_Lomza : Ind City ; + + fun Countries_PL_provinces_Lubelskie : Ind Province ; + + fun Countries_PL_provinces_Lubelskie_cities_Lublin : Ind City ; + + fun Countries_PL_provinces_Nowosadeckie : Ind Province ; + + fun Countries_PL_provinces_Nowosadeckie_cities_NowySacz : Ind City ; + + fun Countries_PL_provinces_Olsztynskie : Ind Province ; + + fun Countries_PL_provinces_Olsztynskie_cities_Olsztyn : Ind City ; + + fun Countries_PL_provinces_Opolskie : Ind Province ; + + fun Countries_PL_provinces_Opolskie_cities_Opole : Ind City ; + + fun Countries_PL_provinces_Ostroleckie : Ind Province ; + + fun Countries_PL_provinces_Ostroleckie_cities_Ostroleka : Ind City ; + + fun Countries_PL_provinces_Pilskie : Ind Province ; + + fun Countries_PL_provinces_Pilskie_cities_Pila : Ind City ; + + fun Countries_PL_provinces_Piotrkowskie : Ind Province ; + + fun Countries_PL_provinces_Piotrkowskie_cities_PiottrkowTrybunalski : Ind City ; + + fun Countries_PL_provinces_Plockie : Ind Province ; + + fun Countries_PL_provinces_Plockie_cities_Plock : Ind City ; + + fun Countries_PL_provinces_Poznanskie : Ind Province ; + + fun Countries_PL_provinces_Poznanskie_cities_Poznan : Ind City ; + + fun Countries_PL_provinces_Przemyskie : Ind Province ; + + fun Countries_PL_provinces_Przemyskie_cities_Przemysl : Ind City ; + + fun Countries_PL_provinces_Radomskie : Ind Province ; + + fun Countries_PL_provinces_Radomskie_cities_Radom : Ind City ; + + fun Countries_PL_provinces_Rzeszowskie : Ind Province ; + + fun Countries_PL_provinces_Rzeszowskie_cities_Rzeszow : Ind City ; + + fun Countries_PL_provinces_Siedleckie : Ind Province ; + + fun Countries_PL_provinces_Siedleckie_cities_Siedlce : Ind City ; + + fun Countries_PL_provinces_Sieradzkie : Ind Province ; + + fun Countries_PL_provinces_Sieradzkie_cities_Sieradz : Ind City ; + + fun Countries_PL_provinces_Skierniewickie : Ind Province ; + + fun Countries_PL_provinces_Skierniewickie_cities_Skierniewice : Ind City ; + + fun Countries_PL_provinces_Slupskie : Ind Province ; + + fun Countries_PL_provinces_Slupskie_cities_Slupsk : Ind City ; + + fun Countries_PL_provinces_Suwalskie : Ind Province ; + + fun Countries_PL_provinces_Suwalskie_cities_Suwalki : Ind City ; + + fun Countries_PL_provinces_Szczecinskie : Ind Province ; + + fun Countries_PL_provinces_Szczecinskie_cities_Szczecin : Ind City ; + + fun Countries_PL_provinces_Tarnobrzeskie : Ind Province ; + + fun Countries_PL_provinces_Tarnobrzeskie_cities_Tarnobrzeg : Ind City ; + + fun Countries_PL_provinces_Tarnowskie : Ind Province ; + + fun Countries_PL_provinces_Tarnowskie_cities_Tarnow : Ind City ; + + fun Countries_PL_provinces_Torunskie : Ind Province ; + + fun Countries_PL_provinces_Torunskie_cities_Grudziadz : Ind City ; + + fun Countries_PL_provinces_Torunskie_cities_Torun : Ind City ; + + fun Countries_PL_provinces_Walbrzyskie : Ind Province ; + + fun Countries_PL_provinces_Walbrzyskie_cities_Walbrzych : Ind City ; + + fun Countries_PL_provinces_Warszwaskie : Ind Province ; + + fun Countries_PL_provinces_Warszwaskie_cities_Warsaw : Ind City ; + + fun Countries_PL_provinces_Wloclawskie : Ind Province ; + + fun Countries_PL_provinces_Wloclawskie_cities_Wloclawek : Ind City ; + + fun Countries_PL_provinces_Wroclawskie : Ind Province ; + + fun Countries_PL_provinces_Wroclawskie_cities_Wroclaw : Ind City ; + + fun Countries_PL_provinces_Zamojskie : Ind Province ; + + fun Countries_PL_provinces_Zamojskie_cities_Zamosc : Ind City ; + + fun Countries_PL_provinces_Zielonogorskie : Ind Province ; + + fun Countries_PL_provinces_Zielonogorskie_cities_ZielonaGora : Ind City ; + + fun Countries_PNG_cities_PortMoresby : Ind City ; + + fun Countries_PY_cities_Asuncion : Ind City ; + + fun Countries_P_provinces_Aveiro : Ind Province ; + + fun Countries_P_provinces_Azores_The : Ind Province ; + + fun Countries_P_provinces_Beja : Ind Province ; + + fun Countries_P_provinces_Braga : Ind Province ; + + fun Countries_P_provinces_Braga_cities_Braga : Ind City ; + + fun Countries_P_provinces_Braganca : Ind Province ; + + fun Countries_P_provinces_CasteloBranco : Ind Province ; + + fun Countries_P_provinces_Coimbra : Ind Province ; + + fun Countries_P_provinces_Coimbra_cities_Coimbra : Ind City ; + + fun Countries_P_provinces_Evora : Ind Province ; + + fun Countries_P_provinces_Faro : Ind Province ; + + fun Countries_P_provinces_Guarda : Ind Province ; + + fun Countries_P_provinces_Leiria : Ind Province ; + + fun Countries_P_provinces_Lisbon : Ind Province ; + + fun Countries_P_provinces_Lisbon_cities_Almada : Ind City ; + + fun Countries_P_provinces_Lisbon_cities_Amadora : Ind City ; + + fun Countries_P_provinces_Lisbon_cities_Barreiro : Ind City ; + + fun Countries_P_provinces_Lisbon_cities_Lisbon : Ind City ; + + fun Countries_P_provinces_Madeira : Ind Province ; + + fun Countries_P_provinces_Madeira_cities_Funchal : Ind City ; + + fun Countries_P_provinces_Portalegre : Ind Province ; + + fun Countries_P_provinces_Porto : Ind Province ; + + fun Countries_P_provinces_Porto_cities_Porto : Ind City ; + + fun Countries_P_provinces_Porto_cities_VilaNovadeGaia : Ind City ; + + fun Countries_P_provinces_Santarem : Ind Province ; + + fun Countries_P_provinces_Setubal : Ind Province ; + + fun Countries_P_provinces_Setubal_cities_Setubal : Ind City ; + + fun Countries_P_provinces_VianadoCastelo : Ind Province ; + + fun Countries_P_provinces_VilaReal : Ind Province ; + + fun Countries_P_provinces_Viseu : Ind Province ; + + fun Countries_Q_cities_Doha : Ind City ; + + fun Countries_Q_cities_Rayyan : Ind City ; + + fun Countries_Q_cities_Wakrah : Ind City ; + + fun Countries_RA_provinces_BuenosAires : Ind Province ; + + fun Countries_RA_provinces_BuenosAires_cities_Avellaneda : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_BahiaBlanca : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_GeneralSanMartin : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_LaMatanza : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_LaPlata : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_Lanus : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_LomasdeZamoras : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_MardelPlata : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_Moron : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_Quilmes : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_SanIsidro : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_SanNicolasdelosArroyos : Ind City ; + + fun Countries_RA_provinces_BuenosAires_cities_VicenteLopez : Ind City ; + + fun Countries_RA_provinces_Catamarca : Ind Province ; + + fun Countries_RA_provinces_Catamarca_cities_SanFernando : Ind City ; + + fun Countries_RA_provinces_Catamarca_cities_SanFernandodelValledeCatamarca : Ind City ; + + fun Countries_RA_provinces_Chaco : Ind Province ; + + fun Countries_RA_provinces_Chaco_cities_Resistencia : Ind City ; + + fun Countries_RA_provinces_Chubut : Ind Province ; + + fun Countries_RA_provinces_Chubut_cities_ComodoroRivadavia : Ind City ; + + fun Countries_RA_provinces_Chubut_cities_Rawson : Ind City ; + + fun Countries_RA_provinces_Cordoba : Ind Province ; + + fun Countries_RA_provinces_Cordoba_cities_Cordoba : Ind City ; + + fun Countries_RA_provinces_Cordoba_cities_RioCuarto : Ind City ; + + fun Countries_RA_provinces_Corrientes : Ind Province ; + + fun Countries_RA_provinces_Corrientes_cities_Corrientes : Ind City ; + + fun Countries_RA_provinces_DistritoFederal : Ind Province ; + + fun Countries_RA_provinces_DistritoFederal_cities_BuenosAires : Ind City ; + + fun Countries_RA_provinces_EntreRios : Ind Province ; + + fun Countries_RA_provinces_EntreRios_cities_Concordia : Ind City ; + + fun Countries_RA_provinces_EntreRios_cities_Parana : Ind City ; + + fun Countries_RA_provinces_Formosa : Ind Province ; + + fun Countries_RA_provinces_Formosa_cities_Formosa : Ind City ; + + fun Countries_RA_provinces_Jujuy : Ind Province ; + + fun Countries_RA_provinces_Jujuy_cities_SanSalvadordeJujuy : Ind City ; + + fun Countries_RA_provinces_LaPampa : Ind Province ; + + fun Countries_RA_provinces_LaPampa_cities_SantaRosa : Ind City ; + + fun Countries_RA_provinces_LaRioja : Ind Province ; + + fun Countries_RA_provinces_LaRioja_cities_LaRioja : Ind City ; + + fun Countries_RA_provinces_Mendoza : Ind Province ; + + fun Countries_RA_provinces_Mendoza_cities_Mendoza : Ind City ; + + fun Countries_RA_provinces_Misiones : Ind Province ; + + fun Countries_RA_provinces_Misiones_cities_Posadas : Ind City ; + + fun Countries_RA_provinces_Neuquen : Ind Province ; + + fun Countries_RA_provinces_Neuquen_cities_Neuquen : Ind City ; + + fun Countries_RA_provinces_RioNegro : Ind Province ; + + fun Countries_RA_provinces_RioNegro_cities_Viedma : Ind City ; + + fun Countries_RA_provinces_Salta : Ind Province ; + + fun Countries_RA_provinces_Salta_cities_Salta : Ind City ; + + fun Countries_RA_provinces_SanJuan : Ind Province ; + + fun Countries_RA_provinces_SanJuan_cities_SanJuan : Ind City ; + + fun Countries_RA_provinces_SanLuis : Ind Province ; + + fun Countries_RA_provinces_SanLuis_cities_SanLuis : Ind City ; + + fun Countries_RA_provinces_SantaCruz : Ind Province ; + + fun Countries_RA_provinces_SantaCruz_cities_RioGallegos : Ind City ; + + fun Countries_RA_provinces_SantaFe : Ind Province ; + + fun Countries_RA_provinces_SantaFe_cities_Rosario : Ind City ; + + fun Countries_RA_provinces_SantaFe_cities_SantaFe : Ind City ; + + fun Countries_RA_provinces_SantiagodeEstero : Ind Province ; + + fun Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEstero : Ind City ; + + fun Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEsteroLaBanda : Ind City ; + + fun Countries_RA_provinces_TierradelFuego : Ind Province ; + + fun Countries_RA_provinces_TierradelFuego_cities_Ushuaia : Ind City ; + + fun Countries_RA_provinces_Tucuman : Ind Province ; + + fun Countries_RA_provinces_Tucuman_cities_SanMigueldeTucuman : Ind City ; + + fun Countries_RB_cities_Gaborone : Ind City ; + + fun Countries_RCA_cities_Bangui : Ind City ; + + fun Countries_RCB_cities_Brazzaville : Ind City ; + + fun Countries_RCH_cities_Santiago : Ind City ; + + fun Countries_RCH_cities_Valparaiso : Ind City ; + + fun Countries_RC_cities_Chungho : Ind City ; + + fun Countries_RC_cities_Chungli : Ind City ; + + fun Countries_RC_cities_Hsinchuang : Ind City ; + + fun Countries_RC_cities_Hsintien : Ind City ; + + fun Countries_RC_cities_Sanchuung : Ind City ; + + fun Countries_RC_cities_Yungho : Ind City ; + + fun Countries_RC_provinces_Changhua : Ind Province ; + + fun Countries_RC_provinces_Changhua_cities_Changhua : Ind City ; + + fun Countries_RC_provinces_Chiai : Ind Province ; + + fun Countries_RC_provinces_Chiai_munic : Ind Province ; + + fun Countries_RC_provinces_Chiai_munic_cities_Chiai : Ind City ; + + fun Countries_RC_provinces_Chilung_munic : Ind Province ; + + fun Countries_RC_provinces_Chilung_munic_cities_Chilung : Ind City ; + + fun Countries_RC_provinces_Hsinchu : Ind Province ; + + fun Countries_RC_provinces_Hsinchu_munic : Ind Province ; + + fun Countries_RC_provinces_Hsinchu_munic_cities_Hsinchu : Ind City ; + + fun Countries_RC_provinces_Hualien : Ind Province ; + + fun Countries_RC_provinces_Hualien_cities_Hualien : Ind City ; + + fun Countries_RC_provinces_Ilan : Ind Province ; + + fun Countries_RC_provinces_Ilan_cities_Ilan : Ind City ; + + fun Countries_RC_provinces_Kaohsiung : Ind Province ; + + fun Countries_RC_provinces_Kaohsiung_cities_Fengshan : Ind City ; + + fun Countries_RC_provinces_Kaohsiung_munic : Ind Province ; + + fun Countries_RC_provinces_Kaohsiung_munic_cities_Kaohsiung : Ind City ; + + fun Countries_RC_provinces_Miaoli : Ind Province ; + + fun Countries_RC_provinces_Miaoli_cities_Miaoli : Ind City ; + + fun Countries_RC_provinces_Nantou : Ind Province ; + + fun Countries_RC_provinces_Nantou_cities_Nantou : Ind City ; + + fun Countries_RC_provinces_Penghu : Ind Province ; + + fun Countries_RC_provinces_Penghu_cities_Makung : Ind City ; + + fun Countries_RC_provinces_Pingtung : Ind Province ; + + fun Countries_RC_provinces_Pingtung_cities_Pingtung : Ind City ; + + fun Countries_RC_provinces_Taichung : Ind Province ; + + fun Countries_RC_provinces_Taichung_cities_Fengyuan : Ind City ; + + fun Countries_RC_provinces_Taichung_munic : Ind Province ; + + fun Countries_RC_provinces_Taichung_munic_cities_Taichung : Ind City ; + + fun Countries_RC_provinces_Tainan : Ind Province ; + + fun Countries_RC_provinces_Tainan_cities_Hsinying : Ind City ; + + fun Countries_RC_provinces_Tainan_munic : Ind Province ; + + fun Countries_RC_provinces_Tainan_munic_cities_Tainan : Ind City ; + + fun Countries_RC_provinces_Taipei : Ind Province ; + + fun Countries_RC_provinces_Taipei_cities_Panchiao : Ind City ; + + fun Countries_RC_provinces_Taipei_munic : Ind Province ; + + fun Countries_RC_provinces_Taipei_munic_cities_Taipei : Ind City ; + + fun Countries_RC_provinces_Taitung : Ind Province ; + + fun Countries_RC_provinces_Taitung_cities_Taitung : Ind City ; + + fun Countries_RC_provinces_Taoyuan : Ind Province ; + + fun Countries_RC_provinces_Taoyuan_cities_Taoyuan : Ind City ; + + fun Countries_RC_provinces_Yunlin : Ind Province ; + + fun Countries_RC_provinces_Yunlin_cities_Touliu : Ind City ; + + fun Countries_RG_cities_Conakry : Ind City ; + + fun Countries_RH_cities_Port_au_Prince : Ind City ; + + fun Countries_RIM_cities_Nouakchott : Ind City ; + + fun Countries_RI_cities_Ambon : Ind City ; + + fun Countries_RI_cities_Balikpapan : Ind City ; + + fun Countries_RI_cities_BandaAceh : Ind City ; + + fun Countries_RI_cities_BandarLampung : Ind City ; + + fun Countries_RI_cities_Bandung : Ind City ; + + fun Countries_RI_cities_Banjarmasin : Ind City ; + + fun Countries_RI_cities_Batam : Ind City ; + + fun Countries_RI_cities_Bengkulu : Ind City ; + + fun Countries_RI_cities_Binjai : Ind City ; + + fun Countries_RI_cities_Blitar : Ind City ; + + fun Countries_RI_cities_Bogor : Ind City ; + + fun Countries_RI_cities_Cirebon : Ind City ; + + fun Countries_RI_cities_Gorontalo : Ind City ; + + fun Countries_RI_cities_Jakarta : Ind City ; + + fun Countries_RI_cities_Jambi : Ind City ; + + fun Countries_RI_cities_Kediri : Ind City ; + + fun Countries_RI_cities_Madiun : Ind City ; + + fun Countries_RI_cities_Magelang : Ind City ; + + fun Countries_RI_cities_Malang : Ind City ; + + fun Countries_RI_cities_Manado : Ind City ; + + fun Countries_RI_cities_Medan : Ind City ; + + fun Countries_RI_cities_Padang : Ind City ; + + fun Countries_RI_cities_Palangkaraya : Ind City ; + + fun Countries_RI_cities_Palembang : Ind City ; + + fun Countries_RI_cities_PangkalPinang : Ind City ; + + fun Countries_RI_cities_ParePare : Ind City ; + + fun Countries_RI_cities_Pasuruan : Ind City ; + + fun Countries_RI_cities_Pekalongan : Ind City ; + + fun Countries_RI_cities_PekanBaru : Ind City ; + + fun Countries_RI_cities_PematangSiantar : Ind City ; + + fun Countries_RI_cities_Pontianak : Ind City ; + + fun Countries_RI_cities_Probolinggo : Ind City ; + + fun Countries_RI_cities_Samarinda : Ind City ; + + fun Countries_RI_cities_Semarang : Ind City ; + + fun Countries_RI_cities_Sukabumi : Ind City ; + + fun Countries_RI_cities_Surabaya : Ind City ; + + fun Countries_RI_cities_Surakarta : Ind City ; + + fun Countries_RI_cities_TanjungBalai : Ind City ; + + fun Countries_RI_cities_TebingTinggi : Ind City ; + + fun Countries_RI_cities_Tegal : Ind City ; + + fun Countries_RI_cities_UjungPandang : Ind City ; + + fun Countries_RI_cities_Yogyakarta : Ind City ; + + fun Countries_RL_cities_Beirut : Ind City ; + + fun Countries_RMM_cities_Bamako : Ind City ; + + fun Countries_RM_provinces_Antananarivo : Ind Province ; + + fun Countries_RM_provinces_Antananarivo_cities_Antananarivo : Ind City ; + + fun Countries_RM_provinces_Antananarivo_cities_Antsirabe : Ind City ; + + fun Countries_RM_provinces_Antsiranana : Ind Province ; + + fun Countries_RM_provinces_Antsiranana_cities_Antsiranana : Ind City ; + + fun Countries_RM_provinces_Fianarantsoa : Ind Province ; + + fun Countries_RM_provinces_Fianarantsoa_cities_Fianarantsoa : Ind City ; + + fun Countries_RM_provinces_Mahajanga : Ind Province ; + + fun Countries_RM_provinces_Mahajanga_cities_Majunga : Ind City ; + + fun Countries_RM_provinces_Toamasina : Ind Province ; + + fun Countries_RM_provinces_Toamasina_cities_Tamatave : Ind City ; + + fun Countries_RM_provinces_Toliary : Ind Province ; + + fun Countries_RM_provinces_Toliary_cities_Toliary : Ind City ; + + fun Countries_RN_cities_Niamey : Ind City ; + + fun Countries_ROK_cities_Cheju : Ind City ; + + fun Countries_ROK_cities_Chinju : Ind City ; + + fun Countries_ROK_cities_Chongju : Ind City ; + + fun Countries_ROK_cities_Chonju : Ind City ; + + fun Countries_ROK_cities_Chunchon : Ind City ; + + fun Countries_ROK_cities_Inchon : Ind City ; + + fun Countries_ROK_cities_Kunsan : Ind City ; + + fun Countries_ROK_cities_Kwangju : Ind City ; + + fun Countries_ROK_cities_Masan : Ind City ; + + fun Countries_ROK_cities_Mokpo : Ind City ; + + fun Countries_ROK_cities_Pusan : Ind City ; + + fun Countries_ROK_cities_Seoul : Ind City ; + + fun Countries_ROK_cities_Songnam : Ind City ; + + fun Countries_ROK_cities_Suwon : Ind City ; + + fun Countries_ROK_cities_Taegu : Ind City ; + + fun Countries_ROK_cities_Taejon : Ind City ; + + fun Countries_ROK_cities_Ulsan : Ind City ; + + fun Countries_ROK_cities_Yosu : Ind City ; + + fun Countries_ROU_cities_Montevideo : Ind City ; + + fun Countries_RO_provinces_Alba : Ind Province ; + + fun Countries_RO_provinces_Alba_cities_AlbaIulia : Ind City ; + + fun Countries_RO_provinces_Arad : Ind Province ; + + fun Countries_RO_provinces_Arad_cities_Arad : Ind City ; + + fun Countries_RO_provinces_Arges : Ind Province ; + + fun Countries_RO_provinces_Arges_cities_Pitesti : Ind City ; + + fun Countries_RO_provinces_Bacau : Ind Province ; + + fun Countries_RO_provinces_Bacau_cities_Bacau : Ind City ; + + fun Countries_RO_provinces_Bihor : Ind Province ; + + fun Countries_RO_provinces_Bihor_cities_Oradea : Ind City ; + + fun Countries_RO_provinces_BistritaNasaud : Ind Province ; + + fun Countries_RO_provinces_BistritaNasaud_cities_Bistrita : Ind City ; + + fun Countries_RO_provinces_Botosani : Ind Province ; + + fun Countries_RO_provinces_Botosani_cities_Botosani : Ind City ; + + fun Countries_RO_provinces_Braila : Ind Province ; + + fun Countries_RO_provinces_Braila_cities_Braila : Ind City ; + + fun Countries_RO_provinces_Brasov : Ind Province ; + + fun Countries_RO_provinces_Brasov_cities_Brasov : Ind City ; + + fun Countries_RO_provinces_Bucuresti : Ind Province ; + + fun Countries_RO_provinces_Bucuresti_cities_Bucharest : Ind City ; + + fun Countries_RO_provinces_Buzau : Ind Province ; + + fun Countries_RO_provinces_Buzau_cities_Buzau : Ind City ; + + fun Countries_RO_provinces_Calarasi : Ind Province ; + + fun Countries_RO_provinces_Calarasi_cities_Calarasi : Ind City ; + + fun Countries_RO_provinces_CarasSeverin : Ind Province ; + + fun Countries_RO_provinces_CarasSeverin_cities_Resita : Ind City ; + + fun Countries_RO_provinces_Cluj : Ind Province ; + + fun Countries_RO_provinces_Cluj_cities_ClujNapoca : Ind City ; + + fun Countries_RO_provinces_Constanta : Ind Province ; + + fun Countries_RO_provinces_Constanta_cities_Constanta : Ind City ; + + fun Countries_RO_provinces_Covasha : Ind Province ; + + fun Countries_RO_provinces_Covasha_cities_SfintuGheorghe : Ind City ; + + fun Countries_RO_provinces_Dimbovita : Ind Province ; + + fun Countries_RO_provinces_Dimbovita_cities_Tirgoviste : Ind City ; + + fun Countries_RO_provinces_Dolj : Ind Province ; + + fun Countries_RO_provinces_Dolj_cities_Craiova : Ind City ; + + fun Countries_RO_provinces_Galati : Ind Province ; + + fun Countries_RO_provinces_Galati_cities_Galati : Ind City ; + + fun Countries_RO_provinces_Giurgiu : Ind Province ; + + fun Countries_RO_provinces_Giurgiu_cities_Giurgiu : Ind City ; + + fun Countries_RO_provinces_Gorj : Ind Province ; + + fun Countries_RO_provinces_Gorj_cities_TirguJiu : Ind City ; + + fun Countries_RO_provinces_Harghita : Ind Province ; + + fun Countries_RO_provinces_Harghita_cities_MiercureaCiuc : Ind City ; + + fun Countries_RO_provinces_Hunedoara : Ind Province ; + + fun Countries_RO_provinces_Hunedoara_cities_Deva : Ind City ; + + fun Countries_RO_provinces_Ialomita : Ind Province ; + + fun Countries_RO_provinces_Ialomita_cities_Slobozia : Ind City ; + + fun Countries_RO_provinces_Iasi : Ind Province ; + + fun Countries_RO_provinces_Iasi_cities_Iasi : Ind City ; + + fun Countries_RO_provinces_Maramures : Ind Province ; + + fun Countries_RO_provinces_Maramures_cities_BaiaMare : Ind City ; + + fun Countries_RO_provinces_Mehedinti : Ind Province ; + + fun Countries_RO_provinces_Mehedinti_cities_DrobetaTurnuSeverin : Ind City ; + + fun Countries_RO_provinces_Mures : Ind Province ; + + fun Countries_RO_provinces_Mures_cities_TirguMures : Ind City ; + + fun Countries_RO_provinces_Neamt : Ind Province ; + + fun Countries_RO_provinces_Neamt_cities_PiatraNeamt : Ind City ; + + fun Countries_RO_provinces_Olt : Ind Province ; + + fun Countries_RO_provinces_Olt_cities_Slatina : Ind City ; + + fun Countries_RO_provinces_Prahova : Ind Province ; + + fun Countries_RO_provinces_Prahova_cities_Ploiesti : Ind City ; + + fun Countries_RO_provinces_Salaj : Ind Province ; + + fun Countries_RO_provinces_Salaj_cities_Zalau : Ind City ; + + fun Countries_RO_provinces_SatuMare : Ind Province ; + + fun Countries_RO_provinces_SatuMare_cities_SatuMare : Ind City ; + + fun Countries_RO_provinces_Sibiu : Ind Province ; + + fun Countries_RO_provinces_Sibiu_cities_Sibiu : Ind City ; + + fun Countries_RO_provinces_Suceava : Ind Province ; + + fun Countries_RO_provinces_Suceava_cities_Suceava : Ind City ; + + fun Countries_RO_provinces_Teleorman : Ind Province ; + + fun Countries_RO_provinces_Teleorman_cities_Alexandria : Ind City ; + + fun Countries_RO_provinces_Timis : Ind Province ; + + fun Countries_RO_provinces_Timis_cities_Timisoara : Ind City ; + + fun Countries_RO_provinces_Tulcea : Ind Province ; + + fun Countries_RO_provinces_Tulcea_cities_Tulcea : Ind City ; + + fun Countries_RO_provinces_Vaslui : Ind Province ; + + fun Countries_RO_provinces_Vaslui_cities_Vaslui : Ind City ; + + fun Countries_RO_provinces_Vilcea : Ind Province ; + + fun Countries_RO_provinces_Vilcea_cities_RimnicuVilcea : Ind City ; + + fun Countries_RO_provinces_Vrancea : Ind Province ; + + fun Countries_RO_provinces_Vrancea_cities_Focsani : Ind City ; + + fun Countries_RP_cities_CagayandeOro : Ind City ; + + fun Countries_RP_cities_Cebu : Ind City ; + + fun Countries_RP_cities_Davao : Ind City ; + + fun Countries_RP_cities_Kalookan : Ind City ; + + fun Countries_RP_cities_Makati : Ind City ; + + fun Countries_RP_cities_Manila : Ind City ; + + fun Countries_RP_cities_Pasay : Ind City ; + + fun Countries_RP_cities_Pasig : Ind City ; + + fun Countries_RP_cities_Quezon : Ind City ; + + fun Countries_RP_cities_Zamboanga : Ind City ; + + fun Countries_RSA_cities_Alexandra : Ind City ; + + fun Countries_RSA_cities_Benoni : Ind City ; + + fun Countries_RSA_cities_Boksburg : Ind City ; + + fun Countries_RSA_cities_Carletonville : Ind City ; + + fun Countries_RSA_cities_Daveyton : Ind City ; + + fun Countries_RSA_cities_Diepmeadow : Ind City ; + + fun Countries_RSA_cities_Evaton : Ind City ; + + fun Countries_RSA_cities_Germiston : Ind City ; + + fun Countries_RSA_cities_Ibhayi : Ind City ; + + fun Countries_RSA_cities_Katlehong : Ind City ; + + fun Countries_RSA_cities_KemptonPark : Ind City ; + + fun Countries_RSA_cities_Khayalitsha : Ind City ; + + fun Countries_RSA_cities_Lekoa : Ind City ; + + fun Countries_RSA_cities_Mamelodi : Ind City ; + + fun Countries_RSA_cities_Mangaung : Ind City ; + + fun Countries_RSA_cities_Roodepoort : Ind City ; + + fun Countries_RSA_cities_Sandton : Ind City ; + + fun Countries_RSA_cities_Soshanguve : Ind City ; + + fun Countries_RSA_cities_Tembisa : Ind City ; + + fun Countries_RSA_provinces_EasternCape : Ind Province ; + + fun Countries_RSA_provinces_EasternCape_cities_EastLondon : Ind City ; + + fun Countries_RSA_provinces_EasternCape_cities_KingWilliamsTown : Ind City ; + + fun Countries_RSA_provinces_EasternCape_cities_PortElizabeth : Ind City ; + + fun Countries_RSA_provinces_FreeState : Ind Province ; + + fun Countries_RSA_provinces_FreeState_cities_Bloemfontein : Ind City ; + + fun Countries_RSA_provinces_Gauteng : Ind Province ; + + fun Countries_RSA_provinces_Gauteng_cities_Johannesburg : Ind City ; + + fun Countries_RSA_provinces_Gauteng_cities_Pretoria : Ind City ; + + fun Countries_RSA_provinces_Gauteng_cities_Soweto : Ind City ; + + fun Countries_RSA_provinces_KwazuluNatal : Ind Province ; + + fun Countries_RSA_provinces_KwazuluNatal_cities_Durban : Ind City ; + + fun Countries_RSA_provinces_KwazuluNatal_cities_Pietermaritzburg : Ind City ; + + fun Countries_RSA_provinces_Mpumalanga : Ind Province ; + + fun Countries_RSA_provinces_Mpumalanga_cities_Nelspruit : Ind City ; + + fun Countries_RSA_provinces_NorthWest : Ind Province ; + + fun Countries_RSA_provinces_NorthWest_cities_Mmabatho : Ind City ; + + fun Countries_RSA_provinces_NorthernCape : Ind Province ; + + fun Countries_RSA_provinces_NorthernCape_cities_Kimberley : Ind City ; + + fun Countries_RSA_provinces_NorthernProvince : Ind Province ; + + fun Countries_RSA_provinces_NorthernProvince_cities_Pietersburg : Ind City ; + + fun Countries_RSA_provinces_WesternCape : Ind Province ; + + fun Countries_RSA_provinces_WesternCape_cities_CapeTown : Ind City ; + + fun Countries_RSM_cities_SanMarino : Ind City ; + + fun Countries_RT_cities_Lome : Ind City ; + + fun Countries_RWA_cities_Kigali : Ind City ; + + fun Countries_R_cities_Seversk : Ind City ; + + fun Countries_R_cities_Zagorsk : Ind City ; + + fun Countries_R_provinces_Altayskiykray : Ind Province ; + + fun Countries_R_provinces_Altayskiykray_cities_Barnaul : Ind City ; + + fun Countries_R_provinces_Altayskiykray_cities_Biysk : Ind City ; + + fun Countries_R_provinces_Altayskiykray_cities_Rubtsovsk : Ind City ; + + fun Countries_R_provinces_Amurskayaoblast : Ind Province ; + + fun Countries_R_provinces_Amurskayaoblast_cities_Blagoveshchensk : Ind City ; + + fun Countries_R_provinces_Arkhangelskayaoblast : Ind Province ; + + fun Countries_R_provinces_Arkhangelskayaoblast_cities_Arkhangelsk : Ind City ; + + fun Countries_R_provinces_Arkhangelskayaoblast_cities_Severodvinsk : Ind City ; + + fun Countries_R_provinces_Astrakhanskayaoblast : Ind Province ; + + fun Countries_R_provinces_Astrakhanskayaoblast_cities_Astrakhan : Ind City ; + + fun Countries_R_provinces_Belgorodskayaoblast : Ind Province ; + + fun Countries_R_provinces_Belgorodskayaoblast_cities_Belgorod : Ind City ; + + fun Countries_R_provinces_Belgorodskayaoblast_cities_StaryOskol : Ind City ; + + fun Countries_R_provinces_Bryanskayaoblast : Ind Province ; + + fun Countries_R_provinces_Bryanskayaoblast_cities_Bryansk : Ind City ; + + fun Countries_R_provinces_ChechenRep_ : Ind Province ; + + fun Countries_R_provinces_ChechenRep__cities_Grozny : Ind City ; + + fun Countries_R_provinces_Chelyabinskayaoblast : Ind Province ; + + fun Countries_R_provinces_Chelyabinskayaoblast_cities_Chelyabinsk : Ind City ; + + fun Countries_R_provinces_Chelyabinskayaoblast_cities_Magnitogorsk : Ind City ; + + fun Countries_R_provinces_Chelyabinskayaoblast_cities_Miass : Ind City ; + + fun Countries_R_provinces_Chelyabinskayaoblast_cities_Zlatoust : Ind City ; + + fun Countries_R_provinces_Chitinskayaoblast : Ind Province ; + + fun Countries_R_provinces_Chitinskayaoblast_cities_Chita : Ind City ; + + fun Countries_R_provinces_Chukotskyao : Ind Province ; + + fun Countries_R_provinces_Chukotskyao_cities_Anadyr : Ind City ; + + fun Countries_R_provinces_ChuvashRepublic : Ind Province ; + + fun Countries_R_provinces_ChuvashRepublic_cities_Cheboksary : Ind City ; + + fun Countries_R_provinces_ChuvashRepublic_cities_Novocheboksarsk : Ind City ; + + fun Countries_R_provinces_Irkutskayaoblast : Ind Province ; + + fun Countries_R_provinces_Irkutskayaoblast_cities_Angarsk : Ind City ; + + fun Countries_R_provinces_Irkutskayaoblast_cities_Bratsk : Ind City ; + + fun Countries_R_provinces_Irkutskayaoblast_cities_Irkutsk : Ind City ; + + fun Countries_R_provinces_Irkutskayaoblast_cities_UsolyeSibirskoye : Ind City ; + + fun Countries_R_provinces_Irkutskayaoblast_cities_UstIlimsk : Ind City ; + + fun Countries_R_provinces_Ivanovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Ivanovskayaoblast_cities_Ivanovo : Ind City ; + + fun Countries_R_provinces_Ivanovskayaoblast_cities_Kineshma : Ind City ; + + fun Countries_R_provinces_KabardinoBalkarRep_ : Ind Province ; + + fun Countries_R_provinces_KabardinoBalkarRep__cities_Nalchik : Ind City ; + + fun Countries_R_provinces_Kaliningradskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kaliningradskayaoblast_cities_Kaliningrad : Ind City ; + + fun Countries_R_provinces_Kaluzhskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kaluzhskayaoblast_cities_Kaluga : Ind City ; + + fun Countries_R_provinces_Kaluzhskayaoblast_cities_Obninsk : Ind City ; + + fun Countries_R_provinces_Kamchatskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kamchatskayaoblast_cities_PetropavlovskKamchatsky : Ind City ; + + fun Countries_R_provinces_KarachayevoCherkesskRep_ : Ind Province ; + + fun Countries_R_provinces_KarachayevoCherkesskRep__cities_Cherkessk : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_AnzheroSudzhensk : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_Kemerovo : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_Kiselyovsk : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_LeninskKuznetskiy : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_Mezhdurechensk : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_Novokuznetsk : Ind City ; + + fun Countries_R_provinces_Kemerovskayaoblast_cities_Prokopyevsk : Ind City ; + + fun Countries_R_provinces_Khabarovskiykray : Ind Province ; + + fun Countries_R_provinces_Khabarovskiykray_cities_Khabarovsk : Ind City ; + + fun Countries_R_provinces_Khabarovskiykray_cities_KomsomolsknaAmure : Ind City ; + + fun Countries_R_provinces_Kirovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kirovskayaoblast_cities_Kirov : Ind City ; + + fun Countries_R_provinces_Kostromskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kostromskayaoblast_cities_Kostroma : Ind City ; + + fun Countries_R_provinces_Krasnodarskykray : Ind Province ; + + fun Countries_R_provinces_Krasnodarskykray_cities_Armavir : Ind City ; + + fun Countries_R_provinces_Krasnodarskykray_cities_Krasnodar : Ind City ; + + fun Countries_R_provinces_Krasnodarskykray_cities_Novorossiysk : Ind City ; + + fun Countries_R_provinces_Krasnodarskykray_cities_Sochi : Ind City ; + + fun Countries_R_provinces_Krasnoyarskiykray : Ind Province ; + + fun Countries_R_provinces_Krasnoyarskiykray_cities_Achinsk : Ind City ; + + fun Countries_R_provinces_Krasnoyarskiykray_cities_Kansk : Ind City ; + + fun Countries_R_provinces_Krasnoyarskiykray_cities_Krasnoyarsk : Ind City ; + + fun Countries_R_provinces_Krasnoyarskiykray_cities_Norilsk : Ind City ; + + fun Countries_R_provinces_Kurganskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kurganskayaoblast_cities_Kurgan : Ind City ; + + fun Countries_R_provinces_Kurskayaoblast : Ind Province ; + + fun Countries_R_provinces_Kurskayaoblast_cities_Kursk : Ind City ; + + fun Countries_R_provinces_Leningradskayaoblast : Ind Province ; + + fun Countries_R_provinces_Leningradskayaoblast_cities_Kolpino : Ind City ; + + fun Countries_R_provinces_Lipetskayaoblast : Ind Province ; + + fun Countries_R_provinces_Lipetskayaoblast_cities_Lipetsk : Ind City ; + + fun Countries_R_provinces_Lipetskayaoblast_cities_Yelets : Ind City ; + + fun Countries_R_provinces_Magadanskayaoblast : Ind Province ; + + fun Countries_R_provinces_Magadanskayaoblast_cities_Magadan : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Balashikha : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Elektrostal : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Khimki : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Kolomna : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Lyubertsy : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Mytishchi : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Noginsk : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Odintsovo : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_OrekhovoZuyevo : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Podolsk : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Serpukhov : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Shchyolkovo : Ind City ; + + fun Countries_R_provinces_Moskovskayaoblast_cities_Zelenograd : Ind City ; + + fun Countries_R_provinces_Moskva : Ind Province ; + + fun Countries_R_provinces_Moskva_cities_Moscow : Ind City ; + + fun Countries_R_provinces_Murmanskayaoblast : Ind Province ; + + fun Countries_R_provinces_Murmanskayaoblast_cities_Murmansk : Ind City ; + + fun Countries_R_provinces_Nizhegorodskayaoblast : Ind Province ; + + fun Countries_R_provinces_Nizhegorodskayaoblast_cities_Arzamas : Ind City ; + + fun Countries_R_provinces_Nizhegorodskayaoblast_cities_Dzerzhinsk : Ind City ; + + fun Countries_R_provinces_Nizhegorodskayaoblast_cities_NizhniyNovgorod : Ind City ; + + fun Countries_R_provinces_Novgorodskayaoblast : Ind Province ; + + fun Countries_R_provinces_Novgorodskayaoblast_cities_Novgorod : Ind City ; + + fun Countries_R_provinces_Novosibirskayaoblast : Ind Province ; + + fun Countries_R_provinces_Novosibirskayaoblast_cities_Novosibirsk : Ind City ; + + fun Countries_R_provinces_Omskayaoblast : Ind Province ; + + fun Countries_R_provinces_Omskayaoblast_cities_Omsk : Ind City ; + + fun Countries_R_provinces_Orenburgskayaoblast : Ind Province ; + + fun Countries_R_provinces_Orenburgskayaoblast_cities_Novotroitsk : Ind City ; + + fun Countries_R_provinces_Orenburgskayaoblast_cities_Orenburg : Ind City ; + + fun Countries_R_provinces_Orenburgskayaoblast_cities_Orsk : Ind City ; + + fun Countries_R_provinces_Orlovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Orlovskayaoblast_cities_Orel : Ind City ; + + fun Countries_R_provinces_Penzenskayaoblast : Ind Province ; + + fun Countries_R_provinces_Penzenskayaoblast_cities_Kuznetsk : Ind City ; + + fun Countries_R_provinces_Penzenskayaoblast_cities_Penza : Ind City ; + + fun Countries_R_provinces_Permskayaoblast : Ind Province ; + + fun Countries_R_provinces_Permskayaoblast_cities_Berezniki : Ind City ; + + fun Countries_R_provinces_Permskayaoblast_cities_Perm : Ind City ; + + fun Countries_R_provinces_Permskayaoblast_cities_Solikamsk : Ind City ; + + fun Countries_R_provinces_Primorskykray : Ind Province ; + + fun Countries_R_provinces_Primorskykray_cities_Nakhodka : Ind City ; + + fun Countries_R_provinces_Primorskykray_cities_Ussuriysk : Ind City ; + + fun Countries_R_provinces_Primorskykray_cities_Vladivostok : Ind City ; + + fun Countries_R_provinces_Pskovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Pskovskayaoblast_cities_Pskov : Ind City ; + + fun Countries_R_provinces_Pskovskayaoblast_cities_VelikiyeLuki : Ind City ; + + fun Countries_R_provinces_Rep_ofAdygeya : Ind Province ; + + fun Countries_R_provinces_Rep_ofAdygeya_cities_Maykop : Ind City ; + + fun Countries_R_provinces_Rep_ofAltay : Ind Province ; + + fun Countries_R_provinces_Rep_ofAltay_cities_GornoAltaysk : Ind City ; + + fun Countries_R_provinces_Rep_ofBashkortostan : Ind Province ; + + fun Countries_R_provinces_Rep_ofBashkortostan_cities_Oktyabrsky : Ind City ; + + fun Countries_R_provinces_Rep_ofBashkortostan_cities_Salavat : Ind City ; + + fun Countries_R_provinces_Rep_ofBashkortostan_cities_Sterlitamak : Ind City ; + + fun Countries_R_provinces_Rep_ofBashkortostan_cities_Ufa : Ind City ; + + fun Countries_R_provinces_Rep_ofBuryatiya : Ind Province ; + + fun Countries_R_provinces_Rep_ofBuryatiya_cities_UlanUde : Ind City ; + + fun Countries_R_provinces_Rep_ofDagestan : Ind Province ; + + fun Countries_R_provinces_Rep_ofDagestan_cities_Makhachkala : Ind City ; + + fun Countries_R_provinces_Rep_ofIngushetiya : Ind Province ; + + fun Countries_R_provinces_Rep_ofIngushetiya_cities_Nazran : Ind City ; + + fun Countries_R_provinces_Rep_ofKalmykiya : Ind Province ; + + fun Countries_R_provinces_Rep_ofKalmykiya_cities_Elista : Ind City ; + + fun Countries_R_provinces_Rep_ofKarelia : Ind Province ; + + fun Countries_R_provinces_Rep_ofKarelia_cities_Petrozavodsk : Ind City ; + + fun Countries_R_provinces_Rep_ofKhakassiya : Ind Province ; + + fun Countries_R_provinces_Rep_ofKhakassiya_cities_Abakan : Ind City ; + + fun Countries_R_provinces_Rep_ofKomi : Ind Province ; + + fun Countries_R_provinces_Rep_ofKomi_cities_Syktyvkar : Ind City ; + + fun Countries_R_provinces_Rep_ofKomi_cities_Ukhta : Ind City ; + + fun Countries_R_provinces_Rep_ofKomi_cities_Vorkuta : Ind City ; + + fun Countries_R_provinces_Rep_ofMariyEl : Ind Province ; + + fun Countries_R_provinces_Rep_ofMariyEl_cities_YoshkarOla : Ind City ; + + fun Countries_R_provinces_Rep_ofMordovia : Ind Province ; + + fun Countries_R_provinces_Rep_ofMordovia_cities_Saransk : Ind City ; + + fun Countries_R_provinces_Rep_ofNorthOssetiya : Ind Province ; + + fun Countries_R_provinces_Rep_ofNorthOssetiya_cities_Vladikavkaz : Ind City ; + + fun Countries_R_provinces_Rep_ofSakha : Ind Province ; + + fun Countries_R_provinces_Rep_ofSakha_cities_Yakutsk : Ind City ; + + fun Countries_R_provinces_Rep_ofTatarstan : Ind Province ; + + fun Countries_R_provinces_Rep_ofTatarstan_cities_Almetyevsk : Ind City ; + + fun Countries_R_provinces_Rep_ofTatarstan_cities_Kazan : Ind City ; + + fun Countries_R_provinces_Rep_ofTatarstan_cities_NaberezhnyeChelny : Ind City ; + + fun Countries_R_provinces_Rep_ofTatarstan_cities_Nizhnekamsk : Ind City ; + + fun Countries_R_provinces_Rep_ofTatarstan_cities_Zelenodolysk : Ind City ; + + fun Countries_R_provinces_Rep_ofTyva : Ind Province ; + + fun Countries_R_provinces_Rep_ofTyva_cities_Kyzyl : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_Novocherkassk : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_Novoshakhtinsk : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_RostovnaDonu : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_RostovnoDonu : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_Shakhty : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_Taganrog : Ind City ; + + fun Countries_R_provinces_Rostovskayaoblast_cities_Volgodonsk : Ind City ; + + fun Countries_R_provinces_Ryazanskayaoblast : Ind Province ; + + fun Countries_R_provinces_Ryazanskayaoblast_cities_Ryazan : Ind City ; + + fun Countries_R_provinces_Sakhalinskayaoblast : Ind Province ; + + fun Countries_R_provinces_Sakhalinskayaoblast_cities_YuzhnoSakhalinsk : Ind City ; + + fun Countries_R_provinces_Samarskayaoblast : Ind Province ; + + fun Countries_R_provinces_Samarskayaoblast_cities_Novokuybyshevsk : Ind City ; + + fun Countries_R_provinces_Samarskayaoblast_cities_Samara : Ind City ; + + fun Countries_R_provinces_Samarskayaoblast_cities_Syzran : Ind City ; + + fun Countries_R_provinces_Samarskayaoblast_cities_Tolyatti : Ind City ; + + fun Countries_R_provinces_SanktPeterburg : Ind Province ; + + fun Countries_R_provinces_SanktPeterburg_cities_SanktPeterburg : Ind City ; + + fun Countries_R_provinces_Saratovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Saratovskayaoblast_cities_Balakovo : Ind City ; + + fun Countries_R_provinces_Saratovskayaoblast_cities_Engels : Ind City ; + + fun Countries_R_provinces_Saratovskayaoblast_cities_Saratov : Ind City ; + + fun Countries_R_provinces_Smolenskayaoblast : Ind Province ; + + fun Countries_R_provinces_Smolenskayaoblast_cities_Smolensk : Ind City ; + + fun Countries_R_provinces_Stavropolskykray : Ind Province ; + + fun Countries_R_provinces_Stavropolskykray_cities_Kislovodsk : Ind City ; + + fun Countries_R_provinces_Stavropolskykray_cities_Neftekamsk : Ind City ; + + fun Countries_R_provinces_Stavropolskykray_cities_Nevinnomyssk : Ind City ; + + fun Countries_R_provinces_Stavropolskykray_cities_Pyatigorsk : Ind City ; + + fun Countries_R_provinces_Stavropolskykray_cities_Stavropol : Ind City ; + + fun Countries_R_provinces_Sverdlovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Sverdlovskayaoblast_cities_KamenskUralskiy : Ind City ; + + fun Countries_R_provinces_Sverdlovskayaoblast_cities_NizhniyTagil : Ind City ; + + fun Countries_R_provinces_Sverdlovskayaoblast_cities_Pervouralsk : Ind City ; + + fun Countries_R_provinces_Sverdlovskayaoblast_cities_Serov : Ind City ; + + fun Countries_R_provinces_Sverdlovskayaoblast_cities_Yekaterinburg : Ind City ; + + fun Countries_R_provinces_Tambovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Tambovskayaoblast_cities_Michurinsk : Ind City ; + + fun Countries_R_provinces_Tambovskayaoblast_cities_Tambov : Ind City ; + + fun Countries_R_provinces_Tomskayaoblast : Ind Province ; + + fun Countries_R_provinces_Tomskayaoblast_cities_Tomsk : Ind City ; + + fun Countries_R_provinces_Tulskayaoblast : Ind Province ; + + fun Countries_R_provinces_Tulskayaoblast_cities_Novomoskovsk : Ind City ; + + fun Countries_R_provinces_Tulskayaoblast_cities_Tula : Ind City ; + + fun Countries_R_provinces_Tverskayaoblast : Ind Province ; + + fun Countries_R_provinces_Tverskayaoblast_cities_Tver : Ind City ; + + fun Countries_R_provinces_Tyumenskayaoblast : Ind Province ; + + fun Countries_R_provinces_Tyumenskayaoblast_cities_Nizhnevartovsk : Ind City ; + + fun Countries_R_provinces_Tyumenskayaoblast_cities_Surgut : Ind City ; + + fun Countries_R_provinces_Tyumenskayaoblast_cities_Tyumen : Ind City ; + + fun Countries_R_provinces_UdmurtRepublic : Ind Province ; + + fun Countries_R_provinces_UdmurtRepublic_cities_Glazov : Ind City ; + + fun Countries_R_provinces_UdmurtRepublic_cities_Izhevsk : Ind City ; + + fun Countries_R_provinces_UdmurtRepublic_cities_Sarapul : Ind City ; + + fun Countries_R_provinces_UdmurtRepublic_cities_Votkinsk : Ind City ; + + fun Countries_R_provinces_Ulyanovskayaoblast : Ind Province ; + + fun Countries_R_provinces_Ulyanovskayaoblast_cities_Dimitrovgrad : Ind City ; + + fun Countries_R_provinces_Ulyanovskayaoblast_cities_Simbirsk : Ind City ; + + fun Countries_R_provinces_Vladimirskayaoblast : Ind Province ; + + fun Countries_R_provinces_Vladimirskayaoblast_cities_Kovrov : Ind City ; + + fun Countries_R_provinces_Vladimirskayaoblast_cities_Murom : Ind City ; + + fun Countries_R_provinces_Vladimirskayaoblast_cities_Vladimir : Ind City ; + + fun Countries_R_provinces_Volgogradskayaoblast : Ind Province ; + + fun Countries_R_provinces_Volgogradskayaoblast_cities_Kamyshin : Ind City ; + + fun Countries_R_provinces_Volgogradskayaoblast_cities_Volgograd : Ind City ; + + fun Countries_R_provinces_Volgogradskayaoblast_cities_Volzhsky : Ind City ; + + fun Countries_R_provinces_Vologodskayaoblast : Ind Province ; + + fun Countries_R_provinces_Vologodskayaoblast_cities_Cherepovets : Ind City ; + + fun Countries_R_provinces_Vologodskayaoblast_cities_Vologda : Ind City ; + + fun Countries_R_provinces_Voronezhskayaoblast : Ind Province ; + + fun Countries_R_provinces_Voronezhskayaoblast_cities_Voronezh : Ind City ; + + fun Countries_R_provinces_Yaroslavskayaoblast : Ind Province ; + + fun Countries_R_provinces_Yaroslavskayaoblast_cities_Rybinsk : Ind City ; + + fun Countries_R_provinces_Yaroslavskayaoblast_cities_Yaroslavl : Ind City ; + + fun Countries_R_provinces_Yevreyskayaavt_oblast : Ind Province ; + + fun Countries_R_provinces_Yevreyskayaavt_oblast_cities_Birobidzhan : Ind City ; + + fun Countries_SA_cities_Jeddah : Ind City ; + + fun Countries_SA_cities_Riyadh : Ind City ; + + fun Countries_SD_cities_Mbabane : Ind City ; + + fun Countries_SF_provinces_Aland : Ind Province ; + + fun Countries_SF_provinces_Aland_cities_Mariehamn : Ind City ; + + fun Countries_SF_provinces_Haeme : Ind Province ; + + fun Countries_SF_provinces_Haeme_cities_Haemeenlinna : Ind City ; + + fun Countries_SF_provinces_Haeme_cities_Lahti : Ind City ; + + fun Countries_SF_provinces_Haeme_cities_Tampere : Ind City ; + + fun Countries_SF_provinces_Kuopio : Ind Province ; + + fun Countries_SF_provinces_Kuopio_cities_Kuopio : Ind City ; + + fun Countries_SF_provinces_Kymi : Ind Province ; + + fun Countries_SF_provinces_Kymi_cities_Kotka : Ind City ; + + fun Countries_SF_provinces_Kymi_cities_Lappeenrenta : Ind City ; + + fun Countries_SF_provinces_Lappia : Ind Province ; + + fun Countries_SF_provinces_Lappia_cities_Rovaniemi : Ind City ; + + fun Countries_SF_provinces_Mikkeli : Ind Province ; + + fun Countries_SF_provinces_Mikkeli_cities_Mikkeli : Ind City ; + + fun Countries_SF_provinces_Oulu : Ind Province ; + + fun Countries_SF_provinces_Oulu_cities_Oulu : Ind City ; + + fun Countries_SF_provinces_Pohjols_Karjala : Ind Province ; + + fun Countries_SF_provinces_Pohjols_Karjala_cities_Joensuu : Ind City ; + + fun Countries_SF_provinces_Suomi : Ind Province ; + + fun Countries_SF_provinces_Suomi_cities_Jyvaeskylae : Ind City ; + + fun Countries_SF_provinces_Turku_Pori : Ind Province ; + + fun Countries_SF_provinces_Turku_Pori_cities_Pori : Ind City ; + + fun Countries_SF_provinces_Turku_Pori_cities_Turku : Ind City ; + + fun Countries_SF_provinces_Uusimaa : Ind Province ; + + fun Countries_SF_provinces_Uusimaa_cities_Espoo : Ind City ; + + fun Countries_SF_provinces_Uusimaa_cities_Helsinki : Ind City ; + + fun Countries_SF_provinces_Vaasa : Ind Province ; + + fun Countries_SF_provinces_Vaasa_cities_Vaasa : Ind City ; + + fun Countries_SGP_cities_Singapore : Ind City ; + + fun Countries_SK_cities_Bratislava : Ind City ; + + fun Countries_SLB_cities_Honiara : Ind City ; + + fun Countries_SLO_cities_Ljubljana : Ind City ; + + fun Countries_SME_cities_Paramaribo : Ind City ; + + fun Countries_SN_provinces_Dakar : Ind Province ; + + fun Countries_SN_provinces_Dakar_cities_Dakar : Ind City ; + + fun Countries_SN_provinces_Diourbel : Ind Province ; + + fun Countries_SN_provinces_Diourbel_cities_Diourbel : Ind City ; + + fun Countries_SN_provinces_Fatick : Ind Province ; + + fun Countries_SN_provinces_Fatick_cities_Fatick : Ind City ; + + fun Countries_SN_provinces_Kaolack : Ind Province ; + + fun Countries_SN_provinces_Kaolack_cities_Kaolack : Ind City ; + + fun Countries_SN_provinces_Kolda : Ind Province ; + + fun Countries_SN_provinces_Kolda_cities_Kolda : Ind City ; + + fun Countries_SN_provinces_Louga : Ind Province ; + + fun Countries_SN_provinces_Louga_cities_Louga : Ind City ; + + fun Countries_SN_provinces_SaintLouis : Ind Province ; + + fun Countries_SN_provinces_SaintLouis_cities_SaintLouis : Ind City ; + + fun Countries_SN_provinces_Tambacounda : Ind Province ; + + fun Countries_SN_provinces_Tambacounda_cities_Tambacounda : Ind City ; + + fun Countries_SN_provinces_Thies : Ind Province ; + + fun Countries_SN_provinces_Thies_cities_Thies : Ind City ; + + fun Countries_SN_provinces_Ziguinchor : Ind Province ; + + fun Countries_SN_provinces_Ziguinchor_cities_Ziguinchor : Ind City ; + + fun Countries_SP_cities_Mogadishu : Ind City ; + + fun Countries_STP_cities_SaoTome : Ind City ; + + fun Countries_SUD_provinces_AalianNil : Ind Province ; + + fun Countries_SUD_provinces_AalianNil_cities_Malakal : Ind City ; + + fun Countries_SUD_provinces_BahralGhazal : Ind Province ; + + fun Countries_SUD_provinces_BahralGhazal_cities_Waw : Ind City ; + + fun Countries_SUD_provinces_Darfur : Ind Province ; + + fun Countries_SUD_provinces_Darfur_cities_Nyala : Ind City ; + + fun Countries_SUD_provinces_Darfur_cities_alFasher : Ind City ; + + fun Countries_SUD_provinces_Kurdufan : Ind Province ; + + fun Countries_SUD_provinces_Kurdufan_cities_alUbayyid : Ind City ; + + fun Countries_SUD_provinces_alIstiwaiyah : Ind Province ; + + fun Countries_SUD_provinces_alIstiwaiyah_cities_Juba : Ind City ; + + fun Countries_SUD_provinces_alKhartum : Ind Province ; + + fun Countries_SUD_provinces_alKhartum_cities_Khartoum : Ind City ; + + fun Countries_SUD_provinces_alKhartum_cities_KhartoumNorth : Ind City ; + + fun Countries_SUD_provinces_alKhartum_cities_Omdurman : Ind City ; + + fun Countries_SUD_provinces_alWusta : Ind Province ; + + fun Countries_SUD_provinces_alWusta_cities_WadMadani : Ind City ; + + fun Countries_SUD_provinces_ashShamaliyah : Ind Province ; + + fun Countries_SUD_provinces_ashShamaliyah_cities_adDamir : Ind City ; + + fun Countries_SUD_provinces_ashSharqiyah : Ind Province ; + + fun Countries_SUD_provinces_ashSharqiyah_cities_Kassala : Ind City ; + + fun Countries_SUD_provinces_ashSharqiyah_cities_PortSudan : Ind City ; + + fun Countries_SUD_provinces_ashSharqiyah_cities_alQadarif : Ind City ; + + fun Countries_SYR_cities_Aleppo : Ind City ; + + fun Countries_SYR_cities_Damascus : Ind City ; + + fun Countries_SYR_cities_Homs : Ind City ; + + fun Countries_SY_cities_Victoria : Ind City ; + + fun Countries_S_provinces_Alvsborg : Ind Province ; + + fun Countries_S_provinces_Alvsborg_cities_Vanersborg : Ind City ; + + fun Countries_S_provinces_Blekinge : Ind Province ; + + fun Countries_S_provinces_Blekinge_cities_Karlskrona : Ind City ; + + fun Countries_S_provinces_Gavleborg : Ind Province ; + + fun Countries_S_provinces_Gavleborg_cities_Gavle : Ind City ; + + fun Countries_S_provinces_GoteborgochBohus : Ind Province ; + + fun Countries_S_provinces_GoteborgochBohus_cities_Goteborg : Ind City ; + + fun Countries_S_provinces_Gotland : Ind Province ; + + fun Countries_S_provinces_Gotland_cities_Visby : Ind City ; + + fun Countries_S_provinces_Halland : Ind Province ; + + fun Countries_S_provinces_Halland_cities_Halmstad : Ind City ; + + fun Countries_S_provinces_Jamtland : Ind Province ; + + fun Countries_S_provinces_Jamtland_cities_Ostersund : Ind City ; + + fun Countries_S_provinces_Jonkoping : Ind Province ; + + fun Countries_S_provinces_Jonkoping_cities_Jonkoping : Ind City ; + + fun Countries_S_provinces_Kalmar : Ind Province ; + + fun Countries_S_provinces_Kalmar_cities_Kalmar : Ind City ; + + fun Countries_S_provinces_Kopparberg : Ind Province ; + + fun Countries_S_provinces_Kopparberg_cities_Falun : Ind City ; + + fun Countries_S_provinces_Kristianstad : Ind Province ; + + fun Countries_S_provinces_Kristianstad_cities_Kristianstad : Ind City ; + + fun Countries_S_provinces_Kronoberg : Ind Province ; + + fun Countries_S_provinces_Kronoberg_cities_Vaxjo : Ind City ; + + fun Countries_S_provinces_Malmohus : Ind Province ; + + fun Countries_S_provinces_Malmohus_cities_Helsingborg : Ind City ; + + fun Countries_S_provinces_Malmohus_cities_Malmo : Ind City ; + + fun Countries_S_provinces_Norrbotten : Ind Province ; + + fun Countries_S_provinces_Norrbotten_cities_Jokkmokk : Ind City ; + + fun Countries_S_provinces_Norrbotten_cities_Lulea : Ind City ; + + fun Countries_S_provinces_Orebro : Ind Province ; + + fun Countries_S_provinces_Orebro_cities_Orebro : Ind City ; + + fun Countries_S_provinces_Ostergotland : Ind Province ; + + fun Countries_S_provinces_Ostergotland_cities_Linkoping : Ind City ; + + fun Countries_S_provinces_Ostergotland_cities_Norrkoping : Ind City ; + + fun Countries_S_provinces_Skaraborg : Ind Province ; + + fun Countries_S_provinces_Skaraborg_cities_Mariestad : Ind City ; + + fun Countries_S_provinces_Sodermanland : Ind Province ; + + fun Countries_S_provinces_Sodermanland_cities_Nykoping : Ind City ; + + fun Countries_S_provinces_Stockholm : Ind Province ; + + fun Countries_S_provinces_Stockholm_cities_Stockholm : Ind City ; + + fun Countries_S_provinces_Uppsala : Ind Province ; + + fun Countries_S_provinces_Uppsala_cities_Uppsala : Ind City ; + + fun Countries_S_provinces_Varmland : Ind Province ; + + fun Countries_S_provinces_Varmland_cities_Karlstad : Ind City ; + + fun Countries_S_provinces_Vasterbotten : Ind Province ; + + fun Countries_S_provinces_Vasterbotten_cities_Umea : Ind City ; + + fun Countries_S_provinces_Vasternorrland : Ind Province ; + + fun Countries_S_provinces_Vasternorrland_cities_Harnosand : Ind City ; + + fun Countries_S_provinces_Vastmanland : Ind Province ; + + fun Countries_S_provinces_Vastmanland_cities_Vasteras : Ind City ; + + fun Countries_TAD_provinces_BadakhshoniKuni : Ind Province ; + + fun Countries_TAD_provinces_BadakhshoniKuni_cities_Khorugh : Ind City ; + + fun Countries_TAD_provinces_Dushanbe_munic : Ind Province ; + + fun Countries_TAD_provinces_Dushanbe_munic_cities_Dushanbe : Ind City ; + + fun Countries_TAD_provinces_Khatlon : Ind Province ; + + fun Countries_TAD_provinces_Khatlon_cities_Qurghonteppa : Ind City ; + + fun Countries_TAD_provinces_Kulob : Ind Province ; + + fun Countries_TAD_provinces_Kulob_cities_Kulob : Ind City ; + + fun Countries_TAD_provinces_Leninobod : Ind Province ; + + fun Countries_TAD_provinces_Leninobod_cities_Khujand : Ind City ; + + fun Countries_TCH_cities_NDjamena : Ind City ; + + fun Countries_THA_provinces_AmnatCharoen : Ind Province ; + + fun Countries_THA_provinces_AngThong : Ind Province ; + + fun Countries_THA_provinces_BangkokMetropolis : Ind Province ; + + fun Countries_THA_provinces_BangkokMetropolis_cities_Bangkok : Ind City ; + + fun Countries_THA_provinces_BuriRam : Ind Province ; + + fun Countries_THA_provinces_CentralRegion : Ind Province ; + + fun Countries_THA_provinces_Chachoengsao : Ind Province ; + + fun Countries_THA_provinces_ChaiNat : Ind Province ; + + fun Countries_THA_provinces_Chaiyaphum : Ind Province ; + + fun Countries_THA_provinces_Chanthaburi : Ind Province ; + + fun Countries_THA_provinces_ChiangMai : Ind Province ; + + fun Countries_THA_provinces_ChiangMai_cities_ChiangMai : Ind City ; + + fun Countries_THA_provinces_ChiangRai : Ind Province ; + + fun Countries_THA_provinces_ChonBuri : Ind Province ; + + fun Countries_THA_provinces_Chumphon : Ind Province ; + + fun Countries_THA_provinces_Kalasin : Ind Province ; + + fun Countries_THA_provinces_KamphaengPhet : Ind Province ; + + fun Countries_THA_provinces_Kanchanaburi : Ind Province ; + + fun Countries_THA_provinces_KhonKaen : Ind Province ; + + fun Countries_THA_provinces_KhonKaen_cities_KhonKaen : Ind City ; + + fun Countries_THA_provinces_Krabi : Ind Province ; + + fun Countries_THA_provinces_Lampang : Ind Province ; + + fun Countries_THA_provinces_Lamphun : Ind Province ; + + fun Countries_THA_provinces_Loei : Ind Province ; + + fun Countries_THA_provinces_LopBuri : Ind Province ; + + fun Countries_THA_provinces_MaeHongSon : Ind Province ; + + fun Countries_THA_provinces_MahaSarakham : Ind Province ; + + fun Countries_THA_provinces_Mukdahan : Ind Province ; + + fun Countries_THA_provinces_NakhonNayok : Ind Province ; + + fun Countries_THA_provinces_NakhonPathom : Ind Province ; + + fun Countries_THA_provinces_NakhonPhanom : Ind Province ; + + fun Countries_THA_provinces_NakhonRatchasima : Ind Province ; + + fun Countries_THA_provinces_NakhonRatchasima_cities_NakhonRatchasima : Ind City ; + + fun Countries_THA_provinces_NakhonSawan : Ind Province ; + + fun Countries_THA_provinces_NakhonSawan_cities_NakhonSawan : Ind City ; + + fun Countries_THA_provinces_NakhonSiThammarat : Ind Province ; + + fun Countries_THA_provinces_NakhonSiThammarat_cities_NakhonsiThammarat : Ind City ; + + fun Countries_THA_provinces_Nan : Ind Province ; + + fun Countries_THA_provinces_Narathiwat : Ind Province ; + + fun Countries_THA_provinces_NongBuaLamPhu : Ind Province ; + + fun Countries_THA_provinces_NongKhai : Ind Province ; + + fun Countries_THA_provinces_Nonthaburi : Ind Province ; + + fun Countries_THA_provinces_Nonthaburi_cities_Nonthaburi : Ind City ; + + fun Countries_THA_provinces_NortheasternRegion : Ind Province ; + + fun Countries_THA_provinces_NorthernRegion : Ind Province ; + + fun Countries_THA_provinces_PathumThani : Ind Province ; + + fun Countries_THA_provinces_Pattani : Ind Province ; + + fun Countries_THA_provinces_Petchanbun : Ind Province ; + + fun Countries_THA_provinces_Phangnga : Ind Province ; + + fun Countries_THA_provinces_Phatthalung : Ind Province ; + + fun Countries_THA_provinces_Phayao : Ind Province ; + + fun Countries_THA_provinces_Phetchaburi : Ind Province ; + + fun Countries_THA_provinces_Phichit : Ind Province ; + + fun Countries_THA_provinces_Phitsanulok : Ind Province ; + + fun Countries_THA_provinces_PhraNakhonSiAyutthaya : Ind Province ; + + fun Countries_THA_provinces_Phrae : Ind Province ; + + fun Countries_THA_provinces_Phuket : Ind Province ; + + fun Countries_THA_provinces_PrachinBuri : Ind Province ; + + fun Countries_THA_provinces_PrachuapKhiriKhan : Ind Province ; + + fun Countries_THA_provinces_Ranong : Ind Province ; + + fun Countries_THA_provinces_Ratchaburi : Ind Province ; + + fun Countries_THA_provinces_Rayong : Ind Province ; + + fun Countries_THA_provinces_RoiEt : Ind Province ; + + fun Countries_THA_provinces_SaKaeo : Ind Province ; + + fun Countries_THA_provinces_SakonNakhon : Ind Province ; + + fun Countries_THA_provinces_SamutPrakan : Ind Province ; + + fun Countries_THA_provinces_SamutSakhon : Ind Province ; + + fun Countries_THA_provinces_SamutSongkhram : Ind Province ; + + fun Countries_THA_provinces_Saraburi : Ind Province ; + + fun Countries_THA_provinces_Saraburi_cities_Saraburi : Ind City ; + + fun Countries_THA_provinces_Satun : Ind Province ; + + fun Countries_THA_provinces_SiSaKet : Ind Province ; + + fun Countries_THA_provinces_SingBuri : Ind Province ; + + fun Countries_THA_provinces_Songkhla : Ind Province ; + + fun Countries_THA_provinces_Songkhla_cities_Songkhla : Ind City ; + + fun Countries_THA_provinces_SouthernRegion : Ind Province ; + + fun Countries_THA_provinces_Sukhothai : Ind Province ; + + fun Countries_THA_provinces_SuphanBuri : Ind Province ; + + fun Countries_THA_provinces_SuratThani : Ind Province ; + + fun Countries_THA_provinces_Surin : Ind Province ; + + fun Countries_THA_provinces_Tak : Ind Province ; + + fun Countries_THA_provinces_Trang : Ind Province ; + + fun Countries_THA_provinces_Trat : Ind Province ; + + fun Countries_THA_provinces_UbonRatchathani : Ind Province ; + + fun Countries_THA_provinces_UbonRatchathani_cities_UbonRatchathani : Ind City ; + + fun Countries_THA_provinces_UdonThani : Ind Province ; + + fun Countries_THA_provinces_UthaiThani : Ind Province ; + + fun Countries_THA_provinces_Uttaradit : Ind Province ; + + fun Countries_THA_provinces_Yala : Ind Province ; + + fun Countries_THA_provinces_Yasothon : Ind Province ; + + fun Countries_TJ_cities_HongKong : Ind City ; + + fun Countries_TJ_cities_Macau : Ind City ; + + fun Countries_TJ_provinces_Anhui : Ind Province ; + + fun Countries_TJ_provinces_Anhui_cities_Anqing : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Bengbu : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Chaoxian : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Chuxian : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Fuyang : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Hefei : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Huaibei : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Huainan : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Luan : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Maanshan : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Suzhou : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Tongling : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Wuhu : Ind City ; + + fun Countries_TJ_provinces_Anhui_cities_Xuancheng : Ind City ; + + fun Countries_TJ_provinces_Beijing_munic : Ind Province ; + + fun Countries_TJ_provinces_Beijing_munic_cities_Beijing : Ind City ; + + fun Countries_TJ_provinces_Fujian : Ind Province ; + + fun Countries_TJ_provinces_Fujian_cities_Fuzhou : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Longyan : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Nanping : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Quanzhou : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Sanming : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Xiamen : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Yongan : Ind City ; + + fun Countries_TJ_provinces_Fujian_cities_Zhangzhou : Ind City ; + + fun Countries_TJ_provinces_Gansu : Ind Province ; + + fun Countries_TJ_provinces_Gansu_cities_Baiyin : Ind City ; + + fun Countries_TJ_provinces_Gansu_cities_Lanzhou : Ind City ; + + fun Countries_TJ_provinces_Gansu_cities_Tianshui : Ind City ; + + fun Countries_TJ_provinces_Gansu_cities_Wuwei : Ind City ; + + fun Countries_TJ_provinces_Gansu_cities_Yumen : Ind City ; + + fun Countries_TJ_provinces_Guangdong : Ind Province ; + + fun Countries_TJ_provinces_Guangdong_cities_Chaozhou : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Dongguan : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Foshan : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Guangzhou : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Heyuan : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Huizhou : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Jiangmen : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Maoming : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Meixian : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Shantou : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Shanwei : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Shaoguan : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Shenzhen : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Yangjiang : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Zhanjiang : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Zhaoqing : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Zhongshan : Ind City ; + + fun Countries_TJ_provinces_Guangdong_cities_Zhuhai : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu : Ind Province ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Beihai : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Guilin : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Guixian : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Liuzhou : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Nanning : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Qinzhou : Ind City ; + + fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Wuzhou : Ind City ; + + fun Countries_TJ_provinces_Guizhou : Ind Province ; + + fun Countries_TJ_provinces_Guizhou_cities_Anshun : Ind City ; + + fun Countries_TJ_provinces_Guizhou_cities_Duyun : Ind City ; + + fun Countries_TJ_provinces_Guizhou_cities_Guiyang : Ind City ; + + fun Countries_TJ_provinces_Guizhou_cities_Kaili : Ind City ; + + fun Countries_TJ_provinces_Guizhou_cities_Liupanshui : Ind City ; + + fun Countries_TJ_provinces_Guizhou_cities_Zunyi : Ind City ; + + fun Countries_TJ_provinces_Hainan : Ind Province ; + + fun Countries_TJ_provinces_Hainan_cities_Haikou : Ind City ; + + fun Countries_TJ_provinces_Hainan_cities_Sanya : Ind City ; + + fun Countries_TJ_provinces_Hebei : Ind Province ; + + fun Countries_TJ_provinces_Hebei_cities_Baoding : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Chengde : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Handan : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Hengshui : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Qinhuangdao : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Quzhou : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Renqiu : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Shijiazhuang : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Tangshan : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Xingtai : Ind City ; + + fun Countries_TJ_provinces_Hebei_cities_Zhangjiakou : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang : Ind Province ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Acheng : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Anda : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Beian : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Daqing : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Fuling : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Harbin : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Hegang : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Jiamusi : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Jixi : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Mishan : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Mudanjiang : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Qiqihar : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Qitaihe : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Shangzhi : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Shuangcheng : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Shuangyashan : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Suihua : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Yichun : Ind City ; + + fun Countries_TJ_provinces_Heilongjiang_cities_Zhaodong : Ind City ; + + fun Countries_TJ_provinces_Henan : Ind Province ; + + fun Countries_TJ_provinces_Henan_cities_Anyang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Hebi : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Jiaozuo : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Kaifeng : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Luohe : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Luoyang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Nanyang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Pingdingshan : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Puyang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Sanmenxia : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Shangqiu : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Xinxiang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Xinyang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Xuchang : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Zhengzhou : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Zhoukou : Ind City ; + + fun Countries_TJ_provinces_Henan_cities_Zhumadian : Ind City ; + + fun Countries_TJ_provinces_Hubei : Ind Province ; + + fun Countries_TJ_provinces_Hubei_cities_Cangzhou : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Echeng : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Guangshui : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Honghu : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Huangshi : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Laohekou : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Puqi : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Shashi : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Shishou : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Shiyan : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Tianmen : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Wuhan : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Xiangfan : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Xianning : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Xiaogan : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Yichang : Ind City ; + + fun Countries_TJ_provinces_Hubei_cities_Zaoyang : Ind City ; + + fun Countries_TJ_provinces_Hunan : Ind Province ; + + fun Countries_TJ_provinces_Hunan_cities_Changde : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Changsha : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Hengyang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Huaihua : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Leiyang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Lengshuijiang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Liling : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Loudi : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Shaoyang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Xiangtan : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Yiyang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Yuanjiang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Yueyang : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Zhuzhou : Ind City ; + + fun Countries_TJ_provinces_Hunan_cities_Zixing : Ind City ; + + fun Countries_TJ_provinces_Jiangsu : Ind Province ; + + fun Countries_TJ_provinces_Jiangsu_cities_Changshu : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Changzhou : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Danyang : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Dongtai : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Huaian : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Huaiyin : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Jiangyin : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Kunshan : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Lianyungang : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Liyang : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Nanjing : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Nantong : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Suqian : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Suzhou : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Taizhou : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Wuxi : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Xinghua : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Xuzhou : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Yancheng : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Yangzhou : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Yixing : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Yizheng : Ind City ; + + fun Countries_TJ_provinces_Jiangsu_cities_Zhenjiang : Ind City ; + + fun Countries_TJ_provinces_Jiangxi : Ind Province ; + + fun Countries_TJ_provinces_Jiangxi_cities_Fuzhou : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Ganzhou : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Jingdezhen : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Jiujiang : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Nanchang : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Pingxiang : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Shangrao : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Xinyu : Ind City ; + + fun Countries_TJ_provinces_Jiangxi_cities_Yichun : Ind City ; + + fun Countries_TJ_provinces_Jilin : Ind Province ; + + fun Countries_TJ_provinces_Jilin_cities_Baicheng : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Changchun : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Daan : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Dunhua : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Fuyu : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Gongzhuling : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Huadian : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Hunjiang : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Jilin : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Jiutai : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Liaoyuan : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Longjing : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Meihekou : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Siping : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Tonghua : Ind City ; + + fun Countries_TJ_provinces_Jilin_cities_Yanji : Ind City ; + + fun Countries_TJ_provinces_Liaoning : Ind Province ; + + fun Countries_TJ_provinces_Liaoning_cities_Anshan : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Beipiao : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Benxi : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Chaoyang : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Dalian : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Dandong : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Fengcheng : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Fushun : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Fuxin : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Haicheng : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Jinxi : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Jinzhou : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Liaoyang : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Panshan : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Shenyang : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Tieling : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Wafangdian : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Xingcheng : Ind City ; + + fun Countries_TJ_provinces_Liaoning_cities_Yingkou : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol : Ind Province ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Baotou : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Chifeng : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Hailar : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Hohhot : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Jining : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Linhe : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Manzhouli : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Tongliao : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Ulanhot : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Wuhai : Ind City ; + + fun Countries_TJ_provinces_NeiMonggol_cities_Yakeshi : Ind City ; + + fun Countries_TJ_provinces_NingxiaHuizu : Ind Province ; + + fun Countries_TJ_provinces_NingxiaHuizu_cities_Shizuishan : Ind City ; + + fun Countries_TJ_provinces_NingxiaHuizu_cities_Yinchuan : Ind City ; + + fun Countries_TJ_provinces_Qinghai : Ind Province ; + + fun Countries_TJ_provinces_Qinghai_cities_Xining : Ind City ; + + fun Countries_TJ_provinces_Qinghai_cities_Yushu : Ind City ; + + fun Countries_TJ_provinces_Shaanxi : Ind Province ; + + fun Countries_TJ_provinces_Shaanxi_cities_Ankang : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Baoji : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Hanzhong : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Tongchuan : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Weinan : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Xi : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Xian : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Xianyang : Ind City ; + + fun Countries_TJ_provinces_Shaanxi_cities_Yanan : Ind City ; + + fun Countries_TJ_provinces_Shandong : Ind Province ; + + fun Countries_TJ_provinces_Shandong_cities_Dezhou : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Dongying : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Heze : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Jiaonan : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Jiaoxian : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Jinan : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Jining : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Laiwu : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Laiyang : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Liancheng : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Liaocheng : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Linqing : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Linyi : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Longkou : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Pingdu : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Qingdao : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Rizhao : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Taian : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Tengxian : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Weifang : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Weihai : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Wendeng : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Xintai : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Yantai : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Zaozhuang : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Zhucheng : Ind City ; + + fun Countries_TJ_provinces_Shandong_cities_Zibo : Ind City ; + + fun Countries_TJ_provinces_Shanghai_munic : Ind Province ; + + fun Countries_TJ_provinces_Shanghai_munic_cities_Shanghai : Ind City ; + + fun Countries_TJ_provinces_Shanxi : Ind Province ; + + fun Countries_TJ_provinces_Shanxi_cities_Changzhi : Ind City ; + + fun Countries_TJ_provinces_Shanxi_cities_Datong : Ind City ; + + fun Countries_TJ_provinces_Shanxi_cities_Jincheng : Ind City ; + + fun Countries_TJ_provinces_Shanxi_cities_Linfen : Ind City ; + + fun Countries_TJ_provinces_Shanxi_cities_Taiyuan : Ind City ; + + fun Countries_TJ_provinces_Shanxi_cities_Yangquan : Ind City ; + + fun Countries_TJ_provinces_Shanxi_cities_Yuci : Ind City ; + + fun Countries_TJ_provinces_Sichuan : Ind Province ; + + fun Countries_TJ_provinces_Sichuan_cities_Chengdu : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Chongqing : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Daxian : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Deyang : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Dukou : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Guangyuan : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Jiangyou : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Leshan : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Luzhou : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Mianyang : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Nanchong : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Neijiang : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Qianjiang : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Wanxian : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Xichang : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Yibin : Ind City ; + + fun Countries_TJ_provinces_Sichuan_cities_Zigong : Ind City ; + + fun Countries_TJ_provinces_Tianjin_munic : Ind Province ; + + fun Countries_TJ_provinces_Tianjin_munic_cities_Tianjin : Ind City ; + + fun Countries_TJ_provinces_Tibet : Ind Province ; + + fun Countries_TJ_provinces_Tibet_cities_Lhasa : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur : Ind Province ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Aksu : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Hami : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Karamay : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Kashi : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Korla : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Shihezi : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Urumqi : Ind City ; + + fun Countries_TJ_provinces_XinjiangUygur_cities_Yining : Ind City ; + + fun Countries_TJ_provinces_Yunnan : Ind Province ; + + fun Countries_TJ_provinces_Yunnan_cities_Gejiu : Ind City ; + + fun Countries_TJ_provinces_Yunnan_cities_Kunming : Ind City ; + + fun Countries_TJ_provinces_Yunnan_cities_Qujing : Ind City ; + + fun Countries_TJ_provinces_Zhejiang : Ind Province ; + + fun Countries_TJ_provinces_Zhejiang_cities_Cixi : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Haining : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Hangzhou : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Huzhou : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Jiaxing : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Jinhua : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Ningbo : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Ruian : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Shaoxing : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Wenzhou : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Xiaoshan : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Yuyao : Ind City ; + + fun Countries_TJ_provinces_Zhejiang_cities_Zhoushan : Ind City ; + + fun Countries_TM_provinces_Ahal : Ind Province ; + + fun Countries_TM_provinces_Ahal_cities_Ashgabat : Ind City ; + + fun Countries_TM_provinces_Balkan : Ind Province ; + + fun Countries_TM_provinces_Balkan_cities_Nebitdag : Ind City ; + + fun Countries_TM_provinces_Dashhowuz : Ind Province ; + + fun Countries_TM_provinces_Dashhowuz_cities_Tashauz : Ind City ; + + fun Countries_TM_provinces_Leban : Ind Province ; + + fun Countries_TM_provinces_Leban_cities_Charjew : Ind City ; + + fun Countries_TM_provinces_Mary : Ind Province ; + + fun Countries_TM_provinces_Mary_cities_Mary : Ind City ; + + fun Countries_TN_cities_Tunis : Ind City ; + + fun Countries_TO_cities_Nukualofa : Ind City ; + + fun Countries_TR_cities_Hatay : Ind City ; + + fun Countries_TR_cities_Icel : Ind City ; + + fun Countries_TR_provinces_Adana : Ind Province ; + + fun Countries_TR_provinces_Adana_cities_Adana : Ind City ; + + fun Countries_TR_provinces_Adana_cities_Osmaniye : Ind City ; + + fun Countries_TR_provinces_Adiyaman : Ind Province ; + + fun Countries_TR_provinces_Adiyaman_cities_Adiyaman : Ind City ; + + fun Countries_TR_provinces_Afyon : Ind Province ; + + fun Countries_TR_provinces_Afyon_cities_Afyon : Ind City ; + + fun Countries_TR_provinces_Agri : Ind Province ; + + fun Countries_TR_provinces_Agri_cities_Agri : Ind City ; + + fun Countries_TR_provinces_Aksaray : Ind Province ; + + fun Countries_TR_provinces_Aksaray_cities_Aksaray : Ind City ; + + fun Countries_TR_provinces_Amasya : Ind Province ; + + fun Countries_TR_provinces_Amasya_cities_Amasya : Ind City ; + + fun Countries_TR_provinces_Ankara : Ind Province ; + + fun Countries_TR_provinces_Ankara_cities_Ankara : Ind City ; + + fun Countries_TR_provinces_Antalya : Ind Province ; + + fun Countries_TR_provinces_Antalya_cities_Antalya : Ind City ; + + fun Countries_TR_provinces_Artvin : Ind Province ; + + fun Countries_TR_provinces_Artvin_cities_Artvin : Ind City ; + + fun Countries_TR_provinces_Aydin : Ind Province ; + + fun Countries_TR_provinces_Aydin_cities_Aydin : Ind City ; + + fun Countries_TR_provinces_Balikesir : Ind Province ; + + fun Countries_TR_provinces_Balikesir_cities_Balikesir : Ind City ; + + fun Countries_TR_provinces_Batman : Ind Province ; + + fun Countries_TR_provinces_Batman_cities_Batman : Ind City ; + + fun Countries_TR_provinces_Bayburt : Ind Province ; + + fun Countries_TR_provinces_Bayburt_cities_Bayburt : Ind City ; + + fun Countries_TR_provinces_Bilecik : Ind Province ; + + fun Countries_TR_provinces_Bilecik_cities_Bilecik : Ind City ; + + fun Countries_TR_provinces_Bingol : Ind Province ; + + fun Countries_TR_provinces_Bingol_cities_Bingol : Ind City ; + + fun Countries_TR_provinces_Bitlis : Ind Province ; + + fun Countries_TR_provinces_Bitlis_cities_Bitlis : Ind City ; + + fun Countries_TR_provinces_Bolu : Ind Province ; + + fun Countries_TR_provinces_Bolu_cities_Bolu : Ind City ; + + fun Countries_TR_provinces_Burdur : Ind Province ; + + fun Countries_TR_provinces_Burdur_cities_Burdur : Ind City ; + + fun Countries_TR_provinces_Bursa : Ind Province ; + + fun Countries_TR_provinces_Bursa_cities_Bursa : Ind City ; + + fun Countries_TR_provinces_Canakkale : Ind Province ; + + fun Countries_TR_provinces_Canakkale_cities_Canakkale : Ind City ; + + fun Countries_TR_provinces_Cankiri : Ind Province ; + + fun Countries_TR_provinces_Cankiri_cities_Cankiri : Ind City ; + + fun Countries_TR_provinces_Corum : Ind Province ; + + fun Countries_TR_provinces_Corum_cities_Corum : Ind City ; + + fun Countries_TR_provinces_Denizli : Ind Province ; + + fun Countries_TR_provinces_Denizli_cities_Denizli : Ind City ; + + fun Countries_TR_provinces_Diyarbakir : Ind Province ; + + fun Countries_TR_provinces_Diyarbakir_cities_Diyarbakir : Ind City ; + + fun Countries_TR_provinces_Edirne : Ind Province ; + + fun Countries_TR_provinces_Edirne_cities_Edirne : Ind City ; + + fun Countries_TR_provinces_Elazig : Ind Province ; + + fun Countries_TR_provinces_Elazig_cities_Elazig : Ind City ; + + fun Countries_TR_provinces_Erzincan : Ind Province ; + + fun Countries_TR_provinces_Erzincan_cities_Erzincan : Ind City ; + + fun Countries_TR_provinces_Erzurum : Ind Province ; + + fun Countries_TR_provinces_Erzurum_cities_Erzurum : Ind City ; + + fun Countries_TR_provinces_Eskisehir : Ind Province ; + + fun Countries_TR_provinces_Eskisehir_cities_Eskisehir : Ind City ; + + fun Countries_TR_provinces_Gaziantep : Ind Province ; + + fun Countries_TR_provinces_Gaziantep_cities_Gaziantep : Ind City ; + + fun Countries_TR_provinces_Giresun : Ind Province ; + + fun Countries_TR_provinces_Giresun_cities_Giresun : Ind City ; + + fun Countries_TR_provinces_Gumushane : Ind Province ; + + fun Countries_TR_provinces_Gumushane_cities_Gumushane : Ind City ; + + fun Countries_TR_provinces_Hakkari : Ind Province ; + + fun Countries_TR_provinces_Hakkari_cities_Hakkari : Ind City ; + + fun Countries_TR_provinces_Hatay : Ind Province ; + + fun Countries_TR_provinces_Hatay_cities_Antakya : Ind City ; + + fun Countries_TR_provinces_Hatay_cities_Iskenderun : Ind City ; + + fun Countries_TR_provinces_Icel : Ind Province ; + + fun Countries_TR_provinces_Icel_cities_Mersin : Ind City ; + + fun Countries_TR_provinces_Icel_cities_Tarsus : Ind City ; + + fun Countries_TR_provinces_Isparta : Ind Province ; + + fun Countries_TR_provinces_Isparta_cities_Isparta : Ind City ; + + fun Countries_TR_provinces_Istanbul : Ind Province ; + + fun Countries_TR_provinces_Istanbul_cities_Istanbul : Ind City ; + + fun Countries_TR_provinces_Izmir : Ind Province ; + + fun Countries_TR_provinces_Izmir_cities_Izmir : Ind City ; + + fun Countries_TR_provinces_Karaman : Ind Province ; + + fun Countries_TR_provinces_Karaman_cities_Karaman : Ind City ; + + fun Countries_TR_provinces_Karamanmaras : Ind Province ; + + fun Countries_TR_provinces_Karamanmaras_cities_KaramanMaras : Ind City ; + + fun Countries_TR_provinces_Kars : Ind Province ; + + fun Countries_TR_provinces_Kars_cities_Kars : Ind City ; + + fun Countries_TR_provinces_Kastamonu : Ind Province ; + + fun Countries_TR_provinces_Kastamonu_cities_Kastamonu : Ind City ; + + fun Countries_TR_provinces_Kayseri : Ind Province ; + + fun Countries_TR_provinces_Kayseri_cities_Kayseri : Ind City ; + + fun Countries_TR_provinces_Kirikkale : Ind Province ; + + fun Countries_TR_provinces_Kirikkale_cities_Kirikkale : Ind City ; + + fun Countries_TR_provinces_Kirklareli : Ind Province ; + + fun Countries_TR_provinces_Kirklareli_cities_Kirklareli : Ind City ; + + fun Countries_TR_provinces_Kirsehir : Ind Province ; + + fun Countries_TR_provinces_Kirsehir_cities_Kirsehir : Ind City ; + + fun Countries_TR_provinces_Kocaeli : Ind Province ; + + fun Countries_TR_provinces_Kocaeli_cities_Adapazari : Ind City ; + + fun Countries_TR_provinces_Kocaeli_cities_Gebze : Ind City ; + + fun Countries_TR_provinces_Kocaeli_cities_Izmit : Ind City ; + + fun Countries_TR_provinces_Kocaeli_cities_Kocaeli : Ind City ; + + fun Countries_TR_provinces_Konya : Ind Province ; + + fun Countries_TR_provinces_Konya_cities_Konya : Ind City ; + + fun Countries_TR_provinces_Kutahya : Ind Province ; + + fun Countries_TR_provinces_Kutahya_cities_Kutahya : Ind City ; + + fun Countries_TR_provinces_Malatya : Ind Province ; + + fun Countries_TR_provinces_Malatya_cities_Malatya : Ind City ; + + fun Countries_TR_provinces_Manisa : Ind Province ; + + fun Countries_TR_provinces_Manisa_cities_Manisa : Ind City ; + + fun Countries_TR_provinces_Mardin : Ind Province ; + + fun Countries_TR_provinces_Mardin_cities_Mardin : Ind City ; + + fun Countries_TR_provinces_Mugla : Ind Province ; + + fun Countries_TR_provinces_Mugla_cities_Mugla : Ind City ; + + fun Countries_TR_provinces_Mus : Ind Province ; + + fun Countries_TR_provinces_Mus_cities_Mus : Ind City ; + + fun Countries_TR_provinces_Nevsehir : Ind Province ; + + fun Countries_TR_provinces_Nevsehir_cities_Nevsehir : Ind City ; + + fun Countries_TR_provinces_Nigde : Ind Province ; + + fun Countries_TR_provinces_Nigde_cities_Nigde : Ind City ; + + fun Countries_TR_provinces_Ordu : Ind Province ; + + fun Countries_TR_provinces_Ordu_cities_Ordu : Ind City ; + + fun Countries_TR_provinces_Rize : Ind Province ; + + fun Countries_TR_provinces_Rize_cities_Rize : Ind City ; + + fun Countries_TR_provinces_Sakarya : Ind Province ; + + fun Countries_TR_provinces_Sakarya_cities_Sakarya : Ind City ; + + fun Countries_TR_provinces_Samsun : Ind Province ; + + fun Countries_TR_provinces_Samsun_cities_Samsun : Ind City ; + + fun Countries_TR_provinces_Sanliurfa : Ind Province ; + + fun Countries_TR_provinces_Sanliurfa_cities_Urfa : Ind City ; + + fun Countries_TR_provinces_Siirt : Ind Province ; + + fun Countries_TR_provinces_Siirt_cities_Siirt : Ind City ; + + fun Countries_TR_provinces_Sinop : Ind Province ; + + fun Countries_TR_provinces_Sinop_cities_Sinop : Ind City ; + + fun Countries_TR_provinces_Sirnak : Ind Province ; + + fun Countries_TR_provinces_Sirnak_cities_Sirnak : Ind City ; + + fun Countries_TR_provinces_Sivas : Ind Province ; + + fun Countries_TR_provinces_Sivas_cities_Sivas : Ind City ; + + fun Countries_TR_provinces_Tekirdag : Ind Province ; + + fun Countries_TR_provinces_Tekirdag_cities_Tekirdag : Ind City ; + + fun Countries_TR_provinces_Tokat : Ind Province ; + + fun Countries_TR_provinces_Tokat_cities_Tokat : Ind City ; + + fun Countries_TR_provinces_Trabzon : Ind Province ; + + fun Countries_TR_provinces_Trabzon_cities_Trabzon : Ind City ; + + fun Countries_TR_provinces_Tunceli : Ind Province ; + + fun Countries_TR_provinces_Tunceli_cities_Tunceli : Ind City ; + + fun Countries_TR_provinces_Usak : Ind Province ; + + fun Countries_TR_provinces_Usak_cities_Usak : Ind City ; + + fun Countries_TR_provinces_Van : Ind Province ; + + fun Countries_TR_provinces_Van_cities_Van : Ind City ; + + fun Countries_TR_provinces_Yozgat : Ind Province ; + + fun Countries_TR_provinces_Yozgat_cities_Yozgat : Ind City ; + + fun Countries_TR_provinces_Zonguldak : Ind Province ; + + fun Countries_TR_provinces_Zonguldak_cities_Karabuk : Ind City ; + + fun Countries_TR_provinces_Zonguldak_cities_Zonguldak : Ind City ; + + fun Countries_TT_cities_Port_of_Spain : Ind City ; + + fun Countries_TUV_cities_Funafuti : Ind City ; + + fun Countries_UAE_cities_AbuDhabi : Ind City ; + + fun Countries_UAE_cities_AlAyn : Ind City ; + + fun Countries_UAE_cities_Dubai : Ind City ; + + fun Countries_UAE_cities_Sharjah : Ind City ; + + fun Countries_UAE_provinces_AbuDhabi : Ind Province ; + + fun Countries_UAE_provinces_Ajman : Ind Province ; + + fun Countries_UAE_provinces_AlFujayrah : Ind Province ; + + fun Countries_UAE_provinces_AshShariqah : Ind Province ; + + fun Countries_UAE_provinces_Dubayy : Ind Province ; + + fun Countries_UAE_provinces_RasalKhaymah : Ind Province ; + + fun Countries_UAE_provinces_UmmalQaywayn : Ind Province ; + + fun Countries_UA_provinces_Cherkaska : Ind Province ; + + fun Countries_UA_provinces_Cherkaska_cities_Cherkasy : Ind City ; + + fun Countries_UA_provinces_Chernihivska : Ind Province ; + + fun Countries_UA_provinces_Chernihivska_cities_Chernihiv : Ind City ; + + fun Countries_UA_provinces_Chernivetska : Ind Province ; + + fun Countries_UA_provinces_Chernivetska_cities_Chernivtsi : Ind City ; + + fun Countries_UA_provinces_Dnipropetrovska : Ind Province ; + + fun Countries_UA_provinces_Dnipropetrovska_cities_Dniprodzerzhynsk : Ind City ; + + fun Countries_UA_provinces_Dnipropetrovska_cities_Dnipropetrovsk : Ind City ; + + fun Countries_UA_provinces_Dnipropetrovska_cities_KryvyyRih : Ind City ; + + fun Countries_UA_provinces_Donetska : Ind Province ; + + fun Countries_UA_provinces_Donetska_cities_Donetsk : Ind City ; + + fun Countries_UA_provinces_Donetska_cities_Horlivka : Ind City ; + + fun Countries_UA_provinces_Donetska_cities_Makiyivka : Ind City ; + + fun Countries_UA_provinces_Donetska_cities_Mariupol : Ind City ; + + fun Countries_UA_provinces_IvanoFrankivska : Ind Province ; + + fun Countries_UA_provinces_IvanoFrankivska_cities_IvanoFrankivsk : Ind City ; + + fun Countries_UA_provinces_Kharkivska : Ind Province ; + + fun Countries_UA_provinces_Kharkivska_cities_Kharkiv : Ind City ; + + fun Countries_UA_provinces_Khersonska : Ind Province ; + + fun Countries_UA_provinces_Khersonska_cities_Kherson : Ind City ; + + fun Countries_UA_provinces_Khmelnytska : Ind Province ; + + fun Countries_UA_provinces_Khmelnytska_cities_Khmelnytskyy : Ind City ; + + fun Countries_UA_provinces_Kirovohradska : Ind Province ; + + fun Countries_UA_provinces_Kirovohradska_cities_Kirovohrad : Ind City ; + + fun Countries_UA_provinces_Krym : Ind Province ; + + fun Countries_UA_provinces_Krym_cities_Sevastopol : Ind City ; + + fun Countries_UA_provinces_Krym_cities_Simferopol : Ind City ; + + fun Countries_UA_provinces_Kyyivska : Ind Province ; + + fun Countries_UA_provinces_Kyyivska_cities_Kiev : Ind City ; + + fun Countries_UA_provinces_Luhanska : Ind Province ; + + fun Countries_UA_provinces_Luhanska_cities_Luhansk : Ind City ; + + fun Countries_UA_provinces_Lvivska : Ind Province ; + + fun Countries_UA_provinces_Lvivska_cities_Lviv : Ind City ; + + fun Countries_UA_provinces_Mykolayivska : Ind Province ; + + fun Countries_UA_provinces_Mykolayivska_cities_Mykolayiv : Ind City ; + + fun Countries_UA_provinces_Odeska : Ind Province ; + + fun Countries_UA_provinces_Odeska_cities_Odesa : Ind City ; + + fun Countries_UA_provinces_Poltavska : Ind Province ; + + fun Countries_UA_provinces_Poltavska_cities_Kremenchuk : Ind City ; + + fun Countries_UA_provinces_Poltavska_cities_Poltava : Ind City ; + + fun Countries_UA_provinces_Rivnenska : Ind Province ; + + fun Countries_UA_provinces_Rivnenska_cities_Rivne : Ind City ; + + fun Countries_UA_provinces_Sumska : Ind Province ; + + fun Countries_UA_provinces_Sumska_cities_Sumy : Ind City ; + + fun Countries_UA_provinces_Ternopilska : Ind Province ; + + fun Countries_UA_provinces_Ternopilska_cities_Ternopil : Ind City ; + + fun Countries_UA_provinces_Vinnytska : Ind Province ; + + fun Countries_UA_provinces_Vinnytska_cities_Vinnytsya : Ind City ; + + fun Countries_UA_provinces_Volynska : Ind Province ; + + fun Countries_UA_provinces_Volynska_cities_Lutsk : Ind City ; + + fun Countries_UA_provinces_Zakarpatska : Ind Province ; + + fun Countries_UA_provinces_Zakarpatska_cities_Uzhhorod : Ind City ; + + fun Countries_UA_provinces_Zaporizka : Ind Province ; + + fun Countries_UA_provinces_Zaporizka_cities_Zaporizhzhya : Ind City ; + + fun Countries_UA_provinces_Zhytomyrska : Ind Province ; + + fun Countries_UA_provinces_Zhytomyrska_cities_Zhytomyr : Ind City ; + + fun Countries_USA_provinces_Alabama : Ind Province ; + + fun Countries_USA_provinces_Alabama_cities_Birmingham : Ind City ; + + fun Countries_USA_provinces_Alabama_cities_Huntsville : Ind City ; + + fun Countries_USA_provinces_Alabama_cities_Mobile : Ind City ; + + fun Countries_USA_provinces_Alabama_cities_Montgomery : Ind City ; + + fun Countries_USA_provinces_Alaska : Ind Province ; + + fun Countries_USA_provinces_Alaska_cities_Anchorage : Ind City ; + + fun Countries_USA_provinces_Alaska_cities_Juneau : Ind City ; + + fun Countries_USA_provinces_Arizona : Ind Province ; + + fun Countries_USA_provinces_Arizona_cities_Chandler : Ind City ; + + fun Countries_USA_provinces_Arizona_cities_Glendale : Ind City ; + + fun Countries_USA_provinces_Arizona_cities_Mesa : Ind City ; + + fun Countries_USA_provinces_Arizona_cities_Phoenix : Ind City ; + + fun Countries_USA_provinces_Arizona_cities_Scottsdale : Ind City ; + + fun Countries_USA_provinces_Arizona_cities_Tempe : Ind City ; + + fun Countries_USA_provinces_Arizona_cities_Tucson : Ind City ; + + fun Countries_USA_provinces_Arkansas : Ind Province ; + + fun Countries_USA_provinces_Arkansas_cities_LittleRock : Ind City ; + + fun Countries_USA_provinces_California : Ind Province ; + + fun Countries_USA_provinces_California_cities_Anaheim : Ind City ; + + fun Countries_USA_provinces_California_cities_Bakersfield : Ind City ; + + fun Countries_USA_provinces_California_cities_Berkeley : Ind City ; + + fun Countries_USA_provinces_California_cities_ChulaVista : Ind City ; + + fun Countries_USA_provinces_California_cities_Concord : Ind City ; + + fun Countries_USA_provinces_California_cities_Corona : Ind City ; + + fun Countries_USA_provinces_California_cities_CostaMesa : Ind City ; + + fun Countries_USA_provinces_California_cities_ElMonte : Ind City ; + + fun Countries_USA_provinces_California_cities_Escondido : Ind City ; + + fun Countries_USA_provinces_California_cities_Fontana : Ind City ; + + fun Countries_USA_provinces_California_cities_Fremont : Ind City ; + + fun Countries_USA_provinces_California_cities_Fresno : Ind City ; + + fun Countries_USA_provinces_California_cities_Fullerton : Ind City ; + + fun Countries_USA_provinces_California_cities_GardenGrove : Ind City ; + + fun Countries_USA_provinces_California_cities_Glendale : Ind City ; + + fun Countries_USA_provinces_California_cities_Hayward : Ind City ; + + fun Countries_USA_provinces_California_cities_HuntingtonBeach : Ind City ; + + fun Countries_USA_provinces_California_cities_Inglewood : Ind City ; + + fun Countries_USA_provinces_California_cities_Irvine : Ind City ; + + fun Countries_USA_provinces_California_cities_Lancaster : Ind City ; + + fun Countries_USA_provinces_California_cities_LongBeach : Ind City ; + + fun Countries_USA_provinces_California_cities_LosAngeles : Ind City ; + + fun Countries_USA_provinces_California_cities_Modesto : Ind City ; + + fun Countries_USA_provinces_California_cities_MorenoValley : Ind City ; + + fun Countries_USA_provinces_California_cities_Norwalk : Ind City ; + + fun Countries_USA_provinces_California_cities_Oakland : Ind City ; + + fun Countries_USA_provinces_California_cities_Oceanside : Ind City ; + + fun Countries_USA_provinces_California_cities_Ontario : Ind City ; + + fun Countries_USA_provinces_California_cities_Orange : Ind City ; + + fun Countries_USA_provinces_California_cities_Oxnard : Ind City ; + + fun Countries_USA_provinces_California_cities_Palmdale : Ind City ; + + fun Countries_USA_provinces_California_cities_Pasadena : Ind City ; + + fun Countries_USA_provinces_California_cities_Pomona : Ind City ; + + fun Countries_USA_provinces_California_cities_RanchoCucamonga : Ind City ; + + fun Countries_USA_provinces_California_cities_Riverside : Ind City ; + + fun Countries_USA_provinces_California_cities_Sacramento : Ind City ; + + fun Countries_USA_provinces_California_cities_Salinas : Ind City ; + + fun Countries_USA_provinces_California_cities_SanBernardino : Ind City ; + + fun Countries_USA_provinces_California_cities_SanDiego : Ind City ; + + fun Countries_USA_provinces_California_cities_SanFrancisco : Ind City ; + + fun Countries_USA_provinces_California_cities_SanJose : Ind City ; + + fun Countries_USA_provinces_California_cities_SantaAna : Ind City ; + + fun Countries_USA_provinces_California_cities_SantaClarita : Ind City ; + + fun Countries_USA_provinces_California_cities_SantaRosa : Ind City ; + + fun Countries_USA_provinces_California_cities_SimiValley : Ind City ; + + fun Countries_USA_provinces_California_cities_Stockton : Ind City ; + + fun Countries_USA_provinces_California_cities_Sunnyvale : Ind City ; + + fun Countries_USA_provinces_California_cities_ThousandOaks : Ind City ; + + fun Countries_USA_provinces_California_cities_Torrance : Ind City ; + + fun Countries_USA_provinces_California_cities_Vallejo : Ind City ; + + fun Countries_USA_provinces_California_cities_WestCovina : Ind City ; + + fun Countries_USA_provinces_Colorado : Ind Province ; + + fun Countries_USA_provinces_Colorado_cities_Aurora : Ind City ; + + fun Countries_USA_provinces_Colorado_cities_ColoradoSprings : Ind City ; + + fun Countries_USA_provinces_Colorado_cities_Denver : Ind City ; + + fun Countries_USA_provinces_Colorado_cities_FortCollins : Ind City ; + + fun Countries_USA_provinces_Colorado_cities_Lakewood : Ind City ; + + fun Countries_USA_provinces_Connecticut : Ind Province ; + + fun Countries_USA_provinces_Connecticut_cities_Bridgeport : Ind City ; + + fun Countries_USA_provinces_Connecticut_cities_Hartford : Ind City ; + + fun Countries_USA_provinces_Connecticut_cities_NewHaven : Ind City ; + + fun Countries_USA_provinces_Connecticut_cities_Stamford : Ind City ; + + fun Countries_USA_provinces_Connecticut_cities_Waterbury : Ind City ; + + fun Countries_USA_provinces_Delaware : Ind Province ; + + fun Countries_USA_provinces_Delaware_cities_Dover : Ind City ; + + fun Countries_USA_provinces_Distr_Columbia : Ind Province ; + + fun Countries_USA_provinces_Distr_Columbia_cities_Washington : Ind City ; + + fun Countries_USA_provinces_Florida : Ind Province ; + + fun Countries_USA_provinces_Florida_cities_Clearwater : Ind City ; + + fun Countries_USA_provinces_Florida_cities_CoralSprings : Ind City ; + + fun Countries_USA_provinces_Florida_cities_FortLauderdale : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Hialeah : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Hollywood : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Jacksonville : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Miami : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Orlando : Ind City ; + + fun Countries_USA_provinces_Florida_cities_PembrokePines : Ind City ; + + fun Countries_USA_provinces_Florida_cities_St_Petersburg : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Tallahassee : Ind City ; + + fun Countries_USA_provinces_Florida_cities_Tampa : Ind City ; + + fun Countries_USA_provinces_Georgia : Ind Province ; + + fun Countries_USA_provinces_Georgia_cities_Atlanta : Ind City ; + + fun Countries_USA_provinces_Georgia_cities_Columbus : Ind City ; + + fun Countries_USA_provinces_Georgia_cities_Macon : Ind City ; + + fun Countries_USA_provinces_Georgia_cities_Savannah : Ind City ; + + fun Countries_USA_provinces_Hawaii : Ind Province ; + + fun Countries_USA_provinces_Hawaii_cities_Hilo : Ind City ; + + fun Countries_USA_provinces_Hawaii_cities_Honolulu : Ind City ; + + fun Countries_USA_provinces_Idaho : Ind Province ; + + fun Countries_USA_provinces_Idaho_cities_Boise : Ind City ; + + fun Countries_USA_provinces_Illinois : Ind Province ; + + fun Countries_USA_provinces_Illinois_cities_Aurora : Ind City ; + + fun Countries_USA_provinces_Illinois_cities_Chicago : Ind City ; + + fun Countries_USA_provinces_Illinois_cities_Naperville : Ind City ; + + fun Countries_USA_provinces_Illinois_cities_Peoria : Ind City ; + + fun Countries_USA_provinces_Illinois_cities_Rockford : Ind City ; + + fun Countries_USA_provinces_Illinois_cities_Springfield : Ind City ; + + fun Countries_USA_provinces_Indiana : Ind Province ; + + fun Countries_USA_provinces_Indiana_cities_Evansville : Ind City ; + + fun Countries_USA_provinces_Indiana_cities_FortWayne : Ind City ; + + fun Countries_USA_provinces_Indiana_cities_Gary : Ind City ; + + fun Countries_USA_provinces_Indiana_cities_Indianapolis : Ind City ; + + fun Countries_USA_provinces_Indiana_cities_SouthBend : Ind City ; + + fun Countries_USA_provinces_Iowa : Ind Province ; + + fun Countries_USA_provinces_Iowa_cities_CedarRapids : Ind City ; + + fun Countries_USA_provinces_Iowa_cities_DesMoines : Ind City ; + + fun Countries_USA_provinces_Kansas : Ind Province ; + + fun Countries_USA_provinces_Kansas_cities_KansasCity : Ind City ; + + fun Countries_USA_provinces_Kansas_cities_OverlandPark : Ind City ; + + fun Countries_USA_provinces_Kansas_cities_Topeka : Ind City ; + + fun Countries_USA_provinces_Kansas_cities_Wichita : Ind City ; + + fun Countries_USA_provinces_Kentucky : Ind Province ; + + fun Countries_USA_provinces_Kentucky_cities_Frankfort : Ind City ; + + fun Countries_USA_provinces_Kentucky_cities_LexingtonFayette : Ind City ; + + fun Countries_USA_provinces_Kentucky_cities_Louisville : Ind City ; + + fun Countries_USA_provinces_Louisiana : Ind Province ; + + fun Countries_USA_provinces_Louisiana_cities_BatonRouge : Ind City ; + + fun Countries_USA_provinces_Louisiana_cities_Lafayette : Ind City ; + + fun Countries_USA_provinces_Louisiana_cities_NewOrleans : Ind City ; + + fun Countries_USA_provinces_Louisiana_cities_Shreveport : Ind City ; + + fun Countries_USA_provinces_Maine : Ind Province ; + + fun Countries_USA_provinces_Maine_cities_Augusta : Ind City ; + + fun Countries_USA_provinces_Maryland : Ind Province ; + + fun Countries_USA_provinces_Maryland_cities_Annapolis : Ind City ; + + fun Countries_USA_provinces_Maryland_cities_Baltimore : Ind City ; + + fun Countries_USA_provinces_Massachusetts : Ind Province ; + + fun Countries_USA_provinces_Massachusetts_cities_Boston : Ind City ; + + fun Countries_USA_provinces_Massachusetts_cities_Lowell : Ind City ; + + fun Countries_USA_provinces_Massachusetts_cities_Springfield : Ind City ; + + fun Countries_USA_provinces_Massachusetts_cities_Worcester : Ind City ; + + fun Countries_USA_provinces_Michigan : Ind Province ; + + fun Countries_USA_provinces_Michigan_cities_AnnArbor : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_Detroit : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_Flint : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_GrandRapids : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_Lansing : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_Livonia : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_SterlingHeights : Ind City ; + + fun Countries_USA_provinces_Michigan_cities_Warren : Ind City ; + + fun Countries_USA_provinces_Minnesota : Ind Province ; + + fun Countries_USA_provinces_Minnesota_cities_Minneapolis : Ind City ; + + fun Countries_USA_provinces_Minnesota_cities_St_Paul : Ind City ; + + fun Countries_USA_provinces_Mississippi : Ind Province ; + + fun Countries_USA_provinces_Mississippi_cities_Jackson : Ind City ; + + fun Countries_USA_provinces_Missouri : Ind Province ; + + fun Countries_USA_provinces_Missouri_cities_Independence : Ind City ; + + fun Countries_USA_provinces_Missouri_cities_JeffersonCity : Ind City ; + + fun Countries_USA_provinces_Missouri_cities_KansasCity : Ind City ; + + fun Countries_USA_provinces_Missouri_cities_Springfield : Ind City ; + + fun Countries_USA_provinces_Missouri_cities_St_Louis : Ind City ; + + fun Countries_USA_provinces_Montana : Ind Province ; + + fun Countries_USA_provinces_Montana_cities_Helena : Ind City ; + + fun Countries_USA_provinces_Nebraska : Ind Province ; + + fun Countries_USA_provinces_Nebraska_cities_Lincoln : Ind City ; + + fun Countries_USA_provinces_Nebraska_cities_Omaha : Ind City ; + + fun Countries_USA_provinces_Nevada : Ind Province ; + + fun Countries_USA_provinces_Nevada_cities_CarsonCity : Ind City ; + + fun Countries_USA_provinces_Nevada_cities_Henderson : Ind City ; + + fun Countries_USA_provinces_Nevada_cities_LasVegas : Ind City ; + + fun Countries_USA_provinces_Nevada_cities_Reno : Ind City ; + + fun Countries_USA_provinces_NewHampshire : Ind Province ; + + fun Countries_USA_provinces_NewHampshire_cities_Concord : Ind City ; + + fun Countries_USA_provinces_NewHampshire_cities_Manchester : Ind City ; + + fun Countries_USA_provinces_NewJersey : Ind Province ; + + fun Countries_USA_provinces_NewJersey_cities_Elizabeth : Ind City ; + + fun Countries_USA_provinces_NewJersey_cities_JerseyCity : Ind City ; + + fun Countries_USA_provinces_NewJersey_cities_Newark : Ind City ; + + fun Countries_USA_provinces_NewJersey_cities_Paterson : Ind City ; + + fun Countries_USA_provinces_NewJersey_cities_Trenton : Ind City ; + + fun Countries_USA_provinces_NewMexico : Ind Province ; + + fun Countries_USA_provinces_NewMexico_cities_Albuquerque : Ind City ; + + fun Countries_USA_provinces_NewMexico_cities_SantaFe : Ind City ; + + fun Countries_USA_provinces_NewYork : Ind Province ; + + fun Countries_USA_provinces_NewYork_cities_Albany : Ind City ; + + fun Countries_USA_provinces_NewYork_cities_Buffalo : Ind City ; + + fun Countries_USA_provinces_NewYork_cities_NewYork : Ind City ; + + fun Countries_USA_provinces_NewYork_cities_Rochester : Ind City ; + + fun Countries_USA_provinces_NewYork_cities_Syracuse : Ind City ; + + fun Countries_USA_provinces_NewYork_cities_Yonkers : Ind City ; + + fun Countries_USA_provinces_NorthCarolina : Ind Province ; + + fun Countries_USA_provinces_NorthCarolina_cities_Charlotte : Ind City ; + + fun Countries_USA_provinces_NorthCarolina_cities_Durham : Ind City ; + + fun Countries_USA_provinces_NorthCarolina_cities_Greensboro : Ind City ; + + fun Countries_USA_provinces_NorthCarolina_cities_Raleigh : Ind City ; + + fun Countries_USA_provinces_NorthCarolina_cities_WinstonSalem : Ind City ; + + fun Countries_USA_provinces_NorthDakota : Ind Province ; + + fun Countries_USA_provinces_NorthDakota_cities_Bismarck : Ind City ; + + fun Countries_USA_provinces_Ohio : Ind Province ; + + fun Countries_USA_provinces_Ohio_cities_Akron : Ind City ; + + fun Countries_USA_provinces_Ohio_cities_Cincinnati : Ind City ; + + fun Countries_USA_provinces_Ohio_cities_Cleveland : Ind City ; + + fun Countries_USA_provinces_Ohio_cities_Columbus : Ind City ; + + fun Countries_USA_provinces_Ohio_cities_Dayton : Ind City ; + + fun Countries_USA_provinces_Ohio_cities_Toledo : Ind City ; + + fun Countries_USA_provinces_Oklahoma : Ind Province ; + + fun Countries_USA_provinces_Oklahoma_cities_OklahomaCity : Ind City ; + + fun Countries_USA_provinces_Oklahoma_cities_Tulsa : Ind City ; + + fun Countries_USA_provinces_Oregon : Ind Province ; + + fun Countries_USA_provinces_Oregon_cities_Eugene : Ind City ; + + fun Countries_USA_provinces_Oregon_cities_Portland : Ind City ; + + fun Countries_USA_provinces_Oregon_cities_Salem : Ind City ; + + fun Countries_USA_provinces_Pennsylvania : Ind Province ; + + fun Countries_USA_provinces_Pennsylvania_cities_Allentown : Ind City ; + + fun Countries_USA_provinces_Pennsylvania_cities_Erie : Ind City ; + + fun Countries_USA_provinces_Pennsylvania_cities_Harrisburg : Ind City ; + + fun Countries_USA_provinces_Pennsylvania_cities_Philadelphia : Ind City ; + + fun Countries_USA_provinces_Pennsylvania_cities_Pittsburgh : Ind City ; + + fun Countries_USA_provinces_RhodeIsland : Ind Province ; + + fun Countries_USA_provinces_RhodeIsland_cities_Providence : Ind City ; + + fun Countries_USA_provinces_SouthCarolina : Ind Province ; + + fun Countries_USA_provinces_SouthCarolina_cities_Columbia : Ind City ; + + fun Countries_USA_provinces_SouthDakota : Ind Province ; + + fun Countries_USA_provinces_SouthDakota_cities_Pierre : Ind City ; + + fun Countries_USA_provinces_SouthDakota_cities_SiouxFalls : Ind City ; + + fun Countries_USA_provinces_Tennessee : Ind Province ; + + fun Countries_USA_provinces_Tennessee_cities_Chattanooga : Ind City ; + + fun Countries_USA_provinces_Tennessee_cities_Knoxville : Ind City ; + + fun Countries_USA_provinces_Tennessee_cities_Memphis : Ind City ; + + fun Countries_USA_provinces_Tennessee_cities_Nashville : Ind City ; + + fun Countries_USA_provinces_Tennessee_cities_NashvilleDavidson : Ind City ; + + fun Countries_USA_provinces_Texas : Ind Province ; + + fun Countries_USA_provinces_Texas_cities_Abilene : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Amarillo : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Arlington : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Austin : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Beaumont : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Brownsville : Ind City ; + + fun Countries_USA_provinces_Texas_cities_CorpusChristi : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Dallas : Ind City ; + + fun Countries_USA_provinces_Texas_cities_ElPaso : Ind City ; + + fun Countries_USA_provinces_Texas_cities_FortWorth : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Garland : Ind City ; + + fun Countries_USA_provinces_Texas_cities_GrandPrairie : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Houston : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Irving : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Laredo : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Lubbock : Ind City ; + + fun Countries_USA_provinces_Texas_cities_McAllen : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Mesquite : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Pasadena : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Plano : Ind City ; + + fun Countries_USA_provinces_Texas_cities_SanAntonio : Ind City ; + + fun Countries_USA_provinces_Texas_cities_Waco : Ind City ; + + fun Countries_USA_provinces_Texas_cities_WichitaFalls : Ind City ; + + fun Countries_USA_provinces_Utah : Ind Province ; + + fun Countries_USA_provinces_Utah_cities_SaltLakeCity : Ind City ; + + fun Countries_USA_provinces_Vermont : Ind Province ; + + fun Countries_USA_provinces_Vermont_cities_Montpelier : Ind City ; + + fun Countries_USA_provinces_Virginia : Ind Province ; + + fun Countries_USA_provinces_Virginia_cities_Alexandria : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_Arlington : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_Chesapeake : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_Hampton : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_NewportNews : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_Norfolk : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_Portsmouth : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_Richmond : Ind City ; + + fun Countries_USA_provinces_Virginia_cities_VirginiaBeach : Ind City ; + + fun Countries_USA_provinces_Washington : Ind Province ; + + fun Countries_USA_provinces_Washington_cities_Olympia : Ind City ; + + fun Countries_USA_provinces_Washington_cities_Seattle : Ind City ; + + fun Countries_USA_provinces_Washington_cities_Spokane : Ind City ; + + fun Countries_USA_provinces_Washington_cities_Tacoma : Ind City ; + + fun Countries_USA_provinces_WestVirginia : Ind Province ; + + fun Countries_USA_provinces_WestVirginia_cities_Charleston : Ind City ; + + fun Countries_USA_provinces_Wisconsin : Ind Province ; + + fun Countries_USA_provinces_Wisconsin_cities_GreenBay : Ind City ; + + fun Countries_USA_provinces_Wisconsin_cities_Madison : Ind City ; + + fun Countries_USA_provinces_Wisconsin_cities_Milwaukee : Ind City ; + + fun Countries_USA_provinces_Wyoming : Ind Province ; + + fun Countries_USA_provinces_Wyoming_cities_Cheyenne : Ind City ; + + fun Countries_UZB_provinces_Andijon : Ind Province ; + + fun Countries_UZB_provinces_Andijon_cities_Andijon : Ind City ; + + fun Countries_UZB_provinces_Bukhoro : Ind Province ; + + fun Countries_UZB_provinces_Bukhoro_cities_Bukhoro : Ind City ; + + fun Countries_UZB_provinces_Farghona : Ind Province ; + + fun Countries_UZB_provinces_Farghona_cities_Farghona : Ind City ; + + fun Countries_UZB_provinces_Farghona_cities_Marghilon : Ind City ; + + fun Countries_UZB_provinces_Farghona_cities_Quqon : Ind City ; + + fun Countries_UZB_provinces_Jizzakh : Ind Province ; + + fun Countries_UZB_provinces_Jizzakh_cities_Jizzakh : Ind City ; + + fun Countries_UZB_provinces_Khorazm : Ind Province ; + + fun Countries_UZB_provinces_Khorazm_cities_Urganch : Ind City ; + + fun Countries_UZB_provinces_Namangan : Ind Province ; + + fun Countries_UZB_provinces_Namangan_cities_Namangan : Ind City ; + + fun Countries_UZB_provinces_Nawoiy : Ind Province ; + + fun Countries_UZB_provinces_Nawoiy_cities_Nawoiy : Ind City ; + + fun Countries_UZB_provinces_Qasqadare : Ind Province ; + + fun Countries_UZB_provinces_Qasqadare_cities_Qarshi : Ind City ; + + fun Countries_UZB_provinces_Qoraqalpoghiston : Ind Province ; + + fun Countries_UZB_provinces_Qoraqalpoghiston_cities_Nukus : Ind City ; + + fun Countries_UZB_provinces_Samarqand : Ind Province ; + + fun Countries_UZB_provinces_Samarqand_cities_Samarqand : Ind City ; + + fun Countries_UZB_provinces_Sirdare : Ind Province ; + + fun Countries_UZB_provinces_Sirdare_cities_Guliston : Ind City ; + + fun Countries_UZB_provinces_Surkhondare : Ind Province ; + + fun Countries_UZB_provinces_Surkhondare_cities_Termiz : Ind City ; + + fun Countries_UZB_provinces_Toshkent : Ind Province ; + + fun Countries_UZB_provinces_Toshkent_cities_Angren : Ind City ; + + fun Countries_UZB_provinces_Toshkent_cities_Chirchiq : Ind City ; + + fun Countries_UZB_provinces_Toshkent_cities_Olmaliq : Ind City ; + + fun Countries_UZB_provinces_Toshkent_cities_Tashkent : Ind City ; + + fun Countries_VN_cities_CamPha : Ind City ; + + fun Countries_VN_cities_CanTho : Ind City ; + + fun Countries_VN_cities_DaNang : Ind City ; + + fun Countries_VN_cities_Haiphong : Ind City ; + + fun Countries_VN_cities_Hanoi : Ind City ; + + fun Countries_VN_cities_HongGai : Ind City ; + + fun Countries_VN_cities_Hue : Ind City ; + + fun Countries_VN_cities_LongXuyen : Ind City ; + + fun Countries_VN_cities_NamDinh : Ind City ; + + fun Countries_VN_cities_NhaTrang : Ind City ; + + fun Countries_VN_cities_QuiNhon : Ind City ; + + fun Countries_VN_cities_Saigon : Ind City ; + + fun Countries_VN_cities_ThaiNguyen : Ind City ; + + fun Countries_VN_cities_VietTri : Ind City ; + + fun Countries_VN_cities_VungTau : Ind City ; + + fun Countries_VN_provinces_AnGiang : Ind Province ; + + fun Countries_VN_provinces_BaRiaVungTau : Ind Province ; + + fun Countries_VN_provinces_BacThai : Ind Province ; + + fun Countries_VN_provinces_BenTre : Ind Province ; + + fun Countries_VN_provinces_BinhDinh : Ind Province ; + + fun Countries_VN_provinces_BinhThuan : Ind Province ; + + fun Countries_VN_provinces_CanTho : Ind Province ; + + fun Countries_VN_provinces_CaoBang : Ind Province ; + + fun Countries_VN_provinces_CentralHighlands : Ind Province ; + + fun Countries_VN_provinces_DacLac : Ind Province ; + + fun Countries_VN_provinces_DongNai : Ind Province ; + + fun Countries_VN_provinces_DongThap : Ind Province ; + + fun Countries_VN_provinces_GiaLai : Ind Province ; + + fun Countries_VN_provinces_HaBac : Ind Province ; + + fun Countries_VN_provinces_HaGiang : Ind Province ; + + fun Countries_VN_provinces_HaTay : Ind Province ; + + fun Countries_VN_provinces_HaTinh : Ind Province ; + + fun Countries_VN_provinces_HaiHung : Ind Province ; + + fun Countries_VN_provinces_Haiphong : Ind Province ; + + fun Countries_VN_provinces_Hanoi : Ind Province ; + + fun Countries_VN_provinces_HoChiMinhCity : Ind Province ; + + fun Countries_VN_provinces_HoaBinh : Ind Province ; + + fun Countries_VN_provinces_KhanhHoa : Ind Province ; + + fun Countries_VN_provinces_KienGiang : Ind Province ; + + fun Countries_VN_provinces_KonTum : Ind Province ; + + fun Countries_VN_provinces_LaiChau : Ind Province ; + + fun Countries_VN_provinces_LamDong : Ind Province ; + + fun Countries_VN_provinces_LangSon : Ind Province ; + + fun Countries_VN_provinces_LaoCai : Ind Province ; + + fun Countries_VN_provinces_LongAn : Ind Province ; + + fun Countries_VN_provinces_MekongRiverDelta : Ind Province ; + + fun Countries_VN_provinces_MinhHai : Ind Province ; + + fun Countries_VN_provinces_NamHa : Ind Province ; + + fun Countries_VN_provinces_NgheAn : Ind Province ; + + fun Countries_VN_provinces_NinhBinh : Ind Province ; + + fun Countries_VN_provinces_NinhThuan : Ind Province ; + + fun Countries_VN_provinces_NorthCentralCoast : Ind Province ; + + fun Countries_VN_provinces_NorthEastSouth : Ind Province ; + + fun Countries_VN_provinces_NorthMountainandMidlands : Ind Province ; + + fun Countries_VN_provinces_PhuYen : Ind Province ; + + fun Countries_VN_provinces_QuangBinh : Ind Province ; + + fun Countries_VN_provinces_QuangNamDaNang : Ind Province ; + + fun Countries_VN_provinces_QuangNgai : Ind Province ; + + fun Countries_VN_provinces_QuangNinh : Ind Province ; + + fun Countries_VN_provinces_QuangTri : Ind Province ; + + fun Countries_VN_provinces_RedRiverDelta : Ind Province ; + + fun Countries_VN_provinces_SocTrang : Ind Province ; + + fun Countries_VN_provinces_SonLa : Ind Province ; + + fun Countries_VN_provinces_SongBe : Ind Province ; + + fun Countries_VN_provinces_SouthCentralCoast : Ind Province ; + + fun Countries_VN_provinces_TayNinh : Ind Province ; + + fun Countries_VN_provinces_ThaiBinh : Ind Province ; + + fun Countries_VN_provinces_ThanhHoa : Ind Province ; + + fun Countries_VN_provinces_ThuaThienHue : Ind Province ; + + fun Countries_VN_provinces_TienGiang : Ind Province ; + + fun Countries_VN_provinces_TraVinh : Ind Province ; + + fun Countries_VN_provinces_TuyenQuang : Ind Province ; + + fun Countries_VN_provinces_VinhLong : Ind Province ; + + fun Countries_VN_provinces_VinhPhu : Ind Province ; + + fun Countries_VN_provinces_YenBai : Ind Province ; + + fun Countries_VU_cities_Port_Vila : Ind City ; + + fun Countries_V_cities_VaticanCity : Ind City ; + + fun Countries_WAG_cities_Banjul : Ind City ; + + fun Countries_WAL_cities_Freetown : Ind City ; + + fun Countries_WAN_cities_Aarri : Ind City ; + + fun Countries_WAN_cities_Aba : Ind City ; + + fun Countries_WAN_cities_Abeokuta : Ind City ; + + fun Countries_WAN_cities_Abuja : Ind City ; + + fun Countries_WAN_cities_AdoEkiti : Ind City ; + + fun Countries_WAN_cities_Akure : Ind City ; + + fun Countries_WAN_cities_BeninCity : Ind City ; + + fun Countries_WAN_cities_Bida : Ind City ; + + fun Countries_WAN_cities_Calabar : Ind City ; + + fun Countries_WAN_cities_DebaHabe : Ind City ; + + fun Countries_WAN_cities_Ede : Ind City ; + + fun Countries_WAN_cities_EffonAlaiye : Ind City ; + + fun Countries_WAN_cities_Enugu : Ind City ; + + fun Countries_WAN_cities_Gusau : Ind City ; + + fun Countries_WAN_cities_Ibadan : Ind City ; + + fun Countries_WAN_cities_Ife : Ind City ; + + fun Countries_WAN_cities_IjebuOde : Ind City ; + + fun Countries_WAN_cities_Ikare : Ind City ; + + fun Countries_WAN_cities_Ikerre : Ind City ; + + fun Countries_WAN_cities_Ikire : Ind City ; + + fun Countries_WAN_cities_Ikirun : Ind City ; + + fun Countries_WAN_cities_Ikorodu : Ind City ; + + fun Countries_WAN_cities_Ila : Ind City ; + + fun Countries_WAN_cities_IlaweEkiti : Ind City ; + + fun Countries_WAN_cities_Ilesha : Ind City ; + + fun Countries_WAN_cities_Ilobu : Ind City ; + + fun Countries_WAN_cities_Ilorin : Ind City ; + + fun Countries_WAN_cities_Inisa : Ind City ; + + fun Countries_WAN_cities_Iseyin : Ind City ; + + fun Countries_WAN_cities_Iwo : Ind City ; + + fun Countries_WAN_cities_Jos : Ind City ; + + fun Countries_WAN_cities_Kaduna : Ind City ; + + fun Countries_WAN_cities_Kano : Ind City ; + + fun Countries_WAN_cities_Katsina : Ind City ; + + fun Countries_WAN_cities_Kumo : Ind City ; + + fun Countries_WAN_cities_Lafia : Ind City ; + + fun Countries_WAN_cities_Lagos : Ind City ; + + fun Countries_WAN_cities_Maiduguri : Ind City ; + + fun Countries_WAN_cities_Makurdi : Ind City ; + + fun Countries_WAN_cities_Minna : Ind City ; + + fun Countries_WAN_cities_Mushin : Ind City ; + + fun Countries_WAN_cities_Offa : Ind City ; + + fun Countries_WAN_cities_Ogbomosho : Ind City ; + + fun Countries_WAN_cities_Oka : Ind City ; + + fun Countries_WAN_cities_Ondo : Ind City ; + + fun Countries_WAN_cities_Onitsha : Ind City ; + + fun Countries_WAN_cities_Oshogbo : Ind City ; + + fun Countries_WAN_cities_Owo : Ind City ; + + fun Countries_WAN_cities_Oyo : Ind City ; + + fun Countries_WAN_cities_PortHarcourt : Ind City ; + + fun Countries_WAN_cities_Sapele : Ind City ; + + fun Countries_WAN_cities_Shagamu : Ind City ; + + fun Countries_WAN_cities_Shaki : Ind City ; + + fun Countries_WAN_cities_Shomolu : Ind City ; + + fun Countries_WAN_cities_Sokoto : Ind City ; + + fun Countries_WAN_cities_Zaria : Ind City ; + + fun Countries_WD_cities_Roseau : Ind City ; + + fun Countries_WG_cities_SaintGeorges : Ind City ; + + fun Countries_WL_cities_Castries : Ind City ; + + fun Countries_WSA_cities_ElAlaiun : Ind City ; + + fun Countries_WS_cities_Apia : Ind City ; + + fun Countries_WV_cities_Kingstown : Ind City ; + + fun Countries_YE_cities_Sanaa : Ind City ; + + fun Countries_YU_cities_Belgrade : Ind City ; + + fun Countries_YV_cities_SantaAnadeCoro : Ind City ; + + fun Countries_YV_cities_Turmero : Ind City ; + + fun Countries_YV_provinces_Amazonas : Ind Province ; + + fun Countries_YV_provinces_Amazonas_cities_PuertoAyacucho : Ind City ; + + fun Countries_YV_provinces_Anzoategui : Ind Province ; + + fun Countries_YV_provinces_Anzoategui_cities_Barcelona : Ind City ; + + fun Countries_YV_provinces_Anzoategui_cities_PuertoLaCruz : Ind City ; + + fun Countries_YV_provinces_Apure : Ind Province ; + + fun Countries_YV_provinces_Apure_cities_SanFernando : Ind City ; + + fun Countries_YV_provinces_Aragua : Ind Province ; + + fun Countries_YV_provinces_Aragua_cities_Maracay : Ind City ; + + fun Countries_YV_provinces_Barinas : Ind Province ; + + fun Countries_YV_provinces_Barinas_cities_Barinas : Ind City ; + + fun Countries_YV_provinces_Bolivar : Ind Province ; + + fun Countries_YV_provinces_Bolivar_cities_CiudadBolivar : Ind City ; + + fun Countries_YV_provinces_Bolivar_cities_CiudadGuayana : Ind City ; + + fun Countries_YV_provinces_Carabobo : Ind Province ; + + fun Countries_YV_provinces_Carabobo_cities_Guacara : Ind City ; + + fun Countries_YV_provinces_Carabobo_cities_PuertoCabello : Ind City ; + + fun Countries_YV_provinces_Carabobo_cities_Valencia : Ind City ; + + fun Countries_YV_provinces_Cojedes : Ind Province ; + + fun Countries_YV_provinces_Cojedes_cities_SanCarlos : Ind City ; + + fun Countries_YV_provinces_DeltaAmacuro : Ind Province ; + + fun Countries_YV_provinces_DeltaAmacuro_cities_Tucupita : Ind City ; + + fun Countries_YV_provinces_DistritoFederal : Ind Province ; + + fun Countries_YV_provinces_DistritoFederal_cities_Caracas : Ind City ; + + fun Countries_YV_provinces_DistritoFederal_cities_CatiaLaMar : Ind City ; + + fun Countries_YV_provinces_Falcon : Ind Province ; + + fun Countries_YV_provinces_Falcon_cities_Coro : Ind City ; + + fun Countries_YV_provinces_Guarico : Ind Province ; + + fun Countries_YV_provinces_Guarico_cities_SanJuan : Ind City ; + + fun Countries_YV_provinces_Lara : Ind Province ; + + fun Countries_YV_provinces_Lara_cities_Barquisimeto : Ind City ; + + fun Countries_YV_provinces_Merida : Ind Province ; + + fun Countries_YV_provinces_Merida_cities_Merida : Ind City ; + + fun Countries_YV_provinces_Miranda : Ind Province ; + + fun Countries_YV_provinces_Miranda_cities_Baruta : Ind City ; + + fun Countries_YV_provinces_Miranda_cities_Guarenas : Ind City ; + + fun Countries_YV_provinces_Miranda_cities_LosTeques : Ind City ; + + fun Countries_YV_provinces_Miranda_cities_Petare : Ind City ; + + fun Countries_YV_provinces_Monagas : Ind Province ; + + fun Countries_YV_provinces_Monagas_cities_Maturin : Ind City ; + + fun Countries_YV_provinces_NuevaEsparta : Ind Province ; + + fun Countries_YV_provinces_NuevaEsparta_cities_LaAscuncion : Ind City ; + + fun Countries_YV_provinces_Portuguesa : Ind Province ; + + fun Countries_YV_provinces_Portuguesa_cities_Acarigua : Ind City ; + + fun Countries_YV_provinces_Portuguesa_cities_Guanare : Ind City ; + + fun Countries_YV_provinces_Sucre : Ind Province ; + + fun Countries_YV_provinces_Sucre_cities_Cumana : Ind City ; + + fun Countries_YV_provinces_Tachira : Ind Province ; + + fun Countries_YV_provinces_Tachira_cities_SanCristobal : Ind City ; + + fun Countries_YV_provinces_Trujillo : Ind Province ; + + fun Countries_YV_provinces_Trujillo_cities_Trujillo : Ind City ; + + fun Countries_YV_provinces_Yaracuy : Ind Province ; + + fun Countries_YV_provinces_Yaracuy_cities_SanFelipe : Ind City ; + + fun Countries_YV_provinces_Zulia : Ind Province ; + + fun Countries_YV_provinces_Zulia_cities_Cabimas : Ind City ; + + fun Countries_YV_provinces_Zulia_cities_Maracaibo : Ind City ; + + fun Countries_ZRE_provinces_Bandundu : Ind Province ; + + fun Countries_ZRE_provinces_Bandundu_cities_Bandundu : Ind City ; + + fun Countries_ZRE_provinces_Bandundu_cities_Kikwit : Ind City ; + + fun Countries_ZRE_provinces_BasZaire : Ind Province ; + + fun Countries_ZRE_provinces_BasZaire_cities_Boma : Ind City ; + + fun Countries_ZRE_provinces_BasZaire_cities_Matadi : Ind City ; + + fun Countries_ZRE_provinces_Equateur : Ind Province ; + + fun Countries_ZRE_provinces_Equateur_cities_Mbandaka : Ind City ; + + fun Countries_ZRE_provinces_HautZaire : Ind Province ; + + fun Countries_ZRE_provinces_HautZaire_cities_Kisangani : Ind City ; + + fun Countries_ZRE_provinces_KasaiOccidental : Ind Province ; + + fun Countries_ZRE_provinces_KasaiOccidental_cities_Kananga : Ind City ; + + fun Countries_ZRE_provinces_KasaiOccidental_cities_Tshikapa : Ind City ; + + fun Countries_ZRE_provinces_KasaiOriental : Ind Province ; + + fun Countries_ZRE_provinces_KasaiOriental_cities_Kalemi : Ind City ; + + fun Countries_ZRE_provinces_KasaiOriental_cities_MbujiMayi : Ind City ; + + fun Countries_ZRE_provinces_KasaiOriental_cities_MweneDitu : Ind City ; + + fun Countries_ZRE_provinces_Kinshasa : Ind Province ; + + fun Countries_ZRE_provinces_Kinshasa_cities_Kinshasa : Ind City ; + + fun Countries_ZRE_provinces_Kivu : Ind Province ; + + fun Countries_ZRE_provinces_Kivu_cities_Bukavu : Ind City ; + + fun Countries_ZRE_provinces_Kivu_cities_Butembo : Ind City ; + + fun Countries_ZRE_provinces_Kivu_cities_Goma : Ind City ; + + fun Countries_ZRE_provinces_Kivu_cities_Uvira : Ind City ; + + fun Countries_ZRE_provinces_Shaba : Ind Province ; + + fun Countries_ZRE_provinces_Shaba_cities_Kolwezi : Ind City ; + + fun Countries_ZRE_provinces_Shaba_cities_Likasi : Ind City ; + + fun Countries_ZRE_provinces_Shaba_cities_Lubumbashi : Ind City ; + + fun Countries_ZW_cities_Harare : Ind City ; + + fun Countries_Z_provinces_Central : Ind Province ; + + fun Countries_Z_provinces_Central_cities_Kabwe : Ind City ; + + fun Countries_Z_provinces_Copperbelt : Ind Province ; + + fun Countries_Z_provinces_Copperbelt_cities_Chingola : Ind City ; + + fun Countries_Z_provinces_Copperbelt_cities_Kitwe : Ind City ; + + fun Countries_Z_provinces_Copperbelt_cities_Luanshya : Ind City ; + + fun Countries_Z_provinces_Copperbelt_cities_Mufulira : Ind City ; + + fun Countries_Z_provinces_Copperbelt_cities_Ndola : Ind City ; + + fun Countries_Z_provinces_Eastern : Ind Province ; + + fun Countries_Z_provinces_Eastern_cities_Chipata : Ind City ; + + fun Countries_Z_provinces_Luapula : Ind Province ; + + fun Countries_Z_provinces_Luapula_cities_Mansa : Ind City ; + + fun Countries_Z_provinces_Lusaka : Ind Province ; + + fun Countries_Z_provinces_Lusaka_cities_Lusaka : Ind City ; + + fun Countries_Z_provinces_Northern : Ind Province ; + + fun Countries_Z_provinces_Northern_cities_Kasama : Ind City ; + + fun Countries_Z_provinces_Northwestern : Ind Province ; + + fun Countries_Z_provinces_Northwestern_cities_Solwezi : Ind City ; + + fun Countries_Z_provinces_Southern : Ind Province ; + + fun Countries_Z_provinces_Southern_cities_Livingstone : Ind City ; + + fun Countries_Z_provinces_Western : Ind Province ; + + fun Countries_Z_provinces_Western_cities_Mongu : Ind City ; + + fun Countries_cid_cia_American_Samoa : Ind Country ; + + fun Countries_cid_cia_American_Samoa_cities_PagoPago : Ind City ; + + fun Countries_cid_cia_Anguilla : Ind Country ; + + fun Countries_cid_cia_Anguilla_cities_TheValley : Ind City ; + + fun Countries_cid_cia_Aruba : Ind Country ; + + fun Countries_cid_cia_Aruba_cities_Oranjestad : Ind City ; + + fun Countries_cid_cia_Ashmore_and_Cartier_Islands : Ind Country ; + + fun Countries_cid_cia_Baker_Island : Ind Country ; + + fun Countries_cid_cia_Bassas_da_India : Ind Country ; + + fun Countries_cid_cia_Bermuda : Ind Country ; + + fun Countries_cid_cia_Bermuda_cities_Hamilton : Ind City ; + + fun Countries_cid_cia_Bouvet_Island : Ind Country ; + + fun Countries_cid_cia_British_Indian_Ocean_Territory : Ind Country ; + + fun Countries_cid_cia_British_Virgin_Islands : Ind Country ; + + fun Countries_cid_cia_British_Virgin_Islands_cities_RoadTown : Ind City ; + + fun Countries_cid_cia_Cayman_Islands : Ind Country ; + + fun Countries_cid_cia_Cayman_Islands_cities_GeorgeTown : Ind City ; + + fun Countries_cid_cia_Christmas_Island : Ind Country ; + + fun Countries_cid_cia_Christmas_Island_cities_TheSettlement : Ind City ; + + fun Countries_cid_cia_Clipperton_Island : Ind Country ; + + fun Countries_cid_cia_Cocos_Islands : Ind Country ; + + fun Countries_cid_cia_Cocos_Islands_cities_WestIsland : Ind City ; + + fun Countries_cid_cia_Cook_Islands : Ind Country ; + + fun Countries_cid_cia_Cook_Islands_cities_Avarua : Ind City ; + + fun Countries_cid_cia_Coral_Sea_Islands : Ind Country ; + + fun Countries_cid_cia_Europa_Island : Ind Country ; + + fun Countries_cid_cia_Falkland_Islands : Ind Country ; + + fun Countries_cid_cia_Falkland_Islands_cities_Stanley : Ind City ; + + fun Countries_cid_cia_Faroe_Islands : Ind Country ; + + fun Countries_cid_cia_Faroe_Islands_cities_Torshavn : Ind City ; + + fun Countries_cid_cia_French_Polynesia : Ind Country ; + + fun Countries_cid_cia_French_Polynesia_cities_Papeete : Ind City ; + + fun Countries_cid_cia_French_Southern_and_Antarctic_Lands : Ind Country ; + + fun Countries_cid_cia_Gaza_Strip : Ind Country ; + + fun Countries_cid_cia_Gibraltar : Ind Country ; + + fun Countries_cid_cia_Gibraltar_cities_Gibraltar : Ind City ; + + fun Countries_cid_cia_Glorioso_Islands : Ind Country ; + + fun Countries_cid_cia_Greenland : Ind Country ; + + fun Countries_cid_cia_Greenland_cities_Nuuk : Ind City ; + + fun Countries_cid_cia_Guadeloupe : Ind Country ; + + fun Countries_cid_cia_Guadeloupe_cities_Basse_Terre : Ind City ; + + fun Countries_cid_cia_Guam : Ind Country ; + + fun Countries_cid_cia_Guam_cities_Agana : Ind City ; + + fun Countries_cid_cia_Guernsey : Ind Country ; + + fun Countries_cid_cia_Guernsey_cities_SaintPeterPort : Ind City ; + + fun Countries_cid_cia_Heard_Island_and_McDonald_Islands : Ind Country ; + + fun Countries_cid_cia_Hong_Kong : Ind Country ; + + fun Countries_cid_cia_Howland_Island : Ind Country ; + + fun Countries_cid_cia_Jan_Mayen : Ind Country ; + + fun Countries_cid_cia_Jarvis_Island : Ind Country ; + + fun Countries_cid_cia_Jersey : Ind Country ; + + fun Countries_cid_cia_Jersey_cities_SaintHelier : Ind City ; + + fun Countries_cid_cia_Johnston_Atoll : Ind Country ; + + fun Countries_cid_cia_Juan_de_Nova_Island : Ind Country ; + + fun Countries_cid_cia_Kingman_Reef : Ind Country ; + + fun Countries_cid_cia_Macau : Ind Country ; + + fun Countries_cid_cia_Macau_cities_Macau : Ind City ; + + fun Countries_cid_cia_Man : Ind Country ; + + fun Countries_cid_cia_Man_cities_Douglas : Ind City ; + + fun Countries_cid_cia_Martinique : Ind Country ; + + fun Countries_cid_cia_Martinique_cities_Fort_de_France : Ind City ; + + fun Countries_cid_cia_Mayotte : Ind Country ; + + fun Countries_cid_cia_Mayotte_cities_Mamoutzou : Ind City ; + + fun Countries_cid_cia_Midway_Islands : Ind Country ; + + fun Countries_cid_cia_Montserrat : Ind Country ; + + fun Countries_cid_cia_Montserrat_cities_Plymouth : Ind City ; + + fun Countries_cid_cia_Navassa_Island : Ind Country ; + + fun Countries_cid_cia_Netherlands_Antilles : Ind Country ; + + fun Countries_cid_cia_Netherlands_Antilles_cities_Willemstad : Ind City ; + + fun Countries_cid_cia_Niue : Ind Country ; + + fun Countries_cid_cia_Niue_cities_Alofi : Ind City ; + + fun Countries_cid_cia_Norfolk_Island : Ind Country ; + + fun Countries_cid_cia_Norfolk_Island_cities_Kingston : Ind City ; + + fun Countries_cid_cia_Northern_Mariana_Islands : Ind Country ; + + fun Countries_cid_cia_Northern_Mariana_Islands_cities_Saipan : Ind City ; + + fun Countries_cid_cia_Palmyra_Atoll : Ind Country ; + + fun Countries_cid_cia_Paracel_Islands : Ind Country ; + + fun Countries_cid_cia_Pitcairn_Islands : Ind Country ; + + fun Countries_cid_cia_Pitcairn_Islands_cities_Adamstown : Ind City ; + + fun Countries_cid_cia_Puerto_Rico : Ind Country ; + + fun Countries_cid_cia_Puerto_Rico_cities_SanJuan : Ind City ; + + fun Countries_cid_cia_Reunion : Ind Country ; + + fun Countries_cid_cia_Reunion_cities_Saint_Denis : Ind City ; + + fun Countries_cid_cia_Saint_Helena : Ind Country ; + + fun Countries_cid_cia_Saint_Helena_cities_Jamestown : Ind City ; + + fun Countries_cid_cia_Saint_Pierre_and_Miquelon : Ind Country ; + + fun Countries_cid_cia_Saint_Pierre_and_Miquelon_cities_Saint_Pierre : Ind City ; + + fun Countries_cid_cia_South_Georgia_and_the_South_Sandwich_Islands : Ind Country ; + + fun Countries_cid_cia_Spratly_Islands : Ind Country ; + + fun Countries_cid_cia_Svalbard : Ind Country ; + + fun Countries_cid_cia_Svalbard_cities_Longyearbyen : Ind City ; + + fun Countries_cid_cia_Tokelau : Ind Country ; + + fun Countries_cid_cia_Tromelin_Island : Ind Country ; + + fun Countries_cid_cia_Turks_and_Caicos_Islands : Ind Country ; + + fun Countries_cid_cia_Turks_and_Caicos_Islands_cities_GrandTurk : Ind City ; + + fun Countries_cid_cia_Virgin_Islands : Ind Country ; + + fun Countries_cid_cia_Virgin_Islands_cities_CharlotteAmalie : Ind City ; + + fun Countries_cid_cia_Wake_Island : Ind Country ; + + fun Countries_cid_cia_Wallis_and_Futuna : Ind Country ; + + fun Countries_cid_cia_Wallis_and_Futuna_cities_Mata_Utu : Ind City ; + + fun Countries_cid_cia_West_Bank : Ind Country ; + + fun Country : Class ; + + fun Croatia : Ind (both Country Nation); + + fun Cuba : Ind (both Country (both Nation Island)) ; + + fun Cyprus : Ind (both Country Nation); + + fun CzechRepublic : Ind (both Country Nation); + + fun Denmark : Ind (both Country EuropeanNation); + + fun Deserts_ArabianDesert : Ind Desert ; + + fun Deserts_Asauad : Ind Desert ; + + fun Deserts_Atacama : Ind Desert ; + + fun Deserts_Dschurab : Ind Desert ; + + fun Deserts_ErgIgidi : Ind Desert ; + + fun Deserts_ErgRebiana : Ind Desert ; + + fun Deserts_ErgSchesch : Ind Desert ; + + fun Deserts_ErgdeBilma : Ind Desert ; + + fun Deserts_Fesan : Ind Desert ; + + fun Deserts_GibsonDesert : Ind Desert ; + + fun Deserts_GrandErgEst : Ind Desert ; + + fun Deserts_GrandErgOuest : Ind Desert ; + + fun Deserts_GrandSandDesert : Ind Desert ; + + fun Deserts_GrandVictoriaDesert : Ind Desert ; + + fun Deserts_HamadaduDraa : Ind Desert ; + + fun Deserts_Hamadael_Hamra : Ind Desert ; + + fun Deserts_Kalahari : Ind Desert ; + + fun Deserts_Karakum : Ind Desert ; + + fun Deserts_Kysylkum : Ind Desert ; + + fun Deserts_LibyanDesert : Ind Desert ; + + fun Deserts_Makteir : Ind Desert ; + + fun Deserts_Mujunkum : Ind Desert ; + + fun Deserts_NubianDesert : Ind Desert ; + + fun Deserts_Sagiael_Hamra : Ind Desert ; + + fun Deserts_SimpsonDesert : Ind Desert ; + + fun Deserts_Tanami : Ind Desert ; + + fun Deserts_Tanesruft : Ind Desert ; + + fun Deserts_Tenere : Ind Desert ; + + fun Deserts_Trarza : Ind Desert ; + + fun Deserts_Uaran : Ind Desert ; + + fun Djibouti : Ind (both Country Nation); + + fun Dominica : Ind (both Country Nation); + + fun DominicanRepublic : Ind (both Country Nation); + + fun Ecuador : Ind (both Country Nation); + + fun Egypt : Ind (both Country Nation); + + fun ElSalvador : Ind (both Country Nation); + + fun EquatorialGuinea : Ind (both Country Nation); + + fun Eritrea : Ind (both Country Nation); + + fun Estonia : Ind (both Country Nation); + + fun Ethiopia : Ind (both Country Nation); + + fun Fiji : Ind (both Country Nation); + + fun Finland : Ind (both Country EuropeanNation); + + fun France : Ind (both Country EuropeanNation); + + fun FrenchGuiana : Ind (both Country (both LandArea DependencyOrSpecialSovereigntyArea)) ; + + fun Gabon : Ind (both Country Nation); + + fun Gambia : Ind (both Country Nation); + + fun Georgia : Ind (both Country Nation); + + fun Germany : Ind (both Country EuropeanNation); + + fun Ghana : Ind (both Country Nation); + + fun Greece : Ind (both Country EuropeanNation); + + fun Grenada : Ind (both Country Nation); + + fun Guatemala : Ind (both Country Nation); + + fun Guinea : Ind (both Country Nation); + + fun Guinea_Bissau : Ind Country ; + + fun Guyana : Ind (both Country Nation); + + fun Haiti : Ind (both Country Nation); + + fun HolySee : Ind (both Country EuropeanNation); + + fun Honduras : Ind (both Country Nation); + + fun Hungary : Ind (both Country Nation); + + fun Iceland : Ind (both Country (both EuropeanNation Island)) ; + + fun India : Ind (both Country Nation); + + fun Indonesia : Ind (both Country Nation); + + fun Iran : Ind (both Country Nation); + + fun Iraq : Ind (both Country Nation); + + fun Ireland : Ind (both Country EuropeanNation); + + fun Islands_Aland : Ind Island ; + + fun Islands_Alderney : Ind Island ; + + fun Islands_Alicudi : Ind Island ; + + fun Islands_Anglesey : Ind Island ; + + fun Islands_Anguilla : Ind Island ; + + fun Islands_Anjouan : Ind Island ; + + fun Islands_Antigua : Ind Island ; + + fun Islands_Arran : Ind Island ; + + fun Islands_Ascension : Ind Island ; + + fun Islands_Aust_Vagoey : Ind Island ; + + fun Islands_BaffinIsland : Ind Island ; + + fun Islands_Bahamas : Ind Island ; + + fun Islands_Bali : Ind Island ; + + fun Islands_BanksIsland : Ind Island ; + + fun Islands_Barbados : Ind Island ; + + fun Islands_Barbuda : Ind Island ; + + fun Islands_Barra : Ind Island ; + + fun Islands_Benbecula : Ind Island ; + + fun Islands_Bermuda : Ind Island ; + + fun Islands_BishopRock : Ind Island ; + + fun Islands_Bohol : Ind Island ; + + fun Islands_Bornholm : Ind Island ; + + fun Islands_CangarooIsland : Ind Island ; + + fun Islands_Cayman : Ind Island ; + + fun Islands_CaymanBrac : Ind Island ; + + fun Islands_Chios : Ind Island ; + + fun Islands_Coll : Ind Island ; + + fun Islands_Colonsay : Ind Island ; + + fun Islands_Cuba : Ind Island ; + + fun Islands_Dagoe : Ind Island ; + + fun Islands_Dominica : Ind Island ; + + fun Islands_EastCaicos : Ind Island ; + + fun Islands_Falster : Ind Island ; + + fun Islands_FernandoPoo : Ind Island ; + + fun Islands_Fidschi : Ind Island ; + + fun Islands_Flores : Ind Island ; + + fun Islands_Formentera : Ind Island ; + + fun Islands_Fuenen : Ind Island ; + + fun Islands_Fuerteventura : Ind Island ; + + fun Islands_Gheschm : Ind Island ; + + fun Islands_Gomera : Ind Island ; + + fun Islands_Gotland : Ind Island ; + + fun Islands_GrKomoro : Ind Island ; + + fun Islands_GranCanaria : Ind Island ; + + fun Islands_GrandCaicos : Ind Island ; + + fun Islands_Grenada : Ind Island ; + + fun Islands_Guadeloupe : Ind Island ; + + fun Islands_Guernsey : Ind Island ; + + fun Islands_Harris : Ind Island ; + + fun Islands_Hawaii : Ind Island ; + + fun Islands_Hierro : Ind Island ; + + fun Islands_Hispaniola : Ind Island ; + + fun Islands_Hokkaido : Ind Island ; + + fun Islands_Honshu : Ind Island ; + + fun Islands_Hoy : Ind Island ; + + fun Islands_Ibiza : Ind Island ; + + fun Islands_Iceland : Ind Island ; + + fun Islands_Ikaria : Ind Island ; + + fun Islands_Iona : Ind Island ; + + fun Islands_Isabela : Ind Island ; + + fun Islands_Islay : Ind Island ; + + fun Islands_IsleofMan : Ind Island ; + + fun Islands_Jamaica : Ind Island ; + + fun Islands_JanMayen : Ind Island ; + + fun Islands_Jersey : Ind Island ; + + fun Islands_Jura : Ind Island ; + + fun Islands_Kauai : Ind Island ; + + fun Islands_Kefallinia : Ind Island ; + + fun Islands_Khark : Ind Island ; + + fun Islands_Kiribati : Ind Island ; + + fun Islands_Korfu : Ind Island ; + + fun Islands_Kos : Ind Island ; + + fun Islands_Kotelnyisland : Ind Island ; + + fun Islands_Kreta : Ind Island ; + + fun Islands_Kyushu : Ind Island ; + + fun Islands_LaPalma : Ind Island ; + + fun Islands_Lampedusa : Ind Island ; + + fun Islands_Lanai : Ind Island ; + + fun Islands_Langeland : Ind Island ; + + fun Islands_Lanzarote : Ind Island ; + + fun Islands_Lavan : Ind Island ; + + fun Islands_Lefkas : Ind Island ; + + fun Islands_Lewis : Ind Island ; + + fun Islands_Leyte : Ind Island ; + + fun Islands_Linosa : Ind Island ; + + fun Islands_Lipari : Ind Island ; + + fun Islands_LittleCayman : Ind Island ; + + fun Islands_Lolland : Ind Island ; + + fun Islands_Lundy : Ind Island ; + + fun Islands_Luzon : Ind Island ; + + fun Islands_Madagaskar : Ind Island ; + + fun Islands_Madeira : Ind Island ; + + fun Islands_Mainland : Ind Island ; + + fun Islands_Mallorca : Ind Island ; + + fun Islands_Malta : Ind Island ; + + fun Islands_MarthasVineyard : Ind Island ; + + fun Islands_Martinique : Ind Island ; + + fun Islands_Maui : Ind Island ; + + fun Islands_Mauritius : Ind Island ; + + fun Islands_Mayotta : Ind Island ; + + fun Islands_MelvilleIsland : Ind Island ; + + fun Islands_Menorca : Ind Island ; + + fun Islands_Mindanao : Ind Island ; + + fun Islands_Mindoro : Ind Island ; + + fun Islands_Mohilla : Ind Island ; + + fun Islands_Molokai : Ind Island ; + + fun Islands_Montserrat : Ind Island ; + + fun Islands_Mull : Ind Island ; + + fun Islands_Nantucket : Ind Island ; + + fun Islands_Nauru : Ind Island ; + + fun Islands_Negros : Ind Island ; + + fun Islands_Nevis : Ind Island ; + + fun Islands_NewCaledonia : Ind Island ; + + fun Islands_NorthCaicos : Ind Island ; + + fun Islands_NorthUlist : Ind Island ; + + fun Islands_Oahu : Ind Island ; + + fun Islands_Oeland : Ind Island ; + + fun Islands_Oesel : Ind Island ; + + fun Islands_Palau : Ind Island ; + + fun Islands_Palawan : Ind Island ; + + fun Islands_Panarea : Ind Island ; + + fun Islands_Panay : Ind Island ; + + fun Islands_Paramuschir : Ind Island ; + + fun Islands_Patmos : Ind Island ; + + fun Islands_PortoSanto : Ind Island ; + + fun Islands_PrinceCharlesIsland : Ind Island ; + + fun Islands_PrinceEdwardIsland : Ind Island ; + + fun Islands_PrinceofWalesIsland : Ind Island ; + + fun Islands_Providenciales : Ind Island ; + + fun Islands_Rhodos : Ind Island ; + + fun Islands_Rhum : Ind Island ; + + fun Islands_Sachalin : Ind Island ; + + fun Islands_SaintKitts : Ind Island ; + + fun Islands_SaintLucia : Ind Island ; + + fun Islands_SaintVincent : Ind Island ; + + fun Islands_Salina : Ind Island ; + + fun Islands_Samar : Ind Island ; + + fun Islands_Samos : Ind Island ; + + fun Islands_SanClementeIsland : Ind Island ; + + fun Islands_SanMiguelIsland : Ind Island ; + + fun Islands_Sanday : Ind Island ; + + fun Islands_SantaCatalinaIsland : Ind Island ; + + fun Islands_SantaCruzIsland : Ind Island ; + + fun Islands_SantaMaria : Ind Island ; + + fun Islands_SantaRosaIsland : Ind Island ; + + fun Islands_SaoMiguel : Ind Island ; + + fun Islands_SaoTomeandPrincipe : Ind Island ; + + fun Islands_Seeland : Ind Island ; + + fun Islands_Shikoku : Ind Island ; + + fun Islands_Skye : Ind Island ; + + fun Islands_SouthRonaldson : Ind Island ; + + fun Islands_SouthUlist : Ind Island ; + + fun Islands_SouthamptonIsland : Ind Island ; + + fun Islands_SriLanka : Ind Island ; + + fun Islands_St_Helena : Ind Island ; + + fun Islands_Staffa : Ind Island ; + + fun Islands_Stromboli : Ind Island ; + + fun Islands_Sumatra : Ind Island ; + + fun Islands_Taiwan : Ind Island ; + + fun Islands_Tasmania : Ind Island ; + + fun Islands_Teneriffa : Ind Island ; + + fun Islands_Tilos : Ind Island ; + + fun Islands_Tiree : Ind Island ; + + fun Islands_Tobago : Ind Island ; + + fun Islands_Tonga : Ind Island ; + + fun Islands_Trinidad : Ind Island ; + + fun Islands_Tuvalu : Ind Island ; + + fun Islands_VancouverIsland : Ind Island ; + + fun Islands_Vanuatu : Ind Island ; + + fun Islands_VictoriaIsland : Ind Island ; + + fun Islands_Vulcano : Ind Island ; + + fun Islands_Westray : Ind Island ; + + fun Islands_Westsamoa : Ind Island ; + + fun Islands_Zakinthos : Ind Island ; + + fun Israel : Ind (both Country Nation); + + fun Italy : Ind (both Country EuropeanNation); + + fun Jamaica : Ind (both Country Nation); + + fun Japan : Ind (both Country (both Nation Island)) ; + + fun Jordan : Ind (both Country Nation); + + fun Kazakstan : Ind Country ; + + fun Kenya : Ind (both Country Nation); + + fun Kiribati : Ind (both Country Nation); + + fun Kuwait : Ind (both Country Nation); + + fun Kyrgyzstan : Ind (both Country Nation); + + fun Lakes_Arresee : Ind Lake ; + + fun Lakes_BarragedeMbakaou : Ind Lake ; + + fun Lakes_Bodensee : Ind Lake ; + + fun Lakes_CaspianSea : Ind Lake ; + + fun Lakes_ChicamaugaLake : Ind Lake ; + + fun Lakes_DaryachehyeNamak : Ind Lake ; + + fun Lakes_Disappointment_Lake : Ind Lake ; + + fun Lakes_F_D_R_Lake : Ind Lake ; + + fun Lakes_GreatBearLake : Ind Lake ; + + fun Lakes_GreatSaltLake : Ind Lake ; + + fun Lakes_GreatSlaveLake : Ind Lake ; + + fun Lakes_HamuneJazMurian : Ind Lake ; + + fun Lakes_Inari : Ind Lake ; + + fun Lakes_Issyk_Kul : Ind Lake ; + + fun Lakes_KentuckyLake : Ind Lake ; + + fun Lakes_LacLeman : Ind Lake ; + + fun Lakes_LagoMaggiore : Ind Lake ; + + fun Lakes_LagodeChapala : Ind Lake ; + + fun Lakes_LagodiComo : Ind Lake ; + + fun Lakes_LagodiGarda : Ind Lake ; + + fun Lakes_LakeAbaya : Ind Lake ; + + fun Lakes_LakeAlbert : Ind Lake ; + + fun Lakes_LakeAmadeus : Ind Lake ; + + fun Lakes_LakeAssale : Ind Lake ; + + fun Lakes_LakeBangweulu : Ind Lake ; + + fun Lakes_LakeCabora_Bassa : Ind Lake ; + + fun Lakes_LakeChilwa : Ind Lake ; + + fun Lakes_LakeEduard : Ind Lake ; + + fun Lakes_LakeErie : Ind Lake ; + + fun Lakes_LakeEtoscha : Ind Lake ; + + fun Lakes_LakeEyasi : Ind Lake ; + + fun Lakes_LakeEyre : Ind Lake ; + + fun Lakes_LakeHuron : Ind Lake ; + + fun Lakes_LakeKainji : Ind Lake ; + + fun Lakes_LakeKalla : Ind Lake ; + + fun Lakes_LakeKariba : Ind Lake ; + + fun Lakes_LakeKioga : Ind Lake ; + + fun Lakes_LakeKivu : Ind Lake ; + + fun Lakes_LakeLeopold_II : Ind Lake ; + + fun Lakes_LakeMackay : Ind Lake ; + + fun Lakes_LakeMakarikari : Ind Lake ; + + fun Lakes_LakeMaracaibo : Ind Lake ; + + fun Lakes_LakeMeade : Ind Lake ; + + fun Lakes_LakeMichigan : Ind Lake ; + + fun Lakes_LakeMweru : Ind Lake ; + + fun Lakes_LakeNaesi : Ind Lake ; + + fun Lakes_LakeNasser : Ind Lake ; + + fun Lakes_LakeNatron : Ind Lake ; + + fun Lakes_LakeNgami : Ind Lake ; + + fun Lakes_LakeNicaragua : Ind Lake ; + + fun Lakes_LakeNipigon : Ind Lake ; + + fun Lakes_LakeNyasa : Ind Lake ; + + fun Lakes_LakeOhrid : Ind Lake ; + + fun Lakes_LakeOkeechobee : Ind Lake ; + + fun Lakes_LakeOntario : Ind Lake ; + + fun Lakes_LakeOri : Ind Lake ; + + fun Lakes_LakePowell : Ind Lake ; + + fun Lakes_LakePrespa : Ind Lake ; + + fun Lakes_LakeRudolph : Ind Lake ; + + fun Lakes_LakeRukwa : Ind Lake ; + + fun Lakes_LakeSaima : Ind Lake ; + + fun Lakes_LakeSkutari : Ind Lake ; + + fun Lakes_LakeStephanie : Ind Lake ; + + fun Lakes_LakeSuat : Ind Lake ; + + fun Lakes_LakeSuperior : Ind Lake ; + + fun Lakes_LakeTahoe : Ind Lake ; + + fun Lakes_LakeTana : Ind Lake ; + + fun Lakes_LakeTanganjika : Ind Lake ; + + fun Lakes_LakeTiticaca : Ind Lake ; + + fun Lakes_LakeTorren : Ind Lake ; + + fun Lakes_LakeTumba : Ind Lake ; + + fun Lakes_LakeUrumiyeh : Ind Lake ; + + fun Lakes_LakeVictoria : Ind Lake ; + + fun Lakes_LakeVolta : Ind Lake ; + + fun Lakes_LakeWilliston : Ind Lake ; + + fun Lakes_LakeWinnipeg : Ind Lake ; + + fun Lakes_LakeWinnipesaukee : Ind Lake ; + + fun Lakes_Maelaren : Ind Lake ; + + fun Lakes_Mjoesen : Ind Lake ; + + fun Lakes_OzeroAral : Ind Lake ; + + fun Lakes_OzeroBaikal : Ind Lake ; + + fun Lakes_OzeroBalchash : Ind Lake ; + + fun Lakes_OzeroChanka : Ind Lake ; + + fun Lakes_OzeroLadoga : Ind Lake ; + + fun Lakes_OzeroOnega : Ind Lake ; + + fun Lakes_OzeroPskovskoje : Ind Lake ; + + fun Lakes_OzeroTaimyr : Ind Lake ; + + fun Lakes_OzeroTschany : Ind Lake ; + + fun Lakes_Paeijaenne : Ind Lake ; + + fun Lakes_Tschadsee : Ind Lake ; + + fun Lakes_Vaenern : Ind Lake ; + + fun Lakes_Vaettern : Ind Lake ; + + fun Laos : Ind (both Country Nation); + + fun Latvia : Ind (both Country Nation); + + fun Lebanon : Ind (both Country Nation); + + fun Lesotho : Ind (both Country Nation); + + fun Liberia : Ind (both Country Nation); + + fun Libya : Ind (both Country Nation); + + fun Liechtenstein : Ind (both Country Nation); + + fun Lithuania : Ind (both Country Nation); + + fun Luxembourg : Ind (both Country Nation); + + fun Macedonia : Ind (both Country Nation); + + fun Madagascar : Ind (both Country Nation); + + fun Malawi : Ind (both Country Nation); + + fun Malaysia : Ind (both Country Nation); + + fun Maldives : Ind (both Country Nation); + + fun Mali : Ind (both Country Nation); + + fun Malta : Ind (both Country EuropeanNation); + + fun MarshallIslands : Ind (both Country Nation); + + fun Mauritania : Ind (both Country Nation); + + fun Mauritius : Ind (both Country Nation); + + fun Mexico : Ind (both Country Nation); + + fun Micronesia : Ind (both Country Nation); + + fun Moldova : Ind (both Country Nation); + + fun Monaco : Ind (both Country EuropeanNation); + + fun Mongolia : Ind (both Country Nation); + + fun Morocco : Ind (both Country Nation); + + fun Mountains_Aconcagua : Ind Mountain ; + + fun Mountains_Bjelucha : Ind Mountain ; + + fun Mountains_BlueMountainPeak : Ind Mountain ; + + fun Mountains_BorahPeak : Ind Mountain ; + + fun Mountains_BoundaryPeak : Ind Mountain ; + + fun Mountains_CathkinPeak : Ind Mountain ; + + fun Mountains_Chimborazo : Ind Mountain ; + + fun Mountains_Citlaltepetl : Ind Mountain ; + + fun Mountains_ClingmansDome : Ind Mountain ; + + fun Mountains_Damavand : Ind Mountain ; + + fun Mountains_DjebelAures : Ind Mountain ; + + fun Mountains_Elbrus : Ind Mountain ; + + fun Mountains_EmiKussi : Ind Mountain ; + + fun Mountains_Fako : Ind Mountain ; + + fun Mountains_Feldberg : Ind Mountain ; + + fun Mountains_Fuji_Yama : Ind Mountain ; + + fun Mountains_Galdhoeppig : Ind Mountain ; + + fun Mountains_GannettPeak : Ind Mountain ; + + fun Mountains_Glittertind : Ind Mountain ; + + fun Mountains_GranitePeak : Ind Mountain ; + + fun Mountains_GrosserArber : Ind Mountain ; + + fun Mountains_Grossglockner : Ind Mountain ; + + fun Mountains_GuadalupePeak : Ind Mountain ; + + fun Mountains_Haltiatunturi : Ind Mountain ; + + fun Mountains_HarneyPeak : Ind Mountain ; + + fun Mountains_Hotaka_Dake : Ind Mountain ; + + fun Mountains_Huascaran : Ind Mountain ; + + fun Mountains_HumphreysPeak : Ind Mountain ; + + fun Mountains_Illampu : Ind Mountain ; + + fun Mountains_JabalMarra : Ind Mountain ; + + fun Mountains_Jezerce : Ind Mountain ; + + fun Mountains_Joekul : Ind Mountain ; + + fun Mountains_Jostedalsbre : Ind Mountain ; + + fun Mountains_Kasbek : Ind Mountain ; + + fun Mountains_Kebnekaise : Ind Mountain ; + + fun Mountains_Kenia : Ind Mountain ; + + fun Mountains_Kilimanjaro : Ind Mountain ; + + fun Mountains_Kinabalu : Ind Mountain ; + + fun Mountains_KingsPeak : Ind Mountain ; + + fun Mountains_Korab : Ind Mountain ; + + fun Mountains_Leuser : Ind Mountain ; + + fun Mountains_Llullaillaco : Ind Mountain ; + + fun Mountains_MaunaKea : Ind Mountain ; + + fun Mountains_Meru : Ind Mountain ; + + fun Mountains_Montblanc : Ind Mountain ; + + fun Mountains_MountEverest : Ind Mountain ; + + fun Mountains_MountGodwinAusten : Ind Mountain ; + + fun Mountains_MountMorrison : Ind Mountain ; + + fun Mountains_Mpika : Ind Mountain ; + + fun Mountains_MtAylmer : Ind Mountain ; + + fun Mountains_MtElbert : Ind Mountain ; + + fun Mountains_MtHood : Ind Mountain ; + + fun Mountains_MtMcKinley : Ind Mountain ; + + fun Mountains_MtMitchell : Ind Mountain ; + + fun Mountains_MtRainier : Ind Mountain ; + + fun Mountains_MtRobson : Ind Mountain ; + + fun Mountains_MtWashington : Ind Mountain ; + + fun Mountains_MtWhitney : Ind Mountain ; + + fun Mountains_Mt_Bogong : Ind Mountain ; + + fun Mountains_Mt_Grebun : Ind Mountain ; + + fun Mountains_Mt_Kosciuszko : Ind Mountain ; + + fun Mountains_NevadodeColima : Ind Mountain ; + + fun Mountains_NevadodeToluca : Ind Mountain ; + + fun Mountains_Oeraefajoekull : Ind Mountain ; + + fun Mountains_PicoDuarte : Ind Mountain ; + + fun Mountains_PikChan_Tengri : Ind Mountain ; + + fun Mountains_PikKarl_Marx : Ind Mountain ; + + fun Mountains_PikKommunizma : Ind Mountain ; + + fun Mountains_PikLenina : Ind Mountain ; + + fun Mountains_PikMoskva : Ind Mountain ; + + fun Mountains_PikPobeda : Ind Mountain ; + + fun Mountains_PikRevoluzija : Ind Mountain ; + + fun Mountains_Popocatepetl : Ind Mountain ; + + fun Mountains_Portefjaellen : Ind Mountain ; + + fun Mountains_Pulog : Ind Mountain ; + + fun Mountains_RasDaschan : Ind Mountain ; + + fun Mountains_Sabalan : Ind Mountain ; + + fun Mountains_Sarektjokko : Ind Mountain ; + + fun Mountains_Semeru : Ind Mountain ; + + fun Mountains_Snoefell : Ind Mountain ; + + fun Mountains_Snoehetta : Ind Mountain ; + + fun Mountains_Sulitjelma : Ind Mountain ; + + fun Mountains_Tahan : Ind Mountain ; + + fun Mountains_Tahat : Ind Mountain ; + + fun Mountains_Tamgak : Ind Mountain ; + + fun Mountains_Tarrekaise : Ind Mountain ; + + fun Mountains_Tubhal : Ind Mountain ; + + fun Mountains_Zugspitze : Ind Mountain ; + + fun Mozambique : Ind (both Country Nation); + + fun Namibia : Ind (both Country Nation); + + fun Nauru : Ind (both Country Nation); + + fun Nepal : Ind (both Country Nation); + + fun Netherlands : Ind (both Country EuropeanNation); + + fun NewCaledonia : Ind (both Country (both LandArea DependencyOrSpecialSovereigntyArea)) ; + + fun NewZealand : Ind (both Country Nation); + + fun Nicaragua : Ind (both Country Nation); + + fun Niger : Ind (both Country Nation); + + fun Nigeria : Ind (both Country Nation); + + fun NorthKorea : Ind (both Country Nation); + + fun Norway : Ind (both Country EuropeanNation); + + fun Oman : Ind (both Country Nation); + + fun Organizations_ABEDA : Ind Organization ; + + fun Organizations_ACC : Ind Organization ; + + fun Organizations_ACCT : Ind Organization ; + + fun Organizations_ACP : Ind Organization ; + + fun Organizations_AFESD : Ind Organization ; + + fun Organizations_AG : Ind Organization ; + + fun Organizations_AL : Ind Organization ; + + fun Organizations_AMF : Ind Organization ; + + fun Organizations_AMU : Ind Organization ; + + fun Organizations_ANC : Ind Organization ; + + fun Organizations_ANZUS : Ind Organization ; + + fun Organizations_APEC : Ind Organization ; + + fun Organizations_ASEAN : Ind Organization ; + + fun Organizations_AfDB : Ind Organization ; + + fun Organizations_AsDB : Ind Organization ; + + fun Organizations_BCIE : Ind Organization ; + + fun Organizations_BDEAC : Ind Organization ; + + fun Organizations_BIS : Ind Organization ; + + fun Organizations_BSEC : Ind Organization ; + + fun Organizations_Benelux : Ind Organization ; + + fun Organizations_C : Ind Organization ; + + fun Organizations_CACM : Ind Organization ; + + fun Organizations_CAEU : Ind Organization ; + + fun Organizations_CBSS : Ind Organization ; + + fun Organizations_CCC : Ind Organization ; + + fun Organizations_CDB : Ind Organization ; + + fun Organizations_CE : Ind Organization ; + + fun Organizations_CEAO : Ind Organization ; + + fun Organizations_CEEAC : Ind Organization ; + + fun Organizations_CEI : Ind Organization ; + + fun Organizations_CEMA : Ind Organization ; + + fun Organizations_CEPGL : Ind Organization ; + + fun Organizations_CERN : Ind Organization ; + + fun Organizations_CIS : Ind Organization ; + + fun Organizations_CP : Ind Organization ; + + fun Organizations_Caricom : Ind Organization ; + + fun Organizations_EADB : Ind Organization ; + + fun Organizations_EBRD : Ind Organization ; + + fun Organizations_ECA : Ind Organization ; + + fun Organizations_ECE : Ind Organization ; + + fun Organizations_ECLAC : Ind Organization ; + + fun Organizations_ECO : Ind Organization ; + + fun Organizations_ECOSOC : Ind Organization ; + + fun Organizations_ECOWAS : Ind Organization ; + + fun Organizations_EFTA : Ind Organization ; + + fun Organizations_EIB : Ind Organization ; + + fun Organizations_EN : Ind Organization ; + + fun Organizations_ESA : Ind Organization ; + + fun Organizations_ESCAP : Ind Organization ; + + fun Organizations_ESCWA : Ind Organization ; + + fun Organizations_EU : Ind Organization ; + + fun Organizations_Entente : Ind Organization ; + + fun Organizations_FAO : Ind Organization ; + + fun Organizations_FZ : Ind Organization ; + + fun Organizations_GCC : Ind Organization ; + + fun Organizations_G_10 : Ind Organization ; + + fun Organizations_G_11 : Ind Organization ; + + fun Organizations_G_15 : Ind Organization ; + + fun Organizations_G_19 : Ind Organization ; + + fun Organizations_G_2 : Ind Organization ; + + fun Organizations_G_24 : Ind Organization ; + + fun Organizations_G_3 : Ind Organization ; + + fun Organizations_G_30 : Ind Organization ; + + fun Organizations_G_33 : Ind Organization ; + + fun Organizations_G_5 : Ind Organization ; + + fun Organizations_G_6 : Ind Organization ; + + fun Organizations_G_7 : Ind Organization ; + + fun Organizations_G_77 : Ind Organization ; + + fun Organizations_G_8 : Ind Organization ; + + fun Organizations_G_9 : Ind Organization ; + + fun Organizations_IADB : Ind Organization ; + + fun Organizations_IAEA : Ind Organization ; + + fun Organizations_IBRD : Ind Organization ; + + fun Organizations_ICAO : Ind Organization ; + + fun Organizations_ICC : Ind Organization ; + + fun Organizations_ICFTU : Ind Organization ; + + fun Organizations_ICJ : Ind Organization ; + + fun Organizations_ICRC : Ind Organization ; + + fun Organizations_ICRM : Ind Organization ; + + fun Organizations_IDA : Ind Organization ; + + fun Organizations_IDB : Ind Organization ; + + fun Organizations_IEA : Ind Organization ; + + fun Organizations_IFAD : Ind Organization ; + + fun Organizations_IFC : Ind Organization ; + + fun Organizations_IFRCS : Ind Organization ; + + fun Organizations_IGADD : Ind Organization ; + + fun Organizations_ILO : Ind Organization ; + + fun Organizations_IMF : Ind Organization ; + + fun Organizations_IMO : Ind Organization ; + + fun Organizations_IOC : Ind Organization ; + + fun Organizations_IOM : Ind Organization ; + + fun Organizations_ISO : Ind Organization ; + + fun Organizations_ITU : Ind Organization ; + + fun Organizations_Inmarsat : Ind Organization ; + + fun Organizations_Intelsat : Ind Organization ; + + fun Organizations_Interpol : Ind Organization ; + + fun Organizations_LAES : Ind Organization ; + + fun Organizations_LAIA : Ind Organization ; + + fun Organizations_MINURSO : Ind Organization ; + + fun Organizations_MTCR : Ind Organization ; + + fun Organizations_MekongGroup : Ind Organization ; + + fun Organizations_Mercosur : Ind Organization ; + + fun Organizations_NAM : Ind Organization ; + + fun Organizations_NATO : Ind Organization ; + + fun Organizations_NC : Ind Organization ; + + fun Organizations_NIB : Ind Organization ; + + fun Organizations_NSG : Ind Organization ; + + fun Organizations_OAPEC : Ind Organization ; + + fun Organizations_OAS : Ind Organization ; + + fun Organizations_OAU : Ind Organization ; + + fun Organizations_OECD : Ind Organization ; + + fun Organizations_OECS : Ind Organization ; + + fun Organizations_OIC : Ind Organization ; + + fun Organizations_OPANAL : Ind Organization ; + + fun Organizations_OPEC : Ind Organization ; + + fun Organizations_OSCE : Ind Organization ; + + fun Organizations_PCA : Ind Organization ; + + fun Organizations_PFP : Ind Organization ; + + fun Organizations_RG : Ind Organization ; + + fun Organizations_SAARC : Ind Organization ; + + fun Organizations_SACU : Ind Organization ; + + fun Organizations_SADC : Ind Organization ; + + fun Organizations_SELA : Ind Organization ; + + fun Organizations_SPC : Ind Organization ; + + fun Organizations_SPF : Ind Organization ; + + fun Organizations_Sparteca : Ind Organization ; + + fun Organizations_UDEAC : Ind Organization ; + + fun Organizations_UN : Ind Organization ; + + fun Organizations_UNAMIR : Ind Organization ; + + fun Organizations_UNAVEMIII : Ind Organization ; + + fun Organizations_UNCRO : Ind Organization ; + + fun Organizations_UNCTAD : Ind Organization ; + + fun Organizations_UNDOF : Ind Organization ; + + fun Organizations_UNDP : Ind Organization ; + + fun Organizations_UNEP : Ind Organization ; + + fun Organizations_UNESCO : Ind Organization ; + + fun Organizations_UNFICYP : Ind Organization ; + + fun Organizations_UNFPA : Ind Organization ; + + fun Organizations_UNHCR : Ind Organization ; + + fun Organizations_UNICEF : Ind Organization ; + + fun Organizations_UNIDO : Ind Organization ; + + fun Organizations_UNIFIL : Ind Organization ; + + fun Organizations_UNIKOM : Ind Organization ; + + fun Organizations_UNITAR : Ind Organization ; + + fun Organizations_UNMIH : Ind Organization ; + + fun Organizations_UNMOGIP : Ind Organization ; + + fun Organizations_UNMOT : Ind Organization ; + + fun Organizations_UNOMIG : Ind Organization ; + + fun Organizations_UNOMIL : Ind Organization ; + + fun Organizations_UNPREDEP : Ind Organization ; + + fun Organizations_UNPROFOR : Ind Organization ; + + fun Organizations_UNRISD : Ind Organization ; + + fun Organizations_UNRWA : Ind Organization ; + + fun Organizations_UNTSO : Ind Organization ; + + fun Organizations_UNU : Ind Organization ; + + fun Organizations_UPU : Ind Organization ; + + fun Organizations_WADB : Ind Organization ; + + fun Organizations_WCL : Ind Organization ; + + fun Organizations_WEU : Ind Organization ; + + fun Organizations_WFC : Ind Organization ; + + fun Organizations_WFP : Ind Organization ; + + fun Organizations_WFTU : Ind Organization ; + + fun Organizations_WHO : Ind Organization ; + + fun Organizations_WIPO : Ind Organization ; + + fun Organizations_WMO : Ind Organization ; + + fun Organizations_WToO : Ind Organization ; + + fun Organizations_WTrO : Ind Organization ; + + fun Organizations_ZC : Ind Organization ; + + fun Pakistan : Ind (both Country Nation); + + fun Palau : Ind (both Country Nation); + + fun Panama : Ind (both Country Nation); + + fun PapuaNewGuinea : Ind (both Country Nation); + + fun Paraguay : Ind (both Country Nation); + + fun Peru : Ind (both Country Nation); + + fun Philippines : Ind (both Country Nation); + + fun Poland : Ind (both Country EuropeanNation); + + fun Portugal : Ind (both Country EuropeanNation); + + fun Province : Class ; + + fun Qatar : Ind (both Country Nation); + + fun Rivers_Ajan_Jurjach : Ind River ; + + fun Rivers_Amazonas : Ind River ; + + fun Rivers_Amudarja : Ind River ; + + fun Rivers_Amur : Ind River ; + + fun Rivers_Anuwimi : Ind River ; + + fun Rivers_Argun : Ind River ; + + fun Rivers_Arkansas : Ind River ; + + fun Rivers_Atbara : Ind River ; + + fun Rivers_Bahrel_Djebel : Ind River ; + + fun Rivers_Bahrel_Gasal : Ind River ; + + fun Rivers_Bani : Ind River ; + + fun Rivers_Baro : Ind River ; + + fun Rivers_Benue : Ind River ; + + fun Rivers_Bija : Ind River ; + + fun Rivers_BlackDrin : Ind River ; + + fun Rivers_BlackIrtysch : Ind River ; + + fun Rivers_BlueNile : Ind River ; + + fun Rivers_Bomu : Ind River ; + + fun Rivers_Busira : Ind River ; + + fun Rivers_Casai : Ind River ; + + fun Rivers_Chatanga : Ind River ; + + fun Rivers_Chire : Ind River ; + + fun Rivers_Colorado : Ind River ; + + fun Rivers_ColumbiaRiver : Ind River ; + + fun Rivers_ConnecticutRiver : Ind River ; + + fun Rivers_Cuango : Ind River ; + + fun Rivers_Cuanza : Ind River ; + + fun Rivers_Cuilo : Ind River ; + + fun Rivers_Cunene : Ind River ; + + fun Rivers_Dalaelv : Ind River ; + + fun Rivers_Djuba : Ind River ; + + fun Rivers_Dnepr : Ind River ; + + fun Rivers_Don : Ind River ; + + fun Rivers_Donau : Ind River ; + + fun Rivers_Drin : Ind River ; + + fun Rivers_Elbe : Ind River ; + + fun Rivers_Fulda : Ind River ; + + fun Rivers_Gambia : Ind River ; + + fun Rivers_Garonne : Ind River ; + + fun Rivers_Gloma : Ind River ; + + fun Rivers_Goetaaelv : Ind River ; + + fun Rivers_GrosserJenissej : Ind River ; + + fun Rivers_Han : Ind River ; + + fun Rivers_HudsonRiver : Ind River ; + + fun Rivers_Hwangho : Ind River ; + + fun Rivers_Ingoda : Ind River ; + + fun Rivers_Irtysch : Ind River ; + + fun Rivers_Ischim : Ind River ; + + fun Rivers_Jangtse_Kiang : Ind River ; + + fun Rivers_Jenissej : Ind River ; + + fun Rivers_JoekulsaaFjoellum : Ind River ; + + fun Rivers_Jug : Ind River ; + + fun Rivers_Kafue : Ind River ; + + fun Rivers_Karun : Ind River ; + + fun Rivers_Katun : Ind River ; + + fun Rivers_Kemijoki : Ind River ; + + fun Rivers_Kitakami : Ind River ; + + fun Rivers_Klaraelv : Ind River ; + + fun Rivers_KleinerJenissej : Ind River ; + + fun Rivers_Kokemaeenjoki : Ind River ; + + fun Rivers_Kolyma : Ind River ; + + fun Rivers_Kulu : Ind River ; + + fun Rivers_Kura : Ind River ; + + fun Rivers_Kwa : Ind River ; + + fun Rivers_Lena : Ind River ; + + fun Rivers_Limpopo : Ind River ; + + fun Rivers_Loire : Ind River ; + + fun Rivers_Lomami : Ind River ; + + fun Rivers_Luangwa : Ind River ; + + fun Rivers_Lukuga : Ind River ; + + fun Rivers_Luvua : Ind River ; + + fun Rivers_Mekong : Ind River ; + + fun Rivers_Mississippi : Ind River ; + + fun Rivers_Missouri : Ind River ; + + fun Rivers_Moldau : Ind River ; + + fun Rivers_Neva : Ind River ; + + fun Rivers_Niger : Ind River ; + + fun Rivers_Nile : Ind River ; + + fun Rivers_NorthernDwina : Ind River ; + + fun Rivers_Ob : Ind River ; + + fun Rivers_Oesterdalaelv : Ind River ; + + fun Rivers_Oka : Ind River ; + + fun Rivers_Onon : Ind River ; + + fun Rivers_Oranje : Ind River ; + + fun Rivers_Orinoco : Ind River ; + + fun Rivers_Oulujoki : Ind River ; + + fun Rivers_Ounasjoki : Ind River ; + + fun Rivers_Paraguay : Ind River ; + + fun Rivers_Parana : Ind River ; + + fun Rivers_Petschora : Ind River ; + + fun Rivers_Pibor : Ind River ; + + fun Rivers_Pjandsh : Ind River ; + + fun Rivers_Rhein : Ind River ; + + fun Rivers_Rhone : Ind River ; + + fun Rivers_RioBalsas : Ind River ; + + fun Rivers_RioGrande : Ind River ; + + fun Rivers_RiodelaPlata : Ind River ; + + fun Rivers_Rufiji : Ind River ; + + fun Rivers_Ruki : Ind River ; + + fun Rivers_Ruvuma : Ind River ; + + fun Rivers_Sanaga : Ind River ; + + fun Rivers_Sanga : Ind River ; + + fun Rivers_Save : Ind River ; + + fun Rivers_Schari : Ind River ; + + fun Rivers_Schilka : Ind River ; + + fun Rivers_Seine : Ind River ; + + fun Rivers_Senegal : Ind River ; + + fun Rivers_Sobat : Ind River ; + + fun Rivers_St_Lorenzstrom : Ind River ; + + fun Rivers_Suchona : Ind River ; + + fun Rivers_Syrdarja : Ind River ; + + fun Rivers_Tana : Ind River ; + + fun Rivers_Thames : Ind River ; + + fun Rivers_Thjorsa : Ind River ; + + fun Rivers_Tobol : Ind River ; + + fun Rivers_Torneaelv : Ind River ; + + fun Rivers_Tshuapa : Ind River ; + + fun Rivers_Ubangi : Ind River ; + + fun Rivers_Uelle : Ind River ; + + fun Rivers_Umeaelv : Ind River ; + + fun Rivers_Ural : Ind River ; + + fun Rivers_Uruguay : Ind River ; + + fun Rivers_Vaal : Ind River ; + + fun Rivers_Vaesterdalaelv : Ind River ; + + fun Rivers_Volga : Ind River ; + + fun Rivers_Volta : Ind River ; + + fun Rivers_WebiSchebeli : Ind River ; + + fun Rivers_Weichsel : Ind River ; + + fun Rivers_Werra : Ind River ; + + fun Rivers_Weser : Ind River ; + + fun Rivers_WesternDwina : Ind River ; + + fun Rivers_WhiteDrin : Ind River ; + + fun Rivers_WhiteNile : Ind River ; + + fun Rivers_Zaire : Ind River ; + + fun Rivers_Zambezi : Ind River ; + + fun Romania : Ind (both Country Nation); + + fun Russia : Ind (both Country Nation); + + fun Rwanda : Ind (both Country Nation); + + fun SaintKittsAndNevis : Ind (both Country Nation); + + fun SaintLucia : Ind (both Country Nation); + + fun SaintVincentAndTheGrenadines : Ind (both Country Nation); + + fun SanMarino : Ind (both Country EuropeanNation); + + fun SaoTomeAndPrincipe : Ind (both Country Nation); + + fun SaudiArabia : Ind (both Country Nation); + + fun Seas_ArabianSea : Ind Sea ; + + fun Seas_ArcticOcean : Ind Sea ; + + fun Seas_AtlanticOcean : Ind Sea ; + + fun Seas_BalticSea : Ind Sea ; + + fun Seas_BlackSea : Ind Sea ; + + fun Seas_CaribbeanSea : Ind Sea ; + + fun Seas_EastChinaSea : Ind Sea ; + + fun Seas_GulfofAden : Ind Sea ; + + fun Seas_GulfofMexico : Ind Sea ; + + fun Seas_IndianOcean : Ind Sea ; + + fun Seas_IrishSea : Ind Sea ; + + fun Seas_MediterraneanSea : Ind Sea ; + + fun Seas_NorthSea : Ind Sea ; + + fun Seas_NorwegianSea : Ind Sea ; + + fun Seas_PacificOcean : Ind Sea ; + + fun Seas_PersianGulf : Ind Sea ; + + fun Seas_RedSea : Ind Sea ; + + fun Seas_SeaofAzov : Ind Sea ; + + fun Seas_SeaofJapan : Ind Sea ; + + fun Seas_SouthChinaSea : Ind Sea ; + + fun Seas_SundaSea : Ind Sea ; + + fun Seas_YellowSea : Ind Sea ; + + fun Senegal : Ind (both Country Nation); + + fun SerbiaAndMontenegro : Ind (both Country Nation); + + fun Seychelles : Ind (both Country Nation); + + fun SierraLeone : Ind (both Country Nation); + + fun Singapore : Ind (both Country Nation); + + fun Slovakia : Ind (both Country Nation); + + fun Slovenia : Ind (both Country Nation); + + fun SolomonIslands : Ind (both Country Nation); + + fun Somalia : Ind (both Country Nation); + + fun SouthAfrica : Ind (both Country Nation); + + fun SouthKorea : Ind (both Country Nation); + + fun Spain : Ind (both Country EuropeanNation); + + fun SriLanka : Ind (both Country Nation); + + fun Sudan : Ind (both Country Nation); + + fun Suriname : Ind (both Country Nation); + + fun Swaziland : Ind (both Country Nation); + + fun Sweden : Ind (both Country EuropeanNation); + + fun Switzerland : Ind (both Country EuropeanNation); + + fun Syria : Ind (both Country Nation); + + fun Taiwan : Ind (both Country Nation); + + fun Tajikistan : Ind (both Country Nation); + + fun Tanzania : Ind (both Country Nation); + + fun Thailand : Ind (both Country Nation); + + fun Togo : Ind (both Country Nation); + + fun Tonga : Ind (both Country Nation); + + fun TrinidadAndTobago : Ind (both Country Nation); + + fun Tunisia : Ind (both Country Nation); + + fun Turkey : Ind (both Country Nation); + + fun Turkmenistan : Ind (both Country Nation); + + fun Tuvalu : Ind (both Country Nation); + + fun Uganda : Ind (both Country Nation); + + fun Ukraine : Ind (both Country Nation); + + fun UnitedArabEmirates : Ind (both Country EuropeanNation); + + fun UnitedKingdom : Ind (both Country Nation); + + fun UnitedStates : Ind (both Country Nation); + + fun Uruguay : Ind (both Country Nation); + + fun Uzbekistan : Ind (both Country Nation); + + fun Vanuatu : Ind (both Country Nation); + + fun Venezuela : Ind (both Country Nation); + + fun Vietnam : Ind (both Country Nation); + + fun WesternSahara : Ind (both Country (both Nation GeopoliticalArea)) ; + + fun WesternSamoa : Ind Country ; + + fun Yemen : Ind (both Country Nation); + + fun Zaire : Ind Country ; + + fun Zambia : Ind (both Country Nation); + + fun flowsInto : El River -> El Sea -> Formula ; + + fun geographicalSubregion : El City -> El Province -> Formula ; + + fun hasHeadq : El Organization -> El City -> Formula ; +} diff --git a/examples/SUMO/MondialEng.gf b/examples/SUMO/MondialEng.gf new file mode 100644 index 000000000..a9c91d850 --- /dev/null +++ b/examples/SUMO/MondialEng.gf @@ -0,0 +1,5556 @@ +concrete MondialEng of Mondial = MidLevelOntologyEng ** open ParadigmsEng,NounEng in { + +lin + Countries_H_provinces_Pest = UsePN (mkPN "Pest") ; + Countries_THA_provinces_KamphaengPhet = UsePN (mkPN "Kamphaeng Phet") ; + CapeVerde = UsePN (mkPN "Cape Verde") ; + Countries_USA_provinces_Illinois_cities_Naperville = UsePN (mkPN "Naperville") ; + Countries_USA_provinces_NorthCarolina_cities_Greensboro = UsePN (mkPN "Greensboro") ; + Countries_EAK_provinces_RiftValley_cities_Nakuru = UsePN (mkPN "Nakuru") ; + Countries_TJ_provinces_Guangdong_cities_Shenzhen = UsePN (mkPN "Shenzhen") ; + Islands_St_Helena = UsePN (mkPN "St. Helena") ; + Countries_F_provinces_IledeFrance_cities_BoulogneBillancourt = UsePN (mkPN "Boulogne Billancourt") ; + Countries_ETH_cities_Nazret = UsePN (mkPN "Nazret") ; + Countries_IR_provinces_AzarbayianeGharbt_cities_Khvoy = UsePN (mkPN "Khvoy") ; + Countries_TJ_provinces_Jilin_cities_Jilin = UsePN (mkPN "Jilin") ; + Countries_ES_provinces_Sonsonate_cities_Sonsonate = UsePN (mkPN "Sonsonate") ; + Countries_H_provinces_Heves = UsePN (mkPN "Heves") ; + Countries_UA_provinces_Odeska = UsePN (mkPN "Odeska") ; + Countries_BR_provinces_SaoPaulo_cities_Guarulhos = UsePN (mkPN "Guarulhos") ; + Countries_TJ_provinces_NeiMonggol_cities_Yakeshi = UsePN (mkPN "Yakeshi") ; + Countries_THA_provinces_SaKaeo = UsePN (mkPN "Sa Kaeo") ; + Countries_YV_provinces_Trujillo = UsePN (mkPN "Trujillo") ; + Countries_N_provinces_Hordaland_cities_Bergen = UsePN (mkPN "Bergen") ; + Countries_RO_provinces_Suceava = UsePN (mkPN "Suceava") ; + Countries_TJ_provinces_Hubei_cities_Puqi = UsePN (mkPN "Puqi") ; + Countries_RSA_provinces_Gauteng_cities_Soweto = UsePN (mkPN "Soweto") ; + Countries_TR_provinces_Giresun_cities_Giresun = UsePN (mkPN "Giresun") ; + Islands_Anguilla = UsePN (mkPN "Anguilla") ; + Countries_J_provinces_Fukushima = UsePN (mkPN "Fukushima") ; + Islands_SaintLucia = UsePN (mkPN "Saint Lucia") ; + Zaire = UsePN (mkPN "Zaire") ; + Countries_NOK_cities_Sunchon = UsePN (mkPN "Sunchon") ; + Countries_RI_cities_Binjai = UsePN (mkPN "Binjai") ; + Countries_S_provinces_Sodermanland_cities_Nykoping = UsePN (mkPN "Nykoping") ; + Countries_cid_cia_Aruba = UsePN (mkPN "Aruba") ; + Countries_HCA_provinces_Atlantida_cities_LaCeiba = UsePN (mkPN "La Ceiba") ; + Countries_C_provinces_IsladelaJuventud_cities_NuevaGerona = UsePN (mkPN "Nueva Gerona") ; + Countries_TR_provinces_Mugla_cities_Mugla = UsePN (mkPN "Mugla") ; + Countries_IND_provinces_HimachalPradesh_cities_Simla = UsePN (mkPN "Simla") ; + Countries_BR_provinces_SantaCatarina_cities_Blumenau = UsePN (mkPN "Blumenau") ; + Countries_D_provinces_Hessen_cities_Wiesbaden = UsePN (mkPN "Wiesbaden") ; + Countries_BD_cities_Saidpur = UsePN (mkPN "Saidpur") ; + Islands_PortoSanto = UsePN (mkPN "Porto Santo") ; + Countries_TJ_provinces_Jiangsu_cities_Huaian = UsePN (mkPN "Huaian") ; + Countries_RO_provinces_Tulcea_cities_Tulcea = UsePN (mkPN "Tulcea") ; + Countries_HCA_provinces_Copan = UsePN (mkPN "Copan") ; + Countries_PK_cities_Sheikhupura = UsePN (mkPN "Sheikhupura") ; + Countries_IRQ_provinces_Ninawa_cities_Mosul = UsePN (mkPN "Mosul") ; + Countries_CZ_provinces_Jihocesky_cities_CeskeBudejovice = UsePN (mkPN "Ceske Budejovice") ; + Countries_PL_provinces_Lodzkie_cities_Lodz = UsePN (mkPN "Lodz") ; + Countries_MS_cities_PortLouis = UsePN (mkPN "Port Louis") ; + Organizations_G_5 = UsePN (mkPN "Group of 5") ; + Countries_R_provinces_Rep_ofBashkortostan_cities_Oktyabrsky = UsePN (mkPN "Oktyabrsky") ; + Countries_D_provinces_Hessen_cities_FrankfurtamMain = UsePN (mkPN "Frankfurt am Main") ; + Countries_CDN_provinces_NewBrunswick = UsePN (mkPN "New Brunswick") ; + Countries_IS_cities_Reykjavik = UsePN (mkPN "Reykjavik") ; + Countries_GB_provinces_Swansea = UsePN (mkPN "Swansea") ; + Countries_GB_provinces_Flintshire_cities_Mold = UsePN (mkPN "Mold") ; + Countries_USA_provinces_Indiana_cities_FortWayne = UsePN (mkPN "Fort Wayne") ; + Countries_IND_provinces_WestBengal_cities_Calcutta = UsePN (mkPN "Calcutta") ; + Countries_ET_provinces_BurSaid_munic = UsePN (mkPN "Bur Said (munic.)") ; + Countries_RP_cities_Makati = UsePN (mkPN "Makati") ; + Countries_I_provinces_Puglia_cities_Taranto = UsePN (mkPN "Taranto") ; + Countries_I_provinces_ValledAosta_cities_Aosta = UsePN (mkPN "Aosta") ; + Countries_I_provinces_FriuliVeneziaGiulia = UsePN (mkPN "Friuli Venezia Giulia") ; + Countries_UZB_provinces_Toshkent = UsePN (mkPN "Toshkent") ; + Countries_BG_cities_Sofia = UsePN (mkPN "Sofia") ; + Countries_BR_provinces_MatoGrosso_cities_Cuiaba = UsePN (mkPN "Cuiaba") ; + Countries_YV_cities_SantaAnadeCoro = UsePN (mkPN "Santa Ana de Coro") ; + Countries_USA_provinces_Michigan_cities_GrandRapids = UsePN (mkPN "Grand Rapids") ; + Countries_PA_provinces_Panama_cities_PanamaCity = UsePN (mkPN "Panama City") ; + Countries_GB_provinces_Wiltshire = UsePN (mkPN "Wiltshire") ; + Countries_R_provinces_Rep_ofAltay_cities_GornoAltaysk = UsePN (mkPN "Gorno Altaysk") ; + Countries_TAD_provinces_Khatlon_cities_Qurghonteppa = UsePN (mkPN "Qurghonteppa") ; + Countries_IR_provinces_AzarbayianeGharbt_cities_Orumiyeh = UsePN (mkPN "Orumiyeh") ; + Countries_TR_provinces_Aksaray_cities_Aksaray = UsePN (mkPN "Aksaray") ; + Countries_KAZ_provinces_Qostanay_cities_Rudny = UsePN (mkPN "Rudny") ; + Countries_CO_provinces_Caldas = UsePN (mkPN "Caldas") ; + Countries_ET_provinces_Aswan = UsePN (mkPN "Aswan") ; + Gambia = UsePN (mkPN "Gambia") ; + Countries_EAT_provinces_Arusha = UsePN (mkPN "Arusha") ; + Countries_UA_provinces_Dnipropetrovska = UsePN (mkPN "Dnipropetrovska") ; + Countries_ET_provinces_Ismailiya_cities_Ismailiya = UsePN (mkPN "Ismailiya") ; + Countries_RO_provinces_Arad_cities_Arad = UsePN (mkPN "Arad") ; + Islands_NewCaledonia = UsePN (mkPN "New Caledonia") ; + Countries_cid_cia_Pitcairn_Islands_cities_Adamstown = UsePN (mkPN "Adamstown") ; + Countries_TR_provinces_Sinop_cities_Sinop = UsePN (mkPN "Sinop") ; + Organizations_ICRC = UsePN (mkPN "International Committee of the Red Cross") ; + Countries_IND_provinces_UttarPradesh_cities_Lucknow = UsePN (mkPN "Lucknow") ; + Islands_Barbuda = UsePN (mkPN "Barbuda") ; + Countries_RO_provinces_Cluj = UsePN (mkPN "Cluj") ; + Countries_N_provinces_VestAgder = UsePN (mkPN "Vest Agder") ; + Countries_AUS_provinces_AustraliaCapitalTerritory_cities_Canberra = UsePN (mkPN "Canberra") ; + Countries_GB_provinces_Hampshire = UsePN (mkPN "Hampshire") ; + Countries_VN_cities_HongGai = UsePN (mkPN "Hong Gai") ; + Countries_RA_provinces_Chaco = UsePN (mkPN "Chaco") ; + Rivers_Colorado = UsePN (mkPN "Colorado") ; + Countries_PA_provinces_Cocle_cities_Penonome = UsePN (mkPN "Penonome") ; + Countries_R_provinces_ChechenRep__cities_Grozny = UsePN (mkPN "Grozny") ; + Countries_USA_provinces_Pennsylvania_cities_Erie = UsePN (mkPN "Erie") ; + Countries_NL_provinces_Limburg = UsePN (mkPN "Limburg") ; + Countries_UA_provinces_Volynska = UsePN (mkPN "Volynska") ; + Countries_R_provinces_Ulyanovskayaoblast = UsePN (mkPN "Ulyanovskaya oblast") ; + Countries_GB_provinces_GreaterManchester_cities_Stockport = UsePN (mkPN "Stockport") ; + Countries_MYA_provinces_Kachin = UsePN (mkPN "Kachin") ; + Countries_D_provinces_NordrheinWestfalen_cities_Munster = UsePN (mkPN "Munster") ; + Countries_VN_provinces_NgheAn = UsePN (mkPN "Nghe An") ; + Countries_TR_provinces_Kayseri = UsePN (mkPN "Kayseri") ; + Countries_TJ_provinces_Jilin_cities_Jiutai = UsePN (mkPN "Jiutai") ; + Countries_J_provinces_Yamanashi = UsePN (mkPN "Yamanashi") ; + Countries_RC_provinces_Tainan = UsePN (mkPN "Tainan") ; + Countries_C_provinces_VillaClara = UsePN (mkPN "Villa Clara") ; + Countries_BR_cities_Hortolandia = UsePN (mkPN "Hortolandia") ; + Congo = UsePN (mkPN "Congo") ; + Countries_USA_provinces_NewYork_cities_Syracuse = UsePN (mkPN "Syracuse") ; + Mountains_Haltiatunturi = UsePN (mkPN "Haltiatunturi") ; + Seas_IndianOcean = UsePN (mkPN "Indian Ocean") ; + Islands_Gotland = UsePN (mkPN "Gotland") ; + Countries_J_provinces_Kagawa_cities_Takamatsu = UsePN (mkPN "Takamatsu") ; + Countries_TR_provinces_Kutahya = UsePN (mkPN "Kutahya") ; + Countries_BR_provinces_Parana_cities_Guarapuava = UsePN (mkPN "Guarapuava") ; + Organizations_PCA = UsePN (mkPN "Permanent Court of Arbitration") ; + Rivers_Jangtse_Kiang = UsePN (mkPN "Jangtse-Kiang") ; + Countries_CAM_provinces_Ouest = UsePN (mkPN "Ouest") ; + Countries_ROK_cities_Kunsan = UsePN (mkPN "Kunsan") ; + Organizations_ASEAN = UsePN (mkPN "Association of Southeast Asian Nations") ; + Islands_Islay = UsePN (mkPN "Islay") ; + Deserts_GrandErgOuest = UsePN (mkPN "Grand Erg Ouest") ; + Countries_MA_cities_Rabat = UsePN (mkPN "Rabat") ; + Countries_ES_provinces_SanSalvador_cities_SanSalvador = UsePN (mkPN "San Salvador") ; + Countries_IR_provinces_Gilan = UsePN (mkPN "Gilan") ; + Countries_E_provinces_Galicia_cities_SantiagodeCompostella = UsePN (mkPN "Santiago de Compostella") ; + Countries_SF_provinces_Aland = UsePN (mkPN "Aland") ; + Countries_HCA_provinces_Comayagua_cities_Comayagua = UsePN (mkPN "Comayagua") ; + Countries_RSA_cities_Benoni = UsePN (mkPN "Benoni") ; + Countries_TJ_provinces_Jiangsu_cities_Wuxi = UsePN (mkPN "Wuxi") ; + Countries_WAN_cities_Ogbomosho = UsePN (mkPN "Ogbomosho") ; + Countries_MEX_provinces_Chihuahua_cities_Juarez = UsePN (mkPN "Juarez") ; + Countries_cid_cia_Saint_Helena = UsePN (mkPN "Saint Helena") ; + Countries_TJ_provinces_Shaanxi_cities_Xian = UsePN (mkPN "Xian") ; + Countries_TJ_provinces_NeiMonggol = UsePN (mkPN "Nei Monggol") ; + Countries_SF_provinces_Uusimaa = UsePN (mkPN "Uusimaa") ; + Countries_D_provinces_Hessen_cities_OffenbachamMain = UsePN (mkPN "Offenbach am Main") ; + Countries_TJ_provinces_Fujian_cities_Longyan = UsePN (mkPN "Longyan") ; + Countries_CH_provinces_BE_cities_Biel = UsePN (mkPN "Biel") ; + Countries_KAZ_provinces_Aqtobe = UsePN (mkPN "Aqtobe") ; + Countries_WAN_cities_Ikirun = UsePN (mkPN "Ikirun") ; + Countries_TJ_provinces_Jiangsu_cities_Yancheng = UsePN (mkPN "Yancheng") ; + Countries_UA_provinces_IvanoFrankivska_cities_IvanoFrankivsk = UsePN (mkPN "Ivano Frankivsk") ; + Countries_GB_provinces_Bedfordshire = UsePN (mkPN "Bedfordshire") ; + Countries_P_provinces_Braga_cities_Braga = UsePN (mkPN "Braga") ; + Countries_BR_provinces_Rondonia = UsePN (mkPN "Rondonia") ; + Countries_RSA_provinces_NorthernProvince_cities_Pietersburg = UsePN (mkPN "Pietersburg") ; + Countries_CH_provinces_SZ_cities_Schwyz = UsePN (mkPN "Schwyz") ; + Countries_PE_provinces_Ica = UsePN (mkPN "Ica") ; + Countries_IND_provinces_Rajasthan_cities_Ajmer = UsePN (mkPN "Ajmer") ; + Countries_F_provinces_ProvenceCotedAzur_cities_AixenProvence = UsePN (mkPN "Aix en Provence") ; + Lakes_LakeNasser = UsePN (mkPN "Lake Nasser") ; + Countries_TJ_provinces_Shandong_cities_Laiwu = UsePN (mkPN "Laiwu") ; + Countries_GB_provinces_Surrey_cities_Guildford = UsePN (mkPN "Guildford") ; + Countries_WAN_cities_Ife = UsePN (mkPN "Ife") ; + Countries_E_provinces_Andalusia_cities_JerezdelaFrontera = UsePN (mkPN "Jerez de la Frontera") ; + Mountains_Jostedalsbre = UsePN (mkPN "Jostedalsbre") ; + Rivers_Mississippi = UsePN (mkPN "Mississippi") ; + Countries_R_provinces_Sverdlovskayaoblast = UsePN (mkPN "Sverdlovskaya oblast") ; + Countries_YU_cities_Belgrade = UsePN (mkPN "Belgrade") ; + Countries_ET_provinces_ElBuhayra_cities_Damanhur = UsePN (mkPN "Damanhur") ; + Countries_MEX_provinces_Hidalgo_cities_PachucadeSoto = UsePN (mkPN "Pachuca de Soto") ; + Countries_TJ_provinces_Guangdong_cities_Chaozhou = UsePN (mkPN "Chaozhou") ; + Countries_H_provinces_Szeged_munic = UsePN (mkPN "Szeged (munic.)") ; + Countries_MEX_provinces_Oaxaca = UsePN (mkPN "Oaxaca") ; + Countries_USA_provinces_Oregon = UsePN (mkPN "Oregon") ; + Countries_SF_provinces_Kymi = UsePN (mkPN "Kymi") ; + Countries_KAZ_provinces_Aqmola = UsePN (mkPN "Aqmola") ; + Countries_R_provinces_Penzenskayaoblast = UsePN (mkPN "Penzenskaya oblast") ; + Countries_USA_provinces_Oregon_cities_Salem = UsePN (mkPN "Salem") ; + Countries_USA_provinces_Connecticut_cities_NewHaven = UsePN (mkPN "New Haven") ; + Countries_R_provinces_Arkhangelskayaoblast_cities_Severodvinsk = UsePN (mkPN "Severodvinsk") ; + Countries_I_provinces_EmiliaRomagna_cities_Parma = UsePN (mkPN "Parma") ; + Countries_TJ_provinces_Hubei_cities_Echeng = UsePN (mkPN "Echeng") ; + Countries_PL_provinces_Torunskie_cities_Grudziadz = UsePN (mkPN "Grudziadz") ; + Ireland = UsePN (mkPN "Ireland") ; + Countries_USA_provinces_Florida_cities_Orlando = UsePN (mkPN "Orlando") ; + Countries_YV_provinces_Zulia_cities_Cabimas = UsePN (mkPN "Cabimas") ; + Countries_GB_provinces_Lancashire_cities_Blackpool = UsePN (mkPN "Blackpool") ; + Countries_S_provinces_Kopparberg_cities_Falun = UsePN (mkPN "Falun") ; + Countries_TJ_provinces_Henan_cities_Puyang = UsePN (mkPN "Puyang") ; + Countries_R_provinces_Kemerovskayaoblast_cities_Prokopyevsk = UsePN (mkPN "Prokopyevsk") ; + Countries_D_provinces_Sachsen_cities_Dresden = UsePN (mkPN "Dresden") ; + Lakes_LakeAmadeus = UsePN (mkPN "Lake Amadeus") ; + Islands_Maui = UsePN (mkPN "Maui") ; + Countries_F_provinces_LanguedocRousillon_cities_Montpellier = UsePN (mkPN "Montpellier") ; + Countries_PL_provinces_Olsztynskie = UsePN (mkPN "Olsztynskie") ; + Countries_UZB_provinces_Samarqand_cities_Samarqand = UsePN (mkPN "Samarqand") ; + Countries_USA_provinces_California_cities_CostaMesa = UsePN (mkPN "Costa Mesa") ; + Countries_IRQ_provinces_Baghdad = UsePN (mkPN "Baghdad") ; + Countries_THA_provinces_ChiangRai = UsePN (mkPN "Chiang Rai") ; + Countries_IND_provinces_UttarPradesh = UsePN (mkPN "Uttar Pradesh") ; + Countries_TR_provinces_Bayburt = UsePN (mkPN "Bayburt") ; + Countries_F_provinces_ProvenceCotedAzur_cities_Toulon = UsePN (mkPN "Toulon") ; + Countries_TJ_provinces_Jilin_cities_Dunhua = UsePN (mkPN "Dunhua") ; + Countries_TR_provinces_Icel_cities_Tarsus = UsePN (mkPN "Tarsus") ; + Countries_TR_provinces_Antalya = UsePN (mkPN "Antalya") ; + Countries_USA_provinces_Virginia_cities_Portsmouth = UsePN (mkPN "Portsmouth") ; + Countries_I_provinces_Puglia_cities_Foggia = UsePN (mkPN "Foggia") ; + Countries_P_provinces_Lisbon_cities_Amadora = UsePN (mkPN "Amadora") ; + Countries_BR_provinces_SaoPaulo_cities_RibeiraoPires = UsePN (mkPN "Ribeirao Pires") ; + Countries_USA_provinces_Indiana = UsePN (mkPN "Indiana") ; + Islands_Jura = UsePN (mkPN "Jura") ; + Countries_S_provinces_Gotland_cities_Visby = UsePN (mkPN "Visby") ; + Countries_UA_provinces_Lvivska = UsePN (mkPN "Lvivska") ; + Countries_PL_provinces_Wloclawskie_cities_Wloclawek = UsePN (mkPN "Wloclawek") ; + Countries_USA_provinces_Michigan_cities_Warren = UsePN (mkPN "Warren") ; + Organizations_IFC = UsePN (mkPN "International Finance Corporation") ; + DominicanRepublic = UsePN (mkPN "Dominican Republic") ; + Countries_TJ_provinces_Guangdong_cities_Meixian = UsePN (mkPN "Meixian") ; + Countries_GB_provinces_IsleofWight = UsePN (mkPN "Isle of Wight") ; + Countries_USA_provinces_NewYork_cities_Buffalo = UsePN (mkPN "Buffalo") ; + Countries_PE_provinces_Huancavelica = UsePN (mkPN "Huancavelica") ; + Countries_VN_provinces_KonTum = UsePN (mkPN "Kon Tum") ; + Islands_Negros = UsePN (mkPN "Negros") ; + Deserts_ErgSchesch = UsePN (mkPN "Erg Schesch") ; + Countries_TJ_provinces_Fujian_cities_Quanzhou = UsePN (mkPN "Quanzhou") ; + Countries_UAE_cities_Sharjah = UsePN (mkPN "Sharjah") ; + Countries_IND_provinces_MadhyaPradesh_cities_Jabalpur = UsePN (mkPN "Jabalpur") ; + Countries_ES_provinces_Cuscatlan = UsePN (mkPN "Cuscatlan") ; + Countries_cid_cia_Jersey_cities_SaintHelier = UsePN (mkPN "Saint Helier") ; + Mountains_MaunaKea = UsePN (mkPN "Mauna Kea") ; + Countries_TJ_provinces_Shanxi_cities_Yangquan = UsePN (mkPN "Yangquan") ; + Countries_cid_cia_Wallis_and_Futuna = UsePN (mkPN "Wallis and Futuna") ; + Countries_BR_provinces_RiodeJaneiro_cities_CaboFrio = UsePN (mkPN "Cabo Frio") ; + Rivers_Atbara = UsePN (mkPN "Atbara") ; + Countries_BR_provinces_RioGrandedoSul_cities_SaoLeopoldo = UsePN (mkPN "Sao Leopoldo") ; + Countries_IND_provinces_DadraandNagarHaveli = UsePN (mkPN "Dadra and Nagar Haveli") ; + Countries_RA_provinces_BuenosAires_cities_GeneralSanMartin = UsePN (mkPN "General San Martin") ; + Countries_UA_provinces_Khmelnytska = UsePN (mkPN "Khmelnytska") ; + Countries_F_provinces_Centre_cities_Orleans = UsePN (mkPN "Orleans") ; + Countries_BR_provinces_SaoPaulo_cities_Itaquaquecetuba = UsePN (mkPN "Itaquaquecetuba") ; + Rivers_Kulu = UsePN (mkPN "Kulu") ; + Countries_MEX_provinces_Sonora_cities_CiudadObregon = UsePN (mkPN "Ciudad Obregon") ; + Countries_TJ_provinces_NeiMonggol_cities_Hailar = UsePN (mkPN "Hailar") ; + Countries_AG_cities_SaintJohns = UsePN (mkPN "Saint Johns") ; + Countries_FJI_cities_Suva = UsePN (mkPN "Suva") ; + Countries_ANG_provinces_LundaSul_cities_Saurimo = UsePN (mkPN "Saurimo") ; + Countries_PE_provinces_Loreto_cities_Iquitos = UsePN (mkPN "Iquitos") ; + Countries_SUD_provinces_alKhartum_cities_Omdurman = UsePN (mkPN "Omdurman") ; + Countries_KAZ_provinces_Mangghystau = UsePN (mkPN "Mangghystau") ; + Mountains_Tahat = UsePN (mkPN "Tahat") ; + Organizations_UNU = UsePN (mkPN "United Nations University") ; + Countries_EAK_provinces_NorthEastern = UsePN (mkPN "North Eastern") ; + Countries_WAN_cities_Maiduguri = UsePN (mkPN "Maiduguri") ; + Countries_NL_provinces_Overijssel_cities_Enschede = UsePN (mkPN "Enschede") ; + Countries_GQ_cities_Malabo = UsePN (mkPN "Malabo") ; + Countries_TJ_provinces_Shaanxi_cities_Baoji = UsePN (mkPN "Baoji") ; + Countries_H_provinces_Fejer = UsePN (mkPN "Fejer") ; + Mountains_KingsPeak = UsePN (mkPN "Kings Peak") ; + Countries_PL_provinces_Bialskopodlaskie_cities_BialaPodlaska = UsePN (mkPN "Biala Podlaska") ; + Countries_IL_provinces_Central_cities_Ramla = UsePN (mkPN "Ramla") ; + Countries_TR_provinces_Sirnak_cities_Sirnak = UsePN (mkPN "Sirnak") ; + Countries_J_provinces_Nagasaki = UsePN (mkPN "Nagasaki") ; + Countries_EAT_provinces_Mtwara_cities_MtwaraMikandani = UsePN (mkPN "Mtwara Mikandani") ; + Countries_RO_provinces_Botosani_cities_Botosani = UsePN (mkPN "Botosani") ; + Countries_TR_provinces_Gaziantep_cities_Gaziantep = UsePN (mkPN "Gaziantep") ; + Countries_EAT_provinces_Mara = UsePN (mkPN "Mara") ; + Countries_BRN_cities_Manama = UsePN (mkPN "Manama") ; + Lakes_Bodensee = UsePN (mkPN "Bodensee") ; + Countries_NAU_cities_Yaren = UsePN (mkPN "Yaren") ; + Countries_NOK_cities_Chongjin = UsePN (mkPN "Chongjin") ; + Countries_E_provinces_Aragon_cities_Zaragoza = UsePN (mkPN "Zaragoza") ; + Countries_GB_provinces_Nottinghamshire_cities_Mansfield = UsePN (mkPN "Mansfield") ; + Countries_USA_provinces_Kentucky_cities_LexingtonFayette = UsePN (mkPN "Lexington Fayette") ; + Countries_PE_provinces_Lambayeque = UsePN (mkPN "Lambayeque") ; + Countries_Z_provinces_Western_cities_Mongu = UsePN (mkPN "Mongu") ; + Countries_R_provinces_Ulyanovskayaoblast_cities_Simbirsk = UsePN (mkPN "Simbirsk") ; + Countries_ANG_provinces_LundaSul = UsePN (mkPN "Lunda Sul") ; + Rivers_Ruvuma = UsePN (mkPN "Ruvuma") ; + Countries_TJ_provinces_Shandong_cities_Zhucheng = UsePN (mkPN "Zhucheng") ; + Countries_BR_provinces_Pernambuco_cities_Paulista = UsePN (mkPN "Paulista") ; + Djibouti = UsePN (mkPN "Djibouti") ; + Countries_RI_cities_Semarang = UsePN (mkPN "Semarang") ; + Countries_IRQ_provinces_Karbala = UsePN (mkPN "Karbala") ; + Countries_PL_provinces_Jeleniogorskie_cities_JeleniaGora = UsePN (mkPN "Jelenia Gora") ; + Brunei = UsePN (mkPN "Brunei") ; + Countries_TR_provinces_Bayburt_cities_Bayburt = UsePN (mkPN "Bayburt") ; + Countries_IND_provinces_Orissa_cities_Bhubaneswar = UsePN (mkPN "Bhubaneswar") ; + Mountains_PikMoskva = UsePN (mkPN "Pik Moskva") ; + Countries_D_provinces_NordrheinWestfalen_cities_Recklinghausen = UsePN (mkPN "Recklinghausen") ; + Countries_IRQ_provinces_AnNajaf_cities_AnNajaf = UsePN (mkPN "An Najaf") ; + Countries_TR_provinces_Hakkari_cities_Hakkari = UsePN (mkPN "Hakkari") ; + Countries_BR_provinces_MinasGerais_cities_Varginha = UsePN (mkPN "Varginha") ; + Countries_H_provinces_Debrecen_munic_cities_Debrecen = UsePN (mkPN "Debrecen") ; + Rivers_Benue = UsePN (mkPN "Benue") ; + Countries_TJ_provinces_Hubei_cities_Xianning = UsePN (mkPN "Xianning") ; + Organizations_Interpol = UsePN (mkPN "International Criminal Police Organization") ; + Countries_USA_provinces_Iowa_cities_DesMoines = UsePN (mkPN "Des Moines") ; + Countries_TJ_provinces_Jiangsu_cities_Yangzhou = UsePN (mkPN "Yangzhou") ; + Islands_Molokai = UsePN (mkPN "Molokai") ; + Organizations_EFTA = UsePN (mkPN "European Free Trade Association") ; + Organizations_SELA = UsePN (mkPN "Sistema Economico Latinoamericana") ; + Countries_E_provinces_Murcia_cities_Cartagena = UsePN (mkPN "Cartagena") ; + Countries_USA_provinces_Nevada_cities_Reno = UsePN (mkPN "Reno") ; + Countries_PL_provinces_Krosnienskie = UsePN (mkPN "Krosnienskie") ; + Countries_S_provinces_Malmohus = UsePN (mkPN "Malmohus") ; + Countries_ES_cities_Mejicanos = UsePN (mkPN "Mejicanos") ; + Countries_IRQ_provinces_Diyala_cities_Baqubah = UsePN (mkPN "Baqubah") ; + Islands_Lampedusa = UsePN (mkPN "Lampedusa") ; + Countries_CH_provinces_NW = UsePN (mkPN "NW") ; + Islands_Panay = UsePN (mkPN "Panay") ; + Seas_GulfofAden = UsePN (mkPN "Gulf of Aden") ; + Countries_J_provinces_Tottori = UsePN (mkPN "Tottori") ; + Countries_N_provinces_Nordland_cities_Bodoe = UsePN (mkPN "Bodoe") ; + Countries_MYA_provinces_Sagaing_cities_Sagaing = UsePN (mkPN "Sagaing") ; + Countries_J_provinces_Wakayama_cities_Wakayama = UsePN (mkPN "Wakayama") ; + Countries_TR_provinces_Kocaeli_cities_Kocaeli = UsePN (mkPN "Kocaeli") ; + Countries_NL_provinces_NoordBrabant_cities_Tilburg = UsePN (mkPN "Tilburg") ; + Countries_HCA_provinces_Valle_cities_Nacaome = UsePN (mkPN "Nacaome") ; + Countries_P_provinces_Madeira = UsePN (mkPN "Madeira") ; + Countries_PL_provinces_Elblaskie = UsePN (mkPN "Elblaskie") ; + Countries_USA_provinces_Kansas_cities_Topeka = UsePN (mkPN "Topeka") ; + Countries_N_provinces_Oslo_cities_Oslo = UsePN (mkPN "Oslo") ; + Countries_IND_provinces_AndamanandNicobarIs_ = UsePN (mkPN "Andaman and Nicobar Is.") ; + Countries_GB_provinces_BlaenauGwent_cities_EbbwVale = UsePN (mkPN "Ebbw Vale") ; + Countries_THA_provinces_Phatthalung = UsePN (mkPN "Phatthalung") ; + Countries_GB_provinces_Lothian_cities_Edinburgh = UsePN (mkPN "Edinburgh") ; + Countries_USA_provinces_Texas_cities_McAllen = UsePN (mkPN "McAllen") ; + Countries_MEX_provinces_Tamaulipas_cities_Matamoros = UsePN (mkPN "Matamoros") ; + Countries_RI_cities_Padang = UsePN (mkPN "Padang") ; + Countries_GB_provinces_NorthYorkshire_cities_York = UsePN (mkPN "York") ; + Countries_R_provinces_Moskovskayaoblast_cities_Odintsovo = UsePN (mkPN "Odintsovo") ; + Countries_GB_provinces_WestYorkshire_cities_Leeds = UsePN (mkPN "Leeds") ; + Organizations_UNRISD = UsePN (mkPN "United Nations Research Institute for Social Development") ; + Countries_IND_provinces_MadhyaPradesh_cities_Bhatpara = UsePN (mkPN "Bhatpara") ; + Countries_SUD_provinces_Kurdufan_cities_alUbayyid = UsePN (mkPN "al Ubayyid") ; + Countries_UAE_provinces_Ajman = UsePN (mkPN "Ajman") ; + Countries_RC_provinces_Taichung_cities_Fengyuan = UsePN (mkPN "Fengyuan") ; + Countries_TR_provinces_Isparta = UsePN (mkPN "Isparta") ; + Countries_BD_cities_Jessore = UsePN (mkPN "Jessore") ; + Countries_R_provinces_Saratovskayaoblast_cities_Engels = UsePN (mkPN "Engels") ; + Countries_TR_provinces_Mus_cities_Mus = UsePN (mkPN "Mus") ; + Countries_Q_cities_Wakrah = UsePN (mkPN "Wakrah") ; + Seas_EastChinaSea = UsePN (mkPN "East China Sea") ; + Organizations_ECOSOC = UsePN (mkPN "Economic and Social Council") ; + Countries_TR_provinces_Rize_cities_Rize = UsePN (mkPN "Rize") ; + Countries_EAT_provinces_Daressalam = UsePN (mkPN "Daressalam") ; + Countries_GB_provinces_WestYorkshire = UsePN (mkPN "West Yorkshire") ; + Islands_SouthamptonIsland = UsePN (mkPN "Southampton Island") ; + Countries_C_provinces_Holguin_cities_Holguin = UsePN (mkPN "Holguin") ; + Countries_cid_cia_Pitcairn_Islands = UsePN (mkPN "Pitcairn Islands") ; + Countries_cid_cia_Baker_Island = UsePN (mkPN "Baker Island") ; + Mountains_Grossglockner = UsePN (mkPN "Grossglockner") ; + Countries_P_provinces_Viseu = UsePN (mkPN "Viseu") ; + Countries_VN_cities_CamPha = UsePN (mkPN "Cam Pha") ; + Countries_TM_provinces_Mary_cities_Mary = UsePN (mkPN "Mary") ; + Countries_R_provinces_Ivanovskayaoblast_cities_Ivanovo = UsePN (mkPN "Ivanovo") ; + Countries_D_provinces_Bayern_cities_Ingolstadt = UsePN (mkPN "Ingolstadt") ; + Countries_MYA_provinces_Shan_cities_Taunggyi = UsePN (mkPN "Taunggyi") ; + Organizations_ECA = UsePN (mkPN "Economic Commission for Africa") ; + Countries_USA_provinces_Nevada_cities_CarsonCity = UsePN (mkPN "Carson City") ; + Countries_PL_provinces_Ciechanowskie_cities_Ciechanow = UsePN (mkPN "Ciechanow") ; + Countries_B_provinces_Liege = UsePN (mkPN "Liege") ; + Countries_F_provinces_Bretagne = UsePN (mkPN "Bretagne") ; + Countries_USA_provinces_Georgia_cities_Atlanta = UsePN (mkPN "Atlanta") ; + Lakes_LakeTahoe = UsePN (mkPN "Lake Tahoe") ; + Countries_EAT_provinces_Singida_cities_Singida = UsePN (mkPN "Singida") ; + Countries_TJ_provinces_Jiangsu_cities_Zhenjiang = UsePN (mkPN "Zhenjiang") ; + Countries_FL_cities_Vaduz = UsePN (mkPN "Vaduz") ; + Countries_ANG_provinces_Bie_cities_Bie = UsePN (mkPN "Bie") ; + Countries_TJ_provinces_Shandong_cities_Wendeng = UsePN (mkPN "Wendeng") ; + Countries_USA_provinces_Alaska_cities_Juneau = UsePN (mkPN "Juneau") ; + Countries_MEX_provinces_Tamaulipas_cities_CiudadMadero = UsePN (mkPN "Ciudad Madero") ; + Countries_R_provinces_Rep_ofNorthOssetiya_cities_Vladikavkaz = UsePN (mkPN "Vladikavkaz") ; + Countries_MYA_provinces_Bago = UsePN (mkPN "Bago") ; + Countries_USA_provinces_Louisiana = UsePN (mkPN "Louisiana") ; + Countries_RC_provinces_Taitung_cities_Taitung = UsePN (mkPN "Taitung") ; + Countries_RO_provinces_Vaslui = UsePN (mkPN "Vaslui") ; + Countries_HCA_provinces_SantaBarbara = UsePN (mkPN "Santa Barbara") ; + Countries_THA_provinces_Chaiyaphum = UsePN (mkPN "Chaiyaphum") ; + Countries_USA_provinces_California_cities_Berkeley = UsePN (mkPN "Berkeley") ; + Countries_BR_provinces_RiodeJaneiro_cities_Itaborai = UsePN (mkPN "Itaborai") ; + Organizations_UNOMIL = UsePN (mkPN "United Nations Observer Mission in Liberia") ; + Countries_ANG_provinces_Huila_cities_Lubango = UsePN (mkPN "Lubango") ; + Countries_EAK_provinces_Central_cities_Thika = UsePN (mkPN "Thika") ; + Countries_IR_provinces_Mazandaran_cities_Babol = UsePN (mkPN "Babol") ; + Countries_TJ_provinces_Guangdong_cities_Jiangmen = UsePN (mkPN "Jiangmen") ; + Kyrgyzstan = UsePN (mkPN "Kyrgyzstan") ; + Countries_RO_provinces_Mures = UsePN (mkPN "Mures") ; + Countries_CO_provinces_Tolima_cities_Ibague = UsePN (mkPN "Ibague") ; + Countries_IR_provinces_Bakhtaran_cities_Bakhtaran = UsePN (mkPN "Bakhtaran") ; + Countries_USA_provinces_Idaho = UsePN (mkPN "Idaho") ; + Tuvalu = UsePN (mkPN "Tuvalu") ; + Countries_B_provinces_Hainaut = UsePN (mkPN "Hainaut") ; + Lakes_OzeroTaimyr = UsePN (mkPN "Ozero Taimyr") ; + Countries_BR_provinces_SaoPaulo_cities_Itapevi = UsePN (mkPN "Itapevi") ; + Countries_DZ_cities_Tlemcen = UsePN (mkPN "Tlemcen") ; + Countries_BR_provinces_RiodeJaneiro_cities_NovoIguacu = UsePN (mkPN "Novo Iguacu") ; + Countries_F_provinces_Alsace_cities_Mulhouse = UsePN (mkPN "Mulhouse") ; + Islands_Fuenen = UsePN (mkPN "Fuenen") ; + Countries_NL_provinces_Flevoland_cities_Lelystad = UsePN (mkPN "Lelystad") ; + Countries_YV_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; + Countries_PE_provinces_MadredeDios = UsePN (mkPN "Madre de Dios") ; + Countries_N_provinces_Vestfold = UsePN (mkPN "Vestfold") ; + Countries_TJ_provinces_Shandong_cities_Taian = UsePN (mkPN "Taian") ; + Countries_GB_provinces_Cheshire_cities_Macclesfield = UsePN (mkPN "Macclesfield") ; + Countries_BR_provinces_Paraiba = UsePN (mkPN "Paraiba") ; + Countries_YV_provinces_Miranda_cities_Guarenas = UsePN (mkPN "Guarenas") ; + Countries_D_provinces_Hessen_cities_Kassel = UsePN (mkPN "Kassel") ; + Countries_BD_cities_Gazipur = UsePN (mkPN "Gazipur") ; + Countries_J_provinces_Tokushima = UsePN (mkPN "Tokushima") ; + Countries_GB_provinces_Kent = UsePN (mkPN "Kent") ; + Countries_USA_provinces_Texas_cities_Austin = UsePN (mkPN "Austin") ; + Countries_EAT_provinces_Daressalam_cities_DaresSalaam = UsePN (mkPN "Dar es Salaam") ; + Countries_IR_provinces_AzarbayianeSharqi_cities_Tabriz = UsePN (mkPN "Tabriz") ; + Countries_HCA_provinces_Valle = UsePN (mkPN "Valle") ; + Countries_THA_provinces_Lamphun = UsePN (mkPN "Lamphun") ; + Countries_N_provinces_SoerTrondelag_cities_Trondheim = UsePN (mkPN "Trondheim") ; + Islands_FernandoPoo = UsePN (mkPN "Fernando Poo") ; + Mountains_Kinabalu = UsePN (mkPN "Kinabalu") ; + Countries_TR_provinces_Sivas_cities_Sivas = UsePN (mkPN "Sivas") ; + Countries_TJ_provinces_Jiangxi_cities_Jingdezhen = UsePN (mkPN "Jingdezhen") ; + Countries_CI_cities_Yamoussoukro = UsePN (mkPN "Yamoussoukro") ; + Organizations_G_7 = UsePN (mkPN "Group of 7") ; + Countries_ZRE_provinces_KasaiOriental = UsePN (mkPN "Kasai Oriental") ; + Countries_GB_provinces_Surrey = UsePN (mkPN "Surrey") ; + Countries_EAT_provinces_KaskaziniUjunga_cities_Mkokotoni = UsePN (mkPN "Mkokotoni") ; + PapuaNewGuinea = UsePN (mkPN "Papua New Guinea") ; + Countries_I_provinces_Piemonte_cities_Turin = UsePN (mkPN "Turin") ; + Countries_RH_cities_Port_au_Prince = UsePN (mkPN "Port-au-Prince") ; + Morocco = UsePN (mkPN "Morocco") ; + Countries_SF_provinces_Aland_cities_Mariehamn = UsePN (mkPN "Mariehamn") ; + Countries_ES_provinces_Usulutan_cities_Usulutan = UsePN (mkPN "Usulutan") ; + Countries_UA_provinces_Donetska_cities_Donetsk = UsePN (mkPN "Donetsk") ; + Countries_BR_provinces_MinasGerais_cities_Sabara = UsePN (mkPN "Sabara") ; + Countries_I_provinces_Lombardia_cities_Bergamo = UsePN (mkPN "Bergamo") ; + Countries_IND_provinces_Gujarat = UsePN (mkPN "Gujarat") ; + Countries_S_provinces_Blekinge_cities_Karlskrona = UsePN (mkPN "Karlskrona") ; + Honduras = UsePN (mkPN "Honduras") ; + Countries_USA_provinces_Alabama = UsePN (mkPN "Alabama") ; + Countries_cid_cia_Christmas_Island = UsePN (mkPN "Christmas Island") ; + Countries_IND_provinces_Kerala_cities_Trivandrum = UsePN (mkPN "Trivandrum") ; + Countries_cid_cia_Christmas_Island_cities_TheSettlement = UsePN (mkPN "The Settlement") ; + Countries_RO_provinces_Bucuresti_cities_Bucharest = UsePN (mkPN "Bucharest") ; + Countries_BY_cities_Minsk = UsePN (mkPN "Minsk") ; + Countries_TJ_provinces_Sichuan_cities_Wanxian = UsePN (mkPN "Wanxian") ; + Countries_N_provinces_Hedmark_cities_Hamar = UsePN (mkPN "Hamar") ; + Countries_E_provinces_Andalusia = UsePN (mkPN "Andalusia") ; + Mountains_Bjelucha = UsePN (mkPN "Bjelucha") ; + Countries_TJ_provinces_Jiangxi_cities_Jiujiang = UsePN (mkPN "Jiujiang") ; + Countries_PE_provinces_Huanuco = UsePN (mkPN "Huanuco") ; + Countries_RO_provinces_Hunedoara = UsePN (mkPN "Hunedoara") ; + Countries_R_provinces_Samarskayaoblast_cities_Syzran = UsePN (mkPN "Syzran") ; + Organizations_G_3 = UsePN (mkPN "Group of 3") ; + Countries_BR_provinces_Para_cities_Maraba = UsePN (mkPN "Maraba") ; + Countries_DZ_cities_Algiers = UsePN (mkPN "Algiers") ; + Countries_RA_provinces_Tucuman = UsePN (mkPN "Tucuman") ; + Countries_TJ_provinces_Guizhou_cities_Liupanshui = UsePN (mkPN "Liupanshui") ; + Islands_Mayotta = UsePN (mkPN "Mayotta") ; + Countries_I_provinces_EmiliaRomagna_cities_Ferrara = UsePN (mkPN "Ferrara") ; + Lakes_LakeOhrid = UsePN (mkPN "Lake Ohrid") ; + Countries_GB_provinces_Buckinghamshire_cities_Aylesbury = UsePN (mkPN "Aylesbury") ; + Countries_GB_provinces_GreaterManchester_cities_Oldham = UsePN (mkPN "Oldham") ; + Countries_IR_provinces_Khorasan_cities_Birjand = UsePN (mkPN "Birjand") ; + Countries_CH_provinces_GL = UsePN (mkPN "GL") ; + Hungary = UsePN (mkPN "Hungary") ; + Countries_S_provinces_Kalmar_cities_Kalmar = UsePN (mkPN "Kalmar") ; + Mountains_PikKarl_Marx = UsePN (mkPN "Pik Karl-Marx") ; + Countries_DZ_cities_SidibelAbbes = UsePN (mkPN "Sidi bel Abbes") ; + Countries_CO_provinces_Narino_cities_Tumaco = UsePN (mkPN "Tumaco") ; + Countries_ET_provinces_Ismailiya = UsePN (mkPN "Ismailiya") ; + Countries_RO_provinces_Iasi_cities_Iasi = UsePN (mkPN "Iasi") ; + Rivers_Senegal = UsePN (mkPN "Senegal") ; + Deserts_ErgdeBilma = UsePN (mkPN "Erg de Bilma") ; + Mountains_Mt_Grebun = UsePN (mkPN "Mt-Grebun") ; + Countries_BR_provinces_SaoPaulo_cities_Jau = UsePN (mkPN "Jau") ; + Countries_TJ_provinces_Liaoning_cities_Haicheng = UsePN (mkPN "Haicheng") ; + Countries_BR_provinces_RioGrandedoSul_cities_Uruguaiana = UsePN (mkPN "Uruguaiana") ; + Countries_D_provinces_BadenWurttemberg_cities_Heilbronn = UsePN (mkPN "Heilbronn") ; + Countries_cid_cia_Saint_Helena_cities_Jamestown = UsePN (mkPN "Jamestown") ; + Organizations_CERN = UsePN (mkPN "European Organization for Nuclear Research") ; + Countries_GB_provinces_Cardiff = UsePN (mkPN "Cardiff") ; + Countries_TJ_provinces_Hubei_cities_Tianmen = UsePN (mkPN "Tianmen") ; + Countries_BR_provinces_MinasGerais = UsePN (mkPN "Minas Gerais") ; + Countries_R_provinces_Tyumenskayaoblast = UsePN (mkPN "Tyumenskaya oblast") ; + Countries_IND_provinces_UttarPradesh_cities_Saharanpur = UsePN (mkPN "Saharanpur") ; + Countries_R_provinces_ChuvashRepublic_cities_Novocheboksarsk = UsePN (mkPN "Novocheboksarsk") ; + Organizations_CEPGL = UsePN (mkPN "Economic Community of the Great Lakes Countries") ; + Countries_YV_provinces_Apure_cities_SanFernando = UsePN (mkPN "San Fernando") ; + Countries_USA_provinces_California_cities_Modesto = UsePN (mkPN "Modesto") ; + Countries_J_provinces_Shimane_cities_Matsue = UsePN (mkPN "Matsue") ; + Countries_BZ_cities_Belmopan = UsePN (mkPN "Belmopan") ; + Rivers_BlackDrin = UsePN (mkPN "Black Drin") ; + Countries_TO_cities_Nukualofa = UsePN (mkPN "Nukualofa") ; + Countries_TJ_provinces_Jiangxi_cities_Ganzhou = UsePN (mkPN "Ganzhou") ; + Countries_NIC_cities_Managua = UsePN (mkPN "Managua") ; + Countries_BD_cities_Rangpur = UsePN (mkPN "Rangpur") ; + Countries_N_provinces_AustAgder = UsePN (mkPN "Aust Agder") ; + Countries_USA_provinces_Hawaii = UsePN (mkPN "Hawaii") ; + Lakes_OzeroTschany = UsePN (mkPN "Ozero Tschany") ; + Countries_SF_provinces_Lappia_cities_Rovaniemi = UsePN (mkPN "Rovaniemi") ; + Organizations_G_15 = UsePN (mkPN "Group of 15") ; + Countries_USA_provinces_NewJersey = UsePN (mkPN "New Jersey") ; + Countries_GB_provinces_Monmouthshire = UsePN (mkPN "Monmouthshire") ; + Countries_TJ_provinces_Gansu_cities_Lanzhou = UsePN (mkPN "Lanzhou") ; + Countries_IND_provinces_Sikkim = UsePN (mkPN "Sikkim") ; + Countries_AL_cities_Shkoder = UsePN (mkPN "Shkoder") ; + Islands_SaoTomeandPrincipe = UsePN (mkPN "Sao Tome and Principe") ; + Countries_C_provinces_PinardelRio = UsePN (mkPN "Pinar del Rio") ; + Countries_USA_provinces_California_cities_RanchoCucamonga = UsePN (mkPN "Rancho Cucamonga") ; + Countries_TT_cities_Port_of_Spain = UsePN (mkPN "Port-of-Spain") ; + Countries_R_provinces_Murmanskayaoblast_cities_Murmansk = UsePN (mkPN "Murmansk") ; + Seas_PacificOcean = UsePN (mkPN "Pacific Ocean") ; + Countries_AND_cities_AndorralaVella = UsePN (mkPN "Andorra la Vella") ; + Countries_USA_provinces_Washington_cities_Olympia = UsePN (mkPN "Olympia") ; + Countries_AUS_provinces_Tasmania_cities_Hobart = UsePN (mkPN "Hobart") ; + Countries_IR_provinces_Mazandaran = UsePN (mkPN "Mazandaran") ; + Islands_Lundy = UsePN (mkPN "Lundy") ; + Countries_MEX_provinces_Colima = UsePN (mkPN "Colima") ; + Tajikistan = UsePN (mkPN "Tajikistan") ; + Countries_D_provinces_BadenWurttemberg_cities_Reutlingen = UsePN (mkPN "Reutlingen") ; + Ecuador = UsePN (mkPN "Ecuador") ; + Countries_USA_provinces_Oklahoma_cities_OklahomaCity = UsePN (mkPN "Oklahoma City") ; + Countries_CDN_provinces_Ontario_cities_Hamilton = UsePN (mkPN "Hamilton") ; + Countries_I_provinces_Campania = UsePN (mkPN "Campania") ; + Countries_E_provinces_BasqueCountry_cities_VitoriaGasteiz = UsePN (mkPN "Vitoria Gasteiz") ; + Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolski = UsePN (mkPN "Gorzow Wielkopolski") ; + Countries_RI_cities_BandaAceh = UsePN (mkPN "Banda Aceh") ; + Islands_SantaMaria = UsePN (mkPN "Santa Maria") ; + Peru = UsePN (mkPN "Peru") ; + Countries_KAZ_provinces_Almaty_munic = UsePN (mkPN "Almaty (munic.)") ; + Countries_KN_cities_Basseterre = UsePN (mkPN "Basseterre") ; + Countries_EAK_provinces_NorthEastern_cities_Garissa = UsePN (mkPN "Garissa") ; + Countries_IND_provinces_Rajasthan_cities_Bikaner = UsePN (mkPN "Bikaner") ; + Countries_TJ_provinces_Jilin_cities_Baicheng = UsePN (mkPN "Baicheng") ; + Dominica = UsePN (mkPN "Dominica") ; + Countries_GB_provinces_Lincolnshire = UsePN (mkPN "Lincolnshire") ; + Countries_CH_provinces_BS_cities_Basel = UsePN (mkPN "Basel") ; + Countries_MEX_provinces_BajaCaliforniaSur_cities_LaPaz = UsePN (mkPN "La Paz") ; + Countries_R_provinces_Kemerovskayaoblast_cities_Novokuznetsk = UsePN (mkPN "Novokuznetsk") ; + Countries_BR_provinces_Bahia_cities_Jequie = UsePN (mkPN "Jequie") ; + Countries_USA_provinces_Florida_cities_Clearwater = UsePN (mkPN "Clearwater") ; + Countries_GB_provinces_Bridgend_cities_Bridgend = UsePN (mkPN "Bridgend") ; + Countries_KAZ_provinces_OngtustikQazaqstan_cities_Shymkent = UsePN (mkPN "Shymkent") ; + Countries_MAL_provinces_Pahang_cities_Kuantan = UsePN (mkPN "Kuantan") ; + Countries_KAZ_provinces_Torghay = UsePN (mkPN "Torghay") ; + Countries_UA_provinces_Krym_cities_Sevastopol = UsePN (mkPN "Sevastopol") ; + Countries_USA_provinces_Florida_cities_Tampa = UsePN (mkPN "Tampa") ; + Deserts_Karakum = UsePN (mkPN "Karakum") ; + Islands_BaffinIsland = UsePN (mkPN "Baffin Island") ; + Countries_R_provinces_Moskovskayaoblast = UsePN (mkPN "Moskovskaya oblast") ; + Mountains_Citlaltepetl = UsePN (mkPN "Citlaltepetl") ; + Countries_RSA_provinces_NorthWest_cities_Mmabatho = UsePN (mkPN "Mmabatho") ; + Countries_KAZ_provinces_Qyzylorda_cities_Qyzylorda = UsePN (mkPN "Qyzylorda") ; + Countries_PL_provinces_Lomzynskie = UsePN (mkPN "Lomzynskie") ; + Countries_CH_provinces_GL_cities_Glarus = UsePN (mkPN "Glarus") ; + Organizations_EADB = UsePN (mkPN "East African Development Bank") ; + Countries_cid_cia_Juan_de_Nova_Island = UsePN (mkPN "Juan de Nova Island") ; + Countries_S_provinces_Jonkoping = UsePN (mkPN "Jonkoping") ; + Countries_RC_provinces_Yunlin = UsePN (mkPN "Yunlin") ; + Countries_PL_provinces_Torunskie = UsePN (mkPN "Torunskie") ; + Countries_H_provinces_Miskolc_munic = UsePN (mkPN "Miskolc (munic.)") ; + Countries_USA_provinces_Texas_cities_Garland = UsePN (mkPN "Garland") ; + Countries_IRQ_provinces_AdTamim_cities_Kirkuk = UsePN (mkPN "Kirkuk") ; + Rivers_Onon = UsePN (mkPN "Onon") ; + Countries_SLO_cities_Ljubljana = UsePN (mkPN "Ljubljana") ; + Countries_BD_cities_Barisal = UsePN (mkPN "Barisal") ; + Countries_USA_provinces_Texas_cities_Dallas = UsePN (mkPN "Dallas") ; + Countries_FSM_cities_Kolonia = UsePN (mkPN "Kolonia") ; + Countries_I_provinces_Veneto_cities_Vicenza = UsePN (mkPN "Vicenza") ; + Countries_YV_provinces_Barinas_cities_Barinas = UsePN (mkPN "Barinas") ; + Rivers_Zaire = UsePN (mkPN "Zaire") ; + Countries_R_provinces_Arkhangelskayaoblast_cities_Arkhangelsk = UsePN (mkPN "Arkhangelsk") ; + Countries_NL_provinces_Friesland_cities_Leeuwarden = UsePN (mkPN "Leeuwarden") ; + Rivers_Djuba = UsePN (mkPN "Djuba") ; + Benin = UsePN (mkPN "Benin") ; + Countries_USA_provinces_California_cities_Corona = UsePN (mkPN "Corona") ; + Countries_SF_provinces_Vaasa = UsePN (mkPN "Vaasa") ; + Countries_CO_provinces_Vaupes_cities_Mitu = UsePN (mkPN "Mitu") ; + Countries_PK_cities_Sialkot = UsePN (mkPN "Sialkot") ; + Lakes_LakeAlbert = UsePN (mkPN "Lake Albert") ; + Countries_TR_provinces_Bursa = UsePN (mkPN "Bursa") ; + Countries_S_provinces_Vastmanland_cities_Vasteras = UsePN (mkPN "Vasteras") ; + Countries_R_provinces_Rep_ofAdygeya_cities_Maykop = UsePN (mkPN "Maykop") ; + Countries_R_provinces_Lipetskayaoblast_cities_Lipetsk = UsePN (mkPN "Lipetsk") ; + Countries_USA_provinces_RhodeIsland_cities_Providence = UsePN (mkPN "Providence") ; + Countries_PE_provinces_Piura_cities_Piura = UsePN (mkPN "Piura") ; + Countries_TJ_provinces_Sichuan_cities_Chongqing = UsePN (mkPN "Chongqing") ; + Countries_CH_provinces_GR = UsePN (mkPN "GR") ; + Countries_IRQ_provinces_AlBasrah = UsePN (mkPN "Al Basrah") ; + Countries_CH_provinces_JU = UsePN (mkPN "JU") ; + Countries_CH_provinces_VS = UsePN (mkPN "VS") ; + Countries_IRQ_provinces_Irbil = UsePN (mkPN "Irbil") ; + Countries_WAN_cities_Iwo = UsePN (mkPN "Iwo") ; + Countries_VN_provinces_NorthCentralCoast = UsePN (mkPN "North Central Coast") ; + Countries_D_provinces_NordrheinWestfalen_cities_Oberhausen = UsePN (mkPN "Oberhausen") ; + Countries_TM_provinces_Mary = UsePN (mkPN "Mary") ; + Countries_BD_cities_Jamalpur = UsePN (mkPN "Jamalpur") ; + Countries_TJ_provinces_XinjiangUygur_cities_Shihezi = UsePN (mkPN "Shihezi") ; + Countries_MOC_provinces_Zambezia = UsePN (mkPN "Zambezia") ; + Countries_BR_provinces_SaoPaulo_cities_PresidentePrudente = UsePN (mkPN "Presidente Prudente") ; + Countries_TJ_provinces_Jiangxi_cities_Pingxiang = UsePN (mkPN "Pingxiang") ; + Countries_R_provinces_Rostovskayaoblast_cities_RostovnoDonu = UsePN (mkPN "Rostov no Donu") ; + Countries_BR_provinces_RioGrandedoSul = UsePN (mkPN "Rio Grande do Sul") ; + Countries_USA_provinces_California_cities_Anaheim = UsePN (mkPN "Anaheim") ; + Countries_ET_provinces_ElQalubiya_cities_ShubraelKheima = UsePN (mkPN "Shubra el Kheima") ; + Countries_SF_provinces_Pohjols_Karjala_cities_Joensuu = UsePN (mkPN "Joensuu") ; + Countries_R_provinces_Krasnoyarskiykray = UsePN (mkPN "Krasnoyarskiy kray") ; + Countries_USA_provinces_Maine_cities_Augusta = UsePN (mkPN "Augusta") ; + Countries_BR_provinces_Para = UsePN (mkPN "Para") ; + Countries_BR_provinces_SaoPaulo_cities_AparecidadeGoiania = UsePN (mkPN "Aparecida de Goiania") ; + Countries_SK_cities_Bratislava = UsePN (mkPN "Bratislava") ; + Countries_TJ_provinces_Heilongjiang_cities_Beian = UsePN (mkPN "Beian") ; + Organizations_ESA = UsePN (mkPN "European Space Agency") ; + Countries_cid_cia_Faroe_Islands = UsePN (mkPN "Faroe Islands") ; + Countries_CH_provinces_AG_cities_Aarau = UsePN (mkPN "Aarau") ; + Organizations_MekongGroup = UsePN (mkPN "ASEAN-Mekong Basin Development Group") ; + Countries_IR_provinces_Fars_cities_Shiraz = UsePN (mkPN "Shiraz") ; + Islands_Fuerteventura = UsePN (mkPN "Fuerteventura") ; + Countries_TJ_provinces_Heilongjiang_cities_Qiqihar = UsePN (mkPN "Qiqihar") ; + Countries_cid_cia_Macau = UsePN (mkPN "Macau") ; + Countries_MEX_provinces_SanLuisPotosi_cities_SanLuisPotosi = UsePN (mkPN "San Luis Potosi") ; + Countries_J_provinces_Ishikawa_cities_Kanazawa = UsePN (mkPN "Kanazawa") ; + Countries_cid_cia_Wake_Island = UsePN (mkPN "Wake Island") ; + Countries_SA_cities_Riyadh = UsePN (mkPN "Riyadh") ; + Organizations_UN = UsePN (mkPN "United Nations") ; + Countries_E_provinces_Catalonia_cities_Baracaldo = UsePN (mkPN "Baracaldo") ; + Countries_RSA_provinces_KwazuluNatal = UsePN (mkPN "Kwazulu Natal") ; + Countries_ETH_cities_BahirDar = UsePN (mkPN "Bahir Dar") ; + Countries_CDN_provinces_Ontario_cities_NorthYork = UsePN (mkPN "North York") ; + Countries_MEX_provinces_Guanajuato_cities_Salamanca = UsePN (mkPN "Salamanca") ; + Lakes_LakeAbaya = UsePN (mkPN "Lake Abaya") ; + Countries_RO_provinces_Alba = UsePN (mkPN "Alba") ; + Countries_Z_provinces_Luapula_cities_Mansa = UsePN (mkPN "Mansa") ; + Countries_TJ_provinces_Jiangsu_cities_Lianyungang = UsePN (mkPN "Lianyungang") ; + Countries_KAZ_provinces_Qostanay = UsePN (mkPN "Qostanay") ; + Countries_RO_provinces_Bacau_cities_Bacau = UsePN (mkPN "Bacau") ; + Countries_CDN_provinces_NovaScotia = UsePN (mkPN "Nova Scotia") ; + CentralAfricanRepublic = UsePN (mkPN "Central African Republic") ; + Countries_D_provinces_NordrheinWestfalen_cities_Bielefeld = UsePN (mkPN "Bielefeld") ; + Countries_CDN_provinces_Ontario_cities_Nepean = UsePN (mkPN "Nepean") ; + Islands_Kiribati = UsePN (mkPN "Kiribati") ; + Countries_N_provinces_Oppland = UsePN (mkPN "Oppland") ; + Organizations_NC = UsePN (mkPN "Nordic Council") ; + Countries_USA_provinces_California_cities_SanBernardino = UsePN (mkPN "San Bernardino") ; + Countries_IR_provinces_Khuzestan = UsePN (mkPN "Khuzestan") ; + Rivers_Pjandsh = UsePN (mkPN "Pjandsh") ; + Countries_A_provinces_LowerAustria_cities_St_Polten = UsePN (mkPN "St. Polten") ; + Countries_CH_provinces_SH_cities_Schaffhausen = UsePN (mkPN "Schaffhausen") ; + Countries_E_provinces_Asturias = UsePN (mkPN "Asturias") ; + Countries_KWT_cities_Kuwait = UsePN (mkPN "Kuwait") ; + Countries_PL_provinces_Nowosadeckie = UsePN (mkPN "Nowosadeckie") ; + Countries_ET_provinces_ElMinufiya_cities_ShibinelKom = UsePN (mkPN "Shibin el Kom") ; + Countries_J_provinces_Fukui_cities_Fukui = UsePN (mkPN "Fukui") ; + Countries_EAK_provinces_Eastern_cities_Machakos = UsePN (mkPN "Machakos") ; + Countries_GB_provinces_Tayside = UsePN (mkPN "Tayside") ; + Countries_USA_provinces_Iowa_cities_CedarRapids = UsePN (mkPN "Cedar Rapids") ; + Countries_RO_provinces_Alba_cities_AlbaIulia = UsePN (mkPN "Alba Iulia") ; + Countries_TJ_provinces_Heilongjiang_cities_Mudanjiang = UsePN (mkPN "Mudanjiang") ; + Countries_ANG_provinces_CuanzaSul = UsePN (mkPN "Cuanza Sul") ; + Countries_J_provinces_Fukuoka = UsePN (mkPN "Fukuoka") ; + Countries_MEX_provinces_Coahuila_cities_Saltillo = UsePN (mkPN "Saltillo") ; + Rivers_Don = UsePN (mkPN "Don") ; + Countries_N_provinces_Oslo = UsePN (mkPN "Oslo") ; + Countries_CR_provinces_Alajuela = UsePN (mkPN "Alajuela") ; + Countries_R_provinces_Rep_ofKarelia_cities_Petrozavodsk = UsePN (mkPN "Petrozavodsk") ; + Countries_BR_provinces_SaoPaulo_cities_Itu = UsePN (mkPN "Itu") ; + Countries_WAN_cities_Oka = UsePN (mkPN "Oka") ; + Countries_PL_provinces_Krosnienskie_cities_Krosno = UsePN (mkPN "Krosno") ; + Countries_USA_provinces_Maryland = UsePN (mkPN "Maryland") ; + Countries_GB_provinces_Essex_cities_Chelmsford = UsePN (mkPN "Chelmsford") ; + Countries_ZRE_provinces_Kinshasa = UsePN (mkPN "Kinshasa") ; + Countries_ZRE_provinces_Equateur = UsePN (mkPN "Equateur") ; + Countries_TR_provinces_Canakkale_cities_Canakkale = UsePN (mkPN "Canakkale") ; + Deserts_ErgRebiana = UsePN (mkPN "Erg Rebiana") ; + Countries_IND_provinces_JammuandKashmir_cities_Jammu = UsePN (mkPN "Jammu") ; + Countries_S_provinces_Jamtland = UsePN (mkPN "Jamtland") ; + Countries_TJ_provinces_Shaanxi_cities_Yanan = UsePN (mkPN "Yanan") ; + Countries_E_provinces_CastileLaMancha_cities_Toledo = UsePN (mkPN "Toledo") ; + Countries_RO_provinces_Brasov = UsePN (mkPN "Brasov") ; + Countries_TJ_provinces_Hunan_cities_Changde = UsePN (mkPN "Changde") ; + Islands_Jersey = UsePN (mkPN "Jersey") ; + Countries_GH_cities_Tamale = UsePN (mkPN "Tamale") ; + Countries_ET_provinces_Matruh = UsePN (mkPN "Matruh") ; + Countries_D_provinces_NordrheinWestfalen_cities_BergischGladbach = UsePN (mkPN "Bergisch Gladbach") ; + Countries_WAN_cities_Ilorin = UsePN (mkPN "Ilorin") ; + Countries_BR_provinces_Bahia_cities_Salvador = UsePN (mkPN "Salvador") ; + Seas_IrishSea = UsePN (mkPN "Irish Sea") ; + Countries_ES_cities_Soyapango = UsePN (mkPN "Soyapango") ; + Countries_R_provinces_Permskayaoblast_cities_Perm = UsePN (mkPN "Perm") ; + Organizations_IOM = UsePN (mkPN "International Organization for Migration") ; + Organizations_G_30 = UsePN (mkPN "Group of 30") ; + Countries_IRQ_provinces_Karbala_cities_Karbala = UsePN (mkPN "Karbala") ; + Countries_RC_provinces_Tainan_munic = UsePN (mkPN "Tainan (munic.)") ; + Islands_Gomera = UsePN (mkPN "Gomera") ; + Countries_GB_provinces_Bedfordshire_cities_Luton = UsePN (mkPN "Luton") ; + Continents_Africa = UsePN (mkPN "Africa") ; + Countries_MOC_provinces_Tete_cities_Tete = UsePN (mkPN "Tete") ; + Countries_PE_provinces_Ucayali_cities_Pucallpa = UsePN (mkPN "Pucallpa") ; + Countries_USA_provinces_California_cities_Oxnard = UsePN (mkPN "Oxnard") ; + Countries_CO_provinces_Amazonas = UsePN (mkPN "Amazonas") ; + Countries_IND_provinces_Maharashtra_cities_Amravati = UsePN (mkPN "Amravati") ; + Countries_SN_provinces_Tambacounda_cities_Tambacounda = UsePN (mkPN "Tambacounda") ; + Vietnam = UsePN (mkPN "Vietnam") ; + Countries_B_provinces_Hainaut_cities_Charleroi = UsePN (mkPN "Charleroi") ; + Countries_GB_provinces_Kent_cities_RochesteruponMedway = UsePN (mkPN "Rochester upon Medway") ; + Countries_WAN_cities_Abuja = UsePN (mkPN "Abuja") ; + Countries_USA_provinces_Arizona_cities_Phoenix = UsePN (mkPN "Phoenix") ; + Countries_USA_provinces_NewYork_cities_Albany = UsePN (mkPN "Albany") ; + Countries_TAD_provinces_Dushanbe_munic_cities_Dushanbe = UsePN (mkPN "Dushanbe") ; + Countries_BR_provinces_MinasGerais_cities_Barbacena = UsePN (mkPN "Barbacena") ; + Countries_CO_provinces_Cauca = UsePN (mkPN "Cauca") ; + Countries_GB_provinces_Kent_cities_TunbridgeWells = UsePN (mkPN "Tunbridge Wells") ; + Countries_NOK_cities_Kusong = UsePN (mkPN "Kusong") ; + Countries_TR_provinces_Amasya = UsePN (mkPN "Amasya") ; + Countries_BR_provinces_MinasGerais_cities_BeloHorizonte = UsePN (mkPN "Belo Horizonte") ; + Countries_MH_cities_Majuro = UsePN (mkPN "Majuro") ; + Countries_TJ_provinces_Hebei_cities_Tangshan = UsePN (mkPN "Tangshan") ; + Countries_BR_provinces_Pernambuco_cities_VitoriadeSantoAntao = UsePN (mkPN "Vitoria de Santo Antao") ; + Countries_PL_provinces_Skierniewickie_cities_Skierniewice = UsePN (mkPN "Skierniewice") ; + Countries_UA_provinces_Donetska = UsePN (mkPN "Donetska") ; + Countries_ES_provinces_LaLibertad_cities_NuevaSanSalvador = UsePN (mkPN "Nueva San Salvador") ; + Countries_GB_provinces_Central = UsePN (mkPN "Central") ; + Countries_SF_provinces_Mikkeli = UsePN (mkPN "Mikkeli") ; + Azerbaijan = UsePN (mkPN "Azerbaijan") ; + Countries_TR_provinces_Samsun_cities_Samsun = UsePN (mkPN "Samsun") ; + Countries_UAE_provinces_AlFujayrah = UsePN (mkPN "Al Fujayrah") ; + Countries_GB_provinces_HerefordandWorcester_cities_Worcester = UsePN (mkPN "Worcester") ; + Countries_cid_cia_Gibraltar_cities_Gibraltar = UsePN (mkPN "Gibraltar") ; + Countries_PE_provinces_Piura_cities_Talara = UsePN (mkPN "Talara") ; + Countries_GB_provinces_Surrey_cities_Reigate = UsePN (mkPN "Reigate") ; + Countries_MOC_provinces_Maputo_cities_Nacala = UsePN (mkPN "Nacala") ; + Organizations_OSCE = UsePN (mkPN "Organization for Security and Cooperation in Europe") ; + Countries_J_provinces_Kyoto = UsePN (mkPN "Kyoto") ; + Countries_HCA_provinces_Choluteca = UsePN (mkPN "Choluteca") ; + Countries_RA_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; + Countries_YV_provinces_Anzoategui = UsePN (mkPN "Anzoategui") ; + Countries_GB_provinces_Wiltshire_cities_Trowbridge = UsePN (mkPN "Trowbridge") ; + Countries_D_provinces_Berlin_cities_Berlin = UsePN (mkPN "Berlin") ; + Countries_TR_provinces_Bursa_cities_Bursa = UsePN (mkPN "Bursa") ; + Lakes_LakePowell = UsePN (mkPN "Lake Powell") ; + SolomonIslands = UsePN (mkPN "Solomon Islands") ; + Countries_PE_provinces_Moquegua_cities_Moquegua = UsePN (mkPN "Moquegua") ; + Canada = UsePN (mkPN "Canada") ; + Countries_USA_provinces_California_cities_LongBeach = UsePN (mkPN "Long Beach") ; + Countries_MEX_provinces_Michoacan_cities_Zamora = UsePN (mkPN "Zamora") ; + Countries_BR_provinces_SaoPaulo_cities_Barretos = UsePN (mkPN "Barretos") ; + Countries_UZB_provinces_Samarqand = UsePN (mkPN "Samarqand") ; + Countries_MYA_provinces_Kachin_cities_Myitkyina = UsePN (mkPN "Myitkyina") ; + Countries_TR_cities_Icel = UsePN (mkPN "Icel") ; + Countries_J_provinces_Oita = UsePN (mkPN "Oita") ; + Countries_D_provinces_Niedersachsen_cities_Salzgitter = UsePN (mkPN "Salzgitter") ; + Countries_KAZ_provinces_Zhambyl_cities_Zhambyl = UsePN (mkPN "Zhambyl") ; + Countries_TR_provinces_Aydin = UsePN (mkPN "Aydin") ; + Countries_N_provinces_Hedmark = UsePN (mkPN "Hedmark") ; + Countries_GB_provinces_Staffordshire_cities_Stafford = UsePN (mkPN "Stafford") ; + Countries_USA_provinces_California_cities_ThousandOaks = UsePN (mkPN "Thousand Oaks") ; + Countries_TJ_provinces_Shandong_cities_Weifang = UsePN (mkPN "Weifang") ; + Countries_EAT_provinces_Tanga = UsePN (mkPN "Tanga") ; + Countries_ANG_provinces_Cabinda = UsePN (mkPN "Cabinda") ; + Lakes_LakeHuron = UsePN (mkPN "Lake Huron") ; + Countries_NL_provinces_NoordHolland_cities_Hilversum = UsePN (mkPN "Hilversum") ; + Countries_IND_provinces_JammuandKashmir_cities_Srinagar = UsePN (mkPN "Srinagar") ; + Rivers_WebiSchebeli = UsePN (mkPN "Webi Schebeli") ; + Organizations_GCC = UsePN (mkPN "Gulf Cooperation Council") ; + Countries_MEX_cities_SoledaddeGracianoSanchez = UsePN (mkPN "Soledad de Graciano Sanchez") ; + Countries_BR_provinces_Paraiba_cities_JoaoPessoa = UsePN (mkPN "Joao Pessoa") ; + Countries_J_provinces_Tokyo_cities_Tokyo = UsePN (mkPN "Tokyo") ; + Countries_UA_provinces_Rivnenska_cities_Rivne = UsePN (mkPN "Rivne") ; + Countries_TJ_provinces_XinjiangUygur_cities_Urumqi = UsePN (mkPN "Urumqi") ; + Countries_TR_provinces_Kutahya_cities_Kutahya = UsePN (mkPN "Kutahya") ; + Countries_THA_provinces_Trat = UsePN (mkPN "Trat") ; + Countries_COM_cities_Moroni = UsePN (mkPN "Moroni") ; + Countries_R_provinces_Moskovskayaoblast_cities_Noginsk = UsePN (mkPN "Noginsk") ; + Countries_WAN_cities_Ondo = UsePN (mkPN "Ondo") ; + Countries_USA_provinces_Montana = UsePN (mkPN "Montana") ; + Countries_J_provinces_Hyogo = UsePN (mkPN "Hyogo") ; + Countries_E_provinces_Valencia_cities_Valencia = UsePN (mkPN "Valencia") ; + Countries_IRQ_provinces_DhiQar = UsePN (mkPN "Dhi Qar") ; + Countries_TJ_provinces_Guizhou_cities_Anshun = UsePN (mkPN "Anshun") ; + Countries_cid_cia_Norfolk_Island_cities_Kingston = UsePN (mkPN "Kingston") ; + Countries_CH_provinces_ZH = UsePN (mkPN "ZH") ; + Islands_LaPalma = UsePN (mkPN "La Palma") ; + Countries_VN_cities_LongXuyen = UsePN (mkPN "Long Xuyen") ; + Countries_RC_provinces_Kaohsiung = UsePN (mkPN "Kaohsiung") ; + Countries_E_provinces_Madrid_cities_Leganes = UsePN (mkPN "Leganes") ; + Countries_PE_provinces_Loreto = UsePN (mkPN "Loreto") ; + Countries_UA_provinces_Chernihivska = UsePN (mkPN "Chernihivska") ; + Tonga = UsePN (mkPN "Tonga") ; + Countries_RC_provinces_Tainan_munic_cities_Tainan = UsePN (mkPN "Tainan") ; + Countries_GB_provinces_Highland_cities_Inverness = UsePN (mkPN "Inverness") ; + Mountains_Pulog = UsePN (mkPN "Pulog") ; + Countries_R_provinces_Rep_ofMariyEl = UsePN (mkPN "Rep. of Mariy El") ; + Countries_TR_provinces_Karaman_cities_Karaman = UsePN (mkPN "Karaman") ; + Countries_TR_provinces_Afyon = UsePN (mkPN "Afyon") ; + Countries_R_provinces_Ryazanskayaoblast = UsePN (mkPN "Ryazanskaya oblast") ; + Islands_IsleofMan = UsePN (mkPN "Isle of Man") ; + Countries_J_provinces_Ehime = UsePN (mkPN "Ehime") ; + Countries_GQ_cities_Sta_Isabel = UsePN (mkPN "Sta. Isabel") ; + Countries_CH_provinces_ZG_cities_Zug = UsePN (mkPN "Zug") ; + Countries_PL_provinces_Zielonogorskie = UsePN (mkPN "Zielonogorskie") ; + Countries_A_provinces_Salzburg_cities_Salzburg = UsePN (mkPN "Salzburg") ; + Countries_MA_provinces_CentreSud = UsePN (mkPN "Centre Sud") ; + Countries_VN_cities_CanTho = UsePN (mkPN "Can Tho") ; + Countries_CH_provinces_LU_cities_Luzern = UsePN (mkPN "Luzern") ; + Countries_IND_provinces_AndhraPradesh = UsePN (mkPN "Andhra Pradesh") ; + Countries_NL_provinces_NoordBrabant_cities_sHertogenbosch = UsePN (mkPN "s Hertogenbosch") ; + Countries_TJ_provinces_XinjiangUygur_cities_Kashi = UsePN (mkPN "Kashi") ; + Countries_CO_provinces_Cesar_cities_Valledupar = UsePN (mkPN "Valledupar") ; + Countries_IND_provinces_Punjab_cities_Amritsar = UsePN (mkPN "Amritsar") ; + Countries_UA_provinces_Cherkaska = UsePN (mkPN "Cherkaska") ; + Countries_R_provinces_Rep_ofMordovia_cities_Saransk = UsePN (mkPN "Saransk") ; + Countries_ET_provinces_ElQahira_munic_cities_Helwan = UsePN (mkPN "Helwan") ; + Countries_C_provinces_SantiagodeCuba = UsePN (mkPN "Santiago de Cuba") ; + Deserts_ErgIgidi = UsePN (mkPN "Erg Igidi") ; + Countries_GB_provinces_Grampian = UsePN (mkPN "Grampian") ; + Countries_GR_provinces_Kriti = UsePN (mkPN "Kriti") ; + Countries_GB_provinces_Gloucestershire = UsePN (mkPN "Gloucestershire") ; + Countries_S_provinces_Stockholm_cities_Stockholm = UsePN (mkPN "Stockholm") ; + Islands_Vulcano = UsePN (mkPN "Vulcano") ; + Countries_PL_provinces_Zamojskie = UsePN (mkPN "Zamojskie") ; + Countries_BR_provinces_EspiritoSanto = UsePN (mkPN "Espirito Santo") ; + Countries_J_provinces_Yamagata = UsePN (mkPN "Yamagata") ; + Countries_F_provinces_Bourgogne_cities_Dijon = UsePN (mkPN "Dijon") ; + Countries_PA_provinces_ComarcadeSanBlas = UsePN (mkPN "Comarca de San Blas") ; + Countries_EAT_provinces_Kilimanjaro = UsePN (mkPN "Kilimanjaro") ; + Countries_D_provinces_NordrheinWestfalen_cities_Duisburg = UsePN (mkPN "Duisburg") ; + Organizations_IMO = UsePN (mkPN "International Maritime Organization") ; + Countries_TR_provinces_Batman_cities_Batman = UsePN (mkPN "Batman") ; + Organizations_CCC = UsePN (mkPN "Customs Cooperation Council") ; + Countries_UA_provinces_Mykolayivska = UsePN (mkPN "Mykolayivska") ; + Countries_NOK_cities_Kaesong = UsePN (mkPN "Kaesong") ; + Countries_MEX_provinces_Aguascalientes_cities_Aguascalientes = UsePN (mkPN "Aguascalientes") ; + Countries_J_provinces_Gifu_cities_Gifu = UsePN (mkPN "Gifu") ; + Organizations_UNEP = UsePN (mkPN "United Nations Environment Program") ; + Countries_cid_cia_Bermuda_cities_Hamilton = UsePN (mkPN "Hamilton") ; + Countries_EAK_provinces_Nairobi = UsePN (mkPN "Nairobi") ; + Countries_VN_provinces_LongAn = UsePN (mkPN "Long An") ; + Countries_PL_provinces_Suwalskie = UsePN (mkPN "Suwalskie") ; + Countries_E_provinces_BasqueCountry_cities_Bilbao = UsePN (mkPN "Bilbao") ; + Countries_PL_cities_JastrzebieZdroj = UsePN (mkPN "Jastrzebie Zdroj") ; + Countries_MEX_cities_Llave = UsePN (mkPN "Llave") ; + Countries_CDN_provinces_Alberta_cities_Calgary = UsePN (mkPN "Calgary") ; + Countries_R_provinces_Bryanskayaoblast = UsePN (mkPN "Bryanskaya oblast") ; + Countries_USA_provinces_Kansas_cities_OverlandPark = UsePN (mkPN "Overland Park") ; + Countries_ANG_provinces_Benguela = UsePN (mkPN "Benguela") ; + Countries_MEX_provinces_Guanajuato = UsePN (mkPN "Guanajuato") ; + Countries_cid_cia_Greenland_cities_Nuuk = UsePN (mkPN "Nuuk") ; + Islands_Lewis = UsePN (mkPN "Lewis") ; + Countries_J_provinces_Kagawa = UsePN (mkPN "Kagawa") ; + Countries_E_provinces_Cantabria = UsePN (mkPN "Cantabria") ; + Countries_J_provinces_Fukuoka_cities_Fukuoka = UsePN (mkPN "Fukuoka") ; + Countries_TR_provinces_Zonguldak_cities_Karabuk = UsePN (mkPN "Karabuk") ; + Islands_Skye = UsePN (mkPN "Skye") ; + Countries_BR_provinces_Roraima = UsePN (mkPN "Roraima") ; + Countries_THA_provinces_ChiangMai = UsePN (mkPN "Chiang Mai") ; + Countries_BD_cities_Savar = UsePN (mkPN "Savar") ; + Countries_CO_provinces_ValledeCauca_cities_Buenaventura = UsePN (mkPN "Buenaventura") ; + Countries_BD_cities_Dhaka = UsePN (mkPN "Dhaka") ; + Seychelles = UsePN (mkPN "Seychelles") ; + Countries_CH_provinces_GE_cities_Geneva = UsePN (mkPN "Geneva") ; + Countries_IR_provinces_Semnan = UsePN (mkPN "Semnan") ; + Countries_PE_provinces_Ayacucho = UsePN (mkPN "Ayacucho") ; + Countries_TJ_provinces_Heilongjiang_cities_Hegang = UsePN (mkPN "Hegang") ; + Countries_I_provinces_Abruzzo_cities_LAquila = UsePN (mkPN "LAquila") ; + Rivers_Drin = UsePN (mkPN "Drin") ; + Countries_RO_provinces_Buzau_cities_Buzau = UsePN (mkPN "Buzau") ; + Countries_YV_provinces_Miranda_cities_Petare = UsePN (mkPN "Petare") ; + Countries_NZ_cities_Auckland = UsePN (mkPN "Auckland") ; + Countries_THA_provinces_Pattani = UsePN (mkPN "Pattani") ; + Countries_RSA_provinces_Gauteng_cities_Johannesburg = UsePN (mkPN "Johannesburg") ; + Countries_ZW_cities_Harare = UsePN (mkPN "Harare") ; + Countries_VN_cities_NhaTrang = UsePN (mkPN "Nha Trang") ; + Countries_IR_provinces_Markazi_cities_Arak = UsePN (mkPN "Arak") ; + Countries_GB_provinces_Anglesey_cities_Llangefni = UsePN (mkPN "Llangefni") ; + Countries_PL_provinces_Rzeszowskie_cities_Rzeszow = UsePN (mkPN "Rzeszow") ; + Countries_F_provinces_LanguedocRousillon_cities_Perpignan = UsePN (mkPN "Perpignan") ; + Countries_R_provinces_Smolenskayaoblast = UsePN (mkPN "Smolenskaya oblast") ; + Countries_NCA_cities_Noumea = UsePN (mkPN "Noumea") ; + Countries_CDN_provinces_Quebec_cities_Quebec = UsePN (mkPN "Quebec") ; + Countries_UZB_provinces_Surkhondare = UsePN (mkPN "Surkhondare") ; + Countries_GB_provinces_Suffolk = UsePN (mkPN "Suffolk") ; + Countries_THA_provinces_UbonRatchathani = UsePN (mkPN "Ubon Ratchathani") ; + Countries_RA_provinces_SantaCruz = UsePN (mkPN "Santa Cruz") ; + Countries_BR_provinces_SaoPaulo_cities_Indaiatuba = UsePN (mkPN "Indaiatuba") ; + Countries_TR_provinces_Trabzon_cities_Trabzon = UsePN (mkPN "Trabzon") ; + Countries_S_provinces_Ostergotland_cities_Linkoping = UsePN (mkPN "Linkoping") ; + Kuwait = UsePN (mkPN "Kuwait") ; + Countries_NL_provinces_ZuidHolland_cities_Rotterdam = UsePN (mkPN "Rotterdam") ; + Countries_J_provinces_Fukuoka_cities_Kitakyushu = UsePN (mkPN "Kita kyushu") ; + Countries_IND_provinces_Maharashtra_cities_Mumbai = UsePN (mkPN "Mumbai") ; + Countries_UA_provinces_Volynska_cities_Lutsk = UsePN (mkPN "Lutsk") ; + Countries_CH_provinces_NE_cities_Neuchatel = UsePN (mkPN "Neuchatel") ; + Countries_USA_provinces_Tennessee_cities_Knoxville = UsePN (mkPN "Knoxville") ; + Countries_cid_cia_Anguilla = UsePN (mkPN "Anguilla") ; + Countries_RI_cities_Pekalongan = UsePN (mkPN "Pekalongan") ; + Countries_PK_cities_Larkana = UsePN (mkPN "Larkana") ; + Countries_GB_provinces_Derbyshire_cities_Derby = UsePN (mkPN "Derby") ; + Countries_THA_provinces_SakonNakhon = UsePN (mkPN "Sakon Nakhon") ; + Lakes_LakeUrumiyeh = UsePN (mkPN "Lake Urumiyeh") ; + Countries_GB_provinces_TyneandWear_cities_NewcastleuponTyne = UsePN (mkPN "Newcastle upon Tyne") ; + Qatar = UsePN (mkPN "Qatar") ; + Countries_R_provinces_Stavropolskykray_cities_Neftekamsk = UsePN (mkPN "Neftekamsk") ; + Countries_NL_provinces_Flevoland = UsePN (mkPN "Flevoland") ; + Countries_TJ_provinces_Jiangsu_cities_Yizheng = UsePN (mkPN "Yizheng") ; + Countries_BR_provinces_RiodeJaneiro_cities_Niteroi = UsePN (mkPN "Niteroi") ; + Countries_IND_provinces_Karnataka_cities_Bangalore = UsePN (mkPN "Bangalore") ; + Countries_R_provinces_Chelyabinskayaoblast_cities_Zlatoust = UsePN (mkPN "Zlatoust") ; + Countries_I_provinces_Lombardia_cities_Milan = UsePN (mkPN "Milan") ; + Islands_Patmos = UsePN (mkPN "Patmos") ; + Lakes_LakeWinnipeg = UsePN (mkPN "Lake Winnipeg") ; + Countries_RC_provinces_Chilung_munic_cities_Chilung = UsePN (mkPN "Chilung") ; + Countries_H_provinces_KomaromEsztergom = UsePN (mkPN "Komarom Esztergom") ; + Countries_IND_provinces_Mizoram_cities_Aijal = UsePN (mkPN "Aijal") ; + Countries_HR_cities_Zagreb = UsePN (mkPN "Zagreb") ; + Macedonia = UsePN (mkPN "Macedonia") ; + Countries_MEX_provinces_NuevoLeon = UsePN (mkPN "Nuevo Leon") ; + Countries_GB_provinces_Swansea_cities_Swansea = UsePN (mkPN "Swansea") ; + Countries_RC_provinces_Ilan = UsePN (mkPN "Ilan") ; + Lakes_LakeTanganjika = UsePN (mkPN "Lake Tanganjika") ; + Countries_MEX_provinces_NuevoLeon_cities_SanNicolasdelosGarza = UsePN (mkPN "San Nicolas de los Garza") ; + Countries_D_provinces_Brandenburg_cities_Cottbus = UsePN (mkPN "Cottbus") ; + Countries_TR_provinces_Kastamonu = UsePN (mkPN "Kastamonu") ; + Mountains_PicoDuarte = UsePN (mkPN "Pico Duarte") ; + Countries_RA_provinces_SanLuis_cities_SanLuis = UsePN (mkPN "San Luis") ; + Countries_RC_provinces_Yunlin_cities_Touliu = UsePN (mkPN "Touliu") ; + Countries_GB_provinces_ValeofGlamorgan = UsePN (mkPN "Vale of Glamorgan") ; + Countries_WAL_cities_Freetown = UsePN (mkPN "Freetown") ; + Countries_SF_provinces_Haeme_cities_Haemeenlinna = UsePN (mkPN "Haemeenlinna") ; + Countries_R_provinces_Altayskiykray_cities_Barnaul = UsePN (mkPN "Barnaul") ; + Countries_VN_provinces_SocTrang = UsePN (mkPN "Soc Trang") ; + Countries_ANG_provinces_LundaNorte_cities_Lucapa = UsePN (mkPN "Lucapa") ; + Countries_R_provinces_Volgogradskayaoblast_cities_Kamyshin = UsePN (mkPN "Kamyshin") ; + Islands_Kotelnyisland = UsePN (mkPN "Kotelny island") ; + Rivers_Seine = UsePN (mkPN "Seine") ; + Countries_MAL_provinces_Sarawak_cities_Sibu = UsePN (mkPN "Sibu") ; + Organizations_ESCAP = UsePN (mkPN "Economic and Social Commission for Asia and the Pacific") ; + Countries_CR_provinces_Alajuela_cities_Alajuela = UsePN (mkPN "Alajuela") ; + Countries_TJ_provinces_Tibet = UsePN (mkPN "Tibet") ; + Countries_GR_provinces_AnatolikiMakedhoniakaiThraki = UsePN (mkPN "Anatoliki Makedhonia kai Thraki") ; + Countries_TR_provinces_Samsun = UsePN (mkPN "Samsun") ; + Countries_RSA_cities_Sandton = UsePN (mkPN "Sandton") ; + Rivers_Kura = UsePN (mkPN "Kura") ; + Countries_MAL_provinces_Selangor_cities_ShahAlam = UsePN (mkPN "Shah Alam") ; + Countries_RI_cities_Surabaya = UsePN (mkPN "Surabaya") ; + Countries_PA_provinces_Panama_cities_SanMiguelito = UsePN (mkPN "San Miguelito") ; + Countries_VN_provinces_LangSon = UsePN (mkPN "Lang Son") ; + Countries_TJ_provinces_Hubei_cities_Cangzhou = UsePN (mkPN "Cangzhou") ; + Countries_GB_provinces_Essex_cities_SouthendonSea = UsePN (mkPN "Southend on Sea") ; + Countries_BR_provinces_Amazonas_cities_Manaus = UsePN (mkPN "Manaus") ; + Islands_Palawan = UsePN (mkPN "Palawan") ; + Countries_SN_provinces_Thies_cities_Thies = UsePN (mkPN "Thies") ; + Countries_MA_provinces_NordOuest = UsePN (mkPN "Nord Ouest") ; + Countries_UA_provinces_Chernihivska_cities_Chernihiv = UsePN (mkPN "Chernihiv") ; + Countries_TJ_provinces_Zhejiang_cities_Cixi = UsePN (mkPN "Cixi") ; + Countries_S_provinces_Kronoberg = UsePN (mkPN "Kronoberg") ; + Countries_SUD_provinces_alKhartum_cities_KhartoumNorth = UsePN (mkPN "Khartoum North") ; + Countries_TJ_provinces_GuangxiZhuangzu = UsePN (mkPN "Guangxi Zhuangzu") ; + Countries_PK_cities_DeraGhaziKhan = UsePN (mkPN "Dera Ghazi Khan") ; + Organizations_UNIDO = UsePN (mkPN "United Nations Industrial Development Organization") ; + Countries_IL_provinces_Haifa = UsePN (mkPN "Haifa") ; + Countries_EAT_provinces_Kagera_cities_Bukoba = UsePN (mkPN "Bukoba") ; + Countries_RO_provinces_Covasha = UsePN (mkPN "Covasha") ; + Countries_CZ_provinces_Jihomoravsky = UsePN (mkPN "Jihomoravsky") ; + Countries_MAL_provinces_NegeriSembilan = UsePN (mkPN "Negeri Sembilan") ; + Organizations_CE = UsePN (mkPN "Council of Europe") ; + Countries_SF_provinces_Turku_Pori = UsePN (mkPN "Turku-Pori") ; + Countries_MA_provinces_Oriental = UsePN (mkPN "Oriental") ; + Countries_TR_provinces_Bitlis_cities_Bitlis = UsePN (mkPN "Bitlis") ; + Countries_TJ_provinces_Hebei_cities_Zhangjiakou = UsePN (mkPN "Zhangjiakou") ; + Countries_B_provinces_Namur_cities_Namur = UsePN (mkPN "Namur") ; + Countries_GB_provinces_Berkshire_cities_Bracknell = UsePN (mkPN "Bracknell") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Liuzhou = UsePN (mkPN "Liuzhou") ; + Countries_AUS_provinces_WesternAustralia_cities_Albany = UsePN (mkPN "Albany") ; + Countries_BR_provinces_RiodeJaneiro_cities_Macae = UsePN (mkPN "Macae") ; + Countries_H_provinces_Veszprem_cities_Veszprem = UsePN (mkPN "Veszprem") ; + Deserts_Trarza = UsePN (mkPN "Trarza") ; + Countries_RO_provinces_Neamt = UsePN (mkPN "Neamt") ; + Countries_YV_provinces_Lara_cities_Barquisimeto = UsePN (mkPN "Barquisimeto") ; + Countries_IL_provinces_TelAviv_cities_TelAviv = UsePN (mkPN "Tel Aviv") ; + Countries_MAL_provinces_Selangor_cities_Kelang = UsePN (mkPN "Kelang") ; + Countries_CO_provinces_Vaupes = UsePN (mkPN "Vaupes") ; + Countries_RO_provinces_Olt_cities_Slatina = UsePN (mkPN "Slatina") ; + Netherlands = UsePN (mkPN "Netherlands") ; + Countries_MAL_provinces_Johor = UsePN (mkPN "Johor") ; + Deserts_Kysylkum = UsePN (mkPN "Kysylkum") ; + Countries_MEX_provinces_Puebla_cities_Puebla = UsePN (mkPN "Puebla") ; + Countries_RO_provinces_Bihor_cities_Oradea = UsePN (mkPN "Oradea") ; + Countries_IR_provinces_ChaharMahaleBakhtiari = UsePN (mkPN "Chahar Mahal e Bakhtiari") ; + Organizations_IDB = UsePN (mkPN "Islamic Development Bank") ; + Countries_RO_provinces_Timis = UsePN (mkPN "Timis") ; + Countries_CO_provinces_Bolivar_cities_Cartagena = UsePN (mkPN "Cartagena") ; + Countries_C_provinces_LasTunas = UsePN (mkPN "Las Tunas") ; + Countries_ANG_provinces_CuandoCubango = UsePN (mkPN "Cuando Cubango") ; + Countries_GB_provinces_Cleveland_cities_Middlesbrough = UsePN (mkPN "Middlesbrough") ; + Countries_CO_provinces_SantanderdelSur = UsePN (mkPN "Santander del Sur") ; + Countries_R_provinces_Tulskayaoblast = UsePN (mkPN "Tulskaya oblast") ; + Countries_CO_provinces_Cesar = UsePN (mkPN "Cesar") ; + Countries_D_provinces_NordrheinWestfalen_cities_Krefeld = UsePN (mkPN "Krefeld") ; + Countries_cid_cia_Howland_Island = UsePN (mkPN "Howland Island") ; + Uruguay = UsePN (mkPN "Uruguay") ; + Countries_J_provinces_Saga = UsePN (mkPN "Saga") ; + Islands_Alicudi = UsePN (mkPN "Alicudi") ; + Lakes_LakeNgami = UsePN (mkPN "Lake Ngami") ; + Countries_GB_provinces_Merseyside = UsePN (mkPN "Merseyside") ; + Countries_YV_provinces_Miranda = UsePN (mkPN "Miranda") ; + Countries_B_provinces_Namur = UsePN (mkPN "Namur") ; + Countries_UZB_provinces_Nawoiy = UsePN (mkPN "Nawoiy") ; + Countries_USA_provinces_Arizona_cities_Glendale = UsePN (mkPN "Glendale") ; + Countries_BD_cities_Rajshahi = UsePN (mkPN "Rajshahi") ; + Countries_GB_provinces_Durham = UsePN (mkPN "Durham") ; + Countries_USA_provinces_Arizona_cities_Chandler = UsePN (mkPN "Chandler") ; + Countries_IND_provinces_Kerala_cities_Kozhikode = UsePN (mkPN "Kozhikode") ; + Chile = UsePN (mkPN "Chile") ; + Countries_PK_cities_Okara = UsePN (mkPN "Okara") ; + Countries_RO_provinces_BistritaNasaud = UsePN (mkPN "Bistrita Nasaud") ; + Countries_E_provinces_Aragon = UsePN (mkPN "Aragon") ; + Countries_MAL_provinces_Perak_cities_Ipoh = UsePN (mkPN "Ipoh") ; + Countries_GB_provinces_Strathclyde = UsePN (mkPN "Strathclyde") ; + Countries_CAM_provinces_Adamaoua_cities_Ngaoundere = UsePN (mkPN "Ngaoundere") ; + Countries_C_provinces_Holguin = UsePN (mkPN "Holguin") ; + Countries_N_provinces_Oestfold_cities_Moss = UsePN (mkPN "Moss") ; + Countries_E_provinces_Valencia_cities_CastellondelaPlana = UsePN (mkPN "Castellon de la Plana") ; + Countries_RA_provinces_Neuquen = UsePN (mkPN "Neuquen") ; + Countries_IRQ_provinces_AlAnbar = UsePN (mkPN "Al Anbar") ; + Countries_RI_cities_TebingTinggi = UsePN (mkPN "Tebing Tinggi") ; + Swaziland = UsePN (mkPN "Swaziland") ; + Countries_GB_provinces_Merseyside_cities_SaintHelens = UsePN (mkPN "Saint Helens") ; + Deserts_Tanesruft = UsePN (mkPN "Tanesruft") ; + Countries_SUD_provinces_alWusta = UsePN (mkPN "al Wusta") ; + Countries_TJ_provinces_Hebei_cities_Xingtai = UsePN (mkPN "Xingtai") ; + Countries_TJ_provinces_Shaanxi_cities_Hanzhong = UsePN (mkPN "Hanzhong") ; + Countries_TR_provinces_Konya = UsePN (mkPN "Konya") ; + Countries_cid_cia_Paracel_Islands = UsePN (mkPN "Paracel Islands") ; + Countries_Q_cities_Rayyan = UsePN (mkPN "Rayyan") ; + Countries_N_provinces_SoerTrondelag = UsePN (mkPN "Soer Trondelag") ; + Countries_THA_provinces_SuphanBuri = UsePN (mkPN "Suphan Buri") ; + Countries_VN_provinces_TraVinh = UsePN (mkPN "Tra Vinh") ; + Countries_Z_provinces_Copperbelt_cities_Kitwe = UsePN (mkPN "Kitwe") ; + Countries_GB_provinces_Cheshire = UsePN (mkPN "Cheshire") ; + Countries_TJ_provinces_Jiangsu_cities_Changzhou = UsePN (mkPN "Changzhou") ; + Countries_THA_provinces_AngThong = UsePN (mkPN "Ang Thong") ; + Countries_TR_provinces_Kirklareli = UsePN (mkPN "Kirklareli") ; + Countries_HCA_provinces_Cortes_cities_PuertoCortes = UsePN (mkPN "Puerto Cortes") ; + Countries_R_provinces_Rep_ofIngushetiya_cities_Nazran = UsePN (mkPN "Nazran") ; + Countries_F_provinces_PaysdelaLoire_cities_Angers = UsePN (mkPN "Angers") ; + Mountains_HumphreysPeak = UsePN (mkPN "Humphreys Peak") ; + Countries_IND_provinces_Maharashtra_cities_Nasik = UsePN (mkPN "Nasik") ; + Countries_EAT_provinces_MjiniMagharibi = UsePN (mkPN "Mjini Magharibi") ; + Countries_MAL_provinces_Perlis = UsePN (mkPN "Perlis") ; + Countries_CO_provinces_Magdalena_cities_SantaMarta = UsePN (mkPN "Santa Marta") ; + Countries_ROK_cities_Kwangju = UsePN (mkPN "Kwangju") ; + Countries_TJ_provinces_Zhejiang_cities_Huzhou = UsePN (mkPN "Huzhou") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Guilin = UsePN (mkPN "Guilin") ; + Countries_R_provinces_Rep_ofKomi_cities_Ukhta = UsePN (mkPN "Ukhta") ; + Countries_BR_provinces_SaoPaulo_cities_Cotia = UsePN (mkPN "Cotia") ; + Countries_UZB_provinces_Farghona_cities_Marghilon = UsePN (mkPN "Marghilon") ; + Countries_IR_provinces_Mazandaran_cities_Qaemshahr = UsePN (mkPN "Qaemshahr") ; + Countries_IR_provinces_Bushehr_cities_Bushehr = UsePN (mkPN "Bushehr") ; + Countries_UA_provinces_Chernivetska = UsePN (mkPN "Chernivetska") ; + Countries_A_provinces_Salzburg = UsePN (mkPN "Salzburg") ; + NewZealand = UsePN (mkPN "New Zealand") ; + Countries_R_provinces_Rostovskayaoblast_cities_Novoshakhtinsk = UsePN (mkPN "Novoshakhtinsk") ; + Countries_C_provinces_VillaClara_cities_SantaClara = UsePN (mkPN "Santa Clara") ; + Countries_EAT_provinces_Lindi_cities_Lindi = UsePN (mkPN "Lindi") ; + Russia = UsePN (mkPN "Russia") ; + Countries_S_provinces_Gavleborg_cities_Gavle = UsePN (mkPN "Gavle") ; + Countries_E_provinces_CanaryIslands_cities_LaLaguna = UsePN (mkPN "La Laguna") ; + Countries_D_provinces_BadenWurttemberg_cities_FreiburgimBreisgau = UsePN (mkPN "Freiburg im Breisgau") ; + Countries_MEX_provinces_Guanajuato_cities_Guanajuato = UsePN (mkPN "Guanajuato") ; + Countries_IND_provinces_Gujarat_cities_Jamnagar = UsePN (mkPN "Jamnagar") ; + Countries_CDN_provinces_PrinceEdwardIsland_cities_Charlottetown = UsePN (mkPN "Charlottetown") ; + Countries_ET_provinces_ElQalubiya_cities_Benha = UsePN (mkPN "Benha") ; + Countries_IR_provinces_Kerman = UsePN (mkPN "Kerman") ; + Countries_R_provinces_Rep_ofSakha_cities_Yakutsk = UsePN (mkPN "Yakutsk") ; + Countries_RC_cities_Sanchuung = UsePN (mkPN "Sanchuung") ; + Countries_CO_provinces_Casanare_cities_Yopal = UsePN (mkPN "Yopal") ; + Countries_GB_provinces_TyneandWear_cities_Gateshead = UsePN (mkPN "Gateshead") ; + Countries_SN_provinces_Diourbel = UsePN (mkPN "Diourbel") ; + Countries_IRQ_provinces_Ninawa = UsePN (mkPN "Ninawa") ; + Countries_USA_provinces_Texas_cities_Mesquite = UsePN (mkPN "Mesquite") ; + Countries_R_provinces_Amurskayaoblast = UsePN (mkPN "Amurskaya oblast") ; + Countries_GB_provinces_Berkshire_cities_Newbury = UsePN (mkPN "Newbury") ; + Organizations_WMO = UsePN (mkPN "World Meteorological Organization") ; + Countries_CO_provinces_SanAndresyProvidencia = UsePN (mkPN "San Andres y Providencia") ; + Seas_ArabianSea = UsePN (mkPN "Arabian Sea") ; + Countries_TUV_cities_Funafuti = UsePN (mkPN "Funafuti") ; + Countries_USA_provinces_California_cities_SimiValley = UsePN (mkPN "Simi Valley") ; + Countries_C_provinces_SanctiSpiritus_cities_SanctiSpiritus = UsePN (mkPN "Sancti Spiritus") ; + Countries_CDN_provinces_BritishColumbia_cities_Victoria = UsePN (mkPN "Victoria") ; + Countries_BR_provinces_SaoPaulo = UsePN (mkPN "Sao Paulo") ; + Countries_R_provinces_Orlovskayaoblast_cities_Orel = UsePN (mkPN "Orel") ; + Countries_DK_cities_Odense = UsePN (mkPN "Odense") ; + Countries_BD_cities_Comilla = UsePN (mkPN "Comilla") ; + Countries_R_provinces_Krasnoyarskiykray_cities_Kansk = UsePN (mkPN "Kansk") ; + Countries_PL_provinces_Gdanskie_cities_Gdansk = UsePN (mkPN "Gdansk") ; + Countries_BR_cities_SantaBarbaradOeste = UsePN (mkPN "Santa Barbara dOeste") ; + Countries_RC_provinces_Changhua_cities_Changhua = UsePN (mkPN "Changhua") ; + Countries_R_provinces_UdmurtRepublic_cities_Sarapul = UsePN (mkPN "Sarapul") ; + Countries_UAE_cities_Dubai = UsePN (mkPN "Dubai") ; + Countries_P_provinces_Lisbon = UsePN (mkPN "Lisbon") ; + Countries_USA_provinces_Virginia_cities_VirginiaBeach = UsePN (mkPN "Virginia Beach") ; + Countries_cid_cia_Cayman_Islands_cities_GeorgeTown = UsePN (mkPN "George Town") ; + Countries_USA_provinces_California_cities_Stockton = UsePN (mkPN "Stockton") ; + Iran = UsePN (mkPN "Iran") ; + Countries_SF_provinces_Oulu = UsePN (mkPN "Oulu") ; + Countries_RO_provinces_Olt = UsePN (mkPN "Olt") ; + Countries_CDN_provinces_Ontario_cities_Brampton = UsePN (mkPN "Brampton") ; + Countries_TJ_provinces_Jilin_cities_Gongzhuling = UsePN (mkPN "Gongzhuling") ; + Countries_CO_provinces_Meta_cities_Villavicencio = UsePN (mkPN "Villavicencio") ; + Countries_EAT_provinces_Mbeya = UsePN (mkPN "Mbeya") ; + Countries_D_provinces_Thuringen = UsePN (mkPN "Thuringen") ; + Countries_BR_provinces_Bahia_cities_Juazeiro = UsePN (mkPN "Juazeiro") ; + Countries_CH_provinces_TI = UsePN (mkPN "TI") ; + Countries_PL_provinces_Katowickie_cities_Katowice = UsePN (mkPN "Katowice") ; + Countries_BHT_cities_Thimphu = UsePN (mkPN "Thimphu") ; + Countries_MEX_provinces_Coahuila = UsePN (mkPN "Coahuila") ; + Rivers_Kwa = UsePN (mkPN "Kwa") ; + Countries_IR_provinces_Semnan_cities_Semnan = UsePN (mkPN "Semnan") ; + Countries_I_provinces_Veneto_cities_Venice = UsePN (mkPN "Venice") ; + CoteDIvoire = UsePN (mkPN "Cote dIvoire") ; + Lakes_LakeSuat = UsePN (mkPN "Lake Suat") ; + Countries_TJ_provinces_Anhui_cities_Anqing = UsePN (mkPN "Anqing") ; + Countries_J_provinces_Shizuoka = UsePN (mkPN "Shizuoka") ; + MarshallIslands = UsePN (mkPN "Marshall Islands") ; + Countries_S_provinces_Alvsborg_cities_Vanersborg = UsePN (mkPN "Vanersborg") ; + Countries_TJ_provinces_Shaanxi_cities_Weinan = UsePN (mkPN "Weinan") ; + Countries_HCA_provinces_Copan_cities_SantaRosadeCopan = UsePN (mkPN "Santa Rosa de Copan") ; + Countries_BR_provinces_Paraiba_cities_SantaLuzia = UsePN (mkPN "Santa Luzia") ; + Countries_RI_cities_Bengkulu = UsePN (mkPN "Bengkulu") ; + Countries_MEX_provinces_Tabasco = UsePN (mkPN "Tabasco") ; + Countries_SA_cities_Jeddah = UsePN (mkPN "Jeddah") ; + Countries_NL_provinces_NoordBrabant = UsePN (mkPN "Noord Brabant") ; + Countries_TJ_provinces_Tibet_cities_Lhasa = UsePN (mkPN "Lhasa") ; + Countries_TR_provinces_Afyon_cities_Afyon = UsePN (mkPN "Afyon") ; + Countries_IND_provinces_AndhraPradesh_cities_Warangal = UsePN (mkPN "Warangal") ; + Madagascar = UsePN (mkPN "Madagascar") ; + Countries_KAZ_provinces_Almaty = UsePN (mkPN "Almaty") ; + Countries_B_provinces_Antwerp = UsePN (mkPN "Antwerp") ; + Countries_ZRE_provinces_Kivu_cities_Goma = UsePN (mkPN "Goma") ; + Rivers_Ural = UsePN (mkPN "Ural") ; + Islands_Langeland = UsePN (mkPN "Langeland") ; + Countries_GR_provinces_StereaEllas = UsePN (mkPN "Sterea Ellas") ; + Countries_MA_cities_Tanger = UsePN (mkPN "Tanger") ; + Countries_R_provinces_Pskovskayaoblast_cities_Pskov = UsePN (mkPN "Pskov") ; + Venezuela = UsePN (mkPN "Venezuela") ; + Countries_TJ_provinces_Henan_cities_Sanmenxia = UsePN (mkPN "Sanmenxia") ; + Countries_ET_provinces_Asyut_cities_Asyut = UsePN (mkPN "Asyut") ; + Countries_GB_provinces_IslandAreas_munic = UsePN (mkPN "Island Areas (munic.)") ; + Countries_MEX_provinces_Michoacan = UsePN (mkPN "Michoacan") ; + Organizations_UNTSO = UsePN (mkPN "United Nations Truce Supervision Organization") ; + Countries_J_provinces_Gifu = UsePN (mkPN "Gifu") ; + Countries_TR_provinces_Kirikkale_cities_Kirikkale = UsePN (mkPN "Kirikkale") ; + Countries_CZ_provinces_Severomoravsky_cities_Ostrava = UsePN (mkPN "Ostrava") ; + Countries_BR_provinces_Bahia_cities_Ilheus = UsePN (mkPN "Ilheus") ; + Countries_RM_provinces_Antsiranana = UsePN (mkPN "Antsiranana") ; + Countries_NL_provinces_Groningen_cities_Groningen = UsePN (mkPN "Groningen") ; + Countries_BR_provinces_Para_cities_Itaituba = UsePN (mkPN "Itaituba") ; + Countries_UA_provinces_Poltavska_cities_Kremenchuk = UsePN (mkPN "Kremenchuk") ; + Countries_RA_provinces_Cordoba_cities_RioCuarto = UsePN (mkPN "Rio Cuarto") ; + Countries_RI_cities_Bandung = UsePN (mkPN "Bandung") ; + Countries_MEX_provinces_Chihuahua = UsePN (mkPN "Chihuahua") ; + Countries_GB_provinces_Cleveland_cities_StocktononTees = UsePN (mkPN "Stockton on Tees") ; + Countries_Z_provinces_Copperbelt_cities_Chingola = UsePN (mkPN "Chingola") ; + Countries_ES_cities_Delgado = UsePN (mkPN "Delgado") ; + Lakes_LakeSuperior = UsePN (mkPN "Lake Superior") ; + Countries_I_provinces_Toscana_cities_Pisa = UsePN (mkPN "Pisa") ; + Countries_NL_provinces_Zeeland_cities_Middelburg = UsePN (mkPN "Middelburg") ; + Countries_RSA_cities_Daveyton = UsePN (mkPN "Daveyton") ; + Countries_R_provinces_Tulskayaoblast_cities_Tula = UsePN (mkPN "Tula") ; + Countries_IND_provinces_UttarPradesh_cities_Allahabad = UsePN (mkPN "Allahabad") ; + Ukraine = UsePN (mkPN "Ukraine") ; + Countries_RA_provinces_LaPampa_cities_SantaRosa = UsePN (mkPN "Santa Rosa") ; + Countries_RI_cities_Palangkaraya = UsePN (mkPN "Palangkaraya") ; + Lakes_LakeNyasa = UsePN (mkPN "Lake Nyasa") ; + Countries_HCA_provinces_ElParaiso = UsePN (mkPN "El Paraiso") ; + Countries_cid_cia_Reunion_cities_Saint_Denis = UsePN (mkPN "Saint-Denis") ; + Countries_I_provinces_Lombardia_cities_Brescia = UsePN (mkPN "Brescia") ; + Countries_TR_provinces_Kirikkale = UsePN (mkPN "Kirikkale") ; + Countries_UZB_provinces_Toshkent_cities_Tashkent = UsePN (mkPN "Tashkent") ; + Countries_R_provinces_Krasnodarskykray_cities_Armavir = UsePN (mkPN "Armavir") ; + Countries_CO_provinces_Amazonas_cities_Leticia = UsePN (mkPN "Leticia") ; + Countries_TR_provinces_Isparta_cities_Isparta = UsePN (mkPN "Isparta") ; + Countries_GB_provinces_TyneandWear_cities_Newcastle = UsePN (mkPN "Newcastle") ; + Countries_E_provinces_Catalonia_cities_Lleida = UsePN (mkPN "Lleida") ; + Countries_SN_provinces_Kolda_cities_Kolda = UsePN (mkPN "Kolda") ; + Uzbekistan = UsePN (mkPN "Uzbekistan") ; + Countries_WAN_cities_Kano = UsePN (mkPN "Kano") ; + Countries_USA_provinces_Georgia_cities_Columbus = UsePN (mkPN "Columbus") ; + Countries_ET_provinces_BeniSuef_cities_BeniSuef = UsePN (mkPN "Beni Suef") ; + Countries_IS_cities_Akureyri = UsePN (mkPN "Akureyri") ; + Deserts_GrandErgEst = UsePN (mkPN "Grand Erg Est") ; + Countries_J_provinces_Kochi_cities_Kochi = UsePN (mkPN "Kochi") ; + Countries_IND_provinces_AndhraPradesh_cities_Vijayawada = UsePN (mkPN "Vijayawada") ; + Countries_WAN_cities_Inisa = UsePN (mkPN "Inisa") ; + Countries_N_provinces_Oppland_cities_Lillehammer = UsePN (mkPN "Lillehammer") ; + Islands_JanMayen = UsePN (mkPN "Jan Mayen") ; + Countries_SF_provinces_Haeme_cities_Tampere = UsePN (mkPN "Tampere") ; + Countries_GCA_cities_GuatemalaCity = UsePN (mkPN "Guatemala City") ; + Countries_TR_provinces_Tokat = UsePN (mkPN "Tokat") ; + Countries_R_provinces_Smolenskayaoblast_cities_Smolensk = UsePN (mkPN "Smolensk") ; + Mountains_Leuser = UsePN (mkPN "Leuser") ; + Countries_YV_provinces_Anzoategui_cities_PuertoLaCruz = UsePN (mkPN "Puerto La Cruz") ; + Countries_USA_provinces_California_cities_ChulaVista = UsePN (mkPN "Chula Vista") ; + Countries_BD_cities_Nawabganj = UsePN (mkPN "Nawabganj") ; + Countries_CZ_provinces_Zapadocesky_cities_Plzen = UsePN (mkPN "Plzen") ; + Islands_Seeland = UsePN (mkPN "Seeland") ; + Countries_S_provinces_Norrbotten_cities_Lulea = UsePN (mkPN "Lulea") ; + Countries_PL_provinces_Leszczynskie = UsePN (mkPN "Leszczynskie") ; + Countries_R_provinces_Novosibirskayaoblast_cities_Novosibirsk = UsePN (mkPN "Novosibirsk") ; + Countries_PL_provinces_Gorzowskie = UsePN (mkPN "Gorzowskie") ; + Countries_ZRE_provinces_Shaba_cities_Likasi = UsePN (mkPN "Likasi") ; + Rivers_JoekulsaaFjoellum = UsePN (mkPN "Joekulsa a Fjoellum") ; + Organizations_NSG = UsePN (mkPN "Nuclear Suppliers Group") ; + Countries_YV_provinces_Tachira = UsePN (mkPN "Tachira") ; + Countries_THA_provinces_SamutSongkhram = UsePN (mkPN "Samut Songkhram") ; + Countries_LAR_cities_Bengasi = UsePN (mkPN "Bengasi") ; + Countries_B_provinces_Liege_cities_Liege = UsePN (mkPN "Liege") ; + Countries_TJ_provinces_Shandong_cities_Dongying = UsePN (mkPN "Dongying") ; + Countries_TJ_provinces_Jiangxi_cities_Shangrao = UsePN (mkPN "Shangrao") ; + Countries_RI_cities_Batam = UsePN (mkPN "Batam") ; + Rivers_WhiteDrin = UsePN (mkPN "White Drin") ; + Rivers_Oulujoki = UsePN (mkPN "Oulujoki") ; + Countries_TJ_provinces_Hubei_cities_Xiaogan = UsePN (mkPN "Xiaogan") ; + Countries_R_provinces_Tambovskayaoblast_cities_Tambov = UsePN (mkPN "Tambov") ; + Countries_J_provinces_Mie_cities_Tsu = UsePN (mkPN "Tsu") ; + Countries_R_provinces_Belgorodskayaoblast_cities_Belgorod = UsePN (mkPN "Belgorod") ; + Countries_PE_provinces_Ancash = UsePN (mkPN "Ancash") ; + Countries_ROK_cities_Taegu = UsePN (mkPN "Taegu") ; + Countries_RO_provinces_Arges_cities_Pitesti = UsePN (mkPN "Pitesti") ; + Islands_PrinceofWalesIsland = UsePN (mkPN "Prince of Wales Island") ; + Countries_PE_provinces_Ica_cities_ChinchaAlta = UsePN (mkPN "Chincha Alta") ; + Countries_IRQ_provinces_AsSulaymaniyah = UsePN (mkPN "As Sulaymaniyah") ; + Countries_UA_provinces_Luhanska_cities_Luhansk = UsePN (mkPN "Luhansk") ; + Countries_TJ_provinces_Qinghai = UsePN (mkPN "Qinghai") ; + Countries_GB_provinces_Merseyside_cities_Sefton = UsePN (mkPN "Sefton") ; + Countries_cid_cia_Virgin_Islands_cities_CharlotteAmalie = UsePN (mkPN "Charlotte Amalie") ; + Countries_B_provinces_Limburg_cities_Hasselt = UsePN (mkPN "Hasselt") ; + Countries_BR_provinces_RioGrandedoSul_cities_NovoHamburgo = UsePN (mkPN "Novo Hamburgo") ; + Countries_IR_provinces_Tehran_cities_Qom = UsePN (mkPN "Qom") ; + Countries_KAZ_provinces_Zhambyl_cities_Dzhambul = UsePN (mkPN "Dzhambul") ; + Countries_S_provinces_Skaraborg_cities_Mariestad = UsePN (mkPN "Mariestad") ; + Organizations_UNFPA = UsePN (mkPN "United Nations Population Fund") ; + Lakes_LakeBangweulu = UsePN (mkPN "Lake Bangweulu") ; + Lakes_LakeNicaragua = UsePN (mkPN "Lake Nicaragua") ; + Countries_cid_cia_Northern_Mariana_Islands = UsePN (mkPN "Northern Mariana Islands") ; + Countries_R_cities_Seversk = UsePN (mkPN "Seversk") ; + Countries_TJ_provinces_Liaoning_cities_Fushun = UsePN (mkPN "Fushun") ; + Countries_R_provinces_Sakhalinskayaoblast_cities_YuzhnoSakhalinsk = UsePN (mkPN "Yuzhno Sakhalinsk") ; + Countries_MV_cities_Male = UsePN (mkPN "Male") ; + Countries_RP_cities_Davao = UsePN (mkPN "Davao") ; + Lakes_LakeRudolph = UsePN (mkPN "Lake Rudolph") ; + Organizations_G_19 = UsePN (mkPN "Group of 19") ; + Countries_BR_provinces_EspiritoSanto_cities_Colatina = UsePN (mkPN "Colatina") ; + Countries_TJ_provinces_Shandong_cities_Zaozhuang = UsePN (mkPN "Zaozhuang") ; + Countries_J_provinces_Oita_cities_Oita = UsePN (mkPN "Oita") ; + Countries_CR_provinces_Limon = UsePN (mkPN "Limon") ; + Countries_J_provinces_Nagasaki_cities_Nagasaki = UsePN (mkPN "Nagasaki") ; + Organizations_IEA = UsePN (mkPN "International Energy Agency") ; + Seas_CaribbeanSea = UsePN (mkPN "Caribbean Sea") ; + Countries_ANG_provinces_Malanje = UsePN (mkPN "Malanje") ; + Mountains_Glittertind = UsePN (mkPN "Glittertind") ; + Countries_THA_provinces_AmnatCharoen = UsePN (mkPN "Amnat Charoen") ; + Countries_TJ_provinces_Jilin_cities_Liaoyuan = UsePN (mkPN "Liaoyuan") ; + Countries_BR_provinces_Roraima_cities_BoaVista = UsePN (mkPN "Boa Vista") ; + Islands_EastCaicos = UsePN (mkPN "East Caicos") ; + Countries_HCA_provinces_Yoro_cities_Olanchito = UsePN (mkPN "Olanchito") ; + Countries_TR_provinces_Giresun = UsePN (mkPN "Giresun") ; + Countries_RO_provinces_Calarasi_cities_Calarasi = UsePN (mkPN "Calarasi") ; + Countries_RO_provinces_Galati_cities_Galati = UsePN (mkPN "Galati") ; + Countries_D_provinces_Niedersachsen_cities_Hannover = UsePN (mkPN "Hannover") ; + Countries_PL_provinces_Kaliskie_cities_Kalisz = UsePN (mkPN "Kalisz") ; + Countries_USA_provinces_NewHampshire = UsePN (mkPN "New Hampshire") ; + Countries_J_provinces_Okinawa_cities_Naha = UsePN (mkPN "Naha") ; + Countries_WAN_cities_Oyo = UsePN (mkPN "Oyo") ; + Countries_RI_cities_Kediri = UsePN (mkPN "Kediri") ; + Countries_RSA_cities_Tembisa = UsePN (mkPN "Tembisa") ; + Countries_USA_provinces_Utah_cities_SaltLakeCity = UsePN (mkPN "Salt Lake City") ; + Countries_USA_provinces_Texas_cities_Plano = UsePN (mkPN "Plano") ; + Countries_RM_provinces_Antsiranana_cities_Antsiranana = UsePN (mkPN "Antsiranana") ; + Organizations_CACM = UsePN (mkPN "Central American Common Market") ; + Countries_USA_provinces_Montana_cities_Helena = UsePN (mkPN "Helena") ; + Countries_IND_provinces_Gujarat_cities_Bhavnagar = UsePN (mkPN "Bhavnagar") ; + Countries_HCA_provinces_Lempira_cities_Gracias = UsePN (mkPN "Gracias") ; + Countries_P_provinces_Faro = UsePN (mkPN "Faro") ; + Countries_R_provinces_Kemerovskayaoblast = UsePN (mkPN "Kemerovskaya oblast") ; + Countries_CV_cities_Praia = UsePN (mkPN "Praia") ; + Countries_D_provinces_Sachsen_cities_Chemnitz = UsePN (mkPN "Chemnitz") ; + Countries_MAL_provinces_Kelantan_cities_KotaBaharu = UsePN (mkPN "Kota Baharu") ; + Countries_WAN_cities_Owo = UsePN (mkPN "Owo") ; + Countries_BD_cities_Brahmanbaria = UsePN (mkPN "Brahmanbaria") ; + Countries_CAM_provinces_Sudoueste_cities_Buea = UsePN (mkPN "Buea") ; + Countries_MYA_provinces_Ayeyarwady_cities_Pathein = UsePN (mkPN "Pathein") ; + Countries_IND_provinces_UttarPradesh_cities_Aligarh = UsePN (mkPN "Aligarh") ; + Mountains_RasDaschan = UsePN (mkPN "Ras Daschan") ; + Rivers_BlueNile = UsePN (mkPN "Blue Nile") ; + Countries_VN_provinces_QuangNgai = UsePN (mkPN "Quang Ngai") ; + Countries_ET_provinces_ElGharbiya_cities_ElMahallaelKubra = UsePN (mkPN "El Mahalla el Kubra") ; + Countries_USA_provinces_Connecticut_cities_Hartford = UsePN (mkPN "Hartford") ; + Countries_MYA_provinces_Kayin = UsePN (mkPN "Kayin") ; + Lakes_ChicamaugaLake = UsePN (mkPN "Chicamauga Lake") ; + Mountains_Meru = UsePN (mkPN "Meru") ; + Countries_IND_provinces_Nagaland_cities_Kohima = UsePN (mkPN "Kohima") ; + Countries_GB_provinces_Hampshire_cities_Havant = UsePN (mkPN "Havant") ; + Countries_ET_provinces_Qena_cities_ElUqsur = UsePN (mkPN "El Uqsur") ; + Countries_A_provinces_Vienna = UsePN (mkPN "Vienna") ; + Countries_H_provinces_Csongrad_cities_Hodmezovasarhely = UsePN (mkPN "Hodmezovasarhely") ; + Lebanon = UsePN (mkPN "Lebanon") ; + Countries_GB_provinces_Dorset = UsePN (mkPN "Dorset") ; + Countries_USA_provinces_NewJersey_cities_Trenton = UsePN (mkPN "Trenton") ; + Countries_TJ_provinces_Hunan_cities_Yuanjiang = UsePN (mkPN "Yuanjiang") ; + Countries_GB_provinces_Pembrokeshire = UsePN (mkPN "Pembrokeshire") ; + Countries_BR_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; + Countries_R_provinces_Rostovskayaoblast = UsePN (mkPN "Rostovskaya oblast") ; + Countries_GNB_cities_Bissau = UsePN (mkPN "Bissau") ; + Lakes_Vaenern = UsePN (mkPN "Vaenern") ; + Somalia = UsePN (mkPN "Somalia") ; + Countries_LB_cities_Monrovia = UsePN (mkPN "Monrovia") ; + Countries_IND_provinces_MadhyaPradesh_cities_Bhilai = UsePN (mkPN "Bhilai") ; + Countries_PL_provinces_Bydgoskie_cities_Bydgoszcz = UsePN (mkPN "Bydgoszcz") ; + Countries_RA_provinces_BuenosAires_cities_Quilmes = UsePN (mkPN "Quilmes") ; + Countries_GB_provinces_Caerphilly_cities_YstradFawr = UsePN (mkPN "Ystrad Fawr") ; + Countries_AUS_provinces_NorfolkIsland_cities_Kingston = UsePN (mkPN "Kingston") ; + Islands_Rhodos = UsePN (mkPN "Rhodos") ; + Islands_Lanai = UsePN (mkPN "Lanai") ; + Countries_ET_provinces_KafrelSheikh = UsePN (mkPN "Kafr el Sheikh") ; + Countries_IR_provinces_Tehran_cities_Kashan = UsePN (mkPN "Kashan") ; + Countries_GH_cities_Tema = UsePN (mkPN "Tema") ; + Countries_IS_cities_Keflavik = UsePN (mkPN "Keflavik") ; + Countries_PL_provinces_Opolskie = UsePN (mkPN "Opolskie") ; + Countries_GR_cities_Larisa = UsePN (mkPN "Larisa") ; + Mountains_Chimborazo = UsePN (mkPN "Chimborazo") ; + Countries_GCA_cities_Mixco = UsePN (mkPN "Mixco") ; + Niger = UsePN (mkPN "Niger") ; + Countries_Z_provinces_Copperbelt = UsePN (mkPN "Copperbelt") ; + Countries_CDN_provinces_BritishColumbia_cities_Vancouver = UsePN (mkPN "Vancouver") ; + Countries_F_provinces_IledeFrance_cities_Paris = UsePN (mkPN "Paris") ; + Countries_TJ_provinces_Beijing_munic = UsePN (mkPN "Beijing (munic.)") ; + Countries_WAN_cities_Iseyin = UsePN (mkPN "Iseyin") ; + Organizations_ANZUS = UsePN (mkPN "Australia-New Zealand-United States Security Treaty") ; + Countries_CAM_provinces_Cote_cities_Douala = UsePN (mkPN "Douala") ; + Countries_R_provinces_Krasnodarskykray = UsePN (mkPN "Krasnodarsky kray") ; + Countries_USA_provinces_California_cities_Salinas = UsePN (mkPN "Salinas") ; + Countries_A_provinces_Tyrol = UsePN (mkPN "Tyrol") ; + Countries_IR_provinces_Zanjan = UsePN (mkPN "Zanjan") ; + Countries_IL_provinces_TelAviv = UsePN (mkPN "Tel Aviv") ; + Countries_RSA_provinces_Gauteng_cities_Pretoria = UsePN (mkPN "Pretoria") ; + Countries_MOC_provinces_Maputo = UsePN (mkPN "Maputo") ; + Countries_RP_cities_CagayandeOro = UsePN (mkPN "Cagayan de Oro") ; + Deserts_LibyanDesert = UsePN (mkPN "Libyan Desert") ; + Countries_cid_cia_Cook_Islands_cities_Avarua = UsePN (mkPN "Avarua") ; + Countries_MA_provinces_CentreNord = UsePN (mkPN "Centre Nord") ; + Countries_IR_provinces_Lorestan_cities_Borujerd = UsePN (mkPN "Borujerd") ; + Countries_CH_provinces_JU_cities_Delemont = UsePN (mkPN "Delemont") ; + Countries_S_provinces_Vasterbotten = UsePN (mkPN "Vasterbotten") ; + Islands_Mull = UsePN (mkPN "Mull") ; + Countries_USA_provinces_SouthDakota_cities_Pierre = UsePN (mkPN "Pierre") ; + Countries_MEX_provinces_Mexico_Estadode = UsePN (mkPN "Mexico, Estado de") ; + Countries_GB_provinces_Essex = UsePN (mkPN "Essex") ; + Countries_RI_cities_Balikpapan = UsePN (mkPN "Balikpapan") ; + Countries_cid_cia_Man = UsePN (mkPN "Man") ; + Countries_CH_provinces_AR_cities_Herisau = UsePN (mkPN "Herisau") ; + Countries_MAL_provinces_Sabah_cities_KotaKinabalu = UsePN (mkPN "Kota Kinabalu") ; + Countries_HCA_provinces_Ocotepeque = UsePN (mkPN "Ocotepeque") ; + Palau = UsePN (mkPN "Palau") ; + Countries_KAZ_provinces_Qaraghandy_cities_Temirtau = UsePN (mkPN "Temirtau") ; + Seas_RedSea = UsePN (mkPN "Red Sea") ; + Countries_VN_provinces_CentralHighlands = UsePN (mkPN "Central Highlands") ; + Sweden = UsePN (mkPN "Sweden") ; + Countries_TJ_provinces_Jilin_cities_Daan = UsePN (mkPN "Daan") ; + Islands_Kefallinia = UsePN (mkPN "Kefallinia") ; + Countries_ZRE_provinces_BasZaire_cities_Boma = UsePN (mkPN "Boma") ; + Countries_WAN_cities_Makurdi = UsePN (mkPN "Makurdi") ; + Countries_KAZ_provinces_Semey_cities_Semey = UsePN (mkPN "Semey") ; + Lakes_LacLeman = UsePN (mkPN "Lac Leman") ; + Countries_TJ_provinces_Hebei = UsePN (mkPN "Hebei") ; + Countries_R_provinces_Rostovskayaoblast_cities_Taganrog = UsePN (mkPN "Taganrog") ; + Countries_BR_provinces_RiodeJaneiro_cities_DuquedeCaxias = UsePN (mkPN "Duque de Caxias") ; + Countries_D_provinces_NordrheinWestfalen_cities_Neuss = UsePN (mkPN "Neuss") ; + Countries_ANG_provinces_Zaire = UsePN (mkPN "Zaire") ; + Islands_Sumatra = UsePN (mkPN "Sumatra") ; + Lakes_LakeMakarikari = UsePN (mkPN "Lake Makarikari") ; + Countries_P_provinces_Porto = UsePN (mkPN "Porto") ; + Countries_TJ_provinces_Liaoning_cities_Yingkou = UsePN (mkPN "Yingkou") ; + Countries_VN_provinces_SonLa = UsePN (mkPN "Son La") ; + Countries_GB_provinces_Cheshire_cities_Chester = UsePN (mkPN "Chester") ; + Countries_GB_provinces_Denbighshire_cities_Ruthin = UsePN (mkPN "Ruthin") ; + Countries_TJ_provinces_Guangdong = UsePN (mkPN "Guangdong") ; + Countries_Q_cities_Doha = UsePN (mkPN "Doha") ; + Countries_TM_provinces_Leban_cities_Charjew = UsePN (mkPN "Charjew") ; + Countries_BD_cities_Naogaon = UsePN (mkPN "Naogaon") ; + Lakes_OzeroBalchash = UsePN (mkPN "Ozero Balchash") ; + Countries_N_provinces_Buskerud = UsePN (mkPN "Buskerud") ; + Countries_TJ_provinces_Hebei_cities_Baoding = UsePN (mkPN "Baoding") ; + Countries_TJ_provinces_Jiangsu_cities_Nantong = UsePN (mkPN "Nantong") ; + Countries_PL_provinces_Tarnobrzeskie_cities_Tarnobrzeg = UsePN (mkPN "Tarnobrzeg") ; + Countries_USA_provinces_Missouri = UsePN (mkPN "Missouri") ; + Countries_J_provinces_Hyogo_cities_Kobe = UsePN (mkPN "Kobe") ; + Countries_ET_provinces_Qena_cities_Qena = UsePN (mkPN "Qena") ; + Countries_BR_cities_RibeiraodasNeves = UsePN (mkPN "Ribeirao das Neves") ; + Countries_cid_cia_Cayman_Islands = UsePN (mkPN "Cayman Islands") ; + Islands_Teneriffa = UsePN (mkPN "Teneriffa") ; + Belize = UsePN (mkPN "Belize") ; + Countries_PE_provinces_Amazonas = UsePN (mkPN "Amazonas") ; + Countries_AUS_provinces_Tasmania = UsePN (mkPN "Tasmania") ; + Countries_RA_provinces_BuenosAires_cities_Moron = UsePN (mkPN "Moron") ; + Countries_GB_provinces_WestMidlands_cities_Dudley = UsePN (mkPN "Dudley") ; + Countries_H_provinces_Vas_cities_Szombathely = UsePN (mkPN "Szombathely") ; + Countries_IND_provinces_Orissa = UsePN (mkPN "Orissa") ; + Countries_WAN_cities_Lagos = UsePN (mkPN "Lagos") ; + Countries_CZ_provinces_Jihocesky = UsePN (mkPN "Jihocesky") ; + Countries_I_provinces_Basilicata = UsePN (mkPN "Basilicata") ; + Islands_VictoriaIsland = UsePN (mkPN "Victoria Island") ; + Countries_TR_provinces_Eskisehir_cities_Eskisehir = UsePN (mkPN "Eskisehir") ; + Countries_SUD_provinces_Darfur_cities_Nyala = UsePN (mkPN "Nyala") ; + Islands_Leyte = UsePN (mkPN "Leyte") ; + Fiji = UsePN (mkPN "Fiji") ; + Countries_I_provinces_EmiliaRomagna_cities_Modena = UsePN (mkPN "Modena") ; + Countries_USA_provinces_California_cities_SantaAna = UsePN (mkPN "Santa Ana") ; + Countries_NOK_cities_Songjin = UsePN (mkPN "Songjin") ; + Countries_R_provinces_Krasnoyarskiykray_cities_Norilsk = UsePN (mkPN "Norilsk") ; + Islands_GranCanaria = UsePN (mkPN "Gran Canaria") ; + Countries_IR_provinces_Lorestan = UsePN (mkPN "Lorestan") ; + Lakes_LakeStephanie = UsePN (mkPN "Lake Stephanie") ; + Countries_D_provinces_NordrheinWestfalen = UsePN (mkPN "Nordrhein Westfalen") ; + Oman = UsePN (mkPN "Oman") ; + Countries_TJ_provinces_Anhui_cities_Hefei = UsePN (mkPN "Hefei") ; + Countries_SF_provinces_Haeme = UsePN (mkPN "Haeme") ; + Countries_F_provinces_Auvergne = UsePN (mkPN "Auvergne") ; + Countries_cid_cia_Aruba_cities_Oranjestad = UsePN (mkPN "Oranjestad") ; + Islands_Cayman = UsePN (mkPN "Cayman") ; + Countries_CH_provinces_SO_cities_Solothurn = UsePN (mkPN "Solothurn") ; + Countries_R_provinces_Irkutskayaoblast_cities_UstIlimsk = UsePN (mkPN "Ust Ilimsk") ; + Countries_USA_provinces_NewJersey_cities_Elizabeth = UsePN (mkPN "Elizabeth") ; + Singapore = UsePN (mkPN "Singapore") ; + Rivers_Weser = UsePN (mkPN "Weser") ; + Islands_Rhum = UsePN (mkPN "Rhum") ; + Countries_CO_provinces_Guainia_cities_PuertoInirida = UsePN (mkPN "Puerto Inirida") ; + Countries_GB_provinces_IslandAreas_munic_cities_IslandAreas = UsePN (mkPN "Island Areas") ; + Countries_NOK_cities_Kanggye = UsePN (mkPN "Kanggye") ; + Countries_RSA_provinces_Mpumalanga = UsePN (mkPN "Mpumalanga") ; + Countries_D_provinces_SchleswigHolstein = UsePN (mkPN "Schleswig Holstein") ; + Islands_Tobago = UsePN (mkPN "Tobago") ; + Countries_TJ_provinces_Zhejiang_cities_Yuyao = UsePN (mkPN "Yuyao") ; + Countries_TAD_provinces_Leninobod = UsePN (mkPN "Leninobod") ; + Countries_RC_provinces_Taipei_munic_cities_Taipei = UsePN (mkPN "Taipei") ; + Countries_ROK_cities_Chonju = UsePN (mkPN "Chonju") ; + Countries_PL_provinces_Krakowskie = UsePN (mkPN "Krakowskie") ; + Countries_H_provinces_SzabolcsSzatmar = UsePN (mkPN "Szabolcs Szatmar") ; + Countries_YV_provinces_Aragua = UsePN (mkPN "Aragua") ; + Countries_TJ_provinces_Guangdong_cities_Maoming = UsePN (mkPN "Maoming") ; + Countries_BR_provinces_Bahia_cities_Barreiras = UsePN (mkPN "Barreiras") ; + Countries_USA_provinces_Utah = UsePN (mkPN "Utah") ; + Countries_TJ_provinces_Hubei_cities_Shishou = UsePN (mkPN "Shishou") ; + Countries_RSA_cities_Mamelodi = UsePN (mkPN "Mamelodi") ; + Countries_GB_provinces_Devon = UsePN (mkPN "Devon") ; + Countries_VN_provinces_BinhThuan = UsePN (mkPN "Binh Thuan") ; + Organizations_ACC = UsePN (mkPN "Arab Cooperation Council") ; + Rivers_Parana = UsePN (mkPN "Parana") ; + Countries_GB_provinces_Surrey_cities_Elmbridge = UsePN (mkPN "Elmbridge") ; + Countries_BD_cities_Sirajganj = UsePN (mkPN "Sirajganj") ; + Countries_PL_provinces_Przemyskie_cities_Przemysl = UsePN (mkPN "Przemysl") ; + Countries_TJ_provinces_Guangdong_cities_Shaoguan = UsePN (mkPN "Shaoguan") ; + Countries_J_provinces_Saga_cities_Saga = UsePN (mkPN "Saga") ; + Countries_R_provinces_Primorskykray_cities_Ussuriysk = UsePN (mkPN "Ussuriysk") ; + Countries_ET_provinces_Dumyat = UsePN (mkPN "Dumyat") ; + Countries_EAK_provinces_Western = UsePN (mkPN "Western") ; + Countries_BR_provinces_Alagoas = UsePN (mkPN "Alagoas") ; + Countries_TJ_provinces_Shandong_cities_Xintai = UsePN (mkPN "Xintai") ; + Countries_DK_cities_Randers = UsePN (mkPN "Randers") ; + Countries_TR_provinces_Erzincan_cities_Erzincan = UsePN (mkPN "Erzincan") ; + Countries_E_provinces_Murcia = UsePN (mkPN "Murcia") ; + Countries_THA_provinces_BuriRam = UsePN (mkPN "Buri Ram") ; + Countries_USA_provinces_California_cities_SantaClarita = UsePN (mkPN "Santa Clarita") ; + Countries_BR_provinces_Acre = UsePN (mkPN "Acre") ; + Countries_RSA_provinces_EasternCape_cities_KingWilliamsTown = UsePN (mkPN "King Williams Town") ; + Rivers_St_Lorenzstrom = UsePN (mkPN "St. Lorenzstrom") ; + Countries_N_provinces_MoereogRomsdal_cities_Molde = UsePN (mkPN "Molde") ; + Countries_N_provinces_Telemark_cities_Skien = UsePN (mkPN "Skien") ; + Bhutan = UsePN (mkPN "Bhutan") ; + Countries_UZB_provinces_Bukhoro = UsePN (mkPN "Bukhoro") ; + Countries_PA_provinces_Cocle = UsePN (mkPN "Cocle") ; + Countries_cid_cia_Svalbard = UsePN (mkPN "Svalbard") ; + Countries_AUS_provinces_Kirimati = UsePN (mkPN "Kirimati") ; + Countries_cid_cia_Montserrat_cities_Plymouth = UsePN (mkPN "Plymouth") ; + Countries_R_provinces_Altayskiykray_cities_Biysk = UsePN (mkPN "Biysk") ; + Countries_TR_provinces_Ankara = UsePN (mkPN "Ankara") ; + Countries_THA_provinces_NakhonSawan_cities_NakhonSawan = UsePN (mkPN "Nakhon Sawan") ; + Countries_E_provinces_Catalonia_cities_SantaColomadeGramanet = UsePN (mkPN "Santa Coloma de Gramanet") ; + Turkmenistan = UsePN (mkPN "Turkmenistan") ; + Countries_R_provinces_Moskovskayaoblast_cities_Podolsk = UsePN (mkPN "Podolsk") ; + Countries_BR_provinces_SaoPaulo_cities_SaoVicente = UsePN (mkPN "Sao Vicente") ; + Countries_E_provinces_Galicia_cities_Orense = UsePN (mkPN "Orense") ; + Brazil = UsePN (mkPN "Brazil") ; + Countries_PE_provinces_Ayacucho_cities_Ayacucho = UsePN (mkPN "Ayacucho") ; + Islands_Iona = UsePN (mkPN "Iona") ; + Countries_MAL_provinces_Pahang = UsePN (mkPN "Pahang") ; + Countries_TJ_provinces_Liaoning_cities_Wafangdian = UsePN (mkPN "Wafangdian") ; + Rivers_Schari = UsePN (mkPN "Schari") ; + Organizations_CP = UsePN (mkPN "Colombo Plan") ; + Lakes_LakeNaesi = UsePN (mkPN "Lake Naesi") ; + Countries_cid_cia_Macau_cities_Macau = UsePN (mkPN "Macau") ; + Countries_CDN_provinces_Quebec_cities_Montreal = UsePN (mkPN "Montreal") ; + Countries_GH_cities_Kumasi = UsePN (mkPN "Kumasi") ; + Countries_ES_provinces_SanVicente = UsePN (mkPN "San Vicente") ; + Organizations_BCIE = UsePN (mkPN "Central American Bank for Economic Integration") ; + Countries_R_provinces_Rep_ofBashkortostan = UsePN (mkPN "Rep. of Bashkortostan") ; + Organizations_G_11 = UsePN (mkPN "Group of 11") ; + Countries_PL_provinces_Warszwaskie = UsePN (mkPN "Warszwaskie") ; + Countries_cid_cia_Guam_cities_Agana = UsePN (mkPN "Agana") ; + Countries_H_provinces_Debrecen_munic = UsePN (mkPN "Debrecen (munic.)") ; + Countries_EAK_provinces_Nyanza_cities_Kisii = UsePN (mkPN "Kisii") ; + Countries_ANG_provinces_Moxico = UsePN (mkPN "Moxico") ; + Countries_RM_provinces_Mahajanga = UsePN (mkPN "Mahajanga") ; + Countries_PL_provinces_Leszczynskie_cities_Leszno = UsePN (mkPN "Leszno") ; + Countries_VN_provinces_TuyenQuang = UsePN (mkPN "Tuyen Quang") ; + UnitedArabEmirates = UsePN (mkPN "United Arab Emirates") ; + Organizations_OPEC = UsePN (mkPN "Organization of Petroleum Exporting Countries") ; + Lakes_GreatBearLake = UsePN (mkPN "Great Bear Lake") ; + Countries_TJ_provinces_Hunan_cities_Liling = UsePN (mkPN "Liling") ; + Countries_TJ_provinces_Yunnan_cities_Kunming = UsePN (mkPN "Kunming") ; + Countries_MOC_cities_Matala = UsePN (mkPN "Matala") ; + Countries_PE_provinces_SanMartin_cities_Moyobamba = UsePN (mkPN "Moyobamba") ; + Countries_N_provinces_Oestfold = UsePN (mkPN "Oestfold") ; + Countries_GB_provinces_Gloucestershire_cities_Stroud = UsePN (mkPN "Stroud") ; + Countries_A_provinces_Vorarlberg_cities_Bregenz = UsePN (mkPN "Bregenz") ; + Countries_KAZ_provinces_Kokchetau_cities_Kokchetau = UsePN (mkPN "Kokchetau") ; + Countries_THA_provinces_BangkokMetropolis_cities_Bangkok = UsePN (mkPN "Bangkok") ; + Countries_R_provinces_Tambovskayaoblast_cities_Michurinsk = UsePN (mkPN "Michurinsk") ; + Countries_GB_provinces_Cheshire_cities_Crewe = UsePN (mkPN "Crewe") ; + Countries_I_provinces_Molise_cities_Campobasso = UsePN (mkPN "Campobasso") ; + Countries_D_provinces_RheinlandPfalz_cities_Koblenz = UsePN (mkPN "Koblenz") ; + Countries_CO_provinces_Cordoba = UsePN (mkPN "Cordoba") ; + Organizations_OIC = UsePN (mkPN "Organization of the Islamic Conference") ; + Countries_PE_provinces_Tumbes = UsePN (mkPN "Tumbes") ; + Countries_J_provinces_Nara = UsePN (mkPN "Nara") ; + Countries_R_provinces_Yevreyskayaavt_oblast_cities_Birobidzhan = UsePN (mkPN "Birobidzhan") ; + Countries_YV_provinces_Merida_cities_Merida = UsePN (mkPN "Merida") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Guixian = UsePN (mkPN "Guixian") ; + Countries_IRQ_provinces_Irbil_cities_Irbil = UsePN (mkPN "Irbil") ; + Countries_USA_provinces_Massachusetts_cities_Lowell = UsePN (mkPN "Lowell") ; + Countries_C_provinces_Matanzas = UsePN (mkPN "Matanzas") ; + Countries_ET_provinces_ElQahira_munic_cities_Cairo = UsePN (mkPN "Cairo") ; + Countries_E_provinces_Rioja_cities_Logrono = UsePN (mkPN "Logrono") ; + Countries_R_provinces_Stavropolskykray_cities_Nevinnomyssk = UsePN (mkPN "Nevinnomyssk") ; + Countries_KAZ_provinces_ShyghysQazaqstan = UsePN (mkPN "Shyghys Qazaqstan") ; + Countries_IND_provinces_Sikkim_cities_Gangtok = UsePN (mkPN "Gangtok") ; + Countries_WAN_cities_Ilobu = UsePN (mkPN "Ilobu") ; + Rivers_Baro = UsePN (mkPN "Baro") ; + Rivers_WhiteNile = UsePN (mkPN "White Nile") ; + Countries_C_provinces_CiegodeAvila_cities_CiegodeAvila = UsePN (mkPN "Ciego de Avila") ; + Countries_IR_provinces_Esfahan_cities_Esfahan = UsePN (mkPN "Esfahan") ; + Countries_IR_cities_Islamshahr = UsePN (mkPN "Islamshahr") ; + Countries_AL_cities_Elbasan = UsePN (mkPN "Elbasan") ; + UnitedKingdom = UsePN (mkPN "United Kingdom") ; + Countries_GB_provinces_Merseyside_cities_Wiral = UsePN (mkPN "Wiral") ; + Countries_cid_cia_Niue = UsePN (mkPN "Niue") ; + Countries_GH_cities_Sekondi = UsePN (mkPN "Sekondi") ; + Countries_MEX_provinces_Chiapas_cities_Nezahualcoyotl = UsePN (mkPN "Nezahualcoyotl") ; + Countries_PL_provinces_Katowickie_cities_RudaSlaska = UsePN (mkPN "Ruda Slaska") ; + Countries_BR_provinces_MinasGerais_cities_JuizdeFora = UsePN (mkPN "Juiz de Fora") ; + Mountains_EmiKussi = UsePN (mkPN "Emi Kussi") ; + Countries_F_provinces_NordPasdeCalais = UsePN (mkPN "Nord Pas de Calais") ; + Countries_BD_cities_Tangail = UsePN (mkPN "Tangail") ; + Countries_R_provinces_Kaluzhskayaoblast = UsePN (mkPN "Kaluzhskaya oblast") ; + Liechtenstein = UsePN (mkPN "Liechtenstein") ; + Guinea = UsePN (mkPN "Guinea") ; + Countries_TJ_provinces_Henan_cities_Nanyang = UsePN (mkPN "Nanyang") ; + SouthKorea = UsePN (mkPN "South Korea") ; + Countries_J_provinces_Yamanashi_cities_Kofu = UsePN (mkPN "Kofu") ; + Countries_USA_provinces_Ohio_cities_Cleveland = UsePN (mkPN "Cleveland") ; + Countries_BR_provinces_RioGrandedoSul_cities_SantaCruzdoSul = UsePN (mkPN "Santa Cruz do Sul") ; + Rivers_Rhone = UsePN (mkPN "Rhone") ; + Countries_USA_provinces_Alabama_cities_Huntsville = UsePN (mkPN "Huntsville") ; + Countries_GB_provinces_Northamptonshire = UsePN (mkPN "Northamptonshire") ; + Countries_SUD_provinces_BahralGhazal_cities_Waw = UsePN (mkPN "Waw") ; + Countries_WAN_cities_Aba = UsePN (mkPN "Aba") ; + Countries_PA_provinces_LosSantos = UsePN (mkPN "Los Santos") ; + Islands_Anjouan = UsePN (mkPN "Anjouan") ; + Countries_YV_provinces_Cojedes_cities_SanCarlos = UsePN (mkPN "San Carlos") ; + Countries_TJ_provinces_Jilin_cities_Huadian = UsePN (mkPN "Huadian") ; + Countries_USA_provinces_Arizona_cities_Tucson = UsePN (mkPN "Tucson") ; + Countries_USA_provinces_California_cities_Pasadena = UsePN (mkPN "Pasadena") ; + Countries_TJ_provinces_Liaoning_cities_Dandong = UsePN (mkPN "Dandong") ; + Countries_MEX_provinces_DistritoFederal_cities_MexicoCity = UsePN (mkPN "Mexico City") ; + Countries_PL_provinces_Koszalinskie_cities_Koszalin = UsePN (mkPN "Koszalin") ; + Countries_H_provinces_Nograd = UsePN (mkPN "Nograd") ; + Countries_KAZ_provinces_Zhezkazghan_cities_Zhezkazghan = UsePN (mkPN "Zhezkazghan") ; + Countries_PL_provinces_Torunskie_cities_Torun = UsePN (mkPN "Torun") ; + Countries_PE_provinces_Arequipa = UsePN (mkPN "Arequipa") ; + Countries_GB_provinces_Humberside_cities_Beverley = UsePN (mkPN "Beverley") ; + Countries_PK_cities_Peshawar = UsePN (mkPN "Peshawar") ; + Countries_R_provinces_Omskayaoblast = UsePN (mkPN "Omskaya oblast") ; + Countries_CH_provinces_GR_cities_Chur = UsePN (mkPN "Chur") ; + Countries_F_provinces_Corse = UsePN (mkPN "Corse") ; + Countries_TJ_provinces_Zhejiang_cities_Haining = UsePN (mkPN "Haining") ; + Mountains_Snoefell = UsePN (mkPN "Snoefell") ; + Countries_J_provinces_Saitama_cities_Urawa = UsePN (mkPN "Urawa") ; + Countries_D_provinces_Sachsen_cities_Zwickau = UsePN (mkPN "Zwickau") ; + Countries_I_provinces_Sardegna_cities_Cagliari = UsePN (mkPN "Cagliari") ; + Lakes_LakeCabora_Bassa = UsePN (mkPN "Lake Cabora-Bassa") ; + Countries_IND_cities_PimpriChinchwad = UsePN (mkPN "Pimpri Chinchwad") ; + Countries_Z_provinces_Southern = UsePN (mkPN "Southern") ; + Countries_cid_cia_Coral_Sea_Islands = UsePN (mkPN "Coral Sea Islands") ; + Countries_GH_cities_Takoradi = UsePN (mkPN "Takoradi") ; + Countries_CO_provinces_Arauca_cities_Arauca = UsePN (mkPN "Arauca") ; + Countries_CO_provinces_Choco_cities_Quibdo = UsePN (mkPN "Quibdo") ; + Countries_RO_provinces_Brasov_cities_Brasov = UsePN (mkPN "Brasov") ; + Countries_IR_provinces_Fars = UsePN (mkPN "Fars") ; + Lakes_LakeWinnipesaukee = UsePN (mkPN "Lake Winnipesaukee") ; + Countries_IND_provinces_Maharashtra_cities_Ulhasnagar = UsePN (mkPN "Ulhasnagar") ; + Countries_GB_provinces_Warwickshire = UsePN (mkPN "Warwickshire") ; + Countries_MEX_provinces_Chiapas_cities_Tapachula = UsePN (mkPN "Tapachula") ; + Organizations_OAPEC = UsePN (mkPN "Organization of Arab Petroleum Exporting Countries") ; + Countries_USA_provinces_Colorado_cities_Aurora = UsePN (mkPN "Aurora") ; + Countries_BR_provinces_EspiritoSanto_cities_Linhares = UsePN (mkPN "Linhares") ; + Rivers_Irtysch = UsePN (mkPN "Irtysch") ; + Countries_TR_provinces_Artvin_cities_Artvin = UsePN (mkPN "Artvin") ; + Countries_I_provinces_Puglia_cities_Lecce = UsePN (mkPN "Lecce") ; + Belgium = UsePN (mkPN "Belgium") ; + Countries_MYA_provinces_Shan = UsePN (mkPN "Shan") ; + Countries_TJ_provinces_Henan_cities_Pingdingshan = UsePN (mkPN "Pingdingshan") ; + Countries_THA_provinces_CentralRegion = UsePN (mkPN "Central Region") ; + Countries_TJ_provinces_Shanghai_munic_cities_Shanghai = UsePN (mkPN "Shanghai") ; + Countries_UA_provinces_Odeska_cities_Odesa = UsePN (mkPN "Odesa") ; + Countries_ANG_provinces_Zaire_cities_MbanzaCongo = UsePN (mkPN "Mbanza Congo") ; + Countries_RO_provinces_Dimbovita_cities_Tirgoviste = UsePN (mkPN "Tirgoviste") ; + Countries_MEX_provinces_BajaCalifornia = UsePN (mkPN "Baja California") ; + Countries_RI_cities_Malang = UsePN (mkPN "Malang") ; + Lakes_LakeEyasi = UsePN (mkPN "Lake Eyasi") ; + Countries_BR_provinces_SaoPaulo_cities_MojidasCruzes = UsePN (mkPN "Moji das Cruzes") ; + Countries_N_provinces_SognogFjordane = UsePN (mkPN "Sogn og Fjordane") ; + Countries_IND_provinces_AndhraPradesh_cities_Hyderabad = UsePN (mkPN "Hyderabad") ; + Countries_GB_provinces_Hampshire_cities_Fareham = UsePN (mkPN "Fareham") ; + Countries_R_provinces_Tyumenskayaoblast_cities_Nizhnevartovsk = UsePN (mkPN "Nizhnevartovsk") ; + Lakes_LakeMackay = UsePN (mkPN "Lake Mackay") ; + Countries_MEX_provinces_Queretaro = UsePN (mkPN "Queretaro") ; + Countries_E_provinces_Catalonia = UsePN (mkPN "Catalonia") ; + Countries_WV_cities_Kingstown = UsePN (mkPN "Kingstown") ; + Seas_BalticSea = UsePN (mkPN "Baltic Sea") ; + Countries_GB_provinces_Humberside = UsePN (mkPN "Humberside") ; + Countries_TJ_provinces_Qinghai_cities_Yushu = UsePN (mkPN "Yushu") ; + Countries_BR_provinces_RioGrandedoSul_cities_Viamao = UsePN (mkPN "Viamao") ; + Countries_MOC_provinces_Tete = UsePN (mkPN "Tete") ; + Organizations_AMF = UsePN (mkPN "Arab Monetary Fund") ; + Countries_CO_provinces_ValledeCauca_cities_Cartago = UsePN (mkPN "Cartago") ; + Countries_BD_cities_Narsinghdi = UsePN (mkPN "Narsinghdi") ; + Countries_EAT_provinces_KaskaziniPemba_cities_Wete = UsePN (mkPN "Wete") ; + Countries_TR_provinces_Kirklareli_cities_Kirklareli = UsePN (mkPN "Kirklareli") ; + Countries_IND_provinces_UttarPradesh_cities_Gorakhpur = UsePN (mkPN "Gorakhpur") ; + Poland = UsePN (mkPN "Poland") ; + Countries_RA_provinces_TierradelFuego = UsePN (mkPN "Tierra del Fuego") ; + Countries_I_provinces_TrentinoAltoAdige_cities_Trento = UsePN (mkPN "Trento") ; + Rivers_Donau = UsePN (mkPN "Donau") ; + Countries_THA_provinces_Lampang = UsePN (mkPN "Lampang") ; + Bulgaria = UsePN (mkPN "Bulgaria") ; + Countries_B_provinces_Luxembourg = UsePN (mkPN "Luxembourg") ; + Organizations_ECOWAS = UsePN (mkPN "Economic Community of West African States") ; + Countries_R_provinces_Moskva_cities_Moscow = UsePN (mkPN "Moscow") ; + Countries_S_provinces_Sodermanland = UsePN (mkPN "Sodermanland") ; + Countries_IND_provinces_UttarPradesh_cities_Faridabad = UsePN (mkPN "Faridabad") ; + Rivers_Sanaga = UsePN (mkPN "Sanaga") ; + Countries_RO_provinces_Prahova = UsePN (mkPN "Prahova") ; + Burundi = UsePN (mkPN "Burundi") ; + Countries_UZB_provinces_Sirdare = UsePN (mkPN "Sirdare") ; + Countries_TJ_provinces_Guizhou_cities_Zunyi = UsePN (mkPN "Zunyi") ; + Countries_PK_cities_WahCantonment = UsePN (mkPN "Wah Cantonment") ; + Countries_E_provinces_Estremadura_cities_Badajoz = UsePN (mkPN "Badajoz") ; + Countries_R_provinces_Altayskiykray_cities_Rubtsovsk = UsePN (mkPN "Rubtsovsk") ; + Rivers_Ajan_Jurjach = UsePN (mkPN "Ajan-Jurjach") ; + Countries_USA_provinces_Tennessee_cities_Chattanooga = UsePN (mkPN "Chattanooga") ; + Countries_USA_provinces_Kentucky = UsePN (mkPN "Kentucky") ; + Islands_Westsamoa = UsePN (mkPN "Westsamoa") ; + Countries_D_provinces_MecklenburgVorpommern = UsePN (mkPN "Mecklenburg Vorpommern") ; + Countries_THA_provinces_NakhonRatchasima_cities_NakhonRatchasima = UsePN (mkPN "Nakhon Ratchasima") ; + Countries_IS_cities_Hafnarfjoerdur = UsePN (mkPN "Hafnarfjoerdur") ; + Countries_TJ_provinces_Jiangsu_cities_Jiangyin = UsePN (mkPN "Jiangyin") ; + Countries_CR_provinces_Guanacaste_cities_Liberia = UsePN (mkPN "Liberia") ; + Countries_CH_provinces_VD_cities_Lausanne = UsePN (mkPN "Lausanne") ; + Countries_TR_provinces_Ordu_cities_Ordu = UsePN (mkPN "Ordu") ; + Islands_Barra = UsePN (mkPN "Barra") ; + Islands_Nantucket = UsePN (mkPN "Nantucket") ; + Lakes_HamuneJazMurian = UsePN (mkPN "Hamun e Jaz Murian") ; + Countries_CH_provinces_BL_cities_Liestal = UsePN (mkPN "Liestal") ; + Countries_D_provinces_Niedersachsen_cities_Osnabruck = UsePN (mkPN "Osnabruck") ; + Countries_USA_provinces_California_cities_Fontana = UsePN (mkPN "Fontana") ; + Countries_CO_provinces_Guajira_La = UsePN (mkPN "Guajira, La") ; + Islands_SouthUlist = UsePN (mkPN "South Ulist") ; + Islands_Oeland = UsePN (mkPN "Oeland") ; + Countries_TJ_provinces_Tianjin_munic_cities_Tianjin = UsePN (mkPN "Tianjin") ; + Countries_TM_provinces_Ahal = UsePN (mkPN "Ahal") ; + Countries_E_provinces_Navarre_cities_Pamplona = UsePN (mkPN "Pamplona") ; + Countries_cid_cia_Niue_cities_Alofi = UsePN (mkPN "Alofi") ; + Countries_P_provinces_Setubal_cities_Setubal = UsePN (mkPN "Setubal") ; + Organizations_AsDB = UsePN (mkPN "Asian Development Bank") ; + Countries_IND_provinces_Assam_cities_Gauhati = UsePN (mkPN "Gauhati") ; + Islands_Samos = UsePN (mkPN "Samos") ; + Countries_R_provinces_Novosibirskayaoblast = UsePN (mkPN "Novosibirskaya oblast") ; + Countries_VN_cities_QuiNhon = UsePN (mkPN "Qui Nhon") ; + Countries_UA_provinces_Khersonska_cities_Kherson = UsePN (mkPN "Kherson") ; + Countries_YV_provinces_DistritoFederal_cities_Caracas = UsePN (mkPN "Caracas") ; + Countries_IL_provinces_Haifa_cities_Haifa = UsePN (mkPN "Haifa") ; + Countries_F_provinces_Picardie = UsePN (mkPN "Picardie") ; + Countries_YV_provinces_Guarico = UsePN (mkPN "Guarico") ; + Countries_PL_provinces_Katowickie = UsePN (mkPN "Katowickie") ; + Countries_TJ_provinces_Shandong_cities_Dezhou = UsePN (mkPN "Dezhou") ; + Countries_BD_cities_Bogra = UsePN (mkPN "Bogra") ; + Countries_J_provinces_Yamagata_cities_Yamagata = UsePN (mkPN "Yamagata") ; + Countries_TJ_provinces_Liaoning_cities_Fengcheng = UsePN (mkPN "Fengcheng") ; + Countries_TR_provinces_Denizli_cities_Denizli = UsePN (mkPN "Denizli") ; + Mountains_GannettPeak = UsePN (mkPN "Gannett Peak") ; + Countries_S_provinces_Vasternorrland_cities_Harnosand = UsePN (mkPN "Harnosand") ; + Countries_R_provinces_Novgorodskayaoblast = UsePN (mkPN "Novgorodskaya oblast") ; + Countries_IND_provinces_Gujarat_cities_Surat = UsePN (mkPN "Surat") ; + Countries_F_provinces_BasseNormandie = UsePN (mkPN "Basse Normandie") ; + Countries_TJ_provinces_Jilin_cities_Hunjiang = UsePN (mkPN "Hunjiang") ; + Countries_D_provinces_NordrheinWestfalen_cities_Moers = UsePN (mkPN "Moers") ; + Countries_KAZ_provinces_Atyrau_cities_Atyrau = UsePN (mkPN "Atyrau") ; + Countries_TJ_provinces_Jiangsu_cities_Nanjing = UsePN (mkPN "Nanjing") ; + Rivers_Thjorsa = UsePN (mkPN "Thjorsa") ; + Organizations_IGADD = UsePN (mkPN "Inter-Governmental Authority on Drought and Development") ; + Countries_VN_cities_Haiphong = UsePN (mkPN "Haiphong") ; + Islands_Mindanao = UsePN (mkPN "Mindanao") ; + Countries_ZRE_provinces_HautZaire = UsePN (mkPN "Haut Zaire") ; + Countries_TR_provinces_Zonguldak_cities_Zonguldak = UsePN (mkPN "Zonguldak") ; + Countries_EAT_provinces_Mara_cities_Musoma = UsePN (mkPN "Musoma") ; + Islands_Guernsey = UsePN (mkPN "Guernsey") ; + Countries_MAL_provinces_Perlis_cities_Kangar = UsePN (mkPN "Kangar") ; + Countries_KAZ_provinces_Zhezkazghan_cities_Zhezqazghan = UsePN (mkPN "Zhezqazghan") ; + Countries_I_provinces_EmiliaRomagna_cities_Ravenna = UsePN (mkPN "Ravenna") ; + Countries_J_provinces_Niigata = UsePN (mkPN "Niigata") ; + Countries_PL_provinces_Koninskie_cities_Konin = UsePN (mkPN "Konin") ; + Countries_MAL_provinces_Fed_Terr_ofLabuan_cities_Labuan = UsePN (mkPN "Labuan") ; + Countries_H_provinces_Szeged_munic_cities_Szeged = UsePN (mkPN "Szeged") ; + Countries_E_provinces_Andalusia_cities_Granada = UsePN (mkPN "Granada") ; + Countries_SN_provinces_Dakar_cities_Dakar = UsePN (mkPN "Dakar") ; + Countries_TJ_provinces_Guangdong_cities_Yangjiang = UsePN (mkPN "Yangjiang") ; + Countries_H_provinces_Zala_cities_Zalaegerszeg = UsePN (mkPN "Zalaegerszeg") ; + Countries_D_provinces_Bayern_cities_Augsburg = UsePN (mkPN "Augsburg") ; + Countries_cid_cia_Montserrat = UsePN (mkPN "Montserrat") ; + Countries_BR_provinces_SaoPaulo_cities_Suzano = UsePN (mkPN "Suzano") ; + Countries_TJ_provinces_Shandong_cities_Zibo = UsePN (mkPN "Zibo") ; + Countries_BS_cities_Nassau = UsePN (mkPN "Nassau") ; + Countries_MEX_provinces_Veracruz_cities_Orizaba = UsePN (mkPN "Orizaba") ; + Mountains_Tubhal = UsePN (mkPN "Tubhal") ; + Algeria = UsePN (mkPN "Algeria") ; + Countries_ES_provinces_Sonsonate = UsePN (mkPN "Sonsonate") ; + Countries_H_provinces_KomaromEsztergom_cities_Tatabanya = UsePN (mkPN "Tatabanya") ; + Countries_GB_provinces_GreaterLondon_cities_London = UsePN (mkPN "London") ; + Countries_R_provinces_Rep_ofTyva_cities_Kyzyl = UsePN (mkPN "Kyzyl") ; + Countries_J_provinces_Kagoshima_cities_Kagoshima = UsePN (mkPN "Kagoshima") ; + Countries_GH_cities_Accra = UsePN (mkPN "Accra") ; + Countries_IND_provinces_MadhyaPradesh_cities_Ujjain = UsePN (mkPN "Ujjain") ; + Countries_R_provinces_Primorskykray = UsePN (mkPN "Primorsky kray") ; + Countries_HCA_provinces_IslasdelaBahia = UsePN (mkPN "Islas de la Bahia") ; + Lakes_Maelaren = UsePN (mkPN "Maelaren") ; + Countries_R_provinces_Rep_ofKomi_cities_Vorkuta = UsePN (mkPN "Vorkuta") ; + Countries_MEX_provinces_Sonora_cities_Hermosillo = UsePN (mkPN "Hermosillo") ; + Rivers_Cuanza = UsePN (mkPN "Cuanza") ; + Countries_TR_provinces_Manisa_cities_Manisa = UsePN (mkPN "Manisa") ; + Countries_R_provinces_Rep_ofTatarstan = UsePN (mkPN "Rep. of Tatarstan") ; + Countries_IR_provinces_Tehran_cities_Karaj = UsePN (mkPN "Karaj") ; + Countries_BR_provinces_EspiritoSanto_cities_CachoeirodeItapemirim = UsePN (mkPN "Cachoeiro de Itapemirim") ; + Lakes_Tschadsee = UsePN (mkPN "Tschadsee") ; + Countries_RC_provinces_Hsinchu = UsePN (mkPN "Hsinchu") ; + Countries_GB_provinces_ValeofGlamorgan_cities_RhymneyValley = UsePN (mkPN "Rhymney Valley") ; + Countries_I_provinces_FriuliVeneziaGiulia_cities_Trieste = UsePN (mkPN "Trieste") ; + Countries_RA_provinces_Jujuy = UsePN (mkPN "Jujuy") ; + Countries_DZ_cities_Blida = UsePN (mkPN "Blida") ; + Countries_TR_provinces_Gumushane = UsePN (mkPN "Gumushane") ; + SerbiaAndMontenegro = UsePN (mkPN "Serbia and Montenegro") ; + Countries_D_provinces_Sachsen_cities_Leipzig = UsePN (mkPN "Leipzig") ; + Countries_RN_cities_Niamey = UsePN (mkPN "Niamey") ; + Countries_UAE_provinces_RasalKhaymah = UsePN (mkPN "Ras al Khaymah") ; + Portugal = UsePN (mkPN "Portugal") ; + Continents_America = UsePN (mkPN "America") ; + Countries_SUD_provinces_AalianNil = UsePN (mkPN "Aali an Nil") ; + Countries_PA_provinces_Herrera = UsePN (mkPN "Herrera") ; + Countries_WAG_cities_Banjul = UsePN (mkPN "Banjul") ; + Countries_BR_provinces_SantaCatarina_cities_Lages = UsePN (mkPN "Lages") ; + Countries_P_provinces_Evora = UsePN (mkPN "Evora") ; + Countries_ANG_provinces_Luanda_cities_Luanda = UsePN (mkPN "Luanda") ; + Rivers_Luvua = UsePN (mkPN "Luvua") ; + Lesotho = UsePN (mkPN "Lesotho") ; + Countries_cid_cia_Falkland_Islands = UsePN (mkPN "Falkland Islands") ; + Countries_D_provinces_SchleswigHolstein_cities_Lubeck = UsePN (mkPN "Lubeck") ; + Islands_Samar = UsePN (mkPN "Samar") ; + Countries_D_provinces_NordrheinWestfalen_cities_Aachen = UsePN (mkPN "Aachen") ; + Countries_CH_provinces_ZH_cities_Zurich = UsePN (mkPN "Zurich") ; + Countries_THA_provinces_MaeHongSon = UsePN (mkPN "Mae Hong Son") ; + Countries_VN_cities_VungTau = UsePN (mkPN "Vung Tau") ; + Countries_I_provinces_Toscana_cities_Prato = UsePN (mkPN "Prato") ; + Countries_ETH_cities_DireDawa = UsePN (mkPN "Dire Dawa") ; + Lakes_LakeKainji = UsePN (mkPN "Lake Kainji") ; + Countries_YV_provinces_DeltaAmacuro = UsePN (mkPN "Delta Amacuro") ; + Countries_cid_cia_Clipperton_Island = UsePN (mkPN "Clipperton Island") ; + Countries_USA_provinces_NewYork_cities_Yonkers = UsePN (mkPN "Yonkers") ; + Countries_TR_provinces_Bolu_cities_Bolu = UsePN (mkPN "Bolu") ; + Countries_VN_provinces_AnGiang = UsePN (mkPN "An Giang") ; + Countries_IR_provinces_Kerman_cities_Kerman = UsePN (mkPN "Kerman") ; + Countries_CO_provinces_Caldas_cities_Manizales = UsePN (mkPN "Manizales") ; + Organizations_Inmarsat = UsePN (mkPN "International Mobile Satellite Organization") ; + Countries_MA_cities_Casablanca = UsePN (mkPN "Casablanca") ; + Countries_VN_provinces_QuangBinh = UsePN (mkPN "Quang Binh") ; + Countries_CO_provinces_ValledeCauca_cities_Cali = UsePN (mkPN "Cali") ; + Countries_VN_provinces_NinhThuan = UsePN (mkPN "Ninh Thuan") ; + Countries_I_provinces_Umbria = UsePN (mkPN "Umbria") ; + Countries_CO_provinces_Antioquia_cities_Envigado = UsePN (mkPN "Envigado") ; + Countries_J_provinces_Hiroshima_cities_Hiroshima = UsePN (mkPN "Hiroshima") ; + Countries_SUD_provinces_alIstiwaiyah_cities_Juba = UsePN (mkPN "Juba") ; + Countries_TJ_provinces_Jiangsu_cities_Kunshan = UsePN (mkPN "Kunshan") ; + Countries_D_provinces_SachsenAnhalt = UsePN (mkPN "Sachsen Anhalt") ; + Countries_TJ_provinces_XinjiangUygur_cities_Korla = UsePN (mkPN "Korla") ; + Countries_BR_provinces_SaoPaulo_cities_Aracatuba = UsePN (mkPN "Aracatuba") ; + Countries_TJ_provinces_Jilin_cities_Changchun = UsePN (mkPN "Changchun") ; + Countries_I_provinces_Veneto_cities_Verona = UsePN (mkPN "Verona") ; + Countries_USA_provinces_Ohio = UsePN (mkPN "Ohio") ; + Countries_HCA_provinces_Yoro_cities_ElProgreso = UsePN (mkPN "El Progreso") ; + Countries_USA_provinces_Colorado_cities_Lakewood = UsePN (mkPN "Lakewood") ; + Countries_TR_provinces_Karaman = UsePN (mkPN "Karaman") ; + Countries_TR_provinces_Malatya = UsePN (mkPN "Malatya") ; + Countries_R_provinces_UdmurtRepublic = UsePN (mkPN "Udmurt Republic") ; + Countries_MOC_provinces_Inhambane = UsePN (mkPN "Inhambane") ; + Countries_ET_provinces_ElGharbiya = UsePN (mkPN "El Gharbiya") ; + Countries_D_provinces_NordrheinWestfalen_cities_Essen = UsePN (mkPN "Essen") ; + Countries_D_provinces_NordrheinWestfalen_cities_Monchengladbach = UsePN (mkPN "Monchengladbach") ; + Countries_WAN_cities_Gusau = UsePN (mkPN "Gusau") ; + Seas_SeaofAzov = UsePN (mkPN "Sea of Azov") ; + Countries_VN_provinces_HaiHung = UsePN (mkPN "Hai Hung") ; + Countries_NL_provinces_Limburg_cities_Maastricht = UsePN (mkPN "Maastricht") ; + Countries_H_provinces_Somogy = UsePN (mkPN "Somogy") ; + Countries_UA_provinces_Vinnytska = UsePN (mkPN "Vinnytska") ; + Countries_TJ_provinces_Hunan = UsePN (mkPN "Hunan") ; + Countries_TJ_provinces_Hubei_cities_Zaoyang = UsePN (mkPN "Zaoyang") ; + Countries_IL_provinces_South_cities_BeerSheva = UsePN (mkPN "Beer Sheva") ; + Countries_IND_provinces_Karnataka_cities_Mysore = UsePN (mkPN "Mysore") ; + Bahrain = UsePN (mkPN "Bahrain") ; + Countries_I_provinces_Campania_cities_TorredelGreco = UsePN (mkPN "Torre del Greco") ; + Countries_RI_cities_Palembang = UsePN (mkPN "Palembang") ; + Countries_TAD_provinces_Kulob_cities_Kulob = UsePN (mkPN "Kulob") ; + Countries_USA_provinces_Indiana_cities_SouthBend = UsePN (mkPN "South Bend") ; + Countries_ROU_cities_Montevideo = UsePN (mkPN "Montevideo") ; + Countries_RM_provinces_Mahajanga_cities_Majunga = UsePN (mkPN "Majunga") ; + Countries_GB_provinces_Hertfordshire_cities_Hertford = UsePN (mkPN "Hertford") ; + Countries_CAM_provinces_Adamaoua = UsePN (mkPN "Adamaoua") ; + Rivers_Karun = UsePN (mkPN "Karun") ; + Countries_UA_provinces_Kirovohradska_cities_Kirovohrad = UsePN (mkPN "Kirovohrad") ; + Countries_RI_cities_Samarinda = UsePN (mkPN "Samarinda") ; + Islands_SantaCruzIsland = UsePN (mkPN "Santa Cruz Island") ; + Countries_SF_provinces_Lappia = UsePN (mkPN "Lappia") ; + Countries_MAL_provinces_Perak = UsePN (mkPN "Perak") ; + Countries_TJ_provinces_Guizhou_cities_Guiyang = UsePN (mkPN "Guiyang") ; + Countries_ZRE_provinces_Shaba = UsePN (mkPN "Shaba") ; + Countries_RA_provinces_BuenosAires_cities_LaMatanza = UsePN (mkPN "La Matanza") ; + Rivers_Zambezi = UsePN (mkPN "Zambezi") ; + Countries_TJ_provinces_Jiangsu_cities_Suqian = UsePN (mkPN "Suqian") ; + Countries_E_provinces_Rioja = UsePN (mkPN "Rioja") ; + Countries_PK_cities_Mardan = UsePN (mkPN "Mardan") ; + Countries_CAM_provinces_Nordoueste_cities_Bamenda = UsePN (mkPN "Bamenda") ; + Islands_Iceland = UsePN (mkPN "Iceland") ; + Countries_R_cities_Zagorsk = UsePN (mkPN "Zagorsk") ; + Countries_USA_provinces_NewYork = UsePN (mkPN "New York") ; + Countries_Z_provinces_Northern = UsePN (mkPN "Northern") ; + Countries_IR_provinces_Esfahan = UsePN (mkPN "Esfahan") ; + Countries_I_provinces_Toscana_cities_Firenze = UsePN (mkPN "Firenze") ; + Countries_CO_provinces_Guajira_La_cities_Cienaga = UsePN (mkPN "Cienaga") ; + Countries_TJ_provinces_Shandong_cities_Yantai = UsePN (mkPN "Yantai") ; + Countries_NOK_cities_Tanchon = UsePN (mkPN "Tanchon") ; + Countries_GB_provinces_Shropshire_cities_Shrewsbury = UsePN (mkPN "Shrewsbury") ; + Rivers_Loire = UsePN (mkPN "Loire") ; + Countries_PL_provinces_Rzeszowskie = UsePN (mkPN "Rzeszowskie") ; + Countries_TJ_provinces_Zhejiang_cities_Zhoushan = UsePN (mkPN "Zhoushan") ; + Countries_N_provinces_Finnmark_cities_Vadsoe = UsePN (mkPN "Vadsoe") ; + Countries_USA_provinces_Indiana_cities_Indianapolis = UsePN (mkPN "Indianapolis") ; + Countries_GB_provinces_Grampian_cities_Aberdeen = UsePN (mkPN "Aberdeen") ; + Countries_BR_provinces_SantaCatarina_cities_PraiaGrande = UsePN (mkPN "Praia Grande") ; + Countries_PE_provinces_Piura_cities_Sullana = UsePN (mkPN "Sullana") ; + Countries_USA_provinces_Oregon_cities_Eugene = UsePN (mkPN "Eugene") ; + Countries_YV_provinces_Portuguesa_cities_Acarigua = UsePN (mkPN "Acarigua") ; + Countries_GB_provinces_Essex_cities_Colchester = UsePN (mkPN "Colchester") ; + Countries_USA_provinces_California_cities_WestCovina = UsePN (mkPN "West Covina") ; + Countries_USA_provinces_Alaska_cities_Anchorage = UsePN (mkPN "Anchorage") ; + Countries_CO_provinces_Atlantico = UsePN (mkPN "Atlantico") ; + Countries_GB_provinces_Gloucestershire_cities_Gloucester = UsePN (mkPN "Gloucester") ; + Countries_THA_provinces_ChiangMai_cities_ChiangMai = UsePN (mkPN "Chiang Mai") ; + Countries_CH_provinces_SG = UsePN (mkPN "SG") ; + Countries_MEX_provinces_Veracruz_cities_Cordoba = UsePN (mkPN "Cordoba") ; + Countries_TJ_provinces_Heilongjiang_cities_Shangzhi = UsePN (mkPN "Shangzhi") ; + Mountains_Jezerce = UsePN (mkPN "Jezerce") ; + Countries_USA_provinces_Michigan_cities_SterlingHeights = UsePN (mkPN "Sterling Heights") ; + Countries_R_provinces_Kaliningradskayaoblast = UsePN (mkPN "Kaliningradskaya oblast") ; + Rivers_Ingoda = UsePN (mkPN "Ingoda") ; + Countries_UA_provinces_Khmelnytska_cities_Khmelnytskyy = UsePN (mkPN "Khmelnytskyy") ; + Countries_WAN_cities_Akure = UsePN (mkPN "Akure") ; + Countries_THA_provinces_Chachoengsao = UsePN (mkPN "Chachoengsao") ; + Countries_USA_provinces_Arizona_cities_Mesa = UsePN (mkPN "Mesa") ; + Countries_PL_provinces_Radomskie = UsePN (mkPN "Radomskie") ; + Countries_USA_provinces_NewMexico = UsePN (mkPN "New Mexico") ; + Countries_USA_provinces_Texas_cities_Lubbock = UsePN (mkPN "Lubbock") ; + Islands_GrKomoro = UsePN (mkPN "Gr Komoro") ; + Countries_USA_provinces_Massachusetts_cities_Springfield = UsePN (mkPN "Springfield") ; + Countries_RA_provinces_BuenosAires = UsePN (mkPN "Buenos Aires") ; + Countries_GB_provinces_Bridgend = UsePN (mkPN "Bridgend") ; + Monaco = UsePN (mkPN "Monaco") ; + Countries_S_provinces_Alvsborg = UsePN (mkPN "Alvsborg") ; + Countries_S_provinces_Uppsala = UsePN (mkPN "Uppsala") ; + Countries_TJ_provinces_Zhejiang_cities_Jinhua = UsePN (mkPN "Jinhua") ; + Countries_GB_provinces_GreaterManchester_cities_Manchester = UsePN (mkPN "Manchester") ; + Countries_USA_provinces_Alaska = UsePN (mkPN "Alaska") ; + Rivers_Oranje = UsePN (mkPN "Oranje") ; + Countries_R_provinces_Kemerovskayaoblast_cities_LeninskKuznetskiy = UsePN (mkPN "Leninsk Kuznetskiy") ; + Countries_GB_provinces_WestYorkshire_cities_Kirklees = UsePN (mkPN "Kirklees") ; + Countries_R_provinces_Tomskayaoblast_cities_Tomsk = UsePN (mkPN "Tomsk") ; + Countries_S_provinces_Vasterbotten_cities_Umea = UsePN (mkPN "Umea") ; + Countries_TJ_provinces_Sichuan_cities_Xichang = UsePN (mkPN "Xichang") ; + Countries_THA_provinces_Nonthaburi = UsePN (mkPN "Nonthaburi") ; + Countries_BR_provinces_SaoPaulo_cities_Santos = UsePN (mkPN "Santos") ; + Countries_TJ_provinces_Liaoning_cities_Panshan = UsePN (mkPN "Panshan") ; + Countries_USA_provinces_California_cities_SanDiego = UsePN (mkPN "San Diego") ; + Countries_THA_provinces_Sukhothai = UsePN (mkPN "Sukhothai") ; + Countries_SUD_provinces_alWusta_cities_WadMadani = UsePN (mkPN "Wad Madani") ; + HolySee = UsePN (mkPN "Holy See") ; + Countries_RP_cities_Cebu = UsePN (mkPN "Cebu") ; + Countries_CO_provinces_Cundinamarca = UsePN (mkPN "Cundinamarca") ; + Countries_KAZ_provinces_BatysQazaqstan_cities_Oral = UsePN (mkPN "Oral") ; + Countries_cid_cia_Gibraltar = UsePN (mkPN "Gibraltar") ; + Countries_UZB_provinces_Qasqadare = UsePN (mkPN "Qasqadare") ; + Countries_N_provinces_Finnmark = UsePN (mkPN "Finnmark") ; + Countries_GR_provinces_DhytikiMakedhonia = UsePN (mkPN "Dhytiki Makedhonia") ; + Countries_BR_provinces_SaoPaulo_cities_RibeiraoPreto = UsePN (mkPN "Ribeirao Preto") ; + Countries_KAZ_provinces_Pavlodar_cities_Ekibastuz = UsePN (mkPN "Ekibastuz") ; + Countries_D_provinces_Bremen_cities_Bremerhaven = UsePN (mkPN "Bremerhaven") ; + Countries_USA_provinces_California_cities_Vallejo = UsePN (mkPN "Vallejo") ; + Countries_IR_provinces_Mazandaran_cities_GonbadeKavus = UsePN (mkPN "Gonbad e Kavus") ; + Countries_CH_provinces_OW = UsePN (mkPN "OW") ; + Organizations_LAIA = UsePN (mkPN "Latin American Integration Association") ; + Countries_EAT_provinces_Mwanza_cities_Mwanza = UsePN (mkPN "Mwanza") ; + Organizations_WToO = UsePN (mkPN "World Tourism Organization") ; + Countries_TR_provinces_Mardin = UsePN (mkPN "Mardin") ; + Countries_MAL_provinces_Selangor = UsePN (mkPN "Selangor") ; + Countries_PL_provinces_Chelmskie_cities_Chelm = UsePN (mkPN "Chelm") ; + Countries_SN_provinces_Louga_cities_Louga = UsePN (mkPN "Louga") ; + Countries_D_provinces_RheinlandPfalz_cities_Kaiserslautern = UsePN (mkPN "Kaiserslautern") ; + Mountains_ClingmansDome = UsePN (mkPN "Clingmans Dome") ; + Countries_J_provinces_Miyazaki = UsePN (mkPN "Miyazaki") ; + Countries_IND_provinces_Maharashtra_cities_Nagpur = UsePN (mkPN "Nagpur") ; + Countries_J_provinces_Kochi = UsePN (mkPN "Kochi") ; + Countries_USA_provinces_NorthCarolina = UsePN (mkPN "North Carolina") ; + Countries_CO_provinces_NortedeSantander = UsePN (mkPN "Norte de Santander") ; + Countries_CO_provinces_ValledeCauca_cities_Tulua = UsePN (mkPN "Tulua") ; + Countries_RA_provinces_SanJuan = UsePN (mkPN "San Juan") ; + Countries_MAL_provinces_Fed_Terr_ofLabuan = UsePN (mkPN "Fed. Terr. of Labuan") ; + Countries_USA_provinces_Ohio_cities_Cincinnati = UsePN (mkPN "Cincinnati") ; + Countries_HCA_provinces_SantaBarbara_cities_SantaBarbara = UsePN (mkPN "Santa Barbara") ; + Countries_IR_provinces_Kerman_cities_Sirjan = UsePN (mkPN "Sirjan") ; + Countries_EAT_provinces_Ruvuma_cities_Songea = UsePN (mkPN "Songea") ; + Countries_ANG_provinces_Namibe_cities_Namibe = UsePN (mkPN "Namibe") ; + Countries_RO_provinces_Vilcea_cities_RimnicuVilcea = UsePN (mkPN "Rimnicu Vilcea") ; + Countries_HCA_provinces_GraciasaDios = UsePN (mkPN "Gracias a Dios") ; + Countries_USA_provinces_Nevada_cities_Henderson = UsePN (mkPN "Henderson") ; + Countries_WAN_cities_Onitsha = UsePN (mkPN "Onitsha") ; + Countries_PL_provinces_Przemyskie = UsePN (mkPN "Przemyskie") ; + Lakes_OzeroLadoga = UsePN (mkPN "Ozero Ladoga") ; + Countries_CO_provinces_Putumayo_cities_Mocoa = UsePN (mkPN "Mocoa") ; + Countries_TJ_provinces_Shaanxi_cities_Tongchuan = UsePN (mkPN "Tongchuan") ; + Countries_PE_provinces_Junin_cities_Huancayo = UsePN (mkPN "Huancayo") ; + Countries_BR_provinces_Parana_cities_Londrina = UsePN (mkPN "Londrina") ; + Countries_RSA_provinces_Gauteng = UsePN (mkPN "Gauteng") ; + Countries_RO_provinces_SatuMare_cities_SatuMare = UsePN (mkPN "Satu Mare") ; + Countries_USA_provinces_Michigan_cities_Detroit = UsePN (mkPN "Detroit") ; + Countries_USA_provinces_Wisconsin_cities_Madison = UsePN (mkPN "Madison") ; + Countries_S_provinces_Uppsala_cities_Uppsala = UsePN (mkPN "Uppsala") ; + Countries_USA_provinces_Connecticut_cities_Bridgeport = UsePN (mkPN "Bridgeport") ; + Countries_R_provinces_UdmurtRepublic_cities_Izhevsk = UsePN (mkPN "Izhevsk") ; + Countries_THA_provinces_Uttaradit = UsePN (mkPN "Uttaradit") ; + Countries_PE_provinces_Tacna = UsePN (mkPN "Tacna") ; + Countries_E_provinces_Galicia_cities_LaCoruna = UsePN (mkPN "La Coruna") ; + Countries_R_provinces_Voronezhskayaoblast_cities_Voronezh = UsePN (mkPN "Voronezh") ; + Countries_PL_provinces_Bielskie = UsePN (mkPN "Bielskie") ; + Countries_ANG_provinces_Bengo_cities_Caxito = UsePN (mkPN "Caxito") ; + Countries_EAK_provinces_Coast_cities_Malindi = UsePN (mkPN "Malindi") ; + Countries_F_provinces_PaysdelaLoire_cities_LeMans = UsePN (mkPN "Le Mans") ; + Countries_I_provinces_Puglia = UsePN (mkPN "Puglia") ; + Countries_RO_provinces_Arad = UsePN (mkPN "Arad") ; + Countries_RSA_provinces_WesternCape = UsePN (mkPN "Western Cape") ; + Countries_BR_provinces_Ceara = UsePN (mkPN "Ceara") ; + Countries_RO_provinces_Prahova_cities_Ploiesti = UsePN (mkPN "Ploiesti") ; + Countries_GR_provinces_VoreionAiyaion = UsePN (mkPN "Voreion Aiyaion") ; + Countries_N_provinces_Hordaland = UsePN (mkPN "Hordaland") ; + SaoTomeAndPrincipe = UsePN (mkPN "Sao Tome and Principe") ; + Countries_GB_provinces_Powys = UsePN (mkPN "Powys") ; + Countries_TJ_provinces_Anhui = UsePN (mkPN "Anhui") ; + Countries_USA_provinces_Hawaii_cities_Honolulu = UsePN (mkPN "Honolulu") ; + Organizations_IFRCS = UsePN (mkPN "International Federation of Red Cross and Red Crescent Societies") ; + Countries_RO_provinces_Maramures_cities_BaiaMare = UsePN (mkPN "Baia Mare") ; + Countries_IND_provinces_ArunachalPradesh = UsePN (mkPN "Arunachal Pradesh") ; + Countries_F_provinces_LanguedocRousillon = UsePN (mkPN "Languedoc Rousillon") ; + Countries_RC_provinces_Hsinchu_munic_cities_Hsinchu = UsePN (mkPN "Hsinchu") ; + Countries_TJ_provinces_Hunan_cities_Xiangtan = UsePN (mkPN "Xiangtan") ; + SaintVincentAndTheGrenadines = UsePN (mkPN "Saint Vincent and the Grenadines") ; + Countries_RI_cities_BandarLampung = UsePN (mkPN "Bandar Lampung") ; + Countries_IND_provinces_Mizoram = UsePN (mkPN "Mizoram") ; + Islands_SanClementeIsland = UsePN (mkPN "San Clemente Island") ; + Countries_FGU_cities_Cayenne = UsePN (mkPN "Cayenne") ; + Seas_BlackSea = UsePN (mkPN "Black Sea") ; + Countries_HCA_provinces_Intibuca = UsePN (mkPN "Intibuca") ; + Countries_BR_provinces_SaoPaulo_cities_Campinas = UsePN (mkPN "Campinas") ; + Countries_RA_provinces_Mendoza = UsePN (mkPN "Mendoza") ; + Countries_SUD_provinces_Kurdufan = UsePN (mkPN "Kurdufan") ; + Countries_E_provinces_Andalusia_cities_Jaen = UsePN (mkPN "Jaen") ; + Countries_E_provinces_Madrid_cities_Mostoles = UsePN (mkPN "Mostoles") ; + Countries_BR_provinces_Para_cities_Santarem = UsePN (mkPN "Santarem") ; + Countries_R_provinces_Kirovskayaoblast_cities_Kirov = UsePN (mkPN "Kirov") ; + Countries_NL_provinces_Overijssel_cities_Zwolle = UsePN (mkPN "Zwolle") ; + FrenchGuiana = UsePN (mkPN "French Guiana") ; + Islands_Nevis = UsePN (mkPN "Nevis") ; + Islands_Coll = UsePN (mkPN "Coll") ; + Countries_USA_provinces_Florida_cities_Hialeah = UsePN (mkPN "Hialeah") ; + Countries_A_provinces_Styria_cities_Graz = UsePN (mkPN "Graz") ; + Countries_HCA_provinces_IslasdelaBahia_cities_Roatan = UsePN (mkPN "Roatan") ; + Countries_TJ_provinces_Fujian = UsePN (mkPN "Fujian") ; + Countries_RSM_cities_SanMarino = UsePN (mkPN "San Marino") ; + Laos = UsePN (mkPN "Laos") ; + Islands_Honshu = UsePN (mkPN "Honshu") ; + Countries_GB_provinces_Staffordshire = UsePN (mkPN "Staffordshire") ; + Countries_YV_provinces_Monagas_cities_Maturin = UsePN (mkPN "Maturin") ; + Countries_GB_provinces_Essex_cities_Basildon = UsePN (mkPN "Basildon") ; + Countries_ES_provinces_LaUnion = UsePN (mkPN "La Union") ; + Countries_D_provinces_SchleswigHolstein_cities_Kiel = UsePN (mkPN "Kiel") ; + Countries_RSA_cities_Katlehong = UsePN (mkPN "Katlehong") ; + Lakes_LakeTorren = UsePN (mkPN "Lake Torren") ; + Countries_UZB_provinces_Farghona_cities_Quqon = UsePN (mkPN "Quqon") ; + Countries_THA_provinces_Kanchanaburi = UsePN (mkPN "Kanchanaburi") ; + Countries_RP_cities_Manila = UsePN (mkPN "Manila") ; + Lakes_LakeSkutari = UsePN (mkPN "Lake Skutari") ; + Countries_J_provinces_Kyoto_cities_Kyoto = UsePN (mkPN "Kyoto") ; + Countries_YV_provinces_Portuguesa = UsePN (mkPN "Portuguesa") ; + Mountains_NevadodeToluca = UsePN (mkPN "Nevado de Toluca") ; + Mountains_MountEverest = UsePN (mkPN "Mount Everest") ; + Iceland = UsePN (mkPN "Iceland") ; + Countries_VN_provinces_ThaiBinh = UsePN (mkPN "Thai Binh") ; + Countries_RM_provinces_Toliary_cities_Toliary = UsePN (mkPN "Toliary") ; + Islands_VancouverIsland = UsePN (mkPN "Vancouver Island") ; + Lakes_OzeroOnega = UsePN (mkPN "Ozero Onega") ; + Countries_D_provinces_NordrheinWestfalen_cities_Solingen = UsePN (mkPN "Solingen") ; + Countries_USA_provinces_Connecticut = UsePN (mkPN "Connecticut") ; + Countries_C_provinces_Guantanamo = UsePN (mkPN "Guantanamo") ; + Countries_E_provinces_Catalonia_cities_Sabadell = UsePN (mkPN "Sabadell") ; + Countries_RC_provinces_Taipei = UsePN (mkPN "Taipei") ; + Countries_USA_provinces_Washington_cities_Spokane = UsePN (mkPN "Spokane") ; + Countries_AL_cities_Vlore = UsePN (mkPN "Vlore") ; + Countries_PL_provinces_Bielskie_cities_BielskoBiala = UsePN (mkPN "Bielsko Biala") ; + Countries_MEX_provinces_Hidalgo_cities_Pachuca = UsePN (mkPN "Pachuca") ; + Countries_cid_cia_Wallis_and_Futuna_cities_Mata_Utu = UsePN (mkPN "Mata-Utu") ; + Countries_VN_provinces_HoaBinh = UsePN (mkPN "Hoa Binh") ; + Organizations_ECLAC = UsePN (mkPN "Economic Commission for Latin America and the Caribbean") ; + Countries_EAT_provinces_Ruvuma = UsePN (mkPN "Ruvuma") ; + Countries_IND_provinces_Assam = UsePN (mkPN "Assam") ; + Countries_R_provinces_Omskayaoblast_cities_Omsk = UsePN (mkPN "Omsk") ; + Countries_N_provinces_Finnmark_cities_Hammerfest = UsePN (mkPN "Hammerfest") ; + Countries_TJ_provinces_Hunan_cities_Loudi = UsePN (mkPN "Loudi") ; + Countries_THA_provinces_Saraburi_cities_Saraburi = UsePN (mkPN "Saraburi") ; + Haiti = UsePN (mkPN "Haiti") ; + Mountains_MtWashington = UsePN (mkPN "Mt Washington") ; + Organizations_UPU = UsePN (mkPN "Universal Postal Union") ; + Countries_R_provinces_Ryazanskayaoblast_cities_Ryazan = UsePN (mkPN "Ryazan") ; + Countries_NL_provinces_Overijssel = UsePN (mkPN "Overijssel") ; + Countries_cid_cia_Navassa_Island = UsePN (mkPN "Navassa Island") ; + Countries_THA_provinces_Chanthaburi = UsePN (mkPN "Chanthaburi") ; + Countries_KAZ_provinces_Almaty_munic_cities_Almaty = UsePN (mkPN "Almaty") ; + Countries_F_provinces_Corse_cities_Ajaccio = UsePN (mkPN "Ajaccio") ; + Countries_I_provinces_Puglia_cities_Bari = UsePN (mkPN "Bari") ; + Countries_MEX_provinces_Campeche_cities_Campeche = UsePN (mkPN "Campeche") ; + Countries_BR_cities_Alvorada = UsePN (mkPN "Alvorada") ; + Organizations_AfDB = UsePN (mkPN "African Development Bank") ; + Rivers_Kokemaeenjoki = UsePN (mkPN "Kokemaeenjoki") ; + Countries_UA_provinces_Kyyivska = UsePN (mkPN "Kyyivska") ; + Organizations_CAEU = UsePN (mkPN "Council of Arab Economic Unity") ; + Countries_cid_cia_Jan_Mayen = UsePN (mkPN "Jan Mayen") ; + Countries_R_provinces_Leningradskayaoblast = UsePN (mkPN "Leningradskaya oblast") ; + Countries_RCB_cities_Brazzaville = UsePN (mkPN "Brazzaville") ; + Countries_F_provinces_Aquitaine_cities_Bordeaux = UsePN (mkPN "Bordeaux") ; + Countries_BR_provinces_SaoPaulo_cities_Botucatu = UsePN (mkPN "Botucatu") ; + Countries_USA_provinces_Florida_cities_Hollywood = UsePN (mkPN "Hollywood") ; + Countries_S_provinces_Ostergotland_cities_Norrkoping = UsePN (mkPN "Norrkoping") ; + Countries_ES_provinces_LaLibertad = UsePN (mkPN "La Libertad") ; + Countries_USA_provinces_California_cities_Pomona = UsePN (mkPN "Pomona") ; + Countries_BR_cities_Abaetetuba = UsePN (mkPN "Abaetetuba") ; + BurkinaFaso = UsePN (mkPN "Burkina Faso") ; + Countries_WAN_cities_Ikorodu = UsePN (mkPN "Ikorodu") ; + Countries_ET_provinces_SinaashShamaliyah_cities_ElArish = UsePN (mkPN "El Arish") ; + Rivers_Lukuga = UsePN (mkPN "Lukuga") ; + Countries_TJ_provinces_Guangdong_cities_Heyuan = UsePN (mkPN "Heyuan") ; + Countries_KAZ_provinces_Qaraghandy_cities_Karaganda = UsePN (mkPN "Karaganda") ; + Countries_TR_provinces_Tokat_cities_Tokat = UsePN (mkPN "Tokat") ; + Countries_C_provinces_Guantanamo_cities_Guantanamo = UsePN (mkPN "Guantanamo") ; + Islands_Hoy = UsePN (mkPN "Hoy") ; + Countries_BR_cities_Sumare = UsePN (mkPN "Sumare") ; + Mountains_Kenia = UsePN (mkPN "Kenia") ; + Rivers_Bani = UsePN (mkPN "Bani") ; + Countries_RA_provinces_RioNegro = UsePN (mkPN "Rio Negro") ; + Liberia = UsePN (mkPN "Liberia") ; + Countries_WAN_cities_Ila = UsePN (mkPN "Ila") ; + Countries_TJ_provinces_Hunan_cities_Yiyang = UsePN (mkPN "Yiyang") ; + Countries_PL_provinces_Lodzkie = UsePN (mkPN "Lodzkie") ; + Countries_NL_provinces_Friesland = UsePN (mkPN "Friesland") ; + Countries_RP_cities_Pasig = UsePN (mkPN "Pasig") ; + Countries_R_provinces_Pskovskayaoblast_cities_VelikiyeLuki = UsePN (mkPN "Velikiye Luki") ; + Countries_E_provinces_Madrid_cities_AlcaladeHenares = UsePN (mkPN "Alcala de Henares") ; + Countries_cid_cia_Bouvet_Island = UsePN (mkPN "Bouvet Island") ; + Countries_GB_provinces_Oxfordshire = UsePN (mkPN "Oxfordshire") ; + Countries_CO_provinces_NortedeSantander_cities_Cucuta = UsePN (mkPN "Cucuta") ; + Countries_GB_provinces_Lancashire_cities_Lancaster = UsePN (mkPN "Lancaster") ; + Countries_cid_cia_Europa_Island = UsePN (mkPN "Europa Island") ; + Countries_CO_provinces_Bolivar = UsePN (mkPN "Bolivar") ; + Countries_ET_provinces_ElGharbiya_cities_Tanta = UsePN (mkPN "Tanta") ; + Countries_TJ_provinces_Henan = UsePN (mkPN "Henan") ; + Countries_BR_provinces_Para_cities_Castanhal = UsePN (mkPN "Castanhal") ; + Countries_R_provinces_Orlovskayaoblast = UsePN (mkPN "Orlovskaya oblast") ; + Countries_MEX_provinces_Guanajuato_cities_Celaya = UsePN (mkPN "Celaya") ; + Countries_MAL_provinces_Kelantan = UsePN (mkPN "Kelantan") ; + Countries_UA_provinces_Donetska_cities_Makiyivka = UsePN (mkPN "Makiyivka") ; + Countries_WAN_cities_Ikerre = UsePN (mkPN "Ikerre") ; + Countries_cid_cia_Johnston_Atoll = UsePN (mkPN "Johnston Atoll") ; + Countries_RC_cities_Hsinchuang = UsePN (mkPN "Hsinchuang") ; + Countries_I_provinces_Liguria_cities_LaSpezia = UsePN (mkPN "La Spezia") ; + Countries_RM_provinces_Toamasina_cities_Tamatave = UsePN (mkPN "Tamatave") ; + Countries_S_provinces_Kristianstad_cities_Kristianstad = UsePN (mkPN "Kristianstad") ; + Countries_R_provinces_UdmurtRepublic_cities_Glazov = UsePN (mkPN "Glazov") ; + Countries_HCA_provinces_Lempira = UsePN (mkPN "Lempira") ; + Rivers_Vaal = UsePN (mkPN "Vaal") ; + Countries_TJ_provinces_Anhui_cities_Xuancheng = UsePN (mkPN "Xuancheng") ; + Countries_ET_provinces_ElWadielJadid_cities_ElKharga = UsePN (mkPN "El Kharga") ; + Countries_R_provinces_Vladimirskayaoblast_cities_Vladimir = UsePN (mkPN "Vladimir") ; + Mountains_Portefjaellen = UsePN (mkPN "Portefjaellen") ; + Countries_PL_provinces_Warszwaskie_cities_Warsaw = UsePN (mkPN "Warsaw") ; + Countries_IRQ_provinces_Babil = UsePN (mkPN "Babil") ; + Countries_CZ_provinces_Zapadocesky = UsePN (mkPN "Zapadocesky") ; + Organizations_Benelux = UsePN (mkPN "Benelux Economic Union") ; + Countries_TJ_provinces_Sichuan_cities_Chengdu = UsePN (mkPN "Chengdu") ; + Countries_PL_provinces_Lomzynskie_cities_Lomza = UsePN (mkPN "Lomza") ; + Burma = UsePN (mkPN "Burma") ; + Countries_CO_provinces_Risaralda = UsePN (mkPN "Risaralda") ; + Countries_R_provinces_Kostromskayaoblast = UsePN (mkPN "Kostromskaya oblast") ; + Countries_E_provinces_Catalonia_cities_HospitaletdeLlobregat = UsePN (mkPN "Hospitalet de Llobregat") ; + Countries_GR_provinces_Attiki = UsePN (mkPN "Attiki") ; + Countries_D_provinces_Bayern_cities_Nurnberg = UsePN (mkPN "Nurnberg") ; + Countries_USA_provinces_Mississippi_cities_Jackson = UsePN (mkPN "Jackson") ; + Islands_Montserrat = UsePN (mkPN "Montserrat") ; + Countries_R_provinces_Magadanskayaoblast_cities_Magadan = UsePN (mkPN "Magadan") ; + Countries_ES_provinces_Chalatenango_cities_Chalatenango = UsePN (mkPN "Chalatenango") ; + Countries_CO_provinces_Narino = UsePN (mkPN "Narino") ; + Islands_SantaRosaIsland = UsePN (mkPN "Santa Rosa Island") ; + Countries_MEX_provinces_Hidalgo = UsePN (mkPN "Hidalgo") ; + Countries_R_provinces_Ivanovskayaoblast = UsePN (mkPN "Ivanovskaya oblast") ; + Countries_C_provinces_CiegodeAvila = UsePN (mkPN "Ciego de Avila") ; + Countries_R_provinces_Tulskayaoblast_cities_Novomoskovsk = UsePN (mkPN "Novomoskovsk") ; + Countries_GB_provinces_GreaterManchester_cities_Wigan = UsePN (mkPN "Wigan") ; + Countries_GB_provinces_Central_cities_Stirling = UsePN (mkPN "Stirling") ; + Countries_USA_provinces_Texas_cities_Laredo = UsePN (mkPN "Laredo") ; + Rivers_Chire = UsePN (mkPN "Chire") ; + Countries_TJ_provinces_NeiMonggol_cities_Hohhot = UsePN (mkPN "Hohhot") ; + Bangladesh = UsePN (mkPN "Bangladesh") ; + Countries_CZ_provinces_Severocesky_cities_Liberec = UsePN (mkPN "Liberec") ; + Lakes_LakePrespa = UsePN (mkPN "Lake Prespa") ; + Rivers_Cunene = UsePN (mkPN "Cunene") ; + Rivers_Arkansas = UsePN (mkPN "Arkansas") ; + Countries_TJ_provinces_Hunan_cities_Shaoyang = UsePN (mkPN "Shaoyang") ; + Countries_VN_provinces_SongBe = UsePN (mkPN "Song Be") ; + Countries_J_provinces_Okayama = UsePN (mkPN "Okayama") ; + Countries_USA_provinces_Virginia_cities_Chesapeake = UsePN (mkPN "Chesapeake") ; + Mongolia = UsePN (mkPN "Mongolia") ; + Countries_RSA_cities_Ibhayi = UsePN (mkPN "Ibhayi") ; + Countries_CH_provinces_VD = UsePN (mkPN "VD") ; + Lakes_LakeWilliston = UsePN (mkPN "Lake Williston") ; + Islands_Shikoku = UsePN (mkPN "Shikoku") ; + Countries_IR_provinces_Khuzestan_cities_Dezful = UsePN (mkPN "Dezful") ; + Countries_IND_provinces_Bihar = UsePN (mkPN "Bihar") ; + Deserts_Makteir = UsePN (mkPN "Makteir") ; + Countries_EAT_provinces_Mwanza = UsePN (mkPN "Mwanza") ; + Rivers_Weichsel = UsePN (mkPN "Weichsel") ; + Spain = UsePN (mkPN "Spain") ; + Countries_PL_provinces_Poznanskie = UsePN (mkPN "Poznanskie") ; + Countries_GB_provinces_Somerset_cities_Taunton = UsePN (mkPN "Taunton") ; + Countries_RO_provinces_Salaj = UsePN (mkPN "Salaj") ; + Countries_R_provinces_Belgorodskayaoblast = UsePN (mkPN "Belgorodskaya oblast") ; + Countries_CH_provinces_BL = UsePN (mkPN "BL") ; + Countries_RA_provinces_Corrientes_cities_Corrientes = UsePN (mkPN "Corrientes") ; + Countries_TR_provinces_Erzurum_cities_Erzurum = UsePN (mkPN "Erzurum") ; + Countries_CDN_provinces_Ontario_cities_SaintCatharines = UsePN (mkPN "Saint Catharines") ; + Countries_ET_provinces_ElSuweiz_munic = UsePN (mkPN "El Suweiz (munic.)") ; + Countries_BR_provinces_Pernambuco_cities_Petrolina = UsePN (mkPN "Petrolina") ; + Islands_Bornholm = UsePN (mkPN "Bornholm") ; + Countries_USA_provinces_Texas_cities_Amarillo = UsePN (mkPN "Amarillo") ; + Lakes_LakeEduard = UsePN (mkPN "Lake Eduard") ; + Countries_GB_provinces_WestMidlands_cities_Wolverhampton = UsePN (mkPN "Wolverhampton") ; + Countries_GB_provinces_NorthYorkshire_cities_Northallerton = UsePN (mkPN "Northallerton") ; + Seas_PersianGulf = UsePN (mkPN "Persian Gulf") ; + Organizations_BDEAC = UsePN (mkPN "Central African States Development Bank") ; + Countries_J_provinces_Gumma_cities_Maebashi = UsePN (mkPN "Maebashi") ; + Countries_GB_provinces_Dorset_cities_Dorchester = UsePN (mkPN "Dorchester") ; + Countries_IND_provinces_AndhraPradesh_cities_Guntur = UsePN (mkPN "Guntur") ; + Countries_EAK_provinces_Central_cities_Nyeri = UsePN (mkPN "Nyeri") ; + Countries_D_provinces_BadenWurttemberg_cities_Stuttgart = UsePN (mkPN "Stuttgart") ; + Countries_ROK_cities_Chongju = UsePN (mkPN "Chongju") ; + Countries_E_provinces_Catalonia_cities_Mataro = UsePN (mkPN "Mataro") ; + Countries_SN_provinces_SaintLouis_cities_SaintLouis = UsePN (mkPN "Saint Louis") ; + Countries_UZB_provinces_Surkhondare_cities_Termiz = UsePN (mkPN "Termiz") ; + Countries_THA_provinces_Satun = UsePN (mkPN "Satun") ; + Countries_IR_provinces_Mazandaran_cities_Gorgan = UsePN (mkPN "Gorgan") ; + Countries_TJ_provinces_Sichuan_cities_Guangyuan = UsePN (mkPN "Guangyuan") ; + Countries_IRQ_provinces_Wasit = UsePN (mkPN "Wasit") ; + Countries_PL_provinces_Ostroleckie_cities_Ostroleka = UsePN (mkPN "Ostroleka") ; + Countries_TR_provinces_Balikesir_cities_Balikesir = UsePN (mkPN "Balikesir") ; + Countries_D_provinces_NordrheinWestfalen_cities_Dortmund = UsePN (mkPN "Dortmund") ; + Countries_PL_provinces_Plockie = UsePN (mkPN "Plockie") ; + Countries_CZ_provinces_Severomoravsky_cities_Olomouc = UsePN (mkPN "Olomouc") ; + Countries_MEX_provinces_Coahuila_cities_Monclova = UsePN (mkPN "Monclova") ; + Countries_CAM_provinces_Sud_cities_Ebolowa = UsePN (mkPN "Ebolowa") ; + Countries_IND_provinces_TamilNadu_cities_Tiruchchirappalli = UsePN (mkPN "Tiruchchirappalli") ; + Countries_THA_provinces_LopBuri = UsePN (mkPN "Lop Buri") ; + Countries_EAT_provinces_Tabora_cities_Tabora = UsePN (mkPN "Tabora") ; + Countries_TR_provinces_Sanliurfa = UsePN (mkPN "Sanliurfa") ; + Countries_THA_provinces_SuratThani = UsePN (mkPN "Surat Thani") ; + Countries_USA_provinces_SouthDakota_cities_SiouxFalls = UsePN (mkPN "Sioux Falls") ; + Countries_GB_provinces_MerthyrTydfil = UsePN (mkPN "Merthyr Tydfil") ; + Countries_BR_provinces_MatoGrossodoSul = UsePN (mkPN "Mato Grosso do Sul") ; + Countries_YV_provinces_Bolivar_cities_CiudadGuayana = UsePN (mkPN "Ciudad Guayana") ; + Mountains_BoundaryPeak = UsePN (mkPN "Boundary Peak") ; + Countries_GB_provinces_AberconwyandColwyn = UsePN (mkPN "Aberconwy and Colwyn") ; + Countries_UA_provinces_Zakarpatska_cities_Uzhhorod = UsePN (mkPN "Uzhhorod") ; + AntiguaAndBarbuda = UsePN (mkPN "Antigua and Barbuda") ; + Countries_R_provinces_Irkutskayaoblast_cities_Irkutsk = UsePN (mkPN "Irkutsk") ; + Countries_HCA_provinces_Comayagua = UsePN (mkPN "Comayagua") ; + Countries_USA_provinces_NorthCarolina_cities_Durham = UsePN (mkPN "Durham") ; + Countries_HCA_provinces_Colon_cities_Trujillo = UsePN (mkPN "Trujillo") ; + Countries_WAN_cities_Shaki = UsePN (mkPN "Shaki") ; + Countries_SF_provinces_Uusimaa_cities_Helsinki = UsePN (mkPN "Helsinki") ; + Countries_I_provinces_Piemonte = UsePN (mkPN "Piemonte") ; + Comoros = UsePN (mkPN "Comoros") ; + Countries_GR_provinces_KedrikiMakedhonia = UsePN (mkPN "Kedriki Makedhonia") ; + Countries_USA_provinces_Texas_cities_Arlington = UsePN (mkPN "Arlington") ; + Rivers_Casai = UsePN (mkPN "Casai") ; + Lakes_LakeKioga = UsePN (mkPN "Lake Kioga") ; + Countries_H_provinces_Budapest_munic = UsePN (mkPN "Budapest (munic.)") ; + Rivers_Sanga = UsePN (mkPN "Sanga") ; + Countries_USA_provinces_Arizona_cities_Scottsdale = UsePN (mkPN "Scottsdale") ; + Countries_RO_provinces_Teleorman = UsePN (mkPN "Teleorman") ; + Countries_CAM_provinces_Est_cities_Bertoua = UsePN (mkPN "Bertoua") ; + Countries_BR_cities_Betim = UsePN (mkPN "Betim") ; + Countries_GB_provinces_WestMidlands_cities_Solihull = UsePN (mkPN "Solihull") ; + Countries_GB_provinces_RhonddaCynonTaff_cities_Rhondda = UsePN (mkPN "Rhondda") ; + Countries_TR_provinces_Ordu = UsePN (mkPN "Ordu") ; + Countries_J_provinces_Kanagawa_cities_Kawasaki = UsePN (mkPN "Kawasaki") ; + Islands_Tasmania = UsePN (mkPN "Tasmania") ; + Countries_DJI_cities_Djibouti = UsePN (mkPN "Djibouti") ; + Countries_MEX_provinces_NuevoLeon_cities_Monterrey = UsePN (mkPN "Monterrey") ; + Countries_TR_provinces_Hatay_cities_Iskenderun = UsePN (mkPN "Iskenderun") ; + Lakes_GreatSaltLake = UsePN (mkPN "Great Salt Lake") ; + SaintLucia = UsePN (mkPN "Saint Lucia") ; + Countries_WAN_cities_Sapele = UsePN (mkPN "Sapele") ; + Countries_USA_provinces_Tennessee_cities_Nashville = UsePN (mkPN "Nashville") ; + Countries_CH_provinces_UR = UsePN (mkPN "UR") ; + Countries_IR_provinces_AzarbayianeGharbt_cities_Maragheh = UsePN (mkPN "Maragheh") ; + Countries_E_provinces_CanaryIslands_cities_LasPalmasdeGranCanaria = UsePN (mkPN "Las Palmas de Gran Canaria") ; + Countries_CDN_provinces_Ontario = UsePN (mkPN "Ontario") ; + Countries_RO_provinces_Maramures = UsePN (mkPN "Maramures") ; + Countries_RI_cities_Gorontalo = UsePN (mkPN "Gorontalo") ; + Countries_CH_provinces_LU = UsePN (mkPN "LU") ; + Countries_R_provinces_Rep_ofAdygeya = UsePN (mkPN "Rep. of Adygeya") ; + Countries_MEX_provinces_Colima_cities_Colima = UsePN (mkPN "Colima") ; + Countries_RO_provinces_Calarasi = UsePN (mkPN "Calarasi") ; + Countries_S_provinces_Norrbotten = UsePN (mkPN "Norrbotten") ; + Countries_TJ_provinces_Shanxi_cities_Yuci = UsePN (mkPN "Yuci") ; + Countries_AZ_cities_Baku = UsePN (mkPN "Baku") ; + Countries_E_provinces_Catalonia_cities_Tarragona = UsePN (mkPN "Tarragona") ; + Countries_I_provinces_Abruzzo_cities_Pescara = UsePN (mkPN "Pescara") ; + Countries_R_provinces_Kurskayaoblast = UsePN (mkPN "Kurskaya oblast") ; + Countries_RA_provinces_SantaCruz_cities_RioGallegos = UsePN (mkPN "Rio Gallegos") ; + Countries_IR_provinces_Hamadan_cities_Malayer = UsePN (mkPN "Malayer") ; + Countries_J_provinces_Kumamoto = UsePN (mkPN "Kumamoto") ; + Organizations_NAM = UsePN (mkPN "Nonaligned Movement") ; + Countries_TJ_provinces_Liaoning_cities_Benxi = UsePN (mkPN "Benxi") ; + Rivers_ConnecticutRiver = UsePN (mkPN "Connecticut River") ; + Countries_I_provinces_Toscana = UsePN (mkPN "Toscana") ; + Countries_BR_provinces_Pernambuco_cities_Garanhuns = UsePN (mkPN "Garanhuns") ; + Countries_AL_cities_Tirane = UsePN (mkPN "Tirane") ; + Islands_SaintVincent = UsePN (mkPN "Saint Vincent") ; + Countries_GB_provinces_Lothian = UsePN (mkPN "Lothian") ; + Countries_YV_provinces_Carabobo_cities_Valencia = UsePN (mkPN "Valencia") ; + Countries_USA_provinces_NorthCarolina_cities_Raleigh = UsePN (mkPN "Raleigh") ; + Countries_WAN_cities_Enugu = UsePN (mkPN "Enugu") ; + Countries_R_provinces_Khabarovskiykray_cities_Khabarovsk = UsePN (mkPN "Khabarovsk") ; + Countries_IR_provinces_Khorasan_cities_Bojnurd = UsePN (mkPN "Bojnurd") ; + Countries_TM_provinces_Balkan_cities_Nebitdag = UsePN (mkPN "Nebitdag") ; + Rivers_RiodelaPlata = UsePN (mkPN "Rio de la Plata") ; + Rivers_Pibor = UsePN (mkPN "Pibor") ; + Countries_BD_cities_Sylhet = UsePN (mkPN "Sylhet") ; + Countries_D_provinces_NordrheinWestfalen_cities_MulheimanderRuhr = UsePN (mkPN "Mulheim an der Ruhr") ; + Countries_USA_provinces_NewJersey_cities_Paterson = UsePN (mkPN "Paterson") ; + Countries_TJ_provinces_Heilongjiang_cities_Fuling = UsePN (mkPN "Fuling") ; + Countries_TR_provinces_Kocaeli_cities_Adapazari = UsePN (mkPN "Adapazari") ; + Countries_MA_cities_Tetouan = UsePN (mkPN "Tetouan") ; + Countries_S_provinces_Kristianstad = UsePN (mkPN "Kristianstad") ; + Countries_E_provinces_Andalusia_cities_Sevilla = UsePN (mkPN "Sevilla") ; + Countries_S_provinces_Orebro_cities_Orebro = UsePN (mkPN "Orebro") ; + Countries_MYA_provinces_Chin_cities_Hakha = UsePN (mkPN "Hakha") ; + Countries_TJ_provinces_Hubei_cities_Guangshui = UsePN (mkPN "Guangshui") ; + Rivers_Kafue = UsePN (mkPN "Kafue") ; + Countries_cid_cia_French_Polynesia_cities_Papeete = UsePN (mkPN "Papeete") ; + Countries_BR_provinces_Alagoas_cities_Maceio = UsePN (mkPN "Maceio") ; + Countries_TJ_provinces_Henan_cities_Luohe = UsePN (mkPN "Luohe") ; + Countries_GR_cities_Piraeus = UsePN (mkPN "Piraeus") ; + Countries_ET_provinces_Sohag = UsePN (mkPN "Sohag") ; + Countries_GB_provinces_WestMidlands_cities_Coventry = UsePN (mkPN "Coventry") ; + France = UsePN (mkPN "France") ; + Countries_BR_provinces_Bahia_cities_FeiradeSantana = UsePN (mkPN "Feira de Santana") ; + Countries_TR_provinces_Diyarbakir_cities_Diyarbakir = UsePN (mkPN "Diyarbakir") ; + Organizations_UNRWA = UsePN (mkPN "United Nations Relief and Works Agency for Palestine Refugees in the Near East") ; + Germany = UsePN (mkPN "Germany") ; + Countries_WAN_cities_Ibadan = UsePN (mkPN "Ibadan") ; + Countries_PK_cities_Islamabad = UsePN (mkPN "Islamabad") ; + Countries_RSA_cities_Soshanguve = UsePN (mkPN "Soshanguve") ; + Countries_J_provinces_Fukushima_cities_Fukushima = UsePN (mkPN "Fukushima") ; + Countries_RM_provinces_Antananarivo = UsePN (mkPN "Antananarivo") ; + Countries_P_provinces_Braganca = UsePN (mkPN "Braganca") ; + Countries_YV_provinces_Tachira_cities_SanCristobal = UsePN (mkPN "San Cristobal") ; + Countries_MEX_provinces_Veracruz_cities_Coatzacoalcos = UsePN (mkPN "Coatzacoalcos") ; + Countries_CDN_provinces_Ontario_cities_Oshawa = UsePN (mkPN "Oshawa") ; + Countries_RSA_provinces_Mpumalanga_cities_Nelspruit = UsePN (mkPN "Nelspruit") ; + Countries_R_provinces_Irkutskayaoblast = UsePN (mkPN "Irkutskaya oblast") ; + Countries_cid_cia_Greenland = UsePN (mkPN "Greenland") ; + Countries_Z_provinces_Northern_cities_Kasama = UsePN (mkPN "Kasama") ; + Countries_PL_provinces_Ciechanowskie = UsePN (mkPN "Ciechanowskie") ; + Countries_UA_provinces_Kharkivska_cities_Kharkiv = UsePN (mkPN "Kharkiv") ; + Countries_A_provinces_Carinthia_cities_Klagenfurt = UsePN (mkPN "Klagenfurt") ; + Organizations_G_10 = UsePN (mkPN "Group of 10") ; + Countries_CO_provinces_Bolivar_cities_Mangangue = UsePN (mkPN "Mangangue") ; + Countries_RO_provinces_Dimbovita = UsePN (mkPN "Dimbovita") ; + Countries_DZ_cities_Bechar = UsePN (mkPN "Bechar") ; + Countries_PL_provinces_Poznanskie_cities_Poznan = UsePN (mkPN "Poznan") ; + Countries_GB_provinces_SouthYorkshire_cities_Sheffield = UsePN (mkPN "Sheffield") ; + Countries_MYA_provinces_Tanintharyi_cities_Tavoy = UsePN (mkPN "Tavoy") ; + Countries_GB_provinces_Kent_cities_Tonbridge = UsePN (mkPN "Tonbridge") ; + Countries_L_cities_Luxembourg = UsePN (mkPN "Luxembourg") ; + Organizations_OECS = UsePN (mkPN "Organization of Eastern Caribbean States") ; + Countries_D_provinces_Saarland = UsePN (mkPN "Saarland") ; + Countries_CR_provinces_Heredia = UsePN (mkPN "Heredia") ; + Countries_USA_provinces_California_cities_Lancaster = UsePN (mkPN "Lancaster") ; + Countries_TJ_provinces_Jiangsu_cities_Yixing = UsePN (mkPN "Yixing") ; + Countries_BR_provinces_MatoGrosso = UsePN (mkPN "Mato Grosso") ; + Countries_RO_provinces_Gorj = UsePN (mkPN "Gorj") ; + Countries_S_provinces_Stockholm = UsePN (mkPN "Stockholm") ; + Mountains_MtHood = UsePN (mkPN "Mt Hood") ; + Countries_YV_provinces_Cojedes = UsePN (mkPN "Cojedes") ; + Countries_TJ_provinces_Guangdong_cities_Shantou = UsePN (mkPN "Shantou") ; + Countries_J_provinces_Aichi = UsePN (mkPN "Aichi") ; + Countries_WAN_cities_EffonAlaiye = UsePN (mkPN "Effon Alaiye") ; + Mountains_GuadalupePeak = UsePN (mkPN "Guadalupe Peak") ; + Countries_PL_provinces_Tarnobrzeskie = UsePN (mkPN "Tarnobrzeskie") ; + Countries_I_provinces_TrentinoAltoAdige_cities_Bolzano = UsePN (mkPN "Bolzano") ; + Countries_TJ_provinces_Shandong_cities_Liaocheng = UsePN (mkPN "Liaocheng") ; + Countries_USA_provinces_Illinois_cities_Peoria = UsePN (mkPN "Peoria") ; + Countries_MEX_provinces_Veracruz_cities_XalapaEnriquez = UsePN (mkPN "Xalapa Enriquez") ; + Countries_VN_provinces_BacThai = UsePN (mkPN "Bac Thai") ; + Countries_RO_provinces_Dolj_cities_Craiova = UsePN (mkPN "Craiova") ; + WesternSamoa = UsePN (mkPN "Western Samoa") ; + Kazakstan = UsePN (mkPN "Kazakstan") ; + Countries_BF_cities_Ouagadougou = UsePN (mkPN "Ouagadougou") ; + Countries_TJ_provinces_Liaoning_cities_Tieling = UsePN (mkPN "Tieling") ; + Countries_BR_provinces_Para_cities_Ananindeua = UsePN (mkPN "Ananindeua") ; + Georgia = UsePN (mkPN "Georgia") ; + Senegal = UsePN (mkPN "Senegal") ; + Countries_J_provinces_Kagoshima = UsePN (mkPN "Kagoshima") ; + Islands_NorthCaicos = UsePN (mkPN "North Caicos") ; + Countries_WAN_cities_Lafia = UsePN (mkPN "Lafia") ; + Countries_TJ_provinces_Jiangxi_cities_Xinyu = UsePN (mkPN "Xinyu") ; + Countries_THA_provinces_Trang = UsePN (mkPN "Trang") ; + Countries_AUS_provinces_Victoria_cities_Melbourne = UsePN (mkPN "Melbourne") ; + Countries_TR_provinces_Cankiri = UsePN (mkPN "Cankiri") ; + Islands_Trinidad = UsePN (mkPN "Trinidad") ; + Micronesia = UsePN (mkPN "Micronesia") ; + Organizations_ZC = UsePN (mkPN "Zangger Committee") ; + Countries_E_provinces_BalearicIslands = UsePN (mkPN "Balearic Islands") ; + Countries_BR_provinces_RioGrandedoSul_cities_Canoas = UsePN (mkPN "Canoas") ; + Countries_USA_provinces_Texas_cities_Brownsville = UsePN (mkPN "Brownsville") ; + Countries_MOC_provinces_Sofala_cities_Beira = UsePN (mkPN "Beira") ; + Countries_PE_provinces_Huanuco_cities_Huanuco = UsePN (mkPN "Huanuco") ; + Countries_IND_provinces_Maharashtra_cities_Bhiwandi = UsePN (mkPN "Bhiwandi") ; + Countries_USA_provinces_Texas_cities_ElPaso = UsePN (mkPN "El Paso") ; + Countries_R_provinces_Moskovskayaoblast_cities_Elektrostal = UsePN (mkPN "Elektrostal") ; + Countries_USA_provinces_Virginia_cities_Hampton = UsePN (mkPN "Hampton") ; + Countries_IR_cities_Mehrshahr = UsePN (mkPN "Mehrshahr") ; + Countries_THA_provinces_Phetchaburi = UsePN (mkPN "Phetchaburi") ; + Countries_IND_provinces_Manipur = UsePN (mkPN "Manipur") ; + Countries_VN_provinces_PhuYen = UsePN (mkPN "Phu Yen") ; + Countries_F_provinces_Lorraine_cities_Nancy = UsePN (mkPN "Nancy") ; + Countries_C_provinces_CiudaddelaHabana_cities_Havana = UsePN (mkPN "Havana") ; + Countries_RA_provinces_Formosa = UsePN (mkPN "Formosa") ; + Countries_R_provinces_Ulyanovskayaoblast_cities_Dimitrovgrad = UsePN (mkPN "Dimitrovgrad") ; + Countries_TJ_provinces_Heilongjiang_cities_Jixi = UsePN (mkPN "Jixi") ; + Islands_Oahu = UsePN (mkPN "Oahu") ; + Rivers_RioBalsas = UsePN (mkPN "Rio Balsas") ; + Countries_EAT_provinces_Dodoma_cities_Dodoma = UsePN (mkPN "Dodoma") ; + Countries_EAT_provinces_Shinyanga = UsePN (mkPN "Shinyanga") ; + Countries_EAT_provinces_KaskaziniPemba = UsePN (mkPN "Kaskazini Pemba") ; + Countries_S_provinces_Gotland = UsePN (mkPN "Gotland") ; + Deserts_Dschurab = UsePN (mkPN "Dschurab") ; + Countries_TR_provinces_Mugla = UsePN (mkPN "Mugla") ; + Islands_Bahamas = UsePN (mkPN "Bahamas") ; + Countries_TR_provinces_Canakkale = UsePN (mkPN "Canakkale") ; + Countries_P_provinces_Leiria = UsePN (mkPN "Leiria") ; + Countries_TJ_provinces_Zhejiang_cities_Ningbo = UsePN (mkPN "Ningbo") ; + Countries_H_provinces_Pecs_munic_cities_Pecs = UsePN (mkPN "Pecs") ; + Countries_TJ_provinces_Guangdong_cities_Shanwei = UsePN (mkPN "Shanwei") ; + Countries_BR_provinces_Amapa = UsePN (mkPN "Amapa") ; + Countries_RM_provinces_Antananarivo_cities_Antananarivo = UsePN (mkPN "Antananarivo") ; + Countries_D_provinces_BadenWurttemberg = UsePN (mkPN "Baden Wurttemberg") ; + Countries_BR_provinces_SaoPaulo_cities_Franca = UsePN (mkPN "Franca") ; + Countries_F_provinces_MidiPyrenees = UsePN (mkPN "Midi Pyrenees") ; + Organizations_WIPO = UsePN (mkPN "World Intellectual Property Organization") ; + Countries_NL_provinces_NoordHolland = UsePN (mkPN "Noord Holland") ; + Countries_ET_provinces_Dumyat_cities_Dumyat = UsePN (mkPN "Dumyat") ; + Rivers_Klaraelv = UsePN (mkPN "Klaraelv") ; + Countries_THA_provinces_SamutPrakan = UsePN (mkPN "Samut Prakan") ; + Deserts_ArabianDesert = UsePN (mkPN "Arabian Desert") ; + Countries_VN_cities_VietTri = UsePN (mkPN "Viet Tri") ; + Barbados = UsePN (mkPN "Barbados") ; + Countries_RCH_cities_Valparaiso = UsePN (mkPN "Valparaiso") ; + Countries_SUD_provinces_alIstiwaiyah = UsePN (mkPN "al Istiwaiyah") ; + Countries_USA_provinces_Oklahoma_cities_Tulsa = UsePN (mkPN "Tulsa") ; + Countries_RSA_cities_Khayalitsha = UsePN (mkPN "Khayalitsha") ; + Countries_IR_provinces_Khorasan_cities_Mashhad = UsePN (mkPN "Mashhad") ; + Rivers_Rufiji = UsePN (mkPN "Rufiji") ; + Countries_PK_cities_Sahiwal = UsePN (mkPN "Sahiwal") ; + Organizations_WTrO = UsePN (mkPN "World Trade Organization") ; + Countries_I_provinces_Molise = UsePN (mkPN "Molise") ; + Countries_CO_provinces_Cauca_cities_Popayan = UsePN (mkPN "Popayan") ; + Countries_UAE_provinces_Dubayy = UsePN (mkPN "Dubayy") ; + Lithuania = UsePN (mkPN "Lithuania") ; + Countries_ZRE_provinces_KasaiOriental_cities_MweneDitu = UsePN (mkPN "Mwene Ditu") ; + Countries_MAL_provinces_Sabah_cities_Tawai = UsePN (mkPN "Tawai") ; + Countries_BR_provinces_Goias_cities_Goiania = UsePN (mkPN "Goiania") ; + Countries_GB_provinces_WestYorkshire_cities_Bradford = UsePN (mkPN "Bradford") ; + Islands_Fidschi = UsePN (mkPN "Fidschi") ; + Organizations_UNPREDEP = UsePN (mkPN "United Nations Preventive Deployment Force") ; + Countries_TJ_provinces_XinjiangUygur_cities_Karamay = UsePN (mkPN "Karamay") ; + Countries_D_provinces_RheinlandPfalz_cities_Ludwigshafen = UsePN (mkPN "Ludwigshafen") ; + Countries_NOK_cities_Wonsan = UsePN (mkPN "Wonsan") ; + Countries_MEX_provinces_QuintanaRoo = UsePN (mkPN "Quintana Roo") ; + Countries_BR_provinces_Ceara_cities_Fortaleza = UsePN (mkPN "Fortaleza") ; + Countries_GB_provinces_ValeofGlamorgan_cities_Barry = UsePN (mkPN "Barry") ; + Countries_cid_cia_Turks_and_Caicos_Islands_cities_GrandTurk = UsePN (mkPN "Grand Turk") ; + Countries_D_provinces_Bayern_cities_Erlangen = UsePN (mkPN "Erlangen") ; + Countries_D_provinces_NordrheinWestfalen_cities_Koln = UsePN (mkPN "Koln") ; + Countries_BD_cities_Tongi = UsePN (mkPN "Tongi") ; + Countries_MOC_provinces_Niassa_cities_Lichinga = UsePN (mkPN "Lichinga") ; + Countries_CH_provinces_BS = UsePN (mkPN "BS") ; + Countries_F_provinces_Auvergne_cities_ClermontFerrand = UsePN (mkPN "Clermont Ferrand") ; + Countries_RI_cities_Bogor = UsePN (mkPN "Bogor") ; + Countries_EAU_cities_Kampala = UsePN (mkPN "Kampala") ; + Countries_GB_provinces_TyneandWear_cities_Sunderland = UsePN (mkPN "Sunderland") ; + Countries_USA_provinces_California_cities_SantaRosa = UsePN (mkPN "Santa Rosa") ; + Countries_TJ_provinces_Zhejiang_cities_Wenzhou = UsePN (mkPN "Wenzhou") ; + Countries_EAT_provinces_MjiniMagharibi_cities_Zanzibar = UsePN (mkPN "Zanzibar") ; + Countries_TJ_provinces_Shandong_cities_Weihai = UsePN (mkPN "Weihai") ; + Countries_R_provinces_Rep_ofKhakassiya_cities_Abakan = UsePN (mkPN "Abakan") ; + Islands_Palau = UsePN (mkPN "Palau") ; + Islands_Guadeloupe = UsePN (mkPN "Guadeloupe") ; + Countries_THA_provinces_PhraNakhonSiAyutthaya = UsePN (mkPN "Phra Nakhon Si Ayutthaya") ; + Countries_NL_provinces_Gelderland = UsePN (mkPN "Gelderland") ; + Mountains_CathkinPeak = UsePN (mkPN "Cathkin Peak") ; + Countries_MEX_provinces_Morelos = UsePN (mkPN "Morelos") ; + Mountains_MtElbert = UsePN (mkPN "Mt Elbert") ; + Countries_TR_provinces_Adana_cities_Adana = UsePN (mkPN "Adana") ; + Countries_PA_provinces_BocasdelToro_cities_BocasdelToro = UsePN (mkPN "Bocas del Toro") ; + Countries_CO_provinces_Risaralda_cities_Pereira = UsePN (mkPN "Pereira") ; + Countries_BR_provinces_Parana_cities_PontaGrossa = UsePN (mkPN "Ponta Grossa") ; + Countries_GB_provinces_Buckinghamshire = UsePN (mkPN "Buckinghamshire") ; + Countries_PE_provinces_Ica_cities_Ica = UsePN (mkPN "Ica") ; + Countries_USA_provinces_Louisiana_cities_Lafayette = UsePN (mkPN "Lafayette") ; + Countries_VN_provinces_BaRiaVungTau = UsePN (mkPN "Ba Ria Vung Tau") ; + Countries_F_provinces_NordPasdeCalais_cities_Lille = UsePN (mkPN "Lille") ; + Countries_CH_provinces_TI_cities_Bellinzona = UsePN (mkPN "Bellinzona") ; + Countries_RC_provinces_Miaoli = UsePN (mkPN "Miaoli") ; + Countries_F_provinces_PaysdelaLoire = UsePN (mkPN "Pays de la Loire") ; + Countries_TR_provinces_Usak = UsePN (mkPN "Usak") ; + Countries_GB_provinces_Shropshire = UsePN (mkPN "Shropshire") ; + Countries_RA_provinces_Cordoba_cities_Cordoba = UsePN (mkPN "Cordoba") ; + Countries_TR_provinces_Bingol_cities_Bingol = UsePN (mkPN "Bingol") ; + Countries_USA_provinces_California_cities_Palmdale = UsePN (mkPN "Palmdale") ; + Countries_N_provinces_VestAgder_cities_Kristiansand = UsePN (mkPN "Kristiansand") ; + Countries_SLB_cities_Honiara = UsePN (mkPN "Honiara") ; + Countries_VN_provinces_MinhHai = UsePN (mkPN "Minh Hai") ; + Countries_RSA_provinces_FreeState = UsePN (mkPN "Free State") ; + Countries_TJ_provinces_Zhejiang_cities_Hangzhou = UsePN (mkPN "Hangzhou") ; + Countries_VN_provinces_NorthEastSouth = UsePN (mkPN "North East South") ; + Countries_TJ_provinces_Hunan_cities_Yueyang = UsePN (mkPN "Yueyang") ; + Countries_CZ_provinces_Severocesky_cities_UstinadLabem = UsePN (mkPN "Usti nad Labem") ; + Countries_USA_provinces_Tennessee = UsePN (mkPN "Tennessee") ; + Countries_TJ_provinces_Hunan_cities_Zixing = UsePN (mkPN "Zixing") ; + Countries_GB_provinces_Gwynedd = UsePN (mkPN "Gwynedd") ; + Countries_MEX_provinces_Chihuahua_cities_Chihuahua = UsePN (mkPN "Chihuahua") ; + Organizations_AMU = UsePN (mkPN "Arab Maghreb Union") ; + Countries_ROK_cities_Seoul = UsePN (mkPN "Seoul") ; + Organizations_ECE = UsePN (mkPN "Economic Commission for Europe") ; + Countries_NEP_cities_Kathmandu = UsePN (mkPN "Kathmandu") ; + Countries_USA_provinces_Georgia_cities_Macon = UsePN (mkPN "Macon") ; + Countries_PL_provinces_Plockie_cities_Plock = UsePN (mkPN "Plock") ; + Countries_GB_provinces_Norfolk_cities_Norwich = UsePN (mkPN "Norwich") ; + Countries_VN_provinces_ThanhHoa = UsePN (mkPN "Thanh Hoa") ; + Countries_BR_provinces_SaoPaulo_cities_RioClaro = UsePN (mkPN "Rio Claro") ; + Organizations_UNMOT = UsePN (mkPN "United Nations Mission of Observers in Tajikistan") ; + Countries_YV_provinces_Apure = UsePN (mkPN "Apure") ; + Countries_TJ_provinces_Gansu_cities_Tianshui = UsePN (mkPN "Tianshui") ; + Gabon = UsePN (mkPN "Gabon") ; + Countries_GB_provinces_NorthernIreland_cities_Belfast = UsePN (mkPN "Belfast") ; + Nauru = UsePN (mkPN "Nauru") ; + Countries_RM_provinces_Toliary = UsePN (mkPN "Toliary") ; + Countries_cid_cia_Puerto_Rico_cities_SanJuan = UsePN (mkPN "San Juan") ; + Countries_ZRE_provinces_Bandundu_cities_Kikwit = UsePN (mkPN "Kikwit") ; + Countries_HCA_provinces_FranciscoMorazan = UsePN (mkPN "Francisco Morazan") ; + Countries_E_provinces_Galicia = UsePN (mkPN "Galicia") ; + Countries_PA_provinces_Herrera_cities_Chitre = UsePN (mkPN "Chitre") ; + Countries_TJ_provinces_Jilin = UsePN (mkPN "Jilin") ; + Countries_GB_provinces_Ceredigion_cities_Aberystwyth = UsePN (mkPN "Aberystwyth") ; + Countries_R_provinces_Rep_ofBashkortostan_cities_Ufa = UsePN (mkPN "Ufa") ; + Countries_I_provinces_Basilicata_cities_Potenza = UsePN (mkPN "Potenza") ; + Countries_RSA_provinces_KwazuluNatal_cities_Pietermaritzburg = UsePN (mkPN "Pietermaritzburg") ; + Countries_IND_provinces_Maharashtra_cities_Pune = UsePN (mkPN "Pune") ; + Rivers_Ob = UsePN (mkPN "Ob") ; + Organizations_WADB = UsePN (mkPN "West African Development Bank") ; + Countries_EAK_provinces_Eastern_cities_Embu = UsePN (mkPN "Embu") ; + Countries_PL_provinces_Tarnowskie = UsePN (mkPN "Tarnowskie") ; + Countries_UAE_cities_AlAyn = UsePN (mkPN "Al Ayn") ; + Countries_BR_provinces_Sergipe_cities_Aracaju = UsePN (mkPN "Aracaju") ; + Organizations_G_24 = UsePN (mkPN "Group of 24") ; + Countries_BR_provinces_RiodeJaneiro_cities_SaoGoncalo = UsePN (mkPN "Sao Goncalo") ; + Countries_I_provinces_Marche_cities_Ancona = UsePN (mkPN "Ancona") ; + Countries_IND_provinces_Goa_cities_Panaji = UsePN (mkPN "Panaji") ; + Countries_USA_provinces_Michigan = UsePN (mkPN "Michigan") ; + Deserts_Mujunkum = UsePN (mkPN "Mujunkum") ; + Countries_TR_provinces_Tunceli_cities_Tunceli = UsePN (mkPN "Tunceli") ; + Rivers_NorthernDwina = UsePN (mkPN "Northern Dwina") ; + Countries_PL_provinces_Tarnowskie_cities_Tarnow = UsePN (mkPN "Tarnow") ; + Countries_A_provinces_Vorarlberg = UsePN (mkPN "Vorarlberg") ; + Islands_Kauai = UsePN (mkPN "Kauai") ; + Countries_D_provinces_NordrheinWestfalen_cities_Remscheid = UsePN (mkPN "Remscheid") ; + Indonesia = UsePN (mkPN "Indonesia") ; + Countries_RSA_provinces_WesternCape_cities_CapeTown = UsePN (mkPN "Cape Town") ; + Countries_YV_provinces_Falcon_cities_Coro = UsePN (mkPN "Coro") ; + Countries_MEX_provinces_Chiapas = UsePN (mkPN "Chiapas") ; + Islands_Benbecula = UsePN (mkPN "Benbecula") ; + Countries_PL_provinces_Legnickie_cities_Legnica = UsePN (mkPN "Legnica") ; + Countries_THA_provinces_Songkhla_cities_Songkhla = UsePN (mkPN "Songkhla") ; + Countries_RA_provinces_RioNegro_cities_Viedma = UsePN (mkPN "Viedma") ; + Countries_PL_provinces_Lubelskie = UsePN (mkPN "Lubelskie") ; + Greece = UsePN (mkPN "Greece") ; + Countries_IND_provinces_MadhyaPradesh_cities_Bhopal = UsePN (mkPN "Bhopal") ; + Countries_H_provinces_BorsodAbaujZemplen = UsePN (mkPN "Borsod Abauj Zemplen") ; + Countries_PE_provinces_Ancash_cities_Huaraz = UsePN (mkPN "Huaraz") ; + Countries_CO_provinces_SantaFedeBogota_DC = UsePN (mkPN "Santa Fe de Bogota, DC") ; + Countries_IRQ_provinces_AlQadisiyah = UsePN (mkPN "Al Qadisiyah") ; + Countries_TR_provinces_Icel_cities_Mersin = UsePN (mkPN "Mersin") ; + Countries_cid_cia_Anguilla_cities_TheValley = UsePN (mkPN "The Valley") ; + Countries_UA_provinces_Kirovohradska = UsePN (mkPN "Kirovohradska") ; + Malta = UsePN (mkPN "Malta") ; + Countries_RMM_cities_Bamako = UsePN (mkPN "Bamako") ; + Countries_R_provinces_Kirovskayaoblast = UsePN (mkPN "Kirovskaya oblast") ; + Countries_R_provinces_Irkutskayaoblast_cities_Angarsk = UsePN (mkPN "Angarsk") ; + Countries_USA_provinces_Missouri_cities_Springfield = UsePN (mkPN "Springfield") ; + Libya = UsePN (mkPN "Libya") ; + Countries_UZB_provinces_Qasqadare_cities_Qarshi = UsePN (mkPN "Qarshi") ; + Countries_CO_provinces_Choco = UsePN (mkPN "Choco") ; + Countries_NL_provinces_NoordBrabant_cities_Breda = UsePN (mkPN "Breda") ; + Islands_Madagaskar = UsePN (mkPN "Madagaskar") ; + Countries_RI_cities_PekanBaru = UsePN (mkPN "Pekan Baru") ; + Organizations_UNIFIL = UsePN (mkPN "United Nations Interim Force in Lebanon") ; + Countries_NIC_cities_Chinandega = UsePN (mkPN "Chinandega") ; + Countries_YV_provinces_Carabobo_cities_Guacara = UsePN (mkPN "Guacara") ; + Countries_R_provinces_Chelyabinskayaoblast_cities_Chelyabinsk = UsePN (mkPN "Chelyabinsk") ; + Countries_GB_provinces_HerefordandWorcester = UsePN (mkPN "Hereford and Worcester") ; + Countries_MEX_provinces_Veracruz_cities_PozaRica = UsePN (mkPN "Poza Rica") ; + Countries_R_provinces_Rostovskayaoblast_cities_RostovnaDonu = UsePN (mkPN "Rostov na Donu") ; + Countries_M_cities_Valletta = UsePN (mkPN "Valletta") ; + Countries_TJ_provinces_Heilongjiang_cities_Harbin = UsePN (mkPN "Harbin") ; + Countries_GR_provinces_Attiki_cities_Athens = UsePN (mkPN "Athens") ; + Rivers_Bija = UsePN (mkPN "Bija") ; + Vanuatu = UsePN (mkPN "Vanuatu") ; + Mountains_Illampu = UsePN (mkPN "Illampu") ; + Countries_UAE_cities_AbuDhabi = UsePN (mkPN "Abu Dhabi") ; + Countries_TR_provinces_Agri_cities_Agri = UsePN (mkPN "Agri") ; + Countries_TR_provinces_Manisa = UsePN (mkPN "Manisa") ; + Countries_J_provinces_Hiroshima = UsePN (mkPN "Hiroshima") ; + Countries_PL_provinces_Elblaskie_cities_Elblag = UsePN (mkPN "Elblag") ; + Countries_ET_provinces_ElFaiyum = UsePN (mkPN "El Faiyum") ; + Countries_I_provinces_Veneto_cities_Padova = UsePN (mkPN "Padova") ; + Countries_RC_provinces_Hsinchu_munic = UsePN (mkPN "Hsinchu (munic.)") ; + Countries_R_provinces_Samarskayaoblast = UsePN (mkPN "Samarskaya oblast") ; + Countries_ET_provinces_ElBahrelAhmar_cities_Hurghada = UsePN (mkPN "Hurghada") ; + Rivers_Volta = UsePN (mkPN "Volta") ; + Lakes_LakeLeopold_II = UsePN (mkPN "Lake Leopold-II") ; + Countries_UZB_provinces_Namangan_cities_Namangan = UsePN (mkPN "Namangan") ; + Countries_J_provinces_Yamaguchi = UsePN (mkPN "Yamaguchi") ; + Countries_CDN_provinces_Alberta_cities_Edmonton = UsePN (mkPN "Edmonton") ; + Countries_IND_provinces_Maharashtra_cities_Bombay = UsePN (mkPN "Bombay") ; + UnitedStates = UsePN (mkPN "United States") ; + Countries_I_provinces_EmiliaRomagna_cities_Bologna = UsePN (mkPN "Bologna") ; + Countries_I_provinces_Lazio_cities_Latina = UsePN (mkPN "Latina") ; + Countries_UZB_provinces_Toshkent_cities_Angren = UsePN (mkPN "Angren") ; + Rivers_Syrdarja = UsePN (mkPN "Syrdarja") ; + Organizations_WFTU = UsePN (mkPN "World Federation of Trade Unions") ; + Deserts_SimpsonDesert = UsePN (mkPN "Simpson Desert") ; + Countries_MEX_provinces_Jalisco_cities_Tlaquepaque = UsePN (mkPN "Tlaquepaque") ; + Countries_KAZ_provinces_Aqtobe_cities_Aqtobe = UsePN (mkPN "Aqtobe") ; + Countries_UA_provinces_Kyyivska_cities_Kiev = UsePN (mkPN "Kiev") ; + Countries_WD_cities_Roseau = UsePN (mkPN "Roseau") ; + Countries_BR_provinces_RioGrandedoSul_cities_Pelotas = UsePN (mkPN "Pelotas") ; + Countries_MAL_provinces_PulauPinang = UsePN (mkPN "Pulau Pinang") ; + Islands_Tiree = UsePN (mkPN "Tiree") ; + Countries_EAT_provinces_Tanga_cities_Tanga = UsePN (mkPN "Tanga") ; + Countries_IND_provinces_JammuandKashmir = UsePN (mkPN "Jammu and Kashmir") ; + Countries_CDN_provinces_Saskatchewan_cities_Saskatoon = UsePN (mkPN "Saskatoon") ; + Countries_F_provinces_RhoneAlpes_cities_Lyon = UsePN (mkPN "Lyon") ; + Countries_TJ_provinces_Hubei_cities_Huangshi = UsePN (mkPN "Huangshi") ; + Countries_GB_provinces_Cambridgeshire_cities_Huntingdon = UsePN (mkPN "Huntingdon") ; + Countries_USA_provinces_Washington_cities_Tacoma = UsePN (mkPN "Tacoma") ; + Countries_IND_provinces_Goa = UsePN (mkPN "Goa") ; + Countries_F_provinces_ProvenceCotedAzur_cities_Marseille = UsePN (mkPN "Marseille") ; + Countries_MA_cities_Meknes = UsePN (mkPN "Meknes") ; + Countries_USA_provinces_California_cities_Fremont = UsePN (mkPN "Fremont") ; + Countries_R_provinces_Tyumenskayaoblast_cities_Tyumen = UsePN (mkPN "Tyumen") ; + Countries_CO_provinces_Narino_cities_Pasto = UsePN (mkPN "Pasto") ; + Countries_TJ_provinces_Jilin_cities_Siping = UsePN (mkPN "Siping") ; + Countries_IR_provinces_Tehran = UsePN (mkPN "Tehran") ; + Countries_BR_provinces_MinasGerais_cities_SeteLagoas = UsePN (mkPN "Sete Lagoas") ; + Countries_BR_provinces_Bahia = UsePN (mkPN "Bahia") ; + Countries_TR_provinces_Gaziantep = UsePN (mkPN "Gaziantep") ; + Countries_USA_provinces_Delaware = UsePN (mkPN "Delaware") ; + Countries_THA_provinces_SiSaKet = UsePN (mkPN "Si Sa Ket") ; + Countries_cid_cia_Spratly_Islands = UsePN (mkPN "Spratly Islands") ; + Countries_TR_provinces_Diyarbakir = UsePN (mkPN "Diyarbakir") ; + Countries_RA_provinces_SantaFe_cities_SantaFe = UsePN (mkPN "Santa Fe") ; + Countries_UZB_provinces_Nawoiy_cities_Nawoiy = UsePN (mkPN "Nawoiy") ; + Countries_RO_provinces_Vilcea = UsePN (mkPN "Vilcea") ; + Countries_N_provinces_Troms_cities_Tromsoe = UsePN (mkPN "Tromsoe") ; + Countries_CO_provinces_Risaralda_cities_Dosquebradas = UsePN (mkPN "Dosquebradas") ; + Countries_MEX_provinces_Zacatecas = UsePN (mkPN "Zacatecas") ; + Mountains_PikLenina = UsePN (mkPN "Pik Lenina") ; + Countries_EAK_provinces_Eastern_cities_Meru = UsePN (mkPN "Meru") ; + Countries_CDN_provinces_Ontario_cities_EastYork = UsePN (mkPN "East York") ; + SaintKittsAndNevis = UsePN (mkPN "Saint Kitts and Nevis") ; + Countries_S_provinces_Malmohus_cities_Malmo = UsePN (mkPN "Malmo") ; + Countries_CR_provinces_Cartago_cities_Cartago = UsePN (mkPN "Cartago") ; + Countries_WL_cities_Castries = UsePN (mkPN "Castries") ; + Countries_TR_provinces_Bingol = UsePN (mkPN "Bingol") ; + Countries_cid_cia_Virgin_Islands = UsePN (mkPN "Virgin Islands") ; + Countries_ZRE_provinces_Bandundu_cities_Bandundu = UsePN (mkPN "Bandundu") ; + Countries_MEX_provinces_Mexico_Estadode_cities_TolucadeLerdo = UsePN (mkPN "Toluca de Lerdo") ; + Countries_J_provinces_Fukui = UsePN (mkPN "Fukui") ; + Countries_PL_provinces_Katowickie_cities_Chorzow = UsePN (mkPN "Chorzow") ; + Countries_USA_provinces_Texas_cities_CorpusChristi = UsePN (mkPN "Corpus Christi") ; + Rivers_Umeaelv = UsePN (mkPN "Umeaelv") ; + Countries_TJ_provinces_Hainan_cities_Haikou = UsePN (mkPN "Haikou") ; + Countries_D_provinces_Bremen_cities_Bremen = UsePN (mkPN "Bremen") ; + Countries_YV_provinces_NuevaEsparta_cities_LaAscuncion = UsePN (mkPN "La Ascuncion") ; + Mountains_Zugspitze = UsePN (mkPN "Zugspitze") ; + Countries_IND_provinces_Bihar_cities_Ranchi = UsePN (mkPN "Ranchi") ; + Countries_CO_provinces_Sucre = UsePN (mkPN "Sucre") ; + Countries_WAN_cities_Mushin = UsePN (mkPN "Mushin") ; + Lakes_OzeroBaikal = UsePN (mkPN "Ozero Baikal") ; + Countries_CZ_provinces_Vychodocesky = UsePN (mkPN "Vychodocesky") ; + Countries_H_provinces_Fejer_cities_Szekesfehervar = UsePN (mkPN "Szekesfehervar") ; + Countries_WAN_cities_Shomolu = UsePN (mkPN "Shomolu") ; + Countries_IND_provinces_Karnataka = UsePN (mkPN "Karnataka") ; + Organizations_CEI = UsePN (mkPN "Central European Initiative") ; + Countries_D_provinces_Hamburg = UsePN (mkPN "Hamburg") ; + Countries_MEX_provinces_Coahuila_cities_Torreon = UsePN (mkPN "Torreon") ; + Countries_MNG_cities_Ulaanbaatar = UsePN (mkPN "Ulaanbaatar") ; + Countries_R_provinces_Saratovskayaoblast_cities_Saratov = UsePN (mkPN "Saratov") ; + Countries_UZB_provinces_Khorazm_cities_Urganch = UsePN (mkPN "Urganch") ; + Countries_USA_provinces_Washington_cities_Seattle = UsePN (mkPN "Seattle") ; + Countries_RA_provinces_BuenosAires_cities_VicenteLopez = UsePN (mkPN "Vicente Lopez") ; + Countries_Z_provinces_Central = UsePN (mkPN "Central") ; + India = UsePN (mkPN "India") ; + Organizations_UNPROFOR = UsePN (mkPN "United Nations Protection Force") ; + Syria = UsePN (mkPN "Syria") ; + Countries_TR_provinces_Adana_cities_Osmaniye = UsePN (mkPN "Osmaniye") ; + Organizations_Mercosur = UsePN (mkPN "Southern Cone Common Market") ; + Countries_RSA_cities_Evaton = UsePN (mkPN "Evaton") ; + Countries_BR_provinces_RioGrandedoSul_cities_SantaMaria = UsePN (mkPN "Santa Maria") ; + Countries_MEX_provinces_Tamaulipas_cities_CiudadVictoria = UsePN (mkPN "Ciudad Victoria") ; + Organizations_ANC = UsePN (mkPN "North Atlantic Cooperation Council") ; + Countries_EAK_provinces_Central = UsePN (mkPN "Central") ; + Organizations_CEEAC = UsePN (mkPN "Economic Community of Central African States") ; + Countries_UA_provinces_Donetska_cities_Horlivka = UsePN (mkPN "Horlivka") ; + Countries_ES_provinces_Usulutan = UsePN (mkPN "Usulutan") ; + Countries_IR_provinces_Khuzestan_cities_MasjedeSoleyman = UsePN (mkPN "Masjed e Soleyman") ; + Countries_P_provinces_Guarda = UsePN (mkPN "Guarda") ; + Rivers_Bahrel_Djebel = UsePN (mkPN "Bahr el-Djebel") ; + Countries_TJ_provinces_Jilin_cities_Meihekou = UsePN (mkPN "Meihekou") ; + Countries_KIR_cities_Tarawa = UsePN (mkPN "Tarawa") ; + Countries_IND_provinces_Gujarat_cities_Gandhinagar = UsePN (mkPN "Gandhinagar") ; + Countries_SF_provinces_Turku_Pori_cities_Turku = UsePN (mkPN "Turku") ; + Countries_CDN_provinces_Newfoundland = UsePN (mkPN "Newfoundland") ; + Countries_RA_provinces_LaRioja_cities_LaRioja = UsePN (mkPN "La Rioja") ; + Countries_SN_provinces_Ziguinchor_cities_Ziguinchor = UsePN (mkPN "Ziguinchor") ; + Countries_UA_provinces_Luhanska = UsePN (mkPN "Luhanska") ; + Countries_R_provinces_Magadanskayaoblast = UsePN (mkPN "Magadanskaya oblast") ; + Countries_PE_provinces_Moquegua = UsePN (mkPN "Moquegua") ; + Islands_Malta = UsePN (mkPN "Malta") ; + Countries_S_provinces_Vastmanland = UsePN (mkPN "Vastmanland") ; + Countries_D_provinces_NordrheinWestfalen_cities_Bonn = UsePN (mkPN "Bonn") ; + Malaysia = UsePN (mkPN "Malaysia") ; + Countries_USA_provinces_California = UsePN (mkPN "California") ; + Countries_YV_provinces_NuevaEsparta = UsePN (mkPN "Nueva Esparta") ; + Countries_PA_provinces_Darien = UsePN (mkPN "Darien") ; + Countries_USA_provinces_Illinois_cities_Aurora = UsePN (mkPN "Aurora") ; + Countries_F_provinces_ProvenceCotedAzur_cities_Nice = UsePN (mkPN "Nice") ; + Countries_RC_provinces_Taichung_munic = UsePN (mkPN "Taichung (munic.)") ; + Countries_MEX_provinces_Veracruz_cities_Minatitlan = UsePN (mkPN "Minatitlan") ; + Countries_EAT_provinces_Tabora = UsePN (mkPN "Tabora") ; + Countries_GB_provinces_Humberside_cities_Hull = UsePN (mkPN "Hull") ; + Countries_TJ_provinces_Hubei_cities_Wuhan = UsePN (mkPN "Wuhan") ; + Countries_ETH_cities_Harer = UsePN (mkPN "Harer") ; + Countries_USA_provinces_California_cities_Hayward = UsePN (mkPN "Hayward") ; + Lakes_LakeMaracaibo = UsePN (mkPN "Lake Maracaibo") ; + Countries_cid_cia_Northern_Mariana_Islands_cities_Saipan = UsePN (mkPN "Saipan") ; + Countries_R_provinces_Saratovskayaoblast_cities_Balakovo = UsePN (mkPN "Balakovo") ; + Countries_ZRE_provinces_KasaiOccidental_cities_Kananga = UsePN (mkPN "Kananga") ; + Countries_MOC_provinces_Gaza_cities_XaiXai = UsePN (mkPN "Xai Xai") ; + Organizations_SPC = UsePN (mkPN "South Pacific Commission") ; + Countries_USA_provinces_NorthDakota_cities_Bismarck = UsePN (mkPN "Bismarck") ; + Countries_NL_provinces_Utrecht = UsePN (mkPN "Utrecht") ; + Countries_MYA_provinces_Chin = UsePN (mkPN "Chin") ; + Countries_GB_provinces_Avon = UsePN (mkPN "Avon") ; + Countries_I_provinces_EmiliaRomagna_cities_Rimini = UsePN (mkPN "Rimini") ; + Countries_BR_provinces_SantaCatarina_cities_Criciuma = UsePN (mkPN "Criciuma") ; + Countries_ES_provinces_SanSalvador = UsePN (mkPN "San Salvador") ; + Countries_E_provinces_CastileandLeon_cities_Albacete = UsePN (mkPN "Albacete") ; + Countries_H_provinces_Baranya = UsePN (mkPN "Baranya") ; + Countries_VN_provinces_KhanhHoa = UsePN (mkPN "Khanh Hoa") ; + Countries_R_provinces_Yevreyskayaavt_oblast = UsePN (mkPN "Yevreyskaya avt. oblast") ; + Countries_R_provinces_Moskovskayaoblast_cities_Kolomna = UsePN (mkPN "Kolomna") ; + Countries_E_provinces_CastileandLeon = UsePN (mkPN "Castile and Leon") ; + Countries_GB_provinces_Durham_cities_Durham = UsePN (mkPN "Durham") ; + Countries_RO_provinces_Timis_cities_Timisoara = UsePN (mkPN "Timisoara") ; + Countries_cid_cia_British_Indian_Ocean_Territory = UsePN (mkPN "British Indian Ocean Territory") ; + Countries_GB_provinces_Northamptonshire_cities_Northampton = UsePN (mkPN "Northampton") ; + Islands_Menorca = UsePN (mkPN "Menorca") ; + Countries_IRQ_provinces_Ninawa_cities_AlMawsil = UsePN (mkPN "Al Mawsil") ; + Countries_TJ_provinces_XinjiangUygur_cities_Yining = UsePN (mkPN "Yining") ; + Countries_R_provinces_Rostovskayaoblast_cities_Novocherkassk = UsePN (mkPN "Novocherkassk") ; + Countries_CZ_provinces_Praha_cities_Prague = UsePN (mkPN "Prague") ; + Countries_IR_provinces_Hormozgan_cities_BandarAbbas = UsePN (mkPN "Bandar Abbas") ; + Countries_PL_provinces_Piotrkowskie_cities_PiottrkowTrybunalski = UsePN (mkPN "Piottrkow Trybunalski") ; + Countries_USA_provinces_Mississippi = UsePN (mkPN "Mississippi") ; + Countries_CO_provinces_Atlantico_cities_Malambo = UsePN (mkPN "Malambo") ; + Countries_USA_provinces_Florida_cities_CoralSprings = UsePN (mkPN "Coral Springs") ; + Countries_TJ_provinces_Heilongjiang_cities_Shuangcheng = UsePN (mkPN "Shuangcheng") ; + Countries_KAZ_provinces_Zhezkazghan = UsePN (mkPN "Zhezkazghan") ; + Countries_IND_provinces_Pondicherry_cities_Pondicherry = UsePN (mkPN "Pondicherry") ; + Countries_VN_provinces_DongNai = UsePN (mkPN "Dong Nai") ; + Countries_THA_provinces_NakhonSiThammarat_cities_NakhonsiThammarat = UsePN (mkPN "Nakhon si Thammarat") ; + Countries_USA_provinces_NorthCarolina_cities_Charlotte = UsePN (mkPN "Charlotte") ; + Countries_R_provinces_Tverskayaoblast = UsePN (mkPN "Tverskaya oblast") ; + Countries_USA_provinces_Ohio_cities_Columbus = UsePN (mkPN "Columbus") ; + Countries_PL_provinces_Radomskie_cities_Radom = UsePN (mkPN "Radom") ; + Countries_SF_provinces_Suomi = UsePN (mkPN "Suomi") ; + Countries_RI_cities_Tegal = UsePN (mkPN "Tegal") ; + Countries_RCA_cities_Bangui = UsePN (mkPN "Bangui") ; + Countries_J_provinces_Hokkaido = UsePN (mkPN "Hokkaido") ; + Countries_Z_provinces_Southern_cities_Livingstone = UsePN (mkPN "Livingstone") ; + Countries_USA_provinces_Idaho_cities_Boise = UsePN (mkPN "Boise") ; + Countries_AUS_provinces_Kirimati_cities_FlyingFishCove = UsePN (mkPN "Flying Fish Cove") ; + Islands_CaymanBrac = UsePN (mkPN "Cayman Brac") ; + Countries_MEX_cities_SanPedroGarzaGarcia = UsePN (mkPN "San Pedro Garza Garcia") ; + Islands_GrandCaicos = UsePN (mkPN "Grand Caicos") ; + Countries_IRQ_provinces_Babil_cities_AlHillah = UsePN (mkPN "Al Hillah") ; + Countries_TJ_provinces_Guangdong_cities_Zhongshan = UsePN (mkPN "Zhongshan") ; + Countries_PL_provinces_Sieradzkie_cities_Sieradz = UsePN (mkPN "Sieradz") ; + Countries_NL_provinces_Utrecht_cities_Utrecht = UsePN (mkPN "Utrecht") ; + Countries_IRQ_provinces_DhiQar_cities_AnNasiriyah = UsePN (mkPN "An Nasiriyah") ; + Countries_TR_provinces_Trabzon = UsePN (mkPN "Trabzon") ; + Mexico = UsePN (mkPN "Mexico") ; + Countries_TAD_provinces_BadakhshoniKuni = UsePN (mkPN "Badakhshoni Kuni") ; + Countries_PL_provinces_Koszalinskie = UsePN (mkPN "Koszalinskie") ; + Countries_TJ_provinces_Sichuan_cities_Zigong = UsePN (mkPN "Zigong") ; + Countries_E_provinces_CanaryIslands_cities_SantaCruzdeTenerife = UsePN (mkPN "Santa Cruz de Tenerife") ; + Countries_MEX_provinces_Tlaxcala = UsePN (mkPN "Tlaxcala") ; + Seas_SouthChinaSea = UsePN (mkPN "South China Sea") ; + Countries_C_provinces_Camaguey = UsePN (mkPN "Camaguey") ; + Countries_TR_provinces_Erzincan = UsePN (mkPN "Erzincan") ; + Countries_USA_provinces_Virginia_cities_Norfolk = UsePN (mkPN "Norfolk") ; + Countries_IND_provinces_AndhraPradesh_cities_Vishakhapatnam = UsePN (mkPN "Vishakhapatnam") ; + Countries_TJ_provinces_Fujian_cities_Nanping = UsePN (mkPN "Nanping") ; + Countries_S_provinces_Jamtland_cities_Ostersund = UsePN (mkPN "Ostersund") ; + Organizations_UNITAR = UsePN (mkPN "United Nations Institute for Training and Research") ; + Countries_cid_cia_Cocos_Islands_cities_WestIsland = UsePN (mkPN "West Island") ; + Countries_CO_provinces_Antioquia_cities_Medellin = UsePN (mkPN "Medellin") ; + Countries_I_provinces_Veneto = UsePN (mkPN "Veneto") ; + Countries_IND_provinces_UttarPradesh_cities_Meerut = UsePN (mkPN "Meerut") ; + Countries_THA_provinces_ChonBuri = UsePN (mkPN "Chon Buri") ; + Countries_F_provinces_Lorraine_cities_Metz = UsePN (mkPN "Metz") ; + Countries_PK_cities_Gujranwala = UsePN (mkPN "Gujranwala") ; + Countries_PE_provinces_Pasco = UsePN (mkPN "Pasco") ; + Countries_MEX_provinces_Guerrero_cities_Acapulco = UsePN (mkPN "Acapulco") ; + Countries_TR_provinces_Kayseri_cities_Kayseri = UsePN (mkPN "Kayseri") ; + Countries_R_provinces_Ivanovskayaoblast_cities_Kineshma = UsePN (mkPN "Kineshma") ; + Countries_TJ_provinces_Anhui_cities_Bengbu = UsePN (mkPN "Bengbu") ; + Countries_EAK_provinces_RiftValley = UsePN (mkPN "Rift Valley") ; + Countries_R_provinces_Lipetskayaoblast_cities_Yelets = UsePN (mkPN "Yelets") ; + Countries_N_provinces_Nordland = UsePN (mkPN "Nordland") ; + Countries_KAZ_provinces_Mangghystau_cities_Aqtau = UsePN (mkPN "Aqtau") ; + Countries_YE_cities_Sanaa = UsePN (mkPN "Sanaa") ; + Countries_TJ_provinces_Shanxi_cities_Jincheng = UsePN (mkPN "Jincheng") ; + Countries_GB_provinces_GreaterManchester_cities_Tameside = UsePN (mkPN "Tameside") ; + Rivers_Lena = UsePN (mkPN "Lena") ; + Countries_RA_provinces_DistritoFederal_cities_BuenosAires = UsePN (mkPN "Buenos Aires") ; + Countries_RA_provinces_Jujuy_cities_SanSalvadordeJujuy = UsePN (mkPN "San Salvador de Jujuy") ; + Lakes_LakeErie = UsePN (mkPN "Lake Erie") ; + Countries_MA_cities_Kenitra = UsePN (mkPN "Kenitra") ; + Countries_ZRE_provinces_BasZaire_cities_Matadi = UsePN (mkPN "Matadi") ; + Countries_RO_provinces_CarasSeverin = UsePN (mkPN "Caras Severin") ; + Countries_SUD_provinces_ashSharqiyah_cities_Kassala = UsePN (mkPN "Kassala") ; + Countries_USA_provinces_Tennessee_cities_Memphis = UsePN (mkPN "Memphis") ; + Countries_RO_provinces_Buzau = UsePN (mkPN "Buzau") ; + Countries_TJ_provinces_Sichuan_cities_Nanchong = UsePN (mkPN "Nanchong") ; + Countries_I_provinces_Sicilia_cities_Palermo = UsePN (mkPN "Palermo") ; + Countries_BR_provinces_Piaui = UsePN (mkPN "Piaui") ; + Countries_TR_provinces_Agri = UsePN (mkPN "Agri") ; + Countries_IND_provinces_Punjab_cities_Ludhiana = UsePN (mkPN "Ludhiana") ; + Countries_THA_provinces_Kalasin = UsePN (mkPN "Kalasin") ; + Countries_CAM_provinces_Nordoueste = UsePN (mkPN "Nordoueste") ; + Countries_USA_provinces_Texas_cities_GrandPrairie = UsePN (mkPN "Grand Prairie") ; + Countries_RC_provinces_Penghu_cities_Makung = UsePN (mkPN "Makung") ; + Countries_PE_provinces_Tumbes_cities_Tumbes = UsePN (mkPN "Tumbes") ; + Countries_AFG_cities_Kabul = UsePN (mkPN "Kabul") ; + Lakes_OzeroChanka = UsePN (mkPN "Ozero Chanka") ; + Mountains_Tarrekaise = UsePN (mkPN "Tarrekaise") ; + Countries_TR_provinces_Konya_cities_Konya = UsePN (mkPN "Konya") ; + Rivers_Fulda = UsePN (mkPN "Fulda") ; + Countries_ZRE_provinces_KasaiOccidental = UsePN (mkPN "Kasai Occidental") ; + Countries_TR_provinces_Bolu = UsePN (mkPN "Bolu") ; + Countries_USA_provinces_California_cities_Oakland = UsePN (mkPN "Oakland") ; + Islands_Luzon = UsePN (mkPN "Luzon") ; + Countries_PL_provinces_Gdanskie = UsePN (mkPN "Gdanskie") ; + Countries_BR_provinces_EspiritoSanto_cities_VilaVelha = UsePN (mkPN "Vila Velha") ; + Countries_BR_provinces_MatoGrosso_cities_Rondonopolis = UsePN (mkPN "Rondonopolis") ; + Countries_RA_provinces_BuenosAires_cities_Avellaneda = UsePN (mkPN "Avellaneda") ; + Mountains_JabalMarra = UsePN (mkPN "Jabal Marra") ; + Countries_USA_provinces_Kansas_cities_Wichita = UsePN (mkPN "Wichita") ; + Countries_USA_provinces_Kentucky_cities_Louisville = UsePN (mkPN "Louisville") ; + Countries_USA_provinces_SouthCarolina = UsePN (mkPN "South Carolina") ; + Lakes_Mjoesen = UsePN (mkPN "Mjoesen") ; + Countries_TJ_provinces_Yunnan = UsePN (mkPN "Yunnan") ; + Countries_CAM_provinces_Cote = UsePN (mkPN "Cote") ; + Countries_TJ_provinces_Hubei = UsePN (mkPN "Hubei") ; + Organizations_ICC = UsePN (mkPN "International Chamber of Commerce") ; + Countries_SN_provinces_Fatick = UsePN (mkPN "Fatick") ; + Countries_UA_provinces_Khersonska = UsePN (mkPN "Khersonska") ; + Countries_Z_provinces_Copperbelt_cities_Mufulira = UsePN (mkPN "Mufulira") ; + Countries_TJ_provinces_Jiangsu = UsePN (mkPN "Jiangsu") ; + Countries_CR_provinces_Punarenas_cities_Puntarenas = UsePN (mkPN "Puntarenas") ; + Countries_RC_provinces_Chilung_munic = UsePN (mkPN "Chilung (munic.)") ; + Countries_TJ_provinces_Jiangxi = UsePN (mkPN "Jiangxi") ; + Countries_THA_provinces_RoiEt = UsePN (mkPN "Roi Et") ; + Countries_GB_provinces_Cambridgeshire_cities_Cambridge = UsePN (mkPN "Cambridge") ; + Countries_I_provinces_Lombardia_cities_Monza = UsePN (mkPN "Monza") ; + Rivers_Rhein = UsePN (mkPN "Rhein") ; + Cambodia = UsePN (mkPN "Cambodia") ; + Countries_R_provinces_Kemerovskayaoblast_cities_AnzheroSudzhensk = UsePN (mkPN "Anzhero Sudzhensk") ; + Countries_PL_provinces_Walbrzyskie_cities_Walbrzych = UsePN (mkPN "Walbrzych") ; + Countries_BR_provinces_SaoPaulo_cities_Diadema = UsePN (mkPN "Diadema") ; + Countries_USA_provinces_Alabama_cities_Mobile = UsePN (mkPN "Mobile") ; + Countries_IRQ_provinces_Maysan_cities_AlAmarah = UsePN (mkPN "Al Amarah") ; + Countries_ROK_cities_Mokpo = UsePN (mkPN "Mokpo") ; + Countries_KAZ_provinces_Taldyqorghan_cities_Taldyqorghan = UsePN (mkPN "Taldyqorghan") ; + Organizations_Sparteca = UsePN (mkPN "South Pacific Regional Trade and Economic Cooperation Agreement") ; + Countries_NL_provinces_NoordHolland_cities_Zaanstreek = UsePN (mkPN "Zaanstreek") ; + Countries_GB_provinces_MerthyrTydfil_cities_MerthyrTydfil = UsePN (mkPN "Merthyr Tydfil") ; + Mountains_Korab = UsePN (mkPN "Korab") ; + Countries_THA_provinces_Surin = UsePN (mkPN "Surin") ; + Countries_YV_provinces_Trujillo_cities_Trujillo = UsePN (mkPN "Trujillo") ; + Countries_MAL_provinces_Kedah_cities_AlorSetar = UsePN (mkPN "Alor Setar") ; + Countries_GB_provinces_Avon_cities_Bristol = UsePN (mkPN "Bristol") ; + Mountains_Elbrus = UsePN (mkPN "Elbrus") ; + Countries_BR_provinces_MinasGerais_cities_Divinopolis = UsePN (mkPN "Divinopolis") ; + Rivers_Torneaelv = UsePN (mkPN "Torneaelv") ; + Countries_TJ_provinces_Shandong_cities_Pingdu = UsePN (mkPN "Pingdu") ; + Countries_BR_provinces_SantaCatarina_cities_Itajai = UsePN (mkPN "Itajai") ; + Countries_GB_provinces_Derbyshire_cities_SuttoninAshfield = UsePN (mkPN "Sutton in Ashfield") ; + Organizations_CEAO = UsePN (mkPN "West African Economic Community") ; + Countries_TJ_provinces_Shaanxi_cities_Xianyang = UsePN (mkPN "Xianyang") ; + Countries_RC_provinces_Miaoli_cities_Miaoli = UsePN (mkPN "Miaoli") ; + Countries_USA_provinces_California_cities_Torrance = UsePN (mkPN "Torrance") ; + Countries_USA_provinces_Colorado_cities_FortCollins = UsePN (mkPN "Fort Collins") ; + Countries_CDN_provinces_Saskatchewan_cities_Regina = UsePN (mkPN "Regina") ; + Countries_EAT_provinces_KusiniUjunga_cities_Koani = UsePN (mkPN "Koani") ; + Countries_MEX_provinces_Guerrero_cities_Chilpancingo = UsePN (mkPN "Chilpancingo") ; + Countries_E_provinces_Valencia_cities_Alacant = UsePN (mkPN "Alacant") ; + Countries_NOK_cities_Pyongyang = UsePN (mkPN "Pyongyang") ; + Organizations_SAARC = UsePN (mkPN "South Asian Association for Regional Cooperation") ; + Countries_SUD_provinces_ashShamaliyah_cities_adDamir = UsePN (mkPN "ad Damir") ; + Countries_CAM_provinces_Nord_cities_Garoua = UsePN (mkPN "Garoua") ; + Countries_CDN_provinces_Ontario_cities_Markham = UsePN (mkPN "Markham") ; + Countries_J_provinces_Aomori_cities_Aomori = UsePN (mkPN "Aomori") ; + Countries_UA_provinces_Krym_cities_Simferopol = UsePN (mkPN "Simferopol") ; + Countries_TR_provinces_Corum_cities_Corum = UsePN (mkPN "Corum") ; + Countries_USA_provinces_Vermont = UsePN (mkPN "Vermont") ; + Rivers_KleinerJenissej = UsePN (mkPN "Kleiner Jenissej") ; + Countries_N_provinces_MoereogRomsdal = UsePN (mkPN "Moere og Romsdal") ; + Countries_WAN_cities_IlaweEkiti = UsePN (mkPN "Ilawe Ekiti") ; + Countries_NL_provinces_NoordHolland_cities_Velsen = UsePN (mkPN "Velsen") ; + Countries_CO_provinces_Quindio = UsePN (mkPN "Quindio") ; + Countries_GB_provinces_Lancashire = UsePN (mkPN "Lancashire") ; + Countries_SUD_provinces_ashShamaliyah = UsePN (mkPN "ash Shamaliyah") ; + Countries_MAL_provinces_Johor_cities_JohorBaharu = UsePN (mkPN "Johor Baharu") ; + Countries_AUS_provinces_NewSouthWales_cities_SunshineCoast = UsePN (mkPN "Sunshine Coast") ; + Thailand = UsePN (mkPN "Thailand") ; + Mountains_Semeru = UsePN (mkPN "Semeru") ; + Countries_BR_provinces_MinasGerais_cities_MontesClaros = UsePN (mkPN "Montes Claros") ; + Countries_RI_cities_Pontianak = UsePN (mkPN "Pontianak") ; + Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEstero = UsePN (mkPN "Santiago del Estero") ; + Countries_RO_provinces_Mehedinti_cities_DrobetaTurnuSeverin = UsePN (mkPN "Drobeta Turnu Severin") ; + Countries_R_provinces_Stavropolskykray_cities_Kislovodsk = UsePN (mkPN "Kislovodsk") ; + Countries_TR_provinces_Istanbul_cities_Istanbul = UsePN (mkPN "Istanbul") ; + Countries_CDN_provinces_Ontario_cities_ThunderBay = UsePN (mkPN "Thunder Bay") ; + Mountains_Tahan = UsePN (mkPN "Tahan") ; + Countries_TR_provinces_Siirt = UsePN (mkPN "Siirt") ; + Countries_R_provinces_Rep_ofKarelia = UsePN (mkPN "Rep. of Karelia") ; + Mauritania = UsePN (mkPN "Mauritania") ; + Countries_RO_provinces_Teleorman_cities_Alexandria = UsePN (mkPN "Alexandria") ; + Mountains_MountGodwinAusten = UsePN (mkPN "Mount Godwin Austen") ; + Countries_TR_provinces_Rize = UsePN (mkPN "Rize") ; + Countries_GB_provinces_SouthYorkshire_cities_Barnsley = UsePN (mkPN "Barnsley") ; + Countries_RI_cities_Banjarmasin = UsePN (mkPN "Banjarmasin") ; + Countries_RC_provinces_Taipei_munic = UsePN (mkPN "Taipei (munic.)") ; + Countries_R_provinces_Kemerovskayaoblast_cities_Mezhdurechensk = UsePN (mkPN "Mezhdurechensk") ; + Countries_JA_cities_Kingston = UsePN (mkPN "Kingston") ; + Countries_C_provinces_IsladelaJuventud = UsePN (mkPN "Isla de la Juventud") ; + Countries_TJ_provinces_Anhui_cities_Suzhou = UsePN (mkPN "Suzhou") ; + Countries_TJ_provinces_Sichuan_cities_Dukou = UsePN (mkPN "Dukou") ; + Countries_TJ_provinces_XinjiangUygur = UsePN (mkPN "Xinjiang Uygur") ; + Countries_USA_provinces_California_cities_Oceanside = UsePN (mkPN "Oceanside") ; + Countries_KAZ_provinces_Qyzylorda = UsePN (mkPN "Qyzylorda") ; + Countries_USA_provinces_Texas = UsePN (mkPN "Texas") ; + Countries_YV_provinces_Zulia = UsePN (mkPN "Zulia") ; + Countries_NL_provinces_NoordHolland_cities_Amsterdam = UsePN (mkPN "Amsterdam") ; + Countries_R_provinces_Rep_ofDagestan = UsePN (mkPN "Rep. of Dagestan") ; + Countries_R_provinces_Rep_ofKhakassiya = UsePN (mkPN "Rep. of Khakassiya") ; + Countries_CDN_provinces_Quebec = UsePN (mkPN "Quebec") ; + Countries_GR_provinces_IonioiNisoi = UsePN (mkPN "Ionioi Nisoi") ; + Countries_J_provinces_Ishikawa = UsePN (mkPN "Ishikawa") ; + Islands_Aland = UsePN (mkPN "Aland") ; + Countries_GB_provinces_Lancashire_cities_Blackburn = UsePN (mkPN "Blackburn") ; + Countries_ROK_cities_Inchon = UsePN (mkPN "Inchon") ; + Countries_cid_cia_Cocos_Islands = UsePN (mkPN "Cocos Islands") ; + Countries_R_provinces_Moskovskayaoblast_cities_Mytishchi = UsePN (mkPN "Mytishchi") ; + Mountains_Sarektjokko = UsePN (mkPN "Sarektjokko") ; + Countries_S_provinces_Varmland_cities_Karlstad = UsePN (mkPN "Karlstad") ; + Countries_GB_provinces_Cornwall_IslesofScilly = UsePN (mkPN "Cornwall / Isles of Scilly") ; + Countries_RA_provinces_EntreRios_cities_Concordia = UsePN (mkPN "Concordia") ; + Organizations_UNDP = UsePN (mkPN "United Nations Development Program") ; + Countries_cid_cia_Faroe_Islands_cities_Torshavn = UsePN (mkPN "Torshavn") ; + Countries_IND_provinces_TamilNadu_cities_Madras = UsePN (mkPN "Madras") ; + Countries_MYA_provinces_Magway_cities_Magway = UsePN (mkPN "Magway") ; + Croatia = UsePN (mkPN "Croatia") ; + Countries_RA_provinces_SantaFe = UsePN (mkPN "Santa Fe") ; + Countries_AUS_provinces_WesternAustralia = UsePN (mkPN "Western Australia") ; + Countries_PL_provinces_Zamojskie_cities_Zamosc = UsePN (mkPN "Zamosc") ; + Countries_RA_provinces_Catamarca_cities_SanFernando = UsePN (mkPN "San Fernando") ; + Countries_KGZ_cities_Bishkek = UsePN (mkPN "Bishkek") ; + Countries_IND_provinces_Maharashtra_cities_Sholapur = UsePN (mkPN "Sholapur") ; + Countries_GB_provinces_WestSussex_cities_Horsham = UsePN (mkPN "Horsham") ; + Countries_YV_provinces_Sucre = UsePN (mkPN "Sucre") ; + Countries_VN_provinces_BinhDinh = UsePN (mkPN "Binh Dinh") ; + Countries_USA_provinces_Colorado_cities_Denver = UsePN (mkPN "Denver") ; + Countries_TR_provinces_Karamanmaras_cities_KaramanMaras = UsePN (mkPN "Karaman Maras") ; + Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEsteroLaBanda = UsePN (mkPN "Santiago del Estero La Banda") ; + Countries_TJ_provinces_Hebei_cities_Qinhuangdao = UsePN (mkPN "Qinhuangdao") ; + Countries_S_provinces_GoteborgochBohus = UsePN (mkPN "Goteborg och Bohus") ; + Mountains_GrosserArber = UsePN (mkPN "Grosser Arber") ; + Countries_H_provinces_Vas = UsePN (mkPN "Vas") ; + Countries_TR_provinces_Nevsehir_cities_Nevsehir = UsePN (mkPN "Nevsehir") ; + Islands_Aust_Vagoey = UsePN (mkPN "Aust-Vagoey") ; + Countries_cid_cia_Kingman_Reef = UsePN (mkPN "Kingman Reef") ; + Islands_Harris = UsePN (mkPN "Harris") ; + Countries_R_provinces_Volgogradskayaoblast_cities_Volgograd = UsePN (mkPN "Volgograd") ; + Deserts_GrandVictoriaDesert = UsePN (mkPN "Grand Victoria Desert") ; + Countries_GB_provinces_Lancashire_cities_Preston = UsePN (mkPN "Preston") ; + Countries_RO_provinces_Sibiu_cities_Sibiu = UsePN (mkPN "Sibiu") ; + Countries_TR_provinces_Kocaeli = UsePN (mkPN "Kocaeli") ; + Countries_I_provinces_TrentinoAltoAdige = UsePN (mkPN "Trentino Alto Adige") ; + Countries_CH_provinces_AI_cities_Appenzell = UsePN (mkPN "Appenzell") ; + Countries_RI_cities_Pasuruan = UsePN (mkPN "Pasuruan") ; + Countries_GB_provinces_GreaterManchester_cities_Salford = UsePN (mkPN "Salford") ; + Countries_MEX_provinces_Jalisco_cities_Zapopan = UsePN (mkPN "Zapopan") ; + Countries_B_provinces_Limburg = UsePN (mkPN "Limburg") ; + Countries_BR_provinces_MinasGerais_cities_Ipatinga = UsePN (mkPN "Ipatinga") ; + Countries_AL_cities_Durres = UsePN (mkPN "Durres") ; + Countries_RG_cities_Conakry = UsePN (mkPN "Conakry") ; + Countries_NL_provinces_Groningen = UsePN (mkPN "Groningen") ; + Countries_GB_provinces_Gloucestershire_cities_Glouchester = UsePN (mkPN "Glouchester") ; + Countries_cid_cia_Saint_Pierre_and_Miquelon = UsePN (mkPN "Saint Pierre and Miquelon") ; + Countries_RA_provinces_Chubut = UsePN (mkPN "Chubut") ; + Countries_MEX_provinces_Michoacan_cities_Morelia = UsePN (mkPN "Morelia") ; + Countries_GB_provinces_WestSussex_cities_Chichester = UsePN (mkPN "Chichester") ; + Countries_D_provinces_Bayern_cities_Regensburg = UsePN (mkPN "Regensburg") ; + Countries_R_provinces_Chelyabinskayaoblast_cities_Miass = UsePN (mkPN "Miass") ; + Countries_RC_provinces_Pingtung_cities_Pingtung = UsePN (mkPN "Pingtung") ; + Countries_R_provinces_Khabarovskiykray = UsePN (mkPN "Khabarovskiy kray") ; + Islands_Staffa = UsePN (mkPN "Staffa") ; + Countries_PL_cities_DabrowaGornicza = UsePN (mkPN "Dabrowa Gornicza") ; + Countries_D_provinces_NordrheinWestfalen_cities_Dusseldorf = UsePN (mkPN "Dusseldorf") ; + Countries_VN_provinces_DacLac = UsePN (mkPN "Dac Lac") ; + Organizations_RG = UsePN (mkPN "Rio Group") ; + Countries_CDN_provinces_Ontario_cities_Etobicoke = UsePN (mkPN "Etobicoke") ; + Rivers_WesternDwina = UsePN (mkPN "Western Dwina") ; + Countries_CDN_provinces_Ontario_cities_London = UsePN (mkPN "London") ; + Countries_RO_provinces_Salaj_cities_Zalau = UsePN (mkPN "Zalau") ; + Countries_RO_provinces_Cluj_cities_ClujNapoca = UsePN (mkPN "Cluj Napoca") ; + Countries_GB_provinces_Monmouthshire_cities_Cwmbran = UsePN (mkPN "Cwmbran") ; + Countries_MEX_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; + Countries_TJ_provinces_Jiangsu_cities_Suzhou = UsePN (mkPN "Suzhou") ; + Countries_F_provinces_PaysdelaLoire_cities_Nantes = UsePN (mkPN "Nantes") ; + Countries_R_provinces_Stavropolskykray_cities_Pyatigorsk = UsePN (mkPN "Pyatigorsk") ; + Countries_cid_cia_Svalbard_cities_Longyearbyen = UsePN (mkPN "Longyearbyen") ; + Countries_CH_provinces_FR_cities_Fribourg = UsePN (mkPN "Fribourg") ; + Countries_USA_provinces_Connecticut_cities_Stamford = UsePN (mkPN "Stamford") ; + Countries_ET_provinces_ElQalubiya = UsePN (mkPN "El Qalubiya") ; + Countries_A_provinces_LowerAustria = UsePN (mkPN "Lower Austria") ; + Countries_RP_cities_Quezon = UsePN (mkPN "Quezon") ; + Countries_cid_cia_Midway_Islands = UsePN (mkPN "Midway Islands") ; + Islands_MelvilleIsland = UsePN (mkPN "Melville Island") ; + Countries_GB_provinces_EastSussex = UsePN (mkPN "East Sussex") ; + Countries_KAZ_provinces_BatysQazaqstan = UsePN (mkPN "Batys Qazaqstan") ; + Countries_RI_cities_Manado = UsePN (mkPN "Manado") ; + NewCaledonia = UsePN (mkPN "New Caledonia") ; + Countries_PE_provinces_SanMartin = UsePN (mkPN "San Martin") ; + Countries_MOC_provinces_Zambezia_cities_Quelimane = UsePN (mkPN "Quelimane") ; + Countries_BR_provinces_MinasGerais_cities_TeofiloOtoni = UsePN (mkPN "Teofilo Otoni") ; + Islands_Taiwan = UsePN (mkPN "Taiwan") ; + Countries_IND_provinces_Kerala_cities_Cochin = UsePN (mkPN "Cochin") ; + Countries_IND_provinces_Karnataka_cities_Hubli = UsePN (mkPN "Hubli") ; + Islands_Martinique = UsePN (mkPN "Martinique") ; + Countries_BIH_cities_Sarajevo = UsePN (mkPN "Sarajevo") ; + Countries_NIC_cities_Masaya = UsePN (mkPN "Masaya") ; + Countries_RO_provinces_Constanta_cities_Constanta = UsePN (mkPN "Constanta") ; + Countries_WAN_cities_Bida = UsePN (mkPN "Bida") ; + Countries_RC_provinces_Kaohsiung_munic_cities_Kaohsiung = UsePN (mkPN "Kaohsiung") ; + Organizations_OPANAL = UsePN (mkPN "Agency for the Prohibition of Nuclear Weapons in Latin America and the Caribbean") ; + Countries_MAL_provinces_PulauPinang_cities_GeorgeTown = UsePN (mkPN "George Town") ; + Islands_Anglesey = UsePN (mkPN "Anglesey") ; + Countries_TR_provinces_Sakarya_cities_Sakarya = UsePN (mkPN "Sakarya") ; + Countries_E_provinces_Andalusia_cities_Cordoba = UsePN (mkPN "Cordoba") ; + Countries_EAK_provinces_Eastern = UsePN (mkPN "Eastern") ; + Countries_THA_provinces_NakhonNayok = UsePN (mkPN "Nakhon Nayok") ; + Rivers_Orinoco = UsePN (mkPN "Orinoco") ; + Countries_H_provinces_Pecs_munic = UsePN (mkPN "Pecs (munic.)") ; + Countries_EAT_provinces_KusiniUjunga = UsePN (mkPN "Kusini Ujunga") ; + Countries_F_provinces_HauteNormandie_cities_LeHavre = UsePN (mkPN "Le Havre") ; + Countries_BD_cities_Dinajpur = UsePN (mkPN "Dinajpur") ; + Countries_ANG_provinces_Namibe = UsePN (mkPN "Namibe") ; + Countries_MEX_provinces_Tamaulipas_cities_Tampico = UsePN (mkPN "Tampico") ; + Countries_IND_provinces_Bihar_cities_Patna = UsePN (mkPN "Patna") ; + Countries_CO_provinces_Boyaca_cities_Tunja = UsePN (mkPN "Tunja") ; + Countries_RA_provinces_TierradelFuego_cities_Ushuaia = UsePN (mkPN "Ushuaia") ; + Countries_R_provinces_Khabarovskiykray_cities_KomsomolsknaAmure = UsePN (mkPN "Komsomolsk na Amure") ; + Countries_BR_provinces_MinasGerais_cities_GovernadorValadares = UsePN (mkPN "Governador Valadares") ; + Countries_B_provinces_EastFlanders = UsePN (mkPN "East Flanders") ; + Countries_TJ_provinces_Shandong_cities_Liancheng = UsePN (mkPN "Liancheng") ; + Countries_IRQ_provinces_Maysan = UsePN (mkPN "Maysan") ; + Countries_BR_provinces_Pernambuco_cities_Gravatai = UsePN (mkPN "Gravatai") ; + Rivers_Cuilo = UsePN (mkPN "Cuilo") ; + Countries_MEX_provinces_Durango_cities_VictoriadeDurango = UsePN (mkPN "Victoria de Durango") ; + Countries_MOC_provinces_Nampula_cities_Nampula = UsePN (mkPN "Nampula") ; + Countries_R_provinces_Rep_ofNorthOssetiya = UsePN (mkPN "Rep. of North Ossetiya") ; + Countries_SF_provinces_Kymi_cities_Kotka = UsePN (mkPN "Kotka") ; + Countries_H_provinces_Bekes = UsePN (mkPN "Bekes") ; + Countries_GB_provinces_Derbyshire_cities_Matlock = UsePN (mkPN "Matlock") ; + Islands_SouthRonaldson = UsePN (mkPN "South Ronaldson") ; + Countries_cid_cia_French_Southern_and_Antarctic_Lands = UsePN (mkPN "French Southern and Antarctic Lands") ; + Countries_GB_provinces_NorthYorkshire_cities_Harrogate = UsePN (mkPN "Harrogate") ; + Lakes_LakeChilwa = UsePN (mkPN "Lake Chilwa") ; + Countries_IRQ_provinces_AlAnbar_cities_ArRamadi = UsePN (mkPN "Ar Ramadi") ; + Countries_HCA_provinces_Olancho_cities_Jutigalpa = UsePN (mkPN "Jutigalpa") ; + Countries_I_provinces_Lombardia = UsePN (mkPN "Lombardia") ; + Countries_TJ_provinces_NeiMonggol_cities_Tongliao = UsePN (mkPN "Tongliao") ; + Countries_BOL_cities_LaPaz = UsePN (mkPN "La Paz") ; + Countries_D_provinces_Berlin = UsePN (mkPN "Berlin") ; + Countries_MEX_provinces_Veracruz_cities_Jalapa = UsePN (mkPN "Jalapa") ; + Grenada = UsePN (mkPN "Grenada") ; + Mountains_Sulitjelma = UsePN (mkPN "Sulitjelma") ; + Countries_F_provinces_FrancheComte_cities_Besancon = UsePN (mkPN "Besancon") ; + Countries_GB_provinces_Dorset_cities_Poole = UsePN (mkPN "Poole") ; + Countries_TJ_provinces_Shandong_cities_Rizhao = UsePN (mkPN "Rizhao") ; + Countries_MYA_provinces_Rakhine_cities_Akyab = UsePN (mkPN "Akyab") ; + Countries_GB_provinces_Buckinghamshire_cities_MiltonKeynes = UsePN (mkPN "Milton Keynes") ; + Countries_TJ_provinces_Shandong_cities_Jiaoxian = UsePN (mkPN "Jiaoxian") ; + Organizations_EN = UsePN (mkPN "Nuclear Energy Agency") ; + Countries_IR_provinces_Bakhtaran = UsePN (mkPN "Bakhtaran") ; + Countries_BR_provinces_RiodeJaneiro_cities_SaoJoaodeMeriti = UsePN (mkPN "Sao Joao de Meriti") ; + Countries_YV_provinces_Amazonas = UsePN (mkPN "Amazonas") ; + Countries_J_provinces_Nagano = UsePN (mkPN "Nagano") ; + Countries_R_provinces_Orenburgskayaoblast_cities_Novotroitsk = UsePN (mkPN "Novotroitsk") ; + Countries_USA_provinces_Colorado = UsePN (mkPN "Colorado") ; + Countries_MEX_provinces_Sinaloa = UsePN (mkPN "Sinaloa") ; + Countries_J_provinces_Akita_cities_Akita = UsePN (mkPN "Akita") ; + Countries_CO_provinces_Antioquia_cities_Turbo = UsePN (mkPN "Turbo") ; + Countries_E_provinces_Asturias_cities_Oviedo = UsePN (mkPN "Oviedo") ; + Countries_SUD_provinces_ashSharqiyah_cities_alQadarif = UsePN (mkPN "al Qadarif") ; + Countries_R_provinces_Kaluzhskayaoblast_cities_Kaluga = UsePN (mkPN "Kaluga") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Qinzhou = UsePN (mkPN "Qinzhou") ; + Islands_Kyushu = UsePN (mkPN "Kyushu") ; + Lakes_Vaettern = UsePN (mkPN "Vaettern") ; + Countries_BR_provinces_Maranhao_cities_Codo = UsePN (mkPN "Codo") ; + Countries_GB_provinces_Merseyside_cities_Knowsley = UsePN (mkPN "Knowsley") ; + Countries_BR_provinces_MinasGerais_cities_ItapecericadaSerra = UsePN (mkPN "Itapecerica da Serra") ; + Countries_TR_provinces_Sinop = UsePN (mkPN "Sinop") ; + Countries_R_provinces_Rep_ofAltay = UsePN (mkPN "Rep. of Altay") ; + Rivers_Limpopo = UsePN (mkPN "Limpopo") ; + Countries_TJ_provinces_Hubei_cities_Shiyan = UsePN (mkPN "Shiyan") ; + Organizations_UNAVEMIII = UsePN (mkPN "United Nations Angola Verification Mission") ; + Rivers_Ischim = UsePN (mkPN "Ischim") ; + SaudiArabia = UsePN (mkPN "Saudi Arabia") ; + Countries_cid_cia_Palmyra_Atoll = UsePN (mkPN "Palmyra Atoll") ; + Countries_BR_provinces_MatoGrossodoSul_cities_Parnaiba = UsePN (mkPN "Parnaiba") ; + Countries_VN_provinces_ThuaThienHue = UsePN (mkPN "Thua Thien Hue") ; + Countries_RSA_cities_Diepmeadow = UsePN (mkPN "Diepmeadow") ; + Countries_PL_provinces_Pilskie_cities_Pila = UsePN (mkPN "Pila") ; + Islands_Grenada = UsePN (mkPN "Grenada") ; + Countries_GB_provinces_Cleveland = UsePN (mkPN "Cleveland") ; + Countries_BR_provinces_Parana = UsePN (mkPN "Parana") ; + Countries_BR_provinces_RioGrandedoNorte_cities_Mossoro = UsePN (mkPN "Mossoro") ; + Countries_J_provinces_Ibaraki_cities_Mito = UsePN (mkPN "Mito") ; + Countries_PNG_cities_PortMoresby = UsePN (mkPN "Port Moresby") ; + Countries_TR_provinces_Ankara_cities_Ankara = UsePN (mkPN "Ankara") ; + Countries_USA_provinces_Pennsylvania = UsePN (mkPN "Pennsylvania") ; + Countries_SN_provinces_SaintLouis = UsePN (mkPN "Saint Louis") ; + Countries_RA_provinces_Salta_cities_Salta = UsePN (mkPN "Salta") ; + Countries_ANG_provinces_Cabinda_cities_Cabinda = UsePN (mkPN "Cabinda") ; + Countries_PE_provinces_Huancavelica_cities_Huancavelica = UsePN (mkPN "Huancavelica") ; + Countries_TJ_provinces_Shandong_cities_Tengxian = UsePN (mkPN "Tengxian") ; + Countries_D_provinces_Bayern_cities_Furth = UsePN (mkPN "Furth") ; + Countries_SN_provinces_Dakar = UsePN (mkPN "Dakar") ; + Countries_IR_provinces_SistaneBaluchestan_cities_Zahedan = UsePN (mkPN "Zahedan") ; + Countries_R_provinces_Yaroslavskayaoblast = UsePN (mkPN "Yaroslavskaya oblast") ; + Rivers_Werra = UsePN (mkPN "Werra") ; + Australia = UsePN (mkPN "Australia") ; + Countries_ET_provinces_ElDaqahliya = UsePN (mkPN "El Daqahliya") ; + Countries_ES_provinces_Morazan_cities_SanFranciscoGotera = UsePN (mkPN "San Francisco Gotera") ; + Countries_CH_provinces_NW_cities_Stans = UsePN (mkPN "Stans") ; + Countries_ET_provinces_ElQahira_munic_cities_ElQahira = UsePN (mkPN "El Qahira") ; + Countries_BR_provinces_SaoPaulo_cities_SaoJosedosCampos = UsePN (mkPN "Sao Jose dos Campos") ; + Organizations_SADC = UsePN (mkPN "Southern African Development Community") ; + Countries_MEX_provinces_Campeche = UsePN (mkPN "Campeche") ; + Countries_R_provinces_Moskovskayaoblast_cities_Zelenograd = UsePN (mkPN "Zelenograd") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Nanning = UsePN (mkPN "Nanning") ; + Countries_TJ_provinces_Liaoning_cities_Jinxi = UsePN (mkPN "Jinxi") ; + Countries_HCA_provinces_Cortes_cities_SanPedroSula = UsePN (mkPN "San Pedro Sula") ; + Countries_ET_provinces_ElMinya_cities_ElMinya = UsePN (mkPN "El Minya") ; + Countries_TJ_provinces_Liaoning_cities_Dalian = UsePN (mkPN "Dalian") ; + Countries_EC_cities_Guayaquil = UsePN (mkPN "Guayaquil") ; + Countries_USA_provinces_Washington = UsePN (mkPN "Washington") ; + Countries_CH_provinces_FR = UsePN (mkPN "FR") ; + Countries_YV_cities_Turmero = UsePN (mkPN "Turmero") ; + Countries_cid_cia_Guam = UsePN (mkPN "Guam") ; + Countries_GB_provinces_EastSussex_cities_Brighton = UsePN (mkPN "Brighton") ; + Countries_BR_provinces_Acre_cities_RioBranco = UsePN (mkPN "Rio Branco") ; + Countries_THA_provinces_Phangnga = UsePN (mkPN "Phangnga") ; + Countries_ET_provinces_Sharqiya_cities_Zagazig = UsePN (mkPN "Zagazig") ; + Lakes_DaryachehyeNamak = UsePN (mkPN "Daryacheh ye Namak") ; + Countries_GB_provinces_Tayside_cities_Dundee = UsePN (mkPN "Dundee") ; + Countries_RA_provinces_BuenosAires_cities_BahiaBlanca = UsePN (mkPN "Bahia Blanca") ; + Mountains_Mpika = UsePN (mkPN "Mpika") ; + Countries_USA_provinces_Kansas = UsePN (mkPN "Kansas") ; + Countries_TJ_provinces_Fujian_cities_Sanming = UsePN (mkPN "Sanming") ; + Countries_TJ_provinces_Anhui_cities_Huaibei = UsePN (mkPN "Huaibei") ; + Cameroon = UsePN (mkPN "Cameroon") ; + Countries_USA_provinces_California_cities_LosAngeles = UsePN (mkPN "Los Angeles") ; + Countries_ET_provinces_ElMinya = UsePN (mkPN "El Minya") ; + Countries_RO_provinces_Dolj = UsePN (mkPN "Dolj") ; + Countries_ETH_cities_Mekele = UsePN (mkPN "Mekele") ; + Countries_ES_provinces_Cabanas_cities_Sensuntepeque = UsePN (mkPN "Sensuntepeque") ; + Countries_RO_provinces_Neamt_cities_PiatraNeamt = UsePN (mkPN "Piatra Neamt") ; + Seas_SundaSea = UsePN (mkPN "Sunda Sea") ; + Countries_ES_cities_Apopa = UsePN (mkPN "Apopa") ; + Countries_TJ_provinces_Sichuan_cities_Neijiang = UsePN (mkPN "Neijiang") ; + Countries_MYA_provinces_Tanintharyi = UsePN (mkPN "Tanintharyi") ; + Countries_F_provinces_LanguedocRousillon_cities_Nimes = UsePN (mkPN "Nimes") ; + Jordan = UsePN (mkPN "Jordan") ; + Countries_cid_cia_Netherlands_Antilles = UsePN (mkPN "Netherlands Antilles") ; + Countries_GCA_cities_VillaNueva = UsePN (mkPN "Villa Nueva") ; + Countries_TJ_provinces_NeiMonggol_cities_Wuhai = UsePN (mkPN "Wuhai") ; + Countries_GB_provinces_Devon_cities_Exeter = UsePN (mkPN "Exeter") ; + Countries_CH_provinces_AI = UsePN (mkPN "AI") ; + Countries_R_provinces_Rep_ofMariyEl_cities_YoshkarOla = UsePN (mkPN "Yoshkar Ola") ; + Countries_TR_provinces_Cankiri_cities_Cankiri = UsePN (mkPN "Cankiri") ; + Countries_TJ_provinces_Shanxi_cities_Datong = UsePN (mkPN "Datong") ; + Countries_TM_provinces_Balkan = UsePN (mkPN "Balkan") ; + Countries_BR_provinces_SaoPaulo_cities_Sorocaba = UsePN (mkPN "Sorocaba") ; + Countries_USA_provinces_NewHampshire_cities_Manchester = UsePN (mkPN "Manchester") ; + Countries_NAM_cities_Windhoek = UsePN (mkPN "Windhoek") ; + Countries_I_provinces_EmiliaRomagna_cities_ReggionellEmilia = UsePN (mkPN "Reggio nellEmilia") ; + Countries_GB_provinces_GreaterManchester_cities_Rochdale = UsePN (mkPN "Rochdale") ; + Countries_SF_provinces_Mikkeli_cities_Mikkeli = UsePN (mkPN "Mikkeli") ; + Countries_HCA_provinces_LaPaz_cities_LaPaz = UsePN (mkPN "La Paz") ; + Countries_IRQ_provinces_AlQadisiyah_cities_AdDiwaniyah = UsePN (mkPN "Ad Diwaniyah") ; + Organizations_IADB = UsePN (mkPN "Inter-American Development Bank") ; + Countries_USA_provinces_Texas_cities_WichitaFalls = UsePN (mkPN "Wichita Falls") ; + Islands_Tuvalu = UsePN (mkPN "Tuvalu") ; + Countries_AUS_provinces_NewSouthWales_cities_Geelong = UsePN (mkPN "Geelong") ; + Countries_TR_provinces_Kocaeli_cities_Izmit = UsePN (mkPN "Izmit") ; + Countries_YV_provinces_Portuguesa_cities_Guanare = UsePN (mkPN "Guanare") ; + Countries_IND_provinces_DamanandDiu_cities_Daman = UsePN (mkPN "Daman") ; + Organizations_UNCTAD = UsePN (mkPN "United Nations Conference on Trade and Development") ; + Countries_CH_provinces_AG = UsePN (mkPN "AG") ; + Countries_THA_provinces_KhonKaen_cities_KhonKaen = UsePN (mkPN "Khon Kaen") ; + Countries_MYA_provinces_Kayah_cities_Loikaw = UsePN (mkPN "Loikaw") ; + Countries_BR_provinces_Maranhao_cities_Imperatriz = UsePN (mkPN "Imperatriz") ; + Countries_DK_cities_Copenhagen = UsePN (mkPN "Copenhagen") ; + Countries_MEX_provinces_Yucatan = UsePN (mkPN "Yucatan") ; + Countries_BR_provinces_Pernambuco_cities_Recife = UsePN (mkPN "Recife") ; + Countries_USA_provinces_Arkansas_cities_LittleRock = UsePN (mkPN "Little Rock") ; + Countries_cid_cia_British_Virgin_Islands = UsePN (mkPN "British Virgin Islands") ; + Countries_USA_provinces_California_cities_Bakersfield = UsePN (mkPN "Bakersfield") ; + Countries_THA_provinces_Saraburi = UsePN (mkPN "Saraburi") ; + Islands_Bohol = UsePN (mkPN "Bohol") ; + Islands_Isabela = UsePN (mkPN "Isabela") ; + Countries_TR_provinces_Kirsehir = UsePN (mkPN "Kirsehir") ; + Countries_PL_provinces_Szczecinskie_cities_Szczecin = UsePN (mkPN "Szczecin") ; + Organizations_EBRD = UsePN (mkPN "European Bank for Reconstruction and Development") ; + Countries_THA_provinces_NortheasternRegion = UsePN (mkPN "Northeastern Region") ; + Mountains_BorahPeak = UsePN (mkPN "Borah Peak") ; + Countries_PK_cities_Multan = UsePN (mkPN "Multan") ; + Mountains_MtAylmer = UsePN (mkPN "Mt Aylmer") ; + Countries_USA_provinces_NewJersey_cities_Newark = UsePN (mkPN "Newark") ; + Rivers_Gloma = UsePN (mkPN "Gloma") ; + Countries_PL_provinces_Gdanskie_cities_Gdynia = UsePN (mkPN "Gdynia") ; + Countries_UZB_provinces_Namangan = UsePN (mkPN "Namangan") ; + Countries_GE_cities_Tbilisi = UsePN (mkPN "Tbilisi") ; + Countries_CO_provinces_Guaviare = UsePN (mkPN "Guaviare") ; + Countries_D_provinces_Thuringen_cities_Gera = UsePN (mkPN "Gera") ; + Countries_MEX_provinces_BajaCalifornia_cities_Tijuana = UsePN (mkPN "Tijuana") ; + Islands_Tilos = UsePN (mkPN "Tilos") ; + Countries_SF_provinces_Oulu_cities_Oulu = UsePN (mkPN "Oulu") ; + NorthKorea = UsePN (mkPN "North Korea") ; + Countries_TJ_provinces_NeiMonggol_cities_Jining = UsePN (mkPN "Jining") ; + Countries_cid_cia_Tromelin_Island = UsePN (mkPN "Tromelin Island") ; + Countries_N_provinces_Nordland_cities_Svolvaer = UsePN (mkPN "Svolvaer") ; + Countries_B_provinces_Hainaut_cities_Mons = UsePN (mkPN "Mons") ; + Countries_USA_provinces_California_cities_Ontario = UsePN (mkPN "Ontario") ; + Countries_EAT_provinces_Kigoma = UsePN (mkPN "Kigoma") ; + Countries_ES_provinces_LaPaz = UsePN (mkPN "La Paz") ; + Rivers_Ruki = UsePN (mkPN "Ruki") ; + Rivers_Tobol = UsePN (mkPN "Tobol") ; + Countries_IND_provinces_MadhyaPradesh_cities_Raipur = UsePN (mkPN "Raipur") ; + Countries_I_provinces_EmiliaRomagna = UsePN (mkPN "Emilia Romagna") ; + Countries_RA_provinces_SanLuis = UsePN (mkPN "San Luis") ; + Countries_THA_provinces_SouthernRegion = UsePN (mkPN "Southern Region") ; + Countries_THA_provinces_NakhonSawan = UsePN (mkPN "Nakhon Sawan") ; + Countries_USA_provinces_Michigan_cities_Livonia = UsePN (mkPN "Livonia") ; + Countries_RA_provinces_BuenosAires_cities_SanNicolasdelosArroyos = UsePN (mkPN "San Nicolas de los Arroyos") ; + Countries_UA_provinces_Krym = UsePN (mkPN "Krym") ; + Organizations_UNMOGIP = UsePN (mkPN "United Nations Military Observer Group in India and Pakistan") ; + Countries_R_provinces_Irkutskayaoblast_cities_Bratsk = UsePN (mkPN "Bratsk") ; + Countries_IND_provinces_AndhraPradesh_cities_Rajahmundry = UsePN (mkPN "Rajahmundry") ; + Countries_RA_provinces_Catamarca_cities_SanFernandodelValledeCatamarca = UsePN (mkPN "San Fernando del Valle de Catamarca") ; + Countries_CDN_provinces_Ontario_cities_Windsor = UsePN (mkPN "Windsor") ; + Countries_MEX_provinces_BajaCalifornia_cities_Ensenada = UsePN (mkPN "Ensenada") ; + Countries_ET_provinces_ElMinufiya = UsePN (mkPN "El Minufiya") ; + Countries_CDN_provinces_Ontario_cities_Glouchester = UsePN (mkPN "Glouchester") ; + Countries_TJ_provinces_Sichuan_cities_Qianjiang = UsePN (mkPN "Qianjiang") ; + Countries_EAT_provinces_Kilimanjaro_cities_Moshi = UsePN (mkPN "Moshi") ; + Countries_TR_provinces_Tunceli = UsePN (mkPN "Tunceli") ; + Countries_E_provinces_Andalusia_cities_Cadiz = UsePN (mkPN "Cadiz") ; + Countries_TAD_provinces_Khatlon = UsePN (mkPN "Khatlon") ; + Countries_GB_provinces_Wiltshire_cities_Salisbury = UsePN (mkPN "Salisbury") ; + Countries_R_provinces_Yaroslavskayaoblast_cities_Yaroslavl = UsePN (mkPN "Yaroslavl") ; + Countries_TJ_provinces_Liaoning = UsePN (mkPN "Liaoning") ; + Organizations_AG = UsePN (mkPN "Andean Group") ; + Countries_CDN_provinces_Quebec_cities_Laval = UsePN (mkPN "Laval") ; + Countries_cid_cia_Mayotte = UsePN (mkPN "Mayotte") ; + Lakes_LakeNatron = UsePN (mkPN "Lake Natron") ; + Countries_DZ_cities_Annaba = UsePN (mkPN "Annaba") ; + Countries_AUS_provinces_AustraliaCapitalTerritory = UsePN (mkPN "Australia Capital Territory") ; + Organizations_MTCR = UsePN (mkPN "Missile Technology Control Regime") ; + Countries_E_provinces_Madrid_cities_Madrid = UsePN (mkPN "Madrid") ; + Countries_D_provinces_Bayern_cities_Wurzburg = UsePN (mkPN "Wurzburg") ; + Countries_USA_provinces_Maryland_cities_Annapolis = UsePN (mkPN "Annapolis") ; + Countries_BR_provinces_Ceara_cities_Sobral = UsePN (mkPN "Sobral") ; + Countries_USA_provinces_NewHampshire_cities_Concord = UsePN (mkPN "Concord") ; + Countries_RC_cities_Chungli = UsePN (mkPN "Chungli") ; + Countries_PL_provinces_Koninskie = UsePN (mkPN "Koninskie") ; + Countries_NL_provinces_Limburg_cities_Geleen = UsePN (mkPN "Geleen") ; + Countries_CAM_provinces_Centre = UsePN (mkPN "Centre") ; + Islands_Chios = UsePN (mkPN "Chios") ; + Countries_TJ_provinces_Gansu = UsePN (mkPN "Gansu") ; + Countries_UZB_provinces_Andijon = UsePN (mkPN "Andijon") ; + Egypt = UsePN (mkPN "Egypt") ; + Countries_USA_provinces_Missouri_cities_JeffersonCity = UsePN (mkPN "Jefferson City") ; + Countries_THA_provinces_PrachuapKhiriKhan = UsePN (mkPN "Prachuap Khiri Khan") ; + Estonia = UsePN (mkPN "Estonia") ; + Countries_D_provinces_MecklenburgVorpommern_cities_Rostock = UsePN (mkPN "Rostock") ; + Countries_EAT_provinces_Rukwa_cities_Sumbawanga = UsePN (mkPN "Sumbawanga") ; + Countries_D_provinces_NordrheinWestfalen_cities_Bottrop = UsePN (mkPN "Bottrop") ; + Countries_J_provinces_Aomori = UsePN (mkPN "Aomori") ; + Countries_WAN_cities_Kaduna = UsePN (mkPN "Kaduna") ; + Countries_VN_provinces_LamDong = UsePN (mkPN "Lam Dong") ; + Organizations_SACU = UsePN (mkPN "Southern African Customs Union") ; + Countries_TJ_provinces_Guangdong_cities_Guangzhou = UsePN (mkPN "Guangzhou") ; + Countries_LT_cities_Vilnius = UsePN (mkPN "Vilnius") ; + Countries_D_provinces_Niedersachsen_cities_Gottingen = UsePN (mkPN "Gottingen") ; + Countries_USA_provinces_Maryland_cities_Baltimore = UsePN (mkPN "Baltimore") ; + Countries_ET_provinces_Aswan_cities_Aswan = UsePN (mkPN "Aswan") ; + Countries_D_provinces_Brandenburg_cities_Potsdam = UsePN (mkPN "Potsdam") ; + Countries_TR_provinces_Denizli = UsePN (mkPN "Denizli") ; + Countries_TJ_provinces_Hunan_cities_Leiyang = UsePN (mkPN "Leiyang") ; + Latvia = UsePN (mkPN "Latvia") ; + Countries_KAZ_provinces_Leninsk_munic_cities_Leninsk = UsePN (mkPN "Leninsk") ; + Countries_H_provinces_Csongrad = UsePN (mkPN "Csongrad") ; + Countries_R_provinces_Leningradskayaoblast_cities_Kolpino = UsePN (mkPN "Kolpino") ; + Countries_GB_provinces_Leicestershire_cities_Leichester = UsePN (mkPN "Leichester") ; + Countries_RC_provinces_Hualien = UsePN (mkPN "Hualien") ; + Rivers_Busira = UsePN (mkPN "Busira") ; + Countries_VN_provinces_TayNinh = UsePN (mkPN "Tay Ninh") ; + Mountains_Joekul = UsePN (mkPN "Joekul") ; + Countries_WAN_cities_Ilesha = UsePN (mkPN "Ilesha") ; + Countries_WAN_cities_Zaria = UsePN (mkPN "Zaria") ; + Countries_J_provinces_Ehime_cities_Matsuyama = UsePN (mkPN "Matsuyama") ; + Countries_MEX_provinces_Tamaulipas = UsePN (mkPN "Tamaulipas") ; + Countries_ZRE_provinces_Shaba_cities_Kolwezi = UsePN (mkPN "Kolwezi") ; + Countries_R_provinces_Permskayaoblast = UsePN (mkPN "Permskaya oblast") ; + Countries_MEX_provinces_Jalisco_cities_Guadalajara = UsePN (mkPN "Guadalajara") ; + Islands_Arran = UsePN (mkPN "Arran") ; + Countries_USA_provinces_California_cities_Escondido = UsePN (mkPN "Escondido") ; + Countries_BR_provinces_SaoPaulo_cities_Piracicaba = UsePN (mkPN "Piracicaba") ; + Countries_CDN_provinces_Ontario_cities_Burlington = UsePN (mkPN "Burlington") ; + Countries_WAN_cities_PortHarcourt = UsePN (mkPN "Port Harcourt") ; + Countries_R_provinces_Rep_ofKalmykiya_cities_Elista = UsePN (mkPN "Elista") ; + Countries_R_provinces_ChuvashRepublic_cities_Cheboksary = UsePN (mkPN "Cheboksary") ; + Islands_SantaCatalinaIsland = UsePN (mkPN "Santa Catalina Island") ; + Rivers_Han = UsePN (mkPN "Han") ; + Countries_USA_provinces_Missouri_cities_Independence = UsePN (mkPN "Independence") ; + Countries_PA_provinces_ComarcadeSanBlas_cities_ElPorvenir = UsePN (mkPN "El Porvenir") ; + Countries_PL_provinces_Katowickie_cities_Zabrze = UsePN (mkPN "Zabrze") ; + Countries_CDN_provinces_Quebec_cities_Richmond = UsePN (mkPN "Richmond") ; + Countries_SUD_provinces_ashSharqiyah_cities_PortSudan = UsePN (mkPN "Port Sudan") ; + ElSalvador = UsePN (mkPN "El Salvador") ; + Countries_BR_provinces_EspiritoSanto_cities_Vitoria = UsePN (mkPN "Vitoria") ; + Countries_D_provinces_BadenWurttemberg_cities_Mannheim = UsePN (mkPN "Mannheim") ; + Countries_TJ_provinces_NeiMonggol_cities_Manzhouli = UsePN (mkPN "Manzhouli") ; + Countries_USA_provinces_NewYork_cities_NewYork = UsePN (mkPN "New York") ; + Countries_RI_cities_Blitar = UsePN (mkPN "Blitar") ; + Countries_GB_provinces_Berkshire_cities_Slough = UsePN (mkPN "Slough") ; + Countries_IRQ_provinces_Diyala = UsePN (mkPN "Diyala") ; + Countries_TJ_provinces_Shanxi_cities_Changzhi = UsePN (mkPN "Changzhi") ; + Countries_I_provinces_Sardegna_cities_Sassari = UsePN (mkPN "Sassari") ; + Countries_TR_provinces_Kocaeli_cities_Gebze = UsePN (mkPN "Gebze") ; + Countries_YV_provinces_Yaracuy = UsePN (mkPN "Yaracuy") ; + Countries_D_provinces_SachsenAnhalt_cities_Magdeburg = UsePN (mkPN "Magdeburg") ; + Countries_BR_provinces_SaoPaulo_cities_MojiGuacu = UsePN (mkPN "Moji Guacu") ; + Organizations_WEU = UsePN (mkPN "Western European Union") ; + Countries_MEX_cities_CiudadApodaca = UsePN (mkPN "Ciudad Apodaca") ; + Countries_IL_provinces_Central_cities_Jerusalem = UsePN (mkPN "Jerusalem") ; + Countries_BR_provinces_EspiritoSanto_cities_Serra = UsePN (mkPN "Serra") ; + Countries_TJ_provinces_Anhui_cities_Maanshan = UsePN (mkPN "Maanshan") ; + Organizations_CBSS = UsePN (mkPN "Council of the Baltic Sea States") ; + Countries_BR_provinces_RioGrandedoSul_cities_CaxiasdoSul = UsePN (mkPN "Caxias do Sul") ; + Countries_E_provinces_Cantabria_cities_Santander = UsePN (mkPN "Santander") ; + Countries_TJ_provinces_Guangdong_cities_Huizhou = UsePN (mkPN "Huizhou") ; + Countries_SF_provinces_Vaasa_cities_Vaasa = UsePN (mkPN "Vaasa") ; + Countries_PK_cities_Lahore = UsePN (mkPN "Lahore") ; + Countries_RO_provinces_Ialomita = UsePN (mkPN "Ialomita") ; + Rivers_Thames = UsePN (mkPN "Thames") ; + Countries_IR_provinces_Khorasan = UsePN (mkPN "Khorasan") ; + Countries_P_provinces_Madeira_cities_Funchal = UsePN (mkPN "Funchal") ; + Countries_USA_provinces_Indiana_cities_Gary = UsePN (mkPN "Gary") ; + Countries_IR_provinces_Hormozgan = UsePN (mkPN "Hormozgan") ; + Countries_TJ_provinces_Jilin_cities_Yanji = UsePN (mkPN "Yanji") ; + Countries_J_provinces_Ibaraki = UsePN (mkPN "Ibaraki") ; + Lakes_LakeOntario = UsePN (mkPN "Lake Ontario") ; + Countries_CDN_provinces_Ontario_cities_Toronto = UsePN (mkPN "Toronto") ; + Countries_SUD_provinces_ashSharqiyah = UsePN (mkPN "ash Sharqiyah") ; + Countries_TJ_provinces_Henan_cities_Xinxiang = UsePN (mkPN "Xinxiang") ; + Countries_TJ_provinces_Anhui_cities_Chuxian = UsePN (mkPN "Chuxian") ; + Countries_USA_provinces_SouthCarolina_cities_Columbia = UsePN (mkPN "Columbia") ; + Countries_H_provinces_Tolna = UsePN (mkPN "Tolna") ; + Countries_RA_provinces_BuenosAires_cities_Lanus = UsePN (mkPN "Lanus") ; + Countries_EAK_provinces_Coast_cities_Mombasa = UsePN (mkPN "Mombasa") ; + Countries_MEX_provinces_Guerrero = UsePN (mkPN "Guerrero") ; + Countries_MEX_provinces_Chiapas_cities_TuxtlaGutierrez = UsePN (mkPN "Tuxtla Gutierrez") ; + Countries_BR_cities_Ibirite = UsePN (mkPN "Ibirite") ; + Countries_THA_provinces_Petchanbun = UsePN (mkPN "Petchanbun") ; + Countries_H_provinces_Nograd_cities_Salgotarjan = UsePN (mkPN "Salgotarjan") ; + Countries_YV_provinces_Miranda_cities_Baruta = UsePN (mkPN "Baruta") ; + Countries_RO_provinces_Vrancea_cities_Focsani = UsePN (mkPN "Focsani") ; + Countries_TJ_provinces_Hunan_cities_Changsha = UsePN (mkPN "Changsha") ; + Mountains_HarneyPeak = UsePN (mkPN "Harney Peak") ; + Countries_BR_provinces_SaoPaulo_cities_Maua = UsePN (mkPN "Maua") ; + Countries_UZB_provinces_Bukhoro_cities_Bukhoro = UsePN (mkPN "Bukhoro") ; + Islands_CangarooIsland = UsePN (mkPN "Cangaroo Island") ; + Deserts_Sagiael_Hamra = UsePN (mkPN "Sagia el-Hamra") ; + Countries_R_provinces_Altayskiykray = UsePN (mkPN "Altayskiy kray") ; + Zambia = UsePN (mkPN "Zambia") ; + Countries_RCH_cities_Santiago = UsePN (mkPN "Santiago") ; + Countries_RO_provinces_Sibiu = UsePN (mkPN "Sibiu") ; + Countries_MOC_provinces_Maputo_munic_cities_Maputo = UsePN (mkPN "Maputo") ; + Countries_IRQ_provinces_SalahadDin_cities_Samarra = UsePN (mkPN "Samarra") ; + Countries_CZ_provinces_Severocesky = UsePN (mkPN "Severocesky") ; + Countries_GB_provinces_Warwickshire_cities_Nuneaton = UsePN (mkPN "Nuneaton") ; + Countries_GB_provinces_Gwynedd_cities_Caernarfon = UsePN (mkPN "Caernarfon") ; + Countries_YV_provinces_Barinas = UsePN (mkPN "Barinas") ; + Countries_RA_provinces_Cordoba = UsePN (mkPN "Cordoba") ; + Countries_USA_provinces_Nebraska = UsePN (mkPN "Nebraska") ; + Countries_cid_cia_Man_cities_Douglas = UsePN (mkPN "Douglas") ; + Countries_YV_provinces_Falcon = UsePN (mkPN "Falcon") ; + Countries_GB_provinces_Nottinghamshire = UsePN (mkPN "Nottinghamshire") ; + Countries_R_provinces_Sakhalinskayaoblast = UsePN (mkPN "Sakhalinskaya oblast") ; + Countries_H_provinces_Miskolc_munic_cities_Miskolc = UsePN (mkPN "Miskolc") ; + Countries_IND_provinces_AndamanandNicobarIs__cities_PortBlair = UsePN (mkPN "Port Blair") ; + Countries_R_provinces_Chukotskyao_cities_Anadyr = UsePN (mkPN "Anadyr") ; + Countries_J_provinces_Saitama = UsePN (mkPN "Saitama") ; + Countries_RO_provinces_Tulcea = UsePN (mkPN "Tulcea") ; + Countries_R_provinces_Chitinskayaoblast = UsePN (mkPN "Chitinskaya oblast") ; + Countries_MYA_provinces_Mandalay_cities_Mandalay = UsePN (mkPN "Mandalay") ; + Yemen = UsePN (mkPN "Yemen") ; + Islands_Nauru = UsePN (mkPN "Nauru") ; + Countries_IND_provinces_Maharashtra_cities_Kolhapur = UsePN (mkPN "Kolhapur") ; + Countries_EAK_provinces_RiftValley_cities_Kericho = UsePN (mkPN "Kericho") ; + Countries_IND_provinces_Chandigarh_cities_Chandigarh = UsePN (mkPN "Chandigarh") ; + Countries_USA_provinces_Nebraska_cities_Omaha = UsePN (mkPN "Omaha") ; + Countries_GB_provinces_WestMidlands_cities_Walsall = UsePN (mkPN "Walsall") ; + Countries_IR_provinces_Markazi = UsePN (mkPN "Markazi") ; + Countries_EAK_provinces_RiftValley_cities_Kitale = UsePN (mkPN "Kitale") ; + Countries_D_provinces_NordrheinWestfalen_cities_Hagen = UsePN (mkPN "Hagen") ; + Countries_EAT_provinces_KusiniPemba = UsePN (mkPN "Kusini Pemba") ; + Countries_CO_provinces_Vichada = UsePN (mkPN "Vichada") ; + Countries_AUS_provinces_SouthAustralia_cities_Adelaide = UsePN (mkPN "Adelaide") ; + Countries_J_provinces_Kumamoto_cities_Kumamoto = UsePN (mkPN "Kumamoto") ; + Romania = UsePN (mkPN "Romania") ; + Islands_Paramuschir = UsePN (mkPN "Paramuschir") ; + Countries_VN_provinces_HaTinh = UsePN (mkPN "Ha Tinh") ; + Countries_USA_provinces_Connecticut_cities_Waterbury = UsePN (mkPN "Waterbury") ; + Countries_B_provinces_Brabant_cities_Brussels = UsePN (mkPN "Brussels") ; + Countries_DZ_cities_Tebessa = UsePN (mkPN "Tebessa") ; + Countries_GB_provinces_BlaenauGwent = UsePN (mkPN "Blaenau Gwent") ; + Countries_LS_cities_Maseru = UsePN (mkPN "Maseru") ; + Countries_MEX_provinces_NuevoLeon_cities_CiudadSantaCatarina = UsePN (mkPN "Ciudad Santa Catarina") ; + Countries_USA_provinces_California_cities_Orange = UsePN (mkPN "Orange") ; + Countries_USA_provinces_Distr_Columbia = UsePN (mkPN "Distr. Columbia") ; + Countries_IND_provinces_Maharashtra_cities_NewBombay = UsePN (mkPN "New Bombay") ; + Countries_CDN_provinces_Manitoba = UsePN (mkPN "Manitoba") ; + Countries_BR_provinces_SaoPaulo_cities_FerrazdeVasconcelos = UsePN (mkPN "Ferraz de Vasconcelos") ; + Countries_F_provinces_IledeFrance = UsePN (mkPN "Ile de France") ; + Countries_TJ_provinces_Hebei_cities_Handan = UsePN (mkPN "Handan") ; + Countries_USA_provinces_Virginia = UsePN (mkPN "Virginia") ; + Countries_S_provinces_Ostergotland = UsePN (mkPN "Ostergotland") ; + Countries_VN_cities_Saigon = UsePN (mkPN "Saigon") ; + Austria = UsePN (mkPN "Austria") ; + Countries_R_provinces_Tambovskayaoblast = UsePN (mkPN "Tambovskaya oblast") ; + Countries_HCA_provinces_Intibuca_cities_LaEsperanza = UsePN (mkPN "La Esperanza") ; + Countries_TR_provinces_Erzurum = UsePN (mkPN "Erzurum") ; + Countries_R_provinces_Kostromskayaoblast_cities_Kostroma = UsePN (mkPN "Kostroma") ; + Countries_EAK_provinces_Nyanza = UsePN (mkPN "Nyanza") ; + Countries_P_provinces_Coimbra_cities_Coimbra = UsePN (mkPN "Coimbra") ; + Mountains_Huascaran = UsePN (mkPN "Huascaran") ; + Countries_F_provinces_Centre_cities_Tours = UsePN (mkPN "Tours") ; + Countries_USA_provinces_Louisiana_cities_NewOrleans = UsePN (mkPN "New Orleans") ; + Countries_cid_cia_Turks_and_Caicos_Islands = UsePN (mkPN "Turks and Caicos Islands") ; + Countries_ES_provinces_LaPaz_cities_Zacatecoluca = UsePN (mkPN "Zacatecoluca") ; + Countries_UA_provinces_Mykolayivska_cities_Mykolayiv = UsePN (mkPN "Mykolayiv") ; + Countries_GB_provinces_GreaterManchester_cities_Trafford = UsePN (mkPN "Trafford") ; + Countries_UZB_provinces_Jizzakh_cities_Jizzakh = UsePN (mkPN "Jizzakh") ; + Rivers_Oesterdalaelv = UsePN (mkPN "Oesterdalaelv") ; + Countries_BR_provinces_Goias_cities_Araguaina = UsePN (mkPN "Araguaina") ; + Countries_VN_provinces_CaoBang = UsePN (mkPN "Cao Bang") ; + Countries_cid_cia_Martinique_cities_Fort_de_France = UsePN (mkPN "Fort-de-France") ; + Countries_GB_provinces_NorthYorkshire_cities_Scarborough = UsePN (mkPN "Scarborough") ; + Countries_CDN_provinces_Ontario_cities_Scarborough = UsePN (mkPN "Scarborough") ; + Lakes_LakeTiticaca = UsePN (mkPN "Lake Titicaca") ; + Countries_RP_cities_Kalookan = UsePN (mkPN "Kalookan") ; + Countries_R_provinces_SanktPeterburg = UsePN (mkPN "Sankt Peterburg") ; + Countries_GR_provinces_DhytikiEllas = UsePN (mkPN "Dhytiki Ellas") ; + Countries_D_provinces_Saarland_cities_Saarbrucken = UsePN (mkPN "Saarbrucken") ; + Countries_RO_provinces_Gorj_cities_TirguJiu = UsePN (mkPN "Tirgu Jiu") ; + Countries_TR_provinces_Yozgat_cities_Yozgat = UsePN (mkPN "Yozgat") ; + Countries_J_provinces_Toyama_cities_Toyama = UsePN (mkPN "Toyama") ; + Countries_SME_cities_Paramaribo = UsePN (mkPN "Paramaribo") ; + Countries_KAZ_provinces_Aqmola_cities_Aqmola = UsePN (mkPN "Aqmola") ; + Countries_MEX_provinces_Yucatan_cities_Merida = UsePN (mkPN "Merida") ; + Countries_TR_provinces_Mardin_cities_Mardin = UsePN (mkPN "Mardin") ; + Countries_CH_provinces_NE = UsePN (mkPN "NE") ; + Countries_cid_cia_Bermuda = UsePN (mkPN "Bermuda") ; + Countries_SF_provinces_Haeme_cities_Lahti = UsePN (mkPN "Lahti") ; + Countries_F_provinces_Limousin = UsePN (mkPN "Limousin") ; + Countries_GB_provinces_Derbyshire = UsePN (mkPN "Derbyshire") ; + Countries_ES_provinces_SanMiguel_cities_SanMiguel = UsePN (mkPN "San Miguel") ; + Countries_TJ_provinces_Henan_cities_Xinyang = UsePN (mkPN "Xinyang") ; + Countries_BRU_cities_BandarSeriBegawan = UsePN (mkPN "Bandar Seri Begawan") ; + Countries_PE_provinces_Amazonas_cities_Chachapoyas = UsePN (mkPN "Chachapoyas") ; + Countries_ET_provinces_Sohag_cities_Sohag = UsePN (mkPN "Sohag") ; + Countries_IND_provinces_LakshadweepIs_ = UsePN (mkPN "Lakshadweep Is.") ; + Countries_KAZ_provinces_SoltustikQazaqstan = UsePN (mkPN "Soltustik Qazaqstan") ; + Countries_BR_provinces_SaoPaulo_cities_Embu = UsePN (mkPN "Embu") ; + Islands_SriLanka = UsePN (mkPN "Sri Lanka") ; + Organizations_FZ = UsePN (mkPN "Franc Zone") ; + Countries_CZ_provinces_Praha = UsePN (mkPN "Praha") ; + Countries_USA_provinces_Missouri_cities_KansasCity = UsePN (mkPN "Kansas City") ; + Mountains_Tamgak = UsePN (mkPN "Tamgak") ; + Countries_ANG_provinces_Uige_cities_Uige = UsePN (mkPN "Uige") ; + Countries_USA_provinces_California_cities_Irvine = UsePN (mkPN "Irvine") ; + Countries_R_provinces_Orenburgskayaoblast = UsePN (mkPN "Orenburgskaya oblast") ; + Countries_BR_provinces_Maranhao_cities_SaoLuis = UsePN (mkPN "Sao Luis") ; + Countries_MEX_provinces_Mexico_Estadode_cities_Toluca = UsePN (mkPN "Toluca") ; + Countries_BR_provinces_Parana_cities_Colombo = UsePN (mkPN "Colombo") ; + Countries_TR_provinces_Kars_cities_Kars = UsePN (mkPN "Kars") ; + Countries_USA_provinces_California_cities_Fullerton = UsePN (mkPN "Fullerton") ; + Countries_TJ_provinces_Gansu_cities_Wuwei = UsePN (mkPN "Wuwei") ; + Countries_TJ_provinces_Hebei_cities_Shijiazhuang = UsePN (mkPN "Shijiazhuang") ; + Countries_PE_provinces_MadredeDios_cities_PuertoMaldonado = UsePN (mkPN "Puerto Maldonado") ; + Countries_NOK_cities_Nampo = UsePN (mkPN "Nampo") ; + Countries_CO_provinces_Huila = UsePN (mkPN "Huila") ; + Namibia = UsePN (mkPN "Namibia") ; + Countries_AUS_provinces_NewSouthWales_cities_Newcastle = UsePN (mkPN "Newcastle") ; + Countries_PA_provinces_Colon_cities_Colon = UsePN (mkPN "Colon") ; + Countries_MAL_provinces_Melaka = UsePN (mkPN "Melaka") ; + Countries_USA_provinces_Virginia_cities_Richmond = UsePN (mkPN "Richmond") ; + Countries_D_provinces_Bayern = UsePN (mkPN "Bayern") ; + Countries_SUD_provinces_AalianNil_cities_Malakal = UsePN (mkPN "Malakal") ; + Countries_E_provinces_Andalusia_cities_Huelva = UsePN (mkPN "Huelva") ; + Organizations_ILO = UsePN (mkPN "International Labor Organization") ; + Countries_BR_provinces_SaoPaulo_cities_Itapetininga = UsePN (mkPN "Itapetininga") ; + Rivers_Suchona = UsePN (mkPN "Suchona") ; + Countries_MEX_provinces_Sinaloa_cities_LosMochis = UsePN (mkPN "Los Mochis") ; + Countries_TJ_provinces_Guangdong_cities_Foshan = UsePN (mkPN "Foshan") ; + Countries_D_provinces_RheinlandPfalz_cities_Mainz = UsePN (mkPN "Mainz") ; + Countries_BR_provinces_SaoPaulo_cities_Americana = UsePN (mkPN "Americana") ; + Countries_PA_provinces_Chiriqui = UsePN (mkPN "Chiriqui") ; + Countries_RC_provinces_Chiai = UsePN (mkPN "Chiai") ; + Countries_VN_provinces_Hanoi = UsePN (mkPN "Hanoi") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Beihai = UsePN (mkPN "Beihai") ; + Countries_TJ_cities_Macau = UsePN (mkPN "Macau") ; + Countries_USA_provinces_Florida_cities_Miami = UsePN (mkPN "Miami") ; + Countries_TJ_provinces_Guangdong_cities_Zhanjiang = UsePN (mkPN "Zhanjiang") ; + Countries_RC_provinces_Tainan_cities_Hsinying = UsePN (mkPN "Hsinying") ; + Countries_BR_provinces_SaoPaulo_cities_Limeira = UsePN (mkPN "Limeira") ; + Countries_YV_provinces_Yaracuy_cities_SanFelipe = UsePN (mkPN "San Felipe") ; + Countries_AL_cities_Korce = UsePN (mkPN "Korce") ; + Countries_CO_provinces_Guajira_La_cities_Riohacha = UsePN (mkPN "Riohacha") ; + Countries_IND_provinces_Rajasthan_cities_Jaipur = UsePN (mkPN "Jaipur") ; + Countries_CR_provinces_Guanacaste = UsePN (mkPN "Guanacaste") ; + Countries_N_provinces_Rogaland_cities_Stavanger = UsePN (mkPN "Stavanger") ; + Countries_E_provinces_Madrid = UsePN (mkPN "Madrid") ; + Countries_WAN_cities_Offa = UsePN (mkPN "Offa") ; + Countries_IND_provinces_MadhyaPradesh_cities_Indore = UsePN (mkPN "Indore") ; + Countries_BR_provinces_Goias_cities_Luziania = UsePN (mkPN "Luziania") ; + Countries_USA_provinces_Virginia_cities_Alexandria = UsePN (mkPN "Alexandria") ; + Countries_RA_provinces_BuenosAires_cities_MardelPlata = UsePN (mkPN "Mar del Plata") ; + Countries_CO_provinces_ValledeCauca = UsePN (mkPN "Valle de Cauca") ; + Countries_GB_provinces_WestMidlands_cities_WestBromwich = UsePN (mkPN "West Bromwich") ; + Countries_PL_provinces_Katowickie_cities_Bytom = UsePN (mkPN "Bytom") ; + Countries_SN_provinces_Kaolack = UsePN (mkPN "Kaolack") ; + Countries_USA_provinces_Minnesota_cities_Minneapolis = UsePN (mkPN "Minneapolis") ; + Organizations_ACP = UsePN (mkPN "African, Caribbean, and Pacific Countries") ; + Countries_USA_provinces_California_cities_Fresno = UsePN (mkPN "Fresno") ; + Mountains_GranitePeak = UsePN (mkPN "Granite Peak") ; + Countries_R_provinces_Kamchatskayaoblast_cities_PetropavlovskKamchatsky = UsePN (mkPN "Petropavlovsk Kamchatsky") ; + Countries_A_provinces_UpperAustria_cities_Linz = UsePN (mkPN "Linz") ; + Switzerland = UsePN (mkPN "Switzerland") ; + Countries_USA_provinces_Florida_cities_Jacksonville = UsePN (mkPN "Jacksonville") ; + Countries_IND_provinces_Kerala = UsePN (mkPN "Kerala") ; + Countries_USA_provinces_Florida = UsePN (mkPN "Florida") ; + Countries_ANG_provinces_CuanzaNorte_cities_Ndalatando = UsePN (mkPN "Ndalatando") ; + Countries_NIC_cities_Leon = UsePN (mkPN "Leon") ; + Countries_P_provinces_Portalegre = UsePN (mkPN "Portalegre") ; + Countries_RC_provinces_Taichung = UsePN (mkPN "Taichung") ; + Countries_TR_provinces_Balikesir = UsePN (mkPN "Balikesir") ; + Deserts_Tanami = UsePN (mkPN "Tanami") ; + Countries_P_provinces_Setubal = UsePN (mkPN "Setubal") ; + Countries_TJ_provinces_Shandong_cities_Longkou = UsePN (mkPN "Longkou") ; + Countries_R_provinces_Chelyabinskayaoblast = UsePN (mkPN "Chelyabinskaya oblast") ; + Countries_USA_provinces_California_cities_Norwalk = UsePN (mkPN "Norwalk") ; + Countries_G_cities_Libreville = UsePN (mkPN "Libreville") ; + Countries_B_provinces_Brabant = UsePN (mkPN "Brabant") ; + Countries_CH_provinces_ZH_cities_Winterthur = UsePN (mkPN "Winterthur") ; + Countries_S_provinces_Orebro = UsePN (mkPN "Orebro") ; + Countries_I_provinces_Calabria = UsePN (mkPN "Calabria") ; + Countries_TR_provinces_Kirsehir_cities_Kirsehir = UsePN (mkPN "Kirsehir") ; + Countries_USA_provinces_Michigan_cities_AnnArbor = UsePN (mkPN "Ann Arbor") ; + Islands_Sanday = UsePN (mkPN "Sanday") ; + Mountains_Aconcagua = UsePN (mkPN "Aconcagua") ; + Countries_MYA_provinces_Sagaing = UsePN (mkPN "Sagaing") ; + Countries_NL_provinces_NoordHolland_cities_Haarlem = UsePN (mkPN "Haarlem") ; + Countries_A_provinces_Tyrol_cities_Innsbruck = UsePN (mkPN "Innsbruck") ; + Countries_RI_cities_Jakarta = UsePN (mkPN "Jakarta") ; + Countries_IND_provinces_Bihar_cities_BokaraSteelCity = UsePN (mkPN "Bokara Steel City") ; + Countries_TJ_provinces_Zhejiang_cities_Jiaxing = UsePN (mkPN "Jiaxing") ; + Countries_USA_provinces_California_cities_GardenGrove = UsePN (mkPN "Garden Grove") ; + Countries_THA_provinces_NakhonPhanom = UsePN (mkPN "Nakhon Phanom") ; + Countries_BR_provinces_RiodeJaneiro_cities_BelfortRoxo = UsePN (mkPN "Belfort Roxo") ; + Countries_J_provinces_Osaka = UsePN (mkPN "Osaka") ; + Countries_C_provinces_Granma_cities_Manzanillo = UsePN (mkPN "Manzanillo") ; + Countries_HCA_provinces_Cortes = UsePN (mkPN "Cortes") ; + Countries_SF_provinces_Uusimaa_cities_Espoo = UsePN (mkPN "Espoo") ; + Countries_CO_provinces_Guainia = UsePN (mkPN "Guainia") ; + Countries_CH_provinces_BE = UsePN (mkPN "BE") ; + Countries_R_provinces_Nizhegorodskayaoblast_cities_NizhniyNovgorod = UsePN (mkPN "Nizhniy Novgorod") ; + Countries_D_provinces_NordrheinWestfalen_cities_Paderborn = UsePN (mkPN "Paderborn") ; + Countries_D_provinces_NordrheinWestfalen_cities_Bochum = UsePN (mkPN "Bochum") ; + Countries_TJ_provinces_NeiMonggol_cities_Linhe = UsePN (mkPN "Linhe") ; + Countries_PL_provinces_Opolskie_cities_Opole = UsePN (mkPN "Opole") ; + Islands_Lipari = UsePN (mkPN "Lipari") ; + Countries_BD_cities_Chittagong = UsePN (mkPN "Chittagong") ; + Countries_RA_provinces_Neuquen_cities_Neuquen = UsePN (mkPN "Neuquen") ; + Countries_IRQ_provinces_Dahuk = UsePN (mkPN "Dahuk") ; + Countries_PL_provinces_Bialostockie_cities_Bialystok = UsePN (mkPN "Bialystok") ; + Countries_PE_provinces_LaLibertad_cities_Trujillo = UsePN (mkPN "Trujillo") ; + Countries_D_provinces_Niedersachsen_cities_Oldenburg = UsePN (mkPN "Oldenburg") ; + Countries_UA_provinces_Dnipropetrovska_cities_Dnipropetrovsk = UsePN (mkPN "Dnipropetrovsk") ; + Countries_CH_provinces_AR = UsePN (mkPN "AR") ; + Guinea_Bissau = UsePN (mkPN "Guinea-Bissau") ; + Countries_HCA_provinces_ElParaiso_cities_Yuscaran = UsePN (mkPN "Yuscaran") ; + Organizations_UNFICYP = UsePN (mkPN "United Nations Force in Cyprus") ; + Countries_IND_provinces_DamanandDiu = UsePN (mkPN "Daman and Diu") ; + Islands_Kos = UsePN (mkPN "Kos") ; + Countries_TJ_provinces_Anhui_cities_Wuhu = UsePN (mkPN "Wuhu") ; + Countries_R_provinces_Kaluzhskayaoblast_cities_Obninsk = UsePN (mkPN "Obninsk") ; + Countries_NL_provinces_Drenthe_cities_Assen = UsePN (mkPN "Assen") ; + Mountains_BlueMountainPeak = UsePN (mkPN "Blue Mountain Peak") ; + Countries_R_provinces_Lipetskayaoblast = UsePN (mkPN "Lipetskaya oblast") ; + Countries_IR_provinces_Yazd_cities_Yazd = UsePN (mkPN "Yazd") ; + Countries_IR_provinces_Kordestan_cities_Sanandaj = UsePN (mkPN "Sanandaj") ; + Countries_H_provinces_Veszprem = UsePN (mkPN "Veszprem") ; + Countries_TR_provinces_Nigde_cities_Nigde = UsePN (mkPN "Nigde") ; + Nepal = UsePN (mkPN "Nepal") ; + Countries_cid_cia_Guernsey = UsePN (mkPN "Guernsey") ; + Countries_PA_provinces_LosSantos_cities_LasTablas = UsePN (mkPN "Las Tablas") ; + Countries_R_provinces_Kurganskayaoblast_cities_Kurgan = UsePN (mkPN "Kurgan") ; + Countries_PE_provinces_Arequipa_cities_Arequipa = UsePN (mkPN "Arequipa") ; + Countries_J_provinces_Tochigi_cities_Utsonomiya = UsePN (mkPN "Utsonomiya") ; + Countries_BR_provinces_Parana_cities_Apucarana = UsePN (mkPN "Apucarana") ; + Countries_BR_provinces_RiodeJaneiro_cities_Nilopolis = UsePN (mkPN "Nilopolis") ; + Countries_GB_provinces_SouthYorkshire_cities_Rotherham = UsePN (mkPN "Rotherham") ; + Countries_PL_provinces_Siedleckie = UsePN (mkPN "Siedleckie") ; + Countries_F_provinces_RhoneAlpes = UsePN (mkPN "Rhone Alpes") ; + Countries_PK_cities_Gujrat = UsePN (mkPN "Gujrat") ; + Countries_RI_cities_PangkalPinang = UsePN (mkPN "Pangkal Pinang") ; + Countries_USA_provinces_Delaware_cities_Dover = UsePN (mkPN "Dover") ; + Countries_SF_provinces_Pohjols_Karjala = UsePN (mkPN "Pohjols-Karjala") ; + Countries_USA_provinces_Arizona = UsePN (mkPN "Arizona") ; + Countries_MEX_provinces_QuintanaRoo_cities_Cancun = UsePN (mkPN "Cancun") ; + Countries_RL_cities_Beirut = UsePN (mkPN "Beirut") ; + Countries_ET_provinces_ElBuhayra = UsePN (mkPN "El Buhayra") ; + Rivers_Kolyma = UsePN (mkPN "Kolyma") ; + Lakes_CaspianSea = UsePN (mkPN "Caspian Sea") ; + Lakes_LakeVictoria = UsePN (mkPN "Lake Victoria") ; + Countries_MEX_provinces_Durango = UsePN (mkPN "Durango") ; + Countries_J_provinces_Miyagi = UsePN (mkPN "Miyagi") ; + Countries_AUS_provinces_NewSouthWales = UsePN (mkPN "New South Wales") ; + Seas_YellowSea = UsePN (mkPN "Yellow Sea") ; + TrinidadAndTobago = UsePN (mkPN "Trinidad and Tobago") ; + Countries_GB_provinces_Durham_cities_Darlington = UsePN (mkPN "Darlington") ; + Countries_UZB_provinces_Toshkent_cities_Olmaliq = UsePN (mkPN "Olmaliq") ; + Countries_RA_provinces_Catamarca = UsePN (mkPN "Catamarca") ; + Countries_RWA_cities_Kigali = UsePN (mkPN "Kigali") ; + Countries_S_provinces_Vasternorrland = UsePN (mkPN "Vasternorrland") ; + Countries_YV_provinces_Anzoategui_cities_Barcelona = UsePN (mkPN "Barcelona") ; + Countries_CDN_provinces_YukonTerritory_cities_Whitehorse = UsePN (mkPN "Whitehorse") ; + Countries_EAK_provinces_RiftValley_cities_Eldoret = UsePN (mkPN "Eldoret") ; + Countries_USA_provinces_Texas_cities_SanAntonio = UsePN (mkPN "San Antonio") ; + Countries_CO_provinces_SantanderdelSur_cities_Floridablanca = UsePN (mkPN "Floridablanca") ; + Countries_EAT_provinces_Iringa_cities_Iringa = UsePN (mkPN "Iringa") ; + Deserts_Fesan = UsePN (mkPN "Fesan") ; + Countries_H_provinces_Bekes_cities_Bekescaba = UsePN (mkPN "Bekescaba") ; + Countries_PE_provinces_Tacna_cities_Tacna = UsePN (mkPN "Tacna") ; + Countries_MAL_provinces_Sarawak = UsePN (mkPN "Sarawak") ; + Countries_D_provinces_Hamburg_cities_Hamburg = UsePN (mkPN "Hamburg") ; + Countries_RA_provinces_LaPampa = UsePN (mkPN "La Pampa") ; + Countries_GB_provinces_Anglesey = UsePN (mkPN "Anglesey") ; + Countries_RM_provinces_Fianarantsoa = UsePN (mkPN "Fianarantsoa") ; + Countries_SN_provinces_Thies = UsePN (mkPN "Thies") ; + Countries_PL_provinces_Katowickie_cities_Tychy = UsePN (mkPN "Tychy") ; + Countries_EAT_provinces_Pwani = UsePN (mkPN "Pwani") ; + Lakes_LakeOkeechobee = UsePN (mkPN "Lake Okeechobee") ; + Slovenia = UsePN (mkPN "Slovenia") ; + China = UsePN (mkPN "China") ; + Countries_NOK_cities_Anju = UsePN (mkPN "Anju") ; + Countries_RA_provinces_Misiones = UsePN (mkPN "Misiones") ; + Countries_THA_provinces_Nan = UsePN (mkPN "Nan") ; + Countries_YV_provinces_Monagas = UsePN (mkPN "Monagas") ; + Countries_MEX_provinces_Zacatecas_cities_Zacatecas = UsePN (mkPN "Zacatecas") ; + Countries_PL_provinces_Ostroleckie = UsePN (mkPN "Ostroleckie") ; + Organizations_WCL = UsePN (mkPN "World Confederation of Labor") ; + Countries_RI_cities_Surakarta = UsePN (mkPN "Surakarta") ; + Countries_AUS_provinces_CocosIslands_cities_BantamVillage = UsePN (mkPN "Bantam Village") ; + Countries_PK_cities_Nawabshah = UsePN (mkPN "Nawabshah") ; + Countries_cid_cia_Jersey = UsePN (mkPN "Jersey") ; + Countries_E_provinces_Madrid_cities_Fuenlabrada = UsePN (mkPN "Fuenlabrada") ; + Countries_TJ_provinces_Guangdong_cities_Zhaoqing = UsePN (mkPN "Zhaoqing") ; + Countries_GB_provinces_Staffordshire_cities_NewcastleunderLyme = UsePN (mkPN "Newcastle under Lyme") ; + Lakes_LakeKariba = UsePN (mkPN "Lake Kariba") ; + Countries_IND_provinces_Manipur_cities_Imphal = UsePN (mkPN "Imphal") ; + Countries_IRQ_provinces_Baghdad_cities_Baghdad = UsePN (mkPN "Baghdad") ; + Countries_R_provinces_Rep_ofTatarstan_cities_Almetyevsk = UsePN (mkPN "Almetyevsk") ; + Countries_A_provinces_Carinthia = UsePN (mkPN "Carinthia") ; + Countries_PL_provinces_Bialostockie = UsePN (mkPN "Bialostockie") ; + Countries_F_provinces_ChampagneArdenne = UsePN (mkPN "Champagne Ardenne") ; + Countries_BR_provinces_RioGrandedoSul_cities_PortoAlegre = UsePN (mkPN "Porto Alegre") ; + Countries_USA_provinces_Michigan_cities_Flint = UsePN (mkPN "Flint") ; + Countries_BR_provinces_SaoPaulo_cities_Carapicuiba = UsePN (mkPN "Carapicuiba") ; + Countries_TJ_provinces_Jiangsu_cities_Liyang = UsePN (mkPN "Liyang") ; + Countries_P_provinces_CasteloBranco = UsePN (mkPN "Castelo Branco") ; + Countries_R_provinces_Rep_ofKalmykiya = UsePN (mkPN "Rep. of Kalmykiya") ; + Countries_RO_provinces_Vaslui_cities_Vaslui = UsePN (mkPN "Vaslui") ; + Countries_SF_provinces_Kuopio = UsePN (mkPN "Kuopio") ; + Mountains_Feldberg = UsePN (mkPN "Feldberg") ; + Countries_THA_provinces_BangkokMetropolis = UsePN (mkPN "Bangkok Metropolis") ; + Islands_Jamaica = UsePN (mkPN "Jamaica") ; + Countries_VN_provinces_VinhLong = UsePN (mkPN "Vinh Long") ; + Countries_R_provinces_Volgogradskayaoblast_cities_Volzhsky = UsePN (mkPN "Volzhsky") ; + Countries_J_provinces_Iwate_cities_Morioka = UsePN (mkPN "Morioka") ; + Countries_GB_provinces_Kent_cities_Maidstone = UsePN (mkPN "Maidstone") ; + Organizations_CIS = UsePN (mkPN "Commonwealth of Independent States") ; + Countries_PL_provinces_Zielonogorskie_cities_ZielonaGora = UsePN (mkPN "Zielona Gora") ; + Countries_RT_cities_Lome = UsePN (mkPN "Lome") ; + Countries_BR_provinces_SaoPaulo_cities_Taubate = UsePN (mkPN "Taubate") ; + Countries_E_provinces_CastileandLeon_cities_Leon = UsePN (mkPN "Leon") ; + Islands_SaintKitts = UsePN (mkPN "Saint Kitts") ; + Countries_RSA_cities_Lekoa = UsePN (mkPN "Lekoa") ; + Countries_VN_provinces_QuangNamDaNang = UsePN (mkPN "Quang Nam Da Nang") ; + Countries_MOC_provinces_Sofala = UsePN (mkPN "Sofala") ; + Countries_R_provinces_Belgorodskayaoblast_cities_StaryOskol = UsePN (mkPN "Stary Oskol") ; + Islands_Panarea = UsePN (mkPN "Panarea") ; + Countries_BR_cities_Contagem = UsePN (mkPN "Contagem") ; + Countries_TJ_provinces_GuangxiZhuangzu_cities_Wuzhou = UsePN (mkPN "Wuzhou") ; + Slovakia = UsePN (mkPN "Slovakia") ; + Organizations_AFESD = UsePN (mkPN "Arab Fund for Economic and Social Development") ; + Countries_PL_provinces_Czestochowskie = UsePN (mkPN "Czestochowskie") ; + Rivers_Save = UsePN (mkPN "Save") ; + Countries_UA_provinces_Donetska_cities_Mariupol = UsePN (mkPN "Mariupol") ; + Countries_IND_provinces_Tripura_cities_Agartala = UsePN (mkPN "Agartala") ; + Countries_CR_provinces_Heredia_cities_Heredia = UsePN (mkPN "Heredia") ; + Countries_WAN_cities_DebaHabe = UsePN (mkPN "Deba Habe") ; + Countries_USA_provinces_Arizona_cities_Tempe = UsePN (mkPN "Tempe") ; + Rivers_Uelle = UsePN (mkPN "Uelle") ; + Countries_BR_provinces_SaoPaulo_cities_SaoCarlos = UsePN (mkPN "Sao Carlos") ; + Countries_F_provinces_Bretagne_cities_Brest = UsePN (mkPN "Brest") ; + Rivers_Tana = UsePN (mkPN "Tana") ; + Countries_IL_provinces_North_cities_Nazareth = UsePN (mkPN "Nazareth") ; + Countries_Z_provinces_Northwestern = UsePN (mkPN "Northwestern") ; + Countries_TR_provinces_Edirne_cities_Edirne = UsePN (mkPN "Edirne") ; + Countries_Z_provinces_Lusaka_cities_Lusaka = UsePN (mkPN "Lusaka") ; + Countries_ZRE_provinces_KasaiOccidental_cities_Tshikapa = UsePN (mkPN "Tshikapa") ; + Countries_VN_provinces_HaGiang = UsePN (mkPN "Ha Giang") ; + Countries_IRQ_provinces_AlQadisiyah_cities_Diwaniyah = UsePN (mkPN "Diwaniyah") ; + Countries_P_provinces_Lisbon_cities_Almada = UsePN (mkPN "Almada") ; + Countries_R_provinces_KarachayevoCherkesskRep__cities_Cherkessk = UsePN (mkPN "Cherkessk") ; + Countries_TR_cities_Hatay = UsePN (mkPN "Hatay") ; + Countries_IND_provinces_WestBengal_cities_Haora = UsePN (mkPN "Haora") ; + Countries_BR_provinces_Pernambuco_cities_JaboataodosGuararapes = UsePN (mkPN "Jaboatao dos Guararapes") ; + Countries_IND_provinces_UttarPradesh_cities_Bareilly = UsePN (mkPN "Bareilly") ; + Countries_RSA_cities_Alexandra = UsePN (mkPN "Alexandra") ; + Countries_R_provinces_Astrakhanskayaoblast = UsePN (mkPN "Astrakhanskaya oblast") ; + Rivers_Bahrel_Gasal = UsePN (mkPN "Bahr el-Gasal") ; + Countries_TJ_provinces_Hunan_cities_Hengyang = UsePN (mkPN "Hengyang") ; + Countries_GB_provinces_Buckinghamshire_cities_Wycombe = UsePN (mkPN "Wycombe") ; + Uganda = UsePN (mkPN "Uganda") ; + Countries_GR_provinces_Thessalia = UsePN (mkPN "Thessalia") ; + Countries_R_provinces_Nizhegorodskayaoblast_cities_Arzamas = UsePN (mkPN "Arzamas") ; + Countries_USA_provinces_Kansas_cities_KansasCity = UsePN (mkPN "Kansas City") ; + Countries_R_provinces_Penzenskayaoblast_cities_Penza = UsePN (mkPN "Penza") ; + Countries_IRQ_provinces_AdTamim = UsePN (mkPN "Ad Tamim") ; + Countries_YV_provinces_Merida = UsePN (mkPN "Merida") ; + Countries_MEX_provinces_Aguascalientes = UsePN (mkPN "Aguascalientes") ; + Seas_AtlanticOcean = UsePN (mkPN "Atlantic Ocean") ; + Countries_EW_cities_Tallinn = UsePN (mkPN "Tallinn") ; + Countries_WS_cities_Apia = UsePN (mkPN "Apia") ; + Lakes_LagodeChapala = UsePN (mkPN "Lago de Chapala") ; + Countries_PE_provinces_Ucayali = UsePN (mkPN "Ucayali") ; + Countries_IND_provinces_DadraandNagarHaveli_cities_Silvassa = UsePN (mkPN "Silvassa") ; + Countries_GB_provinces_Leicestershire = UsePN (mkPN "Leicestershire") ; + Countries_RC_provinces_Hualien_cities_Hualien = UsePN (mkPN "Hualien") ; + Organizations_UNCRO = UsePN (mkPN "United Nations Confidence Restoration Operation in Croatia") ; + Countries_R_provinces_Moskva = UsePN (mkPN "Moskva") ; + Countries_TJ_provinces_Heilongjiang_cities_Zhaodong = UsePN (mkPN "Zhaodong") ; + Countries_RO_provinces_Ialomita_cities_Slobozia = UsePN (mkPN "Slobozia") ; + Countries_PK_cities_Lyallpur = UsePN (mkPN "Lyallpur") ; + Countries_D_provinces_Brandenburg = UsePN (mkPN "Brandenburg") ; + Countries_RI_cities_Madiun = UsePN (mkPN "Madiun") ; + Countries_IRQ_provinces_Dahuk_cities_Dahuk = UsePN (mkPN "Dahuk") ; + Countries_EAT_provinces_Morogoro_cities_Morogoro = UsePN (mkPN "Morogoro") ; + Countries_BR_provinces_RiodeJaneiro_cities_VoltaRedonda = UsePN (mkPN "Volta Redonda") ; + Organizations_UNHCR = UsePN (mkPN "United Nations Office of the High Commissioner for Refugees") ; + Rivers_Hwangho = UsePN (mkPN "Hwangho") ; + Countries_BR_provinces_SaoPaulo_cities_SantoAndre = UsePN (mkPN "Santo Andre") ; + Countries_RP_cities_Pasay = UsePN (mkPN "Pasay") ; + Countries_ROK_cities_Cheju = UsePN (mkPN "Cheju") ; + Countries_LAR_cities_Tripoli = UsePN (mkPN "Tripoli") ; + Tanzania = UsePN (mkPN "Tanzania") ; + Lakes_BarragedeMbakaou = UsePN (mkPN "Barrage de Mbakaou") ; + Countries_TJ_provinces_Hubei_cities_Yichang = UsePN (mkPN "Yichang") ; + Countries_Z_provinces_Copperbelt_cities_Ndola = UsePN (mkPN "Ndola") ; + Countries_USA_provinces_Hawaii_cities_Hilo = UsePN (mkPN "Hilo") ; + Rivers_Tshuapa = UsePN (mkPN "Tshuapa") ; + Countries_RA_provinces_Misiones_cities_Posadas = UsePN (mkPN "Posadas") ; + Countries_BR_provinces_MinasGerais_cities_Uberaba = UsePN (mkPN "Uberaba") ; + Countries_USA_provinces_Illinois_cities_Chicago = UsePN (mkPN "Chicago") ; + Countries_RO_provinces_Iasi = UsePN (mkPN "Iasi") ; + Countries_CDN_provinces_NewBrunswick_cities_Fredericton = UsePN (mkPN "Fredericton") ; + Countries_TJ_provinces_Henan_cities_Zhoukou = UsePN (mkPN "Zhoukou") ; + Countries_ET_provinces_Sharqiya = UsePN (mkPN "Sharqiya") ; + Countries_R_provinces_Vladimirskayaoblast = UsePN (mkPN "Vladimirskaya oblast") ; + Countries_NZ_cities_Wellington = UsePN (mkPN "Wellington") ; + Countries_IR_provinces_Zanjan_cities_Zanjan = UsePN (mkPN "Zanjan") ; + Countries_A_provinces_Vienna_cities_Vienna = UsePN (mkPN "Vienna") ; + Lakes_LakeEtoscha = UsePN (mkPN "Lake Etoscha") ; + Countries_ANG_provinces_CuanzaNorte = UsePN (mkPN "Cuanza Norte") ; + Countries_GB_provinces_Hampshire_cities_Eastleigh = UsePN (mkPN "Eastleigh") ; + Countries_GB_provinces_Merseyside_cities_Liverpool = UsePN (mkPN "Liverpool") ; + Countries_TJ_provinces_Shandong_cities_Heze = UsePN (mkPN "Heze") ; + Countries_WAN_cities_Oshogbo = UsePN (mkPN "Oshogbo") ; + Countries_TJ_cities_HongKong = UsePN (mkPN "Hong Kong") ; + Countries_R_provinces_Rostovskayaoblast_cities_Volgodonsk = UsePN (mkPN "Volgodonsk") ; + Countries_F_provinces_Lorraine = UsePN (mkPN "Lorraine") ; + Countries_PK_cities_Hyderabad = UsePN (mkPN "Hyderabad") ; + Countries_USA_provinces_California_cities_MorenoValley = UsePN (mkPN "Moreno Valley") ; + Countries_ETH_cities_Gonder = UsePN (mkPN "Gonder") ; + Mountains_Galdhoeppig = UsePN (mkPN "Galdhoeppig") ; + Countries_GB_provinces_SouthYorkshire_cities_Doncaster = UsePN (mkPN "Doncaster") ; + Countries_USA_provinces_Ohio_cities_Toledo = UsePN (mkPN "Toledo") ; + Ethiopia = UsePN (mkPN "Ethiopia") ; + Organizations_ICAO = UsePN (mkPN "International Civil Aviation Organization") ; + Countries_I_provinces_Umbria_cities_Perugia = UsePN (mkPN "Perugia") ; + Organizations_MINURSO = UsePN (mkPN "United Nations Mission for the Referendum in Western Sahara") ; + Lakes_OzeroPskovskoje = UsePN (mkPN "Ozero Pskovskoje") ; + Countries_H_provinces_HajduBihar = UsePN (mkPN "Hajdu Bihar") ; + Countries_BR_provinces_SantaCatarina = UsePN (mkPN "Santa Catarina") ; + Countries_VN_provinces_KienGiang = UsePN (mkPN "Kien Giang") ; + Countries_R_provinces_Permskayaoblast_cities_Berezniki = UsePN (mkPN "Berezniki") ; + Countries_USA_provinces_Nevada = UsePN (mkPN "Nevada") ; + Countries_R_provinces_Yaroslavskayaoblast_cities_Rybinsk = UsePN (mkPN "Rybinsk") ; + Countries_RA_provinces_SantiagodeEstero = UsePN (mkPN "Santiago de Estero") ; + Countries_R_provinces_Sverdlovskayaoblast_cities_Yekaterinburg = UsePN (mkPN "Yekaterinburg") ; + Countries_IND_provinces_MadhyaPradesh = UsePN (mkPN "Madhya Pradesh") ; + BosniaAndHerzegovina = UsePN (mkPN "Bosnia and Herzegovina") ; + Countries_ES_provinces_SantaAna_cities_SantaAna = UsePN (mkPN "Santa Ana") ; + Countries_PE_provinces_Cajamarca_cities_Cajamarca = UsePN (mkPN "Cajamarca") ; + Countries_cid_cia_South_Georgia_and_the_South_Sandwich_Islands = UsePN (mkPN "South Georgia and the South Sandwich Islands") ; + Countries_MEX_provinces_Tlaxcala_cities_Tlaxcala = UsePN (mkPN "Tlaxcala") ; + Countries_BR_provinces_SaoPaulo_cities_Marilia = UsePN (mkPN "Marilia") ; + Countries_RC_provinces_Taipei_cities_Panchiao = UsePN (mkPN "Panchiao") ; + Countries_USA_provinces_WestVirginia = UsePN (mkPN "West Virginia") ; + Countries_USA_provinces_California_cities_ElMonte = UsePN (mkPN "El Monte") ; + Countries_THA_provinces_Krabi = UsePN (mkPN "Krabi") ; + Countries_HCA_provinces_Atlantida_cities_Tela = UsePN (mkPN "Tela") ; + Countries_UZB_provinces_Khorazm = UsePN (mkPN "Khorazm") ; + Countries_TJ_provinces_Sichuan_cities_Daxian = UsePN (mkPN "Daxian") ; + Countries_UA_provinces_Vinnytska_cities_Vinnytsya = UsePN (mkPN "Vinnytsya") ; + Countries_P_provinces_Lisbon_cities_Lisbon = UsePN (mkPN "Lisbon") ; + Countries_ANG_provinces_Moxico_cities_Luena = UsePN (mkPN "Luena") ; + Countries_RC_provinces_Penghu = UsePN (mkPN "Penghu") ; + Lakes_LakeKalla = UsePN (mkPN "Lake Kalla") ; + Countries_THA_provinces_Mukdahan = UsePN (mkPN "Mukdahan") ; + Guatemala = UsePN (mkPN "Guatemala") ; + Countries_MEX_provinces_Chiapas_cities_Tonala = UsePN (mkPN "Tonala") ; + Rivers_RioGrande = UsePN (mkPN "Rio Grande") ; + Islands_Mindoro = UsePN (mkPN "Mindoro") ; + Countries_TJ_provinces_Sichuan_cities_Mianyang = UsePN (mkPN "Mianyang") ; + Deserts_Tenere = UsePN (mkPN "Tenere") ; + Countries_TJ_provinces_Hebei_cities_Renqiu = UsePN (mkPN "Renqiu") ; + Countries_THA_provinces_Loei = UsePN (mkPN "Loei") ; + Tunisia = UsePN (mkPN "Tunisia") ; + Countries_J_provinces_Iwate = UsePN (mkPN "Iwate") ; + Countries_ZRE_provinces_Kivu = UsePN (mkPN "Kivu") ; + Countries_RP_cities_Zamboanga = UsePN (mkPN "Zamboanga") ; + Countries_BR_provinces_Paraiba_cities_SantaRita = UsePN (mkPN "Santa Rita") ; + Countries_ZRE_provinces_Kivu_cities_Butembo = UsePN (mkPN "Butembo") ; + Countries_ES_provinces_Ahuachapan = UsePN (mkPN "Ahuachapan") ; + Countries_ANG_provinces_LundaNorte = UsePN (mkPN "Lunda Norte") ; + Countries_IR_provinces_Hamadan = UsePN (mkPN "Hamadan") ; + Countries_UA_provinces_Chernivetska_cities_Chernivtsi = UsePN (mkPN "Chernivtsi") ; + Countries_PL_provinces_Nowosadeckie_cities_NowySacz = UsePN (mkPN "Nowy Sacz") ; + Countries_OM_cities_Muscat = UsePN (mkPN "Muscat") ; + Countries_KAZ_provinces_Pavlodar_cities_Pavlodar = UsePN (mkPN "Pavlodar") ; + Countries_RO_provinces_Vrancea = UsePN (mkPN "Vrancea") ; + Countries_BR_provinces_SaoPaulo_cities_TaboaodaSerra = UsePN (mkPN "Taboao da Serra") ; + Countries_MAL_provinces_Sabah_cities_Sandakan = UsePN (mkPN "Sandakan") ; + Countries_R_provinces_Novgorodskayaoblast_cities_Novgorod = UsePN (mkPN "Novgorod") ; + Countries_H_provinces_Szolnok_cities_Szolnok = UsePN (mkPN "Szolnok") ; + Islands_Salina = UsePN (mkPN "Salina") ; + Countries_F_provinces_ProvenceCotedAzur = UsePN (mkPN "Provence Cote dAzur") ; + Countries_CH_provinces_SZ = UsePN (mkPN "SZ") ; + Countries_BR_provinces_EspiritoSanto_cities_Cariacica = UsePN (mkPN "Cariacica") ; + Countries_TJ_provinces_Hunan_cities_Lengshuijiang = UsePN (mkPN "Lengshuijiang") ; + Lakes_LakeVolta = UsePN (mkPN "Lake Volta") ; + Countries_ET_provinces_ElBuhayra_cities_KafrelDauwar = UsePN (mkPN "Kafr el Dauwar") ; + Countries_TJ_provinces_Jiangxi_cities_Yichun = UsePN (mkPN "Yichun") ; + Countries_RSA_provinces_NorthernCape_cities_Kimberley = UsePN (mkPN "Kimberley") ; + Countries_TJ_provinces_Jilin_cities_Tonghua = UsePN (mkPN "Tonghua") ; + Countries_BR_provinces_RioGrandedoNorte_cities_Natal = UsePN (mkPN "Natal") ; + Countries_TJ_provinces_Liaoning_cities_Beipiao = UsePN (mkPN "Beipiao") ; + Countries_TJ_provinces_Jiangsu_cities_Xinghua = UsePN (mkPN "Xinghua") ; + Countries_H_provinces_GyorSopron = UsePN (mkPN "Gyor Sopron") ; + Countries_R_provinces_Stavropolskykray = UsePN (mkPN "Stavropolsky kray") ; + Countries_ES_provinces_Chalatenango = UsePN (mkPN "Chalatenango") ; + Countries_IR_provinces_AzarbayianeGharbt = UsePN (mkPN "Azarbayian e Gharbt") ; + Countries_HCA_provinces_ElParaiso_cities_Danli = UsePN (mkPN "Danli") ; + Countries_IR_provinces_AzarbayianeSharqi = UsePN (mkPN "Azarbayian e Sharqi") ; + Countries_BR_provinces_MatoGrosso_cities_VarzeaGrande = UsePN (mkPN "Varzea Grande") ; + Countries_ZRE_provinces_KasaiOriental_cities_MbujiMayi = UsePN (mkPN "Mbuji Mayi") ; + Countries_MEX_provinces_Nayarit_cities_Tepic = UsePN (mkPN "Tepic") ; + Organizations_ABEDA = UsePN (mkPN "Arab Bank for Economic Development in Africa") ; + Countries_PL_provinces_Chelmskie = UsePN (mkPN "Chelmskie") ; + Countries_J_provinces_Tottori_cities_Tottori = UsePN (mkPN "Tottori") ; + Countries_WAN_cities_Aarri = UsePN (mkPN "Aarri") ; + Countries_GR_cities_Patrai = UsePN (mkPN "Patrai") ; + Countries_TR_provinces_Corum = UsePN (mkPN "Corum") ; + Deserts_HamadaduDraa = UsePN (mkPN "Hamada du Draa") ; + Countries_D_provinces_BadenWurttemberg_cities_Karlsruhe = UsePN (mkPN "Karlsruhe") ; + Countries_TM_provinces_Leban = UsePN (mkPN "Leban") ; + Countries_CH_provinces_GE = UsePN (mkPN "GE") ; + Countries_cid_cia_Gaza_Strip = UsePN (mkPN "Gaza Strip") ; + Countries_TJ_provinces_Jiangsu_cities_Dongtai = UsePN (mkPN "Dongtai") ; + Countries_NL_provinces_ZuidHolland_cities_Leiden = UsePN (mkPN "Leiden") ; + Countries_ET_provinces_SinaalJanubiyah_cities_ElTur = UsePN (mkPN "El Tur") ; + Countries_TJ_provinces_Heilongjiang_cities_Anda = UsePN (mkPN "Anda") ; + Countries_R_provinces_Rep_ofTyva = UsePN (mkPN "Rep. of Tyva") ; + Countries_THA_provinces_SingBuri = UsePN (mkPN "Sing Buri") ; + Countries_RI_cities_Sukabumi = UsePN (mkPN "Sukabumi") ; + Countries_TJ_provinces_Shandong = UsePN (mkPN "Shandong") ; + Countries_C_provinces_SanctiSpiritus = UsePN (mkPN "Sancti Spiritus") ; + Countries_SN_provinces_Kaolack_cities_Kaolack = UsePN (mkPN "Kaolack") ; + Countries_TJ_provinces_Jiangxi_cities_Fuzhou = UsePN (mkPN "Fuzhou") ; + Countries_USA_provinces_Virginia_cities_Arlington = UsePN (mkPN "Arlington") ; + Countries_IL_provinces_South = UsePN (mkPN "South") ; + Countries_cid_cia_Netherlands_Antilles_cities_Willemstad = UsePN (mkPN "Willemstad") ; + Countries_USA_provinces_Wisconsin_cities_Milwaukee = UsePN (mkPN "Milwaukee") ; + Deserts_Kalahari = UsePN (mkPN "Kalahari") ; + Lakes_LakeOri = UsePN (mkPN "Lake Ori") ; + Countries_BR_provinces_SaoPaulo_cities_Jundiai = UsePN (mkPN "Jundiai") ; + Countries_EAT_provinces_Lindi = UsePN (mkPN "Lindi") ; + Countries_J_provinces_Chiba_cities_Chiba = UsePN (mkPN "Chiba") ; + Countries_MYA_provinces_Yangon_cities_Rangoon = UsePN (mkPN "Rangoon") ; + Countries_RO_provinces_Braila_cities_Braila = UsePN (mkPN "Braila") ; + Islands_Lolland = UsePN (mkPN "Lolland") ; + Albania = UsePN (mkPN "Albania") ; + Countries_USA_provinces_NewMexico_cities_Albuquerque = UsePN (mkPN "Albuquerque") ; + Countries_HCA_provinces_FranciscoMorazan_cities_Tegucigalpa = UsePN (mkPN "Tegucigalpa") ; + Countries_BR_provinces_RiodeJaneiro_cities_NovaFriburgo = UsePN (mkPN "Nova Friburgo") ; + Countries_IRQ_provinces_SalahadDin = UsePN (mkPN "Salah ad Din") ; + Countries_TJ_provinces_Shandong_cities_Laiyang = UsePN (mkPN "Laiyang") ; + Countries_TJ_provinces_Jiangsu_cities_Changshu = UsePN (mkPN "Changshu") ; + Mozambique = UsePN (mkPN "Mozambique") ; + Countries_UZB_provinces_Farghona = UsePN (mkPN "Farghona") ; + Countries_R_provinces_Samarskayaoblast_cities_Novokuybyshevsk = UsePN (mkPN "Novokuybyshevsk") ; + Countries_PE_provinces_Cuzco = UsePN (mkPN "Cuzco") ; + Countries_R_provinces_Rep_ofSakha = UsePN (mkPN "Rep. of Sakha") ; + Countries_GB_provinces_Kent_cities_Sevenoaks = UsePN (mkPN "Sevenoaks") ; + Countries_RA_provinces_Chubut_cities_ComodoroRivadavia = UsePN (mkPN "Comodoro Rivadavia") ; + Countries_IR_provinces_Yazd = UsePN (mkPN "Yazd") ; + Countries_BR_provinces_SantaCatarina_cities_Joinvile = UsePN (mkPN "Joinvile") ; + Countries_DZ_cities_Setif = UsePN (mkPN "Setif") ; + Countries_ZRE_provinces_Kivu_cities_Bukavu = UsePN (mkPN "Bukavu") ; + Countries_TJ_provinces_Shanxi_cities_Linfen = UsePN (mkPN "Linfen") ; + Countries_CAM_provinces_Centre_cities_Yaounde = UsePN (mkPN "Yaounde") ; + Countries_UA_provinces_Ternopilska = UsePN (mkPN "Ternopilska") ; + Countries_SUD_provinces_Darfur = UsePN (mkPN "Darfur") ; + Countries_WAN_cities_Ikare = UsePN (mkPN "Ikare") ; + Countries_TR_provinces_Nevsehir = UsePN (mkPN "Nevsehir") ; + Organizations_G_8 = UsePN (mkPN "Group of 8") ; + Countries_THA_provinces_Yasothon = UsePN (mkPN "Yasothon") ; + Countries_THA_provinces_Nonthaburi_cities_Nonthaburi = UsePN (mkPN "Nonthaburi") ; + Countries_R_provinces_Arkhangelskayaoblast = UsePN (mkPN "Arkhangelskaya oblast") ; + Countries_ET_provinces_ElIskandariya_munic_cities_ElIskandariya = UsePN (mkPN "El Iskandariya") ; + Countries_PA_provinces_Panama = UsePN (mkPN "Panama") ; + Lakes_LakeSaima = UsePN (mkPN "Lake Saima") ; + Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_PetalingJaya = UsePN (mkPN "Petaling Jaya") ; + Countries_BR_provinces_SaoPaulo_cities_Osasco = UsePN (mkPN "Osasco") ; + Countries_RB_cities_Gaborone = UsePN (mkPN "Gaborone") ; + Countries_F_provinces_PoitouCharentes_cities_Poitiers = UsePN (mkPN "Poitiers") ; + Countries_MEX_provinces_SanLuisPotosi = UsePN (mkPN "San Luis Potosi") ; + Countries_UA_provinces_Dnipropetrovska_cities_Dniprodzerzhynsk = UsePN (mkPN "Dniprodzerzhynsk") ; + Countries_IR_provinces_Bushehr = UsePN (mkPN "Bushehr") ; + Countries_TJ_provinces_Liaoning_cities_Anshan = UsePN (mkPN "Anshan") ; + Countries_R_provinces_Kemerovskayaoblast_cities_Kemerovo = UsePN (mkPN "Kemerovo") ; + Countries_THA_provinces_NakhonPathom = UsePN (mkPN "Nakhon Pathom") ; + Countries_PA_provinces_Darien_cities_LaPalma = UsePN (mkPN "La Palma") ; + Countries_RSA_provinces_NorthernProvince = UsePN (mkPN "Northern Province") ; + Countries_D_provinces_NordrheinWestfalen_cities_Witten = UsePN (mkPN "Witten") ; + Countries_E_provinces_CastileandLeon_cities_Salamanca = UsePN (mkPN "Salamanca") ; + Countries_BR_provinces_Goias_cities_Anapolis = UsePN (mkPN "Anapolis") ; + Countries_KAZ_provinces_Zhambyl = UsePN (mkPN "Zhambyl") ; + Mountains_NevadodeColima = UsePN (mkPN "Nevado de Colima") ; + Countries_R_provinces_Kurskayaoblast_cities_Kursk = UsePN (mkPN "Kursk") ; + Countries_USA_provinces_Louisiana_cities_Shreveport = UsePN (mkPN "Shreveport") ; + Countries_USA_provinces_Illinois_cities_Springfield = UsePN (mkPN "Springfield") ; + Countries_VN_provinces_NorthMountainandMidlands = UsePN (mkPN "North Mountain and Midlands") ; + Countries_BOL_cities_Cochabamba = UsePN (mkPN "Cochabamba") ; + Rivers_Jug = UsePN (mkPN "Jug") ; + Countries_MOC_provinces_Manica = UsePN (mkPN "Manica") ; + Countries_R_provinces_Nizhegorodskayaoblast_cities_Dzerzhinsk = UsePN (mkPN "Dzerzhinsk") ; + Rivers_Amur = UsePN (mkPN "Amur") ; + Countries_P_provinces_Lisbon_cities_Barreiro = UsePN (mkPN "Barreiro") ; + Countries_USA_provinces_California_cities_SanFrancisco = UsePN (mkPN "San Francisco") ; + Countries_S_provinces_Varmland = UsePN (mkPN "Varmland") ; + Countries_NOK_cities_Sinpo = UsePN (mkPN "Sinpo") ; + Countries_E_provinces_Estremadura_cities_Merida = UsePN (mkPN "Merida") ; + Countries_MEX_provinces_Sinaloa_cities_Culiacan = UsePN (mkPN "Culiacan") ; + Countries_SN_provinces_Diourbel_cities_Diourbel = UsePN (mkPN "Diourbel") ; + Countries_EAK_provinces_Nyanza_cities_Kisumu = UsePN (mkPN "Kisumu") ; + Countries_THA_provinces_UthaiThani = UsePN (mkPN "Uthai Thani") ; + Countries_NOK_cities_HamhungHungnam = UsePN (mkPN "Hamhung Hungnam") ; + Countries_ET_provinces_Asyut = UsePN (mkPN "Asyut") ; + Organizations_EIB = UsePN (mkPN "European Investment Bank") ; + Countries_RA_provinces_Formosa_cities_Formosa = UsePN (mkPN "Formosa") ; + Countries_UZB_provinces_Sirdare_cities_Guliston = UsePN (mkPN "Guliston") ; + Countries_GB_provinces_Newport = UsePN (mkPN "Newport") ; + Countries_PK_cities_Kasur = UsePN (mkPN "Kasur") ; + Countries_BR_provinces_MatoGrossodoSul_cities_Dourados = UsePN (mkPN "Dourados") ; + Mountains_Kebnekaise = UsePN (mkPN "Kebnekaise") ; + Countries_GB_provinces_Kent_cities_Swale = UsePN (mkPN "Swale") ; + Countries_IND_provinces_Gujarat_cities_Ahmadabad = UsePN (mkPN "Ahmadabad") ; + Countries_CAM_provinces_Nordextreme_cities_Maroua = UsePN (mkPN "Maroua") ; + Countries_RSA_provinces_EasternCape_cities_EastLondon = UsePN (mkPN "East London") ; + Kiribati = UsePN (mkPN "Kiribati") ; + Organizations_WFC = UsePN (mkPN "World Food Council") ; + Countries_GB_provinces_Torfaen = UsePN (mkPN "Torfaen") ; + Lakes_LakeEyre = UsePN (mkPN "Lake Eyre") ; + Countries_IND_provinces_Punjab = UsePN (mkPN "Punjab") ; + Mountains_Montblanc = UsePN (mkPN "Montblanc") ; + Mountains_MtWhitney = UsePN (mkPN "Mt Whitney") ; + Countries_S_provinces_Gavleborg = UsePN (mkPN "Gavleborg") ; + Countries_MEX_provinces_Puebla_cities_Tehuacan = UsePN (mkPN "Tehuacan") ; + Sudan = UsePN (mkPN "Sudan") ; + Countries_GB_provinces_Essex_cities_EppingForest = UsePN (mkPN "Epping Forest") ; + Countries_RA_provinces_Tucuman_cities_SanMigueldeTucuman = UsePN (mkPN "San Miguel de Tucuman") ; + Countries_NOK_cities_Huichon = UsePN (mkPN "Huichon") ; + Organizations_UNOMIG = UsePN (mkPN "United Nations Observer Mission in Georgia") ; + Countries_ANG_provinces_Luanda = UsePN (mkPN "Luanda") ; + Countries_TJ_provinces_NeiMonggol_cities_Ulanhot = UsePN (mkPN "Ulanhot") ; + Countries_NL_provinces_ZuidHolland_cities_Dordrecht = UsePN (mkPN "Dordrecht") ; + Countries_KAZ_provinces_OngtustikQazaqstan = UsePN (mkPN "Ongtustik Qazaqstan") ; + Countries_ZRE_provinces_Kivu_cities_Uvira = UsePN (mkPN "Uvira") ; + Mountains_MountMorrison = UsePN (mkPN "Mount Morrison") ; + Countries_R_provinces_Orenburgskayaoblast_cities_Orenburg = UsePN (mkPN "Orenburg") ; + Countries_R_provinces_Rep_ofBuryatiya = UsePN (mkPN "Rep. of Buryatiya") ; + Countries_MEX_provinces_QuintanaRoo_cities_Chetumal = UsePN (mkPN "Chetumal") ; + Countries_TAD_provinces_BadakhshoniKuni_cities_Khorugh = UsePN (mkPN "Khorugh") ; + Countries_R_provinces_Rep_ofIngushetiya = UsePN (mkPN "Rep. of Ingushetiya") ; + Countries_D_provinces_Niedersachsen_cities_Braunschweig = UsePN (mkPN "Braunschweig") ; + Countries_PE_provinces_Ancash_cities_Chimbote = UsePN (mkPN "Chimbote") ; + Countries_BR_provinces_SaoPaulo_cities_Pindamonhangaba = UsePN (mkPN "Pindamonhangaba") ; + Countries_cid_cia_Reunion = UsePN (mkPN "Reunion") ; + Islands_Lavan = UsePN (mkPN "Lavan") ; + Islands_Tonga = UsePN (mkPN "Tonga") ; + Countries_F_provinces_HauteNormandie = UsePN (mkPN "Haute Normandie") ; + Countries_WAN_cities_BeninCity = UsePN (mkPN "Benin City") ; + Countries_BR_provinces_Tocantins = UsePN (mkPN "Tocantins") ; + Countries_TJ_provinces_Fujian_cities_Fuzhou = UsePN (mkPN "Fuzhou") ; + Countries_GB_provinces_RhonddaCynonTaff = UsePN (mkPN "Rhondda Cynon Taff") ; + Countries_IND_provinces_MadhyaPradesh_cities_Gwalior = UsePN (mkPN "Gwalior") ; + Countries_MEX_cities_AtizapandeZaragoza = UsePN (mkPN "Atizapan de Zaragoza") ; + Countries_GB_provinces_Pembrokeshire_cities_Haverfordwest = UsePN (mkPN "Haverfordwest") ; + Countries_MD_cities_Chisinau = UsePN (mkPN "Chisinau") ; + Countries_HCA_provinces_Olancho = UsePN (mkPN "Olancho") ; + Countries_USA_provinces_NewJersey_cities_JerseyCity = UsePN (mkPN "Jersey City") ; + Countries_PE_provinces_Puno_cities_Juliaca = UsePN (mkPN "Juliaca") ; + Countries_S_provinces_Kronoberg_cities_Vaxjo = UsePN (mkPN "Vaxjo") ; + Countries_USA_provinces_California_cities_Sacramento = UsePN (mkPN "Sacramento") ; + Countries_R_provinces_UdmurtRepublic_cities_Votkinsk = UsePN (mkPN "Votkinsk") ; + Countries_D_provinces_Thuringen_cities_Erfurt = UsePN (mkPN "Erfurt") ; + Countries_ROK_cities_Chunchon = UsePN (mkPN "Chunchon") ; + Countries_MEX_provinces_Sinaloa_cities_Mazatlan = UsePN (mkPN "Mazatlan") ; + Deserts_Uaran = UsePN (mkPN "Uaran") ; + Countries_TR_provinces_Hatay = UsePN (mkPN "Hatay") ; + Countries_UZB_provinces_Andijon_cities_Andijon = UsePN (mkPN "Andijon") ; + Rivers_GrosserJenissej = UsePN (mkPN "Grosser Jenissej") ; + Countries_BR_provinces_Tocantins_cities_Palmas = UsePN (mkPN "Palmas") ; + Countries_CO_provinces_Arauca = UsePN (mkPN "Arauca") ; + Countries_Z_provinces_Western = UsePN (mkPN "Western") ; + Countries_LV_cities_Riga = UsePN (mkPN "Riga") ; + Mountains_Mt_Kosciuszko = UsePN (mkPN "Mt. Kosciuszko") ; + Countries_CDN_provinces_Ontario_cities_York = UsePN (mkPN "York") ; + Countries_A_provinces_Styria = UsePN (mkPN "Styria") ; + Countries_R_provinces_Chelyabinskayaoblast_cities_Magnitogorsk = UsePN (mkPN "Magnitogorsk") ; + Countries_RI_cities_Cirebon = UsePN (mkPN "Cirebon") ; + Countries_Z_provinces_Luapula = UsePN (mkPN "Luapula") ; + Countries_RO_provinces_Giurgiu_cities_Giurgiu = UsePN (mkPN "Giurgiu") ; + Countries_GB_provinces_Hampshire_cities_Winchester = UsePN (mkPN "Winchester") ; + Countries_F_provinces_RhoneAlpes_cities_Villeurbanne = UsePN (mkPN "Villeurbanne") ; + Countries_R_provinces_Penzenskayaoblast_cities_Kuznetsk = UsePN (mkPN "Kuznetsk") ; + Islands_Colonsay = UsePN (mkPN "Colonsay") ; + Countries_D_provinces_Bayern_cities_Munich = UsePN (mkPN "Munich") ; + Countries_cid_cia_Falkland_Islands_cities_Stanley = UsePN (mkPN "Stanley") ; + Countries_AUS_provinces_NewSouthWales_cities_Wollongong = UsePN (mkPN "Wollongong") ; + Countries_NL_provinces_Gelderland_cities_Nijmegen = UsePN (mkPN "Nijmegen") ; + Countries_AUS_provinces_Queensland_cities_Townsville = UsePN (mkPN "Townsville") ; + Countries_USA_provinces_California_cities_SanJose = UsePN (mkPN "San Jose") ; + Countries_ES_provinces_Morazan = UsePN (mkPN "Morazan") ; + Organizations_G_2 = UsePN (mkPN "Group of 2") ; + Countries_VN_provinces_SouthCentralCoast = UsePN (mkPN "South Central Coast") ; + Countries_R_provinces_Murmanskayaoblast = UsePN (mkPN "Murmanskaya oblast") ; + Countries_PL_provinces_Slupskie = UsePN (mkPN "Slupskie") ; + Countries_TR_provinces_Yozgat = UsePN (mkPN "Yozgat") ; + Countries_TJ_provinces_Liaoning_cities_Shenyang = UsePN (mkPN "Shenyang") ; + Countries_GR_provinces_Peloponnisos = UsePN (mkPN "Peloponnisos") ; + Countries_CDN_provinces_Ontario_cities_Mississauga = UsePN (mkPN "Mississauga") ; + Turkey = UsePN (mkPN "Turkey") ; + Countries_THA_provinces_Phrae = UsePN (mkPN "Phrae") ; + Countries_STP_cities_SaoTome = UsePN (mkPN "Sao Tome") ; + Countries_RO_provinces_Bacau = UsePN (mkPN "Bacau") ; + Countries_IR_provinces_Esfahan_cities_Najafabad = UsePN (mkPN "Najafabad") ; + Countries_SD_cities_Mbabane = UsePN (mkPN "Mbabane") ; + Countries_ANG_provinces_Huambo_cities_Huambo = UsePN (mkPN "Huambo") ; + Countries_TJ_provinces_Shaanxi_cities_Ankang = UsePN (mkPN "Ankang") ; + Lakes_LakeTumba = UsePN (mkPN "Lake Tumba") ; + Countries_VN_provinces_HaBac = UsePN (mkPN "Ha Bac") ; + Countries_YV_provinces_Zulia_cities_Maracaibo = UsePN (mkPN "Maracaibo") ; + Countries_cid_cia_Hong_Kong = UsePN (mkPN "Hong Kong") ; + Countries_TJ_provinces_Anhui_cities_Huainan = UsePN (mkPN "Huainan") ; + Countries_AUS_provinces_Queensland_cities_Brisbane = UsePN (mkPN "Brisbane") ; + Countries_R_provinces_Primorskykray_cities_Vladivostok = UsePN (mkPN "Vladivostok") ; + Countries_IRQ_provinces_AnNajaf = UsePN (mkPN "An Najaf") ; + Mountains_Damavand = UsePN (mkPN "Damavand") ; + Countries_IR_provinces_Hamadan_cities_Hamadan = UsePN (mkPN "Hamadan") ; + Countries_CDN_provinces_Alberta = UsePN (mkPN "Alberta") ; + Countries_ANG_provinces_Uige = UsePN (mkPN "Uige") ; + Countries_EAT_provinces_Singida = UsePN (mkPN "Singida") ; + Countries_TJ_provinces_Liaoning_cities_Liaoyang = UsePN (mkPN "Liaoyang") ; + Countries_ER_cities_Asmara = UsePN (mkPN "Asmara") ; + Rivers_Petschora = UsePN (mkPN "Petschora") ; + Countries_R_provinces_Amurskayaoblast_cities_Blagoveshchensk = UsePN (mkPN "Blagoveshchensk") ; + Countries_USA_provinces_Michigan_cities_Lansing = UsePN (mkPN "Lansing") ; + Countries_TJ_provinces_Shandong_cities_Jinan = UsePN (mkPN "Jinan") ; + Countries_GB_provinces_WestMidlands = UsePN (mkPN "West Midlands") ; + Countries_IRQ_provinces_AlMuthanna_cities_AsSamawah = UsePN (mkPN "As Samawah") ; + Countries_GB_provinces_Somerset = UsePN (mkPN "Somerset") ; + Rivers_Garonne = UsePN (mkPN "Garonne") ; + Countries_RI_cities_TanjungBalai = UsePN (mkPN "Tanjung Balai") ; + Countries_C_provinces_PinardelRio_cities_PinardelRio = UsePN (mkPN "Pinar del Rio") ; + Countries_GB_provinces_Borders_cities_NewtownSt_Boswells = UsePN (mkPN "Newtown St. Boswells") ; + Countries_R_provinces_Volgogradskayaoblast = UsePN (mkPN "Volgogradskaya oblast") ; + Countries_USA_provinces_Georgia = UsePN (mkPN "Georgia") ; + Countries_IND_provinces_Pondicherry = UsePN (mkPN "Pondicherry") ; + Countries_cid_cia_Ashmore_and_Cartier_Islands = UsePN (mkPN "Ashmore and Cartier Islands") ; + Countries_USA_provinces_California_cities_Inglewood = UsePN (mkPN "Inglewood") ; + Countries_TR_provinces_Tekirdag_cities_Tekirdag = UsePN (mkPN "Tekirdag") ; + Countries_USA_provinces_Massachusetts_cities_Boston = UsePN (mkPN "Boston") ; + Countries_J_provinces_Toyama = UsePN (mkPN "Toyama") ; + Countries_IRQ_provinces_AsSulaymaniyah_cities_AsSulaymaniyah = UsePN (mkPN "As Sulaymaniyah") ; + Countries_IND_provinces_Rajasthan = UsePN (mkPN "Rajasthan") ; + Countries_GB_provinces_Warwickshire_cities_StratfordonAvon = UsePN (mkPN "Stratford on Avon") ; + Countries_CO_provinces_Cordoba_cities_Monteria = UsePN (mkPN "Monteria") ; + Countries_H_provinces_Gyor_munic_cities_Gyor = UsePN (mkPN "Gyor") ; + Rivers_Uruguay = UsePN (mkPN "Uruguay") ; + Countries_MOC_provinces_Inhambane_cities_Inhambane = UsePN (mkPN "Inhambane") ; + Countries_S_provinces_Norrbotten_cities_Jokkmokk = UsePN (mkPN "Jokkmokk") ; + Countries_USA_provinces_California_cities_HuntingtonBeach = UsePN (mkPN "Huntington Beach") ; + Countries_GB_provinces_Cumbria = UsePN (mkPN "Cumbria") ; + Countries_SUD_provinces_alKhartum_cities_Khartoum = UsePN (mkPN "Khartoum") ; + Islands_NorthUlist = UsePN (mkPN "North Ulist") ; + Countries_F_provinces_HauteNormandie_cities_Rouen = UsePN (mkPN "Rouen") ; + Countries_VN_provinces_DongThap = UsePN (mkPN "Dong Thap") ; + Islands_SanMiguelIsland = UsePN (mkPN "San Miguel Island") ; + Countries_R_provinces_Rep_ofMordovia = UsePN (mkPN "Rep. of Mordovia") ; + Countries_SF_provinces_Turku_Pori_cities_Pori = UsePN (mkPN "Pori") ; + Countries_MEX_provinces_Veracruz = UsePN (mkPN "Veracruz") ; + Countries_P_provinces_Porto_cities_Porto = UsePN (mkPN "Porto") ; + Countries_PE_provinces_Callao_cities_Callao = UsePN (mkPN "Callao") ; + SriLanka = UsePN (mkPN "Sri Lanka") ; + Countries_ARM_cities_Yerevan = UsePN (mkPN "Yerevan") ; + Countries_MW_cities_Lilongwe = UsePN (mkPN "Lilongwe") ; + Countries_USA_provinces_Alabama_cities_Birmingham = UsePN (mkPN "Birmingham") ; + Countries_MK_cities_Skopje = UsePN (mkPN "Skopje") ; + Countries_IR_provinces_BoyerAhmadeKohkiluyeh_cities_Yasuj = UsePN (mkPN "Yasuj") ; + Islands_Antigua = UsePN (mkPN "Antigua") ; + Countries_E_provinces_Murcia_cities_Murcia = UsePN (mkPN "Murcia") ; + Countries_VN_cities_Hue = UsePN (mkPN "Hue") ; + Countries_USA_provinces_NewYork_cities_Rochester = UsePN (mkPN "Rochester") ; + Countries_GB_provinces_Nottinghamshire_cities_Nottingham = UsePN (mkPN "Nottingham") ; + Countries_VN_provinces_BenTre = UsePN (mkPN "Ben Tre") ; + Armenia = UsePN (mkPN "Armenia") ; + Countries_TJ_provinces_Shanxi_cities_Taiyuan = UsePN (mkPN "Taiyuan") ; + Countries_VN_cities_DaNang = UsePN (mkPN "Da Nang") ; + Countries_PL_provinces_Wroclawskie_cities_Wroclaw = UsePN (mkPN "Wroclaw") ; + Deserts_NubianDesert = UsePN (mkPN "Nubian Desert") ; + Countries_BR_cities_CamposdosGoytacazes = UsePN (mkPN "Campos dos Goytacazes") ; + Countries_RO_provinces_Arges = UsePN (mkPN "Arges") ; + Countries_R_provinces_ChuvashRepublic = UsePN (mkPN "Chuvash Republic") ; + Mountains_PikChan_Tengri = UsePN (mkPN "Pik Chan-Tengri") ; + Countries_YV_provinces_Bolivar_cities_CiudadBolivar = UsePN (mkPN "Ciudad Bolivar") ; + Countries_IR_provinces_Khuzestan_cities_Khorramshahr = UsePN (mkPN "Khorramshahr") ; + Countries_UA_provinces_Zaporizka = UsePN (mkPN "Zaporizka") ; + Countries_THA_provinces_Narathiwat = UsePN (mkPN "Narathiwat") ; + Countries_TJ_provinces_NingxiaHuizu_cities_Shizuishan = UsePN (mkPN "Shizuishan") ; + Countries_I_provinces_Liguria_cities_Genua = UsePN (mkPN "Genua") ; + Countries_PL_provinces_Kieleckie = UsePN (mkPN "Kieleckie") ; + Countries_E_provinces_Valencia_cities_Elx = UsePN (mkPN "Elx") ; + Countries_ET_provinces_ElGiza = UsePN (mkPN "El Giza") ; + Countries_R_provinces_Tverskayaoblast_cities_Tver = UsePN (mkPN "Tver") ; + Countries_RIM_cities_Nouakchott = UsePN (mkPN "Nouakchott") ; + Countries_IND_provinces_TamilNadu_cities_Salem = UsePN (mkPN "Salem") ; + Countries_R_provinces_KarachayevoCherkesskRep_ = UsePN (mkPN "Karachayevo Cherkessk Rep.") ; + Organizations_FAO = UsePN (mkPN "Food and Agriculture Organization") ; + Lakes_Paeijaenne = UsePN (mkPN "Paeijaenne") ; + Countries_TJ_provinces_Sichuan_cities_Yibin = UsePN (mkPN "Yibin") ; + Seas_MediterraneanSea = UsePN (mkPN "Mediterranean Sea") ; + Countries_E_provinces_Madrid_cities_Getafe = UsePN (mkPN "Getafe") ; + Organizations_CDB = UsePN (mkPN "Caribbean Development Bank") ; + Islands_Mainland = UsePN (mkPN "Mainland") ; + Countries_RO_provinces_Harghita = UsePN (mkPN "Harghita") ; + Countries_GB_provinces_Berkshire_cities_Windsor = UsePN (mkPN "Windsor") ; + Countries_J_provinces_Hokkaido_cities_Sapporo = UsePN (mkPN "Sapporo") ; + Countries_VN_provinces_QuangTri = UsePN (mkPN "Quang Tri") ; + Countries_GB_provinces_WestYorkshire_cities_Wakefield = UsePN (mkPN "Wakefield") ; + Countries_MEX_provinces_Jalisco_cities_Cuautla = UsePN (mkPN "Cuautla") ; + Rivers_Elbe = UsePN (mkPN "Elbe") ; + Belarus = UsePN (mkPN "Belarus") ; + Countries_J_provinces_Shiga = UsePN (mkPN "Shiga") ; + Countries_CAM_provinces_Nordextreme = UsePN (mkPN "Nord extreme") ; + Countries_TJ_provinces_Heilongjiang_cities_Yichun = UsePN (mkPN "Yichun") ; + Mountains_Llullaillaco = UsePN (mkPN "Llullaillaco") ; + Countries_TJ_provinces_Shandong_cities_Qingdao = UsePN (mkPN "Qingdao") ; + Countries_TJ_provinces_Fujian_cities_Zhangzhou = UsePN (mkPN "Zhangzhou") ; + Lakes_Inari = UsePN (mkPN "Inari") ; + Islands_Ibiza = UsePN (mkPN "Ibiza") ; + Countries_TJ_provinces_Henan_cities_Jiaozuo = UsePN (mkPN "Jiaozuo") ; + Countries_TR_provinces_Izmir_cities_Izmir = UsePN (mkPN "Izmir") ; + Countries_CH_provinces_VS_cities_Sion = UsePN (mkPN "Sion") ; + Countries_USA_provinces_Arkansas = UsePN (mkPN "Arkansas") ; + Countries_RC_provinces_Kaohsiung_munic = UsePN (mkPN "Kaohsiung (munic.)") ; + Countries_I_provinces_Lazio_cities_Rome = UsePN (mkPN "Rome") ; + Countries_TJ_provinces_Jilin_cities_Fuyu = UsePN (mkPN "Fuyu") ; + CostaRica = UsePN (mkPN "Costa Rica") ; + Countries_PL_provinces_Pilskie = UsePN (mkPN "Pilskie") ; + Countries_CH_provinces_TG_cities_Frauenfeld = UsePN (mkPN "Frauenfeld") ; + Countries_GB_provinces_Strathclyde_cities_Renfrew = UsePN (mkPN "Renfrew") ; + Countries_C_provinces_Granma_cities_Bayamo = UsePN (mkPN "Bayamo") ; + Countries_PL_provinces_Katowickie_cities_Gliwice = UsePN (mkPN "Gliwice") ; + Countries_THA_provinces_Phuket = UsePN (mkPN "Phuket") ; + Countries_UA_provinces_Cherkaska_cities_Cherkasy = UsePN (mkPN "Cherkasy") ; + Countries_HCA_provinces_Ocotepeque_cities_Ocotepeque = UsePN (mkPN "Ocotepeque") ; + Lakes_LakeRukwa = UsePN (mkPN "Lake Rukwa") ; + Countries_R_provinces_Sverdlovskayaoblast_cities_KamenskUralskiy = UsePN (mkPN "Kamensk Uralskiy") ; + Jamaica = UsePN (mkPN "Jamaica") ; + Countries_GB_provinces_Fife_cities_Glenrothes = UsePN (mkPN "Glenrothes") ; + Countries_SP_cities_Mogadishu = UsePN (mkPN "Mogadishu") ; + Countries_D_provinces_NordrheinWestfalen_cities_Siegen = UsePN (mkPN "Siegen") ; + Countries_HCA_provinces_Yoro_cities_Yoro = UsePN (mkPN "Yoro") ; + Countries_CH_provinces_OW_cities_Sarnen = UsePN (mkPN "Sarnen") ; + Countries_AUS_provinces_NorfolkIsland = UsePN (mkPN "Norfolk Island") ; + Countries_MA_cities_Khouribga = UsePN (mkPN "Khouribga") ; + Countries_P_provinces_VilaReal = UsePN (mkPN "Vila Real") ; + Countries_PK_cities_RahimYarKhan = UsePN (mkPN "Rahim Yar Khan") ; + Countries_cid_cia_Heard_Island_and_McDonald_Islands = UsePN (mkPN "Heard Island and McDonald Islands") ; + Countries_AUS_provinces_NewSouthWales_cities_Sydney = UsePN (mkPN "Sydney") ; + Rivers_Goetaaelv = UsePN (mkPN "Goetaaelv") ; + Countries_TR_provinces_Tekirdag = UsePN (mkPN "Tekirdag") ; + Countries_TJ_provinces_Heilongjiang_cities_Qitaihe = UsePN (mkPN "Qitaihe") ; + Countries_RSA_cities_Mangaung = UsePN (mkPN "Mangaung") ; + Islands_Bali = UsePN (mkPN "Bali") ; + Countries_R_provinces_Vladimirskayaoblast_cities_Kovrov = UsePN (mkPN "Kovrov") ; + Countries_cid_cia_Guadeloupe_cities_Basse_Terre = UsePN (mkPN "Basse-Terre") ; + Countries_RA_provinces_Corrientes = UsePN (mkPN "Corrientes") ; + Countries_CO_provinces_Atlantico_cities_Soledad = UsePN (mkPN "Soledad") ; + Countries_J_provinces_Shizuoka_cities_Shizuoka = UsePN (mkPN "Shizuoka") ; + Countries_D_provinces_MecklenburgVorpommern_cities_Schwerin = UsePN (mkPN "Schwerin") ; + Mountains_Hotaka_Dake = UsePN (mkPN "Hotaka-Dake") ; + Countries_MC_cities_Monaco = UsePN (mkPN "Monaco") ; + Countries_ROK_cities_Masan = UsePN (mkPN "Masan") ; + Countries_GB_cities_Sandwell = UsePN (mkPN "Sandwell") ; + Countries_UZB_provinces_Farghona_cities_Farghona = UsePN (mkPN "Farghona") ; + Countries_MA_cities_BeniMellal = UsePN (mkPN "Beni Mellal") ; + Countries_V_cities_VaticanCity = UsePN (mkPN "Vatican City") ; + Countries_KAZ_provinces_Pavlodar = UsePN (mkPN "Pavlodar") ; + Countries_HCA_provinces_Colon = UsePN (mkPN "Colon") ; + Organizations_ISO = UsePN (mkPN "International Organization for Standardization") ; + Rivers_Argun = UsePN (mkPN "Argun") ; + Countries_LAO_cities_Vientiane = UsePN (mkPN "Vientiane") ; + Countries_R_provinces_ChechenRep_ = UsePN (mkPN "Chechen Rep.") ; + Countries_BR_provinces_SantaCatarina_cities_Chapeco = UsePN (mkPN "Chapeco") ; + Countries_GB_provinces_SouthYorkshire = UsePN (mkPN "South Yorkshire") ; + Countries_GB_provinces_Hampshire_cities_Portsmouth = UsePN (mkPN "Portsmouth") ; + Countries_IND_provinces_HimachalPradesh = UsePN (mkPN "Himachal Pradesh") ; + Countries_GB_provinces_Torfaen_cities_Pontypool = UsePN (mkPN "Pontypool") ; + Countries_R_provinces_Krasnoyarskiykray_cities_Achinsk = UsePN (mkPN "Achinsk") ; + Countries_USA_provinces_RhodeIsland = UsePN (mkPN "Rhode Island") ; + Organizations_ITU = UsePN (mkPN "International Telecommunication Union") ; + Countries_USA_provinces_Texas_cities_Pasadena = UsePN (mkPN "Pasadena") ; + Organizations_Intelsat = UsePN (mkPN "International Telecommunications Satellite Organization") ; + Seas_GulfofMexico = UsePN (mkPN "Gulf of Mexico") ; + Countries_PL_provinces_Szczecinskie = UsePN (mkPN "Szczecinskie") ; + Countries_CZ_provinces_Severomoravsky = UsePN (mkPN "Severomoravsky") ; + Countries_PA_provinces_Colon = UsePN (mkPN "Colon") ; + Countries_RO_provinces_Hunedoara_cities_Deva = UsePN (mkPN "Deva") ; + Countries_MOC_provinces_Niassa = UsePN (mkPN "Niassa") ; + Countries_BR_provinces_SaoPaulo_cities_FranciscoMorato = UsePN (mkPN "Francisco Morato") ; + Organizations_OAU = UsePN (mkPN "Organization of African Unity") ; + Organizations_IMF = UsePN (mkPN "International Monetary Fund") ; + Countries_GB_provinces_Carmarthenshire_cities_Carmarthen = UsePN (mkPN "Carmarthen") ; + Countries_UA_provinces_Zaporizka_cities_Zaporizhzhya = UsePN (mkPN "Zaporizhzhya") ; + Countries_cid_cia_American_Samoa_cities_PagoPago = UsePN (mkPN "Pago Pago") ; + Countries_TR_provinces_Sivas = UsePN (mkPN "Sivas") ; + Countries_R_provinces_Rep_ofKomi = UsePN (mkPN "Rep. of Komi") ; + Countries_TJ_provinces_Heilongjiang_cities_Mishan = UsePN (mkPN "Mishan") ; + Countries_TJ_provinces_Shaanxi = UsePN (mkPN "Shaanxi") ; + Countries_IR_provinces_ChaharMahaleBakhtiari_cities_ShahreKord = UsePN (mkPN "Shahr e Kord") ; + Countries_J_provinces_Shimane = UsePN (mkPN "Shimane") ; + Countries_PE_provinces_Lima = UsePN (mkPN "Lima") ; + Organizations_NATO = UsePN (mkPN "North Atlantic Treaty Organization") ; + Countries_USA_provinces_NorthDakota = UsePN (mkPN "North Dakota") ; + Countries_SYR_cities_Aleppo = UsePN (mkPN "Aleppo") ; + Countries_I_provinces_Abruzzo = UsePN (mkPN "Abruzzo") ; + Countries_WAN_cities_Ikire = UsePN (mkPN "Ikire") ; + Organizations_AL = UsePN (mkPN "Arab League") ; + Countries_ZRE_provinces_Kinshasa_cities_Kinshasa = UsePN (mkPN "Kinshasa") ; + Countries_NL_provinces_Gelderland_cities_Arnhem = UsePN (mkPN "Arnhem") ; + Countries_ANG_provinces_Huambo = UsePN (mkPN "Huambo") ; + Islands_Madeira = UsePN (mkPN "Madeira") ; + Countries_R_provinces_Astrakhanskayaoblast_cities_Astrakhan = UsePN (mkPN "Astrakhan") ; + Countries_P_provinces_Aveiro = UsePN (mkPN "Aveiro") ; + Countries_CY_cities_Nicosia = UsePN (mkPN "Nicosia") ; + Islands_PrinceCharlesIsland = UsePN (mkPN "Prince Charles Island") ; + Maldives = UsePN (mkPN "Maldives") ; + Organizations_NIB = UsePN (mkPN "Nordic Investment Bank") ; + Countries_PAL_cities_Koror = UsePN (mkPN "Koror") ; + Countries_YV_provinces_Miranda_cities_LosTeques = UsePN (mkPN "Los Teques") ; + Organizations_UDEAC = UsePN (mkPN "Central African Customs and Economic Union") ; + Countries_S_provinces_Skaraborg = UsePN (mkPN "Skaraborg") ; + Organizations_UNICEF = UsePN (mkPN "United Nations Childrens Fund") ; + Countries_CR_provinces_Limon_cities_Limon = UsePN (mkPN "Limon") ; + Countries_cid_cia_British_Virgin_Islands_cities_RoadTown = UsePN (mkPN "Road Town") ; + Seas_ArcticOcean = UsePN (mkPN "Arctic Ocean") ; + Countries_CR_provinces_Punarenas = UsePN (mkPN "Punarenas") ; + Countries_MA_provinces_Centre = UsePN (mkPN "Centre") ; + Countries_D_provinces_NordrheinWestfalen_cities_Herne = UsePN (mkPN "Herne") ; + Organizations_WFP = UsePN (mkPN "World Food Program") ; + Countries_PE_provinces_Puno_cities_Puno = UsePN (mkPN "Puno") ; + Countries_CO_provinces_Casanare = UsePN (mkPN "Casanare") ; + Countries_TJ_provinces_Hubei_cities_Xiangfan = UsePN (mkPN "Xiangfan") ; + Countries_CDN_provinces_NorthwestTerritories = UsePN (mkPN "Northwest Territories") ; + Countries_TJ_provinces_Zhejiang_cities_Ruian = UsePN (mkPN "Ruian") ; + Chad = UsePN (mkPN "Chad") ; + Countries_I_cities_Forli = UsePN (mkPN "Forli") ; + Rivers_Luangwa = UsePN (mkPN "Luangwa") ; + Countries_MA_provinces_Tensift = UsePN (mkPN "Tensift") ; + Countries_F_provinces_Centre = UsePN (mkPN "Centre") ; + Countries_NL_provinces_Limburg_cities_Heerlen = UsePN (mkPN "Heerlen") ; + Countries_IR_provinces_Ilam_cities_Ilam = UsePN (mkPN "Ilam") ; + Countries_TJ_provinces_Anhui_cities_Chaoxian = UsePN (mkPN "Chaoxian") ; + Lakes_LagodiGarda = UsePN (mkPN "Lago di Garda") ; + Countries_RO_provinces_Botosani = UsePN (mkPN "Botosani") ; + Islands_Cuba = UsePN (mkPN "Cuba") ; + Countries_BR_provinces_Ceara_cities_Maracanau = UsePN (mkPN "Maracanau") ; + Mauritius = UsePN (mkPN "Mauritius") ; + Countries_TJ_provinces_Shandong_cities_Linyi = UsePN (mkPN "Linyi") ; + Countries_USA_provinces_Texas_cities_Irving = UsePN (mkPN "Irving") ; + Countries_CO_provinces_Cundinamarca_cities_Soacha = UsePN (mkPN "Soacha") ; + Countries_USA_provinces_Minnesota_cities_St_Paul = UsePN (mkPN "St. Paul") ; + Countries_IND_provinces_Maharashtra_cities_Aurangabad = UsePN (mkPN "Aurangabad") ; + Organizations_IDA = UsePN (mkPN "International Development Association") ; + Countries_SN_provinces_Kolda = UsePN (mkPN "Kolda") ; + Countries_BR_provinces_Rondonia_cities_PortoVelho = UsePN (mkPN "Porto Velho") ; + Organizations_ICRM = UsePN (mkPN "International Red Cross and Red Crescent Movement") ; + Rivers_Moldau = UsePN (mkPN "Moldau") ; + Countries_F_provinces_Limousin_cities_Limoges = UsePN (mkPN "Limoges") ; + Countries_IL_provinces_Central = UsePN (mkPN "Central") ; + Countries_TJ_provinces_Yunnan_cities_Gejiu = UsePN (mkPN "Gejiu") ; + Organizations_BSEC = UsePN (mkPN "Black Sea Economic Cooperation Zone") ; + Countries_BR_provinces_Ceara_cities_JuazeirodoNorte = UsePN (mkPN "Juazeiro do Norte") ; + Countries_RO_provinces_Galati = UsePN (mkPN "Galati") ; + Countries_PK_cities_Jhang = UsePN (mkPN "Jhang") ; + Countries_J_provinces_Aichi_cities_Nagoya = UsePN (mkPN "Nagoya") ; + Countries_TR_provinces_Aksaray = UsePN (mkPN "Aksaray") ; + Islands_Oesel = UsePN (mkPN "Oesel") ; + Countries_TJ_provinces_Jiangsu_cities_Huaiyin = UsePN (mkPN "Huaiyin") ; + Countries_IR_provinces_BoyerAhmadeKohkiluyeh = UsePN (mkPN "Boyer Ahmad e Kohkiluyeh") ; + Countries_R_provinces_Vologodskayaoblast_cities_Cherepovets = UsePN (mkPN "Cherepovets") ; + Countries_P_provinces_Coimbra = UsePN (mkPN "Coimbra") ; + Islands_Dagoe = UsePN (mkPN "Dagoe") ; + Countries_YV_provinces_Carabobo_cities_PuertoCabello = UsePN (mkPN "Puerto Cabello") ; + Countries_IND_provinces_Meghalaya = UsePN (mkPN "Meghalaya") ; + Countries_R_provinces_Rep_ofBashkortostan_cities_Sterlitamak = UsePN (mkPN "Sterlitamak") ; + Countries_N_provinces_Rogaland = UsePN (mkPN "Rogaland") ; + Islands_Mallorca = UsePN (mkPN "Mallorca") ; + Countries_USA_provinces_Kentucky_cities_Frankfort = UsePN (mkPN "Frankfort") ; + Countries_ET_provinces_ElWadielJadid = UsePN (mkPN "El Wadi el Jadid") ; + Countries_THA_provinces_Rayong = UsePN (mkPN "Rayong") ; + Countries_SF_provinces_Kuopio_cities_Kuopio = UsePN (mkPN "Kuopio") ; + Countries_R_provinces_Krasnoyarskiykray_cities_Krasnoyarsk = UsePN (mkPN "Krasnoyarsk") ; + Countries_IND_provinces_WestBengal_cities_Durgapur = UsePN (mkPN "Durgapur") ; + Countries_BR_provinces_Amazonas = UsePN (mkPN "Amazonas") ; + Countries_ETH_cities_Debrezit = UsePN (mkPN "Debrezit") ; + Countries_MYA_provinces_Yangon = UsePN (mkPN "Yangon") ; + Countries_PL_provinces_Wloclawskie = UsePN (mkPN "Wloclawskie") ; + Countries_GB_provinces_Surrey_cities_Kingston = UsePN (mkPN "Kingston") ; + Countries_SF_provinces_Kymi_cities_Lappeenrenta = UsePN (mkPN "Lappeenrenta") ; + Countries_DK_cities_Esbjerg = UsePN (mkPN "Esbjerg") ; + Countries_CZ_provinces_Vychodocesky_cities_Pardubice = UsePN (mkPN "Pardubice") ; + Countries_UA_provinces_Ternopilska_cities_Ternopil = UsePN (mkPN "Ternopil") ; + Countries_P_provinces_Santarem = UsePN (mkPN "Santarem") ; + Countries_MAL_provinces_Kedah = UsePN (mkPN "Kedah") ; + Countries_RI_cities_PematangSiantar = UsePN (mkPN "Pematang Siantar") ; + Countries_PE_provinces_Cajamarca = UsePN (mkPN "Cajamarca") ; + Countries_TJ_provinces_NingxiaHuizu_cities_Yinchuan = UsePN (mkPN "Yinchuan") ; + Countries_J_provinces_Niigata_cities_Niigata = UsePN (mkPN "Niigata") ; + Countries_GB_provinces_Bedfordshire_cities_Bedford = UsePN (mkPN "Bedford") ; + Countries_BR_provinces_Para_cities_Belem = UsePN (mkPN "Belem") ; + Countries_NOK_cities_Sinuiju = UsePN (mkPN "Sinuiju") ; + Countries_H_provinces_Somogy_cities_Kaposvar = UsePN (mkPN "Kaposvar") ; + Organizations_IBRD = UsePN (mkPN "International Bank for Reconstruction and Development") ; + Countries_D_provinces_Thuringen_cities_Jena = UsePN (mkPN "Jena") ; + Countries_BR_cities_CabodeSantoAgostinho = UsePN (mkPN "Cabo de Santo Agostinho") ; + Islands_Hokkaido = UsePN (mkPN "Hokkaido") ; + Countries_VN_provinces_MekongRiverDelta = UsePN (mkPN "Mekong River Delta") ; + Rivers_Amazonas = UsePN (mkPN "Amazonas") ; + Countries_SGP_cities_Singapore = UsePN (mkPN "Singapore") ; + Countries_VN_provinces_Haiphong = UsePN (mkPN "Haiphong") ; + Countries_TJ_provinces_Yunnan_cities_Qujing = UsePN (mkPN "Qujing") ; + Countries_E_provinces_Andalusia_cities_Algeciras = UsePN (mkPN "Algeciras") ; + Countries_C_provinces_Matanzas_cities_Matanzas = UsePN (mkPN "Matanzas") ; + Lakes_Disappointment_Lake = UsePN (mkPN "Disappointment-Lake") ; + Countries_cid_cia_Tokelau = UsePN (mkPN "Tokelau") ; + Countries_H_provinces_BacsKiskun = UsePN (mkPN "Bacs Kiskun") ; + Countries_I_provinces_Umbria_cities_Terni = UsePN (mkPN "Terni") ; + Countries_IND_provinces_Delhi_cities_NewDelhi = UsePN (mkPN "New Delhi") ; + Countries_BR_provinces_Paraiba_cities_CampinaGrande = UsePN (mkPN "Campina Grande") ; + Countries_ES_provinces_LaUnion_cities_LaUnion = UsePN (mkPN "La Union") ; + Islands_Mauritius = UsePN (mkPN "Mauritius") ; + Countries_EAT_provinces_Kagera = UsePN (mkPN "Kagera") ; + Countries_CI_cities_Abidjan = UsePN (mkPN "Abidjan") ; + Countries_KAZ_provinces_Semey = UsePN (mkPN "Semey") ; + Cyprus = UsePN (mkPN "Cyprus") ; + Countries_TR_provinces_Usak_cities_Usak = UsePN (mkPN "Usak") ; + Countries_TJ_provinces_Heilongjiang_cities_Acheng = UsePN (mkPN "Acheng") ; + Countries_TJ_provinces_Jiangsu_cities_Danyang = UsePN (mkPN "Danyang") ; + Countries_PE_provinces_Cuzco_cities_Cuzco = UsePN (mkPN "Cuzco") ; + Nigeria = UsePN (mkPN "Nigeria") ; + Countries_VN_provinces_RedRiverDelta = UsePN (mkPN "Red River Delta") ; + Countries_R_provinces_Tyumenskayaoblast_cities_Surgut = UsePN (mkPN "Surgut") ; + Countries_R_provinces_Vologodskayaoblast_cities_Vologda = UsePN (mkPN "Vologda") ; + Countries_E_provinces_CanaryIslands = UsePN (mkPN "Canary Islands") ; + Countries_BR_provinces_SaoPaulo_cities_Catanduva = UsePN (mkPN "Catanduva") ; + Countries_F_provinces_MidiPyrenees_cities_Toulouse = UsePN (mkPN "Toulouse") ; + Countries_H_provinces_Zala = UsePN (mkPN "Zala") ; + Countries_USA_provinces_Virginia_cities_NewportNews = UsePN (mkPN "Newport News") ; + Countries_F_provinces_FrancheComte = UsePN (mkPN "Franche Comte") ; + Countries_USA_provinces_Maine = UsePN (mkPN "Maine") ; + Countries_MYA_provinces_Magway = UsePN (mkPN "Magway") ; + Countries_TJ_provinces_Henan_cities_Kaifeng = UsePN (mkPN "Kaifeng") ; + Countries_D_provinces_Hessen_cities_Darmstadt = UsePN (mkPN "Darmstadt") ; + Countries_RA_provinces_LaRioja = UsePN (mkPN "La Rioja") ; + Countries_GB_provinces_Hampshire_cities_Southampton = UsePN (mkPN "Southampton") ; + Countries_BR_provinces_RiodeJaneiro = UsePN (mkPN "Rio de Janeiro") ; + Countries_IND_provinces_Maharashtra_cities_Kalyan = UsePN (mkPN "Kalyan") ; + Countries_SUD_provinces_BahralGhazal = UsePN (mkPN "Bahr al Ghazal") ; + Countries_BR_provinces_Pernambuco_cities_Camaragibe = UsePN (mkPN "Camaragibe") ; + Countries_GB_provinces_DumfriesandGalloway_cities_Dumfries = UsePN (mkPN "Dumfries") ; + Countries_R_provinces_Vladimirskayaoblast_cities_Murom = UsePN (mkPN "Murom") ; + Countries_BR_provinces_Parana_cities_Curitiba = UsePN (mkPN "Curitiba") ; + Countries_RSA_cities_Boksburg = UsePN (mkPN "Boksburg") ; + Finland = UsePN (mkPN "Finland") ; + Countries_YV_provinces_DistritoFederal_cities_CatiaLaMar = UsePN (mkPN "Catia La Mar") ; + Countries_TR_provinces_Sakarya = UsePN (mkPN "Sakarya") ; + Countries_BR_provinces_SaoPaulo_cities_SaoBernardodoCampo = UsePN (mkPN "Sao Bernardo do Campo") ; + Countries_IR_provinces_Gilan_cities_Rasht = UsePN (mkPN "Rasht") ; + Countries_TJ_provinces_Hunan_cities_Zhuzhou = UsePN (mkPN "Zhuzhou") ; + Countries_UA_provinces_Zakarpatska = UsePN (mkPN "Zakarpatska") ; + Countries_TJ_provinces_Heilongjiang_cities_Daqing = UsePN (mkPN "Daqing") ; + Countries_WAN_cities_IjebuOde = UsePN (mkPN "Ijebu Ode") ; + Malawi = UsePN (mkPN "Malawi") ; + Countries_USA_provinces_Distr_Columbia_cities_Washington = UsePN (mkPN "Washington") ; + Countries_TR_provinces_Burdur_cities_Burdur = UsePN (mkPN "Burdur") ; + Countries_USA_provinces_Vermont_cities_Montpelier = UsePN (mkPN "Montpelier") ; + Rivers_Anuwimi = UsePN (mkPN "Anuwimi") ; + Countries_R_provinces_Tomskayaoblast = UsePN (mkPN "Tomskaya oblast") ; + SouthAfrica = UsePN (mkPN "South Africa") ; + Countries_BR_provinces_SaoPaulo_cities_SaoPaulo = UsePN (mkPN "Sao Paulo") ; + Countries_E_provinces_Navarre = UsePN (mkPN "Navarre") ; + Colombia = UsePN (mkPN "Colombia") ; + Countries_GB_provinces_Caerphilly = UsePN (mkPN "Caerphilly") ; + Countries_CAM_provinces_Sudoueste = UsePN (mkPN "Sudoueste") ; + Countries_MYA_provinces_Mon = UsePN (mkPN "Mon") ; + Countries_IND_provinces_UttarPradesh_cities_Agra = UsePN (mkPN "Agra") ; + Countries_TJ_provinces_Sichuan_cities_Luzhou = UsePN (mkPN "Luzhou") ; + Countries_MEX_provinces_Sonora = UsePN (mkPN "Sonora") ; + Countries_VN_provinces_YenBai = UsePN (mkPN "Yen Bai") ; + Countries_ANG_provinces_Malanje_cities_Malanje = UsePN (mkPN "Malanje") ; + Countries_MOC_provinces_CaboDelgado_cities_Pemba = UsePN (mkPN "Pemba") ; + Countries_USA_provinces_Texas_cities_FortWorth = UsePN (mkPN "Fort Worth") ; + Countries_ET_provinces_ElBahrelAhmar = UsePN (mkPN "El Bahr el Ahmar") ; + Countries_GB_provinces_NorthYorkshire = UsePN (mkPN "North Yorkshire") ; + Countries_PL_provinces_Slupskie_cities_Slupsk = UsePN (mkPN "Slupsk") ; + Countries_USA_provinces_Pennsylvania_cities_Pittsburgh = UsePN (mkPN "Pittsburgh") ; + Islands_Dominica = UsePN (mkPN "Dominica") ; + Panama = UsePN (mkPN "Panama") ; + Countries_R_provinces_Rep_ofDagestan_cities_Makhachkala = UsePN (mkPN "Makhachkala") ; + Lakes_F_D_R_Lake = UsePN (mkPN "F.D.R. Lake") ; + Countries_CAM_provinces_Sud = UsePN (mkPN "Sud") ; + Countries_RM_provinces_Antananarivo_cities_Antsirabe = UsePN (mkPN "Antsirabe") ; + Countries_RC_cities_Yungho = UsePN (mkPN "Yungho") ; + Countries_THA_provinces_NongBuaLamPhu = UsePN (mkPN "Nong Bua Lam Phu") ; + Seas_SeaofJapan = UsePN (mkPN "Sea of Japan") ; + Countries_PL_provinces_Sieradzkie = UsePN (mkPN "Sieradzkie") ; + Countries_GB_provinces_Hertfordshire_cities_SaintAlbans = UsePN (mkPN "Saint Albans") ; + Lakes_LagodiComo = UsePN (mkPN "Lago di Como") ; + Countries_RI_cities_Ambon = UsePN (mkPN "Ambon") ; + Islands_Zakinthos = UsePN (mkPN "Zakinthos") ; + Lakes_LagoMaggiore = UsePN (mkPN "Lago Maggiore") ; + Countries_RC_cities_Hsintien = UsePN (mkPN "Hsintien") ; + Countries_NL_provinces_Drenthe = UsePN (mkPN "Drenthe") ; + Countries_YV_provinces_Lara = UsePN (mkPN "Lara") ; + Rivers_Schilka = UsePN (mkPN "Schilka") ; + Mountains_Fuji_Yama = UsePN (mkPN "Fuji-Yama") ; + Countries_TJ_provinces_Sichuan = UsePN (mkPN "Sichuan") ; + Countries_CO_provinces_Antioquia_cities_Itagui = UsePN (mkPN "Itagui") ; + Guyana = UsePN (mkPN "Guyana") ; + Countries_TJ_provinces_Heilongjiang_cities_Shuangyashan = UsePN (mkPN "Shuangyashan") ; + Countries_CDN_provinces_Manitoba_cities_Winnipeg = UsePN (mkPN "Winnipeg") ; + Countries_F_provinces_ChampagneArdenne_cities_Reims = UsePN (mkPN "Reims") ; + Countries_UZB_provinces_Jizzakh = UsePN (mkPN "Jizzakh") ; + Countries_RSA_cities_KemptonPark = UsePN (mkPN "Kempton Park") ; + Nicaragua = UsePN (mkPN "Nicaragua") ; + Countries_VN_cities_Hanoi = UsePN (mkPN "Hanoi") ; + Countries_THA_provinces_ChaiNat = UsePN (mkPN "Chai Nat") ; + Countries_TAD_provinces_Leninobod_cities_Khujand = UsePN (mkPN "Khujand") ; + Countries_RSA_cities_Roodepoort = UsePN (mkPN "Roodepoort") ; + Countries_R_provinces_Irkutskayaoblast_cities_UsolyeSibirskoye = UsePN (mkPN "Usolye Sibirskoye") ; + Countries_TR_provinces_Bilecik_cities_Bilecik = UsePN (mkPN "Bilecik") ; + Countries_MEX_provinces_Jalisco = UsePN (mkPN "Jalisco") ; + Countries_WAN_cities_Katsina = UsePN (mkPN "Katsina") ; + Countries_RO_provinces_Bihor = UsePN (mkPN "Bihor") ; + Countries_cid_cia_Norfolk_Island = UsePN (mkPN "Norfolk Island") ; + Countries_EAT_provinces_Morogoro = UsePN (mkPN "Morogoro") ; + Countries_ET_provinces_ElIskandariya_munic = UsePN (mkPN "El Iskandariya (munic.)") ; + Countries_TR_provinces_Amasya_cities_Amasya = UsePN (mkPN "Amasya") ; + Countries_IND_provinces_Maharashtra = UsePN (mkPN "Maharashtra") ; + Rivers_BlackIrtysch = UsePN (mkPN "Black Irtysch") ; + Countries_R_provinces_Moskovskayaoblast_cities_Shchyolkovo = UsePN (mkPN "Shchyolkovo") ; + Countries_RO_provinces_Braila = UsePN (mkPN "Braila") ; + Countries_PE_provinces_LaLibertad = UsePN (mkPN "La Libertad") ; + Organizations_UNDOF = UsePN (mkPN "United Nations Disengagement Observer Force") ; + Islands_Stromboli = UsePN (mkPN "Stromboli") ; + Countries_IR_provinces_SistaneBaluchestan = UsePN (mkPN "Sistan e Baluchestan") ; + Countries_DZ_cities_Skikda = UsePN (mkPN "Skikda") ; + Countries_E_provinces_Catalonia_cities_Barcelona = UsePN (mkPN "Barcelona") ; + Countries_BR_provinces_RioGrandedoSul_cities_PassoFundo = UsePN (mkPN "Passo Fundo") ; + Countries_TJ_provinces_Liaoning_cities_Fuxin = UsePN (mkPN "Fuxin") ; + Countries_RC_provinces_Ilan_cities_Ilan = UsePN (mkPN "Ilan") ; + Countries_CO_provinces_SantanderdelSur_cities_Bucaramanga = UsePN (mkPN "Bucaramanga") ; + Countries_EAT_provinces_Kigoma_cities_KigomaUjiji = UsePN (mkPN "Kigoma Ujiji") ; + Countries_ROK_cities_Yosu = UsePN (mkPN "Yosu") ; + Countries_Z_provinces_Central_cities_Kabwe = UsePN (mkPN "Kabwe") ; + Countries_IL_provinces_North = UsePN (mkPN "North") ; + Countries_GB_provinces_WestSussex = UsePN (mkPN "West Sussex") ; + Countries_ANG_provinces_Bie = UsePN (mkPN "Bie") ; + Countries_GB_provinces_Powys_cities_LlandrindodWells = UsePN (mkPN "Llandrindod Wells") ; + Countries_GB_provinces_GreaterManchester_cities_Bolton = UsePN (mkPN "Bolton") ; + Countries_KAZ_provinces_Leninsk_munic = UsePN (mkPN "Leninsk (munic.)") ; + Countries_R_provinces_Orenburgskayaoblast_cities_Orsk = UsePN (mkPN "Orsk") ; + Countries_RC_provinces_Pingtung = UsePN (mkPN "Pingtung") ; + Countries_R_provinces_Voronezhskayaoblast = UsePN (mkPN "Voronezhskaya oblast") ; + Countries_E_provinces_Galicia_cities_Vigo = UsePN (mkPN "Vigo") ; + Countries_BR_provinces_SaoPaulo_cities_Guaruja = UsePN (mkPN "Guaruja") ; + Countries_USA_provinces_Wyoming_cities_Cheyenne = UsePN (mkPN "Cheyenne") ; + Countries_MAL_provinces_NegeriSembilan_cities_Seremban = UsePN (mkPN "Seremban") ; + Countries_S_provinces_Halland_cities_Halmstad = UsePN (mkPN "Halmstad") ; + Countries_TJ_provinces_Hebei_cities_Quzhou = UsePN (mkPN "Quzhou") ; + Countries_A_provinces_Burgenland = UsePN (mkPN "Burgenland") ; + Countries_TJ_provinces_Henan_cities_Hebi = UsePN (mkPN "Hebi") ; + Countries_RA_provinces_BuenosAires_cities_LaPlata = UsePN (mkPN "La Plata") ; + Countries_R_provinces_Chukotskyao = UsePN (mkPN "Chukotsky ao") ; + Countries_AUS_provinces_CocosIslands = UsePN (mkPN "Cocos Islands") ; + Rivers_Katun = UsePN (mkPN "Katun") ; + Countries_SY_cities_Victoria = UsePN (mkPN "Victoria") ; + Countries_I_provinces_Calabria_cities_ReggiodiCalabria = UsePN (mkPN "Reggio di Calabria") ; + Countries_I_provinces_Piemonte_cities_Novara = UsePN (mkPN "Novara") ; + Countries_HCA_provinces_Atlantida = UsePN (mkPN "Atlantida") ; + Countries_ETH_cities_Dese = UsePN (mkPN "Dese") ; + Lakes_LakeNipigon = UsePN (mkPN "Lake Nipigon") ; + CzechRepublic = UsePN (mkPN "Czech Republic") ; + Countries_EAT_provinces_Rukwa = UsePN (mkPN "Rukwa") ; + Countries_D_provinces_Bremen = UsePN (mkPN "Bremen") ; + Countries_B_provinces_EastFlanders_cities_Ghent = UsePN (mkPN "Ghent") ; + Luxembourg = UsePN (mkPN "Luxembourg") ; + Countries_D_provinces_NordrheinWestfalen_cities_Gelsenkirchen = UsePN (mkPN "Gelsenkirchen") ; + Countries_GB_provinces_WestMidlands_cities_Birmingham = UsePN (mkPN "Birmingham") ; + Countries_ROK_cities_Chinju = UsePN (mkPN "Chinju") ; + Countries_TJ_provinces_Jiangsu_cities_Taizhou = UsePN (mkPN "Taizhou") ; + Lakes_LakeMeade = UsePN (mkPN "Lake Meade") ; + Countries_J_provinces_Miyazaki_cities_Miyazaki = UsePN (mkPN "Miyazaki") ; + Countries_USA_provinces_WestVirginia_cities_Charleston = UsePN (mkPN "Charleston") ; + Countries_TR_provinces_Aydin_cities_Aydin = UsePN (mkPN "Aydin") ; + Countries_J_provinces_Akita = UsePN (mkPN "Akita") ; + Countries_TR_provinces_Edirne = UsePN (mkPN "Edirne") ; + Countries_J_provinces_Yamaguchi_cities_Yamaguchi = UsePN (mkPN "Yamaguchi") ; + Countries_IND_provinces_Nagaland = UsePN (mkPN "Nagaland") ; + Lakes_OzeroAral = UsePN (mkPN "Ozero Aral") ; + Countries_ET_provinces_BurSaid_munic_cities_PortSaid = UsePN (mkPN "Port Said") ; + Countries_CH_provinces_ZG = UsePN (mkPN "ZG") ; + Countries_J_provinces_Mie = UsePN (mkPN "Mie") ; + Countries_TR_provinces_Bilecik = UsePN (mkPN "Bilecik") ; + Rivers_Chatanga = UsePN (mkPN "Chatanga") ; + Countries_TN_cities_Tunis = UsePN (mkPN "Tunis") ; + Countries_VN_provinces_TienGiang = UsePN (mkPN "Tien Giang") ; + Countries_R_provinces_KabardinoBalkarRep_ = UsePN (mkPN "Kabardino Balkar Rep.") ; + Mountains_MtMitchell = UsePN (mkPN "Mt Mitchell") ; + Countries_DZ_cities_Mostaganem = UsePN (mkPN "Mostaganem") ; + Countries_GB_provinces_Highland = UsePN (mkPN "Highland") ; + Countries_D_provinces_SachsenAnhalt_cities_Halle = UsePN (mkPN "Halle") ; + Countries_BR_provinces_SaoPaulo_cities_BragancaPaulista = UsePN (mkPN "Braganca Paulista") ; + Countries_PK_cities_Rawalpindi = UsePN (mkPN "Rawalpindi") ; + Countries_R_provinces_Chitinskayaoblast_cities_Chita = UsePN (mkPN "Chita") ; + Countries_MEX_provinces_Guanajuato_cities_Leon = UsePN (mkPN "Leon") ; + Countries_E_provinces_CastileandLeon_cities_Valladolid = UsePN (mkPN "Valladolid") ; + Countries_USA_provinces_California_cities_Sunnyvale = UsePN (mkPN "Sunnyvale") ; + Countries_IND_provinces_Gujarat_cities_Rajkot = UsePN (mkPN "Rajkot") ; + Countries_cid_cia_French_Polynesia = UsePN (mkPN "French Polynesia") ; + Countries_BI_cities_Bujumbura = UsePN (mkPN "Bujumbura") ; + Mountains_Snoehetta = UsePN (mkPN "Snoehetta") ; + Countries_USA_provinces_Oklahoma = UsePN (mkPN "Oklahoma") ; + Countries_TR_provinces_Burdur = UsePN (mkPN "Burdur") ; + Countries_ES_provinces_SanMiguel = UsePN (mkPN "San Miguel") ; + Countries_IND_provinces_UttarPradesh_cities_Kanpur = UsePN (mkPN "Kanpur") ; + Countries_GB_provinces_Hertfordshire = UsePN (mkPN "Hertfordshire") ; + Countries_MEX_provinces_Michoacan_cities_Uruapan = UsePN (mkPN "Uruapan") ; + Countries_IR_provinces_Bushehr_cities_BandareBushehr = UsePN (mkPN "Bandar e Bushehr") ; + Countries_BR_provinces_Pernambuco = UsePN (mkPN "Pernambuco") ; + Countries_PL_provinces_Wroclawskie = UsePN (mkPN "Wroclawskie") ; + Countries_EAT_provinces_Arusha_cities_Arusha = UsePN (mkPN "Arusha") ; + Countries_ET_provinces_BurSaid_munic_cities_BurSaid = UsePN (mkPN "Bur Said") ; + Countries_cid_cia_Cook_Islands = UsePN (mkPN "Cook Islands") ; + Countries_MEX_provinces_BajaCalifornia_cities_Mexicali = UsePN (mkPN "Mexicali") ; + Islands_Ikaria = UsePN (mkPN "Ikaria") ; + Countries_RA_provinces_SantaFe_cities_Rosario = UsePN (mkPN "Rosario") ; + Countries_WAN_cities_Kumo = UsePN (mkPN "Kumo") ; + Countries_RI_cities_Medan = UsePN (mkPN "Medan") ; + Countries_P_provinces_VianadoCastelo = UsePN (mkPN "Viana do Castelo") ; + Countries_B_provinces_WestFlanders_cities_Brugge = UsePN (mkPN "Brugge") ; + Countries_GB_provinces_Lincolnshire_cities_Lincoln = UsePN (mkPN "Lincoln") ; + Countries_F_provinces_BasseNormandie_cities_Caen = UsePN (mkPN "Caen") ; + Countries_TJ_provinces_XinjiangUygur_cities_Aksu = UsePN (mkPN "Aksu") ; + Countries_RI_cities_ParePare = UsePN (mkPN "Pare Pare") ; + Countries_USA_provinces_Pennsylvania_cities_Allentown = UsePN (mkPN "Allentown") ; + Countries_RO_provinces_SatuMare = UsePN (mkPN "Satu Mare") ; + Countries_TR_provinces_Antalya_cities_Antalya = UsePN (mkPN "Antalya") ; + Countries_MOC_provinces_Nampula = UsePN (mkPN "Nampula") ; + Countries_VN_provinces_GiaLai = UsePN (mkPN "Gia Lai") ; + Countries_ANG_provinces_Bengo = UsePN (mkPN "Bengo") ; + Countries_CO_provinces_Quindio_cities_Armenia = UsePN (mkPN "Armenia") ; + Countries_MYA_provinces_Kayin_cities_Hpaan = UsePN (mkPN "Hpa an") ; + Countries_RO_provinces_Covasha_cities_SfintuGheorghe = UsePN (mkPN "Sfintu Gheorghe") ; + Countries_S_provinces_GoteborgochBohus_cities_Goteborg = UsePN (mkPN "Goteborg") ; + Countries_ES_provinces_Ahuachapan_cities_Ahuachapan = UsePN (mkPN "Ahuachapan") ; + Countries_R_provinces_Rep_ofTatarstan_cities_Kazan = UsePN (mkPN "Kazan") ; + Countries_IND_provinces_WestBengal = UsePN (mkPN "West Bengal") ; + Countries_CH_provinces_BE_cities_Bern = UsePN (mkPN "Bern") ; + Philippines = UsePN (mkPN "Philippines") ; + Countries_WAN_cities_Jos = UsePN (mkPN "Jos") ; + Countries_BR_provinces_Piaui_cities_Teresina = UsePN (mkPN "Teresina") ; + Countries_ES_provinces_SanVicente_cities_SanVicente = UsePN (mkPN "San Vicente") ; + Countries_R_provinces_SanktPeterburg_cities_SanktPeterburg = UsePN (mkPN "Sankt Peterburg") ; + Countries_H_provinces_Gyor_munic = UsePN (mkPN "Gyor (munic.)") ; + Countries_CO_provinces_Caqueta_cities_Florencia = UsePN (mkPN "Florencia") ; + Countries_Z_provinces_Eastern = UsePN (mkPN "Eastern") ; + Countries_IR_provinces_Tehran_cities_Tehran = UsePN (mkPN "Tehran") ; + Countries_IND_provinces_Haryana = UsePN (mkPN "Haryana") ; + Countries_TJ_provinces_Henan_cities_Shangqiu = UsePN (mkPN "Shangqiu") ; + WesternSahara = UsePN (mkPN "Western Sahara") ; + Countries_PL_provinces_Kaliskie = UsePN (mkPN "Kaliskie") ; + Countries_CH_provinces_SG_cities_SanktGallen = UsePN (mkPN "Sankt Gallen") ; + Countries_TJ_provinces_Hebei_cities_Hengshui = UsePN (mkPN "Hengshui") ; + Countries_THA_provinces_PathumThani = UsePN (mkPN "Pathum Thani") ; + Countries_E_provinces_Estremadura = UsePN (mkPN "Estremadura") ; + Countries_H_provinces_BacsKiskun_cities_Kecskemet = UsePN (mkPN "Kecskemet") ; + Countries_TR_provinces_Batman = UsePN (mkPN "Batman") ; + Countries_BR_provinces_Sergipe_cities_Arapiraca = UsePN (mkPN "Arapiraca") ; + Countries_USA_provinces_Florida_cities_PembrokePines = UsePN (mkPN "Pembroke Pines") ; + Countries_R_provinces_Samarskayaoblast_cities_Tolyatti = UsePN (mkPN "Tolyatti") ; + Countries_PE_provinces_Apurimac = UsePN (mkPN "Apurimac") ; + Countries_MAL_provinces_Terengganu = UsePN (mkPN "Terengganu") ; + Countries_GB_provinces_TyneandWear = UsePN (mkPN "Tyne and Wear") ; + Countries_R_provinces_Permskayaoblast_cities_Solikamsk = UsePN (mkPN "Solikamsk") ; + Countries_S_provinces_Malmohus_cities_Helsingborg = UsePN (mkPN "Helsingborg") ; + Countries_NL_provinces_ZuidHolland_cities_sGravenhage = UsePN (mkPN "s Gravenhage") ; + Countries_GB_provinces_Hampshire_cities_Basingstoke = UsePN (mkPN "Basingstoke") ; + Countries_EAK_provinces_Western_cities_Kakamega = UsePN (mkPN "Kakamega") ; + Countries_BR_provinces_Parana_cities_Maringa = UsePN (mkPN "Maringa") ; + Countries_J_provinces_Osaka_cities_Osaka = UsePN (mkPN "Osaka") ; + Countries_F_provinces_Alsace = UsePN (mkPN "Alsace") ; + Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_KualaLumpur = UsePN (mkPN "Kuala Lumpur") ; + Countries_GB_provinces_Humberside_cities_KingstonuponHull = UsePN (mkPN "Kingston upon Hull") ; + Rivers_ColumbiaRiver = UsePN (mkPN "Columbia River") ; + Mountains_MtMcKinley = UsePN (mkPN "Mt McKinley") ; + Countries_E_provinces_Valencia = UsePN (mkPN "Valencia") ; + Countries_RA_provinces_Salta = UsePN (mkPN "Salta") ; + Countries_ET_provinces_ElQahira_munic = UsePN (mkPN "El Qahira (munic.)") ; + Countries_RA_provinces_SanJuan_cities_SanJuan = UsePN (mkPN "San Juan") ; + Countries_CDN_provinces_BritishColumbia_cities_Burnaby = UsePN (mkPN "Burnaby") ; + Countries_RSA_cities_Carletonville = UsePN (mkPN "Carletonville") ; + Islands_PrinceEdwardIsland = UsePN (mkPN "Prince Edward Island") ; + Countries_MEX_provinces_NuevoLeon_cities_Guadalupe = UsePN (mkPN "Guadalupe") ; + Countries_SN_provinces_Ziguinchor = UsePN (mkPN "Ziguinchor") ; + Countries_USA_provinces_Massachusetts = UsePN (mkPN "Massachusetts") ; + Countries_IR_provinces_Esfahan_cities_Khomeynishahr = UsePN (mkPN "Khomeynishahr") ; + Countries_GR_provinces_Ipiros = UsePN (mkPN "Ipiros") ; + Countries_TJ_provinces_NeiMonggol_cities_Chifeng = UsePN (mkPN "Chifeng") ; + Countries_PL_provinces_Bydgoskie = UsePN (mkPN "Bydgoskie") ; + Countries_VN_provinces_NamHa = UsePN (mkPN "Nam Ha") ; + Countries_THA_provinces_NakhonSiThammarat = UsePN (mkPN "Nakhon Si Thammarat") ; + Islands_LittleCayman = UsePN (mkPN "Little Cayman") ; + Countries_CO_provinces_Antioquia_cities_Bello = UsePN (mkPN "Bello") ; + Countries_USA_provinces_Nebraska_cities_Lincoln = UsePN (mkPN "Lincoln") ; + Countries_GB_provinces_Derbyshire_cities_Chesterfield = UsePN (mkPN "Chesterfield") ; + Countries_NL_provinces_ZuidHolland = UsePN (mkPN "Zuid Holland") ; + Countries_IR_provinces_Khorasan_cities_Sabzevar = UsePN (mkPN "Sabzevar") ; + Countries_USA_provinces_Texas_cities_Abilene = UsePN (mkPN "Abilene") ; + Countries_PA_provinces_Chiriqui_cities_David = UsePN (mkPN "David") ; + Islands_Sachalin = UsePN (mkPN "Sachalin") ; + Countries_E_provinces_Andalusia_cities_Almeria = UsePN (mkPN "Almeria") ; + Countries_BDS_cities_Bridgetown = UsePN (mkPN "Bridgetown") ; + Countries_ANG_provinces_CuandoCubango_cities_Menongue = UsePN (mkPN "Menongue") ; + Countries_ROK_cities_Suwon = UsePN (mkPN "Suwon") ; + Countries_N_provinces_Nordland_cities_Narvik = UsePN (mkPN "Narvik") ; + Pakistan = UsePN (mkPN "Pakistan") ; + Countries_TR_provinces_Van_cities_Van = UsePN (mkPN "Van") ; + Rivers_HudsonRiver = UsePN (mkPN "Hudson River") ; + Countries_TJ_provinces_Hunan_cities_Huaihua = UsePN (mkPN "Huaihua") ; + Countries_KAZ_provinces_SoltustikQazaqstan_cities_Petropavl = UsePN (mkPN "Petropavl") ; + Countries_RA_provinces_BuenosAires_cities_SanIsidro = UsePN (mkPN "San Isidro") ; + Countries_TJ_provinces_Guangdong_cities_Zhuhai = UsePN (mkPN "Zhuhai") ; + Countries_PK_cities_Sargodha = UsePN (mkPN "Sargodha") ; + Countries_KAZ_provinces_Taldyqorghan = UsePN (mkPN "Taldyqorghan") ; + Islands_Linosa = UsePN (mkPN "Linosa") ; + Countries_PK_cities_Jhelum = UsePN (mkPN "Jhelum") ; + Rivers_Kitakami = UsePN (mkPN "Kitakami") ; + Countries_N_provinces_SognogFjordane_cities_Hermannsverk = UsePN (mkPN "Hermannsverk") ; + Countries_RA_provinces_Chaco_cities_Resistencia = UsePN (mkPN "Resistencia") ; + Countries_PL_provinces_Krakowskie_cities_Krakow = UsePN (mkPN "Krakow") ; + Countries_S_provinces_Blekinge = UsePN (mkPN "Blekinge") ; + Rivers_Volga = UsePN (mkPN "Volga") ; + Rivers_Dalaelv = UsePN (mkPN "Dalaelv") ; + Countries_TR_provinces_Istanbul = UsePN (mkPN "Istanbul") ; + Countries_BD_cities_Khulna = UsePN (mkPN "Khulna") ; + Countries_BR_provinces_Goias = UsePN (mkPN "Goias") ; + Countries_BR_provinces_RiodeJaneiro_cities_BarraMansa = UsePN (mkPN "Barra Mansa") ; + Countries_MYA_provinces_Mandalay = UsePN (mkPN "Mandalay") ; + Andorra = UsePN (mkPN "Andorra") ; + Countries_TR_provinces_Zonguldak = UsePN (mkPN "Zonguldak") ; + Countries_H_provinces_Szolnok = UsePN (mkPN "Szolnok") ; + Countries_RO_provinces_Harghita_cities_MiercureaCiuc = UsePN (mkPN "Miercurea Ciuc") ; + Countries_I_provinces_Lazio = UsePN (mkPN "Lazio") ; + Countries_MOC_provinces_Maputo_munic = UsePN (mkPN "Maputo (munic.)") ; + Countries_USA_provinces_Missouri_cities_St_Louis = UsePN (mkPN "St. Louis") ; + Countries_Z_provinces_Eastern_cities_Chipata = UsePN (mkPN "Chipata") ; + Countries_GB_provinces_Kent_cities_Canterbury = UsePN (mkPN "Canterbury") ; + Mountains_MtRainier = UsePN (mkPN "Mt Rainier") ; + Countries_PL_provinces_Czestochowskie_cities_Czestochowa = UsePN (mkPN "Czestochowa") ; + Countries_E_provinces_BalearicIslands_cities_PalmadeMallorca = UsePN (mkPN "Palma de Mallorca") ; + Countries_GR_cities_Volos = UsePN (mkPN "Volos") ; + Countries_YV_provinces_Bolivar = UsePN (mkPN "Bolivar") ; + Countries_GB_provinces_NeathandPortTalbot_cities_PortTalbot = UsePN (mkPN "Port Talbot") ; + Countries_CO_provinces_Caqueta = UsePN (mkPN "Caqueta") ; + Countries_BR_provinces_SantaCatarina_cities_Florianopolis = UsePN (mkPN "Florianopolis") ; + Countries_AUS_provinces_Queensland = UsePN (mkPN "Queensland") ; + Countries_NL_provinces_NoordBrabant_cities_Eindhoven = UsePN (mkPN "Eindhoven") ; + Countries_PA_provinces_Veraguas = UsePN (mkPN "Veraguas") ; + Countries_RA_provinces_Chubut_cities_Rawson = UsePN (mkPN "Rawson") ; + Countries_IND_provinces_TamilNadu_cities_Coimbatore = UsePN (mkPN "Coimbatore") ; + Countries_BR_provinces_RiodeJaneiro_cities_Queimados = UsePN (mkPN "Queimados") ; + Countries_WAN_cities_Sokoto = UsePN (mkPN "Sokoto") ; + Countries_CH_provinces_SH = UsePN (mkPN "SH") ; + Countries_ES_provinces_Cabanas = UsePN (mkPN "Cabanas") ; + Countries_ANG_provinces_CuanzaSul_cities_Sumbe = UsePN (mkPN "Sumbe") ; + Countries_USA_provinces_Wisconsin = UsePN (mkPN "Wisconsin") ; + Ghana = UsePN (mkPN "Ghana") ; + Countries_IR_provinces_Lorestan_cities_Khorramabad = UsePN (mkPN "Khorramabad") ; + Countries_BR_provinces_DistritoFederal_cities_Brasilia = UsePN (mkPN "Brasilia") ; + Countries_S_provinces_Jonkoping_cities_Jonkoping = UsePN (mkPN "Jonkoping") ; + Rivers_Jenissej = UsePN (mkPN "Jenissej") ; + Mountains_Fako = UsePN (mkPN "Fako") ; + Countries_VN_provinces_VinhPhu = UsePN (mkPN "Vinh Phu") ; + Islands_Alderney = UsePN (mkPN "Alderney") ; + Countries_USA_provinces_Tennessee_cities_NashvilleDavidson = UsePN (mkPN "Nashville Davidson") ; + Islands_Kreta = UsePN (mkPN "Kreta") ; + Countries_THA_provinces_NongKhai = UsePN (mkPN "Nong Khai") ; + Norway = UsePN (mkPN "Norway") ; + Countries_MEX_provinces_Morelos_cities_Cuernavaca = UsePN (mkPN "Cuernavaca") ; + Rivers_Paraguay = UsePN (mkPN "Paraguay") ; + Lakes_LakeMichigan = UsePN (mkPN "Lake Michigan") ; + Countries_VN_provinces_LaoCai = UsePN (mkPN "Lao Cai") ; + Countries_BR_provinces_SaoPaulo_cities_Barueri = UsePN (mkPN "Barueri") ; + Countries_TJ_provinces_Qinghai_cities_Xining = UsePN (mkPN "Xining") ; + Denmark = UsePN (mkPN "Denmark") ; + Countries_UA_provinces_Kharkivska = UsePN (mkPN "Kharkivska") ; + Countries_ET_provinces_SinaashShamaliyah = UsePN (mkPN "Sina ash Shamaliyah") ; + Countries_IR_provinces_Kordestan = UsePN (mkPN "Kordestan") ; + Countries_J_provinces_Kanagawa_cities_Yokohama = UsePN (mkPN "Yokohama") ; + Islands_Westray = UsePN (mkPN "Westray") ; + Seas_NorwegianSea = UsePN (mkPN "Norwegian Sea") ; + Countries_CR_provinces_Cartago = UsePN (mkPN "Cartago") ; + Countries_USA_provinces_Oregon_cities_Portland = UsePN (mkPN "Portland") ; + Countries_PL_provinces_Katowickie_cities_Sosnowiec = UsePN (mkPN "Sosnowiec") ; + Countries_CO_provinces_Huila_cities_Neiva = UsePN (mkPN "Neiva") ; + Countries_BR_provinces_Parana_cities_FozdoIguacu = UsePN (mkPN "Foz do Iguacu") ; + Countries_RA_provinces_EntreRios_cities_Parana = UsePN (mkPN "Parana") ; + Countries_PL_provinces_Suwalskie_cities_Suwalki = UsePN (mkPN "Suwalki") ; + Countries_USA_provinces_Florida_cities_FortLauderdale = UsePN (mkPN "Fort Lauderdale") ; + Countries_PY_cities_Asuncion = UsePN (mkPN "Asuncion") ; + Countries_TJ_provinces_Shaanxi_cities_Xi = UsePN (mkPN "Xi") ; + Rivers_Niger = UsePN (mkPN "Niger") ; + Countries_TJ_provinces_Beijing_munic_cities_Beijing = UsePN (mkPN "Beijing") ; + Countries_PE_provinces_Apurimac_cities_Abancay = UsePN (mkPN "Abancay") ; + Countries_CDN_provinces_NovaScotia_cities_Halifax = UsePN (mkPN "Halifax") ; + Countries_IR_provinces_Tehran_cities_Qazvin = UsePN (mkPN "Qazvin") ; + Countries_CDN_provinces_Newfoundland_cities_SaintJohns = UsePN (mkPN "Saint Johns") ; + Countries_E_provinces_Andalusia_cities_Malaga = UsePN (mkPN "Malaga") ; + Countries_SN_provinces_Fatick_cities_Fatick = UsePN (mkPN "Fatick") ; + Islands_SaoMiguel = UsePN (mkPN "Sao Miguel") ; + Countries_R_provinces_Rep_ofBuryatiya_cities_UlanUde = UsePN (mkPN "Ulan Ude") ; + Countries_EAT_provinces_Iringa = UsePN (mkPN "Iringa") ; + Countries_AUS_provinces_NorthernTerritory_cities_Darwin = UsePN (mkPN "Darwin") ; + Islands_Ascension = UsePN (mkPN "Ascension") ; + Countries_MAL_provinces_Perak_cities_Taiping = UsePN (mkPN "Taiping") ; + Countries_BR_provinces_Parana_cities_Paranagua = UsePN (mkPN "Paranagua") ; + Mountains_Oeraefajoekull = UsePN (mkPN "Oeraefajoekull") ; + Countries_CDN_provinces_Ontario_cities_Kitchener = UsePN (mkPN "Kitchener") ; + Countries_CO_provinces_SantanderdelSur_cities_Barrancabermeja = UsePN (mkPN "Barrancabermeja") ; + Islands_Barbados = UsePN (mkPN "Barbados") ; + Countries_IND_provinces_TamilNadu_cities_Madurai = UsePN (mkPN "Madurai") ; + Countries_BR_provinces_Bahia_cities_Alagoinhas = UsePN (mkPN "Alagoinhas") ; + Countries_USA_provinces_Iowa = UsePN (mkPN "Iowa") ; + Countries_TJ_provinces_Henan_cities_Zhumadian = UsePN (mkPN "Zhumadian") ; + Countries_UZB_provinces_Toshkent_cities_Chirchiq = UsePN (mkPN "Chirchiq") ; + Countries_BR_provinces_SaoPaulo_cities_SaoCaetanodoSul = UsePN (mkPN "Sao Caetano do Sul") ; + Countries_D_provinces_Sachsen = UsePN (mkPN "Sachsen") ; + Countries_ROK_cities_Ulsan = UsePN (mkPN "Ulsan") ; + Countries_R_provinces_Rep_ofTatarstan_cities_NaberezhnyeChelny = UsePN (mkPN "Naberezhnye Chelny") ; + Countries_TM_provinces_Dashhowuz = UsePN (mkPN "Dashhowuz") ; + Countries_TJ_provinces_Heilongjiang_cities_Jiamusi = UsePN (mkPN "Jiamusi") ; + Countries_BR_provinces_Parana_cities_Cascavel = UsePN (mkPN "Cascavel") ; + Countries_IND_provinces_Punjab_cities_Jalandhar = UsePN (mkPN "Jalandhar") ; + Countries_MYA_provinces_Kayah = UsePN (mkPN "Kayah") ; + Rivers_Gambia = UsePN (mkPN "Gambia") ; + Countries_SUD_provinces_Darfur_cities_alFasher = UsePN (mkPN "al Fasher") ; + Countries_TR_provinces_Kars = UsePN (mkPN "Kars") ; + Countries_RI_cities_Yogyakarta = UsePN (mkPN "Yogyakarta") ; + Countries_ET_provinces_BeniSuef = UsePN (mkPN "Beni Suef") ; + Countries_RSA_provinces_NorthWest = UsePN (mkPN "North West") ; + Countries_UAE_provinces_AshShariqah = UsePN (mkPN "Ash Shariqah") ; + Mali = UsePN (mkPN "Mali") ; + Countries_UZB_provinces_Qoraqalpoghiston_cities_Nukus = UsePN (mkPN "Nukus") ; + Countries_I_provinces_Calabria_cities_Cosenza = UsePN (mkPN "Cosenza") ; + Countries_R_provinces_Kurganskayaoblast = UsePN (mkPN "Kurganskaya oblast") ; + Countries_F_provinces_ChampagneArdenne_cities_ChalonssurMarne = UsePN (mkPN "Chalons sur Marne") ; + Islands_Khark = UsePN (mkPN "Khark") ; + Countries_cid_cia_Mayotte_cities_Mamoutzou = UsePN (mkPN "Mamoutzou") ; + Organizations_G_9 = UsePN (mkPN "Group of 9") ; + Countries_HCA_provinces_FranciscoMorazan_cities_Siguatepeque = UsePN (mkPN "Siguatepeque") ; + Islands_BishopRock = UsePN (mkPN "Bishop Rock") ; + Countries_PE_provinces_Pasco_cities_CerrodePasco = UsePN (mkPN "Cerro de Pasco") ; + Rivers_Amudarja = UsePN (mkPN "Amudarja") ; + Countries_TJ_provinces_Guangdong_cities_Dongguan = UsePN (mkPN "Dongguan") ; + Countries_GB_provinces_GreaterManchester = UsePN (mkPN "Greater Manchester") ; + Countries_USA_provinces_Minnesota = UsePN (mkPN "Minnesota") ; + Countries_AUS_provinces_SouthAustralia = UsePN (mkPN "South Australia") ; + Countries_USA_provinces_Texas_cities_Houston = UsePN (mkPN "Houston") ; + Countries_YV_provinces_Guarico_cities_SanJuan = UsePN (mkPN "San Juan") ; + Countries_CO_provinces_Guaviare_cities_SanJosedelGuaviare = UsePN (mkPN "San Jose del Guaviare") ; + Countries_GB_provinces_Berkshire = UsePN (mkPN "Berkshire") ; + Countries_cid_cia_Guadeloupe = UsePN (mkPN "Guadeloupe") ; + Countries_D_provinces_Niedersachsen_cities_Wolfsburg = UsePN (mkPN "Wolfsburg") ; + Countries_GB_provinces_EastSussex_cities_Lewes = UsePN (mkPN "Lewes") ; + Countries_MEX_provinces_Durango_cities_Durango = UsePN (mkPN "Durango") ; + Countries_GB_provinces_Cornwall_IslesofScilly_cities_Truro = UsePN (mkPN "Truro") ; + Countries_CH_provinces_SO = UsePN (mkPN "SO") ; + Countries_TJ_provinces_Heilongjiang_cities_Suihua = UsePN (mkPN "Suihua") ; + Countries_KAZ_provinces_ShyghysQazaqstan_cities_Oskemen = UsePN (mkPN "Oskemen") ; + Countries_R_provinces_Rep_ofTatarstan_cities_Zelenodolysk = UsePN (mkPN "Zelenodolysk") ; + Countries_N_provinces_Vestfold_cities_Toensberg = UsePN (mkPN "Toensberg") ; + Organizations_OECD = UsePN (mkPN "Organization for Economic Cooperation and Development") ; + Countries_I_provinces_Calabria_cities_Messina = UsePN (mkPN "Messina") ; + Countries_D_provinces_BadenWurttemberg_cities_Pforzheim = UsePN (mkPN "Pforzheim") ; + Rivers_Lomami = UsePN (mkPN "Lomami") ; + Countries_CH_provinces_TG = UsePN (mkPN "TG") ; + Countries_RSA_provinces_KwazuluNatal_cities_Durban = UsePN (mkPN "Durban") ; + Mountains_Kilimanjaro = UsePN (mkPN "Kilimanjaro") ; + Countries_SYR_cities_Damascus = UsePN (mkPN "Damascus") ; + Countries_USA_provinces_NorthCarolina_cities_WinstonSalem = UsePN (mkPN "Winston Salem") ; + Countries_GUY_cities_Georgetown = UsePN (mkPN "Georgetown") ; + Countries_F_provinces_RhoneAlpes_cities_SaintEtienne = UsePN (mkPN "Saint Etienne") ; + Countries_R_provinces_Saratovskayaoblast = UsePN (mkPN "Saratovskaya oblast") ; + Countries_KAZ_provinces_Qaraghandy = UsePN (mkPN "Qaraghandy") ; + Countries_IND_provinces_Meghalaya_cities_Shillong = UsePN (mkPN "Shillong") ; + Countries_MA_cities_Oujda = UsePN (mkPN "Oujda") ; + SierraLeone = UsePN (mkPN "Sierra Leone") ; + Countries_MA_cities_Safi = UsePN (mkPN "Safi") ; + Countries_EAK_provinces_Nairobi_cities_Nairobi = UsePN (mkPN "Nairobi") ; + Countries_IND_provinces_Bihar_cities_Jamshedpur = UsePN (mkPN "Jamshedpur") ; + Countries_BR_cities_NossaSenhoradoSocorro = UsePN (mkPN "Nossa Senhora do Socorro") ; + Countries_VN_provinces_QuangNinh = UsePN (mkPN "Quang Ninh") ; + Countries_N_provinces_Telemark = UsePN (mkPN "Telemark") ; + Countries_TM_provinces_Dashhowuz_cities_Tashauz = UsePN (mkPN "Tashauz") ; + Countries_TJ_provinces_Anhui_cities_Luan = UsePN (mkPN "Luan") ; + Countries_YV_provinces_Sucre_cities_Cumana = UsePN (mkPN "Cumana") ; + Countries_USA_provinces_Massachusetts_cities_Worcester = UsePN (mkPN "Worcester") ; + Organizations_C = UsePN (mkPN "Commonwealth") ; + Countries_RO_provinces_Bucuresti = UsePN (mkPN "Bucuresti") ; + Countries_UAE_provinces_AbuDhabi = UsePN (mkPN "Abu Dhabi") ; + Countries_THA_provinces_KhonKaen = UsePN (mkPN "Khon Kaen") ; + Countries_USA_provinces_NewMexico_cities_SantaFe = UsePN (mkPN "Santa Fe") ; + Countries_BOL_cities_Sucre = UsePN (mkPN "Sucre") ; + Countries_ZRE_provinces_HautZaire_cities_Kisangani = UsePN (mkPN "Kisangani") ; + Countries_GR_provinces_NotionAiyaion = UsePN (mkPN "Notion Aiyaion") ; + Countries_WAN_cities_AdoEkiti = UsePN (mkPN "Ado Ekiti") ; + Countries_D_provinces_NordrheinWestfalen_cities_Hamm = UsePN (mkPN "Hamm") ; + Countries_GB_provinces_NorthernIreland = UsePN (mkPN "Northern Ireland") ; + Countries_IND_provinces_Delhi = UsePN (mkPN "Delhi") ; + Countries_CDN_provinces_NorthwestTerritories_cities_Yellowknife = UsePN (mkPN "Yellowknife") ; + Taiwan = UsePN (mkPN "Taiwan") ; + Countries_TJ_provinces_Shanxi = UsePN (mkPN "Shanxi") ; + Countries_CO_provinces_Magdalena = UsePN (mkPN "Magdalena") ; + Countries_CO_provinces_Antioquia = UsePN (mkPN "Antioquia") ; + Countries_TJ_provinces_Guizhou = UsePN (mkPN "Guizhou") ; + Organizations_BIS = UsePN (mkPN "Bank for International Settlements") ; + Paraguay = UsePN (mkPN "Paraguay") ; + Countries_D_provinces_RheinlandPfalz = UsePN (mkPN "Rheinland Pfalz") ; + Countries_P_provinces_Beja = UsePN (mkPN "Beja") ; + Rwanda = UsePN (mkPN "Rwanda") ; + Countries_PL_provinces_Kieleckie_cities_Kielce = UsePN (mkPN "Kielce") ; + Afghanistan = UsePN (mkPN "Afghanistan") ; + Countries_PK_cities_Chiniot = UsePN (mkPN "Chiniot") ; + Countries_ROK_cities_Songnam = UsePN (mkPN "Songnam") ; + Organizations_IOC = UsePN (mkPN "International Olympic Committee") ; + Countries_TJ_provinces_Zhejiang = UsePN (mkPN "Zhejiang") ; + Mountains_MtRobson = UsePN (mkPN "Mt Robson") ; + Countries_R_provinces_Stavropolskykray_cities_Stavropol = UsePN (mkPN "Stavropol") ; + Countries_GB_provinces_Cardiff_cities_Cardiff = UsePN (mkPN "Cardiff") ; + Countries_C_provinces_Cienfuegos_cities_Cienfuegos = UsePN (mkPN "Cienfuegos") ; + Countries_TJ_provinces_Shandong_cities_Jining = UsePN (mkPN "Jining") ; + Countries_J_provinces_Tochigi = UsePN (mkPN "Tochigi") ; + Countries_ET_provinces_KafrelSheikh_cities_KafrelSheikh = UsePN (mkPN "Kafr el Sheikh") ; + Countries_E_provinces_BasqueCountry_cities_Donostia = UsePN (mkPN "Donostia") ; + Countries_UA_provinces_Sumska = UsePN (mkPN "Sumska") ; + Countries_HCA_provinces_GraciasaDios_cities_PuertoLempira = UsePN (mkPN "Puerto Lempira") ; + Organizations_OAS = UsePN (mkPN "Organization of American States") ; + Countries_J_provinces_Miyagi_cities_Sendai = UsePN (mkPN "Sendai") ; + Countries_R_provinces_Krasnodarskykray_cities_Novorossiysk = UsePN (mkPN "Novorossiysk") ; + Countries_HCA_provinces_LaPaz = UsePN (mkPN "La Paz") ; + Countries_R_provinces_Vologodskayaoblast = UsePN (mkPN "Vologodskaya oblast") ; + Countries_PE_provinces_Lima_cities_Lima = UsePN (mkPN "Lima") ; + Countries_GB_provinces_Cambridgeshire_cities_Peterborough = UsePN (mkPN "Peterborough") ; + Countries_IR_provinces_Mazandaran_cities_Amol = UsePN (mkPN "Amol") ; + Countries_BR_provinces_SaoPaulo_cities_SaoJosedoRioPreto = UsePN (mkPN "Sao Jose do Rio Preto") ; + Countries_BR_provinces_Sergipe = UsePN (mkPN "Sergipe") ; + Mountains_PikRevoluzija = UsePN (mkPN "Pik Revoluzija") ; + Islands_Lefkas = UsePN (mkPN "Lefkas") ; + Countries_RO_provinces_Suceava_cities_Suceava = UsePN (mkPN "Suceava") ; + Countries_RA_provinces_BuenosAires_cities_LomasdeZamoras = UsePN (mkPN "Lomas de Zamoras") ; + Countries_GB_provinces_Newport_cities_Newport = UsePN (mkPN "Newport") ; + Countries_THA_provinces_NorthernRegion = UsePN (mkPN "Northern Region") ; + Countries_P_provinces_Porto_cities_VilaNovadeGaia = UsePN (mkPN "Vila Nova de Gaia") ; + Countries_RC_provinces_Taichung_munic_cities_Taichung = UsePN (mkPN "Taichung") ; + EquatorialGuinea = UsePN (mkPN "Equatorial Guinea") ; + Countries_GB_provinces_Essex_cities_Braintree = UsePN (mkPN "Braintree") ; + Countries_CDN_cities_Surrey = UsePN (mkPN "Surrey") ; + Islands_Hispaniola = UsePN (mkPN "Hispaniola") ; + Countries_N_provinces_Buskerud_cities_Drammen = UsePN (mkPN "Drammen") ; + Countries_GB_provinces_GreaterLondon = UsePN (mkPN "Greater London") ; + Countries_Z_provinces_Copperbelt_cities_Luanshya = UsePN (mkPN "Luanshya") ; + Countries_TJ_provinces_NeiMonggol_cities_Baotou = UsePN (mkPN "Baotou") ; + Lakes_LakeAssale = UsePN (mkPN "Lake Assale") ; + Countries_VN_provinces_NinhBinh = UsePN (mkPN "Ninh Binh") ; + Countries_cid_cia_American_Samoa = UsePN (mkPN "American Samoa") ; + Countries_TR_provinces_Sirnak = UsePN (mkPN "Sirnak") ; + Countries_C_provinces_Camaguey_cities_Camaguey = UsePN (mkPN "Camaguey") ; + Countries_MEX_provinces_Queretaro_cities_Queretaro = UsePN (mkPN "Queretaro") ; + Countries_PL_provinces_Piotrkowskie = UsePN (mkPN "Piotrkowskie") ; + Countries_USA_provinces_Florida_cities_St_Petersburg = UsePN (mkPN "St. Petersburg") ; + Countries_PE_provinces_Puno = UsePN (mkPN "Puno") ; + Countries_UA_provinces_IvanoFrankivska = UsePN (mkPN "Ivano Frankivska") ; + Countries_THA_provinces_Yala = UsePN (mkPN "Yala") ; + Countries_MYA_provinces_Sagaing_cities_Monywa = UsePN (mkPN "Monywa") ; + Countries_ET_provinces_ElSuweiz_munic_cities_Suez = UsePN (mkPN "Suez") ; + Countries_J_provinces_Okinawa = UsePN (mkPN "Okinawa") ; + Countries_UA_provinces_Dnipropetrovska_cities_KryvyyRih = UsePN (mkPN "Kryvyy Rih") ; + Countries_PK_cities_Bahawalpur = UsePN (mkPN "Bahawalpur") ; + Countries_EC_cities_Quito = UsePN (mkPN "Quito") ; + Countries_cid_cia_Martinique = UsePN (mkPN "Martinique") ; + Countries_TJ_provinces_Jilin_cities_Longjing = UsePN (mkPN "Longjing") ; + Countries_CDN_provinces_Quebec_cities_Longueuil = UsePN (mkPN "Longueuil") ; + Countries_GB_provinces_Oxfordshire_cities_Oxford = UsePN (mkPN "Oxford") ; + Lakes_Issyk_Kul = UsePN (mkPN "Issyk-Kul") ; + Countries_BR_provinces_MinasGerais_cities_PocosdeCaldas = UsePN (mkPN "Pocos de Caldas") ; + Countries_GB_provinces_Wrexham = UsePN (mkPN "Wrexham") ; + Lakes_GreatSlaveLake = UsePN (mkPN "Great Slave Lake") ; + Islands_Mohilla = UsePN (mkPN "Mohilla") ; + Countries_PE_provinces_Piura = UsePN (mkPN "Piura") ; + Countries_GB_provinces_Wrexham_cities_Wrexham = UsePN (mkPN "Wrexham") ; + Countries_THA_provinces_Ranong = UsePN (mkPN "Ranong") ; + Countries_KAZ_provinces_Kokchetau = UsePN (mkPN "Kokchetau") ; + Countries_C_provinces_Cienfuegos = UsePN (mkPN "Cienfuegos") ; + Countries_PE_provinces_Callao = UsePN (mkPN "Callao") ; + Countries_PE_provinces_Lambayeque_cities_Chiclayo = UsePN (mkPN "Chiclayo") ; + Countries_UA_provinces_Poltavska_cities_Poltava = UsePN (mkPN "Poltava") ; + Rivers_Nile = UsePN (mkPN "Nile") ; + Countries_IND_provinces_UttarPradesh_cities_Varanasi = UsePN (mkPN "Varanasi") ; + Countries_TR_provinces_Siirt_cities_Siirt = UsePN (mkPN "Siirt") ; + Countries_R_provinces_Moskovskayaoblast_cities_Serpukhov = UsePN (mkPN "Serpukhov") ; + Countries_DK_cities_Aalborg = UsePN (mkPN "Aalborg") ; + Countries_PL_provinces_Bialskopodlaskie = UsePN (mkPN "Bialskopodlaskie") ; + Countries_PK_cities_LahoreCantonment = UsePN (mkPN "Lahore Cantonment") ; + Countries_S_provinces_Kopparberg = UsePN (mkPN "Kopparberg") ; + Countries_RSA_cities_Germiston = UsePN (mkPN "Germiston") ; + Countries_MAL_cities_SeloyangBaru = UsePN (mkPN "Seloyang Baru") ; + Countries_USA_provinces_Indiana_cities_Evansville = UsePN (mkPN "Evansville") ; + Countries_ANG_provinces_Benguela_cities_Benguela = UsePN (mkPN "Benguela") ; + Seas_NorthSea = UsePN (mkPN "North Sea") ; + Countries_UAE_provinces_UmmalQaywayn = UsePN (mkPN "Umm al Qaywayn") ; + Countries_PL_provinces_Walbrzyskie = UsePN (mkPN "Walbrzyskie") ; + Countries_BR_provinces_Bahia_cities_Camacari = UsePN (mkPN "Camacari") ; + Countries_BR_cities_SapucaiadoSul = UsePN (mkPN "Sapucaia do Sul") ; + Countries_CO_provinces_Meta = UsePN (mkPN "Meta") ; + Countries_D_provinces_BadenWurttemberg_cities_Heidelberg = UsePN (mkPN "Heidelberg") ; + Countries_ETH_cities_Jima = UsePN (mkPN "Jima") ; + Organizations_IFAD = UsePN (mkPN "International Fund for Agricultural Development") ; + Countries_H_provinces_Tolna_cities_Szekszard = UsePN (mkPN "Szekszard") ; + Countries_R_provinces_Moskovskayaoblast_cities_OrekhovoZuyevo = UsePN (mkPN "Orekhovo Zuyevo") ; + Countries_cid_cia_Saint_Pierre_and_Miquelon_cities_Saint_Pierre = UsePN (mkPN "Saint-Pierre") ; + Countries_GB_provinces_Gloucestershire_cities_Cheltenham = UsePN (mkPN "Cheltenham") ; + Mountains_DjebelAures = UsePN (mkPN "Djebel Aures") ; + Countries_BR_provinces_RioGrandedoSul_cities_Bage = UsePN (mkPN "Bage") ; + Countries_CO_provinces_SantaFedeBogota_DC_cities_Bogota = UsePN (mkPN "Bogota") ; + Countries_PE_provinces_Junin = UsePN (mkPN "Junin") ; + Countries_RO_provinces_BistritaNasaud_cities_Bistrita = UsePN (mkPN "Bistrita") ; + Countries_BR_provinces_Amapa_cities_Macapa = UsePN (mkPN "Macapa") ; + Countries_R_provinces_Kaliningradskayaoblast_cities_Kaliningrad = UsePN (mkPN "Kaliningrad") ; + Countries_J_provinces_Gumma = UsePN (mkPN "Gumma") ; + Countries_TJ_provinces_Hubei_cities_Honghu = UsePN (mkPN "Honghu") ; + Countries_RC_provinces_Taitung = UsePN (mkPN "Taitung") ; + Suriname = UsePN (mkPN "Suriname") ; + Countries_RC_provinces_Nantou = UsePN (mkPN "Nantou") ; + Countries_USA_provinces_Pennsylvania_cities_Harrisburg = UsePN (mkPN "Harrisburg") ; + Countries_cid_cia_Glorioso_Islands = UsePN (mkPN "Glorioso Islands") ; + Countries_UA_provinces_Zhytomyrska_cities_Zhytomyr = UsePN (mkPN "Zhytomyr") ; + Countries_GB_provinces_Suffolk_cities_Ipswich = UsePN (mkPN "Ipswich") ; + Countries_I_provinces_Campania_cities_Napoli = UsePN (mkPN "Napoli") ; + Countries_KAZ_provinces_Torghay_cities_Arqalyq = UsePN (mkPN "Arqalyq") ; + Countries_ANG_provinces_Huila = UsePN (mkPN "Huila") ; + Countries_E_provinces_Madrid_cities_Alcorcon = UsePN (mkPN "Alcorcon") ; + Countries_I_provinces_Campania_cities_Salerno = UsePN (mkPN "Salerno") ; + Countries_PK_cities_Sukkur = UsePN (mkPN "Sukkur") ; + Countries_CAM_provinces_Est = UsePN (mkPN "Est") ; + Countries_IND_provinces_Delhi_cities_Ghaziabad = UsePN (mkPN "Ghaziabad") ; + Countries_ROK_cities_Taejon = UsePN (mkPN "Taejon") ; + Countries_TJ_provinces_Guizhou_cities_Kaili = UsePN (mkPN "Kaili") ; + Countries_MOC_provinces_CaboDelgado = UsePN (mkPN "Cabo Delgado") ; + Countries_BR_provinces_MinasGerais_cities_PatosdeMinas = UsePN (mkPN "Patos de Minas") ; + Countries_ET_provinces_Matruh_cities_MarsaMatruh = UsePN (mkPN "Marsa Matruh") ; + Countries_RO_provinces_Mures_cities_TirguMures = UsePN (mkPN "Tirgu Mures") ; + Countries_TJ_provinces_Henan_cities_Xuchang = UsePN (mkPN "Xuchang") ; + Countries_Z_provinces_Lusaka = UsePN (mkPN "Lusaka") ; + Countries_TR_provinces_Van = UsePN (mkPN "Van") ; + Countries_THA_provinces_SamutSakhon = UsePN (mkPN "Samut Sakhon") ; + Countries_MEX_provinces_Tamaulipas_cities_NuevoLaredo = UsePN (mkPN "Nuevo Laredo") ; + Deserts_GrandSandDesert = UsePN (mkPN "Grand Sand Desert") ; + Countries_IND_provinces_Assam_cities_Dispur = UsePN (mkPN "Dispur") ; + Rivers_Bomu = UsePN (mkPN "Bomu") ; + Countries_EAT_provinces_Mtwara = UsePN (mkPN "Mtwara") ; + Countries_R_provinces_Sverdlovskayaoblast_cities_NizhniyTagil = UsePN (mkPN "Nizhniy Tagil") ; + Countries_THA_provinces_Phitsanulok = UsePN (mkPN "Phitsanulok") ; + Countries_RA_provinces_EntreRios = UsePN (mkPN "Entre Rios") ; + Countries_USA_provinces_SouthDakota = UsePN (mkPN "South Dakota") ; + Rivers_Dnepr = UsePN (mkPN "Dnepr") ; + Countries_WSA_cities_ElAlaiun = UsePN (mkPN "El Alaiun") ; + Botswana = UsePN (mkPN "Botswana") ; + Countries_K_cities_PhnomPenh = UsePN (mkPN "Phnom Penh") ; + Countries_PL_provinces_Jeleniogorskie = UsePN (mkPN "Jeleniogorskie") ; + Countries_R_provinces_Kemerovskayaoblast_cities_Kiselyovsk = UsePN (mkPN "Kiselyovsk") ; + Countries_I_provinces_Calabria_cities_Catanzaro = UsePN (mkPN "Catanzaro") ; + Countries_TJ_provinces_Fujian_cities_Yongan = UsePN (mkPN "Yongan") ; + Moldova = UsePN (mkPN "Moldova") ; + Countries_IND_provinces_Maharashtra_cities_Thane = UsePN (mkPN "Thane") ; + Countries_PL_provinces_Siedleckie_cities_Siedlce = UsePN (mkPN "Siedlce") ; + Countries_CO_provinces_Tolima = UsePN (mkPN "Tolima") ; + Countries_IND_provinces_Gujarat_cities_Vadodara = UsePN (mkPN "Vadodara") ; + Countries_UA_provinces_Zhytomyrska = UsePN (mkPN "Zhytomyrska") ; + Countries_GB_provinces_Carmarthenshire = UsePN (mkPN "Carmarthenshire") ; + Countries_TJ_provinces_Sichuan_cities_Deyang = UsePN (mkPN "Deyang") ; + Countries_D_provinces_BadenWurttemberg_cities_Ulm = UsePN (mkPN "Ulm") ; + Countries_IND_provinces_Rajasthan_cities_Jodhpur = UsePN (mkPN "Jodhpur") ; + Countries_TR_provinces_Gumushane_cities_Gumushane = UsePN (mkPN "Gumushane") ; + Countries_EAK_provinces_Coast = UsePN (mkPN "Coast") ; + Countries_TJ_provinces_Shanghai_munic = UsePN (mkPN "Shanghai (munic.)") ; + Countries_PL_provinces_Lubelskie_cities_Lublin = UsePN (mkPN "Lublin") ; + Countries_BR_provinces_Maranhao_cities_Timon = UsePN (mkPN "Timon") ; + Countries_CDN_provinces_BritishColumbia = UsePN (mkPN "British Columbia") ; + Eritrea = UsePN (mkPN "Eritrea") ; + Countries_RA_provinces_Mendoza_cities_Mendoza = UsePN (mkPN "Mendoza") ; + Countries_THA_provinces_UbonRatchathani_cities_UbonRatchathani = UsePN (mkPN "Ubon Ratchathani") ; + Countries_R_provinces_Moskovskayaoblast_cities_Balashikha = UsePN (mkPN "Balashikha") ; + Countries_TR_provinces_Icel = UsePN (mkPN "Icel") ; + Countries_DZ_cities_Batna = UsePN (mkPN "Batna") ; + Countries_TJ_provinces_Hubei_cities_Laohekou = UsePN (mkPN "Laohekou") ; + Countries_RI_cities_Magelang = UsePN (mkPN "Magelang") ; + Countries_VN_provinces_HaTay = UsePN (mkPN "Ha Tay") ; + Countries_USA_provinces_Wyoming = UsePN (mkPN "Wyoming") ; + Countries_PA_provinces_Veraguas_cities_Santiago = UsePN (mkPN "Santiago") ; + Countries_MAL_provinces_Terengganu_cities_KualaTerengganu = UsePN (mkPN "Kuala Terengganu") ; + Countries_DZ_cities_Oran = UsePN (mkPN "Oran") ; + Countries_MYA_provinces_Mon_cities_Moulmein = UsePN (mkPN "Moulmein") ; + Countries_N_provinces_Akershus = UsePN (mkPN "Akershus") ; + Islands_Flores = UsePN (mkPN "Flores") ; + Countries_MAL_provinces_Sabah = UsePN (mkPN "Sabah") ; + Countries_TJ_provinces_Zhejiang_cities_Shaoxing = UsePN (mkPN "Shaoxing") ; + Organizations_EU = UsePN (mkPN "European Union") ; + Countries_YV_provinces_Amazonas_cities_PuertoAyacucho = UsePN (mkPN "Puerto Ayacucho") ; + Countries_TJ_provinces_Hubei_cities_Shashi = UsePN (mkPN "Shashi") ; + Islands_Providenciales = UsePN (mkPN "Providenciales") ; + Countries_TJ_provinces_Tianjin_munic = UsePN (mkPN "Tianjin (munic.)") ; + Countries_DK_cities_Aarhus = UsePN (mkPN "Aarhus") ; + Countries_THA_provinces_UdonThani = UsePN (mkPN "Udon Thani") ; + Countries_TJ_provinces_Gansu_cities_Baiyin = UsePN (mkPN "Baiyin") ; + Countries_GB_provinces_Dorset_cities_Bournemouth = UsePN (mkPN "Bournemouth") ; + Countries_J_provinces_Okayama_cities_Okayama = UsePN (mkPN "Okayama") ; + Countries_USA_provinces_Ohio_cities_Akron = UsePN (mkPN "Akron") ; + Countries_CDN_provinces_Ontario_cities_Vaughan = UsePN (mkPN "Vaughan") ; + Argentina = UsePN (mkPN "Argentina") ; + Countries_EAT_provinces_Dodoma = UsePN (mkPN "Dodoma") ; + Countries_BR_provinces_RiodeJaneiro_cities_RiodeJaneiro = UsePN (mkPN "Rio de Janeiro") ; + Countries_GB_provinces_Cumbria_cities_Carlisle = UsePN (mkPN "Carlisle") ; + Countries_GB_provinces_Norfolk_cities_KingsLynn = UsePN (mkPN "Kings Lynn") ; + Countries_UA_provinces_Sumska_cities_Sumy = UsePN (mkPN "Sumy") ; + Islands_Hawaii = UsePN (mkPN "Hawaii") ; + Countries_C_provinces_LaHabana = UsePN (mkPN "La Habana") ; + Countries_WAN_cities_Calabar = UsePN (mkPN "Calabar") ; + Countries_H_provinces_Heves_cities_Eger = UsePN (mkPN "Eger") ; + Countries_BR_provinces_Bahia_cities_Itabuna = UsePN (mkPN "Itabuna") ; + Countries_WAN_cities_Ede = UsePN (mkPN "Ede") ; + Countries_TJ_provinces_Henan_cities_Luoyang = UsePN (mkPN "Luoyang") ; + Countries_TJ_provinces_Liaoning_cities_Xingcheng = UsePN (mkPN "Xingcheng") ; + Countries_N_provinces_NordTrondelag_cities_Steinkjer = UsePN (mkPN "Steinkjer") ; + Countries_I_provinces_Sicilia_cities_Catania = UsePN (mkPN "Catania") ; + Countries_S_provinces_Halland = UsePN (mkPN "Halland") ; + Countries_RC_provinces_Changhua = UsePN (mkPN "Changhua") ; + Countries_GB_provinces_Norfolk = UsePN (mkPN "Norfolk") ; + Countries_SN_provinces_Tambacounda = UsePN (mkPN "Tambacounda") ; + Countries_ANG_provinces_Cunene = UsePN (mkPN "Cunene") ; + Countries_ZRE_provinces_Equateur_cities_Mbandaka = UsePN (mkPN "Mbandaka") ; + Countries_ES_provinces_SantaAna = UsePN (mkPN "Santa Ana") ; + Countries_ET_provinces_SinaalJanubiyah = UsePN (mkPN "Sina al Janubiyah") ; + Countries_MOC_provinces_Manica_cities_Chimoio = UsePN (mkPN "Chimoio") ; + Countries_F_provinces_Bourgogne = UsePN (mkPN "Bourgogne") ; + Countries_MYA_provinces_Rakhine = UsePN (mkPN "Rakhine") ; + Countries_C_provinces_CiudaddelaHabana = UsePN (mkPN "Ciudad de la Habana") ; + Countries_KAZ_provinces_Atyrau = UsePN (mkPN "Atyrau") ; + Countries_R_provinces_Kamchatskayaoblast = UsePN (mkPN "Kamchatskaya oblast") ; + Countries_DOM_cities_SantoDomingo = UsePN (mkPN "Santo Domingo") ; + Countries_HCA_provinces_Choluteca_cities_Choluteca = UsePN (mkPN "Choluteca") ; + Countries_IND_provinces_Tripura = UsePN (mkPN "Tripura") ; + Countries_BR_provinces_RioGrandedoNorte = UsePN (mkPN "Rio Grande do Norte") ; + Islands_MarthasVineyard = UsePN (mkPN "Martha s Vineyard") ; + Countries_cid_cia_Jarvis_Island = UsePN (mkPN "Jarvis Island") ; + Countries_ZRE_provinces_Shaba_cities_Lubumbashi = UsePN (mkPN "Lubumbashi") ; + Countries_S_provinces_Kalmar = UsePN (mkPN "Kalmar") ; + Countries_PK_cities_Karachi = UsePN (mkPN "Karachi") ; + Countries_I_provinces_Sardegna = UsePN (mkPN "Sardegna") ; + Countries_GB_provinces_Flintshire = UsePN (mkPN "Flintshire") ; + Countries_C_provinces_LasTunas_cities_VictoriadelasTunas = UsePN (mkPN "Victoria de las Tunas") ; + Countries_RSA_provinces_EasternCape = UsePN (mkPN "Eastern Cape") ; + Countries_IRQ_provinces_AlBasrah_cities_AlBasrah = UsePN (mkPN "Al Basrah") ; + Countries_GB_provinces_Berkshire_cities_Reading = UsePN (mkPN "Reading") ; + Countries_ANG_provinces_Cunene_cities_Ngiva = UsePN (mkPN "Ngiva") ; + Countries_J_provinces_Tokushima_cities_Tokushima = UsePN (mkPN "Tokushima") ; + Countries_ET_provinces_Qena = UsePN (mkPN "Qena") ; + SanMarino = UsePN (mkPN "San Marino") ; + Countries_BR_provinces_Ceara_cities_Caucaia = UsePN (mkPN "Caucaia") ; + Countries_TR_provinces_Eskisehir = UsePN (mkPN "Eskisehir") ; + Countries_RM_provinces_Fianarantsoa_cities_Fianarantsoa = UsePN (mkPN "Fianarantsoa") ; + Countries_VN_provinces_LaiChau = UsePN (mkPN "Lai Chau") ; + Countries_R_provinces_Moskovskayaoblast_cities_Lyubertsy = UsePN (mkPN "Lyubertsy") ; + Countries_MEX_provinces_Tamaulipas_cities_Reynosa = UsePN (mkPN "Reynosa") ; + Countries_TJ_provinces_Liaoning_cities_Chaoyang = UsePN (mkPN "Chaoyang") ; + Rivers_Ounasjoki = UsePN (mkPN "Ounasjoki") ; + Countries_MOC_provinces_Gaza = UsePN (mkPN "Gaza") ; + Organizations_UNIKOM = UsePN (mkPN "United Nations Iraq-Kuwait Observation Mission") ; + Countries_TCH_cities_NDjamena = UsePN (mkPN "NDjamena") ; + Countries_GB_provinces_Leicestershire_cities_Leicester = UsePN (mkPN "Leicester") ; + Countries_TR_provinces_Adiyaman = UsePN (mkPN "Adiyaman") ; + Countries_GB_provinces_Warwickshire_cities_Warwick = UsePN (mkPN "Warwick") ; + Countries_TR_provinces_Izmir = UsePN (mkPN "Izmir") ; + Countries_TJ_provinces_Jiangsu_cities_Xuzhou = UsePN (mkPN "Xuzhou") ; + Countries_GB_provinces_AberconwyandColwyn_cities_ColwynBay = UsePN (mkPN "Colwyn Bay") ; + Countries_CAM_provinces_Nord = UsePN (mkPN "Nord") ; + Countries_WAN_cities_Abeokuta = UsePN (mkPN "Abeokuta") ; + Countries_TJ_provinces_Fujian_cities_Xiamen = UsePN (mkPN "Xiamen") ; + Countries_MEX_provinces_Puebla = UsePN (mkPN "Puebla") ; + Countries_N_provinces_NordTrondelag = UsePN (mkPN "Nord Trondelag") ; + Countries_TJ_provinces_Shandong_cities_Jiaonan = UsePN (mkPN "Jiaonan") ; + Countries_TJ_provinces_NingxiaHuizu = UsePN (mkPN "Ningxia Huizu") ; + Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolskie = UsePN (mkPN "Gorzow Wielkopolskie") ; + Angola = UsePN (mkPN "Angola") ; + Countries_RO_provinces_Mehedinti = UsePN (mkPN "Mehedinti") ; + Countries_ET_provinces_ElIskandariya_munic_cities_Alexandria = UsePN (mkPN "Alexandria") ; + Mountains_Popocatepetl = UsePN (mkPN "Popocatepetl") ; + Lakes_KentuckyLake = UsePN (mkPN "Kentucky Lake") ; + Countries_ET_provinces_ElDaqahliya_cities_ElMansura = UsePN (mkPN "El Mansura") ; + Countries_C_provinces_SantiagodeCuba_cities_SantiagodeCuba = UsePN (mkPN "Santiago de Cuba") ; + Countries_USA_provinces_Illinois_cities_Rockford = UsePN (mkPN "Rockford") ; + Countries_USA_provinces_Colorado_cities_ColoradoSprings = UsePN (mkPN "Colorado Springs") ; + Countries_PL_provinces_Skierniewickie = UsePN (mkPN "Skierniewickie") ; + Countries_TAD_provinces_Kulob = UsePN (mkPN "Kulob") ; + Organizations_ACCT = UsePN (mkPN "Agency for Cultural and Technical Cooperation") ; + Countries_CZ_provinces_Jihomoravsky_cities_Zlin = UsePN (mkPN "Zlin") ; + Countries_N_provinces_AustAgder_cities_Arendal = UsePN (mkPN "Arendal") ; + Countries_TR_provinces_Nigde = UsePN (mkPN "Nigde") ; + Organizations_APEC = UsePN (mkPN "Asia Pacific Economic Cooperation") ; + Countries_MAL_provinces_Melaka_cities_Melaka = UsePN (mkPN "Melaka") ; + Countries_RO_provinces_Giurgiu = UsePN (mkPN "Giurgiu") ; + Rivers_Oka = UsePN (mkPN "Oka") ; + Cuba = UsePN (mkPN "Cuba") ; + Countries_BR_provinces_MinasGerais_cities_Uberlandia = UsePN (mkPN "Uberlandia") ; + Countries_TR_provinces_Mus = UsePN (mkPN "Mus") ; + Countries_GR_cities_Thessaloniki = UsePN (mkPN "Thessaloniki") ; + Countries_J_provinces_Tokyo = UsePN (mkPN "Tokyo") ; + Countries_USA_provinces_Texas_cities_Beaumont = UsePN (mkPN "Beaumont") ; + Countries_BR_provinces_MatoGrossodoSul_cities_CampoGrande = UsePN (mkPN "Campo Grande") ; + Countries_THA_provinces_Phayao = UsePN (mkPN "Phayao") ; + Mountains_Kasbek = UsePN (mkPN "Kasbek") ; + Countries_THA_provinces_Songkhla = UsePN (mkPN "Songkhla") ; + Countries_TJ_provinces_Henan_cities_Zhengzhou = UsePN (mkPN "Zhengzhou") ; + Countries_RC_provinces_Chiai_munic_cities_Chiai = UsePN (mkPN "Chiai") ; + Organizations_ICFTU = UsePN (mkPN "International Confederation of Free Trade Unions") ; + Countries_I_provinces_Sicilia = UsePN (mkPN "Sicilia") ; + Countries_BEN_cities_Porto_Novo = UsePN (mkPN "Porto-Novo") ; + Countries_AUS_provinces_Queensland_cities_GoldCoast = UsePN (mkPN "Gold Coast") ; + Countries_J_provinces_Wakayama = UsePN (mkPN "Wakayama") ; + Organizations_ICJ = UsePN (mkPN "International Court of Justice") ; + Countries_WAN_cities_Minna = UsePN (mkPN "Minna") ; + Countries_MA_cities_Fes = UsePN (mkPN "Fes") ; + Countries_CDN_provinces_YukonTerritory = UsePN (mkPN "Yukon Territory") ; + Countries_MYA_provinces_Ayeyarwady = UsePN (mkPN "Ayeyarwady") ; + Countries_GR_cities_Kavalla = UsePN (mkPN "Kavalla") ; + Countries_USA_provinces_Louisiana_cities_BatonRouge = UsePN (mkPN "Baton Rouge") ; + Islands_Gheschm = UsePN (mkPN "Gheschm") ; + Countries_GB_provinces_Staffordshire_cities_StokeonTrent = UsePN (mkPN "Stoke on Trent") ; + Countries_AUS_provinces_Victoria = UsePN (mkPN "Victoria") ; + Islands_Korfu = UsePN (mkPN "Korfu") ; + Countries_BR_provinces_Bahia_cities_VitoriadaConquista = UsePN (mkPN "Vitoria da Conquista") ; + Countries_MAL_provinces_Sarawak_cities_Kuching = UsePN (mkPN "Kuching") ; + Countries_RC_cities_Chungho = UsePN (mkPN "Chungho") ; + Countries_GB_provinces_Cambridgeshire = UsePN (mkPN "Cambridgeshire") ; + Countries_THA_provinces_Chumphon = UsePN (mkPN "Chumphon") ; + Countries_RI_cities_Jambi = UsePN (mkPN "Jambi") ; + Countries_I_provinces_Liguria = UsePN (mkPN "Liguria") ; + Countries_BR_provinces_Pernambuco_cities_Caruaru = UsePN (mkPN "Caruaru") ; + Countries_E_provinces_CastileLaMancha = UsePN (mkPN "Castile La Mancha") ; + Countries_HCA_provinces_Yoro = UsePN (mkPN "Yoro") ; + Countries_USA_provinces_Nevada_cities_LasVegas = UsePN (mkPN "Las Vegas") ; + Countries_D_provinces_NordrheinWestfalen_cities_Wuppertal = UsePN (mkPN "Wuppertal") ; + Countries_ET_provinces_ElGiza_cities_ElGiza = UsePN (mkPN "El Giza") ; + Deserts_Atacama = UsePN (mkPN "Atacama") ; + Lakes_LakeMweru = UsePN (mkPN "Lake Mweru") ; + Countries_VN_cities_NamDinh = UsePN (mkPN "Nam Dinh") ; + Countries_TJ_provinces_Shandong_cities_Linqing = UsePN (mkPN "Linqing") ; + Countries_IRQ_provinces_Wasit_cities_AlKut = UsePN (mkPN "Al Kut") ; + Countries_GB_provinces_WestYorkshire_cities_Huddersfield = UsePN (mkPN "Huddersfield") ; + Countries_TJ_provinces_Sichuan_cities_Jiangyou = UsePN (mkPN "Jiangyou") ; + Countries_D_provinces_Niedersachsen = UsePN (mkPN "Niedersachsen") ; + Countries_TJ_provinces_Anhui_cities_Fuyang = UsePN (mkPN "Fuyang") ; + Countries_TJ_provinces_Jiangxi_cities_Nanchang = UsePN (mkPN "Nanchang") ; + Rivers_Ubangi = UsePN (mkPN "Ubangi") ; + Countries_PL_provinces_Katowickie_cities_Rybnik = UsePN (mkPN "Rybnik") ; + Countries_BR_provinces_RiodeJaneiro_cities_Petropolis = UsePN (mkPN "Petropolis") ; + Countries_THA_provinces_NakhonRatchasima = UsePN (mkPN "Nakhon Ratchasima") ; + Lakes_LakeTana = UsePN (mkPN "Lake Tana") ; + Countries_ETH_cities_AddisAbaba = UsePN (mkPN "Addis Ababa") ; + Countries_I_provinces_Marche = UsePN (mkPN "Marche") ; + Countries_YV_provinces_Carabobo = UsePN (mkPN "Carabobo") ; + Countries_TR_provinces_Hakkari = UsePN (mkPN "Hakkari") ; + Countries_D_provinces_Hessen = UsePN (mkPN "Hessen") ; + Countries_USA_provinces_California_cities_Concord = UsePN (mkPN "Concord") ; + Countries_TJ_provinces_Hainan = UsePN (mkPN "Hainan") ; + Countries_CO_provinces_Boyaca = UsePN (mkPN "Boyaca") ; + Countries_NL_provinces_Zeeland = UsePN (mkPN "Zeeland") ; + Countries_RO_provinces_Constanta = UsePN (mkPN "Constanta") ; + Countries_MEX_provinces_Oaxaca_cities_Oaxaca = UsePN (mkPN "Oaxaca") ; + Continents_Europe = UsePN (mkPN "Europe") ; + Countries_R_provinces_Moskovskayaoblast_cities_Khimki = UsePN (mkPN "Khimki") ; + Countries_EAT_provinces_KaskaziniUjunga = UsePN (mkPN "Kaskazini Ujunga") ; + Countries_THA_provinces_Phichit = UsePN (mkPN "Phichit") ; + Countries_PL_provinces_Legnickie = UsePN (mkPN "Legnickie") ; + Countries_EAT_provinces_KusiniPemba_cities_ChakeCahke = UsePN (mkPN "Chake Cahke") ; + Countries_MEX_provinces_Guanajuato_cities_Irapuato = UsePN (mkPN "Irapuato") ; + Countries_TR_provinces_Karamanmaras = UsePN (mkPN "Karamanmaras") ; + Countries_IRQ_provinces_AlMuthanna = UsePN (mkPN "Al Muthanna") ; + Countries_TJ_provinces_Liaoning_cities_Jinzhou = UsePN (mkPN "Jinzhou") ; + Organizations_G_77 = UsePN (mkPN "Group of 77") ; + Organizations_PFP = UsePN (mkPN "Partnership for Peace") ; + Countries_D_provinces_NordrheinWestfalen_cities_Leverkusen = UsePN (mkPN "Leverkusen") ; + Countries_IR_provinces_Khuzestan_cities_Ahvaz = UsePN (mkPN "Ahvaz") ; + Islands_Hierro = UsePN (mkPN "Hierro") ; + Countries_R_provinces_Sverdlovskayaoblast_cities_Pervouralsk = UsePN (mkPN "Pervouralsk") ; + Countries_DZ_cities_Constantine = UsePN (mkPN "Constantine") ; + Countries_UA_provinces_Lvivska_cities_Lviv = UsePN (mkPN "Lviv") ; + Countries_RI_cities_UjungPandang = UsePN (mkPN "Ujung Pandang") ; + Countries_J_provinces_Nara_cities_Nara = UsePN (mkPN "Nara") ; + Countries_E_provinces_Asturias_cities_Gijon = UsePN (mkPN "Gijon") ; + Countries_GB_provinces_NeathandPortTalbot = UsePN (mkPN "Neath and Port Talbot") ; + Countries_TAD_provinces_Dushanbe_munic = UsePN (mkPN "Dushanbe (munic.)") ; + Countries_CO_provinces_SanAndresyProvidencia_cities_SanAndres = UsePN (mkPN "San Andres") ; + Countries_TR_provinces_Adana = UsePN (mkPN "Adana") ; + Countries_ZRE_provinces_Bandundu = UsePN (mkPN "Bandundu") ; + Countries_GH_cities_CapeCoast = UsePN (mkPN "Cape Coast") ; + Countries_IR_cities_Rajaishahr = UsePN (mkPN "Rajaishahr") ; + Countries_SUD_provinces_alKhartum = UsePN (mkPN "al Khartum") ; + Kenya = UsePN (mkPN "Kenya") ; + Mountains_Sabalan = UsePN (mkPN "Sabalan") ; + Countries_R_provinces_Rostovskayaoblast_cities_Shakhty = UsePN (mkPN "Shakhty") ; + Countries_BR_provinces_RiodeJaneiro_cities_Teresopolis = UsePN (mkPN "Teresopolis") ; + Lakes_Arresee = UsePN (mkPN "Arresee") ; + Japan = UsePN (mkPN "Japan") ; + Countries_IND_provinces_UttarPradesh_cities_Moradabad = UsePN (mkPN "Moradabad") ; + Countries_TR_provinces_Hatay_cities_Antakya = UsePN (mkPN "Antakya") ; + Countries_VN_provinces_CanTho = UsePN (mkPN "Can Tho") ; + Countries_GB_provinces_Ceredigion = UsePN (mkPN "Ceredigion") ; + Countries_MAL_provinces_Fed_Terr_ofKualaLumpur = UsePN (mkPN "Fed. Terr. of Kuala Lumpur") ; + Countries_BR_provinces_RiodeJaneiro_cities_Mage = UsePN (mkPN "Mage") ; + Countries_RSA_provinces_NorthernCape = UsePN (mkPN "Northern Cape") ; + Countries_THA_provinces_PrachinBuri = UsePN (mkPN "Prachin Buri") ; + Organizations_ECO = UsePN (mkPN "Economic Cooperation Organization") ; + Countries_THA_provinces_Ratchaburi = UsePN (mkPN "Ratchaburi") ; + Countries_TJ_provinces_Gansu_cities_Yumen = UsePN (mkPN "Yumen") ; + Countries_RI_cities_Probolinggo = UsePN (mkPN "Probolinggo") ; + Countries_USA_provinces_Pennsylvania_cities_Philadelphia = UsePN (mkPN "Philadelphia") ; + Countries_MA_cities_Marrakech = UsePN (mkPN "Marrakech") ; + Italy = UsePN (mkPN "Italy") ; + Organizations_UNMIH = UsePN (mkPN "United Nations Mission in Haiti") ; + Countries_I_provinces_Sicilia_cities_Siracusa = UsePN (mkPN "Siracusa") ; + Countries_R_provinces_Rep_ofBashkortostan_cities_Salavat = UsePN (mkPN "Salavat") ; + Countries_D_provinces_Niedersachsen_cities_Hildesheim = UsePN (mkPN "Hildesheim") ; + Countries_USA_provinces_Ohio_cities_Dayton = UsePN (mkPN "Dayton") ; + Countries_BR_provinces_Maranhao_cities_Caxias = UsePN (mkPN "Caxias") ; + Countries_BD_cities_Pabna = UsePN (mkPN "Pabna") ; + Countries_RM_provinces_Toamasina = UsePN (mkPN "Toamasina") ; + Countries_A_provinces_UpperAustria = UsePN (mkPN "Upper Austria") ; + Deserts_Asauad = UsePN (mkPN "Asauad") ; + Countries_CH_provinces_UR_cities_Altdorf = UsePN (mkPN "Altdorf") ; + Organizations_LAES = UsePN (mkPN "Latin American Economic System") ; + Rivers_Neva = UsePN (mkPN "Neva") ; + Countries_Z_provinces_Northwestern_cities_Solwezi = UsePN (mkPN "Solwezi") ; + Bahamas = UsePN (mkPN "Bahamas") ; + Countries_BR_provinces_Maranhao = UsePN (mkPN "Maranhao") ; + Countries_PL_provinces_Katowickie_cities_WodzilawSlaski = UsePN (mkPN "Wodzilaw Slaski") ; + Countries_PK_cities_MirpurKhas = UsePN (mkPN "Mirpur Khas") ; + Countries_SF_provinces_Suomi_cities_Jyvaeskylae = UsePN (mkPN "Jyvaeskylae") ; + Countries_F_provinces_PoitouCharentes = UsePN (mkPN "Poitou Charentes") ; + Countries_E_provinces_Catalonia_cities_Badalona = UsePN (mkPN "Badalona") ; + Countries_RC_provinces_Taoyuan_cities_Taoyuan = UsePN (mkPN "Taoyuan") ; + Countries_UA_provinces_Rivnenska = UsePN (mkPN "Rivnenska") ; + Countries_I_provinces_Toscana_cities_Livorno = UsePN (mkPN "Livorno") ; + Countries_NOK_cities_Haeju = UsePN (mkPN "Haeju") ; + Countries_R_provinces_KabardinoBalkarRep__cities_Nalchik = UsePN (mkPN "Nalchik") ; + Countries_VU_cities_Port_Vila = UsePN (mkPN "Port-Vila") ; + Islands_Bermuda = UsePN (mkPN "Bermuda") ; + Countries_GB_provinces_Nottinghamshire_cities_NewarkonTrent = UsePN (mkPN "Newark on Trent") ; + Rivers_Vaesterdalaelv = UsePN (mkPN "Vaesterdalaelv") ; + Islands_Lanzarote = UsePN (mkPN "Lanzarote") ; + Mountains_PikKommunizma = UsePN (mkPN "Pik Kommunizma") ; + Togo = UsePN (mkPN "Togo") ; + Countries_F_provinces_Alsace_cities_Strasbourg = UsePN (mkPN "Strasbourg") ; + Countries_IR_provinces_Ilam = UsePN (mkPN "Ilam") ; + Countries_CDN_provinces_Ontario_cities_Ottawa = UsePN (mkPN "Ottawa") ; + Countries_USA_provinces_Florida_cities_Tallahassee = UsePN (mkPN "Tallahassee") ; + Countries_MEX_provinces_Nayarit = UsePN (mkPN "Nayarit") ; + Countries_GB_provinces_Kent_cities_Dover = UsePN (mkPN "Dover") ; + Countries_BR_provinces_RioGrandedoSul_cities_RioGrande = UsePN (mkPN "Rio Grande") ; + Lakes_LakeKivu = UsePN (mkPN "Lake Kivu") ; + Countries_BR_provinces_SaoPaulo_cities_Bauru = UsePN (mkPN "Bauru") ; + Countries_CO_provinces_ValledeCauca_cities_Palmira = UsePN (mkPN "Palmira") ; + Continents_Australia_Oceania = UsePN (mkPN "Australia/Oceania") ; + Countries_J_provinces_Shiga_cities_Otsu = UsePN (mkPN "Otsu") ; + Countries_R_provinces_Sverdlovskayaoblast_cities_Serov = UsePN (mkPN "Serov") ; + Countries_MEX_provinces_Durango_cities_GomezPalacio = UsePN (mkPN "Gomez Palacio") ; + Countries_cid_cia_West_Bank = UsePN (mkPN "West Bank") ; + Countries_IND_provinces_Rajasthan_cities_Kota = UsePN (mkPN "Kota") ; + Countries_CZ_provinces_Vychodocesky_cities_HradecKralove = UsePN (mkPN "Hradec Kralove") ; + Bolivia = UsePN (mkPN "Bolivia") ; + Countries_IR_provinces_Khorasan_cities_Neyshabur = UsePN (mkPN "Neyshabur") ; + Countries_ZRE_provinces_KasaiOriental_cities_Kalemi = UsePN (mkPN "Kalemi") ; + Organizations_WHO = UsePN (mkPN "World Health Organization") ; + Countries_TJ_provinces_Heilongjiang = UsePN (mkPN "Heilongjiang") ; + Countries_VN_provinces_HoChiMinhCity = UsePN (mkPN "Ho Chi Minh City") ; + Countries_GB_provinces_DumfriesandGalloway = UsePN (mkPN "Dumfries and Galloway") ; + Countries_ET_provinces_ElSuweiz_munic_cities_ElSuweiz = UsePN (mkPN "El Suweiz") ; + Countries_PA_provinces_BocasdelToro = UsePN (mkPN "Bocas del Toro") ; + Countries_R_provinces_Krasnodarskykray_cities_Krasnodar = UsePN (mkPN "Krasnodar") ; + Deserts_Hamadael_Hamra = UsePN (mkPN "Hamada el-Hamra") ; + Organizations_UNESCO = UsePN (mkPN "United Nations Educational, Scientific, and Cultural Organization") ; + Rivers_Cuango = UsePN (mkPN "Cuango") ; + Countries_RO_provinces_CarasSeverin_cities_Resita = UsePN (mkPN "Resita") ; + Mountains_PikPobeda = UsePN (mkPN "Pik Pobeda") ; + Countries_J_provinces_Kanagawa = UsePN (mkPN "Kanagawa") ; + Countries_J_provinces_Nagano_cities_Nagano = UsePN (mkPN "Nagano") ; + Countries_THA_provinces_Tak = UsePN (mkPN "Tak") ; + Countries_SYR_cities_Homs = UsePN (mkPN "Homs") ; + Countries_TM_provinces_Ahal_cities_Ashgabat = UsePN (mkPN "Ashgabat") ; + Countries_TR_provinces_Artvin = UsePN (mkPN "Artvin") ; + Countries_RSA_provinces_EasternCape_cities_PortElizabeth = UsePN (mkPN "Port Elizabeth") ; + Countries_IND_provinces_UttarPradesh_cities_Jhansi = UsePN (mkPN "Jhansi") ; + Countries_USA_provinces_Georgia_cities_Savannah = UsePN (mkPN "Savannah") ; + Countries_BR_provinces_SaoPaulo_cities_Jacarei = UsePN (mkPN "Jacarei") ; + Countries_PK_cities_Quetta = UsePN (mkPN "Quetta") ; + Countries_F_provinces_RhoneAlpes_cities_Grenoble = UsePN (mkPN "Grenoble") ; + Rivers_Missouri = UsePN (mkPN "Missouri") ; + Countries_IND_provinces_ArunachalPradesh_cities_Itanagar = UsePN (mkPN "Itanagar") ; + Countries_USA_provinces_California_cities_Glendale = UsePN (mkPN "Glendale") ; + Countries_IND_provinces_TamilNadu = UsePN (mkPN "Tamil Nadu") ; + Islands_Falster = UsePN (mkPN "Falster") ; + Countries_THA_provinces_MahaSarakham = UsePN (mkPN "Maha Sarakham") ; + Countries_SN_provinces_Louga = UsePN (mkPN "Louga") ; + Countries_TJ_provinces_Hebei_cities_Chengde = UsePN (mkPN "Chengde") ; + Countries_CDN_provinces_Saskatchewan = UsePN (mkPN "Saskatchewan") ; + Countries_F_provinces_Bretagne_cities_Rennes = UsePN (mkPN "Rennes") ; + Countries_GR_cities_Iraklion = UsePN (mkPN "Iraklion") ; + Organizations_ESCWA = UsePN (mkPN "Economic and Social Commission for Western Asia") ; + Countries_DZ_cities_Bejaia = UsePN (mkPN "Bejaia") ; + Countries_TJ_provinces_Guizhou_cities_Duyun = UsePN (mkPN "Duyun") ; + Countries_MEX_provinces_Tabasco_cities_Villahermosa = UsePN (mkPN "Villahermosa") ; + Countries_USA_provinces_Wisconsin_cities_GreenBay = UsePN (mkPN "Green Bay") ; + Countries_TR_provinces_Bitlis = UsePN (mkPN "Bitlis") ; + Countries_GB_provinces_Berkshire_cities_Wokingham = UsePN (mkPN "Wokingham") ; + Israel = UsePN (mkPN "Israel") ; + Countries_cid_cia_Bassas_da_India = UsePN (mkPN "Bassas da India") ; + Countries_WAN_cities_Shagamu = UsePN (mkPN "Shagamu") ; + Countries_P_provinces_Azores_The = UsePN (mkPN "Azores, The") ; + Countries_cid_cia_Puerto_Rico = UsePN (mkPN "Puerto Rico") ; + Countries_CO_provinces_Vichada_cities_PuertoCarreno = UsePN (mkPN "Puerto Carreno") ; + Countries_EAT_provinces_Shinyanga_cities_Shinyanga = UsePN (mkPN "Shinyanga") ; + Organizations_IAEA = UsePN (mkPN "International Atomic Energy Agency") ; + Countries_B_provinces_WestFlanders = UsePN (mkPN "West Flanders") ; + Countries_AUS_provinces_WesternAustralia_cities_Perth = UsePN (mkPN "Perth") ; + Countries_WG_cities_SaintGeorges = UsePN (mkPN "Saint Georges") ; + Countries_CO_provinces_Putumayo = UsePN (mkPN "Putumayo") ; + Deserts_GibsonDesert = UsePN (mkPN "Gibson Desert") ; + Countries_MYA_provinces_Bago_cities_Bago = UsePN (mkPN "Bago") ; + Countries_TR_provinces_Sanliurfa_cities_Urfa = UsePN (mkPN "Urfa") ; + Countries_TJ_provinces_Henan_cities_Anyang = UsePN (mkPN "Anyang") ; + Countries_YV_provinces_DeltaAmacuro_cities_Tucupita = UsePN (mkPN "Tucupita") ; + Countries_USA_provinces_Illinois = UsePN (mkPN "Illinois") ; + Countries_E_provinces_CastileandLeon_cities_Burgos = UsePN (mkPN "Burgos") ; + Countries_E_provinces_BasqueCountry = UsePN (mkPN "Basque Country") ; + Countries_IND_provinces_Orissa_cities_Cuttack = UsePN (mkPN "Cuttack") ; + Countries_KAZ_provinces_Qostanay_cities_Qostanay = UsePN (mkPN "Qostanay") ; + Islands_Vanuatu = UsePN (mkPN "Vanuatu") ; + Organizations_Entente = UsePN (mkPN "Council of the Entente") ; + Countries_TJ_provinces_Anhui_cities_Tongling = UsePN (mkPN "Tongling") ; + Countries_E_provinces_Catalonia_cities_Terrassa = UsePN (mkPN "Terrassa") ; + Countries_TJ_provinces_XinjiangUygur_cities_Hami = UsePN (mkPN "Hami") ; + Countries_I_provinces_ValledAosta = UsePN (mkPN "Valle dAosta") ; + Countries_GB_provinces_Strathclyde_cities_Glasgow = UsePN (mkPN "Glasgow") ; + Countries_R_provinces_Rep_ofKomi_cities_Syktyvkar = UsePN (mkPN "Syktyvkar") ; + Countries_CO_provinces_Atlantico_cities_Barranquilla = UsePN (mkPN "Barranquilla") ; + Countries_B_provinces_Luxembourg_cities_Arlon = UsePN (mkPN "Arlon") ; + Countries_BR_provinces_Goias_cities_RioVerde = UsePN (mkPN "Rio Verde") ; + Countries_BR_provinces_SantaCatarina_cities_SaoJose = UsePN (mkPN "Sao Jose") ; + Countries_MA_cities_Agadir = UsePN (mkPN "Agadir") ; + Countries_B_provinces_Antwerp_cities_Antwerp = UsePN (mkPN "Antwerp") ; + Countries_TJ_provinces_Zhejiang_cities_Xiaoshan = UsePN (mkPN "Xiaoshan") ; + Organizations_G_33 = UsePN (mkPN "Group of 33") ; + Countries_R_provinces_Krasnodarskykray_cities_Sochi = UsePN (mkPN "Sochi") ; + Countries_GB_provinces_Fife = UsePN (mkPN "Fife") ; + Mountains_Mt_Bogong = UsePN (mkPN "Mt. Bogong") ; + Iraq = UsePN (mkPN "Iraq") ; + Countries_J_provinces_Chiba = UsePN (mkPN "Chiba") ; + Countries_R_provinces_Bryanskayaoblast_cities_Bryansk = UsePN (mkPN "Bryansk") ; + Countries_CO_provinces_Sucre_cities_Sincelejo = UsePN (mkPN "Sincelejo") ; + Countries_NOK_cities_Tokchon = UsePN (mkPN "Tokchon") ; + Countries_F_provinces_Picardie_cities_Amiens = UsePN (mkPN "Amiens") ; + Countries_GB_provinces_Devon_cities_Plymouth = UsePN (mkPN "Plymouth") ; + Countries_MEX_provinces_BajaCaliforniaSur = UsePN (mkPN "Baja California Sur") ; + Countries_TR_provinces_Adiyaman_cities_Adiyaman = UsePN (mkPN "Adiyaman") ; + Countries_JOR_cities_Amman = UsePN (mkPN "Amman") ; + Countries_N_provinces_Troms = UsePN (mkPN "Troms") ; + Countries_H_provinces_SzabolcsSzatmar_cities_Nyiregyhaza = UsePN (mkPN "Nyiregyhaza") ; + Countries_BR_cities_SaoJosedosPinhais = UsePN (mkPN "Sao Jose dos Pinhais") ; + Countries_GB_provinces_GreaterManchester_cities_Bury = UsePN (mkPN "Bury") ; + Continents_Asia = UsePN (mkPN "Asia") ; + Organizations_CEMA = UsePN (mkPN "Council for Mutual Economic Assistance") ; + Countries_EAT_provinces_Mbeya_cities_Mbeya = UsePN (mkPN "Mbeya") ; + Countries_R_provinces_Nizhegorodskayaoblast = UsePN (mkPN "Nizhegorodskaya oblast") ; + Countries_TJ_provinces_Sichuan_cities_Leshan = UsePN (mkPN "Leshan") ; + Countries_MEX_provinces_Sonora_cities_HeroicaNogales = UsePN (mkPN "Heroica Nogales") ; + Countries_CR_provinces_SanJose = UsePN (mkPN "San Jose") ; + Countries_RSA_provinces_FreeState_cities_Bloemfontein = UsePN (mkPN "Bloemfontein") ; + Countries_BR_provinces_SaoPaulo_cities_Araraquara = UsePN (mkPN "Araraquara") ; + Countries_TR_provinces_Kastamonu_cities_Kastamonu = UsePN (mkPN "Kastamonu") ; + Countries_RC_provinces_Nantou_cities_Nantou = UsePN (mkPN "Nantou") ; + Countries_GB_provinces_Cheshire_cities_Warrington = UsePN (mkPN "Warrington") ; + Countries_R_provinces_Samarskayaoblast_cities_Samara = UsePN (mkPN "Samara") ; + Countries_cid_cia_Guernsey_cities_SaintPeterPort = UsePN (mkPN "Saint Peter Port") ; + Countries_IR_provinces_Mazandaran_cities_Sari = UsePN (mkPN "Sari") ; + Countries_RC_provinces_Taoyuan = UsePN (mkPN "Taoyuan") ; + Organizations_G_6 = UsePN (mkPN "Group of 6") ; + Countries_F_provinces_Aquitaine = UsePN (mkPN "Aquitaine") ; + Countries_GB_cities_WrexhamMaelor = UsePN (mkPN "Wrexham Maelor") ; + Countries_IR_provinces_AzarbayianeSharqi_cities_Ardabil = UsePN (mkPN "Ardabil") ; + Rivers_Kemijoki = UsePN (mkPN "Kemijoki") ; + Countries_ET_provinces_ElFaiyum_cities_ElFaiyum = UsePN (mkPN "El Faiyum") ; + Countries_AUS_provinces_NorthernTerritory = UsePN (mkPN "Northern Territory") ; + Countries_UZB_provinces_Qoraqalpoghiston = UsePN (mkPN "Qoraqalpoghiston") ; + Countries_TJ_provinces_Hainan_cities_Sanya = UsePN (mkPN "Sanya") ; + Countries_P_provinces_Braga = UsePN (mkPN "Braga") ; + Countries_YV_provinces_Aragua_cities_Maracay = UsePN (mkPN "Maracay") ; + Countries_R_provinces_Rep_ofTatarstan_cities_Nizhnekamsk = UsePN (mkPN "Nizhnekamsk") ; + Countries_GB_provinces_Borders = UsePN (mkPN "Borders") ; + Islands_Formentera = UsePN (mkPN "Formentera") ; + Organizations_UNAMIR = UsePN (mkPN "United Nations Assistance Mission for Rwanda") ; + Countries_RC_provinces_Kaohsiung_cities_Fengshan = UsePN (mkPN "Fengshan") ; + Countries_ROK_cities_Pusan = UsePN (mkPN "Pusan") ; + Countries_GB_provinces_Denbighshire = UsePN (mkPN "Denbighshire") ; + Countries_RC_provinces_Chiai_munic = UsePN (mkPN "Chiai (munic.)") ; + Countries_ES_provinces_Cuscatlan_cities_Cojutepeque = UsePN (mkPN "Cojutepeque") ; + Countries_USA_provinces_California_cities_Riverside = UsePN (mkPN "Riverside") ; + Countries_H_provinces_Budapest_munic_cities_Budapest = UsePN (mkPN "Budapest") ; + Rivers_Mekong = UsePN (mkPN "Mekong") ; + Countries_USA_provinces_Alabama_cities_Montgomery = UsePN (mkPN "Montgomery") ; + Islands_BanksIsland = UsePN (mkPN "Banks Island") ; + Countries_R_provinces_Primorskykray_cities_Nakhodka = UsePN (mkPN "Nakhodka") ; + Rivers_Sobat = UsePN (mkPN "Sobat") ; + Countries_IND_provinces_LakshadweepIs__cities_Kavaratti = UsePN (mkPN "Kavaratti") ; + Countries_PL_provinces_Olsztynskie_cities_Olsztyn = UsePN (mkPN "Olsztyn") ; + Countries_USA_provinces_Texas_cities_Waco = UsePN (mkPN "Waco") ; + Countries_IND_provinces_Chandigarh = UsePN (mkPN "Chandigarh") ; + Countries_BD_cities_Mymensingh = UsePN (mkPN "Mymensingh") ; + Countries_CZ_provinces_Jihomoravsky_cities_Brno = UsePN (mkPN "Brno") ; + Countries_CR_provinces_SanJose_cities_SanJose = UsePN (mkPN "San Jose") ; + Countries_R_provinces_Pskovskayaoblast = UsePN (mkPN "Pskovskaya oblast") ; + Countries_CDN_provinces_PrinceEdwardIsland = UsePN (mkPN "Prince Edward Island") ; + Organizations_Caricom = UsePN (mkPN "Caribbean Community and Common Market") ; + Countries_IRL_cities_Dublin = UsePN (mkPN "Dublin") ; + Countries_TR_provinces_Elazig_cities_Elazig = UsePN (mkPN "Elazig") ; + Countries_CL_cities_Colombo = UsePN (mkPN "Colombo") ; + Organizations_SPF = UsePN (mkPN "South Pacific Forum") ; + Countries_CAM_provinces_Ouest_cities_Bafoussam = UsePN (mkPN "Bafoussam") ; + Countries_BR_provinces_RiodeJaneiro_cities_Olinda = UsePN (mkPN "Olinda") ; + Countries_GB_provinces_Northumberland = UsePN (mkPN "Northumberland") ; + Countries_I_provinces_EmiliaRomagna_cities_Piacenza = UsePN (mkPN "Piacenza") ; + Countries_BD_cities_Narayanganj = UsePN (mkPN "Narayanganj") ; + Countries_A_provinces_Burgenland_cities_Eisenstadt = UsePN (mkPN "Eisenstadt") ; + Countries_TR_provinces_Malatya_cities_Malatya = UsePN (mkPN "Malatya") ; + Countries_TR_provinces_Elazig = UsePN (mkPN "Elazig") ; + Countries_C_provinces_Granma = UsePN (mkPN "Granma") ; + Countries_VN_cities_ThaiNguyen = UsePN (mkPN "Thai Nguyen") ; + Countries_ZRE_provinces_BasZaire = UsePN (mkPN "Bas Zaire") ; + Countries_UA_provinces_Poltavska = UsePN (mkPN "Poltavska") ; +} diff --git a/examples/SUMO/QoSontology.gf b/examples/SUMO/QoSontology.gf index 067cf9df0..37210bd84 100644 --- a/examples/SUMO/QoSontology.gf +++ b/examples/SUMO/QoSontology.gf @@ -1,1354 +1,1229 @@ -abstract QoSontology = open Merge, Mid_level_ontology, engineering in { - - - - --- To exit a function or application without saving --- any data that has been changed. -fun Abort : Class ; -fun Abort_Class : SubClass Abort ComputerProcess ; - --- This is a subclass of --- TimingRequirementAttribute, which includes Instrument_AbstractionLevel, --- Method_AbstractionLevel, Object_AbstractionLevel, Task_AbstractionLevel, --- and TaskGroup_AbstractionLevel. -fun AbstractionLevelAttribute : Class ; -fun AbstractionLevelAttribute_Class : SubClass AbstractionLevelAttribute TimingRequirementAttribute ; - --- (AddressFn ?FILE) returns as its value the --- physical address of the ComputerFile ?FILE. -fun AddressFn : El ComputerFile -> Ind PhysicalAddress ; - - --- An instance of the class --- RealtimeSystem has Initiation_DesignPattern if it consists of --- sensors connected to a software module that filters data from the --- sensors and sends the filtered data to another software module that --- evaluates the filtered data and sends decisions to a subsystem. --- The design pattern is a data source that produces a data stream for --- a data handler. The data source is typically a periodically sampled --- collection of sensors. The data stream's size may vary and is --- unbounded. Data may be either homogeneous or heterogeneous. The --- workload per data element for homogeneous data is constant. The --- workload per data element for heterogeneous data is a function of --- each element type. There is one deadline for real_time situation --- assessment systems. It is the upper bound on the time to process --- all elements in the data stream once. -fun Assessment_DesignPattern : Class ; -fun Assessment_DesignPattern_Class : SubClass Assessment_DesignPattern DesignPatternAttribute ; - --- A program which is started --- automatically, as opposed to an application started in response to --- some condition becoming true. -fun AutomaticApplication : Class ; -fun AutomaticApplication_Class : SubClass AutomaticApplication ComputerProgram ; - --- Berkeley Software Distribution (UNIX), --- a version of Unix distributed by the University of California at Berkeley. Widely --- used as a standard for early versions of Unix and Unix software libraries. -fun BerkeleySoftwareDistribution : Class ; -fun BerkeleySoftwareDistribution_Class : SubClass BerkeleySoftwareDistribution OperatingSystem ; - --- The measurement of the speed of data --- transfer in a communications system. -fun BitsPerSecond : Class ; - - --- A network in which all nodes are connected --- to a single wire (the bus) that has two endpoints. Ethernet 10Base_2 --- and 10Base_5 networks, for example, are bus networks. Other common --- network types include StarNetworks and RingNetworks. -fun BusNetwork : Class ; -fun BusNetwork_Class : SubClass BusNetwork LAN ; - --- CPU (Central Processing Unit) is the computing part --- of the computer. -fun CPU : Class ; -fun CPU_Class : SubClass CPU (both ComputerComponent ComputerHardware) ; - - --- (CPUUtilizationFn ?PROGRAM) refers to --- the percentage of time the CPU is used by an application ?PROGRAM. -fun CPUUtilizationFn : El ComputerProgram -> Ind ConstantQuantity ; - - --- A subclass of --- TimingRequirementAttribute, which includes --- MultipleRequirement_Complexity and SingleRequirement_Complexity. -fun ComplexityAttribute : Class ; -fun ComplexityAttribute_Class : SubClass ComplexityAttribute TimingRequirementAttribute ; - --- Instances of ComputationalSystems --- include instances of SoftwareSystems, HardwareSystems, and --- ComputerNetworks. -fun ComputationalSystem : Class ; -fun ComputationalSystem_Class : SubClass ComputationalSystem Product ; - --- A general_purpose machine that processes --- data according to a set of instructions that are stored internally --- either temporarily or permanently. -fun Computer : Class ; -fun Computer_Class : SubClass Computer ElectricDevice ; - --- An instance of ComputerComponent is a --- piece of computer hardware that has measurable performance characteristics --- in terms of different units. Components include hard drives, the performance --- of which can be measured in terms of BitsPerSecond required to transfer data --- to and from the drive, network adapters, the performance of which can be --- measured by PacketsPerSecond units of data transfered to and from the adapter, --- and other common components like ComputerMemory and CentralProcessingUnit. -fun ComputerComponent : Class ; -fun ComputerComponent_Class : SubClass ComputerComponent ComputerHardware ; - --- The term ComputerData refers to files --- and databases, text documents, and images. -fun ComputerData : Class ; -fun ComputerData_Class : SubClass ComputerData ContentBearingObject ; - --- This is the class of catalogs that --- identify and locate instances of ComputerFiles. The catalog's entries --- consist of at least ComputerFile names and a physical address on a memory --- device of the ComputerFile or an index (e.g., file descriptor) into a --- table of ComputerFile physical addresses. ComputerDirectories are thus --- collections of data elements and must be named and stored on memory devices, --- hence, ComputerDirectory is a subset of ComputerFile. ComputerDirectory folders contain only files and other folders -fun ComputerDirectory : Class ; -fun ComputerDirectory_Class : SubClass ComputerDirectory ComputerFile ; - -fun ComputerFile_ComputerData : SubClass ComputerFile ComputerData ; - --- The hardware is the physical part of --- a computer system. -fun ComputerHardware : Class ; -fun ComputerHardware_Class : SubClass ComputerHardware EngineeringComponent ; - --- A peripheral device that generates --- input for the computer such as a keyboard, scanner, or mouse. -fun ComputerInputDevice : Class ; -fun ComputerInputDevice_Class : SubClass ComputerInputDevice ComputerHardware ; - --- The EnglishLanguage computer's workspace (physically, --- a collection of RAM chips). It is an important resource, since it --- determines the size and number of programs that can be run at the --- same time, as well as the amount of data that can be processed --- instantly. -fun ComputerMemory : Class ; -fun ComputerMemory_Class : SubClass ComputerMemory (both ComputerComponent ComputerHardware) ; - - --- The network includes the network --- operating system in the client and server machines, the cables --- connecting them and all supporting hardware in between such as --- bridges, routers and switches. -fun ComputerNetwork : Class ; -fun ComputerNetwork_Class : SubClass ComputerNetwork (both ComputationalSystem RealtimeSystem) ; - - --- Any peripheral that presents --- output from the computer, such as a screen or printer. -fun ComputerOutputDevice : Class ; -fun ComputerOutputDevice_Class : SubClass ComputerOutputDevice ComputerHardware ; - --- A word or code used to serve as a security --- measure against unauthorized access to data. It is normally managed by the --- operating system or DBMS. -fun ComputerPassword : Class ; -fun ComputerPassword_Class : SubClass ComputerPassword SymbolicString ; - --- An instance of ComputerPath is a series --- of programs that connects input devices, typically sensors, to output --- devices, typically actuators. -fun ComputerPath : Class ; -fun ComputerPath_Class : SubClass ComputerPath ComputerData ; - --- The class of all attributes that are --- specific to ComputerPaths. -fun ComputerPathAttribute : Class ; -fun ComputerPathAttribute_Class : SubClass ComputerPathAttribute SoftwareAttribute ; - --- An instance of ComputerProcess is a --- process which manipulates data in the computer. -fun ComputerProcess : Class ; -fun ComputerProcess_Class : SubClass ComputerProcess InternalChange ; - --- A collection of data, presented in a preformatted --- manner. -fun ComputerReport : Class ; -fun ComputerReport_Class : SubClass ComputerReport ComputerData ; - --- One element of hardware, software or data --- that is part of a larger system. For example, network resources are the --- available servers and printers in the network. Software resources can be --- programs, utilities or even smaller elements within a program. Data --- resources are the files and databases that can be accessed. -fun ComputerResource : Class ; -fun ComputerResource_Class : SubClass ComputerResource ComputationalSystem ; - --- A ComputerProcess which attempts to --- comply with a user's request. -fun ComputerResponse : Class ; -fun ComputerResponse_Class : SubClass ComputerResponse ComputerProcess ; - --- An attribute which describes status of the --- Computer, such as HostDown, HostReady. -fun ComputerStatus : Class ; -fun ComputerStatus_Class : SubClass ComputerStatus RelationalAttribute ; - --- In a multitasking environment, an --- independently running program or subprogram. Each task is assigned --- a task number. -fun ComputerTask : Class ; -fun ComputerTask_Class : SubClass ComputerTask ComputerProcess ; - --- A ComputerOutputDevice for displaying --- information on some sort of screen or other reusable output surface. This --- is contrasted with a Printer, which places a substance on a surface --- that is for practical purposes, permanent. -fun ComputerTerminal : Class ; -fun ComputerTerminal_Class : SubClass ComputerTerminal ComputerOutputDevice ; - --- Any individual who interacts with a --- computer. -fun ComputerUser : Class ; -fun ComputerUser_Class : SubClass ComputerUser CognitiveAgent ; - --- This attribute applies to --- real_time systems that are designed and implemented so that the system --- can adapt by replicating the system components and executing them --- concurrently. -fun Concurrency_FormOfAdaptation : Class ; -fun Concurrency_FormOfAdaptation_Class : SubClass Concurrency_FormOfAdaptation FormOfAdaptationAttribute ; - --- A Program which is started inside --- an Xterm or other console. -fun ConsoleApplication : Class ; -fun ConsoleApplication_Class : SubClass ConsoleApplication ComputerProgram ; - --- The attribute which denotes that the --- path type is continuous, as opposed to transient or quasiconstinuous --- paths. A continuous path handles a stream of data arriving at a comment --- of rate. -fun ContinuousPath : Class ; -fun ContinuousPath_Class : SubClass ContinuousPath ComputerPathAttribute ; - --- Encoding data to take up less storage --- space. -fun DataCompression : Class ; -fun DataCompression_Class : SubClass DataCompression ComputerProcess ; - --- A process of copying the document, record or --- image being worked on onto a storage medium. Saving updates the file by --- writing the data that currently resides in memory (RAM) onto disk or tape. --- Most applications prompt the user to save data upon exiting. -fun DataSaving : Class ; -fun DataSaving_Class : SubClass DataSaving ComputerProcess ; - --- A device or part of the computer that --- receives data. -fun DataSink : Class ; -fun DataSink_Class : SubClass DataSink ComputerInputDevice ; - --- A subclass of ComputerProcesses which --- send data over a computer channel or bus. -fun DataTransfer : Class ; -fun DataTransfer_Class : SubClass DataTransfer ComputerProcess ; - --- A set of related files that is created and --- managed by a database management system (DBMS). -fun Database : Class ; -fun Database_Class : SubClass Database ComputerData ; - --- An instance of RealtimeSystem --- is described as Dependent_TaskRelation if it depends on at least one --- other function in the system, that is, its correct execution depends on --- the input from another function, the execution state of another function, --- or the acceptance of its outputs by another function. -fun Dependent_TaskRelation : Ind TaskRelationAttribute ; - - --- This is a subclass of --- RealtimeSystemAttribute, which includes Guidance_DesignPattern, --- Initiation_DesignPattern, and Assessment_DesignPattern. -fun DesignPatternAttribute : Class ; -fun DesignPatternAttribute_Class : SubClass DesignPatternAttribute RealtimeSystemAttribute ; - --- The attribute which denotes that --- the data stream is conceived as a stream of one datum after another, and --- each datum or identifiable group of data is separated by a constant of --- time. -fun DeterministicDataStream : Class ; -fun DeterministicDataStream_Class : SubClass DeterministicDataStream ComputerPathAttribute ; - --- The attribute which denotes that the --- path data stream type is dynamic, i.e. the time changes but the data --- stream follows a pattern. -fun DynamicDataStream : Class ; -fun DynamicDataStream_Class : SubClass DynamicDataStream ComputerPathAttribute ; - --- The class of attributes which --- correspond to environment variables. Environment variables are defined --- outside of a ComputerProgram, unlike ordinary variables that are --- defined in the source code of the ComputerProgram. Typically, the --- environment variable stores some value that many if not all --- ComputerProgams will need when they execute. An example is the --- environment variable PATH under Unix_like operating systems that stores --- the ComputerDirectories where executable ComputerPrograms can be found. --- Another example is the environment variable CLASSPATH for Java programs, --- which stores the directory where Java class files can be found that will be --- needed by any ComputerProgram written in Java. -fun EnvironmentSoftwareAttribute : Class ; -fun EnvironmentSoftwareAttribute_Class : SubClass EnvironmentSoftwareAttribute RelationalAttribute ; - --- An instant in time that is arbitrarily selected as a point --- of reference. -fun Epoch : Class ; -fun Epoch_Class : SubClass Epoch TimePoint ; - --- Able to be run in its current format. -fun Executable : Ind RelationalAttribute ; - - --- The class of all messages to a resource --- management program from one of its processes. -fun Feedback : Class ; -fun Feedback_Class : SubClass Feedback ContentBearingObject ; - --- An attribute that applies to a --- RealtimeSystem just in case a fixed percentage of requirements --- is met. -fun Firm_Strictness : Class ; -fun Firm_Strictness_Class : SubClass Firm_Strictness StrictnessAttribute ; - --- A subclass of --- RealtimeSystemAttribute, which includes Precision_FormOfAdaptation, --- Slack_FormOfAdaptation, Concurrency_FormOfAdaptation, and --- ResourceAllocation_FormOfAdaptation. -fun FormOfAdaptationAttribute : Class ; -fun FormOfAdaptationAttribute_Class : SubClass FormOfAdaptationAttribute RealtimeSystemAttribute ; - --- Instances of RealtimeSystems --- are described as systems with Guidance_DesignPattern if they consist --- of sensors connected to a software module that filters data from the --- sensors and sends the filtered data to a software module that evaluates --- the filtered data and sends instructions to a software module that --- commands actuators. The design pattern is an event source that produces --- events and a data source that produces data, both executing in parallel --- and handled by a single event_driven periodic data handler. The two --- separate input streams have fundamentally different characteristics. --- The event stream is necessarily asychronous, or transient. Once an --- event is sensed, the handler accepts data from the data stream, which --- has an invariant cycle time. There are two deadlines for a real_time --- guidance system. The period deadline is the time to process all elements --- in the data stream once and generate an actuator command. The action --- completion deadline is the time to guide the actuator to completion of --- the action. -fun Guidance_DesignPattern : Class ; -fun Guidance_DesignPattern_Class : SubClass Guidance_DesignPattern DesignPatternAttribute ; - --- The primary computer storage medium, which --- is made of one or more aluminum or glass platters, coated with a --- ferromagnetic material. Most hard disks are fixed disks, which are --- permanently sealed in the drive. -fun HardDiskDrive : Class ; -fun HardDiskDrive_Class : SubClass HardDiskDrive (both ComputerComponent ComputerHardware) ; - - --- An attribute that applies to a --- RealtimeSystem just in case all deadlines are met. -fun Hard_Strictness : Class ; -fun Hard_Strictness_Class : SubClass Hard_Strictness StrictnessAttribute ; - --- The class of hardware systems is the --- connection of three types of physical modules: instances of --- ComputerProcessor(s), ComputerMemory, and ComputerNetwork. --- ComputerProcessors execute instructions from ComputerPrograms, --- which usually include instructions to read and write data from --- memory, and send data via instances of ComputerNetworks. -fun HardwareSystem : Class ; -fun HardwareSystem_Class : SubClass HardwareSystem (both ComputationalSystem (both ComputerHardware RealtimeSystem)) ; - - --- Used to indicate that a ComputationalSystem --- has a high priority. -fun HighPriority : Ind PriorityAttribute ; - - --- An attribute which applies to a computer that ceases to --- operate due to hardware or software failure. -fun HostDown : Ind ComputerStatus ; - - --- An attribute which applies to a computer that is --- functional, operating properly, and ready to receive work requests. -fun HostReady : Ind ComputerStatus ; - - --- An attribute that applies to a --- RealtimeSystem just in case the strictness of the system is a --- combination of Hard/Firm/Soft_Strictness with Importance_Strictness --- or a combination of Utility_Strictness with Importance_Strictness. -fun Hybrid_Strictness : Class ; -fun Hybrid_Strictness_Class : SubClass Hybrid_Strictness StrictnessAttribute ; - --- An instance of the class --- RealtimeSystem shows Hybrid_SystemBehavior if it is --- activated by transient events, i.e. it is executed at regular --- intervals when activated, and is deactivated by action completion. -fun Hybrid_SystemBehavior : Class ; -fun Hybrid_SystemBehavior_Class : SubClass Hybrid_SystemBehavior SystemBehaviorAttribute ; - --- The Internet Protocol address, a numeric address such as 123.231.32.2 that --- the domain name server translates into a domain name. -fun IPAddress : Class ; -fun IPAddress_Class : SubClass IPAddress PhysicalAddress ; - --- A picture (graphic) stored in a particular --- coding scheme and stored as a file. Note that this can include vector as --- well as raster images. Raster images will entail a particular number of --- horizontal and vertical pixels. Vector images will not entail a --- particular size or resolution. -fun ImageFile : Class ; -fun ImageFile_Class : SubClass ImageFile ComputerData ; - --- An attribute that applies to a --- RealtimeSystem just in case it is designed and implemented to meet --- the more important requirements first. -fun Importance_Strictness : Class ; -fun Importance_Strictness_Class : SubClass Importance_Strictness StrictnessAttribute ; - --- An instance of RealtimeSystem --- is described as Independent_TaskRelation if its correct execution --- does not depend on the inputs from any other function, the execution state --- of any other function, or the acceptance of its outputs by any other --- function. -fun Independent_TaskRelation : Class ; -fun Independent_TaskRelation_Class : SubClass Independent_TaskRelation TaskRelationAttribute ; - --- The function which returns as its value --- the initial profile of the program, i.e. a report of its execution --- characteristics. -fun InitialProfileFn : El ComputerProgram -> Ind ProcessState ; - - --- An instance of the class --- RealtimeSystem has Initiation_DesignPattern if it consists of --- one software module and the actuators it commands. The design pattern --- is an event source which produces events for an event handler. The --- event source is typically an evaluate_and_decide software module. --- The event stream is necessarily asychronous, or transient. The arrival --- rate of events may vary and is unbounded. Events may be either --- homogeneous or heterogeneous. The workload per event for homogeneous --- events is constant. The workload per event for heterogeneous events --- is a function of each event type. There is one deadline for real_time --- action initiation systems. It is the upper bound on the time to --- generate a command for the actuator. -fun Initiation_DesignPattern : Class ; -fun Initiation_DesignPattern_Class : SubClass Initiation_DesignPattern DesignPatternAttribute ; - --- The attribute --- Instrument_AbstractionLevel is the lowest level of abstraction, --- which can be used to describe a real_time system or subsystem. -fun Instrument_AbstractionLevel : Class ; -fun Instrument_AbstractionLevel_Class : SubClass Instrument_AbstractionLevel AbstractionLevelAttribute ; - --- A computer network that spans a relatively small --- area. Most LANs are confined to a single building or group of buildings. --- However, one LAN can be connected to other LANs over any distance via --- telephone lines and radio waves. LAN A local_area network (LAN) whose topology is a ring. --- That is, all of the nodes are connected in a closed loop. Messages --- travel around the ring, with each node reading those messages addressed --- to it. -fun LAN : Class ; -fun LAN_Class : SubClass LAN ComputerNetwork ; - --- Used to indicate that a ComputationalSystem --- has a low priority. -fun LowPriority : Ind PriorityAttribute ; - - --- Each element of MeasuringPerformance --- is an event of measuring the performance of an instance of ComputerComponent, --- performed by a MonitoringProgram. -fun MeasuringPerformance : Class ; -fun MeasuringPerformance_Class : SubClass MeasuringPerformance ComputerProcess ; - --- The attribute --- Method_AbstractionLevel is the next to the lowest level of --- abstraction that can be used to describe a real_time system or --- subsystem. This is at the level of describing every callable --- function (or method in an object_oriented language) implemented --- in software. -fun Method_AbstractionLevel : Class ; -fun Method_AbstractionLevel_Class : SubClass Method_AbstractionLevel AbstractionLevelAttribute ; - --- This command is to change the monitoring --- for any component for which a componentDataID was sent on initial connection. -fun MonitorApplicationCmd : Class ; -fun MonitorApplicationCmd_Class : SubClass MonitorApplicationCmd MonitoringProgram ; - --- This is the command to monitor any of the --- generic components _ hard drive, network, cpu, memory, etc. -fun MonitorComponentCmd : Class ; -fun MonitorComponentCmd_Class : SubClass MonitorComponentCmd MonitoringProgram ; - --- This is the command to get a list --- of applications periodically. -fun MonitorConnectivityCmd : Class ; -fun MonitorConnectivityCmd_Class : SubClass MonitorConnectivityCmd MonitoringProgram ; - --- A program which monitors performance --- of an application, a component, etc. -fun MonitoringProgram : Class ; -fun MonitoringProgram_Class : SubClass MonitoringProgram ComputerProgram ; - --- An attribute that describes --- instances of RealtimeSystems which require multiple timing requirements, --- both a bound for completion time for its transient behavior and a cycle --- deadline for its periodic behavior. -fun MultipleRequirement_Complexity : Class ; -fun MultipleRequirement_Complexity_Class : SubClass MultipleRequirement_Complexity ComplexityAttribute ; - --- The running of two or more programs in one --- computer at the same time. The number of programs that can be effectively --- multitasked depends on the type of multitasking performed (preemptive vs --- cooperative), CPU speed and memory and disk capacity. -fun Multitasking : Class ; -fun Multitasking_Class : SubClass Multitasking ComputerProcess ; - --- A network adapter, also known as a Network --- Interface Card or NIC, is a physical device installed in a computer on its --- system bus. Its purpose is to connect to a specific type of network, --- usually an ethernet or a token ring network. -fun NetworkAdapter : Class ; -fun NetworkAdapter_Class : SubClass NetworkAdapter ComputerComponent ; - --- Network resources are the available --- servers and printers in the network. -fun NetworkResource : Class ; -fun NetworkResource_Class : SubClass NetworkResource ComputerResource ; - --- The attribute --- Object_AbstractionLevel is immediately above the attribute --- Method_AbstractionLevel and can be used to describe a real_time --- system or subsystem. This is at the level of describing every software --- object that can be created from a class together with its data structures --- and methods (which define the interface for manipulating the object). -fun Object_AbstractionLevel : Class ; -fun Object_AbstractionLevel_Class : SubClass Object_AbstractionLevel AbstractionLevelAttribute ; - --- The master control program that runs the --- computer. It is the first program loaded when the computer is turned on, --- and its main part, called the kernel, resides in memory at all times. It --- may be developed by the vendor of the computer it's running in or by a --- third party. -fun OperatingSystem : Class ; -fun OperatingSystem_Class : SubClass OperatingSystem SoftwareSystem ; - --- Optimization means finding the best solution according --- to a set of criteria. For a computer program, an optimal solution would be the --- fastest program (according to some benchmark) or the smallest program. -fun Optimization : Class ; -fun Optimization_Class : SubClass Optimization ProcessTask ; - --- A block of data used for transmission in packet --- switched systems. -fun Packet : Class ; -fun Packet_Class : SubClass Packet ComputerData ; - --- The rate or speed of Packet_Networks --- transferred in a second. -fun PacketsPerSecond : Ind CompositeUnitOfMeasure ; - - --- The attribute which denotes that --- the path importance is defined by the dynamic library procedure --- pathImportanceFunction. This functions passes arguments for priority --- and current time and returns an integer that represents importance. -fun PathImportanceFunction : Ind ComputerPathAttribute ; - - --- An instance of the class --- RealtimeSystem is described as a system with Periodic_SystemBehavior --- when it is activated at regular intervals. -fun Periodic_SystemBehavior : Class ; -fun Periodic_SystemBehavior_Class : SubClass Periodic_SystemBehavior SystemBehaviorAttribute ; - --- The collection of all addresses which --- identify a location of a ComputerFile. -fun PhysicalAddress : Class ; -fun PhysicalAddress_Class : SubClass PhysicalAddress SymbolicString ; - -fun Precision_FormOfAdaptation : Class ; -fun Precision_FormOfAdaptation_Class : SubClass Precision_FormOfAdaptation FormOfAdaptationAttribute ; --- A device that converts computer output into --- printed images. -fun Printer : Class ; -fun Printer_Class : SubClass Printer ComputerOutputDevice ; - --- A class of attributes which describe --- priorities of ComputationalSystems. -fun PriorityAttribute : Class ; -fun PriorityAttribute_Class : SubClass PriorityAttribute RelationalAttribute ; - --- An attribute that denotes the failure of the Process to achieve --- its goal. -fun ProcessFailure : Ind ProcessStatus ; - - --- The class of all the information required --- for a ComputerProgram to run on a processor. It is a vector that --- contains a pointer to the next program instruction to be executed as well --- as the values of all intermediate and defined variables, the state of the --- processor executing the program, and the allocated address space among --- other data. -fun ProcessState : Class ; -fun ProcessState_Class : SubClass ProcessState ContentBearingObject ; - --- A class of attributes. Each instance of ProcessStatus describes a --- status of a Process, such as ProcessFailure, ProcessSuccess, etc. -fun ProcessStatus : Class ; -fun ProcessStatus_Class : SubClass ProcessStatus RelationalAttribute ; - --- An attribute that denotes the success of the Process to achieve --- its goal. -fun ProcessSuccess : Ind ProcessStatus ; - - --- A function to be performed. -fun ProcessTask : Class ; -fun ProcessTask_Class : SubClass ProcessTask Abstract ; - --- An attribute which applies to --- computer paths which handle random events, which initiate a bounded --- stream of data arriving at a comment of rate, which the path must --- process. -fun QuasicontinuousPath : Class ; -fun QuasicontinuousPath_Class : SubClass QuasicontinuousPath ComputerPathAttribute ; - --- A program started by a Resource --- Management program, which determines if and where to start the --- application. -fun RM_StartApplication : Class ; -fun RM_StartApplication_Class : SubClass RM_StartApplication ComputerProgram ; - --- An computer_controlled system, the --- correct operation of which depends on meeting specified timing --- constraints. -fun RealtimeSystem : Class ; -fun RealtimeSystem_Class : SubClass RealtimeSystem ComputationalSystem ; - --- The class of Attributes which --- describe instances of the class RealtimeSystem. -fun RealtimeSystemAttribute : Class ; -fun RealtimeSystemAttribute_Class : SubClass RealtimeSystemAttribute RelationalAttribute ; - --- The attribute which denotes that --- a program can be restarted on the same host. -fun ReplicationsOnSameHostOK : Ind SoftwareAttribute ; - - --- This attribute applies --- to real_time systems that are designed and implemented so that the system --- can adapt under the control of a resource allocation manager like Desiderata. -fun ResourceAllocation_FormOfAdaptation : Class ; -fun ResourceAllocation_FormOfAdaptation_Class : SubClass ResourceAllocation_FormOfAdaptation FormOfAdaptationAttribute ; - --- The class of resource --- management programs. -fun ResourceManagementProgram : Class ; -fun ResourceManagementProgram_Class : SubClass ResourceManagementProgram ComputerProgram ; - --- The attribute which denotes that a program --- can be restarted. -fun Restartable : Ind SoftwareAttribute ; - - --- To use the same resource again. -fun ReusingAResource : Class ; -fun ReusingAResource_Class : SubClass ReusingAResource ComputerProcess ; - -fun RingNetwork : Class ; -fun RingNetwork_Class : SubClass RingNetwork LAN ; --- SatisfyingRequirements covers cases of --- finding a solution that satisfies necessary conditions. -fun SatisfyingRequirements : Class ; -fun SatisfyingRequirements_Class : SubClass SatisfyingRequirements ProcessTask ; - --- The attribute which denotes that --- an application can combine its input stream from different preceding --- applications or devices for greater scalability. -fun ScalabilityCombining : Ind SoftwareAttribute ; - - --- The attribute which denotes that --- a program can split its output stream to different succeeding --- applications or devices for greater scalability. -fun ScalabilitySplitting : Ind SoftwareAttribute ; - - --- The attribute which denotes that the path is --- scalable, i.e. the applications in the path can be replicated to meet --- realtime QoS requirements. -fun Scalable : Class ; -fun Scalable_Class : SubClass Scalable ComputerPathAttribute ; - --- Sensors include software that measures any --- attribute of executing computer programs or collections of executing --- programs, such as CPU utilization, aka load, memory utilization, I/O, --- overall task performance, network load and latency, etc. -fun Sensor : Class ; -fun Sensor_Class : SubClass Sensor ComputerHardware ; - --- A computer in a network shared by multiple users. --- The term may refer to both the hardware and software or just the software --- that performs the service. -fun Server : Class ; -fun Server_Class : SubClass Server ComputationalSystem ; - --- A typically small instance of --- ComputerProgram whose function is to end a typically larger --- instance of ComputerProgram. -fun ShutdownBlock : Class ; -fun ShutdownBlock_Class : SubClass ShutdownBlock ComputerProgram ; - --- (ShutdownFn ?Program) returns an instance of --- ShutdownBlock which contains the instructions to end ?PROGRAM. -fun ShutdownFn : El ComputerProgram -> Ind ShutdownBlock ; - - --- An attribute that describes --- instances of RealtimeSystems which require a single timing requirement, --- either a bound for completion time for systems with --- Transient_SystemBehavior or cycle deadline for systems with --- Periodic_SystemBehavior. -fun SingleRequirement_Complexity : Class ; -fun SingleRequirement_Complexity_Class : SubClass SingleRequirement_Complexity ComplexityAttribute ; - --- The attribute Slack_FormOfAdaptation --- applies to real_time systems that are designed and implemented with enough --- resource overhead that the system can always adapt by utilizing the overhead --- without complicated decision making. -fun Slack_FormOfAdaptation : Class ; -fun Slack_FormOfAdaptation_Class : SubClass Slack_FormOfAdaptation FormOfAdaptationAttribute ; - --- An attribute that applies to a --- RealtimeSystem just in case it maximizes the number of timing --- requirements like deadlines that are met but does not guarantee that --- all such requirements will be met or any fixed percentage of --- requirements will be met. -fun Soft_Strictness : Class ; -fun Soft_Strictness_Class : SubClass Soft_Strictness StrictnessAttribute ; - --- The class of all attributes that are --- specific to SoftwareSystems. -fun SoftwareAttribute : Class ; -fun SoftwareAttribute_Class : SubClass SoftwareAttribute RelationalAttribute ; - --- This is the class of mutually supportive --- groups of instances of ComputerProgram for a single general purpose. --- For example, a database management system is a collection of many instances --- of ComputerProgram that work together to store, retrieve, modify, and --- delete data. -fun SoftwareSystem : Class ; -fun SoftwareSystem_Class : SubClass SoftwareSystem (both ComputationalSystem RealtimeSystem) ; - - --- The class of all instances of Solaris , a --- unix_based operating system for Sun SPARC computers. It includes the --- Open Look and Motif graphical user interfaces, OpenWindows (the Sun --- version of X Windows), DOS and Windows Emulation, and ONC networking. -fun Solaris : Class ; -fun Solaris_Class : SubClass Solaris OperatingSystem ; - --- A local_area network (LAN) that uses a star --- topology in which all nodes are connected to a central computer. -fun StarNetwork : Class ; -fun StarNetwork_Class : SubClass StarNetwork LAN ; - --- A typically small instance of ComputerProgram --- (a sequence of instructions that will run on a computer) whose function is --- to load and initialize a typically larger instance of ComputerProgram --- and start it running. -fun StartupBlock : Class ; -fun StartupBlock_Class : SubClass StartupBlock ComputerProgram ; - --- (StartupFn ?Program) returns an instance of --- StartupBlock which contains the instructions to start the ?Program. -fun StartupFn : El ComputerProgram -> Ind StartupBlock ; - - --- The attribute which denotes that --- the time between data or groups of data changes according to no --- discernible pattern. -fun StochasticDataStream : Class ; -fun StochasticDataStream_Class : SubClass StochasticDataStream ComputerPathAttribute ; - --- This is a subclass of --- TimingRequirementAttribute, which includes Hard_Strictness, --- Firm_Strictness, Soft_Strictness, Importance_Strictness, --- Utility_Strictness, and Hybrid_Strictness -fun StrictnessAttribute : Class ; -fun StrictnessAttribute_Class : SubClass StrictnessAttribute TimingRequirementAttribute ; - --- A subclass of --- RealtimeSystemAttribute, which includes the following Attributes: --- Periodic_SystemBehavior, Transient_SystemBehavior, and --- Hybrid_SystemBehavior. -fun SystemBehaviorAttribute : Class ; -fun SystemBehaviorAttribute_Class : SubClass SystemBehaviorAttribute RealtimeSystemAttribute ; - --- The attribute --- TaskGroup_AbstractionLevel is immediately above the attribute --- Task_AbstractionLevel and can be used to describe a real_time --- system or subsystem This is at the level of describing groups of --- tasks which are related or connected by the real_time systems and --- are typically part of a concurrently executing path. -fun TaskGroup_AbstractionLevel : Class ; -fun TaskGroup_AbstractionLevel_Class : SubClass TaskGroup_AbstractionLevel AbstractionLevelAttribute ; - --- This is a subclass of --- RealtimeSystemAttribute, which includes Independent_TaskRelation --- and Dependent_TaskRelation. -fun TaskRelationAttribute : Class ; -fun TaskRelationAttribute_Class : SubClass TaskRelationAttribute RealtimeSystemAttribute ; - --- The attribute --- Task_AbstractionLevel is immediately above the attribute --- Object_AbstractionLevel and can be used to describe a real_time --- system or subsystem. This is at the level of describing the major --- tasks that are carried out by the real_time systems and are typically --- executable as individual processes. The description of a task would --- consist of listing all the software objects used to perform the task. -fun Task_AbstractionLevel : Class ; -fun Task_AbstractionLevel_Class : SubClass Task_AbstractionLevel AbstractionLevelAttribute ; - --- A subclass of --- RealtimeSystemAttribute which includes ComplexityAttribute, --- StrictnessAttribute, and AbstractionLevelAttribute. -fun TimingRequirementAttribute : Class ; -fun TimingRequirementAttribute_Class : SubClass TimingRequirementAttribute RealtimeSystemAttribute ; - --- An attribute which applies to computer --- paths which handle random events. -fun TransientPath : Class ; -fun TransientPath_Class : SubClass TransientPath ComputerPathAttribute ; - --- An instance of the class --- RealtimeSystem shows Transient_SystemBehavior when it is --- activated by sporadic events. -fun Transient_SystemBehavior : Class ; -fun Transient_SystemBehavior_Class : SubClass Transient_SystemBehavior SystemBehaviorAttribute ; - --- A UniformResourceIdentifier --- (URI) is a compact string of characters for identifying an abstract or --- physical resource. A URI can be further classified as a locator, a name, --- or both (source: http://www.ietf.org/rfc/rfc2396.txt). -fun UniformResourceIdentifier : Class ; -fun UniformResourceIdentifier_Class : SubClass UniformResourceIdentifier ContentBearingObject ; - --- The term UniformResourceLocator --- (URL) refers to the subset of URI that identify resources via a --- representation of their primary access mechanism (e.g., their network --- location), rather than identifying the resource by name or by some other --- attribute(s) of that resource (source: http://www.ietf.org/rfc/rfc2396.txt). -fun UniformResourceLocator : Class ; -fun UniformResourceLocator_Class : SubClass UniformResourceLocator UniformResourceIdentifier ; - --- The term UniformResourceName (URN) --- refers to the subset of URI that are required to remain globally unique --- and persistent even when the resource ceases to exist or becomes --- unavailable (source: http://www.ietf.org/rfc/rfc2396.txt). -fun UniformResourceName : Class ; -fun UniformResourceName_Class : SubClass UniformResourceName UniformResourceIdentifier ; - --- The Unix epoch or point of reference is 00:00:00 UTC, --- January 1, 1970. -fun UnixEpoch : Ind Epoch ; - - --- An established relationship between a user and a --- computer, network or information service. User accounts require a username and --- password, and new user accounts are given a default set of permissions. -fun UserAccount : Class ; -fun UserAccount_Class : SubClass UserAccount ContentBearingObject ; - --- The name a person uses to identify himself or herself --- when logging onto a computer system or online service. -fun UserName : Class ; -fun UserName_Class : SubClass UserName SymbolicString ; - --- A request made by a ComputerUser, such as --- looking up a customer record. -fun UserRequest : Class ; -fun UserRequest_Class : SubClass UserRequest ComputerProcess ; - --- A ComputerProcess which requires access to a --- ComputerResource. -fun UsingAResource : Class ; -fun UsingAResource_Class : SubClass UsingAResource ComputerProcess ; - --- A program that performs a specific task related to the --- management of computer functions, resources, or files. Utility programs range --- from the simple to the sophisticated, and many programmers specialize in producing --- and distributing them as shareware. There are utilities that perform file and --- directory management, data compression, disk defragmentation and repair, system --- diagnostics, graphics viewing, and system security, for example. Many utilities --- are written as memory_resident programs meant to serve as adjuncts to operating --- systems. Many operating systems incorporate such popular utility functions as --- undeleting, password protection, memory management, virus protection, and file --- compression. -fun Utility : Class ; -fun Utility_Class : SubClass Utility ComputerProgram ; - --- An attribute that applies to a --- RealtimeSystem just in case it is designed and implemented to use --- a utility_computing function, which is applied to competing timing --- requirements to determine which should be met because meeting the --- requirement produces higher utility as defined by the function. -fun Utility_Strictness : Class ; -fun Utility_Strictness_Class : SubClass Utility_Strictness StrictnessAttribute ; - -fun abstractionLevel : El RealtimeSystem -> El AbstractionLevelAttribute -> Formula ; +abstract QoSontology = MidLevelOntology, Engineering ** { + + -- To exit a function or application without saving + -- any data that has been changed. + fun Abort : Class ; + fun Abort_Class : SubClass Abort ComputerProcess ; + + -- This is a subclass of + -- TimingRequirementAttribute, which includes Instrument_AbstractionLevel, + -- Method_AbstractionLevel, Object_AbstractionLevel, Task_AbstractionLevel, + -- and TaskGroup_AbstractionLevel. + fun AbstractionLevelAttribute : Class ; + fun AbstractionLevelAttribute_Class : SubClass AbstractionLevelAttribute TimingRequirementAttribute ; + + -- (AddressFn ?FILE) returns as its value the + -- physical address of the ComputerFile ?FILE. + fun AddressFn : El ComputerFile -> Ind PhysicalAddress ; + + -- An instance of the class + -- RealtimeSystem has Initiation_DesignPattern if it consists of + -- sensors connected to a software module that filters data from the + -- sensors and sends the filtered data to another software module that + -- evaluates the filtered data and sends decisions to a subsystem. + -- The design pattern is a data source that produces a data stream for + -- a data handler. The data source is typically a periodically sampled + -- collection of sensors. The data stream's size may vary and is + -- unbounded. Data may be either homogeneous or heterogeneous. The + -- workload per data element for homogeneous data is constant. The + -- workload per data element for heterogeneous data is a function of + -- each element type. There is one deadline for real_time situation + -- assessment systems. It is the upper bound on the time to process + -- all elements in the data stream once. + fun Assessment_DesignPattern : Class ; + fun Assessment_DesignPattern_Class : SubClass Assessment_DesignPattern DesignPatternAttribute ; + + -- A program which is started + -- automatically, as opposed to an application started in response to + -- some condition becoming true. + fun AutomaticApplication : Class ; + fun AutomaticApplication_Class : SubClass AutomaticApplication ComputerProgram ; + + -- Berkeley Software Distribution (UNIX), + -- a version of Unix distributed by the University of California at Berkeley. Widely + -- used as a standard for early versions of Unix and Unix software libraries. + fun BerkeleySoftwareDistribution : Class ; + fun BerkeleySoftwareDistribution_Class : SubClass BerkeleySoftwareDistribution OperatingSystem ; + + -- The measurement of the speed of data + -- transfer in a communications system. + fun BitsPerSecond : Class ; + + -- A network in which all nodes are connected + -- to a single wire (the bus) that has two endpoints. Ethernet 10Base_2 + -- and 10Base_5 networks, for example, are bus networks. Other common + -- network types include StarNetworks and RingNetworks. + fun BusNetwork : Class ; + fun BusNetwork_Class : SubClass BusNetwork LAN ; + + -- CPU (Central Processing Unit) is the computing part + -- of the computer. + fun CPU : Class ; + fun CPU_Class : SubClass CPU (both ComputerComponent ComputerHardware) ; + + -- (CPUUtilizationFn ?PROGRAM) refers to + -- the percentage of time the CPU is used by an application ?PROGRAM. + fun CPUUtilizationFn : El ComputerProgram -> Ind ConstantQuantity ; + + -- A subclass of + -- TimingRequirementAttribute, which includes + -- MultipleRequirement_Complexity and SingleRequirement_Complexity. + fun ComplexityAttribute : Class ; + fun ComplexityAttribute_Class : SubClass ComplexityAttribute TimingRequirementAttribute ; + + -- Instances of ComputationalSystems + -- include instances of SoftwareSystems, HardwareSystems, and + -- ComputerNetworks. + fun ComputationalSystem : Class ; + fun ComputationalSystem_Class : SubClass ComputationalSystem Product ; + + -- A general_purpose machine that processes + -- data according to a set of instructions that are stored internally + -- either temporarily or permanently. + fun Computer : Class ; + fun Computer_Class : SubClass Computer ElectricDevice ; + + -- An instance of ComputerComponent is a + -- piece of computer hardware that has measurable performance characteristics + -- in terms of different units. Components include hard drives, the performance + -- of which can be measured in terms of BitsPerSecond required to transfer data + -- to and from the drive, network adapters, the performance of which can be + -- measured by PacketsPerSecond units of data transfered to and from the adapter, + -- and other common components like ComputerMemory and CentralProcessingUnit. + fun ComputerComponent : Class ; + fun ComputerComponent_Class : SubClass ComputerComponent ComputerHardware ; + + -- The term ComputerData refers to files + -- and databases, text documents, and images. + fun ComputerData : Class ; + fun ComputerData_Class : SubClass ComputerData ContentBearingObject ; + + -- This is the class of catalogs that + -- identify and locate instances of ComputerFiles. The catalog's entries + -- consist of at least ComputerFile names and a physical address on a memory + -- device of the ComputerFile or an index (e.g., file descriptor) into a + -- table of ComputerFile physical addresses. ComputerDirectories are thus + -- collections of data elements and must be named and stored on memory devices, + -- hence, ComputerDirectory is a subset of ComputerFile. ComputerDirectory folders contain only files and other folders + fun ComputerDirectory : Class ; + fun ComputerDirectory_Class : SubClass ComputerDirectory ComputerFile ; + + fun ComputerFile_ComputerData : SubClass ComputerFile ComputerData ; + + -- The hardware is the physical part of + -- a computer system. + fun ComputerHardware : Class ; + fun ComputerHardware_Class : SubClass ComputerHardware EngineeringComponent ; + + -- A peripheral device that generates + -- input for the computer such as a keyboard, scanner, or mouse. + fun ComputerInputDevice : Class ; + fun ComputerInputDevice_Class : SubClass ComputerInputDevice ComputerHardware ; + + -- The EnglishLanguage computer's workspace (physically, + -- a collection of RAM chips). It is an important resource, since it + -- determines the size and number of programs that can be run at the + -- same time, as well as the amount of data that can be processed + -- instantly. + fun ComputerMemory : Class ; + fun ComputerMemory_Class : SubClass ComputerMemory (both ComputerComponent ComputerHardware) ; + + -- The network includes the network + -- operating system in the client and server machines, the cables + -- connecting them and all supporting hardware in between such as + -- bridges, routers and switches. + fun ComputerNetwork : Class ; + fun ComputerNetwork_Class : SubClass ComputerNetwork (both ComputationalSystem RealtimeSystem) ; + + -- Any peripheral that presents + -- output from the computer, such as a screen or printer. + fun ComputerOutputDevice : Class ; + fun ComputerOutputDevice_Class : SubClass ComputerOutputDevice ComputerHardware ; + + -- A word or code used to serve as a security + -- measure against unauthorized access to data. It is normally managed by the + -- operating system or DBMS. + fun ComputerPassword : Class ; + fun ComputerPassword_Class : SubClass ComputerPassword SymbolicString ; + + -- An instance of ComputerPath is a series + -- of programs that connects input devices, typically sensors, to output + -- devices, typically actuators. + fun ComputerPath : Class ; + fun ComputerPath_Class : SubClass ComputerPath ComputerData ; + + -- The class of all attributes that are + -- specific to ComputerPaths. + fun ComputerPathAttribute : Class ; + fun ComputerPathAttribute_Class : SubClass ComputerPathAttribute SoftwareAttribute ; + + -- An instance of ComputerProcess is a + -- process which manipulates data in the computer. + fun ComputerProcess : Class ; + fun ComputerProcess_Class : SubClass ComputerProcess InternalChange ; + + -- A collection of data, presented in a preformatted + -- manner. + fun ComputerReport : Class ; + fun ComputerReport_Class : SubClass ComputerReport ComputerData ; + + -- One element of hardware, software or data + -- that is part of a larger system. For example, network resources are the + -- available servers and printers in the network. Software resources can be + -- programs, utilities or even smaller elements within a program. Data + -- resources are the files and databases that can be accessed. + fun ComputerResource : Class ; + fun ComputerResource_Class : SubClass ComputerResource ComputationalSystem ; + + -- A ComputerProcess which attempts to + -- comply with a user's request. + fun ComputerResponse : Class ; + fun ComputerResponse_Class : SubClass ComputerResponse ComputerProcess ; + + -- An attribute which describes status of the + -- Computer, such as HostDown, HostReady. + fun ComputerStatus : Class ; + fun ComputerStatus_Class : SubClass ComputerStatus RelationalAttribute ; + + -- In a multitasking environment, an + -- independently running program or subprogram. Each task is assigned + -- a task number. + fun ComputerTask : Class ; + fun ComputerTask_Class : SubClass ComputerTask ComputerProcess ; + + -- A ComputerOutputDevice for displaying + -- information on some sort of screen or other reusable output surface. This + -- is contrasted with a Printer, which places a substance on a surface + -- that is for practical purposes, permanent. + fun ComputerTerminal : Class ; + fun ComputerTerminal_Class : SubClass ComputerTerminal ComputerOutputDevice ; + + -- Any individual who interacts with a + -- computer. + fun ComputerUser : Class ; + fun ComputerUser_Class : SubClass ComputerUser CognitiveAgent ; + + -- This attribute applies to + -- real_time systems that are designed and implemented so that the system + -- can adapt by replicating the system components and executing them + -- concurrently. + fun Concurrency_FormOfAdaptation : Class ; + fun Concurrency_FormOfAdaptation_Class : SubClass Concurrency_FormOfAdaptation FormOfAdaptationAttribute ; + + -- A Program which is started inside + -- an Xterm or other console. + fun ConsoleApplication : Class ; + fun ConsoleApplication_Class : SubClass ConsoleApplication ComputerProgram ; + + -- The attribute which denotes that the + -- path type is continuous, as opposed to transient or quasiconstinuous + -- paths. A continuous path handles a stream of data arriving at a comment + -- of rate. + fun ContinuousPath : Class ; + fun ContinuousPath_Class : SubClass ContinuousPath ComputerPathAttribute ; + + -- Encoding data to take up less storage space. + fun DataCompression : Class ; + fun DataCompression_Class : SubClass DataCompression ComputerProcess ; + + -- A process of copying the document, record or + -- image being worked on onto a storage medium. Saving updates the file by + -- writing the data that currently resides in memory (RAM) onto disk or tape. + -- Most applications prompt the user to save data upon exiting. + fun DataSaving : Class ; + fun DataSaving_Class : SubClass DataSaving ComputerProcess ; + + -- A device or part of the computer that + -- receives data. + fun DataSink : Class ; + fun DataSink_Class : SubClass DataSink ComputerInputDevice ; + + -- A subclass of ComputerProcesses which + -- send data over a computer channel or bus. + fun DataTransfer : Class ; + fun DataTransfer_Class : SubClass DataTransfer ComputerProcess ; + + -- A set of related files that is created and + -- managed by a database management system (DBMS). + fun Database : Class ; + fun Database_Class : SubClass Database ComputerData ; + + -- An instance of RealtimeSystem + -- is described as Dependent_TaskRelation if it depends on at least one + -- other function in the system, that is, its correct execution depends on + -- the input from another function, the execution state of another function, + -- or the acceptance of its outputs by another function. + fun Dependent_TaskRelation : Ind TaskRelationAttribute ; + + -- This is a subclass of + -- RealtimeSystemAttribute, which includes Guidance_DesignPattern, + -- Initiation_DesignPattern, and Assessment_DesignPattern. + fun DesignPatternAttribute : Class ; + fun DesignPatternAttribute_Class : SubClass DesignPatternAttribute RealtimeSystemAttribute ; + + -- The attribute which denotes that + -- the data stream is conceived as a stream of one datum after another, and + -- each datum or identifiable group of data is separated by a constant of + -- time. + fun DeterministicDataStream : Class ; + fun DeterministicDataStream_Class : SubClass DeterministicDataStream ComputerPathAttribute ; + + -- The attribute which denotes that the + -- path data stream type is dynamic, i.e. the time changes but the data + -- stream follows a pattern. + fun DynamicDataStream : Class ; + fun DynamicDataStream_Class : SubClass DynamicDataStream ComputerPathAttribute ; + + -- The class of attributes which + -- correspond to environment variables. Environment variables are defined + -- outside of a ComputerProgram, unlike ordinary variables that are + -- defined in the source code of the ComputerProgram. Typically, the + -- environment variable stores some value that many if not all + -- ComputerProgams will need when they execute. An example is the + -- environment variable PATH under Unix_like operating systems that stores + -- the ComputerDirectories where executable ComputerPrograms can be found. + -- Another example is the environment variable CLASSPATH for Java programs, + -- which stores the directory where Java class files can be found that will be + -- needed by any ComputerProgram written in Java. + fun EnvironmentSoftwareAttribute : Class ; + fun EnvironmentSoftwareAttribute_Class : SubClass EnvironmentSoftwareAttribute RelationalAttribute ; + + -- An instant in time that is arbitrarily selected as a point of reference. + fun Epoch : Class ; + fun Epoch_Class : SubClass Epoch TimePoint ; + + -- Able to be run in its current format. + fun Executable : Ind RelationalAttribute ; + + -- The class of all messages to a resource + -- management program from one of its processes. + fun Feedback : Class ; + fun Feedback_Class : SubClass Feedback ContentBearingObject ; + + -- An attribute that applies to a + -- RealtimeSystem just in case a fixed percentage of requirements + -- is met. + fun Firm_Strictness : Class ; + fun Firm_Strictness_Class : SubClass Firm_Strictness StrictnessAttribute ; + + -- A subclass of + -- RealtimeSystemAttribute, which includes Precision_FormOfAdaptation, + -- Slack_FormOfAdaptation, Concurrency_FormOfAdaptation, and + -- ResourceAllocation_FormOfAdaptation. + fun FormOfAdaptationAttribute : Class ; + fun FormOfAdaptationAttribute_Class : SubClass FormOfAdaptationAttribute RealtimeSystemAttribute ; + + -- Instances of RealtimeSystems + -- are described as systems with Guidance_DesignPattern if they consist + -- of sensors connected to a software module that filters data from the + -- sensors and sends the filtered data to a software module that evaluates + -- the filtered data and sends instructions to a software module that + -- commands actuators. The design pattern is an event source that produces + -- events and a data source that produces data, both executing in parallel + -- and handled by a single event_driven periodic data handler. The two + -- separate input streams have fundamentally different characteristics. + -- The event stream is necessarily asychronous, or transient. Once an + -- event is sensed, the handler accepts data from the data stream, which + -- has an invariant cycle time. There are two deadlines for a real_time + -- guidance system. The period deadline is the time to process all elements + -- in the data stream once and generate an actuator command. The action + -- completion deadline is the time to guide the actuator to completion of + -- the action. + fun Guidance_DesignPattern : Class ; + fun Guidance_DesignPattern_Class : SubClass Guidance_DesignPattern DesignPatternAttribute ; + + -- The primary computer storage medium, which + -- is made of one or more aluminum or glass platters, coated with a + -- ferromagnetic material. Most hard disks are fixed disks, which are + -- permanently sealed in the drive. + fun HardDiskDrive : Class ; + fun HardDiskDrive_Class : SubClass HardDiskDrive (both ComputerComponent ComputerHardware) ; + + -- An attribute that applies to a + -- RealtimeSystem just in case all deadlines are met. + fun Hard_Strictness : Class ; + fun Hard_Strictness_Class : SubClass Hard_Strictness StrictnessAttribute ; + + -- The class of hardware systems is the + -- connection of three types of physical modules: instances of + -- ComputerProcessor(s), ComputerMemory, and ComputerNetwork. + -- ComputerProcessors execute instructions from ComputerPrograms, + -- which usually include instructions to read and write data from + -- memory, and send data via instances of ComputerNetworks. + fun HardwareSystem : Class ; + fun HardwareSystem_Class : SubClass HardwareSystem (both ComputationalSystem (both ComputerHardware RealtimeSystem)) ; + + -- Used to indicate that a ComputationalSystem + -- has a high priority. + fun HighPriority : Ind PriorityAttribute ; + + -- An attribute which applies to a computer that ceases to + -- operate due to hardware or software failure. + fun HostDown : Ind ComputerStatus ; + + -- An attribute which applies to a computer that is + -- functional, operating properly, and ready to receive work requests. + fun HostReady : Ind ComputerStatus ; + + -- An attribute that applies to a + -- RealtimeSystem just in case the strictness of the system is a + -- combination of Hard/Firm/Soft_Strictness with Importance_Strictness + -- or a combination of Utility_Strictness with Importance_Strictness. + fun Hybrid_Strictness : Class ; + fun Hybrid_Strictness_Class : SubClass Hybrid_Strictness StrictnessAttribute ; + + -- An instance of the class + -- RealtimeSystem shows Hybrid_SystemBehavior if it is + -- activated by transient events, i.e. it is executed at regular + -- intervals when activated, and is deactivated by action completion. + fun Hybrid_SystemBehavior : Class ; + fun Hybrid_SystemBehavior_Class : SubClass Hybrid_SystemBehavior SystemBehaviorAttribute ; + + -- The Internet Protocol address, a numeric address such as 123.231.32.2 that + -- the domain name server translates into a domain name. + fun IPAddress : Class ; + fun IPAddress_Class : SubClass IPAddress PhysicalAddress ; + + -- A picture (graphic) stored in a particular + -- coding scheme and stored as a file. Note that this can include vector as + -- well as raster images. Raster images will entail a particular number of + -- horizontal and vertical pixels. Vector images will not entail a + -- particular size or resolution. + fun ImageFile : Class ; + fun ImageFile_Class : SubClass ImageFile ComputerData ; + + -- An attribute that applies to a + -- RealtimeSystem just in case it is designed and implemented to meet + -- the more important requirements first. + fun Importance_Strictness : Class ; + fun Importance_Strictness_Class : SubClass Importance_Strictness StrictnessAttribute ; + + -- An instance of RealtimeSystem + -- is described as Independent_TaskRelation if its correct execution + -- does not depend on the inputs from any other function, the execution state + -- of any other function, or the acceptance of its outputs by any other + -- function. + fun Independent_TaskRelation : Class ; + fun Independent_TaskRelation_Class : SubClass Independent_TaskRelation TaskRelationAttribute ; + + -- The function which returns as its value + -- the initial profile of the program, i.e. a report of its execution + -- characteristics. + fun InitialProfileFn : El ComputerProgram -> Ind ProcessState ; + + -- An instance of the class + -- RealtimeSystem has Initiation_DesignPattern if it consists of + -- one software module and the actuators it commands. The design pattern + -- is an event source which produces events for an event handler. The + -- event source is typically an evaluate_and_decide software module. + -- The event stream is necessarily asychronous, or transient. The arrival + -- rate of events may vary and is unbounded. Events may be either + -- homogeneous or heterogeneous. The workload per event for homogeneous + -- events is constant. The workload per event for heterogeneous events + -- is a function of each event type. There is one deadline for real_time + -- action initiation systems. It is the upper bound on the time to + -- generate a command for the actuator. + fun Initiation_DesignPattern : Class ; + fun Initiation_DesignPattern_Class : SubClass Initiation_DesignPattern DesignPatternAttribute ; + + -- The attribute Instrument_AbstractionLevel is the lowest level of abstraction, + -- which can be used to describe a real_time system or subsystem. + fun Instrument_AbstractionLevel : Class ; + fun Instrument_AbstractionLevel_Class : SubClass Instrument_AbstractionLevel AbstractionLevelAttribute ; + + -- A computer network that spans a relatively small + -- area. Most LANs are confined to a single building or group of buildings. + -- However, one LAN can be connected to other LANs over any distance via + -- telephone lines and radio waves. LAN A local_area network (LAN) whose topology is a ring. + -- That is, all of the nodes are connected in a closed loop. Messages + -- travel around the ring, with each node reading those messages addressed + -- to it. + fun LAN : Class ; + fun LAN_Class : SubClass LAN ComputerNetwork ; + + -- Used to indicate that a ComputationalSystem + -- has a low priority. + fun LowPriority : Ind PriorityAttribute ; + + -- Each element of MeasuringPerformance + -- is an event of measuring the performance of an instance of ComputerComponent, + -- performed by a MonitoringProgram. + fun MeasuringPerformance : Class ; + fun MeasuringPerformance_Class : SubClass MeasuringPerformance ComputerProcess ; + + -- The attribute + -- Method_AbstractionLevel is the next to the lowest level of + -- abstraction that can be used to describe a real_time system or + -- subsystem. This is at the level of describing every callable + -- function (or method in an object_oriented language) implemented + -- in software. + fun Method_AbstractionLevel : Class ; + fun Method_AbstractionLevel_Class : SubClass Method_AbstractionLevel AbstractionLevelAttribute ; + + -- This command is to change the monitoring + -- for any component for which a componentDataID was sent on initial connection. + fun MonitorApplicationCmd : Class ; + fun MonitorApplicationCmd_Class : SubClass MonitorApplicationCmd MonitoringProgram ; + + -- This is the command to monitor any of the + -- generic components _ hard drive, network, cpu, memory, etc. + fun MonitorComponentCmd : Class ; + fun MonitorComponentCmd_Class : SubClass MonitorComponentCmd MonitoringProgram ; + + -- This is the command to get a list + -- of applications periodically. + fun MonitorConnectivityCmd : Class ; + fun MonitorConnectivityCmd_Class : SubClass MonitorConnectivityCmd MonitoringProgram ; + + -- A program which monitors performance + -- of an application, a component, etc. + fun MonitoringProgram : Class ; + fun MonitoringProgram_Class : SubClass MonitoringProgram ComputerProgram ; + + -- An attribute that describes + -- instances of RealtimeSystems which require multiple timing requirements, + -- both a bound for completion time for its transient behavior and a cycle + -- deadline for its periodic behavior. + fun MultipleRequirement_Complexity : Class ; + fun MultipleRequirement_Complexity_Class : SubClass MultipleRequirement_Complexity ComplexityAttribute ; + + -- The running of two or more programs in one + -- computer at the same time. The number of programs that can be effectively + -- multitasked depends on the type of multitasking performed (preemptive vs + -- cooperative), CPU speed and memory and disk capacity. + fun Multitasking : Class ; + fun Multitasking_Class : SubClass Multitasking ComputerProcess ; + + -- A network adapter, also known as a Network + -- Interface Card or NIC, is a physical device installed in a computer on its + -- system bus. Its purpose is to connect to a specific type of network, + -- usually an ethernet or a token ring network. + fun NetworkAdapter : Class ; + fun NetworkAdapter_Class : SubClass NetworkAdapter ComputerComponent ; + + -- Network resources are the available + -- servers and printers in the network. + fun NetworkResource : Class ; + fun NetworkResource_Class : SubClass NetworkResource ComputerResource ; + + -- The attribute + -- Object_AbstractionLevel is immediately above the attribute + -- Method_AbstractionLevel and can be used to describe a real_time + -- system or subsystem. This is at the level of describing every software + -- object that can be created from a class together with its data structures + -- and methods (which define the interface for manipulating the object). + fun Object_AbstractionLevel : Class ; + fun Object_AbstractionLevel_Class : SubClass Object_AbstractionLevel AbstractionLevelAttribute ; + + -- The master control program that runs the + -- computer. It is the first program loaded when the computer is turned on, + -- and its main part, called the kernel, resides in memory at all times. It + -- may be developed by the vendor of the computer it's running in or by a + -- third party. + fun OperatingSystem : Class ; + fun OperatingSystem_Class : SubClass OperatingSystem SoftwareSystem ; + + -- Optimization means finding the best solution according + -- to a set of criteria. For a computer program, an optimal solution would be the + -- fastest program (according to some benchmark) or the smallest program. + fun Optimization : Class ; + fun Optimization_Class : SubClass Optimization ProcessTask ; + + -- A block of data used for transmission in packet + -- switched systems. + fun Packet : Class ; + fun Packet_Class : SubClass Packet ComputerData ; + + -- The rate or speed of Packet_Networks + -- transferred in a second. + fun PacketsPerSecond : Ind CompositeUnitOfMeasure ; + + -- The attribute which denotes that + -- the path importance is defined by the dynamic library procedure + -- pathImportanceFunction. This functions passes arguments for priority + -- and current time and returns an integer that represents importance. + fun PathImportanceFunction : Ind ComputerPathAttribute ; + + -- An instance of the class + -- RealtimeSystem is described as a system with Periodic_SystemBehavior + -- when it is activated at regular intervals. + fun Periodic_SystemBehavior : Class ; + fun Periodic_SystemBehavior_Class : SubClass Periodic_SystemBehavior SystemBehaviorAttribute ; + + -- The collection of all addresses which + -- identify a location of a ComputerFile. + fun PhysicalAddress : Class ; + fun PhysicalAddress_Class : SubClass PhysicalAddress SymbolicString ; + + fun Precision_FormOfAdaptation : Class ; + fun Precision_FormOfAdaptation_Class : SubClass Precision_FormOfAdaptation FormOfAdaptationAttribute ; + -- A device that converts computer output into + -- printed images. + fun Printer : Class ; + fun Printer_Class : SubClass Printer ComputerOutputDevice ; + + -- A class of attributes which describe + -- priorities of ComputationalSystems. + fun PriorityAttribute : Class ; + fun PriorityAttribute_Class : SubClass PriorityAttribute RelationalAttribute ; + + -- An attribute that denotes the failure of the Process to achieve + -- its goal. + fun ProcessFailure : Ind ProcessStatus ; + + -- The class of all the information required + -- for a ComputerProgram to run on a processor. It is a vector that + -- contains a pointer to the next program instruction to be executed as well + -- as the values of all intermediate and defined variables, the state of the + -- processor executing the program, and the allocated address space among + -- other data. + fun ProcessState : Class ; + fun ProcessState_Class : SubClass ProcessState ContentBearingObject ; + + -- A class of attributes. Each instance of ProcessStatus describes a + -- status of a Process, such as ProcessFailure, ProcessSuccess, etc. + fun ProcessStatus : Class ; + fun ProcessStatus_Class : SubClass ProcessStatus RelationalAttribute ; + + -- An attribute that denotes the success of the Process to achieve + -- its goal. + fun ProcessSuccess : Ind ProcessStatus ; + + -- A function to be performed. + fun ProcessTask : Class ; + fun ProcessTask_Class : SubClass ProcessTask Abstract ; + + -- An attribute which applies to + -- computer paths which handle random events, which initiate a bounded + -- stream of data arriving at a comment of rate, which the path must + -- process. + fun QuasicontinuousPath : Class ; + fun QuasicontinuousPath_Class : SubClass QuasicontinuousPath ComputerPathAttribute ; + + -- A program started by a Resource + -- Management program, which determines if and where to start the + -- application. + fun RM_StartApplication : Class ; + fun RM_StartApplication_Class : SubClass RM_StartApplication ComputerProgram ; + + -- An computer_controlled system, the + -- correct operation of which depends on meeting specified timing + -- constraints. + fun RealtimeSystem : Class ; + fun RealtimeSystem_Class : SubClass RealtimeSystem ComputationalSystem ; + + -- The class of Attributes which + -- describe instances of the class RealtimeSystem. + fun RealtimeSystemAttribute : Class ; + fun RealtimeSystemAttribute_Class : SubClass RealtimeSystemAttribute RelationalAttribute ; + + -- The attribute which denotes that + -- a program can be restarted on the same host. + fun ReplicationsOnSameHostOK : Ind SoftwareAttribute ; + + -- This attribute applies + -- to real_time systems that are designed and implemented so that the system + -- can adapt under the control of a resource allocation manager like Desiderata. + fun ResourceAllocation_FormOfAdaptation : Class ; + fun ResourceAllocation_FormOfAdaptation_Class : SubClass ResourceAllocation_FormOfAdaptation FormOfAdaptationAttribute ; + + -- The class of resource + -- management programs. + fun ResourceManagementProgram : Class ; + fun ResourceManagementProgram_Class : SubClass ResourceManagementProgram ComputerProgram ; + + -- The attribute which denotes that a program + -- can be restarted. + fun Restartable : Ind SoftwareAttribute ; + + -- To use the same resource again. + fun ReusingAResource : Class ; + fun ReusingAResource_Class : SubClass ReusingAResource ComputerProcess ; + + fun RingNetwork : Class ; + fun RingNetwork_Class : SubClass RingNetwork LAN ; + -- SatisfyingRequirements covers cases of + -- finding a solution that satisfies necessary conditions. + fun SatisfyingRequirements : Class ; + fun SatisfyingRequirements_Class : SubClass SatisfyingRequirements ProcessTask ; + + -- The attribute which denotes that + -- an application can combine its input stream from different preceding + -- applications or devices for greater scalability. + fun ScalabilityCombining : Ind SoftwareAttribute ; + + -- The attribute which denotes that + -- a program can split its output stream to different succeeding + -- applications or devices for greater scalability. + fun ScalabilitySplitting : Ind SoftwareAttribute ; + + -- The attribute which denotes that the path is + -- scalable, i.e. the applications in the path can be replicated to meet + -- realtime QoS requirements. + fun Scalable : Class ; + fun Scalable_Class : SubClass Scalable ComputerPathAttribute ; + + -- Sensors include software that measures any + -- attribute of executing computer programs or collections of executing + -- programs, such as CPU utilization, aka load, memory utilization, I/O, + -- overall task performance, network load and latency, etc. + fun Sensor : Class ; + fun Sensor_Class : SubClass Sensor ComputerHardware ; + + -- A computer in a network shared by multiple users. + -- The term may refer to both the hardware and software or just the software + -- that performs the service. + fun Server : Class ; + fun Server_Class : SubClass Server ComputationalSystem ; + + -- A typically small instance of + -- ComputerProgram whose function is to end a typically larger + -- instance of ComputerProgram. + fun ShutdownBlock : Class ; + fun ShutdownBlock_Class : SubClass ShutdownBlock ComputerProgram ; + + -- (ShutdownFn ?Program) returns an instance of + -- ShutdownBlock which contains the instructions to end ?PROGRAM. + fun ShutdownFn : El ComputerProgram -> Ind ShutdownBlock ; + + -- An attribute that describes + -- instances of RealtimeSystems which require a single timing requirement, + -- either a bound for completion time for systems with + -- Transient_SystemBehavior or cycle deadline for systems with + -- Periodic_SystemBehavior. + fun SingleRequirement_Complexity : Class ; + fun SingleRequirement_Complexity_Class : SubClass SingleRequirement_Complexity ComplexityAttribute ; + + -- The attribute Slack_FormOfAdaptation + -- applies to real_time systems that are designed and implemented with enough + -- resource overhead that the system can always adapt by utilizing the overhead + -- without complicated decision making. + fun Slack_FormOfAdaptation : Class ; + fun Slack_FormOfAdaptation_Class : SubClass Slack_FormOfAdaptation FormOfAdaptationAttribute ; + + -- An attribute that applies to a + -- RealtimeSystem just in case it maximizes the number of timing + -- requirements like deadlines that are met but does not guarantee that + -- all such requirements will be met or any fixed percentage of + -- requirements will be met. + fun Soft_Strictness : Class ; + fun Soft_Strictness_Class : SubClass Soft_Strictness StrictnessAttribute ; + + -- The class of all attributes that are + -- specific to SoftwareSystems. + fun SoftwareAttribute : Class ; + fun SoftwareAttribute_Class : SubClass SoftwareAttribute RelationalAttribute ; + + -- This is the class of mutually supportive + -- groups of instances of ComputerProgram for a single general purpose. + -- For example, a database management system is a collection of many instances + -- of ComputerProgram that work together to store, retrieve, modify, and + -- delete data. + fun SoftwareSystem : Class ; + fun SoftwareSystem_Class : SubClass SoftwareSystem (both ComputationalSystem RealtimeSystem) ; + + -- The class of all instances of Solaris , a + -- unix_based operating system for Sun SPARC computers. It includes the + -- Open Look and Motif graphical user interfaces, OpenWindows (the Sun + -- version of X Windows), DOS and Windows Emulation, and ONC networking. + fun Solaris : Class ; + fun Solaris_Class : SubClass Solaris OperatingSystem ; + + -- A local_area network (LAN) that uses a star + -- topology in which all nodes are connected to a central computer. + fun StarNetwork : Class ; + fun StarNetwork_Class : SubClass StarNetwork LAN ; + + -- A typically small instance of ComputerProgram + -- (a sequence of instructions that will run on a computer) whose function is + -- to load and initialize a typically larger instance of ComputerProgram + -- and start it running. + fun StartupBlock : Class ; + fun StartupBlock_Class : SubClass StartupBlock ComputerProgram ; + + -- (StartupFn ?Program) returns an instance of + -- StartupBlock which contains the instructions to start the ?Program. + fun StartupFn : El ComputerProgram -> Ind StartupBlock ; + + -- The attribute which denotes that + -- the time between data or groups of data changes according to no + -- discernible pattern. + fun StochasticDataStream : Class ; + fun StochasticDataStream_Class : SubClass StochasticDataStream ComputerPathAttribute ; + + -- This is a subclass of + -- TimingRequirementAttribute, which includes Hard_Strictness, + -- Firm_Strictness, Soft_Strictness, Importance_Strictness, + -- Utility_Strictness, and Hybrid_Strictness + fun StrictnessAttribute : Class ; + fun StrictnessAttribute_Class : SubClass StrictnessAttribute TimingRequirementAttribute ; + + -- A subclass of + -- RealtimeSystemAttribute, which includes the following Attributes: + -- Periodic_SystemBehavior, Transient_SystemBehavior, and + -- Hybrid_SystemBehavior. + fun SystemBehaviorAttribute : Class ; + fun SystemBehaviorAttribute_Class : SubClass SystemBehaviorAttribute RealtimeSystemAttribute ; + + -- The attribute + -- TaskGroup_AbstractionLevel is immediately above the attribute + -- Task_AbstractionLevel and can be used to describe a real_time + -- system or subsystem This is at the level of describing groups of + -- tasks which are related or connected by the real_time systems and + -- are typically part of a concurrently executing path. + fun TaskGroup_AbstractionLevel : Class ; + fun TaskGroup_AbstractionLevel_Class : SubClass TaskGroup_AbstractionLevel AbstractionLevelAttribute ; + + -- This is a subclass of + -- RealtimeSystemAttribute, which includes Independent_TaskRelation + -- and Dependent_TaskRelation. + fun TaskRelationAttribute : Class ; + fun TaskRelationAttribute_Class : SubClass TaskRelationAttribute RealtimeSystemAttribute ; + + -- The attribute + -- Task_AbstractionLevel is immediately above the attribute + -- Object_AbstractionLevel and can be used to describe a real_time + -- system or subsystem. This is at the level of describing the major + -- tasks that are carried out by the real_time systems and are typically + -- executable as individual processes. The description of a task would + -- consist of listing all the software objects used to perform the task. + fun Task_AbstractionLevel : Class ; + fun Task_AbstractionLevel_Class : SubClass Task_AbstractionLevel AbstractionLevelAttribute ; + + -- A subclass of + -- RealtimeSystemAttribute which includes ComplexityAttribute, + -- StrictnessAttribute, and AbstractionLevelAttribute. + fun TimingRequirementAttribute : Class ; + fun TimingRequirementAttribute_Class : SubClass TimingRequirementAttribute RealtimeSystemAttribute ; + + -- An attribute which applies to computer + -- paths which handle random events. + fun TransientPath : Class ; + fun TransientPath_Class : SubClass TransientPath ComputerPathAttribute ; + + -- An instance of the class + -- RealtimeSystem shows Transient_SystemBehavior when it is + -- activated by sporadic events. + fun Transient_SystemBehavior : Class ; + fun Transient_SystemBehavior_Class : SubClass Transient_SystemBehavior SystemBehaviorAttribute ; + + -- A UniformResourceIdentifier + -- (URI) is a compact string of characters for identifying an abstract or + -- physical resource. A URI can be further classified as a locator, a name, + -- or both (source: http://www.ietf.org/rfc/rfc2396.txt). + fun UniformResourceIdentifier : Class ; + fun UniformResourceIdentifier_Class : SubClass UniformResourceIdentifier ContentBearingObject ; + + -- The term UniformResourceLocator + -- (URL) refers to the subset of URI that identify resources via a + -- representation of their primary access mechanism (e.g., their network + -- location), rather than identifying the resource by name or by some other + -- attribute(s) of that resource (source: http://www.ietf.org/rfc/rfc2396.txt). + fun UniformResourceLocator : Class ; + fun UniformResourceLocator_Class : SubClass UniformResourceLocator UniformResourceIdentifier ; + + -- The term UniformResourceName (URN) + -- refers to the subset of URI that are required to remain globally unique + -- and persistent even when the resource ceases to exist or becomes + -- unavailable (source: http://www.ietf.org/rfc/rfc2396.txt). + fun UniformResourceName : Class ; + fun UniformResourceName_Class : SubClass UniformResourceName UniformResourceIdentifier ; + + -- The Unix epoch or point of reference is 00:00:00 UTC, + -- January 1, 1970. + fun UnixEpoch : Ind Epoch ; + + -- An established relationship between a user and a + -- computer, network or information service. User accounts require a username and + -- password, and new user accounts are given a default set of permissions. + fun UserAccount : Class ; + fun UserAccount_Class : SubClass UserAccount ContentBearingObject ; + + -- The name a person uses to identify himself or herself + -- when logging onto a computer system or online service. + fun UserName : Class ; + fun UserName_Class : SubClass UserName SymbolicString ; + + -- A request made by a ComputerUser, such as + -- looking up a customer record. + fun UserRequest : Class ; + fun UserRequest_Class : SubClass UserRequest ComputerProcess ; + + -- A ComputerProcess which requires access to a + -- ComputerResource. + fun UsingAResource : Class ; + fun UsingAResource_Class : SubClass UsingAResource ComputerProcess ; + + -- A program that performs a specific task related to the + -- management of computer functions, resources, or files. Utility programs range + -- from the simple to the sophisticated, and many programmers specialize in producing + -- and distributing them as shareware. There are utilities that perform file and + -- directory management, data compression, disk defragmentation and repair, system + -- diagnostics, graphics viewing, and system security, for example. Many utilities + -- are written as memory_resident programs meant to serve as adjuncts to operating + -- systems. Many operating systems incorporate such popular utility functions as + -- undeleting, password protection, memory management, virus protection, and file + -- compression. + fun Utility : Class ; + fun Utility_Class : SubClass Utility ComputerProgram ; + + -- An attribute that applies to a + -- RealtimeSystem just in case it is designed and implemented to use + -- a utility_computing function, which is applied to competing timing + -- requirements to determine which should be met because meeting the + -- requirement produces higher utility as defined by the function. + fun Utility_Strictness : Class ; + fun Utility_Strictness_Class : SubClass Utility_Strictness StrictnessAttribute ; + + fun abstractionLevel : El RealtimeSystem -> El AbstractionLevelAttribute -> Formula ; + + -- (bandwidthOf ?NET ?BANDWIDTH) holds if + -- ?BANDWIDTH is the amount of data which can be sent through an instance + -- of a ComputerNetwork ?NET, measured in bits per second. + fun bandwidthOf : El ComputerNetwork -> El BitsPerSecond -> Formula ; + + -- (batchInterArrival ?PATH ?TIME) + -- holds if ?TIME is the maximum allowable time between processing of a + -- particular element of a continuous or quasicontinuous path's data + -- stream in successive cycles. + fun batchInterArrival : El ComputerPath -> El TimeDuration -> Formula ; + + -- (batchLatency ?PATH ?TIME)holds if ?TIME + -- is the maximum allowed latency for all cycles of a quasicontinuous path. + fun batchLatency : El ComputerPath -> El TimeDuration -> Formula ; + + -- (benchmarkPerformance ?SYSTEM + -- ?TEST ?NUMBER) holds if ?NUMBER is a benchmark for measuring the performance + -- of an instance of a ComputationalSystem. + fun benchmarkPerformance : El ComputationalSystem -> El MonitoringProgram -> El Quantity -> Formula ; + + -- (collectRate ?System ?Period) holds if ?Period is + -- the period at which ComputationalSystem ?System collects data. + fun collectRate : El ComputationalSystem -> El TimeDuration -> Formula ; + + -- (commandLineArguments ?PROGRAM ?LIST) means that the application ?PROGRAM requires command line + -- arguments, as specified in ?LIST. + fun commandLineArguments : El ComputerProgram -> El List -> Formula ; + + -- (complexity ?System ?Attribute) holds if + -- ?Attribute is a TimingRequirementAttribute which describes the + -- RealtimeSystem ?System. + fun complexity : El RealtimeSystem -> El TimingRequirementAttribute -> Formula ; + + -- (componentDataID ?TIME ?COMPONENT ?INSTANCE + -- ?UNIT ?NUMBER) holds if ?INSTANCE is an instance of ?COMPONENT, identified by + -- IDNumber ?NUMBER, and whose performance is measured by a UnitOfMeasure_ComputerPerformance ?UNIT. The timestamp ?TIME identifies the time when this + -- information was created. + fun componentDataID: El TimePosition -> Desc ComputerComponent -> El ComputerComponent -> El UnitOfMeasure -> El SymbolicString -> Formula ; + + -- (computerResponseTo ?Response ?Request) means that + -- ?Response is a ComputerResponse to the UserRequest ?Request. + fun computerResponseTo : El ComputerResponse -> El UserRequest -> Formula ; + + -- (computerRunning ?Process ?Computer) + -- means that the ComputerProcess ?Process is running on ?Computer. + fun computerRunning : El ComputerProcess -> El Computer -> Formula ; + + -- (criticalityLevel ?PROGRAM ?INTEGER) + -- holds just in case ?INTEGER indicates the relative priority of ?PROGRAM + -- with respect to other applications within the SoftwareSystem. + fun criticalityLevel : El ComputerProgram -> El Integer -> Formula ; + + -- (dataID ?PROGRAM ?NUMBER) holds if ?NUMBER is a small + -- number associated with an instance of MonitoringProgram. + fun dataID : El MonitoringProgram -> El SymbolicString -> Formula ; + + -- The data being processed during a ComputerProcess. + fun dataProcessed : El ComputerProcess -> El ComputerData -> Formula ; + + -- (dataStreamSlack ?PATH ?N) means that + -- a continuous or quasicontinuous path ?PATH should be able to process ?N + -- additional data items at any time. + fun dataStreamSlack : El ComputerPath -> El PositiveInteger -> Formula ; + + -- (defaultNetwork ?SYSTEM ?NET) holds if + -- ?NET is the default network of the HardwareSystem ?SYSTEM. + fun defaultNetwork : El HardwareSystem -> El ComputerNetwork -> Formula ; + + -- if the dependency type is StartupBlock, + -- then (dependencyDelay ?PROGRAM ?TIME) means that the application + -- ?PROGRAM can only be started after a dependency delay of ?TIME after the + -- startup of the application. If the dependency type is ShutdownBlock, then + -- (dependencyDelay ?PROGRAM ?TIME) means that the application ?PROGRAM can + -- only be stopped after a dependency delay of ?TIME after the application + -- is stopped. + fun dependencyDelay : El ComputerProgram -> El TimeDuration -> Formula ; + + -- (dependencyType ?PROGRAM ?TYPE) means + -- that ?PROGRAM has a dependency type ?TYPE, where ?TYPE can be either + -- StartupBlock or ShutdownBlock. + fun dependencyType: El ComputerProgram -> Desc ComputerProgram -> Formula ; + + -- (designPattern ?System ?Attribute) holds + -- if ?Attribute is a DesignPatternAttribute which describes the + -- RealtimeSystem ?System. + fun designPattern : El RealtimeSystem -> El DesignPatternAttribute -> Formula ; + + -- (directoryOf ?FILE ?DIRECTORY) means that + -- the ComputerFile ?FILE is in the ComputerDirectory ?DIRECTORY. + fun directoryOf : El ComputerFile -> El ComputerDirectory -> Formula ; + + -- (environmentAttributes ?Program ?Attribute) holds if ?Attribute is an EnvironmentSoftwareAttribute + -- which describes the ComputerProgram ?Program. + fun environmentAttributes : El ComputerProgram -> El EnvironmentSoftwareAttribute -> Formula ; + + -- (formOfAdaptation ?System ?Attribute) + -- holds if ?Attribute is a FormOfAdaptationAttribute which describes the + -- RealtimeSystem ?System. + fun formOfAdaptation : El RealtimeSystem -> El FormOfAdaptationAttribute -> Formula ; + + -- Granularity is a sub_property of the + -- timing requirements property of real_time systems. Granularity is + -- defined by how a timing requirement is specified in units of time. + fun granularity : El RealtimeSystem -> El TimeDuration -> Formula ; + + -- (hardwareType ?TYPE ?COMPUTER) means that + -- TYPE represents the computer vendor model name, as well as the version + -- of the product. + fun hardwareType : El SymbolicString -> El Computer -> Formula ; + + -- (hasAccount ?User ?Account) holds if ?User is + -- assigned the UserAccount ?Account. + fun hasAccount : El ComputerUser -> El UserAccount -> Formula ; + + -- (hasDependency ?PROGRAM1 ?PROGRAM2) + -- holds if ?PROGRAM1 is dependent on the application ?PROGRAM2. + fun hasDependency : El ComputerProgram -> El ComputerProgram -> Formula ; + + -- (heartBeatRate ?Program ?Period) holds if + -- ?Period is the period at which the ComputerProgram ?Program sends its heartbeat + -- to a monitoring process. + fun heartBeatRate : El ComputerProgram -> El TimeDuration -> Formula ; + + -- Interference on an analog line caused by a variation + -- of a signal from its reference timing slots. Jitter can cause problems in the receipt + -- of data and any subsequent processing of that data. + fun hostJitter : El Computer -> El ConstantQuantity -> Formula ; + + -- (hostOf ?SYSTEM ?COMPUTER) means that ?COMPUTER + -- is the host of the computational system ?SYSTEM. + fun hostOf : El ComputationalSystem -> El Computer -> Formula ; + + -- (hostStatus ?Computer ?Status) means that ?Status + -- describes the status of the Computer, such as HostDown, HostReady. + fun hostStatus : El Computer -> El ComputerStatus -> Formula ; + + -- The degree of sharpness of a displayed or printed image. + fun imageResolution : El ImageFile -> El PhysicalQuantity -> Formula ; + + -- (ipAddressOf ?HOST ?ADDRESS) holds if ?ADDRESS is the IPAddress of + -- the computer ?HOST. + fun ipAddressOf : El Computer -> El IPAddress -> Formula ; + + -- In performance measurement, the current use of a + -- system as a percentage of total capacity. + fun load : El ComputerComponent -> El ConstantQuantity -> Formula ; + + -- (maximumReplications ?PROGRAM ?INTEGER) means that + -- ?INTEGER represents the maximum number of copies of this application which can be run + -- during a process. + fun maximumReplications : El ComputerProgram -> El PositiveInteger -> Formula ; + + -- (memorySize ?System ?Size) holds if + -- ?Size is the required memory size for the ComputationalSystem ?System. + fun memorySize : El ComputationalSystem -> El ConstantQuantity -> Formula ; + + -- (minimumReplications ?PROGRAM ?INTEGER) means that ?INTEGER represents + -- the minimum copies of the application ?PROGRAM required to be survivable, where a program is + -- survivable if the failure of one or more resources does not result + -- in the failure of the program. Either long MTTF for the system as a + -- whole or short MTTR when failure occurs would improve the survivability + -- of a program. + fun minimumReplications : El ComputerProgram -> El PositiveInteger -> Formula ; + + -- (monitorApplicationData ?TIME + -- ?APPLICATION) holds if the time stamp ?TIME specifies the time at which + -- ?APPLICATION is running. + fun monitorApplicationData : El TimePosition -> El ComputerProgram -> Formula ; + + -- (monitorComponentData ?TIME ?ID + -- ?NUMBER) holds if at time ?TIME, a component with the IDNumber ?ID + -- has a performance of a value ?NUMBER. + fun monitorComponentData : El TimePosition -> El SymbolicString -> El RealNumber -> Formula ; + + -- (monitorConnectivityData ?TIME + -- ?IPADDRESS) is a relation between a timestamp ?TIME and an ?IP address. + fun monitorConnectivityData : El TimePosition -> El IPAddress -> Formula ; + + -- (numberOfCPUs ?COMPUTER ?INTEGER) means + -- that the number of CPUs for the host ?COMPUTER is equal to INTEGER. + fun numberOfCPUs : El Computer -> El PositiveInteger -> Formula ; + + -- (password ?Password ?User) means that ?Password is + -- the password the ComputerUser uses while logging onto a computer system. + fun password : El ComputerUser -> El ComputerPassword -> Formula ; + + -- (performanceResult ?EVENT ?COMPONENT ?NUMBER) holds if the performance of + -- ?COMPONENT has a value ?NUMBER, measured by ?EVENT, an instance of MeasuringPerformance. + fun performanceResult : El MeasuringPerformance -> El ComputerComponent -> El RealNumber -> Formula ; + + -- (portNumber ?PROGRAM ?NUMBER) holds if ?NUMBER identifies a protocol + -- port, i.e. a TCP_IP software abstraction used to distinguish different applications providing + -- services within a single destination computer. The different ports on a host are identified by a + -- positive 16_bit number. + fun portNumber : El ComputerProgram -> El PositiveInteger -> Formula ; + + -- (priority ?SYSTEM ?QUANTITY) means that the + -- priority of the ?SYSTEM is characterized by a PriorityAttribute, such + -- as HighPriority or LowPriority. + fun priority : El ComputationalSystem -> El PriorityAttribute -> Formula ; + + -- (processAborted ?Abort ?Process) means + -- that the ComputerProcess ?Process is aborted as the result of ?Abort. + fun processAborted : El Abort -> El ComputerProcess -> Formula ; + + -- (processID ?PROCESS ?NUMBER) holds if ?NUMBER is a unique number + -- generated by the operating system and used to refer to the ComputerProcess ?PROCESS. There + -- is usually no significance to the numbers as they are reused as old processes die and new processes + -- are created. + fun processID : El ComputerProcess -> El PositiveInteger -> Formula ; + + -- The arguments of this relation are data + -- structures, each of which contains the information necessary for the + -- process already loaded by the operating system to execute on a processor. + fun processList : [El Entity] -> Formula ; + + -- (productModel ?Model ?Product) means that + -- ?Model represents the type of the Product ?Product + fun productModel : El SymbolicString -> El Product -> Formula ; + + -- (programCopy ?File ?Program) means that + -- the ComputerFile ?File is one of the copies of the ComputerProgram + -- ?Program. + fun programCopy : El ComputerFile -> El ComputerProgram -> Formula ; + + -- (programRunning ?Process ?Program) + -- means that the ComputerProcess ?Process is executing the + -- ComputerProgram ?Program. + fun programRunning : El ComputerProcess -> El ComputerProgram -> Formula ; + + -- (qoSSlack ?PATH ?MIN ?MAX) holds if ?PATH + -- has a realtime QoS maximum slack percentage of ?MAX and minimum of ?MIN. + fun qoSSlack : El ComputerPath -> El ConstantQuantity -> El ConstantQuantity -> Formula ; + + -- (rMProgram_of ?RM ?SYSTEM) means that + -- ?RM is the resource management program of the SoftwareSystem ?SYSTEM. + fun rMProgram_of : El ResourceManagementProgram -> El SoftwareSystem -> Formula ; + + -- (requestRate ?Request ?Period) means that + -- ?Period is the period at which the user sends its ?Request. + fun requestRate : El UserRequest -> El TimeDuration -> Formula ; + + -- (resourceUsed ?Process ?Resource) means that the + -- ComputerProcess ?Process has access to the ComputerResource ?Resource. + fun resourceUsed : El ComputerProcess -> El ComputerResource -> Formula ; + + -- (responseRate ?Response ?Period) means + -- that ?Period is the period at which the computer sends its ?Response. + fun responseRate : El ComputerResponse -> El TimeDuration -> Formula ; + + -- The time it takes for the computer to comply + -- with a user's request, such as looking up a customer record. + fun responseTime : El UserRequest -> El TimeDuration -> Formula ; + + -- (runningOn ?Program ?Computer) holds if the + -- ComputerProgram ?Program is being executed on ?Computer. + fun runningOn : El ComputerProgram -> El Computer -> Formula ; + + -- (runsOn ?Program ?Computer) means that ?Program + -- is capable of running on ?Computer. + fun runsOn : El ComputerProgram -> El Computer -> Formula ; + + -- (sendRate ?Program ?Period) holds if ?Period is the + -- period at which the ComputationalSystem ?System sends data reports. + fun sendRate : El ComputationalSystem -> El TimeDuration -> Formula ; + + -- (settlingTime ?PROGRAM ?TIME) says that ?TIME represents seconds to delay + -- after an action was taken with respect to QoS. + fun settlingTime : El ComputerProgram -> El TimeDuration -> Formula ; + + -- (shutdownOf ?SHUTDOWN ?PROGRAM) holds just + -- in case an instance of ShutdownBlock ?SHUTDOWN specifies a set of + -- instructions to end ?PROGRAM. + fun shutdownOf : El ShutdownBlock -> El ComputerProgram -> Formula ; + + -- (simpleDeadline ?PATH ?TIME)holds if + -- ?TIME is the maximum end_to_end path latency during a cycle of a + -- continuous or quasicontinuous path or during the activation of a transient + -- path. + fun simpleDeadline : El ComputerPath -> El TimeDuration -> Formula ; + + -- (slidingWindowSize ?PATH ?N) holds + -- if PATH has a realtime QoS sliding window size of ?N measured samples. + fun slidingWindowSize : El ComputerPath -> El PositiveInteger -> Formula ; + + -- (softwarePath ?SYSTEM ?PATH) means that + -- ?PATH is a computer path for the instance of SoftwareSystem ?SYSTEM. + fun softwarePath : El SoftwareSystem -> El ComputerPath -> Formula ; + + -- (standardErrorDevice ?PROGRAM ?DEVICE) holds just in case the DEVICE is the predefined + -- error channel with which the running version of this program is initialised. + fun standardErrorDevice : El ComputerProcess -> El ComputerOutputDevice -> Formula ; + + -- (standardInputDevice ?PROCESS ?DEVICE) holds just in case the DEVICE is + -- the predefined input channel with which the running version of the program PROCESS is initialised. + fun standardInputDevice : El ComputerProcess -> El ComputerInputDevice -> Formula ; + + -- (standardOutputDevice ?PROGRAM ?DEVICE) holds just in case the DEVICE is + -- the predefined output channel with which the running version of this program is initialised. + fun standardOutputDevice : El ComputerProcess -> El ComputerOutputDevice -> Formula ; + + -- (startupOf ?STARTUP ?PROGRAM) holds just in case an instance of + -- StartupBlock ?STARTUP specifies a set of instructions to start the ?PROGRAM. + fun startupOf : El StartupBlock -> El ComputerProgram -> Formula ; + + -- (startupTimeDelay ?PROGRAM ?TIME) + -- says that ?TIME is the time to delay after the previous application + -- was started before starting the application ?PROGRAM. + fun startupTimeDelay : El ComputerProgram -> El TimeDuration -> Formula ; + + -- (stateOfProcess ?PROCESS ?STATE) says + -- that ?STATE is a state of the ComputerProcess ?PROCESS. + fun stateOfProcess : El ComputerProcess -> El ProcessState -> Formula ; + + -- (status ?PROCESS ?STATUS) holds if ?STATUS is the current status of ?PROCESS. + fun status : El ComputerProcess -> El ProcessStatus -> Formula ; + + -- (strictness ?System ?Attribute) holds if + -- the StrictnessAttribute ?Attribute describes the RealtimeSystem ?System. + fun strictness : El RealtimeSystem -> El StrictnessAttribute -> Formula ; + + -- (systemBehavior ?System ?Attribute) + -- holds if ?Attribute is a SystemBehaviorAttribute which describes the + -- RealtimeSystem ?System. + fun systemBehavior : El RealtimeSystem -> El SystemBehaviorAttribute -> Formula ; + + -- (systemMeasured ?Event ?System) means that ?Event is an event of measuring + -- the performance of the ComputationalSystem ?System. + fun systemMeasured : El MeasuringPerformance -> El ComputationalSystem -> Formula ; --- (bandwidthOf ?NET ?BANDWIDTH) holds if --- ?BANDWIDTH is the amount of data which can be sent through an instance --- of a ComputerNetwork ?NET, measured in bits per second. -fun bandwidthOf : El ComputerNetwork -> El BitsPerSecond -> Formula ; + -- (task ?Process ?Task) means that ?Task is a function to + -- be performed by the ComputerProcess ?Process. + fun task : El ComputerProcess -> El ProcessTask -> Formula ; + -- (taskRelation ?System ?Attribute) holds + -- if ?Attribute is a TaskRelationAttribute which describes the + -- RealtimeSystem ?System. + fun taskRelation : El RealtimeSystem -> El TaskRelationAttribute -> Formula ; --- (batchInterArrival ?PATH ?TIME) --- holds if ?TIME is the maximum allowable time between processing of a --- particular element of a continuous or quasicontinuous path's data --- stream in successive cycles. -fun batchInterArrival : El ComputerPath -> El TimeDuration -> Formula ; + fun thresholdOf : El Computer -> El PositiveRealNumber -> Formula ; + -- (unitMeasuringPerformance ?COMPONENT ?UNIT) holds in case ?UNIT is + -- an instance of UnitOfMeasure which is used to measure the performance of ?COMPONENT. + fun unitMeasuringPerformance : El ComputerComponent -> El UnitOfMeasure -> Formula ; --- (batchLatency ?PATH ?TIME)holds if ?TIME --- is the maximum allowed latency for all cycles of a quasicontinuous path. -fun batchLatency : El ComputerPath -> El TimeDuration -> Formula ; + -- (userName ?Name ?User) means that ?Name is the name the ComputerUser uses + -- to identify himself or herself when logging onto a computer system. + fun userName : El ComputerUser -> El UserName -> Formula ; - --- (benchmarkPerformance ?SYSTEM --- ?TEST ?NUMBER) holds if ?NUMBER is a benchmark for measuring the performance --- of an instance of a ComputationalSystem. -fun benchmarkPerformance : El ComputationalSystem -> El MonitoringProgram -> El Quantity -> Formula ; - - --- (collectRate ?System ?Period) holds if ?Period is --- the period at which ComputationalSystem ?System collects data. -fun collectRate : El ComputationalSystem -> El TimeDuration -> Formula ; - - --- (commandLineArguments ?PROGRAM --- ?LIST) means that the application ?PROGRAM requires command line --- arguments, as specified in ?LIST. -fun commandLineArguments : El ComputerProgram -> El List -> Formula ; - - --- (complexity ?System ?Attribute) holds if --- ?Attribute is a TimingRequirementAttribute which describes the --- RealtimeSystem ?System. -fun complexity : El RealtimeSystem -> El TimingRequirementAttribute -> Formula ; - - --- (componentDataID ?TIME ?COMPONENT ?INSTANCE --- ?UNIT ?NUMBER) holds if ?INSTANCE is an instance of ?COMPONENT, identified by --- IDNumber ?NUMBER, and whose performance is measured by a UnitOfMeasure_ComputerPerformance ?UNIT. The timestamp ?TIME identifies the time when this --- information was created. -fun componentDataID: El TimePosition -> Desc ComputerComponent -> El ComputerComponent -> El UnitOfMeasure -> El SymbolicString -> Formula ; - - --- (computerResponseTo ?Response ?Request) means that --- ?Response is a ComputerResponse to the UserRequest ?Request. -fun computerResponseTo : El ComputerResponse -> El UserRequest -> Formula ; - - --- (computerRunning ?Process ?Computer) --- means that the ComputerProcess ?Process is running on ?Computer. -fun computerRunning : El ComputerProcess -> El Computer -> Formula ; - - --- (criticalityLevel ?PROGRAM ?INTEGER) --- holds just in case ?INTEGER indicates the relative priority of ?PROGRAM --- with respect to other applications within the SoftwareSystem. -fun criticalityLevel : El ComputerProgram -> El Integer -> Formula ; - - --- (dataID ?PROGRAM ?NUMBER) holds if ?NUMBER is a small --- number associated with an instance of MonitoringProgram. -fun dataID : El MonitoringProgram -> El SymbolicString -> Formula ; - - --- The data being processed during a --- ComputerProcess. -fun dataProcessed : El ComputerProcess -> El ComputerData -> Formula ; - - --- (dataStreamSlack ?PATH ?N) means that --- a continuous or quasicontinuous path ?PATH should be able to process ?N --- additional data items at any time. -fun dataStreamSlack : El ComputerPath -> El PositiveInteger -> Formula ; - - --- (defaultNetwork ?SYSTEM ?NET) holds if --- ?NET is the default network of the HardwareSystem ?SYSTEM. -fun defaultNetwork : El HardwareSystem -> El ComputerNetwork -> Formula ; - - --- if the dependency type is StartupBlock, --- then (dependencyDelay ?PROGRAM ?TIME) means that the application --- ?PROGRAM can only be started after a dependency delay of ?TIME after the --- startup of the application. If the dependency type is ShutdownBlock, then --- (dependencyDelay ?PROGRAM ?TIME) means that the application ?PROGRAM can --- only be stopped after a dependency delay of ?TIME after the application --- is stopped. -fun dependencyDelay : El ComputerProgram -> El TimeDuration -> Formula ; - - --- (dependencyType ?PROGRAM ?TYPE) means --- that ?PROGRAM has a dependency type ?TYPE, where ?TYPE can be either --- StartupBlock or ShutdownBlock. -fun dependencyType: El ComputerProgram -> Desc ComputerProgram -> Formula ; - - --- (designPattern ?System ?Attribute) holds --- if ?Attribute is a DesignPatternAttribute which describes the --- RealtimeSystem ?System. -fun designPattern : El RealtimeSystem -> El DesignPatternAttribute -> Formula ; - - --- (directoryOf ?FILE ?DIRECTORY) means that --- the ComputerFile ?FILE is in the ComputerDirectory ?DIRECTORY. -fun directoryOf : El ComputerFile -> El ComputerDirectory -> Formula ; - - --- (environmentAttributes ?Program --- ?Attribute) holds if ?Attribute is an EnvironmentSoftwareAttribute --- which describes the ComputerProgram ?Program. -fun environmentAttributes : El ComputerProgram -> El EnvironmentSoftwareAttribute -> Formula ; - - --- (formOfAdaptation ?System ?Attribute) --- holds if ?Attribute is a FormOfAdaptationAttribute which describes the --- RealtimeSystem ?System. -fun formOfAdaptation : El RealtimeSystem -> El FormOfAdaptationAttribute -> Formula ; - - --- Granularity is a sub_property of the --- timing requirements property of real_time systems. Granularity is --- defined by how a timing requirement is specified in units of time. -fun granularity : El RealtimeSystem -> El TimeDuration -> Formula ; - - --- (hardwareType ?TYPE ?COMPUTER) means that --- TYPE represents the computer vendor model name, as well as the version --- of the product. -fun hardwareType : El SymbolicString -> El Computer -> Formula ; - - --- (hasAccount ?User ?Account) holds if ?User is --- assigned the UserAccount ?Account. -fun hasAccount : El ComputerUser -> El UserAccount -> Formula ; - - --- (hasDependency ?PROGRAM1 ?PROGRAM2) --- holds if ?PROGRAM1 is dependent on the application ?PROGRAM2. -fun hasDependency : El ComputerProgram -> El ComputerProgram -> Formula ; - - --- (heartBeatRate ?Program ?Period) holds if --- ?Period is the period at which the ComputerProgram ?Program sends its heartbeat --- to a monitoring process. -fun heartBeatRate : El ComputerProgram -> El TimeDuration -> Formula ; - - --- Interference on an analog line caused by a variation --- of a signal from its reference timing slots. Jitter can cause problems in the receipt --- of data and any subsequent processing of that data. -fun hostJitter : El Computer -> El ConstantQuantity -> Formula ; - - --- (hostOf ?SYSTEM ?COMPUTER) means that ?COMPUTER --- is the host of the computational system ?SYSTEM. -fun hostOf : El ComputationalSystem -> El Computer -> Formula ; - - --- (hostStatus ?Computer ?Status) means that ?Status --- describes the status of the Computer, such as HostDown, HostReady. -fun hostStatus : El Computer -> El ComputerStatus -> Formula ; - - --- The degree of sharpness of a displayed or printed --- image. -fun imageResolution : El ImageFile -> El PhysicalQuantity -> Formula ; - - --- (ipAddressOf ?HOST ?ADDRESS) holds if ?ADDRESS is the IPAddress of --- the computer ?HOST. -fun ipAddressOf : El Computer -> El IPAddress -> Formula ; - - --- In performance measurement, the current use of a --- system as a percentage of total capacity. -fun load : El ComputerComponent -> El ConstantQuantity -> Formula ; - - --- (maximumReplications ?PROGRAM ?INTEGER) means that --- ?INTEGER represents the maximum number of copies of this application which can be run --- during a process. -fun maximumReplications : El ComputerProgram -> El PositiveInteger -> Formula ; - - --- (memorySize ?System ?Size) holds if --- ?Size is the required memory size for the ComputationalSystem --- ?System. -fun memorySize : El ComputationalSystem -> El ConstantQuantity -> Formula ; - - --- (minimumReplications ?PROGRAM --- ?INTEGER) means that ?INTEGER represents the minimum copies of the --- application ?PROGRAM required to be survivable, where a program is --- survivable if the failure of one or more resources does not result --- in the failure of the program. Either long MTTF for the system as a --- whole or short MTTR when failure occurs would improve the survivability --- of a program. -fun minimumReplications : El ComputerProgram -> El PositiveInteger -> Formula ; - - --- (monitorApplicationData ?TIME --- ?APPLICATION) holds if the time stamp ?TIME specifies the time at which --- ?APPLICATION is running. -fun monitorApplicationData : El TimePosition -> El ComputerProgram -> Formula ; - - --- (monitorComponentData ?TIME ?ID --- ?NUMBER) holds if at time ?TIME, a component with the IDNumber ?ID --- has a performance of a value ?NUMBER. -fun monitorComponentData : El TimePosition -> El SymbolicString -> El RealNumber -> Formula ; - - --- (monitorConnectivityData ?TIME --- ?IPADDRESS) is a relation between a timestamp ?TIME and an ?IP address. -fun monitorConnectivityData : El TimePosition -> El IPAddress -> Formula ; - - --- (numberOfCPUs ?COMPUTER ?INTEGER) means --- that the number of CPUs for the host ?COMPUTER is equal to INTEGER. -fun numberOfCPUs : El Computer -> El PositiveInteger -> Formula ; - - --- (password ?Password ?User) means that ?Password is --- the password the ComputerUser uses while logging onto a computer system. -fun password : El ComputerUser -> El ComputerPassword -> Formula ; - - --- (performanceResult ?EVENT ?COMPONENT --- ?NUMBER) holds if the performance of ?COMPONENT has a value ?NUMBER, --- measured by ?EVENT, an instance of MeasuringPerformance. -fun performanceResult : El MeasuringPerformance -> El ComputerComponent -> El RealNumber -> Formula ; - - --- (portNumber ?PROGRAM ?NUMBER) holds if ?NUMBER identifies a protocol --- port, i.e. a TCP_IP software abstraction used to distinguish different applications providing --- services within a single destination computer. The different ports on a host are identified by a --- positive 16_bit number. -fun portNumber : El ComputerProgram -> El PositiveInteger -> Formula ; - - --- (priority ?SYSTEM ?QUANTITY) means that the --- priority of the ?SYSTEM is characterized by a PriorityAttribute, such --- as HighPriority or LowPriority. -fun priority : El ComputationalSystem -> El PriorityAttribute -> Formula ; - - --- (processAborted ?Abort ?Process) means --- that the ComputerProcess ?Process is aborted as the result of ?Abort. -fun processAborted : El Abort -> El ComputerProcess -> Formula ; - - --- (processID ?PROCESS ?NUMBER) holds if ?NUMBER is a unique number --- generated by the operating system and used to refer to the ComputerProcess ?PROCESS. There --- is usually no significance to the numbers as they are reused as old processes die and new processes --- are created. -fun processID : El ComputerProcess -> El PositiveInteger -> Formula ; - - --- The arguments of this relation are data --- structures, each of which contains the information necessary for the --- process already loaded by the operating system to execute on a processor. -fun processList : [El Entity] -> Formula ; - - --- (productModel ?Model ?Product) means that --- ?Model represents the type of the Product ?Product -fun productModel : El SymbolicString -> El Product -> Formula ; - - --- (programCopy ?File ?Program) means that --- the ComputerFile ?File is one of the copies of the ComputerProgram --- ?Program. -fun programCopy : El ComputerFile -> El ComputerProgram -> Formula ; - - --- (programRunning ?Process ?Program) --- means that the ComputerProcess ?Process is executing the --- ComputerProgram ?Program. -fun programRunning : El ComputerProcess -> El ComputerProgram -> Formula ; - - --- (qoSSlack ?PATH ?MIN ?MAX) holds if ?PATH --- has a realtime QoS maximum slack percentage of ?MAX and minimum of --- ?MIN. -fun qoSSlack : El ComputerPath -> El ConstantQuantity -> El ConstantQuantity -> Formula ; - - --- (rMProgram_of ?RM ?SYSTEM) means that --- ?RM is the resource management program of the SoftwareSystem ?SYSTEM. -fun rMProgram_of : El ResourceManagementProgram -> El SoftwareSystem -> Formula ; - - --- (requestRate ?Request ?Period) means that --- ?Period is the period at which the user sends its ?Request. -fun requestRate : El UserRequest -> El TimeDuration -> Formula ; - - --- (resourceUsed ?Process ?Resource) means that the --- ComputerProcess ?Process has access to the ComputerResource ?Resource. -fun resourceUsed : El ComputerProcess -> El ComputerResource -> Formula ; - - --- (responseRate ?Response ?Period) means --- that ?Period is the period at which the computer sends its ?Response. -fun responseRate : El ComputerResponse -> El TimeDuration -> Formula ; - - --- The time it takes for the computer to comply --- with a user's request, such as looking up a customer record. -fun responseTime : El UserRequest -> El TimeDuration -> Formula ; - - --- (runningOn ?Program ?Computer) holds if the --- ComputerProgram ?Program is being executed on ?Computer. -fun runningOn : El ComputerProgram -> El Computer -> Formula ; - - --- (runsOn ?Program ?Computer) means that ?Program --- is capable of running on ?Computer. -fun runsOn : El ComputerProgram -> El Computer -> Formula ; - - --- (sendRate ?Program ?Period) holds if ?Period is the --- period at which the ComputationalSystem ?System sends data reports. -fun sendRate : El ComputationalSystem -> El TimeDuration -> Formula ; - - --- (settlingTime ?PROGRAM ?TIME) says that --- ?TIME represents seconds to delay after an action was taken with respect --- to QoS. -fun settlingTime : El ComputerProgram -> El TimeDuration -> Formula ; - - --- (shutdownOf ?SHUTDOWN ?PROGRAM) holds just --- in case an instance of ShutdownBlock ?SHUTDOWN specifies a set of --- instructions to end ?PROGRAM. -fun shutdownOf : El ShutdownBlock -> El ComputerProgram -> Formula ; - - --- (simpleDeadline ?PATH ?TIME)holds if --- ?TIME is the maximum end_to_end path latency during a cycle of a --- continuous or quasicontinuous path or during the activation of a transient --- path. -fun simpleDeadline : El ComputerPath -> El TimeDuration -> Formula ; - - --- (slidingWindowSize ?PATH ?N) holds --- if PATH has a realtime QoS sliding window size of ?N measured samples. -fun slidingWindowSize : El ComputerPath -> El PositiveInteger -> Formula ; - - --- (softwarePath ?SYSTEM ?PATH) means that --- ?PATH is a computer path for the instance of SoftwareSystem ?SYSTEM. -fun softwarePath : El SoftwareSystem -> El ComputerPath -> Formula ; - - --- (standardErrorDevice ?PROGRAM --- ?DEVICE) holds just in case the DEVICE is the predefined error channel --- with which the running version of this program is initialised. -fun standardErrorDevice : El ComputerProcess -> El ComputerOutputDevice -> Formula ; - - --- (standardInputDevice ?PROCESS --- ?DEVICE) holds just in case the DEVICE is the predefined input channel --- with which the running version of the program PROCESS is initialised. -fun standardInputDevice : El ComputerProcess -> El ComputerInputDevice -> Formula ; - - --- (standardOutputDevice ?PROGRAM --- ?DEVICE) holds just in case the DEVICE is the predefined output channel --- with which the running version of this program is initialised. -fun standardOutputDevice : El ComputerProcess -> El ComputerOutputDevice -> Formula ; - - --- (startupOf ?STARTUP ?PROGRAM) holds just in --- case an instance of StartupBlock ?STARTUP specifies a set of instructions --- to start the ?PROGRAM. -fun startupOf : El StartupBlock -> El ComputerProgram -> Formula ; - - --- (startupTimeDelay ?PROGRAM ?TIME) --- says that ?TIME is the time to delay after the previous application --- was started before starting the application ?PROGRAM. -fun startupTimeDelay : El ComputerProgram -> El TimeDuration -> Formula ; - - --- (stateOfProcess ?PROCESS ?STATE) says --- that ?STATE is a state of the ComputerProcess ?PROCESS. -fun stateOfProcess : El ComputerProcess -> El ProcessState -> Formula ; - - --- (status ?PROCESS ?STATUS) holds if ?STATUS is the current status of ?PROCESS. -fun status : El ComputerProcess -> El ProcessStatus -> Formula ; - - --- (strictness ?System ?Attribute) holds if --- the StrictnessAttribute ?Attribute describes the RealtimeSystem --- ?System. -fun strictness : El RealtimeSystem -> El StrictnessAttribute -> Formula ; - - --- (systemBehavior ?System ?Attribute) --- holds if ?Attribute is a SystemBehaviorAttribute which describes the --- RealtimeSystem ?System. -fun systemBehavior : El RealtimeSystem -> El SystemBehaviorAttribute -> Formula ; - - --- (systemMeasured ?Event ?System) means that --- ?Event is an event of measuring the performance of the ComputationalSystem --- ?System. -fun systemMeasured : El MeasuringPerformance -> El ComputationalSystem -> Formula ; - - --- (task ?Process ?Task) means that ?Task is a function to --- be performed by the ComputerProcess ?Process. -fun task : El ComputerProcess -> El ProcessTask -> Formula ; - - --- (taskRelation ?System ?Attribute) holds --- if ?Attribute is a TaskRelationAttribute which describes the --- RealtimeSystem ?System. -fun taskRelation : El RealtimeSystem -> El TaskRelationAttribute -> Formula ; - - -fun thresholdOf : El Computer -> El PositiveRealNumber -> Formula ; - --- (unitMeasuringPerformance ?COMPONENT --- ?UNIT) holds in case ?UNIT is an instance of UnitOfMeasure which is used to --- measure the performance of ?COMPONENT. -fun unitMeasuringPerformance : El ComputerComponent -> El UnitOfMeasure -> Formula ; - - --- (userName ?Name ?User) means that ?Name is the name --- the ComputerUser uses to identify himself or herself when logging onto a --- computer system. -fun userName : El ComputerUser -> El UserName -> Formula ; } diff --git a/examples/SUMO/RGLExt/ExtensionEng.gf b/examples/SUMO/RGLExt/ExtensionEng.gf index 649288fca..9b1675c25 100644 --- a/examples/SUMO/RGLExt/ExtensionEng.gf +++ b/examples/SUMO/RGLExt/ExtensionEng.gf @@ -1,4 +1,4 @@ -concrete ExtensionEng of Extension = CatEng ** open MorphoEng, ResEng, ConjunctionEng, StructuralEng, Prelude, ParadigmsEng, Coordination,ParamBasic in { +concrete ExtensionEng of Extension = CatEng ** open MorphoEng, ResEng, ConjunctionEng, StructuralEng, Prelude, ParadigmsEng, Coordination, ParamBasic in { lincat @@ -55,4 +55,4 @@ O5 = {s = \\_ => "o5" ; a = agrP3 Sg}; -} \ No newline at end of file +} diff --git a/examples/SUMO/SUMO.gf b/examples/SUMO/SUMO.gf index b216cedac..233d30b70 100644 --- a/examples/SUMO/SUMO.gf +++ b/examples/SUMO/SUMO.gf @@ -2,25 +2,24 @@ abstract SUMO = Basic, Merge, + Elements, + MidLevelOntology, + Transportation, + Geography, Communications, + Government, CountriesAndRegions, Economy, - elements, - engineering, + Engineering, FinancialOntology, - Geography, - Government, - Mid_level_ontology, Military, - mondial, + Mondial, QoSontology, - Transportation, WMD, WorldAirportsA_K, - WorldAirportsL_Z, - HigherOrder + WorldAirportsL_Z ** { flags startcat = Stmt ; -} \ No newline at end of file +} diff --git a/examples/SUMO/SUMOEng.gf b/examples/SUMO/SUMOEng.gf index 1a48c171d..e303a018a 100644 --- a/examples/SUMO/SUMOEng.gf +++ b/examples/SUMO/SUMOEng.gf @@ -1,12 +1,10 @@ ---# -path=.:RGLExt:alltenses:src/english --- --# -path=.:RGLExt:../../lib/src/abstract:../../lib/src/english:../../lib/src/common +--# -path=.:RGLExt:alltenses:../../lib/src/english concrete SUMOEng of SUMO = BasicEng, - MergeEng, - Mid_level_ontologyEng, - mondialEng, - elementsEng, - HigherOrderEng + MidLevelOntologyEng, + EconomyEng, + EngineeringEng, + MondialEng ** { diff --git a/examples/SUMO/SUMOFre.gf b/examples/SUMO/SUMOFre.gf index 0b974517f..d5c1981ce 100644 --- a/examples/SUMO/SUMOFre.gf +++ b/examples/SUMO/SUMOFre.gf @@ -2,7 +2,7 @@ concrete SUMOFre of SUMO = MergeFre, - Mid_level_ontologyFre + MidLevelOntologyFre ** { diff --git a/examples/SUMO/SUMORon.gf b/examples/SUMO/SUMORon.gf index 064ca5bd8..2b1b84a98 100644 --- a/examples/SUMO/SUMORon.gf +++ b/examples/SUMO/SUMORon.gf @@ -2,7 +2,7 @@ concrete SUMORon of SUMO = MergeRon, - Mid_level_ontologyRon + MidLevelOntologyRon ** { diff --git a/examples/SUMO/Transportation.gf b/examples/SUMO/Transportation.gf index f21bd2c75..7ea5d476e 100644 --- a/examples/SUMO/Transportation.gf +++ b/examples/SUMO/Transportation.gf @@ -1,1361 +1,1343 @@ -abstract Transportation = open Merge, Mid_level_ontology in { - +abstract Transportation = MidLevelOntology ** { + + -- A Vehicle which is powered by + -- one or more of its passengers or driver, for example, a Bicycle. + fun AgentPoweredVehicle : Class ; + fun AgentPoweredVehicle_Class : SubClass AgentPoweredVehicle Vehicle ; + + -- An AirRoute is a region of air space that + -- can be travelled between points by an air TransportationDevice. + fun AirRoute : Class ; + fun AirRoute_Class : SubClass AirRoute TransitRoute ; + + -- The subclass of Transitways that are through + -- the EarthsAtmosphere. + fun AirTransitway : Class ; + fun AirTransitway_Class : SubClass AirTransitway Transitway ; + + -- A MilitaryShip on which MilitaryAircraft can land + -- and take off. + fun AircraftCarrier : Class ; + fun AircraftCarrier_Class : SubClass AircraftCarrier MilitaryShip ; + + -- Airplane is the subclass of Aircraft that + -- are fixed_wing aircraft which carry their own power sources. Airplane + -- includes jet airplanes and propeller planes, but not gliders. + fun Airplane : Class ; + fun Airplane_Class : SubClass Airplane (both Aircraft PoweredVehicle) ; + + -- Airport is the subclass of TransitTerminals + -- for Airplanes (fixed_wing Aircraft). + fun Airport : Class ; + fun Airport_Class : SubClass Airport (both AirTransitway (both LandTransitway TransitTerminal)) ; + + -- AirportByRunwaySurface is a + -- subclass of AirportClassification attributes used to describe an + -- airport according to the surface type of its longest runway. + fun AirportByRunwaySurface : Class ; + fun AirportByRunwaySurface_Class : SubClass AirportByRunwaySurface AirportClassification ; + + -- AirportClassification + -- is a class of Attributes for representing systems that categorize + -- Airports according to some criteria. There are several such systems, + -- including the International Civil Aviation Organization categories A to + -- E, based on runway lengths, the Federal Aviation Administration system + -- associated with airport functions, and the airport categorization by + -- runway length used in the CIA World Fact Book. + fun AirportClassification : Class ; + fun AirportClassification_Class : SubClass AirportClassification RelationalAttribute ; + + -- AirportWithPavedRunway is an + -- AirportClassification attribute used to describe an airport whose + -- longest runway is a PavedRunway. + fun AirportWithPavedRunway : Ind AirportByRunwaySurface ; + + -- AirportWithUnpavedRunway is + -- an AirportClassification attribute used to describe an airport whose + -- longest runway is an UnpavedRunway. + fun AirportWithUnpavedRunway : Ind AirportByRunwaySurface ; + + -- The class of Transitways used to transport Air + -- to a location where it is absent or insufficient. + fun Airway : Class ; + fun Airway_Class : SubClass Airway Transitway ; + + -- Ambulance is the subclass of + -- EmergencyRoadVehicles that represents ambulances. + fun Ambulance : Class ; + fun Ambulance_Class : SubClass Ambulance EmergencyRoadVehicle ; + + -- Anchorage is the subclass of WaterAreas + -- where WaterVehicle may anchor with some shelter or safety. Anchorages + -- may be inside a Harbor or offshore. + fun Anchorage : Class ; + fun Anchorage_Class : SubClass Anchorage WaterArea ; + + fun Barge : Class ; + fun Barge_Class : SubClass Barge WaterVehicle ; + + fun BargeCarrierShip : Class ; + fun BargeCarrierShip_Class : SubClass BargeCarrierShip CargoShip ; + + -- Bicycle is a class of two_wheeled, + -- UserPoweredVehicles. + fun Bicycle : Class ; + fun Bicycle_Class : SubClass Bicycle Cycle ; + + -- Boxcar is the subclass of Railcars that are + -- general_purpose closed cars for hauling freight. + fun Boxcar : Class ; + fun Boxcar_Class : SubClass Boxcar FreightCar ; + + -- Bridge is the subclass of LandTransitways + -- that are artifacts used for crossing water or air_filled gaps that + -- could not be transited over a natural surface. + fun Bridge : Class ; + fun Bridge_Class : SubClass Bridge (both LandTransitway StationaryArtifact) ; + + -- BroadGauge is the attribute of + -- any Railway that has a TrackGauge wider than StandardGauge. + fun BroadGauge : Ind TrackGauge ; + + fun BroadGaugeRail : Ind RailGauge ; + + fun BroadGaugeRailway : Class ; + fun BroadGaugeRailway_Class : SubClass BroadGaugeRailway Railway ; + + fun BulkCargoShip : Class ; + fun BulkCargoShip_Class : SubClass BulkCargoShip DryBulkCarrierShip ; + + fun BusinessRailcar : Class ; + fun BusinessRailcar_Class : SubClass BusinessRailcar PassengerRailcar ; + + -- CIAAirportLengthClassification is a class of Attributes used to + -- characterize Airports according to the length of their longest + -- usable runway. + fun CIAAirportLengthClassification : Class ; + fun CIAAirportLengthClassification_Class : SubClass CIAAirportLengthClassification AirportClassification ; + + -- CabCar is the class of passenger railcars + -- that have an operating cab in one end of the from which train motion + -- can be controlled in 'push' mode. A CabCar is placed on the + -- opposite end of the train from the locomotive. + fun CabCar : Class ; + fun CabCar_Class : SubClass CabCar RollingStock ; + + fun CableShip : Class ; + fun CableShip_Class : SubClass CableShip Ship ; + + -- Canal is the subclass of navigable Waterways + -- flowing through an artificial course. Typically, a canal is a + -- Transitway connecting two bodies of water. + fun Canal : Class ; + fun Canal_Class : SubClass Canal (both StationaryArtifact Waterway) ; + + fun CanalLock : Class ; + fun CanalLock_Class : SubClass CanalLock (both StationaryArtifact Waterway) ; + + fun CanalLockGate : Class ; + fun CanalLockGate_Class : SubClass CanalLockGate (both Device TransitwayObstacle) ; + + fun CanalSystem : Class ; + fun CanalSystem_Class : SubClass CanalSystem WaterTransportationSystem ; + + fun Canoe : Class ; + fun Canoe_Class : SubClass Canoe (both AgentPoweredVehicle WaterVehicle) ; + + -- CarDistributionSystem is the + -- process of composing trains according to instructions or data. + fun CarDistributionSystem : Class ; + fun CarDistributionSystem_Class : SubClass CarDistributionSystem OrganizationalProcess ; + + -- CargoShip is the subclass of Ships that + -- transport goods in exchange for payment. CargoShip includes ships + -- that carry all kinds of cargo, including oil and bulk products as well + -- as packaged, palletized, or containerized goods. + fun CargoShip : Class ; + fun CargoShip_Class : SubClass CargoShip Ship ; + + fun Catamaran : Class ; + fun Catamaran_Class : SubClass Catamaran MultihullWaterVehicle ; + + fun CementCarrierShip : Class ; + fun CementCarrierShip_Class : SubClass CementCarrierShip DryBulkCarrierShip ; + + -- A Channel is a narrow deep waterway connecting + -- two larger bodies of water. May be natural or dredged, salt or fresh water. + fun Channel : Class ; + fun Channel_Class : SubClass Channel (both Waterway BodyOfWater) ; + + -- ChemicalTankerShip is the + -- subclass of ships that carry ChemicalProducts. + fun ChemicalTankerShip : Class ; + fun ChemicalTankerShip_Class : SubClass ChemicalTankerShip CargoShip ; + + fun Chemical_OilTankerShip : Class ; + fun Chemical_OilTankerShip_Class : SubClass Chemical_OilTankerShip ChemicalTankerShip ; + + fun ChiefSteward : Ind Position ; + + -- ClassIIIRailroad is the + -- subclass of RailroadCompany whose instances have an + -- average annual gross revenue below 20.5 million + -- UnitedStatesDollars. + fun ClassIIIRailroad : Class ; + fun ClassIIIRailroad_Class : SubClass ClassIIIRailroad RailroadCompany ; + + -- ClassIIRailroad is the + -- subclass of RailroadCompany whose instances have an + -- average annual gross revenue between 20.5 and 256.4 million + -- UnitedStatesDollars. + fun ClassIIRailroad : Class ; + fun ClassIIRailroad_Class : SubClass ClassIIRailroad RailroadCompany ; + + -- ClassIRailroad is the + -- subclass of RailroadCompany whose instances have an + -- average annual gross revenue above 256.4 million + -- UnitedStatesDollars. + fun ClassIRailroad : Class ; + fun ClassIRailroad_Class : SubClass ClassIRailroad RailroadCompany ; + + fun CombinationBulkCarrierShip : Class ; + fun CombinationBulkCarrierShip_Class : SubClass CombinationBulkCarrierShip CargoShip ; + + fun CombinationBulk_OilCarrierShip : Class ; + fun CombinationBulk_OilCarrierShip_Class : SubClass CombinationBulk_OilCarrierShip CombinationBulkCarrierShip ; + + fun CombinationOre_OilCarrierShip : Class ; + fun CombinationOre_OilCarrierShip_Class : SubClass CombinationOre_OilCarrierShip CombinationBulkCarrierShip ; + + -- CommonCarrier is the subclass of + -- TransportationCompany whose instances must offer services to all + -- customers. Contrast with ContractCarrier. + fun CommonCarrier : Class ; + fun CommonCarrier_Class : SubClass CommonCarrier TransportationCompany ; + + fun ContainerPort : Class ; + fun ContainerPort_Class : SubClass ContainerPort PortCity ; + + fun ContainerShip : Class ; + fun ContainerShip_Class : SubClass ContainerShip CargoShip ; + + fun Container_RoRoCargoShip : Class ; + fun Container_RoRoCargoShip_Class : SubClass Container_RoRoCargoShip RollOnRollOffCargoShip ; + + -- ContractCarrier is the subclass of + -- TransportationCompany whose instances offer services to only one + -- customer, under contract. Contrast with CommonCarrier. + fun ContractCarrier : Class ; + fun ContractCarrier_Class : SubClass ContractCarrier TransportationCompany ; + + fun CraneShip : Class ; + fun CraneShip_Class : SubClass CraneShip Ship ; + + -- CrewDormCars are Railcars used for + -- housing the employee staff on long_distance trains. + fun CrewDormCar : Class ; + fun CrewDormCar_Class : SubClass CrewDormCar PassengerRailcar ; + + -- CrudeOilPipeline is the subclass of + -- Pipelines that are used to carry CrudeOil. + fun CrudeOilPipeline : Class ; + fun CrudeOilPipeline_Class : SubClass CrudeOilPipeline Pipeline ; + + -- CruiseShip is the subclass of + -- PassengerShips designed for the purpose of carrying passengers + -- on extended trips. + fun CruiseShip : Class ; + fun CruiseShip_Class : SubClass CruiseShip PassengerShip ; + + -- CubicFoot is a unit for measuring volume, + -- equal to a volume of one foot length in each dimension of length, width, + -- and height. + fun CubicFoot : Ind UnitOfVolume ; + + -- Cycle is a class of wheeled, pedal_driven + -- UserPoweredVehicles that are designed to be ridden on roads or trails. + fun Cycle : Class ; + fun Cycle_Class : SubClass Cycle (both AgentPoweredVehicle LandVehicle) ; + + -- Dam is the subclass of StationaryArtifacts that + -- are walls built across a stream or river to hold back water. + fun Dam : Class ; + fun Dam_Class : SubClass Dam (both TransitwayObstacle StationaryArtifact) ; + + fun DeckCargoShip : Class ; + fun DeckCargoShip_Class : SubClass DeckCargoShip GeneralCargoShip ; + + -- DeepDraftHarbor is the subclass + -- of Harbors that have a waterDepth sufficient to accommodate + -- vessels of a ladenDraft of 45 feet (13.7 meters) or greater. + fun DeepDraftHarbor : Class ; + fun DeepDraftHarbor_Class : SubClass DeepDraftHarbor Harbor ; + + fun DeepDraftPort : Class ; + fun DeepDraftPort_Class : SubClass DeepDraftPort PortCity ; + + -- DeepwaterPort is the subclass of + -- PortFacility whose instances meet the criteria defined under 33 U.S.C. section 1502(1) as 'any fixed or floating man_made structures other than + -- a vessel, or any group of such structures, located beyond the territorial + -- sea and off the coast of the United States and which are used or intended + -- for use as a port or terminal for the loading or unloading and further + -- handling of oil for transportation to any State.... The term includes all associated components and equipment including pipelines, pumping stations, service platforms, mooring buoys, and similar appurtenances to the extent + -- they are located seaward of the high water mark.' + fun DeepwaterPort : Class ; + fun DeepwaterPort_Class : SubClass DeepwaterPort PortFacility ; + + fun Door_TransitwayObstacle : SubClass Door TransitwayObstacle ; + + fun Drawbridge : Class ; + fun Drawbridge_Class : SubClass Drawbridge MovableBridge ; + + fun Dredger : Class ; + fun Dredger_Class : SubClass Dredger Ship ; + + fun DrillingShip : Class ; + fun DrillingShip_Class : SubClass DrillingShip Ship ; + + fun DryBulkCarrierShip : Class ; + fun DryBulkCarrierShip_Class : SubClass DryBulkCarrierShip CargoShip ; + + -- DualGauge is the attribute of + -- any Railway that has three parallel rails, thus allowing + -- two different gauges of rolling stock to travel over it. + fun DualGauge : Ind TrackGauge ; + + fun DualGaugeRail : Ind RailGauge ; + + fun DualGaugeRailway : Class ; + fun DualGaugeRailway_Class : SubClass DualGaugeRailway Railway ; + + -- ElectrifiedRailway is the subclass + -- of Railway representing electrified railways. + fun ElectrifiedRailway : Class ; + fun ElectrifiedRailway_Class : SubClass ElectrifiedRailway Railway ; + + -- EmergencyRoadVehicle is the + -- subclass of EmergencyVehicle that includes RoadVehicles designed + -- for special use in emergencies, e.g., Ambulances, FireEngines. + fun EmergencyRoadVehicle : Class ; + fun EmergencyRoadVehicle_Class : SubClass EmergencyRoadVehicle (both EmergencyVehicle (both PoweredVehicle RoadVehicle)) ; + + -- EmergencyVehicle is the subclass of + -- Vehicles that are used for special_purpose emergency response. + fun EmergencyVehicle : Class ; + fun EmergencyVehicle_Class : SubClass EmergencyVehicle PoweredVehicle ; + + -- Expressway is the subclass of + -- SurfacedRoadways that are multiple_lane, limited_access highways + -- designed for rapid travel by MotorVehicles. + fun Expressway : Class ; + fun Expressway_Class : SubClass Expressway SurfacedRoadway ; + + fun FerryBoat : Class ; + fun FerryBoat_Class : SubClass FerryBoat WaterVehicle ; + + fun FireBoat : Class ; + fun FireBoat_Class : SubClass FireBoat WaterVehicle ; + + -- FireEngine is the subclass of + -- EmergencyRoadVehicles that represents the various vehicles + -- used by a fire department in fighting fires. + fun FireEngine : Class ; + fun FireEngine_Class : SubClass FireEngine EmergencyRoadVehicle ; + + fun FirstMate : Ind Position ; + + fun FishCarrierShip : Class ; + fun FishCarrierShip_Class : SubClass FishCarrierShip FishingShip ; + + fun FishFactoryShip : Class ; + fun FishFactoryShip_Class : SubClass FishFactoryShip FishingShip ; + + fun FishingShip : Class ; + fun FishingShip_Class : SubClass FishingShip WaterVehicle ; + + fun FishingVessel : Class ; + fun FishingVessel_Class : SubClass FishingVessel FishingShip ; + + -- FiveWellStackCars are five_unit + -- that carry double_stacked containers. + fun FiveWellStackCar : Class ; + fun FiveWellStackCar_Class : SubClass FiveWellStackCar FreightCar ; + + fun FixedBridge : Class ; + fun FixedBridge_Class : SubClass FixedBridge (both Bridge StationaryArtifact) ; + + -- FlagOfConvenienceRegister is the subclass of ShipRegisters + -- in which most of the registered ships are owned outside of the + -- GeopoliticalArea to which the registry belongs. + -- InternalShipRegisters and OffshoreShipRegisters both may act as + -- FlagOfConvenienceRegisters, if permitted by the maritime + -- regulations of the registry owner. + fun FlagOfConvenienceRegister : Class ; + fun FlagOfConvenienceRegister_Class : SubClass FlagOfConvenienceRegister ShipRegister ; + + -- Flatcars are Freightcars without sides or roofs. + fun Flatcar : Class ; + fun Flatcar_Class : SubClass Flatcar (both FreightCar OpenTopRailcar) ; + + -- A train car that is designed to + -- carry freight, and not Humans. + fun FreightCar : Class ; + fun FreightCar_Class : SubClass FreightCar RollingStock ; + + -- GalleryCars are double_decked passenger + -- cars that have a viewing area on the second floor. + fun GalleryCar : Class ; + fun GalleryCar_Class : SubClass GalleryCar PassengerRailcar ; + + fun GeneralCargoShip : Class ; + fun GeneralCargoShip_Class : SubClass GeneralCargoShip CargoShip ; + + fun GliderPlane : Class ; + fun GliderPlane_Class : SubClass GliderPlane (both Aircraft UnpoweredVehicle) ; + + -- Harbor is the subclass of WaterAreas that + -- provide shelter and anchorage for WaterVehicle. + fun Harbor : Class ; + fun Harbor_Class : SubClass Harbor (both WaterArea Waterway) ; + + -- HeadEndCars are Railcars that were + -- typically placed at the front of the train, including mail and + -- baggage cars. + fun HeadEndCar : Class ; + fun HeadEndCar_Class : SubClass HeadEndCar RollingStock ; + + -- Heliport is a TransitTerminal designed + -- for the takeoff and landing of Helicopters. + fun Heliport : Class ; + fun Heliport_Class : SubClass Heliport TransitTerminal ; + + fun HomeGarage : Class ; + fun HomeGarage_Class : SubClass HomeGarage Building ; + + fun HopperDredger : Class ; + fun HopperDredger_Class : SubClass HopperDredger Dredger ; + + -- HydraCushionFreightCars are FreightCars with hydraulic underframes to cushion their loads. + fun HydraCushionFreightCar : Class ; + fun HydraCushionFreightCar_Class : SubClass HydraCushionFreightCar FreightCar ; + + fun IceBreakerShip : Class ; + fun IceBreakerShip_Class : SubClass IceBreakerShip Ship ; + + -- IntermodalTrip is the class of + -- trips in which more than one mode (road, rail, sea, or air) of + -- Transportation is used. That is, there are at least two + -- subProcesses of the trip that use different modes of + -- TransportationDevice. + fun IntermodalTrip : Class ; + fun IntermodalTrip_Class : SubClass IntermodalTrip Trip ; + + -- InternalShipRegister is + -- a subset of a NationalShipRegister. Ships on an internal + -- register fly the same flag as on the national register but are + -- subject to different taxation and crewing rules, which are + -- typically more lenient. An internal register may function + -- primarily as a FlagOfConvenienceRegister. + fun InternalShipRegister : Class ; + fun InternalShipRegister_Class : SubClass InternalShipRegister ShipRegister ; + + fun JetAirplane : Class ; + fun JetAirplane_Class : SubClass JetAirplane Airplane ; + + fun Kayak : Class ; + fun Kayak_Class : SubClass Kayak (both AgentPoweredVehicle WaterVehicle) ; + + fun Lane : Class ; + fun Lane_Class : SubClass Lane Roadway ; + + fun LightTruck : Class ; + fun LightTruck_Class : SubClass LightTruck Truck ; + + fun LiquefiedGasTankerShip : Class ; + fun LiquefiedGasTankerShip_Class : SubClass LiquefiedGasTankerShip CargoShip ; + + fun LiquefiedGas_ChemicalTankerShip : Class ; + fun LiquefiedGas_ChemicalTankerShip_Class : SubClass LiquefiedGas_ChemicalTankerShip LiquefiedGasTankerShip ; + + fun LivestockCarrierShip : Class ; + fun LivestockCarrierShip_Class : SubClass LivestockCarrierShip CargoShip ; + + -- An individual rail vehicle, i.e. a + -- RollingStock which is also a PoweredVehicle. Modern + -- locomotives are typically diesel or electric powered, while + -- older locomotives ran on Coal. + fun Locomotive : Class ; + fun Locomotive_Class : SubClass Locomotive (both PoweredVehicle RollingStock) ; + + -- LocomotiveCoalCars are Railcars put directly behind the Locomotive and used for + -- carrying fuel coal for the engine. + fun LocomotiveCoalCar : Class ; + fun LocomotiveCoalCar_Class : SubClass LocomotiveCoalCar RollingStock ; + + -- LongRunwayAirport is a CIA category for Airports whose longest runway has a length between + -- 2,438 meters and 3,047 meters, inclusive. + fun LongRunwayAirport : Ind CIAAirportLengthClassification ; + + -- LongTon is the UnitOfMeasure, equal to 2,240 PoundMass, which is used to measure Dead Weight + -- Tonnage capacity of Ships. + fun LongTon : Ind UnitOfMass ; + + -- ManufacturedProduct is + -- the subclass of Product that includes goods that are produced + -- or assembled in factories or other manufacturing processes, + -- in contrast to AgriculturalProducts. + fun ManufacturedProduct : Class ; + fun ManufacturedProduct_Class : SubClass ManufacturedProduct Product ; + + -- MediumLengthRunwayAirport is a CIA + -- category for Airports whose longest runway has a length between + -- 1,524 meters and 2,437 meters, inclusive. + fun MediumLengthRunwayAirport : Ind CIAAirportLengthClassification ; + + -- MerchantMarine is a class of + -- Collections of Ships, each collection belonging to a particular + -- Nation or GeopoliticalArea, in whose ShipRegister the member + -- ships are enrolled. For example, the merchant marine of France. + fun MerchantMarine : Class ; + fun MerchantMarine_Class : SubClass MerchantMarine Collection ; + + -- (MerchantMarineFn ?AREA) denotes + -- the Collection of all commercial ships registered in the + -- ShipRegister of the GeopoliticalArea ?AREA. + fun MerchantMarineFn : El GeopoliticalArea -> Ind MerchantMarine ; + + -- MerchantMarineShip is the class + -- of Ships that carry goods or passengers in exchange for payment. + -- This excludes military ships, as well as working ships such as tugboats + -- and fishing vessels. Merchant Marine ships belong to the + -- MerchantMarine of some country and are registered in the related + -- ShipRegister. + fun MerchantMarineShip : Class ; + fun MerchantMarineShip_Class : SubClass MerchantMarineShip Ship ; + + fun MotorHopper : Class ; + fun MotorHopper_Class : SubClass MotorHopper Ship ; + + -- MotorRailcars are PassengerRailcars + -- that carry their own power source. + fun MotorRailcar : Class ; + fun MotorRailcar_Class : SubClass MotorRailcar (both PassengerRailcar PoweredVehicle) ; + + fun MotorScooter : Class ; + fun MotorScooter_Class : SubClass MotorScooter RoadVehicle ; + + fun MovableBridge : Class ; + fun MovableBridge_Class : SubClass MovableBridge Bridge ; + + -- MultiModalTransitSystem is + -- the class of TransitSystems that accommodate more than one type of + -- transportation device or method. + fun MultiModalTransitSystem : Class ; + fun MultiModalTransitSystem_Class : SubClass MultiModalTransitSystem TransitSystem ; + + fun MultifunctionalLargeLoadCarrierShip : Class ; + fun MultifunctionalLargeLoadCarrierShip_Class : SubClass MultifunctionalLargeLoadCarrierShip CargoShip ; + + fun MultihullWaterVehicle : Class ; + fun MultihullWaterVehicle_Class : SubClass MultihullWaterVehicle WaterVehicle ; + + -- MultipleTrackRailway is the + -- subclass of Railway whose instances consists of two or more sets of + -- tracks running in parallel, allowing motion in both directions along + -- a route without the need for sidings and delays. + fun MultipleTrackRailway : Class ; + fun MultipleTrackRailway_Class : SubClass MultipleTrackRailway Railway ; + + -- NarrowGauge is the attribute + -- of any Railway that has a TrackGauge narrower than + -- StandardGauge. There are several common track widths + -- among NarrowGauge railways. + fun NarrowGauge : Ind TrackGauge ; + + fun NarrowGaugeRail : Ind RailGauge ; + + fun NarrowGaugeRailway : Class ; + fun NarrowGaugeRailway_Class : SubClass NarrowGaugeRailway Railway ; + + -- A NationalShipRegister + -- is a record of the Ships that are officially registered with + -- a particular Nation, including their tonnage and ownership. + fun NationalShipRegister : Class ; + fun NationalShipRegister_Class : SubClass NationalShipRegister ShipRegister ; + + -- NaturalGasPipeline is the subclass + -- of Pipelines that are used to carry NaturalGas. + fun NaturalGasPipeline : Class ; + fun NaturalGasPipeline_Class : SubClass NaturalGasPipeline Pipeline ; + + -- NorthernSeaRoute represents the + -- seasonal waterway in the ArcticOcean adjacent to Russia and Norway. + fun NorthernSeaRoute : Ind Waterway ; + + -- NorthwestPassage represents the seasonal waterway in + -- the ArcticOcean adjacent to Canada and the UnitedStates. + fun NorthwestPassage : Ind Waterway ; + + -- OceanLiner is the subclass of Ships + -- that make regularly scheduled voyages to transport people and goods + -- from one place to another. + fun OceanLiner : Class ; + fun OceanLiner_Class : SubClass OceanLiner (both CargoShip PassengerShip) ; + + -- OffshoreAnchorage is the subclass + -- of Anchorages that are located offshore and not within a Harbor. + fun OffshoreAnchorage : Class ; + fun OffshoreAnchorage_Class : SubClass OffshoreAnchorage Anchorage ; + + -- OffshoreShipRegister is + -- the class of ShipRegisters maintained by a colony, territory, or + -- possession (OffshoreArea) of a nation. Typically such a register has more lenient maritime + -- regulations with respect to taxation and crewing of ships than does + -- the national register associated with the country of which the + -- offshore area is a dependency. + fun OffshoreShipRegister : Class ; + fun OffshoreShipRegister_Class : SubClass OffshoreShipRegister ShipRegister ; + + fun OffshoreSupplyShip : Class ; + fun OffshoreSupplyShip_Class : SubClass OffshoreSupplyShip Ship ; + + fun OffshoreSupportShip : Class ; + fun OffshoreSupportShip_Class : SubClass OffshoreSupportShip Ship ; + + fun OffshoreWellProductionShip : Class ; + fun OffshoreWellProductionShip_Class : SubClass OffshoreWellProductionShip Ship ; + + -- OpenTopRailcars are FreightCars + -- that have no roof. They may have sides or not. + fun OpenTopRailcar : Class ; + fun OpenTopRailcar_Class : SubClass OpenTopRailcar FreightCar ; + + -- (OperatingFn ?DEVICE) denotes the class + -- of events in which a Device of type ?device is operated. + fun OperatingFn: El Device -> Desc Process ; + + fun OreCarrierShip : Class ; + fun OreCarrierShip_Class : SubClass OreCarrierShip DryBulkCarrierShip ; + + -- OutfitCars are Railcars used for housing + -- railway construction or maintenance workers in the field. Also called + -- 'Camp Cars'. + fun OutfitCar : Class ; + fun OutfitCar_Class : SubClass OutfitCar RollingStock ; + + fun PCCCar : Class ; + fun PCCCar_Class : SubClass PCCCar Streetcar ; + + fun PalletizedCargoShip : Class ; + fun PalletizedCargoShip_Class : SubClass PalletizedCargoShip GeneralCargoShip ; + + fun ParkingGarage : Class ; + fun ParkingGarage_Class : SubClass ParkingGarage Building ; + + fun PassengerAndCargoShip : Class ; + fun PassengerAndCargoShip_Class : SubClass PassengerAndCargoShip (both CargoShip PassengerShip) ; + + -- A train car that is designed to + -- carry Humans. + fun PassengerRailcar : Class ; + fun PassengerRailcar_Class : SubClass PassengerRailcar (both PassengerVehicle RollingStock) ; + + -- PassengerShip is the subclass of + -- WaterVehicle designed for the purpose of carrying passengers. + fun PassengerShip : Class ; + fun PassengerShip_Class : SubClass PassengerShip Ship ; + + fun Passenger_LandingCraft : Class ; + fun Passenger_LandingCraft_Class : SubClass Passenger_LandingCraft (both PassengerAndCargoShip RollOnRollOffCargoShip) ; + + fun Paved : Ind Attribute ; + + -- PavedRunway is the subclass of Runways + -- that are surfaced with concrete or asphalt. + fun PavedRunway : Class ; + fun PavedRunway_Class : SubClass PavedRunway Runway ; + + -- PersonalWatercraft is the class + -- of motor_driven WaterVehicle ridden by one or more passengers, e.g., + -- a JetSki. + fun PersonalWatercraft : Class ; + fun PersonalWatercraft_Class : SubClass PersonalWatercraft WaterVehicle ; + + -- PetroleumProductPipeline is the subclass of Pipelines that are + -- used to carry PetroleumProducts. + fun PetroleumProductPipeline : Class ; + fun PetroleumProductPipeline_Class : SubClass PetroleumProductPipeline Pipeline ; + + fun PetroleumTankerShip : Class ; + fun PetroleumTankerShip_Class : SubClass PetroleumTankerShip CargoShip ; + + -- PlaningHullWaterVehicle is a subclass + -- of WaterVehicle with hulls designed for a position partially on or above + -- the water surface when they are in motion, in order to reduce drag. See + -- also DisplacementHullWaterVehicle. + fun PlaningHullWaterVehicle : Class ; + fun PlaningHullWaterVehicle_Class : SubClass PlaningHullWaterVehicle WaterVehicle ; + + fun PontoonBridge : Class ; + fun PontoonBridge_Class : SubClass PontoonBridge MovableBridge ; + + -- PortCity is the subclass of City whose + -- instances are cities or towns located adjacent to a Harbor, which is + -- included in the administrative area of the city. + fun PortCity : Class ; + fun PortCity_Class : SubClass PortCity City ; + + -- PortFacility is the class of port + -- complexes, including piers and docking space, moorings, cargo_handling + -- and other support facilities for marine traffic. Ships are loaded and + -- unloaded at a PortFacility. + fun PortFacility : Class ; + fun PortFacility_Class : SubClass PortFacility GeopoliticalArea ; + + -- (PortFacilityFn ?CITY) denotes the + -- PortFacility, including mooring areas, docking space, and on_land + -- support facilities for marine traffic, of the Port ?CITY, considered + -- as a whole. + fun PortFacilityFn : El PortCity -> Ind PortFacility ; + + fun PrivateRailcar : Class ; + fun PrivateRailcar_Class : SubClass PrivateRailcar RollingStock ; + + fun PropellerJet : Class ; + fun PropellerJet_Class : SubClass PropellerJet Airplane ; + + fun PropellerPlane : Class ; + fun PropellerPlane_Class : SubClass PropellerPlane Airplane ; + + fun PusherTug : Class ; + fun PusherTug_Class : SubClass PusherTug TugBoat ; + + fun RadioOperator : Ind Position ; + + -- RailCarrierControl is the process of + -- controlling the speed or direction of a train by sending high or + -- low frequency currents on the rails. + fun RailCarrierControl : Class ; + fun RailCarrierControl_Class : SubClass RailCarrierControl Guiding ; + + fun RailGauge : Class ; + fun RailGauge_Class : SubClass RailGauge InternalAttribute ; + + -- RailJunction is the subclass of + -- TransitwayJunctions where two or more Railway lines come together. + fun RailJunction : Class ; + fun RailJunction_Class : SubClass RailJunction (both Railway TransitwayJunction) ; + + -- Railcar is the subclass of RollingStock that + -- includes all non_locomotive, non_self_powered RailVehicles. + fun Railcar : Class ; + fun Railcar_Class : SubClass Railcar RollingStock ; + + fun RailcarCarrierShip : Class ; + fun RailcarCarrierShip_Class : SubClass RailcarCarrierShip RollOnRollOffCargoShip ; + + -- RailroadTrack is the class of + -- StationaryArtifacts consisting of rails laid on supports to form + -- a track for railway vehicles. + fun RailroadTrack : Class ; + fun RailroadTrack_Class : SubClass RailroadTrack StationaryArtifact ; + + -- Railway is the subclass of + -- LandTransitways that have rails along which Trains may travel. + -- A railway consists of the rail bed, sleepers, tracks, electric + -- rails, switches, sensors, lights, crossing grades, and any other + -- integral machinery or parts of a section of railway. + fun Railway : Class ; + fun Railway_Class : SubClass Railway (both LandTransitway StationaryArtifact) ; + + -- RailwayTerminal is the subclass of + -- TransitTerminals designed for Trains. A RailwayTerminal includes + -- all the RailroadTrack and any outbuildings or other related structure + -- in the terminal, as well as the TrainStation (if there is one). + fun RailwayTerminal : Class ; + fun RailwayTerminal_Class : SubClass RailwayTerminal TransitTerminal ; + + fun RefrigeratedCargoShip : Class ; + fun RefrigeratedCargoShip_Class : SubClass RefrigeratedCargoShip CargoShip ; + + fun RefrigeratorCar : Class ; + fun RefrigeratorCar_Class : SubClass RefrigeratorCar Boxcar ; + + -- RegistryTon is a unit of + -- measure used to represent the Gross Registered Tonnage (GRT) capacity + -- of Ships. GRT is based on a volume measure, with one RegistryTon + -- equal to a volume of 100 cubic feet. + fun RegistryTon : Ind UnitOfVolume ; + + fun ResearchShip : Class ; + fun ResearchShip_Class : SubClass ResearchShip Ship ; + + -- RiverPort is the subclass of PortCity + -- whose instances are port cities Adjacent to a navigable River. + fun RiverPort : Class ; + fun RiverPort_Class : SubClass RiverPort PortCity ; + + -- RoadJunction is the subclass of + -- TransitwayJunctions where two or more Roadways come together. + fun RoadJunction : Class ; + fun RoadJunction_Class : SubClass RoadJunction (both Roadway TransitwayJunction) ; + + fun RollOnRollOffCargoShip : Class ; + fun RollOnRollOffCargoShip_Class : SubClass RollOnRollOffCargoShip CargoShip ; + + fun RotaryDumpCar : Class ; + fun RotaryDumpCar_Class : SubClass RotaryDumpCar OpenTopRailcar ; + + fun Runabout : Class ; + fun Runabout_Class : SubClass Runabout WaterVehicle ; + + -- Runway is the class of Transitways that are + -- used for the takeoff and landing of Airplanes. Runways are + -- Transitways for an intermodal transit, which begins with a land transit + -- and ends with air transit, or vice versa. The Airspace immediately + -- above (and adjacent to) a Runway is an AirTransitway. + fun Runway : Class ; + fun Runway_Class : SubClass Runway LandTransitway ; + + fun Sailboat : Class ; + fun Sailboat_Class : SubClass Sailboat WaterVehicle ; + + -- ScaleTestCars are Railcars of + -- known weight used to test or calibrate track scales used for + -- weighing freight. + fun ScaleTestCar : Class ; + fun ScaleTestCar_Class : SubClass ScaleTestCar RollingStock ; + + fun Scooter : Class ; + fun Scooter_Class : SubClass Scooter (both AgentPoweredVehicle LandVehicle) ; + + fun SeaLane : Class ; + fun SeaLane_Class : SubClass SeaLane Waterway ; + + -- SeaPort is the subclass of PortCity whose instances are + -- port cities on or closely linked to a Sea or Ocean. + fun SeaPort : Class ; + fun SeaPort_Class : SubClass SeaPort PortCity ; + + fun SecondaryHighway : Class ; + fun SecondaryHighway_Class : SubClass SecondaryHighway Roadway ; + + fun SelfDischargingBulkCarrierShip : Class ; + fun SelfDischargingBulkCarrierShip_Class : SubClass SelfDischargingBulkCarrierShip DryBulkCarrierShip ; + + -- ShipBerth is the class of areas where + -- a Ship may be moored, whether at an Anchorage or dock. + fun ShipBerth : Class ; + fun ShipBerth_Class : SubClass ShipBerth WaterArea ; + + -- ShipBerthing is the class of + -- Translocation processes in which a vessel is brought to a + -- mooring, at dockside or anchorage. + fun ShipBerthing : Class ; + fun ShipBerthing_Class : SubClass ShipBerthing Translocation ; + + -- (ShipBerthingFn ?SHIP) denotes the + -- class of ShipBerthings of an individual WaterVehicle ?SHIP. + fun ShipBerthingFn: El Ship -> Desc ShipBerthing ; + + -- ShipCabin is the subclass of all + -- ShipCompartments for accommodating Humans aboard a ship. + fun ShipCabin : Class ; + fun ShipCabin_Class : SubClass ShipCabin ShipCompartment ; + + -- A ShipCompartment is any fully or + -- partly bounded section of a Ship. + fun ShipCompartment : Class ; + fun ShipCompartment_Class : SubClass ShipCompartment Artifact ; + + -- ShipContainer is the class of specialized + -- large containers designed for shipping goods aboard ContainerShips. + fun ShipContainer : Class ; + fun ShipContainer_Class : SubClass ShipContainer SelfConnectedObject ; + + -- A ShipCrew is an Organization of people + -- who operate a Ship, Plane, Train, or other transportation vehicle. + fun ShipCrew : Class ; + fun ShipCrew_Class : SubClass ShipCrew Organization ; + + -- (ShipCrewFn ?BOAT) denotes the + -- Organization consisting of the people charged with operating + -- the WaterVehicle ?BOAT. + fun ShipCrewFn : El WaterVehicle -> Ind Group ; + + -- ShipDeck is the class of decks on a ship, + -- considered as spaces or Regions in which passengers and crew work, + -- live, or ride, and/or in which machinery and cargo are stored on a + -- Ship. + fun ShipDeck : Class ; + fun ShipDeck_Class : SubClass ShipDeck Artifact ; + + -- A ShipRegister is a record of each Ship + -- and owner registered with the maritime authorities of a country or + -- possession, colony, or territory of a country. Ships on the + -- ShipRegister of a given region fly the flag of that region and are + -- subject to its maritime regulations and rules of taxation. + fun ShipRegister : Class ; + fun ShipRegister_Class : SubClass ShipRegister ContentBearingObject ; + + -- (ShipRegisterFn ?AREA) + -- denotes the ShipRegister of the Ships that fly the flag of + -- the GeopoliticalArea ?AREA. + fun ShipRegisterFn : El GeopoliticalArea -> Ind ShipRegister ; + + -- ShipRegistration is the official + -- document containing information about the ownership, size, and + -- flag state (flag of registry) of an individual Ship, as registered + -- in the ShipRegister maintained by the maritime authorities of a + -- particular Nation or OverseasArea of a nation. A ship flies the + -- flag of its registered nation or area, and the ship is subject to the + -- maritime regulations and rules of taxation of its flagState. + fun ShipRegistration : Class ; + fun ShipRegistration_Class : SubClass ShipRegistration ContentBearingObject ; + + fun ShippingChannel : Class ; + fun ShippingChannel_Class : SubClass ShippingChannel Waterway ; + + fun ShippingLane : Class ; + fun ShippingLane_Class : SubClass ShippingLane Waterway ; + + -- ShortRunwayAirport is a CIA + -- category for Airports whose longest runway has a length between 914 + -- meters and 1523 meters, inclusive. + fun ShortRunwayAirport : Ind CIAAirportLengthClassification ; + + fun ShortSeaPassengerShip : Class ; + fun ShortSeaPassengerShip_Class : SubClass ShortSeaPassengerShip PassengerShip ; + + fun SludgeDisposalVessel : Class ; + fun SludgeDisposalVessel_Class : SubClass SludgeDisposalVessel Ship ; + + fun SpecializedTankerShip : Class ; + fun SpecializedTankerShip_Class : SubClass SpecializedTankerShip CargoShip ; + + -- SpineCars are articulated Flatcars + -- used to carry trailers or containers. + fun SpineCar : Class ; + fun SpineCar_Class : SubClass SpineCar Flatcar ; + + -- StandardGauge is the attribute + -- of Railways having the standardized track width that is + -- used in North America and most Western European countries. + -- The standard is typically a distance of 4 ft., 8_1/2 inches + -- (1.44 meters). There is some variation within which usage is + -- compatible, e.g., 1.35 meters. Standard gauge originated in + -- England and was mandated by the U.S. Federal government for the + -- U.S. Transcontinental Railroad. It is also used in Canada, + -- Great Britain, and most of Western Europe (but not in Ireland, + -- or Spain and Portugal. + fun StandardGauge : Ind TrackGauge ; + + fun StandardGaugeRail : Ind RailGauge ; + + fun StandardGaugeRailway : Class ; + fun StandardGaugeRailway_Class : SubClass StandardGaugeRailway Railway ; + + fun Street : Class ; + fun Street_Class : SubClass Street Roadway ; + + fun Streetcar_RollingStock : SubClass Streetcar RollingStock ; + + -- SurfacedRoadway is the subclass of + -- Roadways that have been improved by covering them with a substance + -- to increase the hardness and smoothness of the surface. Covering + -- materials include pavement, concrete, asphalt, macadam, and gravel. + fun SurfacedRoadway : Class ; + fun SurfacedRoadway_Class : SubClass SurfacedRoadway Roadway ; + + -- TankCars are enclosed FreightCars used + -- to carry fluids. + fun TankCar : Class ; + fun TankCar_Class : SubClass TankCar FreightCar ; + + -- A TerminalBuilding is a Building + -- located at a TransitTerminal and used in connection with its + -- functions. + fun TerminalBuilding : Class ; + fun TerminalBuilding_Class : SubClass TerminalBuilding Building ; + + fun TollBooth : Class ; + fun TollBooth_Class : SubClass TollBooth Building ; + + -- TrackGauge is the collection of + -- attributes that characterize sections of railways, according + -- to the set distances between the two tracks of the Railway. + -- Precisely, the measurement of track gauge is the distance + -- between the inner vertical surfaces of the heads of the rails. + -- Track gauges include broad, dual, standard, and narrow gauges. + fun TrackGauge : Class ; + fun TrackGauge_Class : SubClass TrackGauge InternalAttribute ; + + fun TrafficLight : Class ; + fun TrafficLight_Class : SubClass TrafficLight Device ; + + fun Trail : Class ; + fun Trail_Class : SubClass Trail LandTransitway ; + + -- Any RoadVehicle that is also an UnpoweredVehicle, + -- and intended to be towed by a PoweredVehicle. + fun Trailer : Class ; + fun Trailer_Class : SubClass Trailer (both RoadVehicle UnpoweredVehicle) ; + + -- Train is the subclass of + -- TransportationDevice whose instances are linked sequences + -- of RollingStock. + fun Train : Class ; + fun Train_Class : SubClass Train (both Collection (both PoweredVehicle RailVehicle)) ; + + -- TrainStation is the subclass of + -- Buildings that are located at a RailwayTerminal and used in support + -- of its functions, especially for the handling of passengers and freight. + fun TrainStation : Class ; + fun TrainStation_Class : SubClass TrainStation (both TerminalBuilding TransitTerminal) ; + + -- (TransitFn ?WAY) denotes the class of + -- Translocations that consist of travelling along the Transitway ?WAY. + fun TransitFn: El Transitway -> Desc Translocation ; + + -- TransitRoute is the class of + -- Regions that are paths for Motion from one place to another. + fun TransitRoute : Class ; + fun TransitRoute_Class : SubClass TransitRoute Region ; + + -- TransitShelter is the class of + -- structures that provide shelter for passengers waiting at a + -- TransitStop. + fun TransitShelter : Class ; + fun TransitShelter_Class : SubClass TransitShelter Artifact ; + + -- TransitStop is the subclass of places + -- where a vehicle of a scheduled or common carrier makes a stop to + -- discharge or take on passengers or goods. + fun TransitStop : Class ; + fun TransitStop_Class : SubClass TransitStop Region ; + + -- A TransitTerminal is a place where + -- travellers or transportation devices begin or end their journeys, or + -- where passengers and/or goods may be transferred. At a terminal, + -- TransportationDevices may be received, assigned, sent out, or + -- stored. + fun TransitTerminal : Class ; + fun TransitTerminal_Class : SubClass TransitTerminal StationaryArtifact ; + + -- TransitwayJunction is the class of + -- regions where two or more Transitways meet and traffic may transfer + -- from one transitway to another. + fun TransitwayJunction : Class ; + fun TransitwayJunction_Class : SubClass TransitwayJunction Transitway ; + + -- TransitwayObstacle is the general class of Objects that + -- can act as obstacles to Motion along a Transitway. + fun TransitwayObstacle : Class ; + fun TransitwayObstacle_Class : SubClass TransitwayObstacle Object ; + + -- TransportationAuthority is the class of Organizations that are + -- responsible for one or more systems of transportation, usually within + -- a particular GeopoliticalArea. + fun TransportationAuthority : Class ; + fun TransportationAuthority_Class : SubClass TransportationAuthority Organization ; + + fun TransportationDevice_TransportationEquipment : SubClass TransportationDevice TransportationEquipment ; + + fun TransportationEquipment : Class ; + fun TransportationEquipment_Class : SubClass TransportationEquipment ManufacturedProduct ; + + -- (TransportationFn ?TYPE) denotes the subclass of Transportation + -- events in which a TransportationDevice of ?TYPE is the vehicle. + fun TransportationFn: Desc TransportationDevice -> Desc Transportation ; + + fun Trawler : Class ; + fun Trawler_Class : SubClass Trawler FishingShip ; + + -- Trip is the subclass of Motions along a + -- TransitRoute or Transitway. + fun Trip : Class ; + fun Trip_Class : SubClass Trip Motion ; + + -- (TripFn ?VEHICLE) denotes the subclass of Transportation + -- events in which a particular TransportationDevice ?VEHICLE is the + -- vehicle. Contrast this function with TransportationFn, which is + -- used to denote transportation events by a specific kind of vehicle. + fun TripFn: El Vehicle -> Desc Transportation ; + + fun TugBoat : Class ; + fun TugBoat_Class : SubClass TugBoat WaterVehicle ; + + -- Tunnel is a subclass of Transitways that + -- consist of a lengthwise enclosed Hole that allows for transit underground, + -- as through mountains, below a body of water, or beneath a city. + fun Tunnel : Class ; + fun Tunnel_Class : SubClass Tunnel (both LandTransitway StationaryArtifact) ; + + -- UniModalTransitSystem is + -- the class of TransitSystems that accommodate a single type of + -- transportation device or method. + fun UniModalTransitSystem : Class ; + fun UniModalTransitSystem_Class : SubClass UniModalTransitSystem TransitSystem ; + + fun Unpaved : Ind Attribute ; + + -- UnpavedRunways include Runways with + -- grass, dirt, sand, or gravel surfaces. Contrast with PavedRunway. + fun UnpavedRunway : Class ; + fun UnpavedRunway_Class : SubClass UnpavedRunway Runway ; + + -- A Vehicle that lacks a powerComponent. + -- It coasts like a glider or skateboard, thus deriving its power from the + -- potential energy of gravity, or by the power of its agent, as in a bicycle. + fun UnpoweredVehicle : Class ; + fun UnpoweredVehicle_Class : SubClass UnpoweredVehicle Vehicle ; + + -- UnsurfacedRoadway is the subclass + -- of Roadways that have natural, unimproved surfaces of dirt or sand. + fun UnsurfacedRoadway : Class ; + fun UnsurfacedRoadway_Class : SubClass UnsurfacedRoadway Roadway ; + + fun UreaCarrierShip : Class ; + fun UreaCarrierShip_Class : SubClass UreaCarrierShip DryBulkCarrierShip ; + + fun VehicleCarrierShip : Class ; + fun VehicleCarrierShip_Class : SubClass VehicleCarrierShip RollOnRollOffCargoShip ; + + -- VehicleRegistration is the class + -- of official documents containing information about a vehicle's ownership + -- and identifying characteristics, as required by the appropriate authority + -- for the type and location of individual vehicles. + fun VehicleRegistration : Class ; + fun VehicleRegistration_Class : SubClass VehicleRegistration ContentBearingObject ; + + -- VeryLongRunwayAirport is a CIA + -- category for Airports whose longest runway has a length greater + -- than 3,047 meters. + fun VeryLongRunwayAirport : Ind CIAAirportLengthClassification ; + + -- VeryShortRunwayAirport is a CIA + -- category for Airports whose longest runway is less than 914 meters long. + fun VeryShortRunwayAirport : Ind CIAAirportLengthClassification ; + + -- WaterJunction is the subclass of + -- TransitwayJunctions where two or more Waterways come together. + fun WaterJunction : Class ; + fun WaterJunction_Class : SubClass WaterJunction (both TransitwayJunction Waterway) ; + + fun WaterTransportationSystem : Class ; + fun WaterTransportationSystem_Class : SubClass WaterTransportationSystem TransitSystem ; + + -- Waterway is the class of navigable waters, + -- including Oceans, SeaLanes, Rivers, Canals, Lakes, and inland + -- bodies of water. + fun Waterway : Class ; + fun Waterway_Class : SubClass Waterway (both Transitway WaterArea) ; + + fun WoodChipsCarrierShip : Class ; + fun WoodChipsCarrierShip_Class : SubClass WoodChipsCarrierShip DryBulkCarrierShip ; + + -- (cargoType ?DEVICE ?TYPE) means that the + -- TransportationDevice ?DEVICE typically carries cargo of the kind ?TYPE. + fun cargoType: El TransportationDevice -> Desc Object -> Formula ; + + -- (fOCShipsByOrigin ?MM ?AREA ?COUNT) means that the + -- MerchantMarine ?MM has ?COUNT number of ships from the + -- GeopoliticalArea ?AREA in its ShipRegister, using it as + -- a FlagOfConvenience, although the owner of the ships is in + -- ?AREA. + fun fOCShipsByOrigin : El MerchantMarine -> El GeopoliticalArea -> El NonnegativeInteger -> Formula ; + + -- (flagState ?SHIP ?AREA) means that + -- the Ship ?SHIP is enrolled in the ShipRegister of the + -- GeopoliticalArea ?AREA and is subject to its maritime laws, + -- regulations for operation of the ship, and rules of taxation. + fun flagState : El WaterVehicle -> El GeopoliticalArea -> Formula ; + + -- (fleetDeadWeightTonnage ?FLEET ?AMOUNT) means that the Collection + -- of Ships ?FLEET has a total carrying capacity of ?AMOUNT in LongTons. + -- This is the total vesselDeadWeightTonnage of all the vessels combined. + -- Dead Weight Tonnage, or DWT, is the weight of cargo plus stores that a + -- vessel can carry when immersed to the proper load line. + fun fleetDeadWeightTonnage : El Collection -> El MassMeasure -> Formula ; + + -- (fleetGrossRegisteredTonnage ?FLEET ?AMOUNT) means that the + -- Collection of Ships ?FLEET has a total carrying capacity of ?AMOUNT + -- in RegistryTons. This is the total vesselGrossRegisteredTonnage of + -- all the vessels combined. Gross Registered Tonnage, or GRT, is the + -- capacity of a vessel calculated on an equivalence of 100 cubic feet of + -- sheltered area per ton. + fun fleetGrossRegisteredTonnage : El Collection -> El PhysicalQuantity -> Formula ; + + -- (ladenDraft ?SHIP ?AMOUNT) means that + -- the WaterVehicle ?SHIP requires a waterDepth of at least ?AMOUNT + -- to sail without running aground, when she is loaded at capacity. + fun ladenDraft : El WaterVehicle -> El LengthMeasure -> Formula ; + + -- (lengthOfBroadGaugeRailway ?AREA ?LENGTH) means that the sum length + -- of broad gauge railway routes in the GeographicArea ?AREA is the + -- LengthMeasure ?LENGTH. + fun lengthOfBroadGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfCrudeOilPipeline ?AREA ?AMOUNT) means that in the + -- GeograpicArea ?AREA there is the LengthMeasure ?AMOUNT of + -- CrudeOilPipeline. + fun lengthOfCrudeOilPipeline : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfDualGaugeRailway ?AREA ?LENGTH) means that the sum length + -- of dual gauge railway routes in the GeographicArea ?AREA is the + -- LengthMeasure ?LENGTH. + fun lengthOfDualGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfElectrifiedRailway ?AREA ?LENGTH) means that the sum + -- length of all ElectrifiedRailway routes in the GeographicArea + -- ?AREA is the LengthMeasure ?LENGTH. + fun lengthOfElectrifiedRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfExpresswaySystem ?AREA ?LENGTH) means that the total length + -- of Expressway in the GeographicArea ?AREA is ?LENGTH. + fun lengthOfExpresswaySystem : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfMultipleTrackRailway ?AREA ?LENGTH) means that the sum + -- length of all MultipleTrackRailway routes in the GeographicArea + -- ?AREA is the LengthMeasure ?LENGTH. + fun lengthOfMultipleTrackRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfNarrowGaugeRailway ?AREA ?LENGTH) means that the sum length + -- of narrow gauge railway routes in the GeographicArea ?AREA is the + -- LengthMeasure ?LENGTH. + fun lengthOfNarrowGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfNaturalGasPipeline ?AREA ?AMOUNT) means that in the + -- GeograpicArea ?AREA there is the LengthMeasure ?AMOUNT of + -- NaturalGasPipeline. + fun lengthOfNaturalGasPipeline : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfPavedHighway ?AREA ?LENGTH) means that the total length + -- of SurfacedRoadway in the GeographicArea ?AREA is ?LENGTH. + fun lengthOfPavedHighway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfPetroleumProductPipeline ?AREA ?AMOUNT) means that in the + -- GeograpicArea ?AREA there is the LengthMeasure ?AMOUNT of + -- PetroleumProductPipeline. + fun lengthOfPetroleumProductPipeline : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfStandardGaugeRailway ?AREA ?LENGTH) means that the sum length + -- of standard gauge railway routes in the GeographicArea ?AREA is the + -- LengthMeasure ?LENGTH. + fun lengthOfStandardGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfUnclassifiedGaugeRailway ?AREA ?LENGTH) means that the sum length + -- of railway routes in the GeographicArea ?AREA classified as something + -- other than broad, dual, narrow, or standard gauge is the LengthMeasure + -- ?LENGTH. + fun lengthOfUnclassifiedGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (lengthOfUnpavedHighway ?AREA ?LENGTH) means that the total length + -- of UnsurfacedRoadway in the GeographicArea ?AREA is ?LENGTH. + fun lengthOfUnpavedHighway : El GeographicArea -> El LengthMeasure -> Formula ; + + -- A relation between a MerchantMarine + -- and a ShipRegister which is a member of that MerchantMarine + fun marineInventory : El MerchantMarine -> El ShipRegister -> Formula ; + + -- (navigableForDraft ?WATERWAY ?DRAFT) means that the Waterway + -- ?WATERWAY can be transited by vessels up to the draft ?DRAFT. + fun navigableForDraft : El WaterArea -> El LengthMeasure -> Formula ; + + -- (navigableForShippingTonnage ?WATERWAY ?TONNAGE) means that the + -- Waterway ?WATERWAY can be transited by vessels up to the tonnage + -- ?TONNAGE (in Dead Weight Tonnage). + fun navigableForShippingTonnage : El WaterArea -> El PhysicalQuantity -> Formula ; + + -- (passengerCapacityMaxNumber ?TRANSPORT ?NUMBER) means that the + -- TransportationDevice ?TRANSPORT has a safe carrying capacity for ?NUMBER + -- of passengers. + fun passengerCapacityMaxNumber : El TransportationDevice -> El Number -> Formula ; + + -- (powerComponent ?GENERATOR ?THING) + -- means that the Device ?THING is the power source for the Artifact + -- ?THING. + fun powerComponent: El Device -> Desc Artifact -> Formula ; + + -- (routeBetween ?ROUTE ?FROM ?TO) means + -- that the Transitway ?ROUTE is a route between the place ?FROM and + -- the place ?TO. + fun routeBetween : El Transitway -> El Region -> El Region -> Formula ; + + -- (routeEnd ?REGION ?SYSTEM) means + -- that within the given ?SYSTEM the given ?REGION is connected to + -- only one other Region. + fun routeEnd : El Region -> El TransitSystem -> Formula ; + + fun routeStart : El Region -> El TransitSystem -> Formula ; + + -- The maximum speed under normal conditions + -- for a vehicle. For a RoadVehicle this would be on level ground, no headwind or + -- tailwind, 70 degrees F, standard recommended fuel etc. For an Aircraft this would + -- mean level flight out of ground effect. Because of the number of external factors + -- on top speed, all that can be said formally is that higher speeds are unlikely. + fun topSpeed : El Vehicle -> El FunctionQuantity -> Formula ; + + -- (totalFacilityTypeInArea ?AREA ?TYPE ?COUNT) means that in the + -- GeographicArea ?AREA there a total of ?COUNT number of facilities + -- of type ?TYPE. + fun totalFacilityTypeInArea : El GeographicArea -> Class -> El NonnegativeInteger -> Formula ; + + -- (totalLengthOfHighwaySystem ?AREA ?LENGTH) means that the total + -- length of the highway system in the GeographicArea ?AREA is ?LENGTH. + -- The figure includes both paved and unpaved roads. + fun totalLengthOfHighwaySystem : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (totalLengthOfRailwaySystem ?AREA ?LENGTH) means that the sum + -- length of all railway routes in the GeographicArea ?AREA + -- is the LengthMeasure ?LENGTH. + fun totalLengthOfRailwaySystem : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (totalLengthOfWaterways ?AREA ?LENGTH) means that the + -- total length of navigable Waterways in the GeographicArea ?AREA + -- is the LengthMeasure ?LENGTH. + fun totalLengthOfWaterways : El GeographicArea -> El LengthMeasure -> Formula ; + + -- (totalPipelineInArea ?AREA ?LENGTH) means that the GeopoliticalArea + -- ?AREA has ?LENGTH of Pipelines. + fun totalPipelineInArea : El GeographicArea -> El LengthMeasure -> Formula ; + + -- The distance between the two rails + -- of a Railway. + fun trackWidth : El Railway -> El LengthMeasure -> Formula ; + + -- (trafficableForTrafficType ?WAY ?TYPE) means that Objects of ?TYPE + -- can move along the Transitway ?WAY. + fun trafficableForTrafficType: El Object -> Desc SelfConnectedObject -> Formula ; + + -- (transitwayCapacityCount ?WAY ?TYPE ?NUMBER) means that the + -- Transitway ?WAY can accommodate a maximum of ?NUMBER items of ?TYPE + -- at any one time. + fun transitwayCapacityCount: El Transitway -> Desc SelfConnectedObject -> El NonnegativeInteger -> Formula ; + + -- (transitwayCapacityRate ?WAY ?TYPE ?RATE) means that the + -- Transitway WAY can transit items of ?TYPE at the maximum + -- FunctionQuantity ?RATE. For example, + -- (transitwayCapacityRate SFBayBridgeWestbound Automobile 500). + fun transitwayCapacityRate: El Transitway -> Desc SelfConnectedObject -> El FunctionQuantity -> Formula ; + + -- (vesselDeadWeightTonnage ?VESSEL ?AMOUNT) means that the + -- WaterVehicle ?VESSEL has a carrying capacity when fully loaded of + -- ?AMOUNT in LongTons. This is the Dead Weight Tonnage, or DWT, + -- of the vessel, which is the total weight of cargo plus stores + -- that the vessel can carry when immersed to the proper load line. + fun vesselDeadWeightTonnage : El WaterVehicle -> El MassMeasure -> Formula ; + + -- (vesselDisplacement ?VESSEL ?AMOUNT) means that the displacement + -- of WaterVehicle ?VESSEL is the PhysicalQuantity ?AMOUNT. The + -- displacement of a vessel may be measured in LongTons (Dead Weight + -- Tonnage, or DWT) or by volume (Gross Registered Tonnage, or GRT). + fun vesselDisplacement : El WaterVehicle -> El PhysicalQuantity -> Formula ; + + -- (vesselGrossRegisteredTonnage ?VESSEL ?AMOUNT) means that the + -- WaterVehicle ?VESSEL has a carrying capacity when fully loaded of + -- ?AMOUNT, where ?AMOUNT is the Gross Registered Tonnage (GRT) of the + -- vessel, which is based on the total sheltered volume of the vessel + -- measured in hundreds of cubic feet, and converted to gross tons + -- at an equivalence of 100 cubic feet per ton. + fun vesselGrossRegisteredTonnage : El WaterVehicle -> El PhysicalQuantity -> Formula ; - - --- A Vehicle which is powered by --- one or more of its passengers or driver, for example, a Bicycle. -fun AgentPoweredVehicle : Class ; -fun AgentPoweredVehicle_Class : SubClass AgentPoweredVehicle Vehicle ; - --- An AirRoute is a region of air space that --- can be travelled between points by an air TransportationDevice. -fun AirRoute : Class ; -fun AirRoute_Class : SubClass AirRoute TransitRoute ; - --- The subclass of Transitways that are through --- the EarthsAtmosphere. -fun AirTransitway : Class ; -fun AirTransitway_Class : SubClass AirTransitway Transitway ; - --- A MilitaryShip on which MilitaryAircraft can land --- and take off. -fun AircraftCarrier : Class ; -fun AircraftCarrier_Class : SubClass AircraftCarrier MilitaryShip ; - --- Airplane is the subclass of Aircraft that --- are fixed_wing aircraft which carry their own power sources. Airplane --- includes jet airplanes and propeller planes, but not gliders. -fun Airplane : Class ; -fun Airplane_Class : SubClass Airplane (both Aircraft PoweredVehicle) ; - - --- Airport is the subclass of TransitTerminals --- for Airplanes (fixed_wing Aircraft). -fun Airport : Class ; -fun Airport_Class : SubClass Airport (both AirTransitway (both LandTransitway TransitTerminal)) ; - - --- AirportByRunwaySurface is a --- subclass of AirportClassification attributes used to describe an --- airport according to the surface type of its longest runway. -fun AirportByRunwaySurface : Class ; -fun AirportByRunwaySurface_Class : SubClass AirportByRunwaySurface AirportClassification ; - --- AirportClassification --- is a class of Attributes for representing systems that categorize --- Airports according to some criteria. There are several such systems, --- including the International Civil Aviation Organization categories A to --- E, based on runway lengths, the Federal Aviation Administration system --- associated with airport functions, and the airport categorization by --- runway length used in the CIA World Fact Book. -fun AirportClassification : Class ; -fun AirportClassification_Class : SubClass AirportClassification RelationalAttribute ; - --- AirportWithPavedRunway is an --- AirportClassification attribute used to describe an airport whose --- longest runway is a PavedRunway. -fun AirportWithPavedRunway : Ind AirportByRunwaySurface ; - - --- AirportWithUnpavedRunway is --- an AirportClassification attribute used to describe an airport whose --- longest runway is an UnpavedRunway. -fun AirportWithUnpavedRunway : Ind AirportByRunwaySurface ; - - --- The class of Transitways used to transport Air --- to a location where it is absent or insufficient. -fun Airway : Class ; -fun Airway_Class : SubClass Airway Transitway ; - --- Ambulance is the subclass of --- EmergencyRoadVehicles that represents ambulances. -fun Ambulance : Class ; -fun Ambulance_Class : SubClass Ambulance EmergencyRoadVehicle ; - --- Anchorage is the subclass of WaterAreas --- where WaterVehicle may anchor with some shelter or safety. Anchorages --- may be inside a Harbor or offshore. -fun Anchorage : Class ; -fun Anchorage_Class : SubClass Anchorage WaterArea ; - -fun Barge : Class ; -fun Barge_Class : SubClass Barge WaterVehicle ; -fun BargeCarrierShip : Class ; -fun BargeCarrierShip_Class : SubClass BargeCarrierShip CargoShip ; --- Bicycle is a class of two_wheeled, --- UserPoweredVehicles. -fun Bicycle : Class ; -fun Bicycle_Class : SubClass Bicycle Cycle ; - --- Boxcar is the subclass of Railcars that are --- general_purpose closed cars for hauling freight. -fun Boxcar : Class ; -fun Boxcar_Class : SubClass Boxcar FreightCar ; - --- Bridge is the subclass of LandTransitways --- that are artifacts used for crossing water or air_filled gaps that --- could not be transited over a natural surface. -fun Bridge : Class ; -fun Bridge_Class : SubClass Bridge (both LandTransitway StationaryArtifact) ; - - --- BroadGauge is the attribute of --- any Railway that has a TrackGauge wider than StandardGauge. -fun BroadGauge : Ind TrackGauge ; - - -fun BroadGaugeRail : Ind RailGauge ; - -fun BroadGaugeRailway : Class ; -fun BroadGaugeRailway_Class : SubClass BroadGaugeRailway Railway ; -fun BulkCargoShip : Class ; -fun BulkCargoShip_Class : SubClass BulkCargoShip DryBulkCarrierShip ; -fun BusinessRailcar : Class ; -fun BusinessRailcar_Class : SubClass BusinessRailcar PassengerRailcar ; --- CIAAirportLengthClassification is a class of Attributes used to --- characterize Airports according to the length of their longest --- usable runway. -fun CIAAirportLengthClassification : Class ; -fun CIAAirportLengthClassification_Class : SubClass CIAAirportLengthClassification AirportClassification ; - --- CabCar is the class of passenger railcars --- that have an operating cab in one end of the from which train motion --- can be controlled in 'push' mode. A CabCar is placed on the --- opposite end of the train from the locomotive. -fun CabCar : Class ; -fun CabCar_Class : SubClass CabCar RollingStock ; - -fun CableShip : Class ; -fun CableShip_Class : SubClass CableShip Ship ; -fun CanalLock : Class ; -fun CanalLock_Class : SubClass CanalLock (both StationaryArtifact Waterway) ; - -fun CanalLockGate : Class ; -fun CanalLockGate_Class : SubClass CanalLockGate (both Device TransitwayObstacle) ; - -fun CanalSystem : Class ; -fun CanalSystem_Class : SubClass CanalSystem WaterTransportationSystem ; -fun Canoe : Class ; -fun Canoe_Class : SubClass Canoe (both AgentPoweredVehicle WaterVehicle) ; - --- CarDistributionSystem is the --- process of composing trains according to instructions or data. -fun CarDistributionSystem : Class ; -fun CarDistributionSystem_Class : SubClass CarDistributionSystem OrganizationalProcess ; - --- CargoShip is the subclass of Ships that --- transport goods in exchange for payment. CargoShip includes ships --- that carry all kinds of cargo, including oil and bulk products as well --- as packaged, palletized, or containerized goods. -fun CargoShip : Class ; -fun CargoShip_Class : SubClass CargoShip Ship ; - -fun Catamaran : Class ; -fun Catamaran_Class : SubClass Catamaran MultihullWaterVehicle ; -fun CementCarrierShip : Class ; -fun CementCarrierShip_Class : SubClass CementCarrierShip DryBulkCarrierShip ; --- A Channel is a narrow deep waterway connecting --- two larger bodies of water. May be natural or dredged, salt or fresh --- water. -fun Channel : Class ; -fun Channel_Class : SubClass Channel Waterway ; - --- ChemicalTankerShip is the --- subclass of ships that carry ChemicalProducts. -fun ChemicalTankerShip : Class ; -fun ChemicalTankerShip_Class : SubClass ChemicalTankerShip CargoShip ; - -fun Chemical_OilTankerShip : Class ; -fun Chemical_OilTankerShip_Class : SubClass Chemical_OilTankerShip ChemicalTankerShip ; -fun ChiefSteward : Ind Position ; - --- ClassIIIRailroad is the --- subclass of RailroadCompany whose instances have an --- average annual gross revenue below 20.5 million --- UnitedStatesDollars. -fun ClassIIIRailroad : Class ; -fun ClassIIIRailroad_Class : SubClass ClassIIIRailroad RailroadCompany ; - --- ClassIIRailroad is the --- subclass of RailroadCompany whose instances have an --- average annual gross revenue between 20.5 and 256.4 million --- UnitedStatesDollars. -fun ClassIIRailroad : Class ; -fun ClassIIRailroad_Class : SubClass ClassIIRailroad RailroadCompany ; - --- ClassIRailroad is the --- subclass of RailroadCompany whose instances have an --- average annual gross revenue above 256.4 million --- UnitedStatesDollars. -fun ClassIRailroad : Class ; -fun ClassIRailroad_Class : SubClass ClassIRailroad RailroadCompany ; - -fun CombinationBulkCarrierShip : Class ; -fun CombinationBulkCarrierShip_Class : SubClass CombinationBulkCarrierShip CargoShip ; -fun CombinationBulk_OilCarrierShip : Class ; -fun CombinationBulk_OilCarrierShip_Class : SubClass CombinationBulk_OilCarrierShip CombinationBulkCarrierShip ; -fun CombinationOre_OilCarrierShip : Class ; -fun CombinationOre_OilCarrierShip_Class : SubClass CombinationOre_OilCarrierShip CombinationBulkCarrierShip ; --- CommonCarrier is the subclass of --- TransportationCompany whose instances must offer services to all --- customers. Contrast with ContractCarrier. -fun CommonCarrier : Class ; -fun CommonCarrier_Class : SubClass CommonCarrier TransportationCompany ; - -fun ContainerPort : Class ; -fun ContainerPort_Class : SubClass ContainerPort PortCity ; -fun ContainerShip : Class ; -fun ContainerShip_Class : SubClass ContainerShip CargoShip ; -fun Container_RoRoCargoShip : Class ; -fun Container_RoRoCargoShip_Class : SubClass Container_RoRoCargoShip RollOnRollOffCargoShip ; --- ContractCarrier is the subclass of --- TransportationCompany whose instances offer services to only one --- customer, under contract. Contrast with CommonCarrier. -fun ContractCarrier : Class ; -fun ContractCarrier_Class : SubClass ContractCarrier TransportationCompany ; - -fun CraneShip : Class ; -fun CraneShip_Class : SubClass CraneShip Ship ; --- CrewDormCars are Railcars used for --- housing the employee staff on long_distance trains. -fun CrewDormCar : Class ; -fun CrewDormCar_Class : SubClass CrewDormCar PassengerRailcar ; - --- CrudeOilPipeline is the subclass of --- Pipelines that are used to carry CrudeOil. -fun CrudeOilPipeline : Class ; -fun CrudeOilPipeline_Class : SubClass CrudeOilPipeline Pipeline ; - --- CruiseShip is the subclass of --- PassengerShips designed for the purpose of carrying passengers --- on extended trips. -fun CruiseShip : Class ; -fun CruiseShip_Class : SubClass CruiseShip PassengerShip ; - --- CubicFoot is a unit for measuring volume, --- equal to a volume of one foot length in each dimension of length, width, --- and height. -fun CubicFoot : Ind UnitOfVolume ; - - --- Cycle is a class of wheeled, pedal_driven --- UserPoweredVehicles that are designed to be ridden on roads or trails. -fun Cycle : Class ; -fun Cycle_Class : SubClass Cycle (both AgentPoweredVehicle LandVehicle) ; - - --- Dam is the subclass of StationaryArtifacts that --- are walls built across a stream or river to hold back water. -fun Dam : Class ; -fun Dam_Class : SubClass Dam TransitwayObstacle ; - -fun DeckCargoShip : Class ; -fun DeckCargoShip_Class : SubClass DeckCargoShip GeneralCargoShip ; --- DeepDraftHarbor is the subclass --- of Harbors that have a waterDepth sufficient to accommodate --- vessels of a ladenDraft of 45 feet (13.7 meters) or greater. -fun DeepDraftHarbor : Class ; -fun DeepDraftHarbor_Class : SubClass DeepDraftHarbor Harbor ; - -fun DeepDraftPort : Class ; -fun DeepDraftPort_Class : SubClass DeepDraftPort PortCity ; --- DeepwaterPort is the subclass of --- PortFacility whose instances meet the criteria defined under 33 U.S.C. section 1502(1) as 'any fixed or floating man_made structures other than --- a vessel, or any group of such structures, located beyond the territorial --- sea and off the coast of the United States and which are used or intended --- for use as a port or terminal for the loading or unloading and further --- handling of oil for transportation to any State.... The term includes all associated components and equipment including pipelines, pumping stations, service platforms, mooring buoys, and similar appurtenances to the extent --- they are located seaward of the high water mark.' -fun DeepwaterPort : Class ; -fun DeepwaterPort_Class : SubClass DeepwaterPort PortFacility ; - -fun Door_Device : SubClass Door Device ; - -fun Door_TransitwayObstacle : SubClass Door TransitwayObstacle ; - -fun Drawbridge : Class ; -fun Drawbridge_Class : SubClass Drawbridge MovableBridge ; -fun Dredger : Class ; -fun Dredger_Class : SubClass Dredger Ship ; -fun DrillingShip : Class ; -fun DrillingShip_Class : SubClass DrillingShip Ship ; -fun DryBulkCarrierShip : Class ; -fun DryBulkCarrierShip_Class : SubClass DryBulkCarrierShip CargoShip ; --- DualGauge is the attribute of --- any Railway that has three parallel rails, thus allowing --- two different gauges of rolling stock to travel over it. -fun DualGauge : Ind TrackGauge ; - - -fun DualGaugeRail : Ind RailGauge ; - -fun DualGaugeRailway : Class ; -fun DualGaugeRailway_Class : SubClass DualGaugeRailway Railway ; --- ElectrifiedRailway is the subclass --- of Railway representing electrified railways. -fun ElectrifiedRailway : Class ; -fun ElectrifiedRailway_Class : SubClass ElectrifiedRailway Railway ; - --- EmergencyRoadVehicle is the --- subclass of EmergencyVehicle that includes RoadVehicles designed --- for special use in emergencies, e.g., Ambulances, FireEngines. -fun EmergencyRoadVehicle : Class ; -fun EmergencyRoadVehicle_Class : SubClass EmergencyRoadVehicle (both EmergencyVehicle (both PoweredVehicle RoadVehicle)) ; - - --- EmergencyVehicle is the subclass of --- Vehicles that are used for special_purpose emergency response. -fun EmergencyVehicle : Class ; -fun EmergencyVehicle_Class : SubClass EmergencyVehicle PoweredVehicle ; - --- Expressway is the subclass of --- SurfacedRoadways that are multiple_lane, limited_access highways --- designed for rapid travel by MotorVehicles. -fun Expressway : Class ; -fun Expressway_Class : SubClass Expressway SurfacedRoadway ; - -fun FerryBoat : Class ; -fun FerryBoat_Class : SubClass FerryBoat WaterVehicle ; -fun FireBoat : Class ; -fun FireBoat_Class : SubClass FireBoat WaterVehicle ; --- FireEngine is the subclass of --- EmergencyRoadVehicles that represents the various vehicles --- used by a fire department in fighting fires. -fun FireEngine : Class ; -fun FireEngine_Class : SubClass FireEngine EmergencyRoadVehicle ; - -fun FirstMate : Ind Position ; - -fun FishCarrierShip : Class ; -fun FishCarrierShip_Class : SubClass FishCarrierShip FishingShip ; -fun FishFactoryShip : Class ; -fun FishFactoryShip_Class : SubClass FishFactoryShip FishingShip ; -fun FishingShip : Class ; -fun FishingShip_Class : SubClass FishingShip WaterVehicle ; -fun FishingVessel : Class ; -fun FishingVessel_Class : SubClass FishingVessel FishingShip ; --- FiveWellStackCars are five_unit --- that carry double_stacked containers. -fun FiveWellStackCar : Class ; -fun FiveWellStackCar_Class : SubClass FiveWellStackCar FreightCar ; - -fun FixedBridge : Class ; -fun FixedBridge_Class : SubClass FixedBridge (both Bridge StationaryArtifact) ; - --- FlagOfConvenienceRegister is the subclass of ShipRegisters --- in which most of the registered ships are owned outside of the --- GeopoliticalArea to which the registry belongs. --- InternalShipRegisters and OffshoreShipRegisters both may act as --- FlagOfConvenienceRegisters, if permitted by the maritime --- regulations of the registry owner. -fun FlagOfConvenienceRegister : Class ; -fun FlagOfConvenienceRegister_Class : SubClass FlagOfConvenienceRegister ShipRegister ; - --- Flatcars are Freightcars without sides --- or roofs. -fun Flatcar : Class ; -fun Flatcar_Class : SubClass Flatcar (both FreightCar OpenTopRailcar) ; - - --- A train car that is designed to --- carry freight, and not Humans. -fun FreightCar : Class ; -fun FreightCar_Class : SubClass FreightCar RollingStock ; - --- GalleryCars are double_decked passenger --- cars that have a viewing area on the second floor. -fun GalleryCar : Class ; -fun GalleryCar_Class : SubClass GalleryCar PassengerRailcar ; - -fun GeneralCargoShip : Class ; -fun GeneralCargoShip_Class : SubClass GeneralCargoShip CargoShip ; -fun GliderPlane : Class ; -fun GliderPlane_Class : SubClass GliderPlane (both Aircraft UnpoweredVehicle) ; - --- Harbor is the subclass of WaterAreas that --- provide shelter and anchorage for WaterVehicle. -fun Harbor : Class ; -fun Harbor_Class : SubClass Harbor (both WaterArea Waterway) ; - - --- HeadEndCars are Railcars that were --- typically placed at the front of the train, including mail and --- baggage cars. -fun HeadEndCar : Class ; -fun HeadEndCar_Class : SubClass HeadEndCar RollingStock ; - --- Heliport is a TransitTerminal designed --- for the takeoff and landing of Helicopters. -fun Heliport : Class ; -fun Heliport_Class : SubClass Heliport TransitTerminal ; - -fun HomeGarage : Class ; -fun HomeGarage_Class : SubClass HomeGarage Building ; -fun HopperDredger : Class ; -fun HopperDredger_Class : SubClass HopperDredger Dredger ; --- HydraCushionFreightCars --- are FreightCars with hydraulic underframes to cushion their loads. -fun HydraCushionFreightCar : Class ; -fun HydraCushionFreightCar_Class : SubClass HydraCushionFreightCar FreightCar ; - -fun IceBreakerShip : Class ; -fun IceBreakerShip_Class : SubClass IceBreakerShip Ship ; --- IntermodalTrip is the class of --- trips in which more than one mode (road, rail, sea, or air) of --- Transportation is used. That is, there are at least two --- subProcesses of the trip that use different modes of --- TransportationDevice. -fun IntermodalTrip : Class ; -fun IntermodalTrip_Class : SubClass IntermodalTrip Trip ; - --- InternalShipRegister is --- a subset of a NationalShipRegister. Ships on an internal --- register fly the same flag as on the national register but are --- subject to different taxation and crewing rules, which are --- typically more lenient. An internal register may function --- primarily as a FlagOfConvenienceRegister. -fun InternalShipRegister : Class ; -fun InternalShipRegister_Class : SubClass InternalShipRegister ShipRegister ; - -fun JetAirplane : Class ; -fun JetAirplane_Class : SubClass JetAirplane Airplane ; -fun Kayak : Class ; -fun Kayak_Class : SubClass Kayak (both AgentPoweredVehicle WaterVehicle) ; - -fun Lane : Class ; -fun Lane_Class : SubClass Lane Roadway ; -fun LightTruck : Class ; -fun LightTruck_Class : SubClass LightTruck Truck ; -fun LiquefiedGasTankerShip : Class ; -fun LiquefiedGasTankerShip_Class : SubClass LiquefiedGasTankerShip CargoShip ; -fun LiquefiedGas_ChemicalTankerShip : Class ; -fun LiquefiedGas_ChemicalTankerShip_Class : SubClass LiquefiedGas_ChemicalTankerShip LiquefiedGasTankerShip ; -fun LivestockCarrierShip : Class ; -fun LivestockCarrierShip_Class : SubClass LivestockCarrierShip CargoShip ; --- An individual rail vehicle, i.e. a --- RollingStock which is also a PoweredVehicle. Modern --- locomotives are typically diesel or electric powered, while --- older locomotives ran on Coal. -fun Locomotive : Class ; -fun Locomotive_Class : SubClass Locomotive (both PoweredVehicle RollingStock) ; - - --- LocomotiveCoalCars are --- Railcars put directly behind the Locomotive and used for --- carrying fuel coal for the engine. -fun LocomotiveCoalCar : Class ; -fun LocomotiveCoalCar_Class : SubClass LocomotiveCoalCar RollingStock ; - --- LongRunwayAirport is a CIA --- category for Airports whose longest runway has a length between --- 2,438 meters and 3,047 meters, inclusive. -fun LongRunwayAirport : Ind CIAAirportLengthClassification ; - - --- LongTon is the UnitOfMeasure, --- equal to 2,240 PoundMass, which is used to measure Dead Weight --- Tonnage capacity of Ships. -fun LongTon : Ind UnitOfMass ; - - --- ManufacturedProduct is --- the subclass of Product that includes goods that are produced --- or assembled in factories or other manufacturing processes, --- in contrast to AgriculturalProducts. -fun ManufacturedProduct : Class ; -fun ManufacturedProduct_Class : SubClass ManufacturedProduct Product ; - --- MediumLengthRunwayAirport is a CIA --- category for Airports whose longest runway has a length between --- 1,524 meters and 2,437 meters, inclusive. -fun MediumLengthRunwayAirport : Ind CIAAirportLengthClassification ; - - --- MerchantMarine is a class of --- Collections of Ships, each collection belonging to a particular --- Nation or GeopoliticalArea, in whose ShipRegister the member --- ships are enrolled. For example, the merchant marine of France. -fun MerchantMarine : Class ; -fun MerchantMarine_Class : SubClass MerchantMarine Collection ; - --- (MerchantMarineFn ?AREA) denotes --- the Collection of all commercial ships registered in the --- ShipRegister of the GeopoliticalArea ?AREA. -fun MerchantMarineFn : El GeopoliticalArea -> Ind MerchantMarine ; - - --- MerchantMarineShip is the class --- of Ships that carry goods or passengers in exchange for payment. --- This excludes military ships, as well as working ships such as tugboats --- and fishing vessels. Merchant Marine ships belong to the --- MerchantMarine of some country and are registered in the related --- ShipRegister. -fun MerchantMarineShip : Class ; -fun MerchantMarineShip_Class : SubClass MerchantMarineShip Ship ; - -fun MotorHopper : Class ; -fun MotorHopper_Class : SubClass MotorHopper Ship ; --- MotorRailcars are PassengerRailcars --- that carry their own power source. -fun MotorRailcar : Class ; -fun MotorRailcar_Class : SubClass MotorRailcar (both PassengerRailcar PoweredVehicle) ; - - -fun MotorScooter : Class ; -fun MotorScooter_Class : SubClass MotorScooter RoadVehicle ; -fun Motorcycle_RoadVehicle : SubClass Motorcycle RoadVehicle ; - -fun MovableBridge : Class ; -fun MovableBridge_Class : SubClass MovableBridge Bridge ; --- MultiModalTransitSystem is --- the class of TransitSystems that accommodate more than one type of --- transportation device or method. -fun MultiModalTransitSystem : Class ; -fun MultiModalTransitSystem_Class : SubClass MultiModalTransitSystem TransitSystem ; - -fun MultifunctionalLargeLoadCarrierShip : Class ; -fun MultifunctionalLargeLoadCarrierShip_Class : SubClass MultifunctionalLargeLoadCarrierShip CargoShip ; -fun MultihullWaterVehicle : Class ; -fun MultihullWaterVehicle_Class : SubClass MultihullWaterVehicle WaterVehicle ; --- MultipleTrackRailway is the --- subclass of Railway whose instances consists of two or more sets of --- tracks running in parallel, allowing motion in both directions along --- a route without the need for sidings and delays. -fun MultipleTrackRailway : Class ; -fun MultipleTrackRailway_Class : SubClass MultipleTrackRailway Railway ; - --- NarrowGauge is the attribute --- of any Railway that has a TrackGauge narrower than --- StandardGauge. There are several common track widths --- among NarrowGauge railways. -fun NarrowGauge : Ind TrackGauge ; - - -fun NarrowGaugeRail : Ind RailGauge ; - -fun NarrowGaugeRailway : Class ; -fun NarrowGaugeRailway_Class : SubClass NarrowGaugeRailway Railway ; --- A NationalShipRegister --- is a record of the Ships that are officially registered with --- a particular Nation, including their tonnage and ownership. -fun NationalShipRegister : Class ; -fun NationalShipRegister_Class : SubClass NationalShipRegister ShipRegister ; - --- NaturalGasPipeline is the subclass --- of Pipelines that are used to carry NaturalGas. -fun NaturalGasPipeline : Class ; -fun NaturalGasPipeline_Class : SubClass NaturalGasPipeline Pipeline ; - --- NorthernSeaRoute represents the --- seasonal waterway in the ArcticOcean adjacent to Russia and --- Norway. -fun NorthernSeaRoute : Ind Waterway ; - - --- NorthwestPassage represents the --- seasonal waterway in the ArcticOcean adjacent to Canada and the --- UnitedStates. -fun NorthwestPassage : Ind Waterway ; - - --- OceanLiner is the subclass of Ships --- that make regularly scheduled voyages to transport people and goods --- from one place to another. -fun OceanLiner : Class ; -fun OceanLiner_Class : SubClass OceanLiner (both CargoShip PassengerShip) ; - - --- OffshoreAnchorage is the subclass --- of Anchorages that are located offshore and not within a Harbor. -fun OffshoreAnchorage : Class ; -fun OffshoreAnchorage_Class : SubClass OffshoreAnchorage Anchorage ; - --- OffshoreShipRegister is --- the class of ShipRegisters maintained by a colony, territory, or --- possession (OffshoreArea) of a nation. Typically such a register has more lenient maritime --- regulations with respect to taxation and crewing of ships than does --- the national register associated with the country of which the --- offshore area is a dependency. -fun OffshoreShipRegister : Class ; -fun OffshoreShipRegister_Class : SubClass OffshoreShipRegister ShipRegister ; - -fun OffshoreSupplyShip : Class ; -fun OffshoreSupplyShip_Class : SubClass OffshoreSupplyShip Ship ; -fun OffshoreSupportShip : Class ; -fun OffshoreSupportShip_Class : SubClass OffshoreSupportShip Ship ; -fun OffshoreWellProductionShip : Class ; -fun OffshoreWellProductionShip_Class : SubClass OffshoreWellProductionShip Ship ; --- OpenTopRailcars are FreightCars --- that have no roof. They may have sides or not. -fun OpenTopRailcar : Class ; -fun OpenTopRailcar_Class : SubClass OpenTopRailcar FreightCar ; - --- (OperatingFn ?DEVICE) denotes the class --- of events in which a Device of type ?device is operated. -fun OperatingFn: El Device -> Desc Process ; - - -fun OreCarrierShip : Class ; -fun OreCarrierShip_Class : SubClass OreCarrierShip DryBulkCarrierShip ; --- OutfitCars are Railcars used for housing --- railway construction or maintenance workers in the field. Also called --- 'Camp Cars'. -fun OutfitCar : Class ; -fun OutfitCar_Class : SubClass OutfitCar RollingStock ; - -fun PCCCar : Class ; -fun PCCCar_Class : SubClass PCCCar Streetcar ; -fun PalletizedCargoShip : Class ; -fun PalletizedCargoShip_Class : SubClass PalletizedCargoShip GeneralCargoShip ; -fun ParkingGarage : Class ; -fun ParkingGarage_Class : SubClass ParkingGarage Building ; -fun PassengerAndCargoShip : Class ; -fun PassengerAndCargoShip_Class : SubClass PassengerAndCargoShip (both CargoShip PassengerShip) ; - --- A train car that is designed to --- carry Humans. -fun PassengerRailcar : Class ; -fun PassengerRailcar_Class : SubClass PassengerRailcar (both PassengerVehicle RollingStock) ; - - --- PassengerShip is the subclass of --- WaterVehicle designed for the purpose of carrying passengers. -fun PassengerShip : Class ; -fun PassengerShip_Class : SubClass PassengerShip Ship ; - -fun PassengerVehicle_Vehicle : SubClass PassengerVehicle Vehicle ; - -fun Passenger_LandingCraft : Class ; -fun Passenger_LandingCraft_Class : SubClass Passenger_LandingCraft (both PassengerAndCargoShip RollOnRollOffCargoShip) ; - -fun Paved : Ind Attribute ; - --- PavedRunway is the subclass of Runways --- that are surfaced with concrete or asphalt. -fun PavedRunway : Class ; -fun PavedRunway_Class : SubClass PavedRunway Runway ; - --- PersonalWatercraft is the class --- of motor_driven WaterVehicle ridden by one or more passengers, e.g., --- a JetSki. -fun PersonalWatercraft : Class ; -fun PersonalWatercraft_Class : SubClass PersonalWatercraft WaterVehicle ; - --- PetroleumProductPipeline is the subclass of Pipelines that are --- used to carry PetroleumProducts. -fun PetroleumProductPipeline : Class ; -fun PetroleumProductPipeline_Class : SubClass PetroleumProductPipeline Pipeline ; - -fun PetroleumTankerShip : Class ; -fun PetroleumTankerShip_Class : SubClass PetroleumTankerShip CargoShip ; --- PlaningHullWaterVehicle is a subclass --- of WaterVehicle with hulls designed for a position partially on or above --- the water surface when they are in motion, in order to reduce drag. See --- also DisplacementHullWaterVehicle. -fun PlaningHullWaterVehicle : Class ; -fun PlaningHullWaterVehicle_Class : SubClass PlaningHullWaterVehicle WaterVehicle ; - -fun PontoonBridge : Class ; -fun PontoonBridge_Class : SubClass PontoonBridge MovableBridge ; --- PortCity is the subclass of City whose --- instances are cities or towns located adjacent to a Harbor, which is --- included in the administrative area of the city. -fun PortCity : Class ; -fun PortCity_Class : SubClass PortCity City ; - --- PortFacility is the class of port --- complexes, including piers and docking space, moorings, cargo_handling --- and other support facilities for marine traffic. Ships are loaded and --- unloaded at a PortFacility. -fun PortFacility : Class ; -fun PortFacility_Class : SubClass PortFacility GeopoliticalArea ; - --- (PortFacilityFn ?CITY) denotes the --- PortFacility, including mooring areas, docking space, and on_land --- support facilities for marine traffic, of the Port ?CITY, considered --- as a whole. -fun PortFacilityFn : El PortCity -> Ind PortFacility ; - - -fun PrivateRailcar : Class ; -fun PrivateRailcar_Class : SubClass PrivateRailcar RollingStock ; -fun PropellerJet : Class ; -fun PropellerJet_Class : SubClass PropellerJet Airplane ; -fun PropellerPlane : Class ; -fun PropellerPlane_Class : SubClass PropellerPlane Airplane ; -fun PusherTug : Class ; -fun PusherTug_Class : SubClass PusherTug TugBoat ; -fun RadioOperator : Ind Position ; - --- RailCarrierControl is the process of --- controlling the speed or direction of a train by sending high or --- low frequency currents on the rails. -fun RailCarrierControl : Class ; -fun RailCarrierControl_Class : SubClass RailCarrierControl Guiding ; - -fun RailGauge : Class ; -fun RailGauge_Class : SubClass RailGauge InternalAttribute ; --- RailJunction is the subclass of --- TransitwayJunctions where two or more Railway lines come together. -fun RailJunction : Class ; -fun RailJunction_Class : SubClass RailJunction (both Railway TransitwayJunction) ; - - --- Railcar is the subclass of RollingStock that --- includes all non_locomotive, non_self_powered RailVehicles. -fun Railcar : Class ; -fun Railcar_Class : SubClass Railcar RollingStock ; - -fun RailcarCarrierShip : Class ; -fun RailcarCarrierShip_Class : SubClass RailcarCarrierShip RollOnRollOffCargoShip ; --- RailroadTrack is the class of --- StationaryArtifacts consisting of rails laid on supports to form --- a track for railway vehicles. -fun RailroadTrack : Class ; -fun RailroadTrack_Class : SubClass RailroadTrack StationaryArtifact ; - --- Railway is the subclass of --- LandTransitways that have rails along which Trains may travel. --- A railway consists of the rail bed, sleepers, tracks, electric --- rails, switches, sensors, lights, crossing grades, and any other --- integral machinery or parts of a section of railway. -fun Railway : Class ; -fun Railway_Class : SubClass Railway (both LandTransitway StationaryArtifact) ; - - --- RailwayTerminal is the subclass of --- TransitTerminals designed for Trains. A RailwayTerminal includes --- all the RailroadTrack and any outbuildings or other related structure --- in the terminal, as well as the TrainStation (if there is one). -fun RailwayTerminal : Class ; -fun RailwayTerminal_Class : SubClass RailwayTerminal TransitTerminal ; - -fun RefrigeratedCargoShip : Class ; -fun RefrigeratedCargoShip_Class : SubClass RefrigeratedCargoShip CargoShip ; -fun RefrigeratorCar : Class ; -fun RefrigeratorCar_Class : SubClass RefrigeratorCar Boxcar ; --- RegistryTon is a unit of --- measure used to represent the Gross Registered Tonnage (GRT) capacity --- of Ships. GRT is based on a volume measure, with one RegistryTon --- equal to a volume of 100 cubic feet. -fun RegistryTon : Ind UnitOfVolume ; - - -fun ResearchShip : Class ; -fun ResearchShip_Class : SubClass ResearchShip Ship ; --- RiverPort is the subclass of PortCity --- whose instances are port cities Adjacent to a navigable River. -fun RiverPort : Class ; -fun RiverPort_Class : SubClass RiverPort PortCity ; - --- RoadJunction is the subclass of --- TransitwayJunctions where two or more Roadways come together. -fun RoadJunction : Class ; -fun RoadJunction_Class : SubClass RoadJunction (both Roadway TransitwayJunction) ; - - -fun Road_Roadway : SubClass Road Roadway ; - -fun Rocket_Aircraft : SubClass Rocket Aircraft ; - -fun RollOnRollOffCargoShip : Class ; -fun RollOnRollOffCargoShip_Class : SubClass RollOnRollOffCargoShip CargoShip ; - - -fun RotaryDumpCar : Class ; -fun RotaryDumpCar_Class : SubClass RotaryDumpCar OpenTopRailcar ; - -fun Runabout : Class ; -fun Runabout_Class : SubClass Runabout WaterVehicle ; --- Runway is the class of Transitways that are --- used for the takeoff and landing of Airplanes. Runways are --- Transitways for an intermodal transit, which begins with a land transit --- and ends with air transit, or vice versa. The Airspace immediately --- above (and adjacent to) a Runway is an AirTransitway. -fun Runway : Class ; -fun Runway_Class : SubClass Runway LandTransitway ; - -fun Sailboat : Class ; -fun Sailboat_Class : SubClass Sailboat WaterVehicle ; --- ScaleTestCars are Railcars of --- known weight used to test or calibrate track scales used for --- weighing freight. -fun ScaleTestCar : Class ; -fun ScaleTestCar_Class : SubClass ScaleTestCar RollingStock ; - -fun Scooter : Class ; -fun Scooter_Class : SubClass Scooter (both AgentPoweredVehicle LandVehicle) ; - -fun SeaLane : Class ; -fun SeaLane_Class : SubClass SeaLane Waterway ; --- SeaPort is the subclass of PortCity --- whose instances are port cities on or closely linked to a Sea or --- Ocean. -fun SeaPort : Class ; -fun SeaPort_Class : SubClass SeaPort PortCity ; - -fun SecondaryHighway : Class ; -fun SecondaryHighway_Class : SubClass SecondaryHighway Roadway ; -fun SelfDischargingBulkCarrierShip : Class ; -fun SelfDischargingBulkCarrierShip_Class : SubClass SelfDischargingBulkCarrierShip DryBulkCarrierShip ; --- ShipBerth is the class of areas where --- a Ship may be moored, whether at an Anchorage or dock. -fun ShipBerth : Class ; -fun ShipBerth_Class : SubClass ShipBerth WaterArea ; - --- ShipBerthing is the class of --- Translocation processes in which a vessel is brought to a --- mooring, at dockside or anchorage. -fun ShipBerthing : Class ; -fun ShipBerthing_Class : SubClass ShipBerthing Translocation ; - --- (ShipBerthingFn ?SHIP) denotes the --- class of ShipBerthings of an individual WaterVehicle ?SHIP. -fun ShipBerthingFn: El Ship -> Desc ShipBerthing ; - - --- ShipCabin is the subclass of all --- ShipCompartments for accommodating Humans aboard a ship. -fun ShipCabin : Class ; -fun ShipCabin_Class : SubClass ShipCabin ShipCompartment ; - --- A ShipCompartment is any fully or --- partly bounded section of a Ship. -fun ShipCompartment : Class ; -fun ShipCompartment_Class : SubClass ShipCompartment Artifact ; - --- ShipContainer is the class of specialized --- large containers designed for shipping goods aboard ContainerShips. -fun ShipContainer : Class ; -fun ShipContainer_Class : SubClass ShipContainer SelfConnectedObject ; - --- A ShipCrew is an Organization of people --- who operate a Ship, Plane, Train, or other transportation vehicle. -fun ShipCrew : Class ; -fun ShipCrew_Class : SubClass ShipCrew Organization ; - --- (ShipCrewFn ?BOAT) denotes the --- Organization consisting of the people charged with operating --- the WaterVehicle ?BOAT. -fun ShipCrewFn : El WaterVehicle -> Ind Group ; - - --- ShipDeck is the class of decks on a ship, --- considered as spaces or Regions in which passengers and crew work, --- live, or ride, and/or in which machinery and cargo are stored on a --- Ship. -fun ShipDeck : Class ; -fun ShipDeck_Class : SubClass ShipDeck Artifact ; - --- A ShipRegister is a record of each Ship --- and owner registered with the maritime authorities of a country or --- possession, colony, or territory of a country. Ships on the --- ShipRegister of a given region fly the flag of that region and are --- subject to its maritime regulations and rules of taxation. -fun ShipRegister : Class ; -fun ShipRegister_Class : SubClass ShipRegister ContentBearingObject ; - --- (ShipRegisterFn ?AREA) --- denotes the ShipRegister of the Ships that fly the flag of --- the GeopoliticalArea ?AREA. -fun ShipRegisterFn : El GeopoliticalArea -> Ind ShipRegister ; - - --- ShipRegistration is the official --- document containing information about the ownership, size, and --- flag state (flag of registry) of an individual Ship, as registered --- in the ShipRegister maintained by the maritime authorities of a --- particular Nation or OverseasArea of a nation. A ship flies the --- flag of its registered nation or area, and the ship is subject to the --- maritime regulations and rules of taxation of its flagState. -fun ShipRegistration : Class ; -fun ShipRegistration_Class : SubClass ShipRegistration ContentBearingObject ; - -fun ShippingChannel : Class ; -fun ShippingChannel_Class : SubClass ShippingChannel Waterway ; -fun ShippingLane : Class ; -fun ShippingLane_Class : SubClass ShippingLane Waterway ; --- ShortRunwayAirport is a CIA --- category for Airports whose longest runway has a length between 914 --- meters and 1523 meters, inclusive. -fun ShortRunwayAirport : Ind CIAAirportLengthClassification ; - - -fun ShortSeaPassengerShip : Class ; -fun ShortSeaPassengerShip_Class : SubClass ShortSeaPassengerShip PassengerShip ; -fun SludgeDisposalVessel : Class ; -fun SludgeDisposalVessel_Class : SubClass SludgeDisposalVessel Ship ; -fun SpecializedTankerShip : Class ; -fun SpecializedTankerShip_Class : SubClass SpecializedTankerShip CargoShip ; --- SpineCars are articulated Flatcars --- used to carry trailers or containers. -fun SpineCar : Class ; -fun SpineCar_Class : SubClass SpineCar Flatcar ; - --- StandardGauge is the attribute --- of Railways having the standardized track width that is --- used in North America and most Western European countries. --- The standard is typically a distance of 4 ft., 8_1/2 inches --- (1.44 meters). There is some variation within which usage is --- compatible, e.g., 1.35 meters. Standard gauge originated in --- England and was mandated by the U.S. Federal government for the --- U.S. Transcontinental Railroad. It is also used in Canada, --- Great Britain, and most of Western Europe (but not in Ireland, --- or Spain and Portugal. -fun StandardGauge : Ind TrackGauge ; - - -fun StandardGaugeRail : Ind RailGauge ; - -fun StandardGaugeRailway : Class ; -fun StandardGaugeRailway_Class : SubClass StandardGaugeRailway Railway ; -fun Street : Class ; -fun Street_Class : SubClass Street Roadway ; -fun Streetcar_RollingStock : SubClass Streetcar RollingStock ; - --- SurfacedRoadway is the subclass of --- Roadways that have been improved by covering them with a substance --- to increase the hardness and smoothness of the surface. Covering --- materials include pavement, concrete, asphalt, macadam, and gravel. -fun SurfacedRoadway : Class ; -fun SurfacedRoadway_Class : SubClass SurfacedRoadway Roadway ; - --- TankCars are enclosed FreightCars used --- to carry fluids. -fun TankCar : Class ; -fun TankCar_Class : SubClass TankCar FreightCar ; - --- A TerminalBuilding is a Building --- located at a TransitTerminal and used in connection with its --- functions. -fun TerminalBuilding : Class ; -fun TerminalBuilding_Class : SubClass TerminalBuilding Building ; - -fun TollBooth : Class ; -fun TollBooth_Class : SubClass TollBooth Building ; --- TrackGauge is the collection of --- attributes that characterize sections of railways, according --- to the set distances between the two tracks of the Railway. --- Precisely, the measurement of track gauge is the distance --- between the inner vertical surfaces of the heads of the rails. --- Track gauges include broad, dual, standard, and narrow gauges. -fun TrackGauge : Class ; -fun TrackGauge_Class : SubClass TrackGauge InternalAttribute ; - -fun TrafficLight : Class ; -fun TrafficLight_Class : SubClass TrafficLight Device ; -fun Trail : Class ; -fun Trail_Class : SubClass Trail LandTransitway ; --- Any RoadVehicle that is also an UnpoweredVehicle, --- and intended to be towed by a PoweredVehicle. -fun Trailer : Class ; -fun Trailer_Class : SubClass Trailer (both RoadVehicle UnpoweredVehicle) ; - - --- Train is the subclass of --- TransportationDevice whose instances are linked sequences --- of RollingStock. -fun Train : Class ; -fun Train_Class : SubClass Train (both Collection (both PoweredVehicle RailVehicle)) ; - - --- TrainStation is the subclass of --- Buildings that are located at a RailwayTerminal and used in support --- of its functions, especially for the handling of passengers and freight. -fun TrainStation : Class ; -fun TrainStation_Class : SubClass TrainStation (both TerminalBuilding TransitTerminal) ; - - --- (TransitFn ?WAY) denotes the class of --- Translocations that consist of travelling along the Transitway --- ?WAY. -fun TransitFn: El Transitway -> Desc Translocation ; - - --- TransitRoute is the class of --- Regions that are paths for Motion from one place to another. -fun TransitRoute : Class ; -fun TransitRoute_Class : SubClass TransitRoute Region ; - --- TransitShelter is the class of --- structures that provide shelter for passengers waiting at a --- TransitStop. -fun TransitShelter : Class ; -fun TransitShelter_Class : SubClass TransitShelter Artifact ; - --- TransitStop is the subclass of places --- where a vehicle of a scheduled or common carrier makes a stop to --- discharge or take on passengers or goods. -fun TransitStop : Class ; -fun TransitStop_Class : SubClass TransitStop Region ; - --- A TransitTerminal is a place where --- travellers or transportation devices begin or end their journeys, or --- where passengers and/or goods may be transferred. At a terminal, --- TransportationDevices may be received, assigned, sent out, or --- stored. -fun TransitTerminal : Class ; -fun TransitTerminal_Class : SubClass TransitTerminal StationaryArtifact ; - --- TransitwayJunction is the class of --- regions where two or more Transitways meet and traffic may transfer --- from one transitway to another. -fun TransitwayJunction : Class ; -fun TransitwayJunction_Class : SubClass TransitwayJunction Transitway ; - --- TransitwayObstacle is the general --- class of Objects that can act as obstacles to Motion along a --- Transitway. -fun TransitwayObstacle : Class ; -fun TransitwayObstacle_Class : SubClass TransitwayObstacle Object ; - --- TransportationAuthority is the class of Organizations that are --- responsible for one or more systems of transportation, usually within --- a particular GeopoliticalArea. -fun TransportationAuthority : Class ; -fun TransportationAuthority_Class : SubClass TransportationAuthority Organization ; - -fun TransportationDevice_TransportationEquipment : SubClass TransportationDevice TransportationEquipment ; - -fun TransportationEquipment : Class ; -fun TransportationEquipment_Class : SubClass TransportationEquipment ManufacturedProduct ; --- (TransportationFn ?TYPE) denotes the subclass of Transportation --- events in which a TransportationDevice of ?TYPE is the vehicle. -fun TransportationFn: Desc TransportationDevice -> Desc Transportation ; - - -fun Trawler : Class ; -fun Trawler_Class : SubClass Trawler FishingShip ; --- Trip is the subclass of Motions along a --- TransitRoute or Transitway. -fun Trip : Class ; -fun Trip_Class : SubClass Trip Motion ; - --- (TripFn ?VEHICLE) denotes the subclass of Transportation --- events in which a particular TransportationDevice ?VEHICLE is the --- vehicle. Contrast this function with TransportationFn, which is --- used to denote transportation events by a specific kind of vehicle. -fun TripFn: El Vehicle -> Desc Transportation ; - - -fun TugBoat : Class ; -fun TugBoat_Class : SubClass TugBoat WaterVehicle ; --- Tunnel is a subclass of Transitways that --- consist of a lengthwise enclosed Hole that allows for transit --- underground, as through mountains, below a body of water, or beneath a --- city. -fun Tunnel : Class ; -fun Tunnel_Class : SubClass Tunnel (both LandTransitway StationaryArtifact) ; - - --- UniModalTransitSystem is --- the class of TransitSystems that accommodate a single type of --- transportation device or method. -fun UniModalTransitSystem : Class ; -fun UniModalTransitSystem_Class : SubClass UniModalTransitSystem TransitSystem ; - -fun Unpaved : Ind Attribute ; - --- UnpavedRunways include Runways with --- grass, dirt, sand, or gravel surfaces. Contrast with PavedRunway. -fun UnpavedRunway : Class ; -fun UnpavedRunway_Class : SubClass UnpavedRunway Runway ; - --- A Vehicle that lacks a powerComponent. --- It coasts like a glider or skateboard, thus deriving its power from the --- potential energy of gravity, or by the power of its agent, as in a bicycle. -fun UnpoweredVehicle : Class ; -fun UnpoweredVehicle_Class : SubClass UnpoweredVehicle Vehicle ; - --- UnsurfacedRoadway is the subclass --- of Roadways that have natural, unimproved surfaces of dirt or sand. -fun UnsurfacedRoadway : Class ; -fun UnsurfacedRoadway_Class : SubClass UnsurfacedRoadway Roadway ; - -fun UreaCarrierShip : Class ; -fun UreaCarrierShip_Class : SubClass UreaCarrierShip DryBulkCarrierShip ; -fun VehicleCarrierShip : Class ; -fun VehicleCarrierShip_Class : SubClass VehicleCarrierShip RollOnRollOffCargoShip ; --- VehicleRegistration is the class --- of official documents containing information about a vehicle's ownership --- and identifying characteristics, as required by the appropriate authority --- for the type and location of individual vehicles. -fun VehicleRegistration : Class ; -fun VehicleRegistration_Class : SubClass VehicleRegistration ContentBearingObject ; - --- VeryLongRunwayAirport is a CIA --- category for Airports whose longest runway has a length greater --- than 3,047 meters. -fun VeryLongRunwayAirport : Ind CIAAirportLengthClassification ; - - --- VeryShortRunwayAirport is a CIA --- category for Airports whose longest runway is less than 914 meters --- long. -fun VeryShortRunwayAirport : Ind CIAAirportLengthClassification ; - - --- WaterJunction is the subclass of --- TransitwayJunctions where two or more Waterways come together. -fun WaterJunction : Class ; -fun WaterJunction_Class : SubClass WaterJunction (both TransitwayJunction Waterway) ; - - -fun WaterTransportationSystem : Class ; -fun WaterTransportationSystem_Class : SubClass WaterTransportationSystem TransitSystem ; --- Waterway is the class of navigable waters, --- including Oceans, SeaLanes, Rivers, Canals, Lakes, and inland --- bodies of water. -fun Waterway : Class ; -fun Waterway_Class : SubClass Waterway (both Transitway WaterArea) ; - - -fun WoodChipsCarrierShip : Class ; -fun WoodChipsCarrierShip_Class : SubClass WoodChipsCarrierShip DryBulkCarrierShip ; --- (cargoType ?DEVICE ?TYPE) means that the --- TransportationDevice ?DEVICE typically carries cargo of the kind --- ?TYPE. -fun cargoType: El TransportationDevice -> Desc Object -> Formula ; - - --- (fOCShipsByOrigin ?MM ?AREA ?COUNT) means that the --- MerchantMarine ?MM has ?COUNT number of ships from the --- GeopoliticalArea ?AREA in its ShipRegister, using it as --- a FlagOfConvenience, although the owner of the ships is in --- ?AREA. -fun fOCShipsByOrigin : El MerchantMarine -> El GeopoliticalArea -> El NonnegativeInteger -> Formula ; - - --- (flagState ?SHIP ?AREA) means that --- the Ship ?SHIP is enrolled in the ShipRegister of the --- GeopoliticalArea ?AREA and is subject to its maritime laws, --- regulations for operation of the ship, and rules of taxation. -fun flagState : El WaterVehicle -> El GeopoliticalArea -> Formula ; - - --- (fleetDeadWeightTonnage ?FLEET ?AMOUNT) means that the Collection --- of Ships ?FLEET has a total carrying capacity of ?AMOUNT in LongTons. --- This is the total vesselDeadWeightTonnage of all the vessels combined. --- Dead Weight Tonnage, or DWT, is the weight of cargo plus stores that a --- vessel can carry when immersed to the proper load line. -fun fleetDeadWeightTonnage : El Collection -> El MassMeasure -> Formula ; - - --- (fleetGrossRegisteredTonnage ?FLEET ?AMOUNT) means that the --- Collection of Ships ?FLEET has a total carrying capacity of ?AMOUNT --- in RegistryTons. This is the total vesselGrossRegisteredTonnage of --- all the vessels combined. Gross Registered Tonnage, or GRT, is the --- capacity of a vessel calculated on an equivalence of 100 cubic feet of --- sheltered area per ton. -fun fleetGrossRegisteredTonnage : El Collection -> El PhysicalQuantity -> Formula ; - - --- (ladenDraft ?SHIP ?AMOUNT) means that --- the WaterVehicle ?SHIP requires a waterDepth of at least ?AMOUNT --- to sail without running aground, when she is loaded at capacity. -fun ladenDraft : El WaterVehicle -> El LengthMeasure -> Formula ; - - --- (lengthOfBroadGaugeRailway ?AREA ?LENGTH) means that the sum length --- of broad gauge railway routes in the GeographicArea ?AREA is the --- LengthMeasure ?LENGTH. -fun lengthOfBroadGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfCrudeOilPipeline ?AREA ?AMOUNT) means that in the --- GeograpicArea ?AREA there is the LengthMeasure ?AMOUNT of --- CrudeOilPipeline. -fun lengthOfCrudeOilPipeline : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfDualGaugeRailway ?AREA ?LENGTH) means that the sum length --- of dual gauge railway routes in the GeographicArea ?AREA is the --- LengthMeasure ?LENGTH. -fun lengthOfDualGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfElectrifiedRailway ?AREA ?LENGTH) means that the sum --- length of all ElectrifiedRailway routes in the GeographicArea --- ?AREA is the LengthMeasure ?LENGTH. -fun lengthOfElectrifiedRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfExpresswaySystem ?AREA ?LENGTH) means that the total length --- of Expressway in the GeographicArea ?AREA is ?LENGTH. -fun lengthOfExpresswaySystem : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfMultipleTrackRailway ?AREA ?LENGTH) means that the sum --- length of all MultipleTrackRailway routes in the GeographicArea --- ?AREA is the LengthMeasure ?LENGTH. -fun lengthOfMultipleTrackRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfNarrowGaugeRailway ?AREA ?LENGTH) means that the sum length --- of narrow gauge railway routes in the GeographicArea ?AREA is the --- LengthMeasure ?LENGTH. -fun lengthOfNarrowGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfNaturalGasPipeline ?AREA ?AMOUNT) means that in the --- GeograpicArea ?AREA there is the LengthMeasure ?AMOUNT of --- NaturalGasPipeline. -fun lengthOfNaturalGasPipeline : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfPavedHighway ?AREA ?LENGTH) means that the total length --- of SurfacedRoadway in the GeographicArea ?AREA is ?LENGTH. -fun lengthOfPavedHighway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfPetroleumProductPipeline ?AREA ?AMOUNT) means that in the --- GeograpicArea ?AREA there is the LengthMeasure ?AMOUNT of --- PetroleumProductPipeline. -fun lengthOfPetroleumProductPipeline : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfStandardGaugeRailway ?AREA ?LENGTH) means that the sum length --- of standard gauge railway routes in the GeographicArea ?AREA is the --- LengthMeasure ?LENGTH. -fun lengthOfStandardGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfUnclassifiedGaugeRailway ?AREA ?LENGTH) means that the sum length --- of railway routes in the GeographicArea ?AREA classified as something --- other than broad, dual, narrow, or standard gauge is the LengthMeasure --- ?LENGTH. -fun lengthOfUnclassifiedGaugeRailway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (lengthOfUnpavedHighway ?AREA ?LENGTH) means that the total length --- of UnsurfacedRoadway in the GeographicArea ?AREA is ?LENGTH. -fun lengthOfUnpavedHighway : El GeographicArea -> El LengthMeasure -> Formula ; - - --- A relation between a MerchantMarine --- and a ShipRegister which is a member of that MerchantMarine -fun marineInventory : El MerchantMarine -> El ShipRegister -> Formula ; - - --- (navigableForDraft ?WATERWAY ?DRAFT) means that the Waterway --- ?WATERWAY can be transited by vessels up to the draft ?DRAFT. -fun navigableForDraft : El WaterArea -> El LengthMeasure -> Formula ; - - --- (navigableForShippingTonnage ?WATERWAY ?TONNAGE) means that the --- Waterway ?WATERWAY can be transited by vessels up to the tonnage --- ?TONNAGE (in Dead Weight Tonnage). -fun navigableForShippingTonnage : El WaterArea -> El PhysicalQuantity -> Formula ; - - --- (passengerCapacityMaxNumber ?TRANSPORT ?NUMBER) means that the --- TransportationDevice ?TRANSPORT has a safe carrying capacity for ?NUMBER --- of passengers. -fun passengerCapacityMaxNumber : El TransportationDevice -> El Number -> Formula ; - - --- (powerComponent ?GENERATOR ?THING) --- means that the Device ?THING is the power source for the Artifact --- ?THING. -fun powerComponent: El Device -> Desc Artifact -> Formula ; - - --- (routeBetween ?ROUTE ?FROM ?TO) means --- that the Transitway ?ROUTE is a route between the place ?FROM and --- the place ?TO. -fun routeBetween : El Transitway -> El Region -> El Region -> Formula ; - - --- (routeEnd ?REGION ?SYSTEM) means --- that within the given ?SYSTEM the given ?REGION is connected to --- only one other Region. -fun routeEnd : El Region -> El TransitSystem -> Formula ; - - -fun routeStart : El Region -> El TransitSystem -> Formula ; - --- The maximum speed under normal conditions --- for a vehicle. For a RoadVehicle this would be on level ground, no headwind or --- tailwind, 70 degrees F, standard recommended fuel etc. For an Aircraft this would --- mean level flight out of ground effect. Because of the number of external factors --- on top speed, all that can be said formally is that higher speeds are unlikely. -fun topSpeed : El Vehicle -> El FunctionQuantity -> Formula ; - - --- (totalFacilityTypeInArea ?AREA ?TYPE ?COUNT) means that in the --- GeographicArea ?AREA there a total of ?COUNT number of facilities --- of type ?TYPE. -fun totalFacilityTypeInArea : El GeographicArea -> Class -> El NonnegativeInteger -> Formula ; - - --- (totalLengthOfHighwaySystem ?AREA ?LENGTH) means that the total --- length of the highway system in the GeographicArea ?AREA is ?LENGTH. --- The figure includes both paved and unpaved roads. -fun totalLengthOfHighwaySystem : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (totalLengthOfRailwaySystem ?AREA ?LENGTH) means that the sum --- length of all railway routes in the GeographicArea ?AREA --- is the LengthMeasure ?LENGTH. -fun totalLengthOfRailwaySystem : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (totalLengthOfWaterways ?AREA ?LENGTH) means that the --- total length of navigable Waterways in the GeographicArea ?AREA --- is the LengthMeasure ?LENGTH. -fun totalLengthOfWaterways : El GeographicArea -> El LengthMeasure -> Formula ; - - --- (totalPipelineInArea ?AREA ?LENGTH) means that the GeopoliticalArea --- ?AREA has ?LENGTH of Pipelines. -fun totalPipelineInArea : El GeographicArea -> El LengthMeasure -> Formula ; - - --- The distance between the two rails --- of a Railway. -fun trackWidth : El Railway -> El LengthMeasure -> Formula ; - - --- (trafficableForTrafficType ?WAY ?TYPE) means that Objects of ?TYPE --- can move along the Transitway ?WAY. -fun trafficableForTrafficType: El Object -> Desc SelfConnectedObject -> Formula ; - - --- (transitwayCapacityCount ?WAY ?TYPE ?NUMBER) means that the --- Transitway ?WAY can accommodate a maximum of ?NUMBER items of ?TYPE --- at any one time. -fun transitwayCapacityCount: El Transitway -> Desc SelfConnectedObject -> El NonnegativeInteger -> Formula ; - - --- (transitwayCapacityRate ?WAY ?TYPE ?RATE) means that the --- Transitway WAY can transit items of ?TYPE at the maximum --- FunctionQuantity ?RATE. For example, --- (transitwayCapacityRate SFBayBridgeWestbound Automobile 500). -fun transitwayCapacityRate: El Transitway -> Desc SelfConnectedObject -> El FunctionQuantity -> Formula ; - - --- (vesselDeadWeightTonnage ?VESSEL ?AMOUNT) means that the --- WaterVehicle ?VESSEL has a carrying capacity when fully loaded of --- ?AMOUNT in LongTons. This is the Dead Weight Tonnage, or DWT, --- of the vessel, which is the total weight of cargo plus stores --- that the vessel can carry when immersed to the proper load line. -fun vesselDeadWeightTonnage : El WaterVehicle -> El MassMeasure -> Formula ; - - --- (vesselDisplacement ?VESSEL ?AMOUNT) means that the displacement --- of WaterVehicle ?VESSEL is the PhysicalQuantity ?AMOUNT. The --- displacement of a vessel may be measured in LongTons (Dead Weight --- Tonnage, or DWT) or by volume (Gross Registered Tonnage, or GRT). -fun vesselDisplacement : El WaterVehicle -> El PhysicalQuantity -> Formula ; - - --- (vesselGrossRegisteredTonnage ?VESSEL ?AMOUNT) means that the --- WaterVehicle ?VESSEL has a carrying capacity when fully loaded of --- ?AMOUNT, where ?AMOUNT is the Gross Registered Tonnage (GRT) of the --- vessel, which is based on the total sheltered volume of the vessel --- measured in hundreds of cubic feet, and converted to gross tons --- at an equivalence of 100 cubic feet per ton. -fun vesselGrossRegisteredTonnage : El WaterVehicle -> El PhysicalQuantity -> Formula ; } diff --git a/examples/SUMO/WMD.gf b/examples/SUMO/WMD.gf index 990a51d4d..a8f316c4f 100644 --- a/examples/SUMO/WMD.gf +++ b/examples/SUMO/WMD.gf @@ -1,1041 +1,1018 @@ -abstract WMD = open Merge,Mid_level_ontology in { +abstract WMD = MidLevelOntology ** { + + -- An extremely toxic protein found in the seeds of the rosary pea. Its mechanism, symptoms, + -- and treatment are very similar to those of RicinToxin. + -- However, AbrinToxin is roughly 75 times more toxic than RicinToxin. + fun AbrinToxin : Class ; + fun AbrinToxin_Class : SubClass AbrinToxin (both Protein Toxin); + + -- A BiochemicalAgent that has been divided into particles so minute that + -- they can be easily dispersed in the air and inhaled by Humans or Animals. + -- AerosolizedAgents tend to be more lethal and to affect a larger area. + fun AerosolizedAgent : Class ; + fun AerosolizedAgent_Class : SubClass AerosolizedAgent BiochemicalAgent ; + + -- Also known as weaponized anthrax. These are spores of BacillusAnthracis that + -- have been separated to the point that they can be dispersed in the air and + -- easily inhaled by crowds. + fun AerosolizedBacillusAnthracis : Class ; + fun AerosolizedBacillusAnthracis_Class : SubClass AerosolizedBacillusAnthracis (both AerosolizedAgent BacillusAnthracis); + + -- The disease has rarely been observed in humans, + -- but it can cause severe damage to the liver, + -- including cirrhosis and liver cancer, in a large number of animal species. + fun Aflatoxicosis : Ind LifeThreateningDisease ; + + -- Toxins produced by fungi of the strains + -- Aspergillus Flavus and Aspergillus Parasiticus. + -- There are four varieties of Aflatoxin, viz. B1, B2, G1, and G2. + -- B1 is most common and most toxic. + fun Aflatoxin : Class ; + fun Aflatoxin_Class : SubClass Aflatoxin Mycotoxin ; + + -- The disease caused by BacillusAnthracis. + -- Victims of the disease may experience a brief, apparent recovery before death. + fun Anthrax : Ind BacterialDisease ; + + -- A disease that attacks the immune system and that is caused by the HIVVirus. + -- Patients are usually infected through blood or semen. + fun AquiredImmunoDeficiencySyndrome : Class ; + fun AquiredImmunoDeficiencySyndrome_Class : SubClass AquiredImmunoDeficiencySyndrome DiseaseOrSyndrome ; + + -- Symptoms of the disease are flu_like in the initial stages. + -- As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. + fun ArgentinianHemorrhagicFever : Ind HemorrhagicFever ; + + -- A very toxic form of arsenic that is 2 and a half times denser than air. + -- Victims who die after exposure to Arsine generally die from renal failure. + fun Arsine : Class ; + fun Arsine_Class : SubClass Arsine BloodAgent ; + + -- An anticholinergic agent. + fun Atropine : Class ; + fun Atropine_Class : SubClass Atropine BiologicallyActiveSubstance ; + + -- Stockpiled for a time by both NATO and the Warsaw Pact countries, + -- BZGas is a psychoactive agent that is heaver than air and + -- reputedly ten times more powerful than LSD. + -- Effects of the gas are not well understood, but they include vomiting, + -- lethargy, loss of motor co_ordination, and cognitive incapacity. + fun BZGas : Class ; + fun BZGas_Class : SubClass BZGas IncapacitatingAgent ; + + -- The Bacterium which causes the disease Anthrax. + -- Humans may become infected with Anthrax via contamination + -- of a wound or by inhaling the Bacterium. When it is inhaled, + -- the disease is often fatal if not treated early (see InhalationalAnthrax). + fun BacillusAnthracis : Class ; + fun BacillusAnthracis_Class : SubClass BacillusAnthracis BacterialAgent ; + + -- A Bacterium that is closely related to and often found near BacillusAnthracis, + -- the Bacterium that causes Anthrax. BacillusCereus causes two forms of food poisoning, + -- one characterized by diarrhea and the other by vomiting. In most cases the disease is not + -- life_threatening. + fun BacillusCereus : Class ; + fun BacillusCereus_Class : SubClass BacillusCereus BacterialAgent ; + + -- A common topical antibiotic. + fun Bacitracin : Class ; + fun Bacitracin_Class : SubClass Bacitracin TopicalAntibiotic ; + + -- BiologicalAgents that are instances of Bacterium. + fun BacterialAgent : Class ; + fun BacterialAgent_Class : SubClass BacterialAgent (both Bacterium ToxicOrganism); + + -- A Toxin produced by some species of Frogs. + fun Batrachotoxin : Class ; + fun Batrachotoxin_Class : SubClass Batrachotoxin (both BodySubstance Toxin); + + -- A BiologicalAgent or a ChemicalAgent. + fun BiochemicalAgent : Class ; + fun BiochemicalAgent_Class : SubClass BiochemicalAgent BiologicallyActiveSubstance ; + + -- Attacks in which a BiochemicalWeapon is used against an Organism. + fun BiochemicalAttack : Class ; + fun BiochemicalAttack_Class : SubClass BiochemicalAttack Attack ; + + -- A WeaponOfMassDestruction that is either a BiologicalWeapon or a ChemicalWeapon, + -- i.e. not a RadioactiveWeapon. + fun BiochemicalWeapon : Class ; + fun BiochemicalWeapon_Class : SubClass BiochemicalWeapon WeaponOfMassDestruction ; + + -- A naturally occurring Substance, or a synthetic analogue of + -- such a substance or an Organism that is capable of + -- inflicting severe harm on other Organisms. + -- All BiologicalWeapons contain a BiologicalAgent. + fun BiologicalAgent : Class ; + fun BiologicalAgent_Class : SubClass BiologicalAgent BiochemicalAgent ; + + -- Weapons which contain a sample of ToxicOrganism or a BiologicallyActiveSubstance + -- that is produced by a ToxicOrganism (or a synthetic analogue of the latter). + fun BiologicalWeapon : Class ; + fun BiologicalWeapon_Class : SubClass BiologicalWeapon BiochemicalWeapon ; + + -- ChemicalAgents that affect eyes, lungs, and skin. + -- BlisterAgents are so named because they cause blistering of the skin. + -- They may also cause blindness and respiratory damage. + fun BlisterAgent : Class ; + fun BlisterAgent_Class : SubClass BlisterAgent ChemicalAgent ; + + -- A CompoundSubstance that prevents the normal use of oxygen by bodily tissues. + -- BloodAgents are highly volatile and disperse easily in the open air. + fun BloodAgent : Class ; + fun BloodAgent_Class : SubClass BloodAgent ChemicalAgent ; + + -- Symptoms of the disease are flu_like in the initial stages. + -- As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. + fun BolivianHemorrhagicFever : Ind HemorrhagicFever ; + + -- The Bacterium that causes Pertussis. + fun BordetellaPertussis : Class ; + fun BordetellaPertussis_Class : SubClass BordetellaPertussis BacterialAgent ; + + -- A Toxin produced by the bacterium ClostridiumBotulinum. It paralyzes muscles if ingested, and one billionth of a pound is sufficient to cause death. + fun BotulinumToxin : Class ; + fun BotulinumToxin_Class : SubClass BotulinumToxin (both BodySubstance (both LifeThreateningAgent Toxin)); + + -- A paralytic disease caused by BotulinumToxin, + -- a Toxin produced by the bacterium ClostridiumBotulinum. + fun Botulism : Ind (both BacterialDisease (both LifeThreateningDisease VaccinatableDisease)) ; + + -- Symptoms of the disease are flu_like in the initial stages. + -- As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. + fun BrazilianHemorrhagicFever : Ind HemorrhagicFever ; + + -- The Bacterium which is responsible for the disease Brucellosis. + -- This class covers Brucella Abortus (which infects humans and cattle), + -- Brucella Melitensis (which infects sheep, goats, and humans), + -- and Brucella Suis (which infects pigs). + fun BrucellaBacterium : Class ; + fun BrucellaBacterium_Class : SubClass BrucellaBacterium BacterialAgent ; + + -- Infectious disease caused by BrucellaBacterium. + -- It is also known as undulant fever and malta fever, + -- depending on the strain of BrucellaBacterium that is reponsible for the infection. + fun Brucellosis : Ind BacterialDisease ; + + -- A variant of the Plague which results in large swellings, called buboes. + fun BubonicPlague : Ind (both BacterialDisease VaccinatableDisease) ; + + -- The Bacterium that causes the disease Glanders. + -- It is transmitted to humans by direct contact with infected animals. + -- The bacteria enter the body through the skin and the mucosal surfaces of the eyes and nose. + fun BurkholderiaMallei : Class ; + fun BurkholderiaMallei_Class : SubClass BurkholderiaMallei BacterialAgent ; + + -- Formerly known as Pseudomonas Pseudomallei, this is the Bacterium that causes Melioidosis. + fun BurkholderiaPseudomallei : Class ; + fun BurkholderiaPseudomallei_Class : SubClass BurkholderiaPseudomallei BacterialAgent ; + + fun CSGas : Class ; + fun CSGas_Class : SubClass CSGas IncapacitatingAgent ; + + -- Synthetic compounds that are not an analogue of anything occurring naturally + -- and that can result in serious burns, paralysis, and death to Organisms. + fun ChemicalAgent : Class ; + fun ChemicalAgent_Class : SubClass ChemicalAgent (both BiochemicalAgent (both BiologicallyActiveSubstance CompoundSubstance)); + + -- Weapons that damage or destroy Organisms by means of a ChemicalAgent. + fun ChemicalWeapon : Class ; + fun ChemicalWeapon_Class : SubClass ChemicalWeapon BiochemicalWeapon ; + + -- The Bacterium that causes Psittacosis. + fun ChlamydiaPsittaci : Class ; + fun ChlamydiaPsittaci_Class : SubClass ChlamydiaPsittaci BacterialAgent ; + + -- A poisonous gas. + fun ChlorineGas : Class ; + fun ChlorineGas_Class : SubClass ChlorineGas ChokingAgent ; + + -- Poisonous gas which has effects similar to tear gas. + -- If ingested, the gas causes gastroenteritis. + fun Chloropicrin : Class ; + fun Chloropicrin_Class : SubClass Chloropicrin ChokingAgent ; + + -- ChemicalAgents designed to cause the lungs to fill with fluid, + -- which can result in the victim choking to death. + -- ChokingAgents are heavy gases that are less effective than + -- other ChemicalAgents because they can be easily dissipated by a slight wind. + fun ChokingAgent : Class ; + fun ChokingAgent_Class : SubClass ChokingAgent ChemicalAgent ; + + -- A diarrheal disease that is caused by a Toxin secreted by the Bacterium VibrioCholera. + -- Death may result from severe dehydration caused by the disease. + -- There is little if any fever and abdominal pain with this illness. + fun Cholera : Ind (both BacterialDisease (both VaccinatableDisease LifeThreateningDisease)) ; + + -- An OralAntibiotic that is often used to prevent complications from + -- AquiredImmunoDeficiencySyndrome. Recommended for prevention of inhalational + -- Anthrax in subjects who may have been exposed to aeresolized BacillusAnthracis. + fun Ciprofloxacin : Class ; + fun Ciprofloxacin_Class : SubClass Ciprofloxacin OralAntibiotic ; + + -- The Bacterium that produces BotulinumToxin. + fun ClostridiumBotulinum : Class ; + fun ClostridiumBotulinum_Class : SubClass ClostridiumBotulinum BacterialAgent ; + + -- Bacterium often found in the intestines of Animals. + -- Ingesting this Bacterium can result in Perfringens food poisoning, + -- which can attack internal organs and lead to gangrene. + fun ClostridiumPerfringens : Class ; + fun ClostridiumPerfringens_Class : SubClass ClostridiumPerfringens BacterialAgent ; + + -- The Bacterium that causes the disease Tetanus. + fun ClostridiumTetani : Class ; + fun ClostridiumTetani_Class : SubClass ClostridiumTetani BacterialAgent ; + + -- A recently discovered Fungus that is related to + -- CoccidioidesImmitis and that also causes RiftValleyFever. + fun CoccidiodesPosadasii : Class ; + fun CoccidiodesPosadasii_Class : SubClass CoccidiodesPosadasii (both FungalAgent LifeThreateningAgent); + + -- A Fungus that causes RiftValleyFever, + -- an illness whose symptoms include fever, chills, + -- and coughing and which may result in death. + fun CoccidioidesImmitis : Class ; + fun CoccidioidesImmitis_Class : SubClass CoccidioidesImmitis (both FungalAgent LifeThreateningAgent); + + -- A class of neurotoxins that are produced by the Pacific cone snails. + -- The lethality of these toxins varies widely, and it would be impractical to + -- manufacture them on a large scale. + fun Conotoxin : Class ; + fun Conotoxin_Class : SubClass Conotoxin (both BodySubstance (both CompoundSubstance Toxin)); + + -- The Bacterium that secretes a Toxin that causes Diphtheria. + fun CorynebacteriumDiphtheriae : Class ; + fun CorynebacteriumDiphtheriae_Class : SubClass CorynebacteriumDiphtheriae BacterialAgent ; + + -- The Bacterium that causes QFever. + fun CoxiellaBurnetii : Class ; + fun CoxiellaBurnetii_Class : SubClass CoxiellaBurnetii RickettsialAgent ; + + -- A widespread disease which was initially identified in + -- the Crimea and the Congo, which accounts for its name. + -- The disease has a high mortality rate for humans, + -- but infection of humans occurs infrequently. + fun CrimeanCongoHemorrhagicFever : Ind (both HemorrhagicFever LifeThreateningDisease) ; + + -- The Virus that causes CrimeanCongoHemorrhagicFever. + fun CrimeanCongoHemorrhagicFeverVirus : Class ; + fun CrimeanCongoHemorrhagicFeverVirus_Class : SubClass CrimeanCongoHemorrhagicFeverVirus ViralAgent ; + + -- Used in mining and metalurgy, it is very similar to HydrogenCyanide. + -- However, it is less volatile than HydrogenCyanide, and its effects on the eyes, + -- respiratory tract, and lungs is similar to Phosgene and ChorineGas. + fun CyanogenChloride : Class ; + fun CyanogenChloride_Class : SubClass CyanogenChloride BloodAgent ; + + -- Integrating a WeaponOfMassDestruction with a conventional weapon, + -- so that the former can be delivered to its target. + fun DeliveringWeaponOfMassDestruction : Class ; + fun DeliveringWeaponOfMassDestruction_Class : SubClass DeliveringWeaponOfMassDestruction Making ; + + -- The less serious disease caused by the DengueFeverVirus. + -- Symptoms include fever and severe headache. + fun DengueFever : Ind ViralDisease ; + + -- Any of four related but distinct virus serotypes that are carried by + -- the Aedes Aegypti mosquito and that can cause DengueFever and DengueHemorrhagicFever. + fun DengueFeverVirus : Class ; + fun DengueFeverVirus_Class : SubClass DengueFeverVirus ViralAgent ; + + -- The more serious disease caused by the & %DengueFeverVirus. + -- Symptoms include bleeding from the nose, mouth, and gums, and + -- excessive thirst and difficulty breathing. + fun DengueHemorrhagicFever : Ind (both HemorrhagicFever LifeThreateningDisease) ; + + -- Positioning a chemical, biological or radioactive weapon for + -- the purpose of bringing about harm of some kind. + fun DeployingWeaponOfMassDestruction : Class ; + fun DeployingWeaponOfMassDestruction_Class : SubClass DeployingWeaponOfMassDestruction (both IntentionalProcess Putting); + + -- Making instances of WeaponOfMassDestruction. + fun DevelopingWeaponOfMassDestruction : Class ; + fun DevelopingWeaponOfMassDestruction_Class : SubClass DevelopingWeaponOfMassDestruction Making ; + + -- A Micotoxin that is found in grains and products made from grains. + -- Symptoms include diarrhea, necrotic lesions, and hemorrhaging. + fun Diacetoxyscirpenol : Class ; + fun Diacetoxyscirpenol_Class : SubClass Diacetoxyscirpenol Mycotoxin ; + + -- A chelating agent often used to treat Lewisite, as well as Lead Poisoning. + fun Dimercaprol : Class ; + fun Dimercaprol_Class : SubClass Dimercaprol BiologicallyActiveSubstance ; + + -- A poisonous gas that irritates the lungs and that is similar to Phosgene. + fun Diphosgene : Class ; + fun Diphosgene_Class : SubClass Diphosgene ChokingAgent ; + + -- The disease can infect almost any mucous membrane. It causes fever, chills, headache, and nausea. + -- In severe cases it may affect heart rhythm and motor coordination. + fun Diphtheria : Ind (both BacterialDisease LifeThreateningDisease) ; + + -- Dismantling a Weapon of Mass Destruction, i.e. destroying the weapon or removing it from active deployment. + fun DismantlingWeaponOfMassDestruction : Class ; + fun DismantlingWeaponOfMassDestruction_Class : SubClass DismantlingWeaponOfMassDestruction IntentionalProcess ; + + -- An OralAntibiotic that is used to treat a wide variety of BacterialDiseases, + -- including traveler's diarrhea. Recommended for prevention of inhalational Anthrax + -- in subjects who may have been exposed to aeresolized BacillusAnthracis. + fun Doxycycline : Class ; + fun Doxycycline_Class : SubClass Doxycycline OralAntibiotic ; + + -- In mile cases, symptoms are flu_like. In more severe cases, + -- the disease may result in encephalitis, coma, and death. + fun EasternEquineEncephalitis : Ind (both ViralDisease LifeThreateningDisease) ; + + -- The Virus that causes EasternEquineEncephalitis. + -- Mosquitoes carry this virus, which is then transmitted to humans, when the insects bite them. + fun EasternEquineEncephalitisVirus : Class ; + fun EasternEquineEncephalitisVirus_Class : SubClass EasternEquineEncephalitisVirus ViralAgent ; + + -- A very serious HemorrhagicFever, which often results in death. + fun EbolaHemorrhagicFever : Ind HemorrhagicFever ; + + -- A Virus that causes a form of hemorrhagic fever. + fun EbolaVirus : Class ; + fun EbolaVirus_Class : SubClass EbolaVirus ViralAgent ; + + -- A Toxin produced by the bacterium ClostridiumPerfringens + -- that causes a mild form of food poisoning that lasts one to two days. + fun EpsilonToxin : Class ; + fun EpsilonToxin_Class : SubClass EpsilonToxin (both BodySubstance Toxin); + + -- One of hundreds of strains of the Escherichia Coli Bacterium. + -- This strain lives in the intestines of healthy cattle, + -- but it can cause severe illness when ingested by humans. + fun EscherichiaColi0157H7 : Class ; + fun EscherichiaColi0157H7_Class : SubClass EscherichiaColi0157H7 BacterialAgent ; + + -- A Virus that that is responsible for a hemorrhagic fever found in South America. + fun FlexalVirus : Class ; + fun FlexalVirus_Class : SubClass FlexalVirus ViralAgent ; + + -- A Virus that is smaller than YellowFeverVirus. + fun FootAndMouthVirus : Class ; + fun FootAndMouthVirus_Class : SubClass FootAndMouthVirus ViralAgent ; + + -- The Bacterium that causes the disease Tularemia. Also known as Pasturella Tularensis. + -- The Bacterium has two strains, Jellison type A (F. tularensis biovar tularensis) and type B + -- strains (F tularensis biovar palaearctica), and it is infectious with a dose as small as + -- 50 cells per milliliter. + fun FrancisellaTularensis : Class ; + fun FrancisellaTularensis_Class : SubClass FrancisellaTularensis BacterialAgent ; + + -- Any BiologicalAgent that is also a Fungus. + fun FungalAgent : Class ; + fun FungalAgent_Class : SubClass FungalAgent (both Fungus ToxicOrganism); + + -- One of the G_series nerve agents. + fun GF : Class ; + fun GF_Class : SubClass GF GSeriesNerveAgent ; + + -- Earliest sort of NerveAgent (developed in the 1930's). + -- This subclass of NerveAgents tends to be less persistent, + -- more volatile, and less toxic than VSeriesNerveAgents, + -- which were developed later. GSeriesNerveAgents include Tabun, Sarin, and Soman. + fun GSeriesNerveAgent : Class ; + fun GSeriesNerveAgent_Class : SubClass GSeriesNerveAgent NerveAgent ; + + -- Inflammation of the gastrointestinal tract, i.e. + -- the stomach and small and large intestines. + -- The symptoms include diarrhea, vomiting, and abdominal pain. + fun Gastroenteritis : Ind DiseaseOrSyndrome ; + + -- The class of Organisms that are not found originally in nature, but are produced + -- in a laboratory by manipulating the genes of naturally occurring organisms. + fun GeneticallyEngineeredOrganism : Class ; + fun GeneticallyEngineeredOrganism_Class : SubClass GeneticallyEngineeredOrganism Organism ; + + -- A Bacterium that causes Gastroenteritis. It is present in many streams and lakes, + -- and it is carried by beavers and other animals. + fun GiardiaLamblia : Class ; + fun GiardiaLamblia_Class : SubClass GiardiaLamblia BacterialAgent ; + + -- A disease caused by BurkholderiaMallei. Primary symptoms of Glanders include fever, + -- muscle aches, chest pain, muscle tightness, and headache. Additional symptoms include + -- tearing of the eyes, light sensitivity, and diarrhea. There is no vaccine for this disease. + fun Glanders : Ind BacterialDisease ; + + -- A disease caused by the bacterium NeisseriaGonorrhoeae. + fun Gonorrhea : Ind BacterialDisease ; + + -- The Virus that causes VenezuelanHemorrhagicFever. + fun GuanaritoVirus : Class ; + fun GuanaritoVirus_Class : SubClass GuanaritoVirus ViralAgent ; + + -- The Virus that causes AquiredImmunoDeficiencySyndrome. + fun HIVVirus : Class ; + fun HIVVirus_Class : SubClass HIVVirus ViralAgent ; + + -- A severe syndrome that affects multiple organs of the body. Typically, + -- the vascular system is damaged, and the body's ability to regulate itself is impaired. + fun HemorrhagicFever : Class ; + fun HemorrhagicFever_Class : SubClass HemorrhagicFever ViralDisease ; + + -- A Virus found in Australia and Papua New Guinea that infects humans and horses. + -- The natural host of the virus appears to be fruit bats. Not much is known about + -- the disease caused by the HendraVirus, but it seems to begin with fever and then + -- progress to drowsiness and coma. + fun HendraVirus : Class ; + fun HendraVirus_Class : SubClass HendraVirus ViralAgent ; + + -- A class of ViralDiseases that attack the liver. + fun Hepatitis : Class ; + fun Hepatitis_Class : SubClass Hepatitis ViralDisease ; + + -- A disease that attacks the liver and causes jaundice as well as flu_like symptoms. + -- There is no chronic infection with this disease, and anyone who has recovered from + -- it will have life_time immunity to the disease. + fun HepatitisA : Ind (both Hepatitis VaccinatableDisease) ; + + -- The Virus that causes HepatitisA. + fun HepatitisAVirus : Class ; + fun HepatitisAVirus_Class : SubClass HepatitisAVirus HepatitisVirus ; + + -- Like other forms of hepatitis, HepatitisB attacks the liver of the victim. + -- The disease may result in death from chronic liver disease. + fun HepatitisB : Ind (both Hepatitis (both VaccinatableDisease LifeThreateningDisease)) ; + + -- The Virus that causes HepatitisB. + fun HepatitisBVirus : Class ; + fun HepatitisBVirus_Class : SubClass HepatitisBVirus HepatitisVirus ; + + -- Like other forms of hepatitis, HepatitisC attacks the liver of the victim. + -- The disease often results in chronic infection and chronic liver disease, + -- although the mortality rate of this disease is lower than that of HepatitisB. + -- Most cases of HepatitisC are due to injections of illegal drugs. + fun HepatitisC : Ind (both Hepatitis LifeThreateningDisease) ; + + -- The Virus that causes HepatitisC. + fun HepatitisCVirus : Class ; + fun HepatitisCVirus_Class : SubClass HepatitisCVirus HepatitisVirus ; + + -- Viruses that cause Hepatitis. + fun HepatitisVirus : Class ; + fun HepatitisVirus_Class : SubClass HepatitisVirus ViralAgent ; + + -- The disease caused by HerpesBVirus. + fun HerpesB : Ind (both ViralDisease LifeThreateningDisease) ; + + -- A virus which is carried by Macaque monkeys and which does not harm these primates, + -- but which causes the very serious HerpesB disease in humans. + fun HerpesBVirus : Class ; + fun HerpesBVirus_Class : SubClass HerpesBVirus ViralAgent ; + + -- A ChemicalAgent that was widely used by the Nazis in extermination camps. + -- A low dose can cause headache, disorientation, and vomiting, while a high dose + -- can rapidly result in respiratory and/or cardiac arrest. + fun HydrogenCyanide : Class ; + fun HydrogenCyanide_Class : SubClass HydrogenCyanide BloodAgent ; + + -- ChemicalAgents that are designed to cause temporary disability in victims. + fun IncapacitatingAgent : Class ; + fun IncapacitatingAgent_Class : SubClass IncapacitatingAgent ChemicalAgent ; + + -- A contagious disease caused by a large number of Viruses. + fun Influenza : Class ; + fun Influenza_Class : SubClass Influenza (both VaccinatableDisease ViralDisease); + + -- Almost 100% fatal if left untreated for more than 24 hours. + fun InhalationalAnthrax : Ind (both BacterialDisease LifeThreateningDisease) ; + + -- Most people who are infected with this disease will suffer only mild symptoms. + -- However, in severe cases, the disease attacks the central nervous system and may result in death. + fun JapaneseEncephalitis : Ind (both ViralDisease (both LifeThreateningDisease VaccinatableDisease)) ; + + -- The Virus that causes JapaneseEncephalitis. + -- Mosquitoes in agricultural areas of Asia carry this virus, + -- which is then transmitted to humans, when the insects bite them. + fun JapaneseEncephalitisVirus : Class ; + fun JapaneseEncephalitisVirus_Class : SubClass JapaneseEncephalitisVirus ViralAgent ; + + -- This Virus derives its name from the Junin area of Argentina, + -- where occurrences have so far been restricted. + fun JuninVirus : Class ; + fun JuninVirus_Class : SubClass JuninVirus ViralAgent ; + + -- A cephalosporin for treating bacterial infections. + fun Keflex : Class ; + fun Keflex_Class : SubClass Keflex OralAntibiotic ; + + -- A tick_borne encephalitis that is largely restricted to the Shimoga and Kanara district of Karnataka, India. + fun KyasanurForestDisease : Ind TickBorneEncephalitis ; + + -- The Virus that carries KyasanurForestDisease. + fun KyasanurForestDiseaseVirus : Class ; + fun KyasanurForestDiseaseVirus_Class : SubClass KyasanurForestDiseaseVirus TickBorneEncephalitisVirus ; + + -- Encephalitis caused by the LaCrosseVirus. In its most severe cases, + -- the disease may result in seizure and/or coma, but most infections are relatively mild. + fun LaCrosseEncephalitis : Ind ViralDisease ; + + -- The Virus that causes LaCrossEncephalitis. It is carried by the + -- Aedes Triseriatus mosquito, as well as various woodlands rodents. + fun LaCrosseVirus : Class ; + fun LaCrosseVirus_Class : SubClass LaCrosseVirus ViralAgent ; + + -- A viral, rodent_carried disease found in West Africa. + -- The symptoms of the disease are wide_ranging and can be life_threatening. + -- The disease can lead to permanent neurological problems, including deafness. + fun LassaFever : Ind (both ViralDisease LifeThreateningDisease) ; + + -- The Virus that causes LassaFever. + fun LassaVirus : Class ; + fun LassaVirus_Class : SubClass LassaVirus ViralAgent ; + + -- The Bacterium that causes Legionellosis, which is known as LegionnairesDisease + -- (when it infects the lungs) and PontiacFever (when it doesn't affect the lungs). + fun Legionella : Class ; + fun Legionella_Class : SubClass Legionella BacterialAgent ; + + -- The disease caused by the Bacterium Legionella. + fun Legionellosis : Ind BacterialDisease ; + + -- The most severe form of Legionellosis. It is characterized by pneumonia. + fun LegionnairesDisease : Ind (both BacterialDisease LifeThreateningDisease) ; + + -- Besides being a BlisterAgent, Lewisite causes systemic poisoning. + -- Its symptoms include pulmonary edema, diarrhea, reduced body temperature and blood pressure. + -- When large quantities of Lewisite are inhaled, it can cause death in as little as 10 minutes. + fun Lewisite : Class ; + fun Lewisite_Class : SubClass Lewisite BlisterAgent ; + + -- A BiochemicalAgent that has been observed to cause the death of Humans. + fun LifeThreateningAgent : Class ; + fun LifeThreateningAgent_Class : SubClass LifeThreateningAgent BiochemicalAgent ; + + -- A DiseaseOrSyndrome that has been observed to cause the death of Humans. + fun LifeThreateningDisease : Class ; + fun LifeThreateningDisease_Class : SubClass LifeThreateningDisease DiseaseOrSyndrome ; + + -- The only rickettsial disease which is capable of causing widespread human epidemics. + -- The initial symptoms of the disease are flu_like, but on the fifth or sixth day of infection + -- a macular eruption appears on the upper trunk of the body and then spreads to the rest of the body. + fun LouseBorneTyphus : Ind BacterialDisease ; + + -- The Virus that causes BolivianHemorrhagicFever. + fun MachupoVirus : Class ; + fun MachupoVirus_Class : SubClass MachupoVirus ViralAgent ; + + -- A disease that destroys red blood cells. It is caused by a Microorganism (see MalarialPlasmodium) + -- that is carried by the Anopheles Gambiae mosquito. + fun Malaria : Ind (both InfectiousDisease LifeThreateningDisease) ; + + -- Any of four strains of Plasmodium that are known to cause Malaria. + fun MalarialPlasmodium : Class ; + fun MalarialPlasmodium_Class : SubClass MalarialPlasmodium (both BiologicalAgent Microorganism); + + -- Extremely serious disease caused by the MarburgVirus. Symptoms include high fever, + -- myalgias, vomiting, and diarrhea. Typically involves major organs, including the central nervous system. + fun MarburgDisease : Ind (both ViralDisease LifeThreateningDisease) ; + + -- The Virus that causes MarburgDisease. + fun MarburgVirus : Class ; + fun MarburgVirus_Class : SubClass MarburgVirus ViralAgent ; + + -- Also known as Whitmore's disease, it is similar to Glanders. Unlike Glanders, however, + -- the disease is found predominantly in Southeast Asia. The disease may be a localized infection or + -- it may involve the bloodstream, the lungs or other organs of the body. + fun Melioidosis : Ind BacterialDisease ; + + -- A Virus that is infectious to rabbits and may cause blindness and death in these Rodents. + fun Mixomatosis : Class ; + fun Mixomatosis_Class : SubClass Mixomatosis ViralAgent ; + + -- A viral disease that is very similar to Smallpox. It is seen sporadically in parts of Africa. + fun Monkeypox : Ind ViralDisease ; + + -- The Virus that causes Monkeypox. + fun MonkeypoxVirus : Class ; + fun MonkeypoxVirus_Class : SubClass MonkeypoxVirus ViralAgent ; + + -- A BlisterAgent that was commonly used in World War I to incapacitate troops. + -- It is chemically stable, persistent, and is capable of attacking the eyes, the skin, + -- and the respiratory tract. There is no accepted treatment or preventive measure for MustardGas. + fun MustardGas : Class ; + fun MustardGas_Class : SubClass MustardGas BlisterAgent ; + + -- The Bacterium that causes Tuberculosis. + fun MycobacteriumTuberculosis : Class ; + fun MycobacteriumTuberculosis_Class : SubClass MycobacteriumTuberculosis BacterialAgent ; + + -- A Toxin that is produced by a FungalAgent. + fun Mycotoxin : Class ; + fun Mycotoxin_Class : SubClass Mycotoxin (both BodySubstance Toxin); + + -- A BacterialDisease caused by StreptococcusA where the Bacterium rapidly attacks soft tissue. + fun NecrotizingFaciitis : Ind (both BacterialDisease LifeThreateningDisease) ; + + -- The Bacterium that causes Gonorrhea. + fun NeisseriaGonorrhoeae : Class ; + fun NeisseriaGonorrhoeae_Class : SubClass NeisseriaGonorrhoeae BacterialAgent ; + + -- These ChemicalAgents are easily absorbed into the mucous membranes of humans and inactivate + -- the essential enzyme acetylcholinesterase, bringing about paralysis of the respiratory and central nervous systems. + fun NerveAgent : Class ; + fun NerveAgent_Class : SubClass NerveAgent ChemicalAgent ; + + -- Closely related to HendraVirus. Like the HendraVirus, the natural host of NipahVirus + -- appears to be fruit bats. Not much is known about the disease, but its symptoms include high fever, + -- muscle pain, and eventually encephalitis, convulsions, and coma. + fun NipahVirus : Class ; + fun NipahVirus_Class : SubClass NipahVirus ViralAgent ; + + -- A kind of mustard gas. Also known as HN. + fun NitrogenMustardGas : Class ; + fun NitrogenMustardGas_Class : SubClass NitrogenMustardGas MustardGas ; + + -- Facilities where NuclearWeapons are built. + fun NuclearWeaponProductionFacility : Class ; + fun NuclearWeaponProductionFacility_Class : SubClass NuclearWeaponProductionFacility WMDWeaponsProductionFacility ; + + -- Research facilities that perform research on technology related to NuclearWeapons. + fun NuclearWeaponResearchFacility : Class ; + fun NuclearWeaponResearchFacility_Class : SubClass NuclearWeaponResearchFacility WMDWeaponsResearchFacility ; + + -- An Antibiotic that is administered orally, e.g. Penicillin. + fun OralAntibiotic : Class ; + fun OralAntibiotic_Class : SubClass OralAntibiotic Antibiotic ; + + -- The syndrome where some or all of an Animal's muscles cannot be moved voluntarily. + fun Paralysis : Ind DiseaseOrSyndrome ; + + -- A very serious disease requiring immediate medical attention. There is no vaccine for this disease. + fun ParalyticShellfishPoisoning : Ind LifeThreateningDisease ; + + -- An ingestible antibiotic which kills many kinds of bacteria. + fun Penicillin : Class ; + fun Penicillin_Class : SubClass Penicillin OralAntibiotic ; + + -- The BacterialDisease caused by BordetellaPertussis. + -- Its symptoms include severe coughing (hence the colloquial name of whooping cough) + -- and flu-like symptoms. + fun Pertussis : Ind (both BacterialDisease VaccinatableDisease) ; + + -- A colorless, extremely toxic gas. It is regarded as the most dangerous of the ChemicalAgents. + -- Deaths resulting from exposure to this ChemicalAgent generally occur in 24 to 48 hours. + fun Phosgene : Class ; + fun Phosgene_Class : SubClass Phosgene ChokingAgent ; + + -- One of the most painful and destructive chemical compounds in existence. Recovery from this ChemicalAgent requires one to three months. + fun PhosgeneOxime : Class ; + fun PhosgeneOxime_Class : SubClass PhosgeneOxime BlisterAgent ; + + -- The disease caused by the Bacterium YersiniaPestis. Plague has two forms depending on + -- the location of the infection within the body, BubonicPlague and PneumonicPlague. + fun Plague : Ind (both BacterialDisease VaccinatableDisease) ; + + -- One of four strains of Plasmodium that are known to cause Malaria. + -- It can cause severe anemia and kidney failure or it can constrict + -- small blood vessels and cause cerebral malaria. + fun PlasmodiumFalciparum : Class ; + fun PlasmodiumFalciparum_Class : SubClass PlasmodiumFalciparum MalarialPlasmodium ; + + -- Also known as pulmonary plague, a variant of the Plague which attacks + -- the lungs and is spread between humans by oral bodily fluids. + fun PneumonicPlague : Ind (both BacterialDisease VaccinatableDisease) ; + + -- A flu_like illness which is caused by Legionella, but which does not involve pneumonia. + fun PontiacFever : Ind BacterialDisease ; + + -- A serious disease caused by ChlamydiaPsittaci that affects both birds and humans. + -- In humans the symptoms include fever, chills, headache, muscle aches, and a dry cough. + -- The disease may give rise to pneumonia in extreme cases. + fun Psittacosis : Ind BacterialDisease ; + + -- A substance that has been shown to protect lower primates from the lethal effects of Soman. + -- Although there is no proof that it does the same for humans, it was administered to soldiers in the Gulf War. + fun PyridostigmineBromide : Class ; + fun PyridostigmineBromide_Class : SubClass PyridostigmineBromide BiologicallyActiveSubstance ; + + -- A disease caused by the rickettsia CoxiellaBurnetii. Causes headache, chills, coughing, hallucinations, + -- fever up to 104 degrees, facial pain, speech impairment, heart inflammation and congestive heart failure. + fun QFever : Ind BacterialDisease ; + + -- Conducting research on the development of Weapons of Mass Destruction. + fun ResearchingWeaponOfMassDestruction : Class ; + fun ResearchingWeaponOfMassDestruction_Class : SubClass ResearchingWeaponOfMassDestruction Investigating ; + + -- An extremely toxic protein found in the castor bean plant (ricinus communis). + -- It is 200 times more toxic than cyanide, and it has no known antidote, and it causes vomiting, high fever, weakness, and death. + fun RicinToxin : Class ; + fun RicinToxin_Class : SubClass RicinToxin (both Protein Toxin); + + -- The Bacterium that causes LouseBorneTyphus. + fun RickettsiaProwazekii : Class ; + fun RickettsiaProwazekii_Class : SubClass RickettsiaProwazekii RickettsialAgent ; + + -- The Bacterium that causes RockyMountainSpottedFever. + fun RickettsiaRickettsii : Class ; + fun RickettsiaRickettsii_Class : SubClass RickettsiaRickettsii RickettsialAgent ; + + -- BiologicalAgents that are rickettsial organisms, i.e. gram_negative bacteria that infect mammals and arthropods. + fun RickettsialAgent : Class ; + fun RickettsialAgent_Class : SubClass RickettsialAgent BacterialAgent ; + + -- A ViralDisease that causes chills, bleeding, and stupor. + fun RiftValleyFever : Class ; + fun RiftValleyFever_Class : SubClass RiftValleyFever ViralDisease ; + + -- A very serious disease that is caused RickettsiaRickettsii, which is carried by ticks. + -- The most distinctive symptom of the disease is a rash of black dots. + fun RockyMountainSpottedFever : Ind (both BacterialDisease LifeThreateningDisease) ; + + -- There are three types of Rotavirus: Group A, Group B, and Group C. They cause an acute form of gastroenteritis, known as RotavirusGastroenteritis. + fun Rotavirus : Class ; + fun Rotavirus_Class : SubClass Rotavirus ViralAgent ; + + -- A disease caused by instances of Rotavirus, and characterized by vomiting, diarrhea, and fever. + fun RotavirusGastroenteritis : Ind ViralDisease ; + + -- The Virus that causes BrazilianHemorrhagicFever. + fun SabiaVirus : Class ; + fun SabiaVirus_Class : SubClass SabiaVirus ViralAgent ; + + -- In mild cases, symptoms are flu_like. In more severe cases, symptoms may include disorientation, coma, tremors, hemorrhage, and convulsions. + fun SaintLouisEncephalitis : Ind (both ViralDisease LifeThreateningDisease) ; + + -- The Virus that causes SaintLouisEncephalitis. Mosquitoes carry this virus, + -- which is then transmitted to humans, when the insects bite them. + fun SaintLouisEncephalitisVirus : Class ; + fun SaintLouisEncephalitisVirus_Class : SubClass SaintLouisEncephalitisVirus ViralAgent ; + + -- Causes a less severe illness than SalmonellaTyphimurium. + fun SalmonellaPartyphi : Class ; + fun SalmonellaPartyphi_Class : SubClass SalmonellaPartyphi BacterialAgent ; + + -- The Bacterium that causes TyphoidFever. + fun SalmonellaTyphi : Class ; + fun SalmonellaTyphi_Class : SubClass SalmonellaTyphi BacterialAgent ; + + -- A bacterium that can cause death in young, elderly or immunodeficient people. It appears in the stool of infected people. + fun SalmonellaTyphimurium : Class ; + fun SalmonellaTyphimurium_Class : SubClass SalmonellaTyphimurium BacterialAgent ; + + -- Also known as GB, one of the G_series nerve agents. + fun Sarin : Class ; + fun Sarin_Class : SubClass Sarin GSeriesNerveAgent ; + + -- A class of chemically related neurotoxins that are produced by marine dinoflagellates and carried by Mollusks. + fun Saxitoxin : Class ; + fun Saxitoxin_Class : SubClass Saxitoxin (both BodySubstance (both CompoundSubstance Toxin)); + + -- A serious disease that may arise if StrepThroat is left untreated. + fun ScarletFever : Ind BacterialDisease ; + + -- A Bacterium that can cause death in infected Humans. + fun SerratiaMarcenscens : Class ; + fun SerratiaMarcenscens_Class : SubClass SerratiaMarcenscens (both BacterialAgent LifeThreateningAgent); + + -- The Toxin produced by the Bacterium ShigellaDysenteriae. + fun ShigaToxin : Class ; + fun ShigaToxin_Class : SubClass ShigaToxin Toxin ; + + -- Causes severe dysentery (even when as little as 100 bacteria are ingested). + -- This form of dysentery results in death in 10_20 percent of infections. + fun ShigellaDysenteriae : Class ; + fun ShigellaDysenteriae_Class : SubClass ShigellaDysenteriae BacterialAgent ; + + -- A highly contagious and dangerous disease. It causes blood loss, + -- cardiovascular collapse, secondary infections, skin pustules, + -- and often leaves survivors scarred and blinded. + -- Approximately 500 million people died from Smallpox in the nineteenth century. + -- The disease can live on objects for several days, and it incubates for + -- twelve days before showing symptoms. + fun Smallpox : Ind ViralDisease ; + + -- Also known as GD, one of the G_series nerve agents. + fun Soman : Class ; + fun Soman_Class : SubClass Soman GSeriesNerveAgent ; + + -- A common cause of food poisoning. It has been studied as a BiologicalAgent, + -- because it is stable, can be converted to aerosol form, and can be lethal when inhaled. + fun StaphylococcalEnterotoxinB : Class ; + fun StaphylococcalEnterotoxinB_Class : SubClass StaphylococcalEnterotoxinB (both LifeThreateningAgent Toxin); + + -- A bacterium that secretes StaphylococcalEnterotoxicB. + -- It causes chills, headache, muscle pain, coughing (which may last for weeks), + -- and sudden fever of up to 106 degrees (which may last for days). + -- It occasionally causes nausea, vomiting, and diarrhea. + fun StaphyylococcusAureus : Class ; + fun StaphyylococcusAureus_Class : SubClass StaphyylococcusAureus BacterialAgent ; + + -- Manufacturing a significant quantity of instances of a WeaponOfMassDestruction, i.e. + -- the weapons are not produced at the scale of a single laboratory or a pilot program. + -- These weapons may or may not be deployed (see DeployingWeaponOfMassDestruction). + fun StockpilingWeaponOfMassDestruction : Class ; + fun StockpilingWeaponOfMassDestruction_Class : SubClass StockpilingWeaponOfMassDestruction (both DevelopingWeaponOfMassDestruction Manufacture); + + -- A BacterialDisease whose symptoms include a very sore throat, difficulty swallowing, high fever, white spots and/or pus on or near the tonsils, and swollen lymph nodes. If left untreated, StrepThroat can progress to ScarletFever. + fun StrepThroat : Ind BacterialDisease ; + + -- The Bacterium that causes strep throat, scarlet fever, and necrotizing faciitis (flesh_eating bacteria). + fun StreptococcusA : Class ; + fun StreptococcusA_Class : SubClass StreptococcusA BacterialAgent ; + + -- A kind of mustard gas. Also known as Yperite and HD. + -- This is regarded b some as the most effective BlisterAgent because it is persistent. + fun SulphurMustardGas : Class ; + fun SulphurMustardGas_Class : SubClass SulphurMustardGas MustardGas ; + + -- A Micotoxin that is found in grains and products made from grains. + -- Symptoms include diarrhea, necrotic lesions, and hemorrhaging. + fun T2Toxin : Class ; + fun T2Toxin_Class : SubClass T2Toxin Mycotoxin ; + + -- Also known as GA, one of the G_series nerve agents. + -- It is about half as toxic as Sarin, but it is more irritating to the eyes than Sarin. + fun Tabun : Class ; + fun Tabun_Class : SubClass Tabun GSeriesNerveAgent ; + + -- Also known as lockjaw, a BacterialDisease that affects the nervous system. A subject is infected with the disease by a puncture of the skin that becomes infected with the ClostridiumTetani bacterium. Symptoms of the disease include muscular stiffness (especially in the jaw and neck), difficulty swallowing, spasms, sweating, and fever. + fun Tetanus : Ind (both BacterialDisease VaccinatableDisease) ; + + -- A Toxin produced by the pufferfish and several other (widely varying) species. + -- The initial symptoms include numbness in the lips and tongue, which spreads throughout the body. + -- The next phase of the poisoning is paralysis, which again spreads throughout the body. + fun Tetrodotoxin : Class ; + fun Tetrodotoxin_Class : SubClass Tetrodotoxin (both BodySubstance (both CompoundSubstance Toxin)); + + -- Any of various forms of encephalitis that are carried by ticks. + -- The diseases have three phases. The first consists of flu_like symptoms, + -- the second is asymptomatic, and the third involves the central nervous system. + fun TickBorneEncephalitis : Class ; + fun TickBorneEncephalitis_Class : SubClass TickBorneEncephalitis (both VaccinatableDisease ViralDisease); + + -- Any Virus whose host is a tick and which carries an instance of TickBorneEncephalitis. + fun TickBorneEncephalitisVirus : Class ; + fun TickBorneEncephalitisVirus_Class : SubClass TickBorneEncephalitisVirus (both LifeThreateningAgent ViralAgent); + + -- An Antibiotic that is administered topically, e.g. Bacitracin. + fun TopicalAntibiotic : Class ; + fun TopicalAntibiotic_Class : SubClass TopicalAntibiotic Antibiotic ; + + -- The Class of Organisms which are poisonous to other Organisms. + fun ToxicOrganism : Class ; + fun ToxicOrganism_Class : SubClass ToxicOrganism (both BiologicalAgent Organism); + + -- BiologicalAgents that are a toxic BiologicallyActiveSubstance produced by + -- an Organism or that are the synthetic analogue of a toxic + -- BiologicallyActiveSubstance produced by an Organism. + fun Toxin : Class ; + fun Toxin_Class : SubClass Toxin (both BiologicalAgent BiologicallyActiveSubstance); + + -- A disease associated with fever, chills, coughing and Tularemia skin lesions (ulcers up to an inch wide). + fun Tularemia : Ind BacterialDisease ; + + -- A life_threatening disease that is caused by SalmonellaTyphi. + fun TyphoidFever : Class ; + fun TyphoidFever_Class : SubClass TyphoidFever DiseaseOrSyndrome ; + + -- More advanced sort of NerveAgent (developed in the 1950's). + -- This subclass of NerveAgents tends to be more persistent and toxic than + -- GSeriesNerveAgents, which were developed earlier. VSeriesNerveAgents include VE, VG, VM, VS, and VX. + fun VSeriesNerveAgent : Class ; + fun VSeriesNerveAgent_Class : SubClass VSeriesNerveAgent NerveAgent ; + + -- One of the V_series nerve agents. + fun VX : Class ; + fun VX_Class : SubClass VX VSeriesNerveAgent ; + + -- A disease for which there is an effective vaccine for Humans. + fun VaccinatableDisease : Class ; + fun VaccinatableDisease_Class : SubClass VaccinatableDisease InfectiousDisease ; + + -- A Virus that causes Smallpox. Also known as the smallpox virus. + fun VariolaMajor : Class ; + fun VariolaMajor_Class : SubClass VariolaMajor ViralAgent ; + + -- A Virus that causes Smallpox. Also known as Alastrim. + fun VariolaMinor : Class ; + fun VariolaMinor_Class : SubClass VariolaMinor ViralAgent ; + + -- Also known as Venezuelan equine encephalomyelitis. + -- Caused by any one of eight distinct Viruses. + -- Symptoms of the disease include severe headache, high fever (up to 105 degrees), + -- sensitivity to light (photophobia), nausea, coughing, and diarrhea. + -- The disease results in central nervous system infection in 1 of 25 children. + fun VenezuelanEquineEncephalitis : Class ; + fun VenezuelanEquineEncephalitis_Class : SubClass VenezuelanEquineEncephalitis (both VaccinatableDisease ViralDisease); + + -- The Virus that causes VenezuelanEquineEncephalitis. + fun VenezuelanEquineEncephalitisVirus : Class ; + fun VenezuelanEquineEncephalitisVirus_Class : SubClass VenezuelanEquineEncephalitisVirus ViralAgent ; + + -- Symptoms of the disease are flu_like in the initial stages. + -- As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. + fun VenezuelanHemorrhagicFever : Ind HemorrhagicFever ; + + -- The Bacterium that is responsible for Cholera. + fun VibrioCholera : Class ; + fun VibrioCholera_Class : SubClass VibrioCholera BacterialAgent ; + + -- BiologicalAgents that are also a Virus. + fun ViralAgent : Class ; + fun ViralAgent_Class : SubClass ViralAgent (both ToxicOrganism Virus); + + -- A highly lethal, weaponized form of BacillusAnthracis developed by the United States government. + fun Vollum1B : Class ; + fun Vollum1B_Class : SubClass Vollum1B AerosolizedBacillusAnthracis ; + + -- Facilities where instances of WeaponOfMassDestruction are built. + fun WMDWeaponsProductionFacility : Class ; + fun WMDWeaponsProductionFacility_Class : SubClass WMDWeaponsProductionFacility StationaryArtifact ; + + -- Facilities where research on instances of WeaponOfMassDestruction is performed. + fun WMDWeaponsResearchFacility : Class ; + fun WMDWeaponsResearchFacility_Class : SubClass WMDWeaponsResearchFacility StationaryArtifact ; + + -- A flu_like disease that is caused by the WestNileVirus. + -- The disease is generally not life_threatening. + -- However, it can be very serious if it progresses to West Nile Encephalitis, + -- West Nile Meningitis or West Nile Meningoencephalitis, + -- all of which are inflammations of the brain and/or spinal cord. + fun WestNileFever : Ind ViralDisease ; + + -- A flavivirus that causes WestNileFever. + fun WestNileVirus : Class ; + fun WestNileVirus_Class : SubClass WestNileVirus ViralAgent ; + + -- A Virus that can result in chills, fever, stomach bleeding, and YellowSkin. + fun YellowFeverVirus : Class ; + fun YellowFeverVirus_Class : SubClass YellowFeverVirus ViralAgent ; + + -- Is caused by liver failure, + -- which results in an accumulation of bile. It is caused by YellowFeverVirus. + fun YellowSkin : Ind ViralDisease ; + + -- The Bacterium that causes Plague. + fun YersiniaPestis : Class ; + fun YersiniaPestis_Class : SubClass YersiniaPestis (both BacterialAgent LifeThreateningAgent); + + -- Causes a disease whose symptoms include + -- diarrhea, fever, headache, skin ulcers, and post_infectious arthritis. + fun YersiniaPseudotuberculosis : Class ; + fun YersiniaPseudotuberculosis_Class : SubClass YersiniaPseudotuberculosis BacterialAgent ; + + -- (biochemicalAgentAntidote ?AGENT ?SUBSTANCE ?PROCESS) means that + -- the BiologicallyActiveSubstance ?SUBSTANCE has been shown to be effective + -- in treating someone who has been exposed to the BiochemicalAgent ?AGENT + -- when the ?SUBSTANCE is administered via the Process ?PROCESS. + fun biochemicalAgentAntidote: El BiochemicalAgent -> Desc BiologicallyActiveSubstance -> Desc Process -> Formula ; + + -- (biochemicalAgentDelivery ?AGENT ?PROCESS) means that the Process ?PROCESS is + -- capable of infecting an organism with the BiochemicalAgent ?AGENT when + -- the organism is the experiencer and the ?AGENT the patient of an instance of ?PROCESS. + fun biochemicalAgentDelivery: Desc BiochemicalAgent -> Desc Process -> Formula ; + + -- Relates a subclass of BiochemicalAgent to a DiseaseOrSyndrome that is caused by or + -- often associated with the BiochemicalAgent. + fun biochemicalAgentSyndrome: Desc BiochemicalAgent -> El DiseaseOrSyndrome -> Formula ; + + -- (biologicalAgentCarrier ?AGENT ?ORGANISM) means that the subclass of Organism ?ORGANISM + -- is a carrier of the subclass of BiologicalAgent ?AGENT. + fun biologicalAgentCarrier: Desc BiologicalAgent -> Desc Organism -> Formula ; + + -- A predicate that specifies the time frame for the incubation of a DiseaseOrSyndrome. + -- (diseaseIncubation ?DISEASE ?TIME1 ?TIME2) means that the DiseaseOrSyndrome ?DISEASE + -- will appear between ?TIME1 and ?TIME2 after the subject has been infected with + -- the BiologicalAgent causing ?DISEASE. + fun diseaseIncubation: El DiseaseOrSyndrome -> Desc TimeDuration -> Desc TimeDuration -> Formula ; + + -- (diseaseMortality ?DISEASE ?NUMBER) means that DiseaseOrSyndrome ?DISEASE has a Mortality rate of ?NUMBER. + fun diseaseMortality : El DiseaseOrSyndrome -> El RealNumber -> Formula ; + + -- (diseaseSymptom ?DISEASE ?SYMPTOM) means that DiseaseOrSyndrome ?DISEASE is often associated with + -- the DiseaseOrSyndrome ?SYMPTOM, i.e. an Organism which suffers from ?DISEASE is more likely + -- to suffer from ?SYMPTOM than one which does not. + fun diseaseSymptom : El DiseaseOrSyndrome -> El DiseaseOrSyndrome -> Formula ; + + -- (diseaseTreatment ?DISEASE ?SUBSTANCE ?PROCESS) means that the BiologicallyActiveSubstance ?SUBSTANCE is + -- effective in the treatment of the DiseaseOrSyndrome ?DISEASE when administered via the Process ?PROCESS, + -- i.e. it has been demonstrated (in a significant sample of patients) to cure the ?DISEASE or + -- at least reduce the severity of symptoms associated with the ?DISEASE. + fun diseaseTreatment: El DiseaseOrSyndrome -> Desc BiologicallyActiveSubstance -> Desc Process -> Formula ; + + -- (effectiveDose ?AGENT ?QUANTITY) means that ?QUANTITY is the effective dose, or ED50, + -- for the BiochemicalAgent ?AGENT. This is the dose that would incapacitate 50% of + -- the exposed human population. Note that ?QUANTITY is generally expressed in micrograms per kilogram (mcg/kg). + fun effectiveDose: Desc BiochemicalAgent -> El FunctionQuantity -> Formula ; + + -- (lethalDose ?AGENT ?QUANTITY) means that ?QUANTITY is the lethal dose, + -- or LD50, for the BiochemicalAgent ?AGENT. + -- This is the dose that would result in death for 50% of the exposed human population. + -- Note that ?QUANTITY is generally expressed in micrograms per kilogram (mcg/kg). + fun lethalDose: Desc BiochemicalAgent -> El FunctionQuantity -> Formula ; + + -- (secretesToxin ?ORGANISM ?TOXIN) means that the + -- subclass of Organism ?ORGANISM produces the subclass of Toxin ?TOXIN. + fun secretesToxin: Desc Organism -> Desc Toxin -> Formula ; + + -- A predicate that is used to specify a side effect of + -- a substance used in a medical treatment. + -- (sideEffect ?SUBSTANCE ?SYNDROME) means that + -- the BiologicallyActiveSubstance ?SUBSTANCE has the side effect ?SYNDROME. + fun sideEffect : El BiologicallyActiveSubstance -> El DiseaseOrSyndrome -> Formula ; - - - --- An extremely toxic protein found in the seeds of the rosary pea. Its mechanism, symptoms, and treatment are very similar to those of RicinToxin. However, AbrinToxin is roughly 75 times more toxic than RicinToxin. -fun AbrinToxin : Class ; -fun AbrinToxin_ProteinToxin : SubClass AbrinToxin (both Protein Toxin); - - --- A BiochemicalAgent that has been divided into particles so minute that they can be easily dispersed in the air and inhaled by Humans or Animals. AerosolizedAgents tend to be more lethal and to affect a larger area. -fun AerosolizedAgent : Class ; -fun AerosolizedAgent_BiochemicalAgent : SubClass AerosolizedAgent BiochemicalAgent ; - - --- Also known as weaponized anthrax. These are spores of BacillusAnthracis that have been separated to the point that they can be dispersed in the air and easily inhaled by crowds. -fun AerosolizedBacillusAnthracis : Class ; -fun AerosolizedBacillusAnthracis_AerosolizedAgentBacillusAnthracis : SubClass AerosolizedBacillusAnthracis (both AerosolizedAgent BacillusAnthracis); - - --- The disease has rarely been observed in humans, but it can cause severe damage to the liver, including cirrhosis and liver cancer, in a large number of animal species. -fun Aflatoxicosis : Ind LifeThreateningDisease ; - - --- Toxins produced by fungi of the strains Aspergillus Flavus and Aspergillus Parasiticus. There are four varieties of Aflatoxin, viz. B1, B2, G1, and G2. B1 is most common and most toxic. -fun Aflatoxin : Class ; -fun Aflatoxin_Mycotoxin : SubClass Aflatoxin Mycotoxin ; - - --- The disease caused by BacillusAnthracis. Victims of the disease may experience a brief, apparent recovery before death. -fun Anthrax : Ind BacterialDisease ; - - --- A disease that attacks the immune system and that is caused by the HIVVirus. Patients are usually infected through blood or semen. -fun AquiredImmunoDeficiencySyndrome : Class ; -fun AquiredImmunoDeficiencySyndrome_DiseaseOrSyndrome : SubClass AquiredImmunoDeficiencySyndrome DiseaseOrSyndrome ; - - --- Symptoms of the disease are flu_like in the initial stages. As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. -fun ArgentinianHemorrhagicFever : Ind HemorrhagicFever ; - - --- A very toxic form of arsenic that is 2 and a half times denser than air. Victims who die after exposure to Arsine generally die from renal failure. -fun Arsine : Class ; -fun Arsine_BloodAgent : SubClass Arsine BloodAgent ; - - --- An anticholinergic agent. -fun Atropine : Class ; -fun Atropine_BiologicallyActiveSubstance : SubClass Atropine BiologicallyActiveSubstance ; - - --- Stockpiled for a time by both NATO and the Warsaw Pact countries, BZGas is a psychoactive agent that is heaver than air and reputedly ten times more powerful than LSD. Effects of the gas are not well understood, but they include vomiting, lethargy, loss of motor co_ordination, and cognitive incapacity. -fun BZGas : Class ; -fun BZGas_IncapacitatingAgent : SubClass BZGas IncapacitatingAgent ; - - --- The Bacterium which causes the disease Anthrax. Humans may become infected with Anthrax via contamination of a wound or by inhaling the Bacterium. When it is inhaled, the disease is often fatal if not treated early (see InhalationalAnthrax). -fun BacillusAnthracis : Class ; -fun BacillusAnthracis_BacterialAgent : SubClass BacillusAnthracis BacterialAgent ; - - --- A Bacterium that is closely related to and often found near BacillusAnthracis, the Bacterium that causes Anthrax. BacillusCereus causes two forms of food poisoning, one characterized by diarrhea and the other by vomiting. In most cases the disease is not life_threatening. -fun BacillusCereus : Class ; -fun BacillusCereus_BacterialAgent : SubClass BacillusCereus BacterialAgent ; - - --- A common topical antibiotic. -fun Bacitracin : Class ; -fun Bacitracin_TopicalAntibiotic : SubClass Bacitracin TopicalAntibiotic ; - - --- BiologicalAgents that are instances of Bacterium. -fun BacterialAgent : Class ; -fun BacterialAgent_BacteriumToxicOrganism : SubClass BacterialAgent (both Bacterium ToxicOrganism); - - --- A Toxin produced by some species of Frogs. -fun Batrachotoxin : Class ; -fun Batrachotoxin_BodySubstanceToxin : SubClass Batrachotoxin (both BodySubstance Toxin); - - --- A BiologicalAgent or a ChemicalAgent. -fun BiochemicalAgent : Class ; -fun BiochemicalAgent_BiologicallyActiveSubstance : SubClass BiochemicalAgent BiologicallyActiveSubstance ; - - --- Attacks in which a BiochemicalWeapon is used against an Organism. -fun BiochemicalAttack : Class ; -fun BiochemicalAttack_Attack : SubClass BiochemicalAttack Attack ; - - --- A WeaponOfMassDestruction that is either a BiologicalWeapon or a ChemicalWeapon, i.e. not a RadioactiveWeapon. -fun BiochemicalWeapon : Class ; -fun BiochemicalWeapon_WeaponOfMassDestruction : SubClass BiochemicalWeapon WeaponOfMassDestruction ; - - --- A naturally occurring Substance, or a synthetic analogue of such a substance or an Organism that is capable of inflicting severe harm on other Organisms. All BiologicalWeapons contain a BiologicalAgent. -fun BiologicalAgent : Class ; -fun BiologicalAgent_BiochemicalAgent : SubClass BiologicalAgent BiochemicalAgent ; - - --- Weapons which contain a sample of ToxicOrganism or a BiologicallyActiveSubstance that is produced by a ToxicOrganism (or a synthetic analogue of the latter). -fun BiologicalWeapon : Class ; -fun BiologicalWeapon_BiochemicalWeapon : SubClass BiologicalWeapon BiochemicalWeapon ; - - --- ChemicalAgents that affect eyes, lungs, and skin. BlisterAgents are so named because they cause blistering of the skin. They may also cause blindness and respiratory damage. -fun BlisterAgent : Class ; -fun BlisterAgent_ChemicalAgent : SubClass BlisterAgent ChemicalAgent ; - - --- A CompoundSubstance that prevents the normal use of oxygen by bodily tissues. BloodAgents are highly volatile and disperse easily in the open air. -fun BloodAgent : Class ; -fun BloodAgent_ChemicalAgent : SubClass BloodAgent ChemicalAgent ; - - --- Symptoms of the disease are flu_like in the initial stages. As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. -fun BolivianHemorrhagicFever : Ind HemorrhagicFever ; - - --- The Bacterium that causes Pertussis. -fun BordetellaPertussis : Class ; -fun BordetellaPertussis_BacterialAgent : SubClass BordetellaPertussis BacterialAgent ; - - --- A Toxin produced by the bacterium ClostridiumBotulinum. It paralyzes muscles if ingested, and one billionth of a pound is sufficient to cause death. -fun BotulinumToxin : Class ; -fun BotulinumToxin_BodySubstanceLifeThreateningAgentToxin : SubClass BotulinumToxin (both BodySubstance (both LifeThreateningAgent Toxin)); - - --- A paralytic disease caused by BotulinumToxin, a Toxin produced by the bacterium ClostridiumBotulinum. -fun Botulism : Ind (both BacterialDisease (both LifeThreateningDisease VaccinatableDisease)) ; - - --- Symptoms of the disease are flu_like in the initial stages. As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. -fun BrazilianHemorrhagicFever : Ind HemorrhagicFever ; - - --- The Bacterium which is responsible for the disease Brucellosis. This class covers Brucella Abortus (which infects humans and cattle), Brucella Melitensis (which infects sheep, goats, and humans), and Brucella Suis (which infects pigs). -fun BrucellaBacterium : Class ; -fun BrucellaBacterium_BacterialAgent : SubClass BrucellaBacterium BacterialAgent ; - - --- Infectious disease caused by BrucellaBacterium. It is also known as undulant fever and malta fever, depending on the strain of BrucellaBacterium that is reponsible for the infection. -fun Brucellosis : Ind BacterialDisease ; - - --- A variant of the Plague which results in large swellings, called buboes. -fun BubonicPlague : Ind (both BacterialDisease VaccinatableDisease) ; - - --- The Bacterium that causes the disease Glanders. It is transmitted to humans by direct contact with infected animals. The bacteria enter the body through the skin and the mucosal surfaces of the eyes and nose. -fun BurkholderiaMallei : Class ; -fun BurkholderiaMallei_BacterialAgent : SubClass BurkholderiaMallei BacterialAgent ; - - --- Formerly known as Pseudomonas Pseudomallei, this is the Bacterium that causes Melioidosis. -fun BurkholderiaPseudomallei : Class ; -fun BurkholderiaPseudomallei_BacterialAgent : SubClass BurkholderiaPseudomallei BacterialAgent ; - - -fun CSGas : Class ; -fun CSGas_IncapacitatingAgent : SubClass CSGas IncapacitatingAgent ; - --- Synthetic compounds that are not an analogue of anything occurring naturally and that can result in serious burns, paralysis, and death to Organisms. -fun ChemicalAgent : Class ; -fun ChemicalAgent_BiochemicalAgentBiologicallyActiveSubstanceCompoundSubstance : SubClass ChemicalAgent (both BiochemicalAgent (both BiologicallyActiveSubstance CompoundSubstance)); - - --- Weapons that damage or destroy Organisms by means of a ChemicalAgent. -fun ChemicalWeapon : Class ; -fun ChemicalWeapon_BiochemicalWeapon : SubClass ChemicalWeapon BiochemicalWeapon ; - - --- The Bacterium that causes Psittacosis. -fun ChlamydiaPsittaci : Class ; -fun ChlamydiaPsittaci_BacterialAgent : SubClass ChlamydiaPsittaci BacterialAgent ; - - --- A poisonous gas. -fun ChlorineGas : Class ; -fun ChlorineGas_ChokingAgent : SubClass ChlorineGas ChokingAgent ; - - --- Poisonous gas which has effects similar to tear gas. If ingested, the gas causes gastroenteritis. -fun Chloropicrin : Class ; -fun Chloropicrin_ChokingAgent : SubClass Chloropicrin ChokingAgent ; - - --- ChemicalAgents designed to cause the lungs to fill with fluid, which can result in the victim choking to death. ChokingAgents are heavy gases that are less effective than other ChemicalAgents because they can be easily dissipated by a slight wind. -fun ChokingAgent : Class ; -fun ChokingAgent_ChemicalAgent : SubClass ChokingAgent ChemicalAgent ; - - --- A diarrheal disease that is caused by a Toxin secreted by the Bacterium VibrioCholera. Death may result from severe dehydration caused by the disease. There is little if any fever and abdominal pain with this illness. -fun Cholera : Ind (both BacterialDisease (both VaccinatableDisease LifeThreateningDisease)) ; - - --- An OralAntibiotic that is often used to prevent complications from AquiredImmunoDeficiencySyndrome. Recommended for prevention of inhalational Anthrax in subjects who may have been exposed to aeresolized BacillusAnthracis. -fun Ciprofloxacin : Class ; -fun Ciprofloxacin_OralAntibiotic : SubClass Ciprofloxacin OralAntibiotic ; - - --- The Bacterium that produces BotulinumToxin. -fun ClostridiumBotulinum : Class ; -fun ClostridiumBotulinum_BacterialAgent : SubClass ClostridiumBotulinum BacterialAgent ; - - --- Bacterium often found in the intestines of Animals. Ingesting this Bacterium can result in Perfringens food poisoning, which can attack internal organs and lead to gangrene. -fun ClostridiumPerfringens : Class ; -fun ClostridiumPerfringens_BacterialAgent : SubClass ClostridiumPerfringens BacterialAgent ; - - --- The Bacterium that causes the disease Tetanus. -fun ClostridiumTetani : Class ; -fun ClostridiumTetani_BacterialAgent : SubClass ClostridiumTetani BacterialAgent ; - - --- A recently discovered Fungus that is related to CoccidioidesImmitis and that also causes RiftValleyFever. -fun CoccidiodesPosadasii : Class ; -fun CoccidiodesPosadasii_FungalAgentLifeThreateningAgent : SubClass CoccidiodesPosadasii (both FungalAgent LifeThreateningAgent); - - --- A Fungus that causes RiftValleyFever, an illness whose symptoms include fever, chills, and coughing and which may result in death. -fun CoccidioidesImmitis : Class ; -fun CoccidioidesImmitis_FungalAgentLifeThreateningAgent : SubClass CoccidioidesImmitis (both FungalAgent LifeThreateningAgent); - - --- A class of neurotoxins that are produced by the Pacific cone snails. The lethality of these toxins varies widely, and it would be impractical to manufacture them on a large scale. -fun Conotoxin : Class ; -fun Conotoxin_BodySubstanceCompoundSubstanceToxin : SubClass Conotoxin (both BodySubstance (both CompoundSubstance Toxin)); - - --- The Bacterium that secretes a Toxin that causes Diphtheria. -fun CorynebacteriumDiphtheriae : Class ; -fun CorynebacteriumDiphtheriae_BacterialAgent : SubClass CorynebacteriumDiphtheriae BacterialAgent ; - - --- The Bacterium that causes QFever. -fun CoxiellaBurnetii : Class ; -fun CoxiellaBurnetii_RickettsialAgent : SubClass CoxiellaBurnetii RickettsialAgent ; - - --- A widespread disease which was initially identified in the Crimea and the Congo, which accounts for its name. The disease has a high mortality rate for humans, but infection of humans occurs infrequently. -fun CrimeanCongoHemorrhagicFever : Ind (both HemorrhagicFever LifeThreateningDisease) ; - - --- The Virus that causes CrimeanCongoHemorrhagicFever. -fun CrimeanCongoHemorrhagicFeverVirus : Class ; -fun CrimeanCongoHemorrhagicFeverVirus_ViralAgent : SubClass CrimeanCongoHemorrhagicFeverVirus ViralAgent ; - - --- Used in mining and metalurgy, it is very similar to HydrogenCyanide. However, it is less volatile than HydrogenCyanide, and its effects on the eyes, respiratory tract, and lungs is similar to Phosgene and ChorineGas. -fun CyanogenChloride : Class ; -fun CyanogenChloride_BloodAgent : SubClass CyanogenChloride BloodAgent ; - - --- Integrating a WeaponOfMassDestruction with a conventional weapon, so that the former can be delivered to its target. -fun DeliveringWeaponOfMassDestruction : Class ; -fun DeliveringWeaponOfMassDestruction_Making : SubClass DeliveringWeaponOfMassDestruction Making ; - - --- The less serious disease caused by the DengueFeverVirus. Symptoms include fever and severe headache. -fun DengueFever : Ind ViralDisease ; - - --- Any of four related but distinct virus serotypes that are carried by the Aedes Aegypti mosquito and that can cause DengueFever and DengueHemorrhagicFever. -fun DengueFeverVirus : Class ; -fun DengueFeverVirus_ViralAgent : SubClass DengueFeverVirus ViralAgent ; - - --- The more serious disease caused by the & %DengueFeverVirus. Symptoms include bleeding from the nose, mouth, and gums, and excessive thirst and difficulty breathing. -fun DengueHemorrhagicFever : Ind (both HemorrhagicFever LifeThreateningDisease) ; - - --- Positioning a chemical, biological or radioactive weapon for the purpose of bringing about harm of some kind. -fun DeployingWeaponOfMassDestruction : Class ; -fun DeployingWeaponOfMassDestruction_IntentionalProcessPutting : SubClass DeployingWeaponOfMassDestruction (both IntentionalProcess Putting); - - --- Making instances of WeaponOfMassDestruction. -fun DevelopingWeaponOfMassDestruction : Class ; -fun DevelopingWeaponOfMassDestruction_Making : SubClass DevelopingWeaponOfMassDestruction Making ; - - --- A Micotoxin that is found in grains and products made from grains. Symptoms include diarrhea, necrotic lesions, and hemorrhaging. -fun Diacetoxyscirpenol : Class ; -fun Diacetoxyscirpenol_Mycotoxin : SubClass Diacetoxyscirpenol Mycotoxin ; - - --- A chelating agent often used to treat Lewisite, as well as Lead Poisoning. -fun Dimercaprol : Class ; -fun Dimercaprol_BiologicallyActiveSubstance : SubClass Dimercaprol BiologicallyActiveSubstance ; - - --- A poisonous gas that irritates the lungs and that is similar to Phosgene. -fun Diphosgene : Class ; -fun Diphosgene_ChokingAgent : SubClass Diphosgene ChokingAgent ; - - --- The disease can infect almost any mucous membrane. It causes fever, chills, headache, and nausea. In severe cases it may affect heart rhythm and motor coordination. -fun Diphtheria : Ind (both BacterialDisease LifeThreateningDisease) ; - - --- Dismantling a Weapon of Mass Destruction, i.e. destroying the weapon or removing it from active deployment. -fun DismantlingWeaponOfMassDestruction : Class ; -fun DismantlingWeaponOfMassDestruction_IntentionalProcess : SubClass DismantlingWeaponOfMassDestruction IntentionalProcess ; - - --- An OralAntibiotic that is used to treat a wide variety of BacterialDiseases, including traveler's diarrhea. Recommended for prevention of inhalational Anthrax in subjects who may have been exposed to aeresolized BacillusAnthracis. -fun Doxycycline : Class ; -fun Doxycycline_OralAntibiotic : SubClass Doxycycline OralAntibiotic ; - - --- In mile cases, symptoms are flu_like. In more severe cases, the disease may result in encephalitis, coma, and death. -fun EasternEquineEncephalitis : Ind (both ViralDisease LifeThreateningDisease) ; - - --- The Virus that causes EasternEquineEncephalitis. Mosquitoes carry this virus, which is then transmitted to humans, when the insects bite them. -fun EasternEquineEncephalitisVirus : Class ; -fun EasternEquineEncephalitisVirus_ViralAgent : SubClass EasternEquineEncephalitisVirus ViralAgent ; - - --- A very serious HemorrhagicFever, which often results in death. -fun EbolaHemorrhagicFever : Ind HemorrhagicFever ; - - --- A Virus that causes a form of hemorrhagic fever. -fun EbolaVirus : Class ; -fun EbolaVirus_ViralAgent : SubClass EbolaVirus ViralAgent ; - - --- A Toxin produced by the bacterium ClostridiumPerfringens that causes a mild form of food poisoning that lasts one to two days. -fun EpsilonToxin : Class ; -fun EpsilonToxin_BodySubstanceToxin : SubClass EpsilonToxin (both BodySubstance Toxin); - - --- One of hundreds of strains of the Escherichia Coli Bacterium. This strain lives in the intestines of healthy cattle, but it can cause severe illness when ingested by humans. -fun EscherichiaColi0157H7 : Class ; -fun EscherichiaColi0157H7_BacterialAgent : SubClass EscherichiaColi0157H7 BacterialAgent ; - - --- A Virus that that is responsible for a hemorrhagic fever found in South America. -fun FlexalVirus : Class ; -fun FlexalVirus_ViralAgent : SubClass FlexalVirus ViralAgent ; - - --- A Virus that is smaller than YellowFeverVirus. -fun FootAndMouthVirus : Class ; -fun FootAndMouthVirus_ViralAgent : SubClass FootAndMouthVirus ViralAgent ; - - --- The Bacterium that causes the disease Tularemia. Also known as Pasturella Tularensis. The Bacterium has two strains, Jellison type A (F. tularensis biovar tularensis) and type B strains (F tularensis biovar palaearctica), and it is infectious with a dose as small as 50 cells per milliliter. -fun FrancisellaTularensis : Class ; -fun FrancisellaTularensis_BacterialAgent : SubClass FrancisellaTularensis BacterialAgent ; - - --- Any BiologicalAgent that is also a Fungus. -fun FungalAgent : Class ; -fun FungalAgent_FungusToxicOrganism : SubClass FungalAgent (both Fungus ToxicOrganism); - - --- One of the G_series nerve agents. -fun GF : Class ; -fun GF_GSeriesNerveAgent : SubClass GF GSeriesNerveAgent ; - - --- Earliest sort of NerveAgent (developed in the 1930's). This subclass of NerveAgents tends to be less persistent, more volatile, and less toxic than VSeriesNerveAgents, which were developed later. GSeriesNerveAgents include Tabun, Sarin, and Soman. -fun GSeriesNerveAgent : Class ; -fun GSeriesNerveAgent_NerveAgent : SubClass GSeriesNerveAgent NerveAgent ; - - --- Inflammation of the gastrointestinal tract, i.e. the stomach and small and large intestines. The symptoms include diarrhea, vomiting, and abdominal pain. -fun Gastroenteritis : Ind DiseaseOrSyndrome ; - - --- The class of Organisms that are not found originally in nature, but are produced in a laboratory by manipulating the genes of naturally occurring organisms. -fun GeneticallyEngineeredOrganism : Class ; -fun GeneticallyEngineeredOrganism_Organism : SubClass GeneticallyEngineeredOrganism Organism ; - - --- A Bacterium that causes Gastroenteritis. It is present in many streams and lakes, and it is carried by beavers and other animals. -fun GiardiaLamblia : Class ; -fun GiardiaLamblia_BacterialAgent : SubClass GiardiaLamblia BacterialAgent ; - - --- A disease caused by BurkholderiaMallei. Primary symptoms of Glanders include fever, muscle aches, chest pain, muscle tightness, and headache. Additional symptoms include tearing of the eyes, light sensitivity, and diarrhea. There is no vaccine for this disease. -fun Glanders : Ind BacterialDisease ; - - --- A disease caused by the bacterium NeisseriaGonorrhoeae. -fun Gonorrhea : Ind BacterialDisease ; - - --- The Virus that causes VenezuelanHemorrhagicFever. -fun GuanaritoVirus : Class ; -fun GuanaritoVirus_ViralAgent : SubClass GuanaritoVirus ViralAgent ; - - --- The Virus that causes AquiredImmunoDeficiencySyndrome. -fun HIVVirus : Class ; -fun HIVVirus_ViralAgent : SubClass HIVVirus ViralAgent ; - - --- A severe syndrome that affects multiple organs of the body. Typically, the vascular system is damaged, and the body's ability to regulate itself is impaired. -fun HemorrhagicFever : Class ; -fun HemorrhagicFever_ViralDisease : SubClass HemorrhagicFever ViralDisease ; - - --- A Virus found in Australia and Papua New Guinea that infects humans and horses. The natural host of the virus appears to be fruit bats. Not much is known about the disease caused by the HendraVirus, but it seems to begin with fever and then progress to drowsiness and coma. -fun HendraVirus : Class ; -fun HendraVirus_ViralAgent : SubClass HendraVirus ViralAgent ; - - --- A class of ViralDiseases that attack the liver. -fun Hepatitis : Class ; -fun Hepatitis_ViralDisease : SubClass Hepatitis ViralDisease ; - - --- A disease that attacks the liver and causes jaundice as well as flu_like symptoms. There is no chronic infection with this disease, and anyone who has recovered from it will have life_time immunity to the disease. -fun HepatitisA : Ind (both Hepatitis VaccinatableDisease) ; - - --- The Virus that causes HepatitisA. -fun HepatitisAVirus : Class ; -fun HepatitisAVirus_HepatitisVirus : SubClass HepatitisAVirus HepatitisVirus ; - - --- Like other forms of hepatitis, HepatitisB attacks the liver of the victim. The disease may result in death from chronic liver disease. -fun HepatitisB : Ind (both Hepatitis (both VaccinatableDisease LifeThreateningDisease)) ; - - --- The Virus that causes HepatitisB. -fun HepatitisBVirus : Class ; -fun HepatitisBVirus_HepatitisVirus : SubClass HepatitisBVirus HepatitisVirus ; - - --- Like other forms of hepatitis, HepatitisC attacks the liver of the victim. The disease often results in chronic infection and chronic liver disease, although the mortality rate of this disease is lower than that of HepatitisB. Most cases of HepatitisC are due to injections of illegal drugs. -fun HepatitisC : Ind (both Hepatitis LifeThreateningDisease) ; - - --- The Virus that causes HepatitisC. -fun HepatitisCVirus : Class ; -fun HepatitisCVirus_HepatitisVirus : SubClass HepatitisCVirus HepatitisVirus ; - - --- Viruses that cause Hepatitis. -fun HepatitisVirus : Class ; -fun HepatitisVirus_ViralAgent : SubClass HepatitisVirus ViralAgent ; - - --- The disease caused by HerpesBVirus. -fun HerpesB : Ind (both ViralDisease LifeThreateningDisease) ; - - --- A virus which is carried by Macaque monkeys and which does not harm these primates, but which causes the very serious HerpesB disease in humans. -fun HerpesBVirus : Class ; -fun HerpesBVirus_ViralAgent : SubClass HerpesBVirus ViralAgent ; - - --- A ChemicalAgent that was widely used by the Nazis in extermination camps. A low dose can cause headache, disorientation, and vomiting, while a high dose can rapidly result in respiratory and/or cardiac arrest. -fun HydrogenCyanide : Class ; -fun HydrogenCyanide_BloodAgent : SubClass HydrogenCyanide BloodAgent ; - - --- ChemicalAgents that are designed to cause temporary disability in victims. -fun IncapacitatingAgent : Class ; -fun IncapacitatingAgent_ChemicalAgent : SubClass IncapacitatingAgent ChemicalAgent ; - - --- A contagious disease caused by a large number of Viruses. -fun Influenza : Class ; -fun Influenza_VaccinatableDiseaseViralDisease : SubClass Influenza (both VaccinatableDisease ViralDisease); - - --- Almost 100% fatal if left untreated for more than 24 hours. -fun InhalationalAnthrax : Ind (both BacterialDisease LifeThreateningDisease) ; - - --- Most people who are infected with this disease will suffer only mild symptoms. However, in severe cases, the disease attacks the central nervous system and may result in death. -fun JapaneseEncephalitis : Ind (both ViralDisease (both LifeThreateningDisease VaccinatableDisease)) ; - - --- The Virus that causes JapaneseEncephalitis. Mosquitoes in agricultural areas of Asia carry this virus, which is then transmitted to humans, when the insects bite them. -fun JapaneseEncephalitisVirus : Class ; -fun JapaneseEncephalitisVirus_ViralAgent : SubClass JapaneseEncephalitisVirus ViralAgent ; - - --- This Virus derives its name from the Junin area of Argentina, where occurrences have so far been restricted. -fun JuninVirus : Class ; -fun JuninVirus_ViralAgent : SubClass JuninVirus ViralAgent ; - - --- A cephalosporin for treating bacterial infections. -fun Keflex : Class ; -fun Keflex_OralAntibiotic : SubClass Keflex OralAntibiotic ; - - --- A tick_borne encephalitis that is largely restricted to the Shimoga and Kanara district of Karnataka, India. -fun KyasanurForestDisease : Ind TickBorneEncephalitis ; - - --- The Virus that carries KyasanurForestDisease. -fun KyasanurForestDiseaseVirus : Class ; -fun KyasanurForestDiseaseVirus_TickBorneEncephalitisVirus : SubClass KyasanurForestDiseaseVirus TickBorneEncephalitisVirus ; - - --- Encephalitis caused by the LaCrosseVirus. In its most severe cases, the disease may result in seizure and/or coma, but most infections are relatively mild. -fun LaCrosseEncephalitis : Ind ViralDisease ; - - --- The Virus that causes LaCrossEncephalitis. It is carried by the Aedes Triseriatus mosquito, as well as various woodlands rodents. -fun LaCrosseVirus : Class ; -fun LaCrosseVirus_ViralAgent : SubClass LaCrosseVirus ViralAgent ; - - --- A viral, rodent_carried disease found in West Africa. The symptoms of the disease are wide_ranging and can be life_threatening. The disease can lead to permanent neurological problems, including deafness. -fun LassaFever : Ind (both ViralDisease LifeThreateningDisease) ; - - --- The Virus that causes LassaFever. -fun LassaVirus : Class ; -fun LassaVirus_ViralAgent : SubClass LassaVirus ViralAgent ; - - --- The Bacterium that causes Legionellosis, which is known as LegionnairesDisease (when it infects the lungs) and PontiacFever (when it doesn't affect the lungs). -fun Legionella : Class ; -fun Legionella_BacterialAgent : SubClass Legionella BacterialAgent ; - - --- The disease caused by the Bacterium Legionella. -fun Legionellosis : Ind BacterialDisease ; - - --- The most severe form of Legionellosis. It is characterized by pneumonia. -fun LegionnairesDisease : Ind (both BacterialDisease LifeThreateningDisease) ; - - --- Besides being a BlisterAgent, Lewisite causes systemic poisoning. Its symptoms include pulmonary edema, diarrhea, reduced body temperature and blood pressure. When large quantities of Lewisite are inhaled, it can cause death in as little as 10 minutes. -fun Lewisite : Class ; -fun Lewisite_BlisterAgent : SubClass Lewisite BlisterAgent ; - - --- A BiochemicalAgent that has been observed to cause the death of Humans. -fun LifeThreateningAgent : Class ; -fun LifeThreateningAgent_BiochemicalAgent : SubClass LifeThreateningAgent BiochemicalAgent ; - - --- A DiseaseOrSyndrome that has been observed to cause the death of Humans. -fun LifeThreateningDisease : Class ; -fun LifeThreateningDisease_DiseaseOrSyndrome : SubClass LifeThreateningDisease DiseaseOrSyndrome ; - - --- The only rickettsial disease which is capable of causing widespread human epidemics. The initial symptoms of the disease are flu_like, but on the fifth or sixth day of infection a macular eruption appears on the upper trunk of the body and then spreads to the rest of the body. -fun LouseBorneTyphus : Ind BacterialDisease ; - - --- The Virus that causes BolivianHemorrhagicFever. -fun MachupoVirus : Class ; -fun MachupoVirus_ViralAgent : SubClass MachupoVirus ViralAgent ; - - --- A disease that destroys red blood cells. It is caused by a Microorganism (see MalarialPlasmodium) that is carried by the Anopheles Gambiae mosquito. -fun Malaria : Ind (both InfectiousDisease LifeThreateningDisease) ; - - --- Any of four strains of Plasmodium that are known to cause Malaria. -fun MalarialPlasmodium : Class ; -fun MalarialPlasmodium_BiologicalAgentMicroorganism : SubClass MalarialPlasmodium (both BiologicalAgent Microorganism); - - --- Extremely serious disease caused by the MarburgVirus. Symptoms include high fever, myalgias, vomiting, and diarrhea. Typically involves major organs, including the central nervous system. -fun MarburgDisease : Ind (both ViralDisease LifeThreateningDisease) ; - - --- The Virus that causes MarburgDisease. -fun MarburgVirus : Class ; -fun MarburgVirus_ViralAgent : SubClass MarburgVirus ViralAgent ; - - --- Also known as Whitmore's disease, it is similar to Glanders. Unlike Glanders, however, the disease is found predominantly in Southeast Asia. The disease may be a localized infection or it may involve the bloodstream, the lungs or other organs of the body. -fun Melioidosis : Ind BacterialDisease ; - - --- A Virus that is infectious to rabbits and may cause blindness and death in these Rodents. -fun Mixomatosis : Class ; -fun Mixomatosis_ViralAgent : SubClass Mixomatosis ViralAgent ; - - --- A viral disease that is very similar to Smallpox. It is seen sporadically in parts of Africa. -fun Monkeypox : Ind ViralDisease ; - - --- The Virus that causes Monkeypox. -fun MonkeypoxVirus : Class ; -fun MonkeypoxVirus_ViralAgent : SubClass MonkeypoxVirus ViralAgent ; - - --- A BlisterAgent that was commonly used in World War I to incapacitate troops. It is chemically stable, persistent, and is capable of attacking the eyes, the skin, and the respiratory tract. There is no accepted treatment or preventive measure for MustardGas. -fun MustardGas : Class ; -fun MustardGas_BlisterAgent : SubClass MustardGas BlisterAgent ; - - --- The Bacterium that causes Tuberculosis. -fun MycobacteriumTuberculosis : Class ; -fun MycobacteriumTuberculosis_BacterialAgent : SubClass MycobacteriumTuberculosis BacterialAgent ; - - --- A Toxin that is produced by a FungalAgent. -fun Mycotoxin : Class ; -fun Mycotoxin_BodySubstanceToxin : SubClass Mycotoxin (both BodySubstance Toxin); - - --- A BacterialDisease caused by StreptococcusA where the Bacterium rapidly attacks soft tissue. -fun NecrotizingFaciitis : Ind (both BacterialDisease LifeThreateningDisease) ; - - --- The Bacterium that causes Gonorrhea. -fun NeisseriaGonorrhoeae : Class ; -fun NeisseriaGonorrhoeae_BacterialAgent : SubClass NeisseriaGonorrhoeae BacterialAgent ; - - --- These ChemicalAgents are easily absorbed into the mucous membranes of humans and inactivate the essential enzyme acetylcholinesterase, bringing about paralysis of the respiratory and central nervous systems. -fun NerveAgent : Class ; -fun NerveAgent_ChemicalAgent : SubClass NerveAgent ChemicalAgent ; - - --- Closely related to HendraVirus. Like the HendraVirus, the natural host of NipahVirus appears to be fruit bats. Not much is known about the disease, but its symptoms include high fever, muscle pain, and eventually encephalitis, convulsions, and coma. -fun NipahVirus : Class ; -fun NipahVirus_ViralAgent : SubClass NipahVirus ViralAgent ; - - --- A kind of mustard gas. Also known as HN. -fun NitrogenMustardGas : Class ; -fun NitrogenMustardGas_MustardGas : SubClass NitrogenMustardGas MustardGas ; - - --- Facilities where NuclearWeapons are built. -fun NuclearWeaponProductionFacility : Class ; -fun NuclearWeaponProductionFacility_WMDWeaponsProductionFacility : SubClass NuclearWeaponProductionFacility WMDWeaponsProductionFacility ; - - --- Research facilities that perform research on technology related to NuclearWeapons. -fun NuclearWeaponResearchFacility : Class ; -fun NuclearWeaponResearchFacility_WMDWeaponsResearchFacility : SubClass NuclearWeaponResearchFacility WMDWeaponsResearchFacility ; - - --- An Antibiotic that is administered orally, e.g. Penicillin. -fun OralAntibiotic : Class ; -fun OralAntibiotic_Antibiotic : SubClass OralAntibiotic Antibiotic ; - - --- The syndrome where some or all of an Animal's muscles cannot be moved voluntarily. -fun Paralysis : Ind DiseaseOrSyndrome ; - - --- A very serious disease requiring immediate medical attention. There is no vaccine for this disease. -fun ParalyticShellfishPoisoning : Ind LifeThreateningDisease ; - - --- An ingestible antibiotic which kills many kinds of bacteria. -fun Penicillin : Class ; -fun Penicillin_OralAntibiotic : SubClass Penicillin OralAntibiotic ; - - --- The BacterialDisease caused by BordetellaPertussis. Its symptoms include severe coughing (hence the colloquial name of whooping cough) and flu_like symptoms. -fun Pertussis : Ind (both BacterialDisease VaccinatableDisease) ; - - --- A colorless, extremely toxic gas. It is regarded as the most dangerous of the ChemicalAgents. Deaths resulting from exposure to this ChemicalAgent generally occur in 24 to 48 hours. -fun Phosgene : Class ; -fun Phosgene_ChokingAgent : SubClass Phosgene ChokingAgent ; - - --- One of the most painful and destructive chemical compounds in existence. Recovery from this ChemicalAgent requires one to three months. -fun PhosgeneOxime : Class ; -fun PhosgeneOxime_BlisterAgent : SubClass PhosgeneOxime BlisterAgent ; - - --- The disease caused by the Bacterium YersiniaPestis. Plague has two forms depending on the location of the infection within the body, BubonicPlague and PneumonicPlague. -fun Plague : Ind (both BacterialDisease VaccinatableDisease) ; - - --- One of four strains of Plasmodium that are known to cause Malaria. It can cause severe anemia and kidney failure or it can constrict small blood vessels and cause cerebral malaria. -fun PlasmodiumFalciparum : Class ; -fun PlasmodiumFalciparum_MalarialPlasmodium : SubClass PlasmodiumFalciparum MalarialPlasmodium ; - - --- Also known as pulmonary plague, a variant of the Plague which attacks the lungs and is spread between humans by oral bodily fluids. -fun PneumonicPlague : Ind (both BacterialDisease VaccinatableDisease) ; - - --- A flu_like illness which is caused by Legionella, but which does not involve pneumonia. -fun PontiacFever : Ind BacterialDisease ; - - --- A serious disease caused by ChlamydiaPsittaci that affects both birds and humans. In humans the symptoms include fever, chills, headache, muscle aches, and a dry cough. The disease may give rise to pneumonia in extreme cases. -fun Psittacosis : Ind BacterialDisease ; - - --- A substance that has been shown to protect lower primates from the lethal effects of Soman. Although there is no proof that it does the same for humans, it was administered to soldiers in the Gulf War. -fun PyridostigmineBromide : Class ; -fun PyridostigmineBromide_BiologicallyActiveSubstance : SubClass PyridostigmineBromide BiologicallyActiveSubstance ; - - --- A disease caused by the rickettsia CoxiellaBurnetii. Causes headache, chills, coughing, hallucinations, fever up to 104 degrees, facial pain, speech impairment, heart inflammation and congestive heart failure. -fun QFever : Ind BacterialDisease ; - - --- Conducting research on the development of Weapons of Mass Destruction. -fun ResearchingWeaponOfMassDestruction : Class ; -fun ResearchingWeaponOfMassDestruction_Investigating : SubClass ResearchingWeaponOfMassDestruction Investigating ; - - --- An extremely toxic protein found in the castor bean plant (ricinus communis). It is 200 times more toxic than cyanide, and it has no known antidote, and it causes vomiting, high fever, weakness, and death. -fun RicinToxin : Class ; -fun RicinToxin_ProteinToxin : SubClass RicinToxin (both Protein Toxin); - - --- The Bacterium that causes LouseBorneTyphus. -fun RickettsiaProwazekii : Class ; -fun RickettsiaProwazekii_RickettsialAgent : SubClass RickettsiaProwazekii RickettsialAgent ; - - --- The Bacterium that causes RockyMountainSpottedFever. -fun RickettsiaRickettsii : Class ; -fun RickettsiaRickettsii_RickettsialAgent : SubClass RickettsiaRickettsii RickettsialAgent ; - - --- BiologicalAgents that are rickettsial organisms, i.e. gram_negative bacteria that infect mammals and arthropods. -fun RickettsialAgent : Class ; -fun RickettsialAgent_BacterialAgent : SubClass RickettsialAgent BacterialAgent ; - - --- A ViralDisease that causes chills, bleeding, and stupor. -fun RiftValleyFever : Class ; -fun RiftValleyFever_ViralDisease : SubClass RiftValleyFever ViralDisease ; - - --- A very serious disease that is caused RickettsiaRickettsii, which is carried by ticks. The most distinctive symptom of the disease is a rash of black dots. -fun RockyMountainSpottedFever : Ind (both BacterialDisease LifeThreateningDisease) ; - - --- There are three types of Rotavirus: Group A, Group B, and Group C. They cause an acute form of gastroenteritis, known as RotavirusGastroenteritis. -fun Rotavirus : Class ; -fun Rotavirus_ViralAgent : SubClass Rotavirus ViralAgent ; - - --- A disease caused by instances of Rotavirus, and characterized by vomiting, diarrhea, and fever. -fun RotavirusGastroenteritis : Ind ViralDisease ; - - --- The Virus that causes BrazilianHemorrhagicFever. -fun SabiaVirus : Class ; -fun SabiaVirus_ViralAgent : SubClass SabiaVirus ViralAgent ; - - --- In mild cases, symptoms are flu_like. In more severe cases, symptoms may include disorientation, coma, tremors, hemorrhage, and convulsions. -fun SaintLouisEncephalitis : Ind (both ViralDisease LifeThreateningDisease) ; - - --- The Virus that causes SaintLouisEncephalitis. Mosquitoes carry this virus, which is then transmitted to humans, when the insects bite them. -fun SaintLouisEncephalitisVirus : Class ; -fun SaintLouisEncephalitisVirus_ViralAgent : SubClass SaintLouisEncephalitisVirus ViralAgent ; - - --- Causes a less severe illness than SalmonellaTyphimurium. -fun SalmonellaPartyphi : Class ; -fun SalmonellaPartyphi_BacterialAgent : SubClass SalmonellaPartyphi BacterialAgent ; - - --- The Bacterium that causes TyphoidFever. -fun SalmonellaTyphi : Class ; -fun SalmonellaTyphi_BacterialAgent : SubClass SalmonellaTyphi BacterialAgent ; - - --- A bacterium that can cause death in young, elderly or immunodeficient people. It appears in the stool of infected people. -fun SalmonellaTyphimurium : Class ; -fun SalmonellaTyphimurium_BacterialAgent : SubClass SalmonellaTyphimurium BacterialAgent ; - - --- Also known as GB, one of the G_series nerve agents. -fun Sarin : Class ; -fun Sarin_GSeriesNerveAgent : SubClass Sarin GSeriesNerveAgent ; - - --- A class of chemically related neurotoxins that are produced by marine dinoflagellates and carried by Mollusks. -fun Saxitoxin : Class ; -fun Saxitoxin_BodySubstanceCompoundSubstanceToxin : SubClass Saxitoxin (both BodySubstance (both CompoundSubstance Toxin)); - - --- A serious disease that may arise if StrepThroat is left untreated. -fun ScarletFever : Ind BacterialDisease ; - - --- A Bacterium that can cause death in infected Humans. -fun SerratiaMarcenscens : Class ; -fun SerratiaMarcenscens_BacterialAgentLifeThreateningAgent : SubClass SerratiaMarcenscens (both BacterialAgent LifeThreateningAgent); - - --- The Toxin produced by the Bacterium ShigellaDysenteriae. -fun ShigaToxin : Class ; -fun ShigaToxin_Toxin : SubClass ShigaToxin Toxin ; - - --- Causes severe dysentery (even when as little as 100 bacteria are ingested). This form of dysentery results in death in 10_20 percent of infections. -fun ShigellaDysenteriae : Class ; -fun ShigellaDysenteriae_BacterialAgent : SubClass ShigellaDysenteriae BacterialAgent ; - - --- A highly contagious and dangerous disease. It causes blood loss, cardiovascular collapse, secondary infections, skin pustules, and often leaves survivors scarred and blinded. Approximately 500 million people died from Smallpox in the nineteenth century. The disease can live on objects for several days, and it incubates for twelve days before showing symptoms. -fun Smallpox : Ind ViralDisease ; - - --- Also known as GD, one of the G_series nerve agents. -fun Soman : Class ; -fun Soman_GSeriesNerveAgent : SubClass Soman GSeriesNerveAgent ; - - --- A common cause of food poisoning. It has been studied as a BiologicalAgent, because it is stable, can be converted to aerosol form, and can be lethal when inhaled. -fun StaphylococcalEnterotoxinB : Class ; -fun StaphylococcalEnterotoxinB_LifeThreateningAgentToxin : SubClass StaphylococcalEnterotoxinB (both LifeThreateningAgent Toxin); - - --- A bacterium that secretes StaphylococcalEnterotoxicB. It causes chills, headache, muscle pain, coughing (which may last for weeks), and sudden fever of up to 106 degrees (which may last for days). It occasionally causes nausea, vomiting, and diarrhea. -fun StaphyylococcusAureus : Class ; -fun StaphyylococcusAureus_BacterialAgent : SubClass StaphyylococcusAureus BacterialAgent ; - - --- Manufacturing a significant quantity of instances of a WeaponOfMassDestruction, i.e. the weapons are not produced at the scale of a single laboratory or a pilot program. These weapons may or may not be deployed (see DeployingWeaponOfMassDestruction). -fun StockpilingWeaponOfMassDestruction : Class ; -fun StockpilingWeaponOfMassDestruction_DevelopingWeaponOfMassDestructionManufacture : SubClass StockpilingWeaponOfMassDestruction (both DevelopingWeaponOfMassDestruction Manufacture); - - --- A BacterialDisease whose symptoms include a very sore throat, difficulty swallowing, high fever, white spots and/or pus on or near the tonsils, and swollen lymph nodes. If left untreated, StrepThroat can progress to ScarletFever. -fun StrepThroat : Ind BacterialDisease ; - - --- The Bacterium that causes strep throat, scarlet fever, and necrotizing faciitis (flesh_eating bacteria). -fun StreptococcusA : Class ; -fun StreptococcusA_BacterialAgent : SubClass StreptococcusA BacterialAgent ; - - --- A kind of mustard gas. Also known as Yperite and HD. This is regarded b some as the most effective BlisterAgent because it is persistent. -fun SulphurMustardGas : Class ; -fun SulphurMustardGas_MustardGas : SubClass SulphurMustardGas MustardGas ; - - --- A Micotoxin that is found in grains and products made from grains. Symptoms include diarrhea, necrotic lesions, and hemorrhaging. -fun T2Toxin : Class ; -fun T2Toxin_Mycotoxin : SubClass T2Toxin Mycotoxin ; - - --- Also known as GA, one of the G_series nerve agents. It is about half as toxic as Sarin, but it is more irritating to the eyes than Sarin. -fun Tabun : Class ; -fun Tabun_GSeriesNerveAgent : SubClass Tabun GSeriesNerveAgent ; - - --- Also known as lockjaw, a BacterialDisease that affects the nervous system. A subject is infected with the disease by a puncture of the skin that becomes infected with the ClostridiumTetani bacterium. Symptoms of the disease include muscular stiffness (especially in the jaw and neck), difficulty swallowing, spasms, sweating, and fever. -fun Tetanus : Ind (both BacterialDisease VaccinatableDisease) ; - - --- A Toxin produced by the pufferfish and several other (widely varying) species. The initial symptoms include numbness in the lips and tongue, which spreads throughout the body. The next phase of the poisoning is paralysis, which again spreads throughout the body. -fun Tetrodotoxin : Class ; -fun Tetrodotoxin_BodySubstanceCompoundSubstanceToxin : SubClass Tetrodotoxin (both BodySubstance (both CompoundSubstance Toxin)); - - --- Any of various forms of encephalitis that are carried by ticks. The diseases have three phases. The first consists of flu_like symptoms, the second is asymptomatic, and the third involves the central nervous system. -fun TickBorneEncephalitis : Class ; -fun TickBorneEncephalitis_VaccinatableDiseaseViralDisease : SubClass TickBorneEncephalitis (both VaccinatableDisease ViralDisease); - - --- Any Virus whose host is a tick and which carries an instance of TickBorneEncephalitis. -fun TickBorneEncephalitisVirus : Class ; -fun TickBorneEncephalitisVirus_LifeThreateningAgentViralAgent : SubClass TickBorneEncephalitisVirus (both LifeThreateningAgent ViralAgent); - - --- An Antibiotic that is administered topically, e.g. Bacitracin. -fun TopicalAntibiotic : Class ; -fun TopicalAntibiotic_Antibiotic : SubClass TopicalAntibiotic Antibiotic ; - - --- The Class of Organisms which are poisonous to other Organisms. -fun ToxicOrganism : Class ; -fun ToxicOrganism_BiologicalAgentOrganism : SubClass ToxicOrganism (both BiologicalAgent Organism); - - --- BiologicalAgents that are a toxic BiologicallyActiveSubstance produced by an Organism or that are the synthetic analogue of a toxic BiologicallyActiveSubstance produced by an Organism. -fun Toxin : Class ; -fun Toxin_BiologicalAgentBiologicallyActiveSubstance : SubClass Toxin (both BiologicalAgent BiologicallyActiveSubstance); - - --- A disease associated with fever, chills, coughing and Tularemia skin lesions (ulcers up to an inch wide). -fun Tularemia : Ind BacterialDisease ; - - --- A life_threatening disease that is caused by SalmonellaTyphi. -fun TyphoidFever : Class ; -fun TyphoidFever_DiseaseOrSyndrome : SubClass TyphoidFever DiseaseOrSyndrome ; - - --- More advanced sort of NerveAgent (developed in the 1950's). This subclass of NerveAgents tends to be more persistent and toxic than GSeriesNerveAgents, which were developed earlier. VSeriesNerveAgents include VE, VG, VM, VS, and VX. -fun VSeriesNerveAgent : Class ; -fun VSeriesNerveAgent_NerveAgent : SubClass VSeriesNerveAgent NerveAgent ; - - --- One of the V_series nerve agents. -fun VX : Class ; -fun VX_VSeriesNerveAgent : SubClass VX VSeriesNerveAgent ; - - --- A disease for which there is an effective vaccine for Humans. -fun VaccinatableDisease : Class ; -fun VaccinatableDisease_InfectiousDisease : SubClass VaccinatableDisease InfectiousDisease ; - - --- A Virus that causes Smallpox. Also known as the smallpox virus. -fun VariolaMajor : Class ; -fun VariolaMajor_ViralAgent : SubClass VariolaMajor ViralAgent ; - - --- A Virus that causes Smallpox. Also known as Alastrim. -fun VariolaMinor : Class ; -fun VariolaMinor_ViralAgent : SubClass VariolaMinor ViralAgent ; - - --- Also known as Venezuelan equine encephalomyelitis. Caused by any one of eight distinct Viruses. Symptoms of the disease include severe headache, high fever (up to 105 degrees), sensitivity to light (photophobia), nausea, coughing, and diarrhea. The disease results in central nervous system infection in 1 of 25 children. -fun VenezuelanEquineEncephalitis : Class ; -fun VenezuelanEquineEncephalitis_VaccinatableDiseaseViralDisease : SubClass VenezuelanEquineEncephalitis (both VaccinatableDisease ViralDisease); - - --- The Virus that causes VenezuelanEquineEncephalitis. -fun VenezuelanEquineEncephalitisVirus : Class ; -fun VenezuelanEquineEncephalitisVirus_ViralAgent : SubClass VenezuelanEquineEncephalitisVirus ViralAgent ; - - --- Symptoms of the disease are flu_like in the initial stages. As the disease progresses, symptoms include bleeding from the nose and gums and blood spots. -fun VenezuelanHemorrhagicFever : Ind HemorrhagicFever ; - - --- The Bacterium that is responsible for Cholera. -fun VibrioCholera : Class ; -fun VibrioCholera_BacterialAgent : SubClass VibrioCholera BacterialAgent ; - - --- BiologicalAgents that are also a Virus. -fun ViralAgent : Class ; -fun ViralAgent_ToxicOrganismVirus : SubClass ViralAgent (both ToxicOrganism Virus); - - --- A highly lethal, weaponized form of BacillusAnthracis developed by the United States government. -fun Vollum1B : Class ; -fun Vollum1B_AerosolizedBacillusAnthracis : SubClass Vollum1B AerosolizedBacillusAnthracis ; - - --- Facilities where instances of WeaponOfMassDestruction are built. -fun WMDWeaponsProductionFacility : Class ; -fun WMDWeaponsProductionFacility_StationaryArtifact : SubClass WMDWeaponsProductionFacility StationaryArtifact ; - - --- Facilities where research on instances of WeaponOfMassDestruction is performed. -fun WMDWeaponsResearchFacility : Class ; -fun WMDWeaponsResearchFacility_StationaryArtifact : SubClass WMDWeaponsResearchFacility StationaryArtifact ; - - --- A flu_like disease that is caused by the WestNileVirus. The disease is generally not life_threatening. However, it can be very serious if it progresses to West Nile Encephalitis, West Nile Meningitis or West Nile Meningoencephalitis, all of which are inflammations of the brain and/or spinal cord. -fun WestNileFever : Ind ViralDisease ; - - --- A flavivirus that causes WestNileFever. -fun WestNileVirus : Class ; -fun WestNileVirus_ViralAgent : SubClass WestNileVirus ViralAgent ; - - --- A Virus that can result in chills, fever, stomach bleeding, and YellowSkin. -fun YellowFeverVirus : Class ; -fun YellowFeverVirus_ViralAgent : SubClass YellowFeverVirus ViralAgent ; - - --- Is caused by liver failure, which results in an accumulation of bile. It is caused by YellowFeverVirus. -fun YellowSkin : Ind ViralDisease ; - - --- The Bacterium that causes Plague. -fun YersiniaPestis : Class ; -fun YersiniaPestis_BacterialAgentLifeThreateningAgent : SubClass YersiniaPestis (both BacterialAgent LifeThreateningAgent); - - --- Causes a disease whose symptoms include diarrhea, fever, headache, skin ulcers, and post_infectious arthritis. -fun YersiniaPseudotuberculosis : Class ; -fun YersiniaPseudotuberculosis_BacterialAgent : SubClass YersiniaPseudotuberculosis BacterialAgent ; - - --- (biochemicalAgentAntidote ?AGENT ?SUBSTANCE ?PROCESS) means that the BiologicallyActiveSubstance ?SUBSTANCE has been shown to be effective in treating someone who has been exposed to the BiochemicalAgent ?AGENT when the ?SUBSTANCE is administered via the Process ?PROCESS. -fun biochemicalAgentAntidote: El BiochemicalAgent -> Desc BiologicallyActiveSubstance -> Desc Process -> Formula ; - - --- (biochemicalAgentDelivery ?AGENT ?PROCESS) means that the Process ?PROCESS is capable of infecting an organism with the BiochemicalAgent ?AGENT when the organism is the experiencer and the ?AGENT the patient of an instance of ?PROCESS. -fun biochemicalAgentDelivery: Desc BiochemicalAgent -> Desc Process -> Formula ; - - --- Relates a subclass of BiochemicalAgent to a DiseaseOrSyndrome that is caused by or often associated with the BiochemicalAgent. -fun biochemicalAgentSyndrome: Desc BiochemicalAgent -> El DiseaseOrSyndrome -> Formula ; - - --- (biologicalAgentCarrier ?AGENT ?ORGANISM) means that the subclass of Organism ?ORGANISM is a carrier of the subclass of BiologicalAgent ?AGENT. -fun biologicalAgentCarrier: Desc BiologicalAgent -> Desc Organism -> Formula ; - - --- A predicate that specifies the time frame for the incubation of a DiseaseOrSyndrome. (diseaseIncubation ?DISEASE ?TIME1 ?TIME2) means that the DiseaseOrSyndrome ?DISEASE will appear between ?TIME1 and ?TIME2 after the subject has been infected with the BiologicalAgent causing ?DISEASE. -fun diseaseIncubation: El DiseaseOrSyndrome -> Desc TimeDuration -> Desc TimeDuration -> Formula ; - - --- (diseaseMortality ?DISEASE ?NUMBER) means that DiseaseOrSyndrome ?DISEASE has a Mortality rate of ?NUMBER. -fun diseaseMortality : El DiseaseOrSyndrome -> El RealNumber -> Formula ; - - --- (diseaseSymptom ?DISEASE ?SYMPTOM) means that DiseaseOrSyndrome ?DISEASE is often associated with the DiseaseOrSyndrome ?SYMPTOM, i.e. an Organism which suffers from ?DISEASE is more likely to suffer from ?SYMPTOM than one which does not. -fun diseaseSymptom : El DiseaseOrSyndrome -> El DiseaseOrSyndrome -> Formula ; - - --- (diseaseTreatment ?DISEASE ?SUBSTANCE ?PROCESS) means that the BiologicallyActiveSubstance ?SUBSTANCE is effective in the treatment of the DiseaseOrSyndrome ?DISEASE when administered via the Process ?PROCESS, i.e. it has been demonstrated (in a significant sample of patients) to cure the ?DISEASE or at least reduce the severity of symptoms associated with the ?DISEASE. -fun diseaseTreatment: El DiseaseOrSyndrome -> Desc BiologicallyActiveSubstance -> Desc Process -> Formula ; - - --- (effectiveDose ?AGENT ?QUANTITY) means that ?QUANTITY is the effective dose, or ED50, for the BiochemicalAgent ?AGENT. This is the dose that would incapacitate 50% of the exposed human population. Note that ?QUANTITY is generally expressed in micrograms per kilogram (mcg/kg). -fun effectiveDose: Desc BiochemicalAgent -> El FunctionQuantity -> Formula ; - - --- (lethalDose ?AGENT ?QUANTITY) means that ?QUANTITY is the lethal dose, or LD50, for the BiochemicalAgent ?AGENT. This is the dose that would result in death for 50% of the exposed human population. Note that ?QUANTITY is generally expressed in micrograms per kilogram (mcg/kg). -fun lethalDose: Desc BiochemicalAgent -> El FunctionQuantity -> Formula ; - - --- (secretesToxin ?ORGANISM ?TOXIN) means that the subclass of Organism ?ORGANISM produces the subclass of Toxin ?TOXIN. -fun secretesToxin: Desc Organism -> Desc Toxin -> Formula ; - - --- A predicate that is used to specify a side effect of a substance used in a medical treatment. (sideEffect ?SUBSTANCE ?SYNDROME) means that the BiologicallyActiveSubstance ?SUBSTANCE has the side effect ?SYNDROME. -fun sideEffect : El BiologicallyActiveSubstance -> El DiseaseOrSyndrome -> Formula ; } diff --git a/examples/SUMO/WorldAirportsA_K.gf b/examples/SUMO/WorldAirportsA_K.gf index 136973fbc..f269b5c53 100644 --- a/examples/SUMO/WorldAirportsA_K.gf +++ b/examples/SUMO/WorldAirportsA_K.gf @@ -1,8111 +1,8109 @@ -abstract WorldAirportsA_K = open Merge, Transportation in { - - - +abstract WorldAirportsA_K = Transportation ** { -fun AMenderesIzmirAirport : Ind Airport ; + fun AMenderesIzmirAirport : Ind Airport ; -fun APHillArmyAirFieldVAAirport : Ind Airport ; + fun APHillArmyAirFieldVAAirport : Ind Airport ; -fun AachenAirport : Ind Airport ; + fun AachenAirport : Ind Airport ; -fun AalborgAirport : Ind Airport ; + fun AalborgAirport : Ind Airport ; -fun AbaTennaDYilmaDireDawaAirport : Ind Airport ; + fun AbaTennaDYilmaDireDawaAirport : Ind Airport ; -fun AbadanAirport : Ind Airport ; + fun AbadanAirport : Ind Airport ; -fun AbaiangAirport : Ind Airport ; + fun AbaiangAirport : Ind Airport ; -fun AbakanKhakassiaAirport : Ind Airport ; + fun AbakanKhakassiaAirport : Ind Airport ; -fun AbauAirport : Ind Airport ; + fun AbauAirport : Ind Airport ; -fun AbbotsichnScotlandAirport : Ind Airport ; + fun AbbotsichnScotlandAirport : Ind Airport ; -fun AbbseAirport : Ind Airport ; + fun AbbseAirport : Ind Airport ; -fun AbecheAirport : Ind Airport ; + fun AbecheAirport : Ind Airport ; -fun AbemamaAtollAirport : Ind Airport ; + fun AbemamaAtollAirport : Ind Airport ; -fun AberdeenRegionalSDAirport : Ind Airport ; + fun AberdeenRegionalSDAirport : Ind Airport ; -fun AbernathyFieldTNAirport : Ind Airport ; + fun AbernathyFieldTNAirport : Ind Airport ; -fun AbileneRegionalTXAirport : Ind Airport ; + fun AbileneRegionalTXAirport : Ind Airport ; -fun AbingdonRAFStationEnglandAirport : Ind Airport ; + fun AbingdonRAFStationEnglandAirport : Ind Airport ; -fun AbingoonQueenslandAirport : Ind Airport ; + fun AbingoonQueenslandAirport : Ind Airport ; -fun AboissoAirport : Ind Airport ; + fun AboissoAirport : Ind Airport ; -fun AbouDeiaAirport : Ind Airport ; + fun AbouDeiaAirport : Ind Airport ; -fun AbrahamGonzalezCiudadJuarezAirport : Ind Airport ; + fun AbrahamGonzalezCiudadJuarezAirport : Ind Airport ; -fun AbramsMunicipalBaseOperationsMIAirport : Ind Airport ; + fun AbramsMunicipalBaseOperationsMIAirport : Ind Airport ; -fun AbreojosAirport : Ind Airport ; + fun AbreojosAirport : Ind Airport ; -fun AbuSimbelAirport : Ind Airport ; + fun AbuSimbelAirport : Ind Airport ; -fun AbujaAirport : Ind Airport ; + fun AbujaAirport : Ind Airport ; -fun AcadianaRegionalLAAirport : Ind Airport ; + fun AcadianaRegionalLAAirport : Ind Airport ; -fun AcandiAirport : Ind Airport ; + fun AcandiAirport : Ind Airport ; -fun AcaricuraAirport : Ind Airport ; + fun AcaricuraAirport : Ind Airport ; -fun AcariguaAirport : Ind Airport ; + fun AcariguaAirport : Ind Airport ; -fun AchutupoAirport : Ind Airport ; + fun AchutupoAirport : Ind Airport ; -fun AdaMunicipalOKAirport : Ind Airport ; + fun AdaMunicipalOKAirport : Ind Airport ; -fun AdakNavalAirStationAKAirport : Ind Airport ; + fun AdakNavalAirStationAKAirport : Ind Airport ; -fun AddingtonFieldKYAirport : Ind Airport ; + fun AddingtonFieldKYAirport : Ind Airport ; -fun AddisonTXAirport : Ind Airport ; + fun AddisonTXAirport : Ind Airport ; -fun AdisuciptoYogyakartaAirport : Ind Airport ; + fun AdisuciptoYogyakartaAirport : Ind Airport ; -fun AdlerSochiKrasnodarAirport : Ind Airport ; + fun AdlerSochiKrasnodarAirport : Ind Airport ; -fun AdnanMenderesIzmirAirport : Ind Airport ; + fun AdnanMenderesIzmirAirport : Ind Airport ; -fun AekGodangAirport : Ind Airport ; + fun AekGodangAirport : Ind Airport ; -fun AeroparqueJorgeNewberyBuenosAiresAirport : Ind Airport ; + fun AeroparqueJorgeNewberyBuenosAiresAirport : Ind Airport ; -fun AeroportoInternacionalGaleaoRJAirport : Ind Airport ; + fun AeroportoInternacionalGaleaoRJAirport : Ind Airport ; -fun AeroportoInternacionalGuarulhosSPAirport : Ind Airport ; + fun AeroportoInternacionalGuarulhosSPAirport : Ind Airport ; -fun AeroportodeCongonhasSPAirport : Ind Airport ; + fun AeroportodeCongonhasSPAirport : Ind Airport ; -fun AeropuertoHatoCuracaoWillemstadAirport : Ind Airport ; + fun AeropuertoHatoCuracaoWillemstadAirport : Ind Airport ; -fun AeropuertoHenriqueMalekDavidAirport : Ind Airport ; + fun AeropuertoHenriqueMalekDavidAirport : Ind Airport ; -fun AeropuertoInternacionalEzeizaMinistroPistariniBuenosAiresAirport : Ind Airport ; + fun AeropuertoInternacionalEzeizaMinistroPistariniBuenosAiresAirport : Ind Airport ; -fun AeropuertoInternacionalJoseMartiLaHabanaHavanaAirport : Ind Airport ; + fun AeropuertoInternacionalJoseMartiLaHabanaHavanaAirport : Ind Airport ; -fun AeropuertoInternacionaldelCentroCaracasAirport : Ind Airport ; + fun AeropuertoInternacionaldelCentroCaracasAirport : Ind Airport ; -fun AeropuertoRafaelHernandezBorinquenAguadillaAirport : Ind Airport ; + fun AeropuertoRafaelHernandezBorinquenAguadillaAirport : Ind Airport ; -fun AeropuertoTransoceanicodeBarcelonaBarcelonaAirport : Ind Airport ; + fun AeropuertoTransoceanicodeBarcelonaBarcelonaAirport : Ind Airport ; -fun AfonsoPenaPRAirport : Ind Airport ; + fun AfonsoPenaPRAirport : Ind Airport ; -fun AforeAirport : Ind Airport ; + fun AforeAirport : Ind Airport ; -fun AftonMunicipalWYAirport : Ind Airport ; + fun AftonMunicipalWYAirport : Ind Airport ; -fun AfyonAirport : Ind Airport ; + fun AfyonAirport : Ind Airport ; -fun AgadesAgadezAirport : Ind Airport ; + fun AgadesAgadezAirport : Ind Airport ; -fun AgartalaAirport : Ind Airport ; + fun AgartalaAirport : Ind Airport ; -fun AgattiIslandAirport : Ind Airport ; + fun AgattiIslandAirport : Ind Airport ; -fun AgaunAirport : Ind Airport ; + fun AgaunAirport : Ind Airport ; -fun AgenAirport : Ind Airport ; + fun AgenAirport : Ind Airport ; -fun AggeneysAirport : Ind Airport ; + fun AggeneysAirport : Ind Airport ; -fun AgnewQueenslandAirport : Ind Airport ; + fun AgnewQueenslandAirport : Ind Airport ; -fun AgoAirport : Ind Airport ; + fun AgoAirport : Ind Airport ; -fun AgraAirport : Ind Airport ; + fun AgraAirport : Ind Airport ; -fun AgrinionAirport : Ind Airport ; + fun AgrinionAirport : Ind Airport ; -fun AguascalientesAirport : Ind Airport ; + fun AguascalientesAirport : Ind Airport ; -fun AguniAirport : Ind Airport ; + fun AguniAirport : Ind Airport ; -fun AhmedabadAirport : Ind Airport ; + fun AhmedabadAirport : Ind Airport ; -fun AhuasAirport : Ind Airport ; + fun AhuasAirport : Ind Airport ; -fun AhwazAirport : Ind Airport ; + fun AhwazAirport : Ind Airport ; -fun AikenMunicipalSCAirport : Ind Airport ; + fun AikenMunicipalSCAirport : Ind Airport ; -fun AiligandiAirport : Ind Airport ; + fun AiligandiAirport : Ind Airport ; -fun AilinglapalapAirport : Ind Airport ; + fun AilinglapalapAirport : Ind Airport ; -fun AilukIneIslandAirport : Ind Airport ; + fun AilukIneIslandAirport : Ind Airport ; -fun AinElBeyConstantineAirport : Ind Airport ; + fun AinElBeyConstantineAirport : Ind Airport ; -fun AinsworthMunicipalNEAirport : Ind Airport ; + fun AinsworthMunicipalNEAirport : Ind Airport ; -fun AiomeAirport : Ind Airport ; + fun AiomeAirport : Ind Airport ; -fun AiounelAtroussAirport : Ind Airport ; + fun AiounelAtroussAirport : Ind Airport ; -fun AirBaseKusanAirport : Ind Airport ; + fun AirBaseKusanAirport : Ind Airport ; -fun AirLogisticsBelleChasseHeliportLAAirport : Ind Airport ; + fun AirLogisticsBelleChasseHeliportLAAirport : Ind Airport ; -fun AirborneAirparkOHAirport : Ind Airport ; + fun AirborneAirparkOHAirport : Ind Airport ; -fun AirokAirport : Ind Airport ; + fun AirokAirport : Ind Airport ; -fun AishaltonAirport : Ind Airport ; + fun AishaltonAirport : Ind Airport ; -fun AitapeAirport : Ind Airport ; + fun AitapeAirport : Ind Airport ; -fun AitutakiAirport : Ind Airport ; + fun AitutakiAirport : Ind Airport ; -fun AixLesBainsChamberyAirport : Ind Airport ; + fun AixLesBainsChamberyAirport : Ind Airport ; -fun AiyuraAirport : Ind Airport ; + fun AiyuraAirport : Ind Airport ; -fun AizawlAirport : Ind Airport ; + fun AizawlAirport : Ind Airport ; -fun AkhiokAKAirport : Ind Airport ; + fun AkhiokAKAirport : Ind Airport ; -fun AkiachakSeaplaneBaseAKAirport : Ind Airport ; + fun AkiachakSeaplaneBaseAKAirport : Ind Airport ; -fun AkiakAKAirport : Ind Airport ; + fun AkiakAKAirport : Ind Airport ; -fun AkieniAirport : Ind Airport ; + fun AkieniAirport : Ind Airport ; -fun AkitaAirport : Ind Airport ; + fun AkitaAirport : Ind Airport ; -fun AkjoujtAirport : Ind Airport ; + fun AkjoujtAirport : Ind Airport ; -fun AkolaAirport : Ind Airport ; + fun AkolaAirport : Ind Airport ; -fun AkronCantonRegionalOHAirport : Ind Airport ; + fun AkronCantonRegionalOHAirport : Ind Airport ; -fun AkronWashingtonCountyCOAirport : Ind Airport ; + fun AkronWashingtonCountyCOAirport : Ind Airport ; -fun AkrotiriAirport : Ind Airport ; + fun AkrotiriAirport : Ind Airport ; -fun AksuAirport : Ind Airport ; + fun AksuAirport : Ind Airport ; -fun AkulivikQCAirport : Ind Airport ; + fun AkulivikQCAirport : Ind Airport ; -fun AkureAirport : Ind Airport ; + fun AkureAirport : Ind Airport ; -fun AkureyriAirport : Ind Airport ; + fun AkureyriAirport : Ind Airport ; -fun AkutanSeaplaneBaseAKAirport : Ind Airport ; + fun AkutanSeaplaneBaseAKAirport : Ind Airport ; -fun AlAinAirport : Ind Airport ; + fun AlAinAirport : Ind Airport ; -fun AlArishAirport : Ind Airport ; + fun AlArishAirport : Ind Airport ; -fun AlBahaAirport : Ind Airport ; + fun AlBahaAirport : Ind Airport ; -fun AlBaydaAirport : Ind Airport ; + fun AlBaydaAirport : Ind Airport ; -fun AlDhafraMilitaryAbuDhabiAirport : Ind Airport ; + fun AlDhafraMilitaryAbuDhabiAirport : Ind Airport ; -fun AlGhaydahAirport : Ind Airport ; + fun AlGhaydahAirport : Ind Airport ; -fun AlMassiraAgadirAirport : Ind Airport ; + fun AlMassiraAgadirAirport : Ind Airport ; -fun AlahAirport : Ind Airport ; + fun AlahAirport : Ind Airport ; -fun AlakanukAKAirport : Ind Airport ; + fun AlakanukAKAirport : Ind Airport ; -fun AlamogordoWhiteSandsRegionalNMAirport : Ind Airport ; + fun AlamogordoWhiteSandsRegionalNMAirport : Ind Airport ; -fun AlbanyCountyNYAirport : Ind Airport ; + fun AlbanyCountyNYAirport : Ind Airport ; -fun AlbanyWesternAustraliaAirport : Ind Airport ; + fun AlbanyWesternAustraliaAirport : Ind Airport ; -fun AlbengaAirport : Ind Airport ; + fun AlbengaAirport : Ind Airport ; -fun AlbertLeaMunicipalMNAirport : Ind Airport ; + fun AlbertLeaMunicipalMNAirport : Ind Airport ; -fun AlbertoAcunaOngayCampecheAirport : Ind Airport ; + fun AlbertoAcunaOngayCampecheAirport : Ind Airport ; -fun AlbertusILAirport : Ind Airport ; + fun AlbertusILAirport : Ind Airport ; -fun AlbinaAirport : Ind Airport ; + fun AlbinaAirport : Ind Airport ; -fun AlbionMunicipalNEAirport : Ind Airport ; + fun AlbionMunicipalNEAirport : Ind Airport ; -fun AlbuqAirport : Ind Airport ; + fun AlbuqAirport : Ind Airport ; -fun AlbuquerqueInternationalNMAirport : Ind Airport ; + fun AlbuquerqueInternationalNMAirport : Ind Airport ; -fun AlburyNewSouthWalesAirport : Ind Airport ; + fun AlburyNewSouthWalesAirport : Ind Airport ; -fun AlconburyRAFStationEnglandAirport : Ind Airport ; + fun AlconburyRAFStationEnglandAirport : Ind Airport ; -fun AldanYakutiaSakhaAirport : Ind Airport ; + fun AldanYakutiaSakhaAirport : Ind Airport ; -fun AldergroveInternationalNorthernIrelandAirport : Ind Airport ; + fun AldergroveInternationalNorthernIrelandAirport : Ind Airport ; -fun AlderneyAirport : Ind Airport ; + fun AlderneyAirport : Ind Airport ; -fun AlegreteRSAirport : Ind Airport ; + fun AlegreteRSAirport : Ind Airport ; -fun AlenquerPAAirport : Ind Airport ; + fun AlenquerPAAirport : Ind Airport ; -fun AleppoAirport : Ind Airport ; + fun AleppoAirport : Ind Airport ; -fun AlertaAirport : Ind Airport ; + fun AlertaAirport : Ind Airport ; -fun AlexanderBayAirport : Ind Airport ; + fun AlexanderBayAirport : Ind Airport ; -fun AlexanderFieldSouthWoodCountyWIAirport : Ind Airport ; + fun AlexanderFieldSouthWoodCountyWIAirport : Ind Airport ; -fun AlexandraAirport : Ind Airport ; + fun AlexandraAirport : Ind Airport ; -fun AlexandriaAirport : Ind Airport ; + fun AlexandriaAirport : Ind Airport ; -fun AlexandriaEslerRegionalLAAirport : Ind Airport ; + fun AlexandriaEslerRegionalLAAirport : Ind Airport ; -fun AlexandriaInternationalLAAirport : Ind Airport ; + fun AlexandriaInternationalLAAirport : Ind Airport ; -fun AlexandriaNorthernTerritoryAirport : Ind Airport ; + fun AlexandriaNorthernTerritoryAirport : Ind Airport ; -fun AlexandroupolisAirport : Ind Airport ; + fun AlexandroupolisAirport : Ind Airport ; -fun AlfonsoBonillaAragonCaliAirport : Ind Airport ; + fun AlfonsoBonillaAragonCaliAirport : Ind Airport ; -fun AlfujairahFujairahAirport : Ind Airport ; + fun AlfujairahFujairahAirport : Ind Airport ; -fun AlgonaMunicipalIAAirport : Ind Airport ; + fun AlgonaMunicipalIAAirport : Ind Airport ; -fun AliSabiehAirport : Ind Airport ; + fun AliSabiehAirport : Ind Airport ; -fun AlicanteAirport : Ind Airport ; + fun AlicanteAirport : Ind Airport ; -fun AliceInternationalTXAirport : Ind Airport ; + fun AliceInternationalTXAirport : Ind Airport ; -fun AliceSpringsNorthernTerritoryAirport : Ind Airport ; + fun AliceSpringsNorthernTerritoryAirport : Ind Airport ; -fun AlitakSeaplaneBaseAKAirport : Ind Airport ; + fun AlitakSeaplaneBaseAKAirport : Ind Airport ; -fun AljoufAirport : Ind Airport ; + fun AljoufAirport : Ind Airport ; -fun AllahabadAirport : Ind Airport ; + fun AllahabadAirport : Ind Airport ; -fun AllaireNJAirport : Ind Airport ; + fun AllaireNJAirport : Ind Airport ; -fun AllakaketAKAirport : Ind Airport ; + fun AllakaketAKAirport : Ind Airport ; -fun AlldaysAirport : Ind Airport ; + fun AlldaysAirport : Ind Airport ; -fun AlleghenyCountyPAAirport : Ind Airport ; + fun AlleghenyCountyPAAirport : Ind Airport ; -fun AllenArmyAirFieldAKAirport : Ind Airport ; + fun AllenArmyAirFieldAKAirport : Ind Airport ; -fun AllentownBethlehemEastonPAAirport : Ind Airport ; + fun AllentownBethlehemEastonPAAirport : Ind Airport ; -fun AllianceMunicipalNEAirport : Ind Airport ; + fun AllianceMunicipalNEAirport : Ind Airport ; -fun AlmatyAlmaAtaAlmaAtaAirport : Ind Airport ; + fun AlmatyAlmaAtaAlmaAtaAirport : Ind Airport ; -fun AlmenaraMGAirport : Ind Airport ; + fun AlmenaraMGAirport : Ind Airport ; -fun AlongAirport : Ind Airport ; + fun AlongAirport : Ind Airport ; -fun AlorIslandAirport : Ind Airport ; + fun AlorIslandAirport : Ind Airport ; -fun AlorSetarAirport : Ind Airport ; + fun AlorSetarAirport : Ind Airport ; -fun AloweAirport : Ind Airport ; + fun AloweAirport : Ind Airport ; -fun AlpedHuezAirport : Ind Airport ; + fun AlpedHuezAirport : Ind Airport ; -fun AlpenaCountyRegionalMIAirport : Ind Airport ; + fun AlpenaCountyRegionalMIAirport : Ind Airport ; -fun AlphaQueenslandAirport : Ind Airport ; + fun AlphaQueenslandAirport : Ind Airport ; -fun AlpineCasparisMunicipalTXAirport : Ind Airport ; + fun AlpineCasparisMunicipalTXAirport : Ind Airport ; -fun AlroyDownsNorthernTerritoryAirport : Ind Airport ; + fun AlroyDownsNorthernTerritoryAirport : Ind Airport ; -fun AltaAirport : Ind Airport ; + fun AltaAirport : Ind Airport ; -fun AltaFlorestaAirport : Ind Airport ; + fun AltaFlorestaAirport : Ind Airport ; -fun AltamiraPAAirport : Ind Airport ; + fun AltamiraPAAirport : Ind Airport ; -fun AltayAirport : Ind Airport ; + fun AltayAirport : Ind Airport ; -fun AltenburgAirport : Ind Airport ; + fun AltenburgAirport : Ind Airport ; -fun AltoMolocueAirport : Ind Airport ; + fun AltoMolocueAirport : Ind Airport ; -fun AltoRioSenguerrAirport : Ind Airport ; + fun AltoRioSenguerrAirport : Ind Airport ; -fun AltodoParnaibaPIAirport : Ind Airport ; + fun AltodoParnaibaPIAirport : Ind Airport ; -fun AltonDownsSouthAustraliaAirport : Ind Airport ; + fun AltonDownsSouthAustraliaAirport : Ind Airport ; -fun AltonILStLouisAirport : Ind Airport ; + fun AltonILStLouisAirport : Ind Airport ; -fun AltoonaBlairCountyPAAirport : Ind Airport ; + fun AltoonaBlairCountyPAAirport : Ind Airport ; -fun AltusMunicipalOKAirport : Ind Airport ; + fun AltusMunicipalOKAirport : Ind Airport ; -fun AlulaAirport : Ind Airport ; + fun AlulaAirport : Ind Airport ; -fun AmaAirport : Ind Airport ; + fun AmaAirport : Ind Airport ; -fun AmahaiAirport : Ind Airport ; + fun AmahaiAirport : Ind Airport ; -fun AmalfiAirport : Ind Airport ; + fun AmalfiAirport : Ind Airport ; -fun AmamiOShimaAirport : Ind Airport ; + fun AmamiOShimaAirport : Ind Airport ; -fun AmanabAirport : Ind Airport ; + fun AmanabAirport : Ind Airport ; -fun AmarilloInternationalTXAirport : Ind Airport ; + fun AmarilloInternationalTXAirport : Ind Airport ; -fun AmataNorthernTerritoryAirport : Ind Airport ; + fun AmataNorthernTerritoryAirport : Ind Airport ; -fun AmazonBayAirport : Ind Airport ; + fun AmazonBayAirport : Ind Airport ; -fun AmbanjaAirport : Ind Airport ; + fun AmbanjaAirport : Ind Airport ; -fun AmbatoAirport : Ind Airport ; + fun AmbatoAirport : Ind Airport ; -fun AmbatolahyAirport : Ind Airport ; + fun AmbatolahyAirport : Ind Airport ; -fun AmbatomaintyAirport : Ind Airport ; + fun AmbatomaintyAirport : Ind Airport ; -fun AmbilobeAirport : Ind Airport ; + fun AmbilobeAirport : Ind Airport ; -fun AmblerAKAirport : Ind Airport ; + fun AmblerAKAirport : Ind Airport ; -fun AmbolinAirport : Ind Airport ; + fun AmbolinAirport : Ind Airport ; -fun AmboseliAirport : Ind Airport ; + fun AmboseliAirport : Ind Airport ; -fun AmbouliDjiboutiAirport : Ind Airport ; + fun AmbouliDjiboutiAirport : Ind Airport ; -fun AmbuntiAirport : Ind Airport ; + fun AmbuntiAirport : Ind Airport ; -fun AmchitkaAirport : Ind Airport ; + fun AmchitkaAirport : Ind Airport ; -fun AmchitkaIslandAKAirport : Ind Airport ; + fun AmchitkaIslandAKAirport : Ind Airport ; -fun AmdermaArkhangelskAirport : Ind Airport ; + fun AmdermaArkhangelskAirport : Ind Airport ; -fun AmedeeArmyAirFieldCAAirport : Ind Airport ; + fun AmedeeArmyAirFieldCAAirport : Ind Airport ; -fun AmeryMunicipalWIAirport : Ind Airport ; + fun AmeryMunicipalWIAirport : Ind Airport ; -fun AmesMunicipalIAAirport : Ind Airport ; + fun AmesMunicipalIAAirport : Ind Airport ; -fun AmityvilleNYAirport : Ind Airport ; + fun AmityvilleNYAirport : Ind Airport ; -fun AmmarooNorthernTerritoryAirport : Ind Airport ; + fun AmmarooNorthernTerritoryAirport : Ind Airport ; -fun AmookBaySeaplaneBaseAKAirport : Ind Airport ; + fun AmookBaySeaplaneBaseAKAirport : Ind Airport ; -fun AmpanihyAirport : Ind Airport ; + fun AmpanihyAirport : Ind Airport ; -fun AmritsarAirport : Ind Airport ; + fun AmritsarAirport : Ind Airport ; -fun AnacoAirport : Ind Airport ; + fun AnacoAirport : Ind Airport ; -fun AnacortesWAAirport : Ind Airport ; + fun AnacortesWAAirport : Ind Airport ; -fun AnadyrMagadanAirport : Ind Airport ; + fun AnadyrMagadanAirport : Ind Airport ; -fun AnaheimDisneylandCAAirport : Ind Airport ; + fun AnaheimDisneylandCAAirport : Ind Airport ; -fun AnaktuvukPassAKAirport : Ind Airport ; + fun AnaktuvukPassAKAirport : Ind Airport ; -fun AnalalavaAirport : Ind Airport ; + fun AnalalavaAirport : Ind Airport ; -fun AnapaAirport : Ind Airport ; + fun AnapaAirport : Ind Airport ; -fun AnapolisGOAirport : Ind Airport ; + fun AnapolisGOAirport : Ind Airport ; -fun AnchorageInternationalAKAirport : Ind Airport ; + fun AnchorageInternationalAKAirport : Ind Airport ; -fun AnconaAirport : Ind Airport ; + fun AnconaAirport : Ind Airport ; -fun AndahuaylasAirport : Ind Airport ; + fun AndahuaylasAirport : Ind Airport ; -fun AndamookaSouthAustraliaAirport : Ind Airport ; + fun AndamookaSouthAustraliaAirport : Ind Airport ; -fun AndersonCountySCAirport : Ind Airport ; + fun AndersonCountySCAirport : Ind Airport ; -fun AndersonMunicipalINAirport : Ind Airport ; + fun AndersonMunicipalINAirport : Ind Airport ; -fun AndesAirport : Ind Airport ; + fun AndesAirport : Ind Airport ; -fun AndijonAndizhanAndijonAirport : Ind Airport ; + fun AndijonAndizhanAndijonAirport : Ind Airport ; -fun AndorralaVellaAirport : Ind Airport ; + fun AndorralaVellaAirport : Ind Airport ; -fun AndoverEnglandAirport : Ind Airport ; + fun AndoverEnglandAirport : Ind Airport ; -fun AndoyaAndenesAndoyaAirport : Ind Airport ; + fun AndoyaAndenesAndoyaAirport : Ind Airport ; -fun AndrauAirparkTXAirport : Ind Airport ; + fun AndrauAirparkTXAirport : Ind Airport ; -fun AndravidaAirport : Ind Airport ; + fun AndravidaAirport : Ind Airport ; -fun AndrewsAirForceBaseMDAirport : Ind Airport ; + fun AndrewsAirForceBaseMDAirport : Ind Airport ; -fun AndrewsMunicipalSCAirport : Ind Airport ; + fun AndrewsMunicipalSCAirport : Ind Airport ; -fun AnduloAirport : Ind Airport ; + fun AnduloAirport : Ind Airport ; -fun AneityumAirport : Ind Airport ; + fun AneityumAirport : Ind Airport ; -fun AngelFireNMAirport : Ind Airport ; + fun AngelFireNMAirport : Ind Airport ; -fun AngelholmHelsingborgAirport : Ind Airport ; + fun AngelholmHelsingborgAirport : Ind Airport ; -fun AngersAirport : Ind Airport ; + fun AngersAirport : Ind Airport ; -fun AnggiAirport : Ind Airport ; + fun AnggiAirport : Ind Airport ; -fun AngocheAntonioEnesAirport : Ind Airport ; + fun AngocheAntonioEnesAirport : Ind Airport ; -fun AngoonSeaplaneBaseAKAirport : Ind Airport ; + fun AngoonSeaplaneBaseAKAirport : Ind Airport ; -fun AngoramAirport : Ind Airport ; + fun AngoramAirport : Ind Airport ; -fun AngoulemeAirport : Ind Airport ; + fun AngoulemeAirport : Ind Airport ; -fun AnguganakAirport : Ind Airport ; + fun AnguganakAirport : Ind Airport ; -fun AngusDownsNorthernTerritoryAirport : Ind Airport ; + fun AngusDownsNorthernTerritoryAirport : Ind Airport ; -fun AniakAKAirport : Ind Airport ; + fun AniakAKAirport : Ind Airport ; -fun AnimasAirParkCOAirport : Ind Airport ; + fun AnimasAirParkCOAirport : Ind Airport ; -fun AnitaBayAKAirport : Ind Airport ; + fun AnitaBayAKAirport : Ind Airport ; -fun AniwaAirport : Ind Airport ; + fun AniwaAirport : Ind Airport ; -fun AnjouanAirport : Ind Airport ; + fun AnjouanAirport : Ind Airport ; -fun AnkangAirport : Ind Airport ; + fun AnkangAirport : Ind Airport ; -fun AnkavandraAirport : Ind Airport ; + fun AnkavandraAirport : Ind Airport ; -fun AnnArborMunicipalMIAirport : Ind Airport ; + fun AnnArborMunicipalMIAirport : Ind Airport ; -fun AnnanbergAirport : Ind Airport ; + fun AnnanbergAirport : Ind Airport ; -fun AnnetteIslandAKAirport : Ind Airport ; + fun AnnetteIslandAKAirport : Ind Airport ; -fun AnnistonMetropolitanALAirport : Ind Airport ; + fun AnnistonMetropolitanALAirport : Ind Airport ; -fun AnqingAirport : Ind Airport ; + fun AnqingAirport : Ind Airport ; -fun AnqmaqssalikAirport : Ind Airport ; + fun AnqmaqssalikAirport : Ind Airport ; -fun AnshanAirport : Ind Airport ; + fun AnshanAirport : Ind Airport ; -fun AntaAirport : Ind Airport ; + fun AntaAirport : Ind Airport ; -fun AntalahaAirport : Ind Airport ; + fun AntalahaAirport : Ind Airport ; -fun AntalyaAirport : Ind Airport ; + fun AntalyaAirport : Ind Airport ; -fun AnthonyLagoonNorthernTerritoryAirport : Ind Airport ; + fun AnthonyLagoonNorthernTerritoryAirport : Ind Airport ; -fun AnthonyMunicipalKSAirport : Ind Airport ; + fun AnthonyMunicipalKSAirport : Ind Airport ; -fun AntlersMunicipalOKAirport : Ind Airport ; + fun AntlersMunicipalOKAirport : Ind Airport ; -fun AntrimCountyMIAirport : Ind Airport ; + fun AntrimCountyMIAirport : Ind Airport ; -fun AntsirabeAirport : Ind Airport ; + fun AntsirabeAirport : Ind Airport ; -fun AnuhaIslandResortAnuhaIslandAirport : Ind Airport ; + fun AnuhaIslandResortAnuhaIslandAirport : Ind Airport ; -fun AnuradhapuraAirport : Ind Airport ; + fun AnuradhapuraAirport : Ind Airport ; -fun AnvikAKAirport : Ind Airport ; + fun AnvikAKAirport : Ind Airport ; -fun AnyangAirport : Ind Airport ; + fun AnyangAirport : Ind Airport ; -fun AomoriAirport : Ind Airport ; + fun AomoriAirport : Ind Airport ; -fun ApalachicolaMunicipalFLAirport : Ind Airport ; + fun ApalachicolaMunicipalFLAirport : Ind Airport ; -fun ApalapsiliNewGuineaAirport : Ind Airport ; + fun ApalapsiliNewGuineaAirport : Ind Airport ; -fun ApartadoAirport : Ind Airport ; + fun ApartadoAirport : Ind Airport ; -fun ApatakiTuamotuArchipelagoAirport : Ind Airport ; + fun ApatakiTuamotuArchipelagoAirport : Ind Airport ; -fun ApatzinganAirport : Ind Airport ; + fun ApatzinganAirport : Ind Airport ; -fun ApiayAirport : Ind Airport ; + fun ApiayAirport : Ind Airport ; -fun ApoloAirport : Ind Airport ; + fun ApoloAirport : Ind Airport ; -fun AppianLineAirport : Ind Airport ; + fun AppianLineAirport : Ind Airport ; -fun AppleValleyCAAirport : Ind Airport ; + fun AppleValleyCAAirport : Ind Airport ; -fun AprilRiverAirport : Ind Airport ; + fun AprilRiverAirport : Ind Airport ; -fun ApucaranaPRAirport : Ind Airport ; + fun ApucaranaPRAirport : Ind Airport ; -fun AqabaAirport : Ind Airport ; + fun AqabaAirport : Ind Airport ; -fun AqtobeAktyubinskAqtobeAirport : Ind Airport ; + fun AqtobeAktyubinskAqtobeAirport : Ind Airport ; -fun AracajuSEAirport : Ind Airport ; + fun AracajuSEAirport : Ind Airport ; -fun AracatubaSPAirport : Ind Airport ; + fun AracatubaSPAirport : Ind Airport ; -fun AradAirport : Ind Airport ; + fun AradAirport : Ind Airport ; -fun AragarcasGOAirport : Ind Airport ; + fun AragarcasGOAirport : Ind Airport ; -fun AragipAirport : Ind Airport ; + fun AragipAirport : Ind Airport ; -fun AraguainaTOAirport : Ind Airport ; + fun AraguainaTOAirport : Ind Airport ; -fun AramacQueenslandAirport : Ind Airport ; + fun AramacQueenslandAirport : Ind Airport ; -fun AranukaAirport : Ind Airport ; + fun AranukaAirport : Ind Airport ; -fun ArapahoeMunicipalNEAirport : Ind Airport ; + fun ArapahoeMunicipalNEAirport : Ind Airport ; -fun ArapongasPRAirport : Ind Airport ; + fun ArapongasPRAirport : Ind Airport ; -fun AraracuaraAirport : Ind Airport ; + fun AraracuaraAirport : Ind Airport ; -fun AraraquaraSPAirport : Ind Airport ; + fun AraraquaraSPAirport : Ind Airport ; -fun AraratVictoriaAirport : Ind Airport ; + fun AraratVictoriaAirport : Ind Airport ; -fun AraucaAirport : Ind Airport ; + fun AraucaAirport : Ind Airport ; -fun ArauquitaAirport : Ind Airport ; + fun ArauquitaAirport : Ind Airport ; -fun AraxaMGAirport : Ind Airport ; + fun AraxaMGAirport : Ind Airport ; -fun AraxosPatrasAirport : Ind Airport ; + fun AraxosPatrasAirport : Ind Airport ; -fun ArbaMintchAirport : Ind Airport ; + fun ArbaMintchAirport : Ind Airport ; -fun ArboletasAirport : Ind Airport ; + fun ArboletasAirport : Ind Airport ; -fun ArcataCAAirport : Ind Airport ; + fun ArcataCAAirport : Ind Airport ; -fun ArcticVillageAKAirport : Ind Airport ; + fun ArcticVillageAKAirport : Ind Airport ; -fun ArdmoreAirport : Ind Airport ; + fun ArdmoreAirport : Ind Airport ; -fun ArdmoreMunicipalOKAirport : Ind Airport ; + fun ArdmoreMunicipalOKAirport : Ind Airport ; -fun ArgyleDownsWesternAustraliaAirport : Ind Airport ; + fun ArgyleDownsWesternAustraliaAirport : Ind Airport ; -fun AricaAirport : Ind Airport ; + fun AricaAirport : Ind Airport ; -fun AripuanaMTAirport : Ind Airport ; + fun AripuanaMTAirport : Ind Airport ; -fun AriquemesROAirport : Ind Airport ; + fun AriquemesROAirport : Ind Airport ; -fun ArkalykAirport : Ind Airport ; + fun ArkalykAirport : Ind Airport ; -fun ArkhangelskArkhangelskAirport : Ind Airport ; + fun ArkhangelskArkhangelskAirport : Ind Airport ; -fun ArlandaStockholmAirport : Ind Airport ; + fun ArlandaStockholmAirport : Ind Airport ; -fun ArlesCamargueGaronsNimesAirport : Ind Airport ; + fun ArlesCamargueGaronsNimesAirport : Ind Airport ; -fun ArlyAirport : Ind Airport ; + fun ArlyAirport : Ind Airport ; -fun ArmeniaAirport : Ind Airport ; + fun ArmeniaAirport : Ind Airport ; -fun ArmidaleNewSouthWalesAirport : Ind Airport ; + fun ArmidaleNewSouthWalesAirport : Ind Airport ; -fun ArnoAirport : Ind Airport ; + fun ArnoAirport : Ind Airport ; -fun AroaAirport : Ind Airport ; + fun AroaAirport : Ind Airport ; -fun AronaAirport : Ind Airport ; + fun AronaAirport : Ind Airport ; -fun AroraeIslandAirport : Ind Airport ; + fun AroraeIslandAirport : Ind Airport ; -fun ArraburyQueenslandAirport : Ind Airport ; + fun ArraburyQueenslandAirport : Ind Airport ; -fun ArrachartAntsirananaDiegoSuarezAirport : Ind Airport ; + fun ArrachartAntsirananaDiegoSuarezAirport : Ind Airport ; -fun ArraiasGOAirport : Ind Airport ; + fun ArraiasGOAirport : Ind Airport ; -fun ArsoAirport : Ind Airport ; + fun ArsoAirport : Ind Airport ; -fun ArsukAirport : Ind Airport ; + fun ArsukAirport : Ind Airport ; -fun ArtesiaMunicipalNMAirport : Ind Airport ; + fun ArtesiaMunicipalNMAirport : Ind Airport ; -fun ArthurNNeuIAAirport : Ind Airport ; + fun ArthurNNeuIAAirport : Ind Airport ; -fun ArthursTownCatAirport : Ind Airport ; + fun ArthursTownCatAirport : Ind Airport ; -fun ArtigasAirport : Ind Airport ; + fun ArtigasAirport : Ind Airport ; -fun ArushaAirport : Ind Airport ; + fun ArushaAirport : Ind Airport ; -fun AruthaAirport : Ind Airport ; + fun AruthaAirport : Ind Airport ; -fun ArvidsjaurAirport : Ind Airport ; + fun ArvidsjaurAirport : Ind Airport ; -fun AsahikawaAirport : Ind Airport ; + fun AsahikawaAirport : Ind Airport ; -fun AsapaAirport : Ind Airport ; + fun AsapaAirport : Ind Airport ; -fun AsauAirport : Ind Airport ; + fun AsauAirport : Ind Airport ; -fun AscensionAirport : Ind Airport ; + fun AscensionAirport : Ind Airport ; -fun AscensionIslandAirport : Ind Airport ; + fun AscensionIslandAirport : Ind Airport ; -fun AsconaAirport : Ind Airport ; + fun AsconaAirport : Ind Airport ; -fun AsekiAirport : Ind Airport ; + fun AsekiAirport : Ind Airport ; -fun AselaAirport : Ind Airport ; + fun AselaAirport : Ind Airport ; -fun AshburtonAirport : Ind Airport ; + fun AshburtonAirport : Ind Airport ; -fun AshevilleRegionalNCAirport : Ind Airport ; + fun AshevilleRegionalNCAirport : Ind Airport ; -fun AshgabatAshkhabadAhalAirport : Ind Airport ; + fun AshgabatAshkhabadAhalAirport : Ind Airport ; -fun AshleyMunicipalNDAirport : Ind Airport ; + fun AshleyMunicipalNDAirport : Ind Airport ; -fun AsirimAirport : Ind Airport ; + fun AsirimAirport : Ind Airport ; -fun AsosaAirport : Ind Airport ; + fun AsosaAirport : Ind Airport ; -fun AspenPitkinCountyAirportSardyFieldCOAirport : Ind Airport ; + fun AspenPitkinCountyAirportSardyFieldCOAirport : Ind Airport ; -fun AssabAirport : Ind Airport ; + fun AssabAirport : Ind Airport ; -fun AssisSPAirport : Ind Airport ; + fun AssisSPAirport : Ind Airport ; -fun AssiutAirport : Ind Airport ; + fun AssiutAirport : Ind Airport ; -fun AstrakhanAstrakhanAirport : Ind Airport ; + fun AstrakhanAstrakhanAirport : Ind Airport ; -fun AstraksetraAirport : Ind Airport ; + fun AstraksetraAirport : Ind Airport ; -fun AstypaleaIslandAirport : Ind Airport ; + fun AstypaleaIslandAirport : Ind Airport ; -fun AswanAirport : Ind Airport ; + fun AswanAirport : Ind Airport ; -fun AtalayaAirport : Ind Airport ; + fun AtalayaAirport : Ind Airport ; -fun AtaqAirport : Ind Airport ; + fun AtaqAirport : Ind Airport ; -fun AtarAirport : Ind Airport ; + fun AtarAirport : Ind Airport ; -fun AtarotJerusalemAirport : Ind Airport ; + fun AtarotJerusalemAirport : Ind Airport ; -fun AtaturkYesilkovInternationalIstanbulAirport : Ind Airport ; + fun AtaturkYesilkovInternationalIstanbulAirport : Ind Airport ; -fun AtauroAirport : Ind Airport ; + fun AtauroAirport : Ind Airport ; -fun AtbaraAirport : Ind Airport ; + fun AtbaraAirport : Ind Airport ; -fun AthensBenEppsGAAirport : Ind Airport ; + fun AthensBenEppsGAAirport : Ind Airport ; -fun AtiAirport : Ind Airport ; + fun AtiAirport : Ind Airport ; -fun AtiuAirport : Ind Airport ; + fun AtiuAirport : Ind Airport ; -fun AtkaAKAirport : Ind Airport ; + fun AtkaAKAirport : Ind Airport ; -fun AtkambaAirport : Ind Airport ; + fun AtkambaAirport : Ind Airport ; -fun AtlantaTechnologyParkGAAirport : Ind Airport ; + fun AtlantaTechnologyParkGAAirport : Ind Airport ; -fun AtlanticCityInternationalNJAirport : Ind Airport ; + fun AtlanticCityInternationalNJAirport : Ind Airport ; -fun AtlanticCityMunicipalAirportBaderFieldNJAirport : Ind Airport ; + fun AtlanticCityMunicipalAirportBaderFieldNJAirport : Ind Airport ; -fun AtlanticMunicipalIAAirport : Ind Airport ; + fun AtlanticMunicipalIAAirport : Ind Airport ; -fun AtmautluakAKAirport : Ind Airport ; + fun AtmautluakAKAirport : Ind Airport ; -fun AtoifiAirport : Ind Airport ; + fun AtoifiAirport : Ind Airport ; -fun AtqasukAKAirport : Ind Airport ; + fun AtqasukAKAirport : Ind Airport ; -fun AttopeuAirport : Ind Airport ; + fun AttopeuAirport : Ind Airport ; -fun AtuonaMarquesasIslandsAirport : Ind Airport ; + fun AtuonaMarquesasIslandsAirport : Ind Airport ; -fun AtyrauGuryevAtyrauAirport : Ind Airport ; + fun AtyrauGuryevAtyrauAirport : Ind Airport ; -fun AuaAirport : Ind Airport ; + fun AuaAirport : Ind Airport ; -fun AubRudeisAirport : Ind Airport ; + fun AubRudeisAirport : Ind Airport ; -fun AuburnMunicipalCAAirport : Ind Airport ; + fun AuburnMunicipalCAAirport : Ind Airport ; -fun AuburnOpelikaRobertGPittsALAirport : Ind Airport ; + fun AuburnOpelikaRobertGPittsALAirport : Ind Airport ; -fun AudubonCountyIAAirport : Ind Airport ; + fun AudubonCountyIAAirport : Ind Airport ; -fun AugsburgAirport : Ind Airport ; + fun AugsburgAirport : Ind Airport ; -fun AugustaStateMEAirport : Ind Airport ; + fun AugustaStateMEAirport : Ind Airport ; -fun AugustusDownsQueenslandAirport : Ind Airport ; + fun AugustusDownsQueenslandAirport : Ind Airport ; -fun AukiAirport : Ind Airport ; + fun AukiAirport : Ind Airport ; -fun AulnatClermontFerrandAirport : Ind Airport ; + fun AulnatClermontFerrandAirport : Ind Airport ; -fun AurAtollAirport : Ind Airport ; + fun AurAtollAirport : Ind Airport ; -fun AurangabadAirport : Ind Airport ; + fun AurangabadAirport : Ind Airport ; -fun AurillacAirport : Ind Airport ; + fun AurillacAirport : Ind Airport ; -fun AuroraMunicipalILAirport : Ind Airport ; + fun AuroraMunicipalILAirport : Ind Airport ; -fun AurukunMissionQueenslandAirport : Ind Airport ; + fun AurukunMissionQueenslandAirport : Ind Airport ; -fun AustinMunicipalMNAirport : Ind Airport ; + fun AustinMunicipalMNAirport : Ind Airport ; -fun AustinNVAirport : Ind Airport ; + fun AustinNVAirport : Ind Airport ; -fun AustinStraubelInternationalWIAirport : Ind Airport ; + fun AustinStraubelInternationalWIAirport : Ind Airport ; -fun AustralDownsNorthernTerritoryAirport : Ind Airport ; + fun AustralDownsNorthernTerritoryAirport : Ind Airport ; -fun AuvergneNorthernTerritoryAirport : Ind Airport ; + fun AuvergneNorthernTerritoryAirport : Ind Airport ; -fun AvaBillMartinMemorialMOAirport : Ind Airport ; + fun AvaBillMartinMemorialMOAirport : Ind Airport ; -fun AvalonBaySeaplaneBaseCAAirport : Ind Airport ; + fun AvalonBaySeaplaneBaseCAAirport : Ind Airport ; -fun AvalonNewSouthWalesAirport : Ind Airport ; + fun AvalonNewSouthWalesAirport : Ind Airport ; -fun AvenalCAAirport : Ind Airport ; + fun AvenalCAAirport : Ind Airport ; -fun AvianoAirBaseAvianoAirport : Ind Airport ; + fun AvianoAirBaseAvianoAirport : Ind Airport ; -fun AvionClubatCrestedButteCOAirport : Ind Airport ; + fun AvionClubatCrestedButteCOAirport : Ind Airport ; -fun AvonCOAirport : Ind Airport ; + fun AvonCOAirport : Ind Airport ; -fun AvonParkMunicipalFLAirport : Ind Airport ; + fun AvonParkMunicipalFLAirport : Ind Airport ; -fun AvoriazAirport : Ind Airport ; + fun AvoriazAirport : Ind Airport ; -fun AvraValleyAZAirport : Ind Airport ; + fun AvraValleyAZAirport : Ind Airport ; -fun AvuAvuAirport : Ind Airport ; + fun AvuAvuAirport : Ind Airport ; -fun AwabaAirport : Ind Airport ; + fun AwabaAirport : Ind Airport ; -fun AwarAirport : Ind Airport ; + fun AwarAirport : Ind Airport ; -fun AwaradamAirport : Ind Airport ; + fun AwaradamAirport : Ind Airport ; -fun AwarehAirport : Ind Airport ; + fun AwarehAirport : Ind Airport ; -fun AwassaAirport : Ind Airport ; + fun AwassaAirport : Ind Airport ; -fun AxumAirport : Ind Airport ; + fun AxumAirport : Ind Airport ; -fun AyacuchoAirport : Ind Airport ; + fun AyacuchoAirport : Ind Airport ; -fun AyacuchoAirportPeru : Ind Airport ; + fun AyacuchoAirportPeru : Ind Airport ; -fun AyapelAirport : Ind Airport ; + fun AyapelAirport : Ind Airport ; -fun AyawasiAirport : Ind Airport ; + fun AyawasiAirport : Ind Airport ; -fun AyersRockNorthernTerritoryAirport : Ind Airport ; + fun AyersRockNorthernTerritoryAirport : Ind Airport ; -fun AyrQueenslandAirport : Ind Airport ; + fun AyrQueenslandAirport : Ind Airport ; -fun BaAirport : Ind Airport ; + fun BaAirport : Ind Airport ; -fun BabelegiAirport : Ind Airport ; + fun BabelegiAirport : Ind Airport ; -fun BaboAirport : Ind Airport ; + fun BaboAirport : Ind Airport ; -fun BabolsarAirport : Ind Airport ; + fun BabolsarAirport : Ind Airport ; -fun BacaGrandeCOAirport : Ind Airport ; + fun BacaGrandeCOAirport : Ind Airport ; -fun BacauAirport : Ind Airport ; + fun BacauAirport : Ind Airport ; -fun BacoJinkaAirport : Ind Airport ; + fun BacoJinkaAirport : Ind Airport ; -fun BacolodAirport : Ind Airport ; + fun BacolodAirport : Ind Airport ; -fun BadeAirport : Ind Airport ; + fun BadeAirport : Ind Airport ; -fun BadinAirport : Ind Airport ; + fun BadinAirport : Ind Airport ; -fun BaduIslandQueenslandAirport : Ind Airport ; + fun BaduIslandQueenslandAirport : Ind Airport ; -fun BafoussemAirport : Ind Airport ; + fun BafoussemAirport : Ind Airport ; -fun BaganaAirport : Ind Airport ; + fun BaganaAirport : Ind Airport ; -fun BagdograAirport : Ind Airport ; + fun BagdograAirport : Ind Airport ; -fun BageRSAirport : Ind Airport ; + fun BageRSAirport : Ind Airport ; -fun BaghdadAirport : Ind Airport ; + fun BaghdadAirport : Ind Airport ; -fun BagintonCoventryAirport : Ind Airport ; + fun BagintonCoventryAirport : Ind Airport ; -fun BaglungAirport : Ind Airport ; + fun BaglungAirport : Ind Airport ; -fun BaguioAirport : Ind Airport ; + fun BaguioAirport : Ind Airport ; -fun BaharDarAirport : Ind Airport ; + fun BaharDarAirport : Ind Airport ; -fun BahawalpurAirport : Ind Airport ; + fun BahawalpurAirport : Ind Airport ; -fun BahiaAngelesAirport : Ind Airport ; + fun BahiaAngelesAirport : Ind Airport ; -fun BahiaCupicaAirport : Ind Airport ; + fun BahiaCupicaAirport : Ind Airport ; -fun BahiaSolanoAirport : Ind Airport ; + fun BahiaSolanoAirport : Ind Airport ; -fun BahiasdeHuatulcoSantaCruzHuatulcoAirport : Ind Airport ; + fun BahiasdeHuatulcoSantaCruzHuatulcoAirport : Ind Airport ; -fun BahreganAirport : Ind Airport ; + fun BahreganAirport : Ind Airport ; -fun BaiaMapeAirport : Ind Airport ; + fun BaiaMapeAirport : Ind Airport ; -fun BaiadeCaraquezAirport : Ind Airport ; + fun BaiadeCaraquezAirport : Ind Airport ; -fun BaibaraAirport : Ind Airport ; + fun BaibaraAirport : Ind Airport ; -fun BaidoaAirport : Ind Airport ; + fun BaidoaAirport : Ind Airport ; -fun BaindoungAirport : Ind Airport ; + fun BaindoungAirport : Ind Airport ; -fun BairnsdaleVictoriaAirport : Ind Airport ; + fun BairnsdaleVictoriaAirport : Ind Airport ; -fun BaitadiAirport : Ind Airport ; + fun BaitadiAirport : Ind Airport ; -fun BaiyerRiverAirport : Ind Airport ; + fun BaiyerRiverAirport : Ind Airport ; -fun BaiyunGuangzhouCantonAirport : Ind Airport ; + fun BaiyunGuangzhouCantonAirport : Ind Airport ; -fun BajawaAirport : Ind Airport ; + fun BajawaAirport : Ind Airport ; -fun BajhangAirport : Ind Airport ; + fun BajhangAirport : Ind Airport ; -fun BajoneAirport : Ind Airport ; + fun BajoneAirport : Ind Airport ; -fun BajuraAirport : Ind Airport ; + fun BajuraAirport : Ind Airport ; -fun BakalalanSarawakAirport : Ind Airport ; + fun BakalalanSarawakAirport : Ind Airport ; -fun BakelAirport : Ind Airport ; + fun BakelAirport : Ind Airport ; -fun BakerCityMunicipalORAirport : Ind Airport ; + fun BakerCityMunicipalORAirport : Ind Airport ; -fun BakerIslandAirport : Ind Airport ; + fun BakerIslandAirport : Ind Airport ; -fun BakiBakuNaxcivanAirport : Ind Airport ; + fun BakiBakuNaxcivanAirport : Ind Airport ; -fun BakkafjordurAirport : Ind Airport ; + fun BakkafjordurAirport : Ind Airport ; -fun BakkiGrundarfjordurAirport : Ind Airport ; + fun BakkiGrundarfjordurAirport : Ind Airport ; -fun BakoumaAirport : Ind Airport ; + fun BakoumaAirport : Ind Airport ; -fun BalakovoSaratovAirport : Ind Airport ; + fun BalakovoSaratovAirport : Ind Airport ; -fun BalalaeAirport : Ind Airport ; + fun BalalaeAirport : Ind Airport ; -fun BalboaAirport : Ind Airport ; + fun BalboaAirport : Ind Airport ; -fun BalerAirport : Ind Airport ; + fun BalerAirport : Ind Airport ; -fun BalgoHillsWesternAustraliaAirport : Ind Airport ; + fun BalgoHillsWesternAustraliaAirport : Ind Airport ; -fun BalhashAirport : Ind Airport ; + fun BalhashAirport : Ind Airport ; -fun BaliAirport : Ind Airport ; + fun BaliAirport : Ind Airport ; -fun BaliAirportPapuaNewGuinea : Ind Airport ; + fun BaliAirportPapuaNewGuinea : Ind Airport ; -fun BaliBamendaAirport : Ind Airport ; + fun BaliBamendaAirport : Ind Airport ; -fun BaliceKrakowAirport : Ind Airport ; + fun BaliceKrakowAirport : Ind Airport ; -fun BalikesirAirport : Ind Airport ; + fun BalikesirAirport : Ind Airport ; -fun BallinaNewSouthWalesAirport : Ind Airport ; + fun BallinaNewSouthWalesAirport : Ind Airport ; -fun BallykellyNorthernIrelandAirport : Ind Airport ; + fun BallykellyNorthernIrelandAirport : Ind Airport ; -fun BalmacedaAirport : Ind Airport ; + fun BalmacedaAirport : Ind Airport ; -fun BalranaldNewSouthWalesAirport : Ind Airport ; + fun BalranaldNewSouthWalesAirport : Ind Airport ; -fun BalsasMAAirport : Ind Airport ; + fun BalsasMAAirport : Ind Airport ; -fun BaltimoreWashingtonInternationalMDAirport : Ind Airport ; + fun BaltimoreWashingtonInternationalMDAirport : Ind Airport ; -fun BaltrumAirport : Ind Airport ; + fun BaltrumAirport : Ind Airport ; -fun BamagaQueenslandAirport : Ind Airport ; + fun BamagaQueenslandAirport : Ind Airport ; -fun BambariAirport : Ind Airport ; + fun BambariAirport : Ind Airport ; -fun BamburiAirport : Ind Airport ; + fun BamburiAirport : Ind Airport ; -fun BamernyAirport : Ind Airport ; + fun BamernyAirport : Ind Airport ; -fun BamiyanAirport : Ind Airport ; + fun BamiyanAirport : Ind Airport ; -fun BamuAirport : Ind Airport ; + fun BamuAirport : Ind Airport ; -fun BanMakKhaengAirport : Ind Airport ; + fun BanMakKhaengAirport : Ind Airport ; -fun BanMeThoutAirport : Ind Airport ; + fun BanMeThoutAirport : Ind Airport ; -fun BandarAbbasAirport : Ind Airport ; + fun BandarAbbasAirport : Ind Airport ; -fun BandarLengehAirport : Ind Airport ; + fun BandarLengehAirport : Ind Airport ; -fun BandirmaAirport : Ind Airport ; + fun BandirmaAirport : Ind Airport ; -fun BandonStateORAirport : Ind Airport ; + fun BandonStateORAirport : Ind Airport ; -fun BandunduAirport : Ind Airport ; + fun BandunduAirport : Ind Airport ; -fun BandungAirport : Ind Airport ; + fun BandungAirport : Ind Airport ; -fun BaneasaBucharestAirport : Ind Airport ; + fun BaneasaBucharestAirport : Ind Airport ; -fun BanforaAirport : Ind Airport ; + fun BanforaAirport : Ind Airport ; -fun BangaloreAirport : Ind Airport ; + fun BangaloreAirport : Ind Airport ; -fun BangassouAirport : Ind Airport ; + fun BangassouAirport : Ind Airport ; -fun BangokaKisanganiAirport : Ind Airport ; + fun BangokaKisanganiAirport : Ind Airport ; -fun BangorInternationalMEAirport : Ind Airport ; + fun BangorInternationalMEAirport : Ind Airport ; -fun BanjaLukaAirport : Ind Airport ; + fun BanjaLukaAirport : Ind Airport ; -fun BankstownNewSouthWalesAirport : Ind Airport ; + fun BankstownNewSouthWalesAirport : Ind Airport ; -fun BanmethuotAirport : Ind Airport ; + fun BanmethuotAirport : Ind Airport ; -fun BanningMunicipalCAAirport : Ind Airport ; + fun BanningMunicipalCAAirport : Ind Airport ; -fun BannuAirport : Ind Airport ; + fun BannuAirport : Ind Airport ; -fun BantryAirport : Ind Airport ; + fun BantryAirport : Ind Airport ; -fun BanzAirport : Ind Airport ; + fun BanzAirport : Ind Airport ; -fun BaoshanAirport : Ind Airport ; + fun BaoshanAirport : Ind Airport ; -fun BaotouAirport : Ind Airport ; + fun BaotouAirport : Ind Airport ; -fun BapiAirport : Ind Airport ; + fun BapiAirport : Ind Airport ; -fun BaracoaAirport : Ind Airport ; + fun BaracoaAirport : Ind Airport ; -fun BarahonaAirport : Ind Airport ; + fun BarahonaAirport : Ind Airport ; -fun BaramitaAirport : Ind Airport ; + fun BaramitaAirport : Ind Airport ; -fun BarbudaCodringtonBarbudaIsAirport : Ind Airport ; + fun BarbudaCodringtonBarbudaIsAirport : Ind Airport ; -fun BarcaKosiceAirport : Ind Airport ; + fun BarcaKosiceAirport : Ind Airport ; -fun BarcaldineQueenslandAirport : Ind Airport ; + fun BarcaldineQueenslandAirport : Ind Airport ; -fun BarcelonnetteAirport : Ind Airport ; + fun BarcelonnetteAirport : Ind Airport ; -fun BarcelosAMAirport : Ind Airport ; + fun BarcelosAMAirport : Ind Airport ; -fun BarderaAirport : Ind Airport ; + fun BarderaAirport : Ind Airport ; -fun BardufossAirport : Ind Airport ; + fun BardufossAirport : Ind Airport ; -fun BarinasAirport : Ind Airport ; + fun BarinasAirport : Ind Airport ; -fun BarioSarawakAirport : Ind Airport ; + fun BarioSarawakAirport : Ind Airport ; -fun BarisalAirport : Ind Airport ; + fun BarisalAirport : Ind Airport ; -fun BarklyDownsQueenslandAirport : Ind Airport ; + fun BarklyDownsQueenslandAirport : Ind Airport ; -fun BarksdaleAirForceBaseLAAirport : Ind Airport ; + fun BarksdaleAirForceBaseLAAirport : Ind Airport ; -fun BarnaulAltayAirport : Ind Airport ; + fun BarnaulAltayAirport : Ind Airport ; -fun BarnesMunicipalMAAirport : Ind Airport ; + fun BarnesMunicipalMAAirport : Ind Airport ; -fun BarnstableMunicipalAirportBoardmanPolandoFieldMAAirport : Ind Airport ; + fun BarnstableMunicipalAirportBoardmanPolandoFieldMAAirport : Ind Airport ; -fun BarnwellCountySCAirport : Ind Airport ; + fun BarnwellCountySCAirport : Ind Airport ; -fun BarondaVadodaraAirport : Ind Airport ; + fun BarondaVadodaraAirport : Ind Airport ; -fun BarquisimetoAirport : Ind Airport ; + fun BarquisimetoAirport : Ind Airport ; -fun BarraBAAirport : Ind Airport ; + fun BarraBAAirport : Ind Airport ; -fun BarraColoradoAirport : Ind Airport ; + fun BarraColoradoAirport : Ind Airport ; -fun BarraScotlandAirport : Ind Airport ; + fun BarraScotlandAirport : Ind Airport ; -fun BarradoCordaMAAirport : Ind Airport ; + fun BarradoCordaMAAirport : Ind Airport ; -fun BarradoGarcasMGAirport : Ind Airport ; + fun BarradoGarcasMGAirport : Ind Airport ; -fun BarrancabermejaAirport : Ind Airport ; + fun BarrancabermejaAirport : Ind Airport ; -fun BarrancadeUpiAirport : Ind Airport ; + fun BarrancadeUpiAirport : Ind Airport ; -fun BarreirasBAAirport : Ind Airport ; + fun BarreirasBAAirport : Ind Airport ; -fun BarreirinhasMAAirport : Ind Airport ; + fun BarreirinhasMAAirport : Ind Airport ; -fun BarretosSPAirport : Ind Airport ; + fun BarretosSPAirport : Ind Airport ; -fun BarrowIslandWesternAustraliaAirport : Ind Airport ; + fun BarrowIslandWesternAustraliaAirport : Ind Airport ; -fun BarrowinFurnessAirport : Ind Airport ; + fun BarrowinFurnessAirport : Ind Airport ; -fun BarstowDaggettCAAirport : Ind Airport ; + fun BarstowDaggettCAAirport : Ind Airport ; -fun BarterIslandLRRSAKAirport : Ind Airport ; + fun BarterIslandLRRSAKAirport : Ind Airport ; -fun BarthAirport : Ind Airport ; + fun BarthAirport : Ind Airport ; -fun BarticaAirport : Ind Airport ; + fun BarticaAirport : Ind Airport ; -fun BartlesvilleMunicipalOKAirport : Ind Airport ; + fun BartlesvilleMunicipalOKAirport : Ind Airport ; -fun BartlettCoveSeaplaneBaseAKAirport : Ind Airport ; + fun BartlettCoveSeaplaneBaseAKAirport : Ind Airport ; -fun BartlettsAKAirport : Ind Airport ; + fun BartlettsAKAirport : Ind Airport ; -fun BartowMunicipalFLAirport : Ind Airport ; + fun BartowMunicipalFLAirport : Ind Airport ; -fun BasankusuAirport : Ind Airport ; + fun BasankusuAirport : Ind Airport ; -fun BascoAirport : Ind Airport ; + fun BascoAirport : Ind Airport ; -fun BaselMulhouseEuroBaselAirport : Ind Airport ; + fun BaselMulhouseEuroBaselAirport : Ind Airport ; -fun BasongoAirport : Ind Airport ; + fun BasongoAirport : Ind Airport ; -fun BasseTerreAirport : Ind Airport ; + fun BasseTerreAirport : Ind Airport ; -fun BasseinAirport : Ind Airport ; + fun BasseinAirport : Ind Airport ; -fun BataAirport : Ind Airport ; + fun BataAirport : Ind Airport ; -fun BatamBatuBesarAirport : Ind Airport ; + fun BatamBatuBesarAirport : Ind Airport ; -fun BatangafoAirport : Ind Airport ; + fun BatangafoAirport : Ind Airport ; -fun BataviaDownsQueenslandAirport : Ind Airport ; + fun BataviaDownsQueenslandAirport : Ind Airport ; -fun BatesvilleRegionalARAirport : Ind Airport ; + fun BatesvilleRegionalARAirport : Ind Airport ; -fun BathurstIslandNorthernTerritoryAirport : Ind Airport ; + fun BathurstIslandNorthernTerritoryAirport : Ind Airport ; -fun BathurstNewSouthWalesAirport : Ind Airport ; + fun BathurstNewSouthWalesAirport : Ind Airport ; -fun BatmanMilitaryAirBaseBatmanAirport : Ind Airport ; + fun BatmanMilitaryAirBaseBatmanAirport : Ind Airport ; -fun BatnaAirport : Ind Airport ; + fun BatnaAirport : Ind Airport ; -fun BatomAirport : Ind Airport ; + fun BatomAirport : Ind Airport ; -fun BatonRougeMetropolitanAirportRyanFieldLAAirport : Ind Airport ; + fun BatonRougeMetropolitanAirportRyanFieldLAAirport : Ind Airport ; -fun BatsfjordAirport : Ind Airport ; + fun BatsfjordAirport : Ind Airport ; -fun BattambangAirport : Ind Airport ; + fun BattambangAirport : Ind Airport ; -fun BatticalcaAirport : Ind Airport ; + fun BatticalcaAirport : Ind Airport ; -fun BatuLicinAirport : Ind Airport ; + fun BatuLicinAirport : Ind Airport ; -fun BatumiAbkhaziaAirport : Ind Airport ; + fun BatumiAbkhaziaAirport : Ind Airport ; -fun BaucauAirport : Ind Airport ; + fun BaucauAirport : Ind Airport ; -fun BauchiAirport : Ind Airport ; + fun BauchiAirport : Ind Airport ; -fun BaudetteInternationalMNAirport : Ind Airport ; + fun BaudetteInternationalMNAirport : Ind Airport ; -fun BauruSPAirport : Ind Airport ; + fun BauruSPAirport : Ind Airport ; -fun BawanAirport : Ind Airport ; + fun BawanAirport : Ind Airport ; -fun BayCityMunicipalTXAirport : Ind Airport ; + fun BayCityMunicipalTXAirport : Ind Airport ; -fun BayamoAirport : Ind Airport ; + fun BayamoAirport : Ind Airport ; -fun BayofIslandsAirport : Ind Airport ; + fun BayofIslandsAirport : Ind Airport ; -fun BayreuthAirport : Ind Airport ; + fun BayreuthAirport : Ind Airport ; -fun BaytownTXAirport : Ind Airport ; + fun BaytownTXAirport : Ind Airport ; -fun BeagleBayWesternAustraliaAirport : Ind Airport ; + fun BeagleBayWesternAustraliaAirport : Ind Airport ; -fun BealeAirForceBaseCAAirport : Ind Airport ; + fun BealeAirForceBaseCAAirport : Ind Airport ; -fun BearCreek3AKAirport : Ind Airport ; + fun BearCreek3AKAirport : Ind Airport ; -fun BeatriceMunicipalNEAirport : Ind Airport ; + fun BeatriceMunicipalNEAirport : Ind Airport ; -fun BeattyNVAirport : Ind Airport ; + fun BeattyNVAirport : Ind Airport ; -fun BeaufortCountySCAirport : Ind Airport ; + fun BeaufortCountySCAirport : Ind Airport ; -fun BeaumontMunicipalTXAirport : Ind Airport ; + fun BeaumontMunicipalTXAirport : Ind Airport ; -fun BeauregardParishLAAirport : Ind Airport ; + fun BeauregardParishLAAirport : Ind Airport ; -fun BeaverCountyPAAirport : Ind Airport ; + fun BeaverCountyPAAirport : Ind Airport ; -fun BeaverInletAKAirport : Ind Airport ; + fun BeaverInletAKAirport : Ind Airport ; -fun BeaverRuinGAAirport : Ind Airport ; + fun BeaverRuinGAAirport : Ind Airport ; -fun BedfordDownsWesternAustraliaAirport : Ind Airport ; + fun BedfordDownsWesternAustraliaAirport : Ind Airport ; -fun BedourieQueenslandAirport : Ind Airport ; + fun BedourieQueenslandAirport : Ind Airport ; -fun BeechFactoryKSAirport : Ind Airport ; + fun BeechFactoryKSAirport : Ind Airport ; -fun BeerShebaBeershebaAirport : Ind Airport ; + fun BeerShebaBeershebaAirport : Ind Airport ; -fun BegamganjAirport : Ind Airport ; + fun BegamganjAirport : Ind Airport ; -fun BeicaAirport : Ind Airport ; + fun BeicaAirport : Ind Airport ; -fun BeidahAirport : Ind Airport ; + fun BeidahAirport : Ind Airport ; -fun BeihaiAirport : Ind Airport ; + fun BeihaiAirport : Ind Airport ; -fun BeihanAirport : Ind Airport ; + fun BeihanAirport : Ind Airport ; -fun BeijingPekingAirport : Ind Airport ; + fun BeijingPekingAirport : Ind Airport ; -fun BeiraAirport : Ind Airport ; + fun BeiraAirport : Ind Airport ; -fun BelagaSarawakAirport : Ind Airport ; + fun BelagaSarawakAirport : Ind Airport ; -fun BelepBelepIslandsAirport : Ind Airport ; + fun BelepBelepIslandsAirport : Ind Airport ; -fun BelfortAirport : Ind Airport ; + fun BelfortAirport : Ind Airport ; -fun BelgaumAirport : Ind Airport ; + fun BelgaumAirport : Ind Airport ; -fun BelgradeAirport : Ind Airport ; + fun BelgradeAirport : Ind Airport ; -fun BellIslandHotSpringsSeaplaneBaseAKAirport : Ind Airport ; + fun BellIslandHotSpringsSeaplaneBaseAKAirport : Ind Airport ; -fun BellaUnionAirport : Ind Airport ; + fun BellaUnionAirport : Ind Airport ; -fun BellaYellaAirport : Ind Airport ; + fun BellaYellaAirport : Ind Airport ; -fun BellaryAirport : Ind Airport ; + fun BellaryAirport : Ind Airport ; -fun BellavistaAirport : Ind Airport ; + fun BellavistaAirport : Ind Airport ; -fun BelleFourcheMunicipalSDAirport : Ind Airport ; + fun BelleFourcheMunicipalSDAirport : Ind Airport ; -fun BellinghamInternationalWAAirport : Ind Airport ; + fun BellinghamInternationalWAAirport : Ind Airport ; -fun BellonaAirport : Ind Airport ; + fun BellonaAirport : Ind Airport ; -fun BellunoAirport : Ind Airport ; + fun BellunoAirport : Ind Airport ; -fun BelmontNewSouthWalesAirport : Ind Airport ; + fun BelmontNewSouthWalesAirport : Ind Airport ; -fun BelmonteBAAirport : Ind Airport ; + fun BelmonteBAAirport : Ind Airport ; -fun BelmulletAirport : Ind Airport ; + fun BelmulletAirport : Ind Airport ; -fun BeloAirport : Ind Airport ; + fun BeloAirport : Ind Airport ; -fun BeloHorizonteMGAirport : Ind Airport ; + fun BeloHorizonteMGAirport : Ind Airport ; -fun BeltsyAirport : Ind Airport ; + fun BeltsyAirport : Ind Airport ; -fun BembridgeEnglandAirport : Ind Airport ; + fun BembridgeEnglandAirport : Ind Airport ; -fun BemichiAirport : Ind Airport ; + fun BemichiAirport : Ind Airport ; -fun BemidjiBeltramiCountyMNAirport : Ind Airport ; + fun BemidjiBeltramiCountyMNAirport : Ind Airport ; -fun BenallaVictoriaAirport : Ind Airport ; + fun BenallaVictoriaAirport : Ind Airport ; -fun BenawiAirport : Ind Airport ; + fun BenawiAirport : Ind Airport ; -fun BenbeculaScotlandAirport : Ind Airport ; + fun BenbeculaScotlandAirport : Ind Airport ; -fun BenedumWVAirport : Ind Airport ; + fun BenedumWVAirport : Ind Airport ; -fun BengbuAirport : Ind Airport ; + fun BengbuAirport : Ind Airport ; -fun BengkuluSumatraAirport : Ind Airport ; + fun BengkuluSumatraAirport : Ind Airport ; -fun BenguelaAirport : Ind Airport ; + fun BenguelaAirport : Ind Airport ; -fun BeniAirport : Ind Airport ; + fun BeniAirport : Ind Airport ; -fun BeninCityAirport : Ind Airport ; + fun BeninCityAirport : Ind Airport ; -fun BeninaBenghaziAirport : Ind Airport ; + fun BeninaBenghaziAirport : Ind Airport ; -fun BenjinaAirport : Ind Airport ; + fun BenjinaAirport : Ind Airport ; -fun BensbachAirport : Ind Airport ; + fun BensbachAirport : Ind Airport ; -fun BensonEnglandAirport : Ind Airport ; + fun BensonEnglandAirport : Ind Airport ; -fun BensonMunicipalMNAirport : Ind Airport ; + fun BensonMunicipalMNAirport : Ind Airport ; -fun BentoGoncalvesRSAirport : Ind Airport ; + fun BentoGoncalvesRSAirport : Ind Airport ; -fun BentwatersStationEnglandAirport : Ind Airport ; + fun BentwatersStationEnglandAirport : Ind Airport ; -fun BeppuAirport : Ind Airport ; + fun BeppuAirport : Ind Airport ; -fun BequiaAirport : Ind Airport ; + fun BequiaAirport : Ind Airport ; -fun BerauAirport : Ind Airport ; + fun BerauAirport : Ind Airport ; -fun BerberaAirport : Ind Airport ; + fun BerberaAirport : Ind Airport ; -fun BerberatiAirport : Ind Airport ; + fun BerberatiAirport : Ind Airport ; -fun BerdyanskZaporizhzhyaAirport : Ind Airport ; + fun BerdyanskZaporizhzhyaAirport : Ind Airport ; -fun BereinaAirport : Ind Airport ; + fun BereinaAirport : Ind Airport ; -fun BeresyAirport : Ind Airport ; + fun BeresyAirport : Ind Airport ; -fun BergamoAirport : Ind Airport ; + fun BergamoAirport : Ind Airport ; -fun BergeracAirport : Ind Airport ; + fun BergeracAirport : Ind Airport ; -fun BergstromAirRescueServiceTXAirport : Ind Airport ; + fun BergstromAirRescueServiceTXAirport : Ind Airport ; -fun BerkeleyCAAirport : Ind Airport ; + fun BerkeleyCAAirport : Ind Airport ; -fun BerlevagAirport : Ind Airport ; + fun BerlevagAirport : Ind Airport ; -fun BerlinMunicipalNHAirport : Ind Airport ; + fun BerlinMunicipalNHAirport : Ind Airport ; -fun BermejoAirport : Ind Airport ; + fun BermejoAirport : Ind Airport ; -fun BernBelpBernBerneAirport : Ind Airport ; + fun BernBelpBernBerneAirport : Ind Airport ; -fun BertMooneyMTAirport : Ind Airport ; + fun BertMooneyMTAirport : Ind Airport ; -fun BertouaAirport : Ind Airport ; + fun BertouaAirport : Ind Airport ; -fun BeruAirport : Ind Airport ; + fun BeruAirport : Ind Airport ; -fun BesalampyAirport : Ind Airport ; + fun BesalampyAirport : Ind Airport ; -fun BethelAKAirport : Ind Airport ; + fun BethelAKAirport : Ind Airport ; -fun BethelSeaplaneBaseAKAirport : Ind Airport ; + fun BethelSeaplaneBaseAKAirport : Ind Airport ; -fun BetoikyAirport : Ind Airport ; + fun BetoikyAirport : Ind Airport ; -fun BetootaQueenslandAirport : Ind Airport ; + fun BetootaQueenslandAirport : Ind Airport ; -fun BetouAirport : Ind Airport ; + fun BetouAirport : Ind Airport ; -fun BettinaAbuDhabiAirport : Ind Airport ; + fun BettinaAbuDhabiAirport : Ind Airport ; -fun BettlesAKAirport : Ind Airport ; + fun BettlesAKAirport : Ind Airport ; -fun BeverleySpringsWesternAustraliaAirport : Ind Airport ; + fun BeverleySpringsWesternAustraliaAirport : Ind Airport ; -fun BeverlyMunicipalMAAirport : Ind Airport ; + fun BeverlyMunicipalMAAirport : Ind Airport ; -fun BhadrapurAirport : Ind Airport ; + fun BhadrapurAirport : Ind Airport ; -fun BhairawaAirport : Ind Airport ; + fun BhairawaAirport : Ind Airport ; -fun BhamoAirport : Ind Airport ; + fun BhamoAirport : Ind Airport ; -fun BharatpurAirport : Ind Airport ; + fun BharatpurAirport : Ind Airport ; -fun BhatindaAirport : Ind Airport ; + fun BhatindaAirport : Ind Airport ; -fun BhavnagarAirport : Ind Airport ; + fun BhavnagarAirport : Ind Airport ; -fun BhojpurAirport : Ind Airport ; + fun BhojpurAirport : Ind Airport ; -fun BhopalAirport : Ind Airport ; + fun BhopalAirport : Ind Airport ; -fun BhubaneswarAirport : Ind Airport ; + fun BhubaneswarAirport : Ind Airport ; -fun BhujAirport : Ind Airport ; + fun BhujAirport : Ind Airport ; -fun BiallaAirport : Ind Airport ; + fun BiallaAirport : Ind Airport ; -fun BiaruAirport : Ind Airport ; + fun BiaruAirport : Ind Airport ; -fun BiawonqueAirport : Ind Airport ; + fun BiawonqueAirport : Ind Airport ; -fun BicycleLakeArmyAirFieldNationalGuardCAAirport : Ind Airport ; + fun BicycleLakeArmyAirFieldNationalGuardCAAirport : Ind Airport ; -fun BielefeldAirport : Ind Airport ; + fun BielefeldAirport : Ind Airport ; -fun BigBayAirport : Ind Airport ; + fun BigBayAirport : Ind Airport ; -fun BigBellWesternAustraliaAirport : Ind Airport ; + fun BigBellWesternAustraliaAirport : Ind Airport ; -fun BigCreekAKAirport : Ind Airport ; + fun BigCreekAKAirport : Ind Airport ; -fun BigCreekAirport : Ind Airport ; + fun BigCreekAirport : Ind Airport ; -fun BigLakeAKAirport : Ind Airport ; + fun BigLakeAKAirport : Ind Airport ; -fun BigMountainAKAirport : Ind Airport ; + fun BigMountainAKAirport : Ind Airport ; -fun BigPineyMarbletonWYAirport : Ind Airport ; + fun BigPineyMarbletonWYAirport : Ind Airport ; -fun BigSpringMcMahonWrinkleTXAirport : Ind Airport ; + fun BigSpringMcMahonWrinkleTXAirport : Ind Airport ; -fun BigSpringTXAirport : Ind Airport ; + fun BigSpringTXAirport : Ind Airport ; -fun BigginHillEnglandAirport : Ind Airport ; + fun BigginHillEnglandAirport : Ind Airport ; -fun BiggsArmyAirFieldTXAirport : Ind Airport ; + fun BiggsArmyAirFieldTXAirport : Ind Airport ; -fun BikanerAirport : Ind Airport ; + fun BikanerAirport : Ind Airport ; -fun BikiniAtollAirport : Ind Airport ; + fun BikiniAtollAirport : Ind Airport ; -fun BilbaoAirport : Ind Airport ; + fun BilbaoAirport : Ind Airport ; -fun BildudalurAirport : Ind Airport ; + fun BildudalurAirport : Ind Airport ; -fun BillilunaStationWesternAustraliaAirport : Ind Airport ; + fun BillilunaStationWesternAustraliaAirport : Ind Airport ; -fun BillingsLoganInternationalMTAirport : Ind Airport ; + fun BillingsLoganInternationalMTAirport : Ind Airport ; -fun BillundAirport : Ind Airport ; + fun BillundAirport : Ind Airport ; -fun BillyMitchellNCAirport : Ind Airport ; + fun BillyMitchellNCAirport : Ind Airport ; -fun BimaAirport : Ind Airport ; + fun BimaAirport : Ind Airport ; -fun BiminAirport : Ind Airport ; + fun BiminAirport : Ind Airport ; -fun BinghamtonRegionalAirportEdwinALinkFieldNYAirport : Ind Airport ; + fun BinghamtonRegionalAirportEdwinALinkFieldNYAirport : Ind Airport ; -fun BintuluSarawakAirport : Ind Airport ; + fun BintuluSarawakAirport : Ind Airport ; -fun BiraroAirport : Ind Airport ; + fun BiraroAirport : Ind Airport ; -fun BiratnagarAirport : Ind Airport ; + fun BiratnagarAirport : Ind Airport ; -fun BirchCreekAKAirport : Ind Airport ; + fun BirchCreekAKAirport : Ind Airport ; -fun BirchwoodPoconoAirparkPAAirport : Ind Airport ; + fun BirchwoodPoconoAirparkPAAirport : Ind Airport ; -fun BirdIslandAirport : Ind Airport ; + fun BirdIslandAirport : Ind Airport ; -fun BirdsvilleQueenslandAirport : Ind Airport ; + fun BirdsvilleQueenslandAirport : Ind Airport ; -fun BirminghamEnglandAirport : Ind Airport ; + fun BirminghamEnglandAirport : Ind Airport ; -fun BirminghamInternationalALAirport : Ind Airport ; + fun BirminghamInternationalALAirport : Ind Airport ; -fun BirninKonniAirport : Ind Airport ; + fun BirninKonniAirport : Ind Airport ; -fun BisbeeDouglasInternationalAZAirport : Ind Airport ; + fun BisbeeDouglasInternationalAZAirport : Ind Airport ; -fun BisbeeMunicipalAZAirport : Ind Airport ; + fun BisbeeMunicipalAZAirport : Ind Airport ; -fun BishaAirport : Ind Airport ; + fun BishaAirport : Ind Airport ; -fun BishkekFrunzeChuyAirport : Ind Airport ; + fun BishkekFrunzeChuyAirport : Ind Airport ; -fun BishoAirport : Ind Airport ; + fun BishoAirport : Ind Airport ; -fun BishopCAAirport : Ind Airport ; + fun BishopCAAirport : Ind Airport ; -fun BishopInternationalMIAirport : Ind Airport ; + fun BishopInternationalMIAirport : Ind Airport ; -fun BiskraAirport : Ind Airport ; + fun BiskraAirport : Ind Airport ; -fun BisligAirport : Ind Airport ; + fun BisligAirport : Ind Airport ; -fun BismarckMunicipalNDAirport : Ind Airport ; + fun BismarckMunicipalNDAirport : Ind Airport ; -fun BissallancaBissauAirport : Ind Airport ; + fun BissallancaBissauAirport : Ind Airport ; -fun BitamAirport : Ind Airport ; + fun BitamAirport : Ind Airport ; -fun BitburgAirBaseBitburgAirport : Ind Airport ; + fun BitburgAirBaseBitburgAirport : Ind Airport ; -fun BizantQueenslandAirport : Ind Airport ; + fun BizantQueenslandAirport : Ind Airport ; -fun BlackallQueenslandAirport : Ind Airport ; + fun BlackallQueenslandAirport : Ind Airport ; -fun BlackbushAirport : Ind Airport ; + fun BlackbushAirport : Ind Airport ; -fun BlackwaterQueenslandAirport : Ind Airport ; + fun BlackwaterQueenslandAirport : Ind Airport ; -fun BlagoveschenskAmurAirport : Ind Airport ; + fun BlagoveschenskAmurAirport : Ind Airport ; -fun BlaineMunicipalWAAirport : Ind Airport ; + fun BlaineMunicipalWAAirport : Ind Airport ; -fun BlakeleyIslandWAAirport : Ind Airport ; + fun BlakeleyIslandWAAirport : Ind Airport ; -fun BlandingMunicipalUTAirport : Ind Airport ; + fun BlandingMunicipalUTAirport : Ind Airport ; -fun BlangBintangBandaAcehKuturajaAirport : Ind Airport ; + fun BlangBintangBandaAcehKuturajaAirport : Ind Airport ; -fun BlockIslandStateRIAirport : Ind Airport ; + fun BlockIslandStateRIAirport : Ind Airport ; -fun BloomfieldQueenslandAirport : Ind Airport ; + fun BloomfieldQueenslandAirport : Ind Airport ; -fun BloomingtonNormalILAirport : Ind Airport ; + fun BloomingtonNormalILAirport : Ind Airport ; -fun BlosserMunicipalKSAirport : Ind Airport ; + fun BlosserMunicipalKSAirport : Ind Airport ; -fun BlueCanyonNyackCAAirport : Ind Airport ; + fun BlueCanyonNyackCAAirport : Ind Airport ; -fun BlueFoxBayAKAirport : Ind Airport ; + fun BlueFoxBayAKAirport : Ind Airport ; -fun BlueLagoonAirport : Ind Airport ; + fun BlueLagoonAirport : Ind Airport ; -fun BluefieldsAirport : Ind Airport ; + fun BluefieldsAirport : Ind Airport ; -fun BlumenauSCAirport : Ind Airport ; + fun BlumenauSCAirport : Ind Airport ; -fun BlytheCAAirport : Ind Airport ; + fun BlytheCAAirport : Ind Airport ; -fun BlythevilleMunicipalARAirport : Ind Airport ; + fun BlythevilleMunicipalARAirport : Ind Airport ; -fun BoAirport : Ind Airport ; + fun BoAirport : Ind Airport ; -fun BoaVistaRRAirport : Ind Airport ; + fun BoaVistaRRAirport : Ind Airport ; -fun BoanaAirport : Ind Airport ; + fun BoanaAirport : Ind Airport ; -fun BoangAirport : Ind Airport ; + fun BoangAirport : Ind Airport ; -fun BoavistaBoavistaAirport : Ind Airport ; + fun BoavistaBoavistaAirport : Ind Airport ; -fun BobBakerMemorialAKAirport : Ind Airport ; + fun BobBakerMemorialAKAirport : Ind Airport ; -fun BobSikesFLAirport : Ind Airport ; + fun BobSikesFLAirport : Ind Airport ; -fun BobbyLChainMunicipalMSAirport : Ind Airport ; + fun BobbyLChainMunicipalMSAirport : Ind Airport ; -fun BoboDioulassoAirport : Ind Airport ; + fun BoboDioulassoAirport : Ind Airport ; -fun BocaRatonFLAirport : Ind Airport ; + fun BocaRatonFLAirport : Ind Airport ; -fun BocadoAcreAMAirport : Ind Airport ; + fun BocadoAcreAMAirport : Ind Airport ; -fun BocasdelToroAirport : Ind Airport ; + fun BocasdelToroAirport : Ind Airport ; -fun BodinumuAirport : Ind Airport ; + fun BodinumuAirport : Ind Airport ; -fun BodoAirport : Ind Airport ; + fun BodoAirport : Ind Airport ; -fun BoeingFieldKingCountyInternationalWAAirport : Ind Airport ; + fun BoeingFieldKingCountyInternationalWAAirport : Ind Airport ; -fun BoendeAirport : Ind Airport ; + fun BoendeAirport : Ind Airport ; -fun BogheAirport : Ind Airport ; + fun BogheAirport : Ind Airport ; -fun BograAirport : Ind Airport ; + fun BograAirport : Ind Airport ; -fun BoiguIslandQueenslandAirport : Ind Airport ; + fun BoiguIslandQueenslandAirport : Ind Airport ; -fun BoireFieldNHAirport : Ind Airport ; + fun BoireFieldNHAirport : Ind Airport ; -fun BoiseAirTerminalGowenFieldIDAirport : Ind Airport ; + fun BoiseAirTerminalGowenFieldIDAirport : Ind Airport ; -fun BokeAirport : Ind Airport ; + fun BokeAirport : Ind Airport ; -fun BokondiniAirport : Ind Airport ; + fun BokondiniAirport : Ind Airport ; -fun BokoroAirport : Ind Airport ; + fun BokoroAirport : Ind Airport ; -fun BokuAirport : Ind Airport ; + fun BokuAirport : Ind Airport ; -fun BolAirport : Ind Airport ; + fun BolAirport : Ind Airport ; -fun BolaangAirport : Ind Airport ; + fun BolaangAirport : Ind Airport ; -fun BoleAddisAbabaAirport : Ind Airport ; + fun BoleAddisAbabaAirport : Ind Airport ; -fun BollingAirForceBaseDCAirport : Ind Airport ; + fun BollingAirForceBaseDCAirport : Ind Airport ; -fun BollonQueenslandAirport : Ind Airport ; + fun BollonQueenslandAirport : Ind Airport ; -fun BolovipAirport : Ind Airport ; + fun BolovipAirport : Ind Airport ; -fun BolwarraQueenslandAirport : Ind Airport ; + fun BolwarraQueenslandAirport : Ind Airport ; -fun BolzanoBozenAirport : Ind Airport ; + fun BolzanoBozenAirport : Ind Airport ; -fun BomaAirport : Ind Airport ; + fun BomaAirport : Ind Airport ; -fun BomaiAirport : Ind Airport ; + fun BomaiAirport : Ind Airport ; -fun BonanzaAirport : Ind Airport ; + fun BonanzaAirport : Ind Airport ; -fun BondoukouAirport : Ind Airport ; + fun BondoukouAirport : Ind Airport ; -fun BongoAirport : Ind Airport ; + fun BongoAirport : Ind Airport ; -fun BontangAirport : Ind Airport ; + fun BontangAirport : Ind Airport ; -fun BontheAirport : Ind Airport ; + fun BontheAirport : Ind Airport ; -fun BooneCountyARAirport : Ind Airport ; + fun BooneCountyARAirport : Ind Airport ; -fun BooneMunicipalIAAirport : Ind Airport ; + fun BooneMunicipalIAAirport : Ind Airport ; -fun BoqueAirport : Ind Airport ; + fun BoqueAirport : Ind Airport ; -fun BoraBoraSocietyIslandsAirport : Ind Airport ; + fun BoraBoraSocietyIslandsAirport : Ind Airport ; -fun BordjBadjiMokhtarAirport : Ind Airport ; + fun BordjBadjiMokhtarAirport : Ind Airport ; -fun BorgarfjordurAirport : Ind Airport ; + fun BorgarfjordurAirport : Ind Airport ; -fun BoridiAirport : Ind Airport ; + fun BoridiAirport : Ind Airport ; -fun BorispolKievAirport : Ind Airport ; + fun BorispolKievAirport : Ind Airport ; -fun BorkumAirport : Ind Airport ; + fun BorkumAirport : Ind Airport ; -fun BorlangeAirBaseBorlangeAirport : Ind Airport ; + fun BorlangeAirBaseBorlangeAirport : Ind Airport ; -fun BorotouAirport : Ind Airport ; + fun BorotouAirport : Ind Airport ; -fun BorregoValleyCAAirport : Ind Airport ; + fun BorregoValleyCAAirport : Ind Airport ; -fun BorroloolaNorthernTerritoryAirport : Ind Airport ; + fun BorroloolaNorthernTerritoryAirport : Ind Airport ; -fun BossangoaAirport : Ind Airport ; + fun BossangoaAirport : Ind Airport ; -fun BossasoAirport : Ind Airport ; + fun BossasoAirport : Ind Airport ; -fun BossembeleAirport : Ind Airport ; + fun BossembeleAirport : Ind Airport ; -fun BossetAirport : Ind Airport ; + fun BossetAirport : Ind Airport ; -fun BostAirport : Ind Airport ; + fun BostAirport : Ind Airport ; -fun BostonCityHeliportMAAirport : Ind Airport ; + fun BostonCityHeliportMAAirport : Ind Airport ; -fun BoswellBayAKAirport : Ind Airport ; + fun BoswellBayAKAirport : Ind Airport ; -fun BotopasieAirport : Ind Airport ; + fun BotopasieAirport : Ind Airport ; -fun BouSaadaAirport : Ind Airport ; + fun BouSaadaAirport : Ind Airport ; -fun BouakeAirport : Ind Airport ; + fun BouakeAirport : Ind Airport ; -fun BouarAirport : Ind Airport ; + fun BouarAirport : Ind Airport ; -fun BoucaAirport : Ind Airport ; + fun BoucaAirport : Ind Airport ; -fun BoulderCityMunicipalNVAirport : Ind Airport ; + fun BoulderCityMunicipalNVAirport : Ind Airport ; -fun BouliaQueenslandAirport : Ind Airport ; + fun BouliaQueenslandAirport : Ind Airport ; -fun BounaAirport : Ind Airport ; + fun BounaAirport : Ind Airport ; -fun BoundaryAKAirport : Ind Airport ; + fun BoundaryAKAirport : Ind Airport ; -fun BoundialiAirport : Ind Airport ; + fun BoundialiAirport : Ind Airport ; -fun BoundjiAirport : Ind Airport ; + fun BoundjiAirport : Ind Airport ; -fun BourgesAirport : Ind Airport ; + fun BourgesAirport : Ind Airport ; -fun BourkeNewSouthWalesAirport : Ind Airport ; + fun BourkeNewSouthWalesAirport : Ind Airport ; -fun BournemouthEnglandAirport : Ind Airport ; + fun BournemouthEnglandAirport : Ind Airport ; -fun BoutheonSaintEtienneAirport : Ind Airport ; + fun BoutheonSaintEtienneAirport : Ind Airport ; -fun BowermanWAAirport : Ind Airport ; + fun BowermanWAAirport : Ind Airport ; -fun BowersFieldWAAirport : Ind Airport ; + fun BowersFieldWAAirport : Ind Airport ; -fun BowlingGreenWarrenCountyRegionalKYAirport : Ind Airport ; + fun BowlingGreenWarrenCountyRegionalKYAirport : Ind Airport ; -fun BowmanMunicipalNDAirport : Ind Airport ; + fun BowmanMunicipalNDAirport : Ind Airport ; -fun BoxboroughMAAirport : Ind Airport ; + fun BoxboroughMAAirport : Ind Airport ; -fun BoyneMountainMIAirport : Ind Airport ; + fun BoyneMountainMIAirport : Ind Airport ; -fun BozoumAirport : Ind Airport ; + fun BozoumAirport : Ind Airport ; -fun BradfordEnglandAirport : Ind Airport ; + fun BradfordEnglandAirport : Ind Airport ; -fun BradfordRegionalPAAirport : Ind Airport ; + fun BradfordRegionalPAAirport : Ind Airport ; -fun BradleyInternationalCTAirport : Ind Airport ; + fun BradleyInternationalCTAirport : Ind Airport ; -fun BradshawArmyAirfieldHIAirport : Ind Airport ; + fun BradshawArmyAirfieldHIAirport : Ind Airport ; -fun BragaAirport : Ind Airport ; + fun BragaAirport : Ind Airport ; -fun BragancaAirport : Ind Airport ; + fun BragancaAirport : Ind Airport ; -fun BragancaPAAirport : Ind Airport ; + fun BragancaPAAirport : Ind Airport ; -fun BrahmanAirport : Ind Airport ; + fun BrahmanAirport : Ind Airport ; -fun BrainerdCrowWingCountyRegionalMNAirport : Ind Airport ; + fun BrainerdCrowWingCountyRegionalMNAirport : Ind Airport ; -fun BramptonIslandQueenslandAirport : Ind Airport ; + fun BramptonIslandQueenslandAirport : Ind Airport ; -fun BratskIrkutskAirport : Ind Airport ; + fun BratskIrkutskAirport : Ind Airport ; -fun BraunschweigAirport : Ind Airport ; + fun BraunschweigAirport : Ind Airport ; -fun BrawleyMunicipalCAAirport : Ind Airport ; + fun BrawleyMunicipalCAAirport : Ind Airport ; -fun BreidhdalurBreiddalsvikAirport : Ind Airport ; + fun BreidhdalurBreiddalsvikAirport : Ind Airport ; -fun BremerhavenAirport : Ind Airport ; + fun BremerhavenAirport : Ind Airport ; -fun BrennerFieldNEAirport : Ind Airport ; + fun BrennerFieldNEAirport : Ind Airport ; -fun BrenwicksAKAirport : Ind Airport ; + fun BrenwicksAKAirport : Ind Airport ; -fun BrestBrestAirport : Ind Airport ; + fun BrestBrestAirport : Ind Airport ; -fun BrevesPAAirport : Ind Airport ; + fun BrevesPAAirport : Ind Airport ; -fun BrevigMissionAKAirport : Ind Airport ; + fun BrevigMissionAKAirport : Ind Airport ; -fun BrewarrinaNewSouthWalesAirport : Ind Airport ; + fun BrewarrinaNewSouthWalesAirport : Ind Airport ; -fun BrewsterFieldNEAirport : Ind Airport ; + fun BrewsterFieldNEAirport : Ind Airport ; -fun BrezhnevAirport : Ind Airport ; + fun BrezhnevAirport : Ind Airport ; -fun BriaAirport : Ind Airport ; + fun BriaAirport : Ind Airport ; -fun BrighamCityUTAirport : Ind Airport ; + fun BrighamCityUTAirport : Ind Airport ; -fun BrightVictoriaAirport : Ind Airport ; + fun BrightVictoriaAirport : Ind Airport ; -fun BrightonDownsQueenslandAirport : Ind Airport ; + fun BrightonDownsQueenslandAirport : Ind Airport ; -fun BrightonEnglandAirport : Ind Airport ; + fun BrightonEnglandAirport : Ind Airport ; -fun BringelandFoerdeFordeAirport : Ind Airport ; + fun BringelandFoerdeFordeAirport : Ind Airport ; -fun BriveLaGaillardeAirport : Ind Airport ; + fun BriveLaGaillardeAirport : Ind Airport ; -fun BrizeNortonStationEnglandAirport : Ind Airport ; + fun BrizeNortonStationEnglandAirport : Ind Airport ; -fun BrnoAirport : Ind Airport ; + fun BrnoAirport : Ind Airport ; -fun BroadusMTAirport : Ind Airport ; + fun BroadusMTAirport : Ind Airport ; -fun BrokenBowMunicipalNEAirport : Ind Airport ; + fun BrokenBowMunicipalNEAirport : Ind Airport ; -fun BrokenHillNewSouthWalesAirport : Ind Airport ; + fun BrokenHillNewSouthWalesAirport : Ind Airport ; -fun BrommaStockholmAirport : Ind Airport ; + fun BrommaStockholmAirport : Ind Airport ; -fun BronnoyBronnoysundBroennoeysundAirport : Ind Airport ; + fun BronnoyBronnoysundBroennoeysundAirport : Ind Airport ; -fun BrookingsMunicipalSDAirport : Ind Airport ; + fun BrookingsMunicipalSDAirport : Ind Airport ; -fun BrookingsStateORAirport : Ind Airport ; + fun BrookingsStateORAirport : Ind Airport ; -fun BroomeWesternAustraliaAirport : Ind Airport ; + fun BroomeWesternAustraliaAirport : Ind Airport ; -fun BrownsNEAirport : Ind Airport ; + fun BrownsNEAirport : Ind Airport ; -fun BrownsvilleSouthPadreIslandInternationalTXAirport : Ind Airport ; + fun BrownsvilleSouthPadreIslandInternationalTXAirport : Ind Airport ; -fun BrownwoodMunicipalTXAirport : Ind Airport ; + fun BrownwoodMunicipalTXAirport : Ind Airport ; -fun BruggenAirport : Ind Airport ; + fun BruggenAirport : Ind Airport ; -fun BrumadoBAAirport : Ind Airport ; + fun BrumadoBAAirport : Ind Airport ; -fun BrunetteDownsNorthernTerritoryAirport : Ind Airport ; + fun BrunetteDownsNorthernTerritoryAirport : Ind Airport ; -fun BrusLagunaAirport : Ind Airport ; + fun BrusLagunaAirport : Ind Airport ; -fun BryanskBryanskAirport : Ind Airport ; + fun BryanskBryanskAirport : Ind Airport ; -fun BryantArmyHeliportAKAirport : Ind Airport ; + fun BryantArmyHeliportAKAirport : Ind Airport ; -fun BryceCanyonUTAirport : Ind Airport ; + fun BryceCanyonUTAirport : Ind Airport ; -fun BuaAirport : Ind Airport ; + fun BuaAirport : Ind Airport ; -fun BubaqueAirport : Ind Airport ; + fun BubaqueAirport : Ind Airport ; -fun BuchananFieldCAAirport : Ind Airport ; + fun BuchananFieldCAAirport : Ind Airport ; -fun BucholzArmyAirFieldKwajaleinKMRKwajaleinAirport : Ind Airport ; + fun BucholzArmyAirFieldKwajaleinKMRKwajaleinAirport : Ind Airport ; -fun BuckeyeMunicipalAZAirport : Ind Airport ; + fun BuckeyeMunicipalAZAirport : Ind Airport ; -fun BucklandAKAirport : Ind Airport ; + fun BucklandAKAirport : Ind Airport ; -fun BuckleyArmyNationalGuardBaseCOAirport : Ind Airport ; + fun BuckleyArmyNationalGuardBaseCOAirport : Ind Airport ; -fun BudardalurAirport : Ind Airport ; + fun BudardalurAirport : Ind Airport ; -fun BuenaventuraAirport : Ind Airport ; + fun BuenaventuraAirport : Ind Airport ; -fun BuenosAiresAirport : Ind Airport ; + fun BuenosAiresAirport : Ind Airport ; -fun BukaAirport : Ind Airport ; + fun BukaAirport : Ind Airport ; -fun BukhoroBukharaBukharaAirport : Ind Airport ; + fun BukhoroBukharaBukharaAirport : Ind Airport ; -fun BukhtaTiksiIceStripYakutiaSakhaAirport : Ind Airport ; + fun BukhtaTiksiIceStripYakutiaSakhaAirport : Ind Airport ; -fun BukobaAirport : Ind Airport ; + fun BukobaAirport : Ind Airport ; -fun BulawayoAirport : Ind Airport ; + fun BulawayoAirport : Ind Airport ; -fun BulchiAirport : Ind Airport ; + fun BulchiAirport : Ind Airport ; -fun BulimbaQueenslandAirport : Ind Airport ; + fun BulimbaQueenslandAirport : Ind Airport ; -fun BullfrogBasinUTAirport : Ind Airport ; + fun BullfrogBasinUTAirport : Ind Airport ; -fun BuloloAirport : Ind Airport ; + fun BuloloAirport : Ind Airport ; -fun BumbaAirport : Ind Airport ; + fun BumbaAirport : Ind Airport ; -fun BunburyWesternAustraliaAirport : Ind Airport ; + fun BunburyWesternAustraliaAirport : Ind Airport ; -fun BundabergQueenslandAirport : Ind Airport ; + fun BundabergQueenslandAirport : Ind Airport ; -fun BundiAirport : Ind Airport ; + fun BundiAirport : Ind Airport ; -fun BuniaAirport : Ind Airport ; + fun BuniaAirport : Ind Airport ; -fun BunyuAirport : Ind Airport ; + fun BunyuAirport : Ind Airport ; -fun BuraoAirport : Ind Airport ; + fun BuraoAirport : Ind Airport ; -fun BurbankGlendalePasadenaCAAirport : Ind Airport ; + fun BurbankGlendalePasadenaCAAirport : Ind Airport ; -fun BurgasBourgasAirport : Ind Airport ; + fun BurgasBourgasAirport : Ind Airport ; -fun BurkeCountyGAAirport : Ind Airport ; + fun BurkeCountyGAAirport : Ind Airport ; -fun BurkeLakefrontOHAirport : Ind Airport ; + fun BurkeLakefrontOHAirport : Ind Airport ; -fun BurketownQueenslandAirport : Ind Airport ; + fun BurketownQueenslandAirport : Ind Airport ; -fun BurleyMunicipalIDAirport : Ind Airport ; + fun BurleyMunicipalIDAirport : Ind Airport ; -fun BurlingtonInternationalVTAirport : Ind Airport ; + fun BurlingtonInternationalVTAirport : Ind Airport ; -fun BurlingtonMunicipalIAAirport : Ind Airport ; + fun BurlingtonMunicipalIAAirport : Ind Airport ; -fun BurlingtonMunicipalMAAirport : Ind Airport ; + fun BurlingtonMunicipalMAAirport : Ind Airport ; -fun BurnieWynyardTasmaniaAirport : Ind Airport ; + fun BurnieWynyardTasmaniaAirport : Ind Airport ; -fun BurnsMunicipalORAirport : Ind Airport ; + fun BurnsMunicipalORAirport : Ind Airport ; -fun BursaAirport : Ind Airport ; + fun BursaAirport : Ind Airport ; -fun BurtonwoodAirport : Ind Airport ; + fun BurtonwoodAirport : Ind Airport ; -fun BuryStEdmundsEnglandAirport : Ind Airport ; + fun BuryStEdmundsEnglandAirport : Ind Airport ; -fun BushFieldGAAirport : Ind Airport ; + fun BushFieldGAAirport : Ind Airport ; -fun BushehrAirport : Ind Airport ; + fun BushehrAirport : Ind Airport ; -fun ButareAirport : Ind Airport ; + fun ButareAirport : Ind Airport ; -fun ButaritariAirport : Ind Airport ; + fun ButaritariAirport : Ind Airport ; -fun ButlerCountyPAAirport : Ind Airport ; + fun ButlerCountyPAAirport : Ind Airport ; -fun ButlerMemorialMOAirport : Ind Airport ; + fun ButlerMemorialMOAirport : Ind Airport ; -fun ButonBabauAirport : Ind Airport ; + fun ButonBabauAirport : Ind Airport ; -fun ButterworthAirportMalaysia : Ind Airport ; + fun ButterworthAirportMalaysia : Ind Airport ; -fun ButtsArmyAirFieldCOAirport : Ind Airport ; + fun ButtsArmyAirFieldCOAirport : Ind Airport ; -fun ButuanAirport : Ind Airport ; + fun ButuanAirport : Ind Airport ; -fun BuyoAirport : Ind Airport ; + fun BuyoAirport : Ind Airport ; -fun BuziosAirport : Ind Airport ; + fun BuziosAirport : Ind Airport ; -fun BuzzardsPointSeaplaneBaseDCAirport : Ind Airport ; + fun BuzzardsPointSeaplaneBaseDCAirport : Ind Airport ; -fun BydgoszczAirport : Ind Airport ; + fun BydgoszczAirport : Ind Airport ; -fun BykovoMoscowAirport : Ind Airport ; + fun BykovoMoscowAirport : Ind Airport ; -fun CDavidCampbellFieldCorsicanaMunicipalTXAirport : Ind Airport ; + fun CDavidCampbellFieldCorsicanaMunicipalTXAirport : Ind Airport ; -fun CaMauAirport : Ind Airport ; + fun CaMauAirport : Ind Airport ; -fun CabimasAirport : Ind Airport ; + fun CabimasAirport : Ind Airport ; -fun CabinCreekAKAirport : Ind Airport ; + fun CabinCreekAKAirport : Ind Airport ; -fun CabindaAirport : Ind Airport ; + fun CabindaAirport : Ind Airport ; -fun CableCAAirport : Ind Airport ; + fun CableCAAirport : Ind Airport ; -fun CableHeliportCAAirport : Ind Airport ; + fun CableHeliportCAAirport : Ind Airport ; -fun CaboRojoAirport : Ind Airport ; + fun CaboRojoAirport : Ind Airport ; -fun CaceresMGAirport : Ind Airport ; + fun CaceresMGAirport : Ind Airport ; -fun CachoeiraBAAirport : Ind Airport ; + fun CachoeiraBAAirport : Ind Airport ; -fun CadjehounCotonouAirport : Ind Airport ; + fun CadjehounCotonouAirport : Ind Airport ; -fun CagayandeOroAirport : Ind Airport ; + fun CagayandeOroAirport : Ind Airport ; -fun CagayandeSuluAirport : Ind Airport ; + fun CagayandeSuluAirport : Ind Airport ; -fun CahokiaILStLouisAirport : Ind Airport ; + fun CahokiaILStLouisAirport : Ind Airport ; -fun CaicaraAirport : Ind Airport ; + fun CaicaraAirport : Ind Airport ; -fun CaigumaAirport : Ind Airport ; + fun CaigumaAirport : Ind Airport ; -fun CairoILAirport : Ind Airport ; + fun CairoILAirport : Ind Airport ; -fun CairoInternationalCairoAirport : Ind Airport ; + fun CairoInternationalCairoAirport : Ind Airport ; -fun CajamarcaAirport : Ind Airport ; + fun CajamarcaAirport : Ind Airport ; -fun CalabarAirport : Ind Airport ; + fun CalabarAirport : Ind Airport ; -fun CalabozoAirport : Ind Airport ; + fun CalabozoAirport : Ind Airport ; -fun CalamaAirport : Ind Airport ; + fun CalamaAirport : Ind Airport ; -fun CalapanAirport : Ind Airport ; + fun CalapanAirport : Ind Airport ; -fun CalbayogAirport : Ind Airport ; + fun CalbayogAirport : Ind Airport ; -fun CaldasNovasGOAirport : Ind Airport ; + fun CaldasNovasGOAirport : Ind Airport ; -fun CaledoniaAirport : Ind Airport ; + fun CaledoniaAirport : Ind Airport ; -fun CaletaOliviaAirport : Ind Airport ; + fun CaletaOliviaAirport : Ind Airport ; -fun CalexicoInternationalCAAirport : Ind Airport ; + fun CalexicoInternationalCAAirport : Ind Airport ; -fun CalicutAirport : Ind Airport ; + fun CalicutAirport : Ind Airport ; -fun CalipatriaMunicipalCAAirport : Ind Airport ; + fun CalipatriaMunicipalCAAirport : Ind Airport ; -fun CallawayGardensHarrisCountyGAAirport : Ind Airport ; + fun CallawayGardensHarrisCountyGAAirport : Ind Airport ; -fun CaloundraQueenslandAirport : Ind Airport ; + fun CaloundraQueenslandAirport : Ind Airport ; -fun CalvertonNavalWeaponsIndustrialReserveNYAirport : Ind Airport ; + fun CalvertonNavalWeaponsIndustrialReserveNYAirport : Ind Airport ; -fun CamaxiloAirport : Ind Airport ; + fun CamaxiloAirport : Ind Airport ; -fun CambridgeAirport : Ind Airport ; + fun CambridgeAirport : Ind Airport ; -fun CambridgeDorchesterMDAirport : Ind Airport ; + fun CambridgeDorchesterMDAirport : Ind Airport ; -fun CambridgeMAAirport : Ind Airport ; + fun CambridgeMAAirport : Ind Airport ; -fun CamdenNewSouthWalesAirport : Ind Airport ; + fun CamdenNewSouthWalesAirport : Ind Airport ; -fun CameronMemorialMOAirport : Ind Airport ; + fun CameronMemorialMOAirport : Ind Airport ; -fun CametaAirport : Ind Airport ; + fun CametaAirport : Ind Airport ; -fun CamfieldNorthernTerritoryAirport : Ind Airport ; + fun CamfieldNorthernTerritoryAirport : Ind Airport ; -fun CamiguinAirport : Ind Airport ; + fun CamiguinAirport : Ind Airport ; -fun CamillaMitchellCountyGAAirport : Ind Airport ; + fun CamillaMitchellCountyGAAirport : Ind Airport ; -fun CamiloDazaCucutaAirport : Ind Airport ; + fun CamiloDazaCucutaAirport : Ind Airport ; -fun CamiriAirport : Ind Airport ; + fun CamiriAirport : Ind Airport ; -fun CamocimCEAirport : Ind Airport ; + fun CamocimCEAirport : Ind Airport ; -fun CamoowealQueenslandAirport : Ind Airport ; + fun CamoowealQueenslandAirport : Ind Airport ; -fun CampParksHeliportCAAirport : Ind Airport ; + fun CampParksHeliportCAAirport : Ind Airport ; -fun CampPickettBlackstoneArmyAirFieldAllenCPerkinsonMunicipalVAAirport : Ind Airport ; + fun CampPickettBlackstoneArmyAirFieldAllenCPerkinsonMunicipalVAAirport : Ind Airport ; -fun CampbellArmyAirFieldKYAirport : Ind Airport ; + fun CampbellArmyAirFieldKYAirport : Ind Airport ; -fun CampbellporeAirport : Ind Airport ; + fun CampbellporeAirport : Ind Airport ; -fun CampbeltownAirport : Ind Airport ; + fun CampbeltownAirport : Ind Airport ; -fun CampinaGrandePBAirport : Ind Airport ; + fun CampinaGrandePBAirport : Ind Airport ; -fun CampinasSPAirport : Ind Airport ; + fun CampinasSPAirport : Ind Airport ; -fun CampoCAAirport : Ind Airport ; + fun CampoCAAirport : Ind Airport ; -fun CampoDellOroCorsicaAirport : Ind Airport ; + fun CampoDellOroCorsicaAirport : Ind Airport ; -fun CampoGrandeMSAirport : Ind Airport ; + fun CampoGrandeMSAirport : Ind Airport ; -fun CampodoAragAirport : Ind Airport ; + fun CampodoAragAirport : Ind Airport ; -fun CamposRJAirport : Ind Airport ; + fun CamposRJAirport : Ind Airport ; -fun CanaimaAirport : Ind Airport ; + fun CanaimaAirport : Ind Airport ; -fun CanakkaleAirport : Ind Airport ; + fun CanakkaleAirport : Ind Airport ; -fun CananeaAirport : Ind Airport ; + fun CananeaAirport : Ind Airport ; -fun CanasAirport : Ind Airport ; + fun CanasAirport : Ind Airport ; -fun CanavieirasBAAirport : Ind Airport ; + fun CanavieirasBAAirport : Ind Airport ; -fun CanberraAustralianCapitalTerritoryAirport : Ind Airport ; + fun CanberraAustralianCapitalTerritoryAirport : Ind Airport ; -fun CancunInternationalCancunAirport : Ind Airport ; + fun CancunInternationalCancunAirport : Ind Airport ; -fun CandalaAirport : Ind Airport ; + fun CandalaAirport : Ind Airport ; -fun CandilejasAirport : Ind Airport ; + fun CandilejasAirport : Ind Airport ; -fun Candle2AKAirport : Ind Airport ; + fun Candle2AKAirport : Ind Airport ; -fun CaneFieldDominicaRoseauAirport : Ind Airport ; + fun CaneFieldDominicaRoseauAirport : Ind Airport ; -fun CangambaAirport : Ind Airport ; + fun CangambaAirport : Ind Airport ; -fun CannonAirForceBaseNMAirport : Ind Airport ; + fun CannonAirForceBaseNMAirport : Ind Airport ; -fun CanobieQueenslandAirport : Ind Airport ; + fun CanobieQueenslandAirport : Ind Airport ; -fun CanouanIslandCanouanIslandAirport : Ind Airport ; + fun CanouanIslandCanouanIslandAirport : Ind Airport ; -fun CantonIslandAirport : Ind Airport ; + fun CantonIslandAirport : Ind Airport ; -fun CanyonlandsFieldUTAirport : Ind Airport ; + fun CanyonlandsFieldUTAirport : Ind Airport ; -fun CapHaitienAirport : Ind Airport ; + fun CapHaitienAirport : Ind Airport ; -fun CapSkirringAirport : Ind Airport ; + fun CapSkirringAirport : Ind Airport ; -fun CapeEleutheraAirport : Ind Airport ; + fun CapeEleutheraAirport : Ind Airport ; -fun CapeFlatteryAirport : Ind Airport ; + fun CapeFlatteryAirport : Ind Airport ; -fun CapeGirardeauMunicipalMOAirport : Ind Airport ; + fun CapeGirardeauMunicipalMOAirport : Ind Airport ; -fun CapeGloucesterAirport : Ind Airport ; + fun CapeGloucesterAirport : Ind Airport ; -fun CapeNewhenhamLRRSAKAirport : Ind Airport ; + fun CapeNewhenhamLRRSAKAirport : Ind Airport ; -fun CapePalmasAirport : Ind Airport ; + fun CapePalmasAirport : Ind Airport ; -fun CapePoleSeaplaneBaseAKAirport : Ind Airport ; + fun CapePoleSeaplaneBaseAKAirport : Ind Airport ; -fun CapeRomanzofLRRSAKAirport : Ind Airport ; + fun CapeRomanzofLRRSAKAirport : Ind Airport ; -fun CapeRooneyAirport : Ind Airport ; + fun CapeRooneyAirport : Ind Airport ; -fun CapeSarichefAKAirport : Ind Airport ; + fun CapeSarichefAKAirport : Ind Airport ; -fun CapeSpencerCoastGuardHeliportAKAirport : Ind Airport ; + fun CapeSpencerCoastGuardHeliportAKAirport : Ind Airport ; -fun CapeStJacquesAirport : Ind Airport ; + fun CapeStJacquesAirport : Ind Airport ; -fun CapeVogelAirport : Ind Airport ; + fun CapeVogelAirport : Ind Airport ; -fun CapitalCityKYAirport : Ind Airport ; + fun CapitalCityKYAirport : Ind Airport ; -fun CapitalCityPAAirport : Ind Airport ; + fun CapitalCityPAAirport : Ind Airport ; -fun CapitanVicenteAlmandoLaRiojaAirport : Ind Airport ; + fun CapitanVicenteAlmandoLaRiojaAirport : Ind Airport ; -fun CaptainJackThomasElDoradoKSAirport : Ind Airport ; + fun CaptainJackThomasElDoradoKSAirport : Ind Airport ; -fun CapurganaAirport : Ind Airport ; + fun CapurganaAirport : Ind Airport ; -fun CaquetaniaAirport : Ind Airport ; + fun CaquetaniaAirport : Ind Airport ; -fun CarNicobarAirport : Ind Airport ; + fun CarNicobarAirport : Ind Airport ; -fun CarajasPAAirport : Ind Airport ; + fun CarajasPAAirport : Ind Airport ; -fun CaransebesAirport : Ind Airport ; + fun CaransebesAirport : Ind Airport ; -fun CarauariAMAirport : Ind Airport ; + fun CarauariAMAirport : Ind Airport ; -fun CaravelasBAAirport : Ind Airport ; + fun CaravelasBAAirport : Ind Airport ; -fun CarcassonneAirport : Ind Airport ; + fun CarcassonneAirport : Ind Airport ; -fun CaribouMunicipalMEAirport : Ind Airport ; + fun CaribouMunicipalMEAirport : Ind Airport ; -fun CarimaguaAirport : Ind Airport ; + fun CarimaguaAirport : Ind Airport ; -fun CarlisleAirport : Ind Airport ; + fun CarlisleAirport : Ind Airport ; -fun CarltonHillWesternAustraliaAirport : Ind Airport ; + fun CarltonHillWesternAustraliaAirport : Ind Airport ; -fun CarmelitaAirport : Ind Airport ; + fun CarmelitaAirport : Ind Airport ; -fun CarmendePatagonesAirport : Ind Airport ; + fun CarmendePatagonesAirport : Ind Airport ; -fun CarnarvonWesternAustraliaAirport : Ind Airport ; + fun CarnarvonWesternAustraliaAirport : Ind Airport ; -fun CarnotAirport : Ind Airport ; + fun CarnotAirport : Ind Airport ; -fun CarolinaMAAirport : Ind Airport ; + fun CarolinaMAAirport : Ind Airport ; -fun CarpentariaDownsQueenslandAirport : Ind Airport ; + fun CarpentariaDownsQueenslandAirport : Ind Airport ; -fun CarpiquetCaenAirport : Ind Airport ; + fun CarpiquetCaenAirport : Ind Airport ; -fun CarriacouAirport : Ind Airport ; + fun CarriacouAirport : Ind Airport ; -fun CarrickfinnAirport : Ind Airport ; + fun CarrickfinnAirport : Ind Airport ; -fun CarrielSurConcepcionAirport : Ind Airport ; + fun CarrielSurConcepcionAirport : Ind Airport ; -fun CarrollCountyTNAirport : Ind Airport ; + fun CarrollCountyTNAirport : Ind Airport ; -fun CarsonNVAirport : Ind Airport ; + fun CarsonNVAirport : Ind Airport ; -fun CarswellAirForceBaseTXAirport : Ind Airport ; + fun CarswellAirForceBaseTXAirport : Ind Airport ; -fun CartagoAirport : Ind Airport ; + fun CartagoAirport : Ind Airport ; -fun CartiAirport : Ind Airport ; + fun CartiAirport : Ind Airport ; -fun CaruaruPEAirport : Ind Airport ; + fun CaruaruPEAirport : Ind Airport ; -fun CarupanoAirport : Ind Airport ; + fun CarupanoAirport : Ind Airport ; -fun CaruruAirport : Ind Airport ; + fun CaruruAirport : Ind Airport ; -fun CarutaperaMAAirport : Ind Airport ; + fun CarutaperaMAAirport : Ind Airport ; -fun CasaGrandeMunicipalAZAirport : Ind Airport ; + fun CasaGrandeMunicipalAZAirport : Ind Airport ; -fun CasaleBrindisiAirport : Ind Airport ; + fun CasaleBrindisiAirport : Ind Airport ; -fun CascadeLocksStateORAirport : Ind Airport ; + fun CascadeLocksStateORAirport : Ind Airport ; -fun CascavelPRAirport : Ind Airport ; + fun CascavelPRAirport : Ind Airport ; -fun CascoGoveCoastGuardStationAKAirport : Ind Airport ; + fun CascoGoveCoastGuardStationAKAirport : Ind Airport ; -fun CasiguranAirport : Ind Airport ; + fun CasiguranAirport : Ind Airport ; -fun CasinoNewSouthWalesAirport : Ind Airport ; + fun CasinoNewSouthWalesAirport : Ind Airport ; -fun CasiquaAirport : Ind Airport ; + fun CasiquaAirport : Ind Airport ; -fun CassidyLineIslandsAirport : Ind Airport ; + fun CassidyLineIslandsAirport : Ind Airport ; -fun CassilandiaMGAirport : Ind Airport ; + fun CassilandiaMGAirport : Ind Airport ; -fun CastawayAirport : Ind Airport ; + fun CastawayAirport : Ind Airport ; -fun CastlebarAirport : Ind Airport ; + fun CastlebarAirport : Ind Airport ; -fun CastresAirport : Ind Airport ; + fun CastresAirport : Ind Airport ; -fun CasuaritoAirport : Ind Airport ; + fun CasuaritoAirport : Ind Airport ; -fun CatCayAirport : Ind Airport ; + fun CatCayAirport : Ind Airport ; -fun CatIslandAirport : Ind Airport ; + fun CatIslandAirport : Ind Airport ; -fun CatacamasAirport : Ind Airport ; + fun CatacamasAirport : Ind Airport ; -fun CatalinaCAAirport : Ind Airport ; + fun CatalinaCAAirport : Ind Airport ; -fun CatamarcaAirport : Ind Airport ; + fun CatamarcaAirport : Ind Airport ; -fun CataratasPRAirport : Ind Airport ; + fun CataratasPRAirport : Ind Airport ; -fun CataratasdelIguazuIguazuAirport : Ind Airport ; + fun CataratasdelIguazuIguazuAirport : Ind Airport ; -fun CatarmanAirport : Ind Airport ; + fun CatarmanAirport : Ind Airport ; -fun CatavinaAirport : Ind Airport ; + fun CatavinaAirport : Ind Airport ; -fun CattleCreekAirport : Ind Airport ; + fun CattleCreekAirport : Ind Airport ; -fun CauayanAirport : Ind Airport ; + fun CauayanAirport : Ind Airport ; -fun CaucasiaAirport : Ind Airport ; + fun CaucasiaAirport : Ind Airport ; -fun CaumontAvignonAirport : Ind Airport ; + fun CaumontAvignonAirport : Ind Airport ; -fun CavernCityAirTerminalNMAirport : Ind Airport ; + fun CavernCityAirTerminalNMAirport : Ind Airport ; -fun CaviahueAirport : Ind Airport ; + fun CaviahueAirport : Ind Airport ; -fun CaxiasdoSulRSAirport : Ind Airport ; + fun CaxiasdoSulRSAirport : Ind Airport ; -fun CayeChapelAirport : Ind Airport ; + fun CayeChapelAirport : Ind Airport ; -fun CayoLargodelSurAirport : Ind Airport ; + fun CayoLargodelSurAirport : Ind Airport ; -fun CazomboAirport : Ind Airport ; + fun CazomboAirport : Ind Airport ; -fun CebuAirport : Ind Airport ; + fun CebuAirport : Ind Airport ; -fun CedarCityMunicipalUTAirport : Ind Airport ; + fun CedarCityMunicipalUTAirport : Ind Airport ; -fun CedarRapidsMunicipalIAAirport : Ind Airport ; + fun CedarRapidsMunicipalIAAirport : Ind Airport ; -fun CedrosIslandAirport : Ind Airport ; + fun CedrosIslandAirport : Ind Airport ; -fun CedunaSouthAustraliaAirport : Ind Airport ; + fun CedunaSouthAustraliaAirport : Ind Airport ; -fun CentennialCOAirport : Ind Airport ; + fun CentennialCOAirport : Ind Airport ; -fun CenterIslandWAAirport : Ind Airport ; + fun CenterIslandWAAirport : Ind Airport ; -fun CenterportHeliportCAAirport : Ind Airport ; + fun CenterportHeliportCAAirport : Ind Airport ; -fun CentervilleMunicipalTNAirport : Ind Airport ; + fun CentervilleMunicipalTNAirport : Ind Airport ; -fun CentralAKAirport : Ind Airport ; + fun CentralAKAirport : Ind Airport ; -fun CentralBusinessDistrictDowntownHeliportTXAirport : Ind Airport ; + fun CentralBusinessDistrictDowntownHeliportTXAirport : Ind Airport ; -fun CentralNebraskaRegionalNEAirport : Ind Airport ; + fun CentralNebraskaRegionalNEAirport : Ind Airport ; -fun CentralPretoriaPretoriaAirport : Ind Airport ; + fun CentralPretoriaPretoriaAirport : Ind Airport ; -fun CentralWisconsinWIAirport : Ind Airport ; + fun CentralWisconsinWIAirport : Ind Airport ; -fun CentraliaMunicipalILAirport : Ind Airport ; + fun CentraliaMunicipalILAirport : Ind Airport ; -fun CenturyCityHeliportCAAirport : Ind Airport ; + fun CenturyCityHeliportCAAirport : Ind Airport ; -fun CepuAirport : Ind Airport ; + fun CepuAirport : Ind Airport ; -fun CeresAirport : Ind Airport ; + fun CeresAirport : Ind Airport ; -fun CerroMorenoAntofagastaAirport : Ind Airport ; + fun CerroMorenoAntofagastaAirport : Ind Airport ; -fun CessnaAircraftFieldKSAirport : Ind Airport ; + fun CessnaAircraftFieldKSAirport : Ind Airport ; -fun CessnockNewSouthWalesAirport : Ind Airport ; + fun CessnockNewSouthWalesAirport : Ind Airport ; -fun ChacallutaAricaAirport : Ind Airport ; + fun ChacallutaAricaAirport : Ind Airport ; -fun ChachapoyasAirport : Ind Airport ; + fun ChachapoyasAirport : Ind Airport ; -fun ChadronMunicipalNEAirport : Ind Airport ; + fun ChadronMunicipalNEAirport : Ind Airport ; -fun ChaffeeArmyAirFieldARAirport : Ind Airport ; + fun ChaffeeArmyAirFieldARAirport : Ind Airport ; -fun ChakcharanAirport : Ind Airport ; + fun ChakcharanAirport : Ind Airport ; -fun ChalkyitsikAKAirport : Ind Airport ; + fun ChalkyitsikAKAirport : Ind Airport ; -fun ChallisIDAirport : Ind Airport ; + fun ChallisIDAirport : Ind Airport ; -fun ChanaralAirport : Ind Airport ; + fun ChanaralAirport : Ind Airport ; -fun ChandigarhAirport : Ind Airport ; + fun ChandigarhAirport : Ind Airport ; -fun ChandlerFieldMNAirport : Ind Airport ; + fun ChandlerFieldMNAirport : Ind Airport ; -fun ChandlerMunicipalAZAirport : Ind Airport ; + fun ChandlerMunicipalAZAirport : Ind Airport ; -fun ChangHuaAirport : Ind Airport ; + fun ChangHuaAirport : Ind Airport ; -fun ChangchunAirport : Ind Airport ; + fun ChangchunAirport : Ind Airport ; -fun ChangdeAirport : Ind Airport ; + fun ChangdeAirport : Ind Airport ; -fun ChangshaAirport : Ind Airport ; + fun ChangshaAirport : Ind Airport ; -fun ChanguinolaAirport : Ind Airport ; + fun ChanguinolaAirport : Ind Airport ; -fun ChangzhiAirport : Ind Airport ; + fun ChangzhiAirport : Ind Airport ; -fun ChangzhouAirport : Ind Airport ; + fun ChangzhouAirport : Ind Airport ; -fun ChaniaKhaniaAirport : Ind Airport ; + fun ChaniaKhaniaAirport : Ind Airport ; -fun ChanuteMartinJohnsonKSAirport : Ind Airport ; + fun ChanuteMartinJohnsonKSAirport : Ind Airport ; -fun ChaoyangAirport : Ind Airport ; + fun ChaoyangAirport : Ind Airport ; -fun ChaparralAirport : Ind Airport ; + fun ChaparralAirport : Ind Airport ; -fun ChapelcoSanMartindelosAndesAirport : Ind Airport ; + fun ChapelcoSanMartindelosAndesAirport : Ind Airport ; -fun CharataAirport : Ind Airport ; + fun CharataAirport : Ind Airport ; -fun CharjeuChardzhouLebapAirport : Ind Airport ; + fun CharjeuChardzhouLebapAirport : Ind Airport ; -fun CharlesCZettelMemorialMIAirport : Ind Airport ; + fun CharlesCZettelMemorialMIAirport : Ind Airport ; -fun CharlesCityMunicipalIAAirport : Ind Airport ; + fun CharlesCityMunicipalIAAirport : Ind Airport ; -fun CharlesWoodHelipadNJAirport : Ind Airport ; + fun CharlesWoodHelipadNJAirport : Ind Airport ; -fun CharlesdeGaulleParisAirport : Ind Airport ; + fun CharlesdeGaulleParisAirport : Ind Airport ; -fun CharlestonAirForceBaseCharlestonInternationalSCAirport : Ind Airport ; + fun CharlestonAirForceBaseCharlestonInternationalSCAirport : Ind Airport ; -fun CharlestonExecutiveSCAirport : Ind Airport ; + fun CharlestonExecutiveSCAirport : Ind Airport ; -fun CharlevilleQueenslandAirport : Ind Airport ; + fun CharlevilleQueenslandAirport : Ind Airport ; -fun CharlevoixMunicipalMIAirport : Ind Airport ; + fun CharlevoixMunicipalMIAirport : Ind Airport ; -fun CharlotteDouglasInternationalNCAirport : Ind Airport ; + fun CharlotteDouglasInternationalNCAirport : Ind Airport ; -fun CharlottesvilleAlbemarleVAAirport : Ind Airport ; + fun CharlottesvilleAlbemarleVAAirport : Ind Airport ; -fun CharltonBuildingHeliportMNAirport : Ind Airport ; + fun CharltonBuildingHeliportMNAirport : Ind Airport ; -fun ChartersTowersQueenslandAirport : Ind Airport ; + fun ChartersTowersQueenslandAirport : Ind Airport ; -fun ChaseCityMunicipalVAAirport : Ind Airport ; + fun ChaseCityMunicipalVAAirport : Ind Airport ; -fun ChathamIslandAirport : Ind Airport ; + fun ChathamIslandAirport : Ind Airport ; -fun ChathamMunicipalMAAirport : Ind Airport ; + fun ChathamMunicipalMAAirport : Ind Airport ; -fun ChathamSeaplaneBaseAKAirport : Ind Airport ; + fun ChathamSeaplaneBaseAKAirport : Ind Airport ; -fun ChaurjhariAirport : Ind Airport ; + fun ChaurjhariAirport : Ind Airport ; -fun ChautauquaCountyDunkirkNYAirport : Ind Airport ; + fun ChautauquaCountyDunkirkNYAirport : Ind Airport ; -fun ChautauquaCountyJamestownNYAirport : Ind Airport ; + fun ChautauquaCountyJamestownNYAirport : Ind Airport ; -fun ChavesAirport : Ind Airport ; + fun ChavesAirport : Ind Airport ; -fun CheboksaryChuvashiaAirport : Ind Airport ; + fun CheboksaryChuvashiaAirport : Ind Airport ; -fun ChefornakAKAirport : Ind Airport ; + fun ChefornakAKAirport : Ind Airport ; -fun ChehalisCentraliaWAAirport : Ind Airport ; + fun ChehalisCentraliaWAAirport : Ind Airport ; -fun ChejuAirport : Ind Airport ; + fun ChejuAirport : Ind Airport ; -fun ChelyabinskChelyabinskAirport : Ind Airport ; + fun ChelyabinskChelyabinskAirport : Ind Airport ; -fun ChenaHotSpringsAKAirport : Ind Airport ; + fun ChenaHotSpringsAKAirport : Ind Airport ; -fun ChengduAirport : Ind Airport ; + fun ChengduAirport : Ind Airport ; -fun ChengtehAirport : Ind Airport ; + fun ChengtehAirport : Ind Airport ; -fun ChennaultIndustrialAirparkLAAirport : Ind Airport ; + fun ChennaultIndustrialAirparkLAAirport : Ind Airport ; -fun CherawMunicipalSCAirport : Ind Airport ; + fun CherawMunicipalSCAirport : Ind Airport ; -fun CherkasyCherkasyAirport : Ind Airport ; + fun CherkasyCherkasyAirport : Ind Airport ; -fun ChernihivChernigovChernihivAirport : Ind Airport ; + fun ChernihivChernigovChernihivAirport : Ind Airport ; -fun ChernivtsiChernovtsyChernivtsiAirport : Ind Airport ; + fun ChernivtsiChernovtsyChernivtsiAirport : Ind Airport ; -fun ChernofskiHarborSeaplaneBaseAKAirport : Ind Airport ; + fun ChernofskiHarborSeaplaneBaseAKAirport : Ind Airport ; -fun CherokeeMunicipalIAAirport : Ind Airport ; + fun CherokeeMunicipalIAAirport : Ind Airport ; -fun CherokeeSoundAirport : Ind Airport ; + fun CherokeeSoundAirport : Ind Airport ; -fun CherokeeVillageARAirport : Ind Airport ; + fun CherokeeVillageARAirport : Ind Airport ; -fun CherokeeVillageHeliportARAirport : Ind Airport ; + fun CherokeeVillageHeliportARAirport : Ind Airport ; -fun CherrabunWesternAustraliaAirport : Ind Airport ; + fun CherrabunWesternAustraliaAirport : Ind Airport ; -fun CherribahQueenslandAirport : Ind Airport ; + fun CherribahQueenslandAirport : Ind Airport ; -fun ChesapeakeMunicipalVAAirport : Ind Airport ; + fun ChesapeakeMunicipalVAAirport : Ind Airport ; -fun ChesapeakeOHHuntingtonAirport : Ind Airport ; + fun ChesapeakeOHHuntingtonAirport : Ind Airport ; -fun ChesterAirport : Ind Airport ; + fun ChesterAirport : Ind Airport ; -fun ChesterCountyGOCarlsonPAAirport : Ind Airport ; + fun ChesterCountyGOCarlsonPAAirport : Ind Airport ; -fun ChetumalAirport : Ind Airport ; + fun ChetumalAirport : Ind Airport ; -fun CheyenneWYAirport : Ind Airport ; + fun CheyenneWYAirport : Ind Airport ; -fun ChiangMaiInternationalChiangMaiAirport : Ind Airport ; + fun ChiangMaiInternationalChiangMaiAirport : Ind Airport ; -fun ChiangRaiINternationalChiangRaiAirport : Ind Airport ; + fun ChiangRaiINternationalChiangRaiAirport : Ind Airport ; -fun ChiayiAirport : Ind Airport ; + fun ChiayiAirport : Ind Airport ; -fun ChichenItzaAirport : Ind Airport ; + fun ChichenItzaAirport : Ind Airport ; -fun ChickashaMunicipalOKAirport : Ind Airport ; + fun ChickashaMunicipalOKAirport : Ind Airport ; -fun ChickenAKAirport : Ind Airport ; + fun ChickenAKAirport : Ind Airport ; -fun ChiclayoAirport : Ind Airport ; + fun ChiclayoAirport : Ind Airport ; -fun ChicoMunicipalCAAirport : Ind Airport ; + fun ChicoMunicipalCAAirport : Ind Airport ; -fun ChievresAirport : Ind Airport ; + fun ChievresAirport : Ind Airport ; -fun ChifengAirport : Ind Airport ; + fun ChifengAirport : Ind Airport ; -fun ChignikAKAirport : Ind Airport ; + fun ChignikAKAirport : Ind Airport ; -fun ChignikBaySeaplaneBaseAKAirport : Ind Airport ; + fun ChignikBaySeaplaneBaseAKAirport : Ind Airport ; -fun ChignikFisheriesAKAirport : Ind Airport ; + fun ChignikFisheriesAKAirport : Ind Airport ; -fun ChignikLagoonAKAirport : Ind Airport ; + fun ChignikLagoonAKAirport : Ind Airport ; -fun ChigorodoAirport : Ind Airport ; + fun ChigorodoAirport : Ind Airport ; -fun ChilasAirport : Ind Airport ; + fun ChilasAirport : Ind Airport ; -fun ChildressMunicipalTXAirport : Ind Airport ; + fun ChildressMunicipalTXAirport : Ind Airport ; -fun ChileChicoAirport : Ind Airport ; + fun ChileChicoAirport : Ind Airport ; -fun ChilekaBlantyreAirport : Ind Airport ; + fun ChilekaBlantyreAirport : Ind Airport ; -fun ChilkoLakeAerodromeBCAirport : Ind Airport ; + fun ChilkoLakeAerodromeBCAirport : Ind Airport ; -fun ChiloquinStateORAirport : Ind Airport ; + fun ChiloquinStateORAirport : Ind Airport ; -fun ChimboteAirport : Ind Airport ; + fun ChimboteAirport : Ind Airport ; -fun ChimbuKundiawaAirport : Ind Airport ; + fun ChimbuKundiawaAirport : Ind Airport ; -fun ChinaBasinHeliportCAAirport : Ind Airport ; + fun ChinaBasinHeliportCAAirport : Ind Airport ; -fun ChinchillaAirport : Ind Airport ; + fun ChinchillaAirport : Ind Airport ; -fun ChindeAirport : Ind Airport ; + fun ChindeAirport : Ind Airport ; -fun ChingolaAirport : Ind Airport ; + fun ChingolaAirport : Ind Airport ; -fun ChinguittiAirport : Ind Airport ; + fun ChinguittiAirport : Ind Airport ; -fun ChinhaeAirport : Ind Airport ; + fun ChinhaeAirport : Ind Airport ; -fun ChinjuAirport : Ind Airport ; + fun ChinjuAirport : Ind Airport ; -fun ChinoCAAirport : Ind Airport ; + fun ChinoCAAirport : Ind Airport ; -fun ChiosAirport : Ind Airport ; + fun ChiosAirport : Ind Airport ; -fun ChipataAirport : Ind Airport ; + fun ChipataAirport : Ind Airport ; -fun ChippewaCountyInternationalMIAirport : Ind Airport ; + fun ChippewaCountyInternationalMIAirport : Ind Airport ; -fun ChippewaValleyRegionalWIAirport : Ind Airport ; + fun ChippewaValleyRegionalWIAirport : Ind Airport ; -fun ChiquimulaAirport : Ind Airport ; + fun ChiquimulaAirport : Ind Airport ; -fun ChiredziBuffaloRangeAirport : Ind Airport ; + fun ChiredziBuffaloRangeAirport : Ind Airport ; -fun ChisanaAKAirport : Ind Airport ; + fun ChisanaAKAirport : Ind Airport ; -fun ChisholmHibbingMNAirport : Ind Airport ; + fun ChisholmHibbingMNAirport : Ind Airport ; -fun ChisinauKishineyAirport : Ind Airport ; + fun ChisinauKishineyAirport : Ind Airport ; -fun ChistochinaAKAirport : Ind Airport ; + fun ChistochinaAKAirport : Ind Airport ; -fun ChitinaAKAirport : Ind Airport ; + fun ChitinaAKAirport : Ind Airport ; -fun ChitipaAirport : Ind Airport ; + fun ChitipaAirport : Ind Airport ; -fun ChitoseSapporoAirport : Ind Airport ; + fun ChitoseSapporoAirport : Ind Airport ; -fun ChitralAirport : Ind Airport ; + fun ChitralAirport : Ind Airport ; -fun ChivoloAirport : Ind Airport ; + fun ChivoloAirport : Ind Airport ; -fun ChocHeliportCAAirport : Ind Airport ; + fun ChocHeliportCAAirport : Ind Airport ; -fun ChoiseulBayAirport : Ind Airport ; + fun ChoiseulBayAirport : Ind Airport ; -fun CholetAirport : Ind Airport ; + fun CholetAirport : Ind Airport ; -fun ChomleyAKAirport : Ind Airport ; + fun ChomleyAKAirport : Ind Airport ; -fun ChongqingAirport : Ind Airport ; + fun ChongqingAirport : Ind Airport ; -fun ChonjuAirport : Ind Airport ; + fun ChonjuAirport : Ind Airport ; -fun ChristchurchInternationalChristchurchAirport : Ind Airport ; + fun ChristchurchInternationalChristchurchAirport : Ind Airport ; -fun ChristianshabAirport : Ind Airport ; + fun ChristianshabAirport : Ind Airport ; -fun ChristmasCreekWesternAustraliaAirport : Ind Airport ; + fun ChristmasCreekWesternAustraliaAirport : Ind Airport ; -fun ChuathbalukAKAirport : Ind Airport ; + fun ChuathbalukAKAirport : Ind Airport ; -fun ChubCayBerryAirport : Ind Airport ; + fun ChubCayBerryAirport : Ind Airport ; -fun CiampinoRomaRomeAirport : Ind Airport ; + fun CiampinoRomaRomeAirport : Ind Airport ; -fun CiciaAirport : Ind Airport ; + fun CiciaAirport : Ind Airport ; -fun CiegodeAvilaAirport : Ind Airport ; + fun CiegodeAvilaAirport : Ind Airport ; -fun CienfuegosAirport : Ind Airport ; + fun CienfuegosAirport : Ind Airport ; -fun CigliAirBaseIzmirAirport : Ind Airport ; + fun CigliAirBaseIzmirAirport : Ind Airport ; -fun CilacapJavaAirport : Ind Airport ; + fun CilacapJavaAirport : Ind Airport ; -fun CimitarraAirport : Ind Airport ; + fun CimitarraAirport : Ind Airport ; -fun CircleCityAKAirport : Ind Airport ; + fun CircleCityAKAirport : Ind Airport ; -fun CircleHotSpringsAKAirport : Ind Airport ; + fun CircleHotSpringsAKAirport : Ind Airport ; -fun CirebonAirport : Ind Airport ; + fun CirebonAirport : Ind Airport ; -fun CiticorpHeliportCAAirport : Ind Airport ; + fun CiticorpHeliportCAAirport : Ind Airport ; -fun CityofColoradoSpringsMunicipalCOAirport : Ind Airport ; + fun CityofColoradoSpringsMunicipalCOAirport : Ind Airport ; -fun CityofIndustryCivicFinancialHeliportCAAirport : Ind Airport ; + fun CityofIndustryCivicFinancialHeliportCAAirport : Ind Airport ; -fun CiudadAcunaAirport : Ind Airport ; + fun CiudadAcunaAirport : Ind Airport ; -fun CiudadBolivarAirport : Ind Airport ; + fun CiudadBolivarAirport : Ind Airport ; -fun CiudadConstitucionAirport : Ind Airport ; + fun CiudadConstitucionAirport : Ind Airport ; -fun CiudadGuayanaAirport : Ind Airport ; + fun CiudadGuayanaAirport : Ind Airport ; -fun CiudadObregonAirport : Ind Airport ; + fun CiudadObregonAirport : Ind Airport ; -fun CiudadVictoriaAirport : Ind Airport ; + fun CiudadVictoriaAirport : Ind Airport ; -fun CiudaddelCarmenAirport : Ind Airport ; + fun CiudaddelCarmenAirport : Ind Airport ; -fun CiudaddelEsteAirport : Ind Airport ; + fun CiudaddelEsteAirport : Ind Airport ; -fun ClaremontMunicipalNHAirport : Ind Airport ; + fun ClaremontMunicipalNHAirport : Ind Airport ; -fun ClarkCountyINAirport : Ind Airport ; + fun ClarkCountyINAirport : Ind Airport ; -fun ClarkFieldLuzonAirport : Ind Airport ; + fun ClarkFieldLuzonAirport : Ind Airport ; -fun ClarksPointAKAirport : Ind Airport ; + fun ClarksPointAKAirport : Ind Airport ; -fun ClayCenterMunicipalKSAirport : Ind Airport ; + fun ClayCenterMunicipalKSAirport : Ind Airport ; -fun ClaytonMunicipalAirparkNMAirport : Ind Airport ; + fun ClaytonMunicipalAirparkNMAirport : Ind Airport ; -fun ClearLakeAKAirport : Ind Airport ; + fun ClearLakeAKAirport : Ind Airport ; -fun ClearwaterAirParkFLAirport : Ind Airport ; + fun ClearwaterAirParkFLAirport : Ind Airport ; -fun ClemsonOconeeCountySCAirport : Ind Airport ; + fun ClemsonOconeeCountySCAirport : Ind Airport ; -fun ClermontQueenslandAirport : Ind Airport ; + fun ClermontQueenslandAirport : Ind Airport ; -fun CleveSouthAustraliaAirport : Ind Airport ; + fun CleveSouthAustraliaAirport : Ind Airport ; -fun ClevelandHopkinsInternationalOHAirport : Ind Airport ; + fun ClevelandHopkinsInternationalOHAirport : Ind Airport ; -fun CliftonHillsSouthAustraliaAirport : Ind Airport ; + fun CliftonHillsSouthAustraliaAirport : Ind Airport ; -fun ClintonMunicipalIAAirport : Ind Airport ; + fun ClintonMunicipalIAAirport : Ind Airport ; -fun ClintonMunicipalOKAirport : Ind Airport ; + fun ClintonMunicipalOKAirport : Ind Airport ; -fun ClintonShermanOKAirport : Ind Airport ; + fun ClintonShermanOKAirport : Ind Airport ; -fun ClintonvilleMunicipalWIAirport : Ind Airport ; + fun ClintonvilleMunicipalWIAirport : Ind Airport ; -fun CloncurryQueenslandAirport : Ind Airport ; + fun CloncurryQueenslandAirport : Ind Airport ; -fun ClorindaAirport : Ind Airport ; + fun ClorindaAirport : Ind Airport ; -fun ClovisMunicipalNMAirport : Ind Airport ; + fun ClovisMunicipalNMAirport : Ind Airport ; -fun ClujNapocaAirport : Ind Airport ; + fun ClujNapocaAirport : Ind Airport ; -fun ClunyQueenslandAirport : Ind Airport ; + fun ClunyQueenslandAirport : Ind Airport ; -fun CoalHarbourWaterAerodromeBCAirport : Ind Airport ; + fun CoalHarbourWaterAerodromeBCAirport : Ind Airport ; -fun CoalingaMunicipalCAAirport : Ind Airport ; + fun CoalingaMunicipalCAAirport : Ind Airport ; -fun CoariAMAirport : Ind Airport ; + fun CoariAMAirport : Ind Airport ; -fun CobanAirport : Ind Airport ; + fun CobanAirport : Ind Airport ; -fun CobarNewSouthWalesAirport : Ind Airport ; + fun CobarNewSouthWalesAirport : Ind Airport ; -fun CobijaAirport : Ind Airport ; + fun CobijaAirport : Ind Airport ; -fun CochinAirport : Ind Airport ; + fun CochinAirport : Ind Airport ; -fun CoconutIslandQueenslandAirport : Ind Airport ; + fun CoconutIslandQueenslandAirport : Ind Airport ; -fun CocosIslandsCocosKeelingIslandsAirport : Ind Airport ; + fun CocosIslandsCocosKeelingIslandsAirport : Ind Airport ; -fun CodazziAirport : Ind Airport ; + fun CodazziAirport : Ind Airport ; -fun CoenQueenslandAirport : Ind Airport ; + fun CoenQueenslandAirport : Ind Airport ; -fun CoeurdAleneAirTerminalIDAirport : Ind Airport ; + fun CoeurdAleneAirTerminalIDAirport : Ind Airport ; -fun CoffeePointAKAirport : Ind Airport ; + fun CoffeePointAKAirport : Ind Airport ; -fun CoffeyvilleMunicipalKSAirport : Ind Airport ; + fun CoffeyvilleMunicipalKSAirport : Ind Airport ; -fun CoffmanCoveSeaplaneBaseAKAirport : Ind Airport ; + fun CoffmanCoveSeaplaneBaseAKAirport : Ind Airport ; -fun CoffsHarbourNewSouthWalesAirport : Ind Airport ; + fun CoffsHarbourNewSouthWalesAirport : Ind Airport ; -fun CognacAirport : Ind Airport ; + fun CognacAirport : Ind Airport ; -fun CoimbatoreAirport : Ind Airport ; + fun CoimbatoreAirport : Ind Airport ; -fun CoimbraAirport : Ind Airport ; + fun CoimbraAirport : Ind Airport ; -fun ColdBayAKAirport : Ind Airport ; + fun ColdBayAKAirport : Ind Airport ; -fun ColdfootAKAirport : Ind Airport ; + fun ColdfootAKAirport : Ind Airport ; -fun ColemanMunicipalTXAirport : Ind Airport ; + fun ColemanMunicipalTXAirport : Ind Airport ; -fun ColimaAirport : Ind Airport ; + fun ColimaAirport : Ind Airport ; -fun CollIslandAirport : Ind Airport ; + fun CollIslandAirport : Ind Airport ; -fun CollarenebriNewSouthWalesAirport : Ind Airport ; + fun CollarenebriNewSouthWalesAirport : Ind Airport ; -fun CollegeParkMDAirport : Ind Airport ; + fun CollegeParkMDAirport : Ind Airport ; -fun CollieWesternAustraliaAirport : Ind Airport ; + fun CollieWesternAustraliaAirport : Ind Airport ; -fun CollinsvilleQueenslandAirport : Ind Airport ; + fun CollinsvilleQueenslandAirport : Ind Airport ; -fun ColmarAirport : Ind Airport ; + fun ColmarAirport : Ind Airport ; -fun ColoniaAirport : Ind Airport ; + fun ColoniaAirport : Ind Airport ; -fun ColoniaCatrielAirport : Ind Airport ; + fun ColoniaCatrielAirport : Ind Airport ; -fun ColonsayScotlandAirport : Ind Airport ; + fun ColonsayScotlandAirport : Ind Airport ; -fun ColoradoCreekAKAirport : Ind Airport ; + fun ColoradoCreekAKAirport : Ind Airport ; -fun ColtishallAirport : Ind Airport ; + fun ColtishallAirport : Ind Airport ; -fun ColumbiaCAAirport : Ind Airport ; + fun ColumbiaCAAirport : Ind Airport ; -fun ColumbiaMetropolitanSCAirport : Ind Airport ; + fun ColumbiaMetropolitanSCAirport : Ind Airport ; -fun ColumbiaOwensDowntownSCAirport : Ind Airport ; + fun ColumbiaOwensDowntownSCAirport : Ind Airport ; -fun ColumbiaRegionalMOAirport : Ind Airport ; + fun ColumbiaRegionalMOAirport : Ind Airport ; -fun ColumbusAirForceBaseMSAirport : Ind Airport ; + fun ColumbusAirForceBaseMSAirport : Ind Airport ; -fun ColumbusMetropolitanGAAirport : Ind Airport ; + fun ColumbusMetropolitanGAAirport : Ind Airport ; -fun ColumbusMunicipalINAirport : Ind Airport ; + fun ColumbusMunicipalINAirport : Ind Airport ; -fun ColumbusMunicipalNMAirport : Ind Airport ; + fun ColumbusMunicipalNMAirport : Ind Airport ; -fun ColvilleRiverAKAirport : Ind Airport ; + fun ColvilleRiverAKAirport : Ind Airport ; -fun ComandanteEsporaBahiaBlancaAirport : Ind Airport ; + fun ComandanteEsporaBahiaBlancaAirport : Ind Airport ; -fun ComillaAirport : Ind Airport ; + fun ComillaAirport : Ind Airport ; -fun ComisoAirport : Ind Airport ; + fun ComisoAirport : Ind Airport ; -fun CommerceBusinessParkHeliportCAAirport : Ind Airport ; + fun CommerceBusinessParkHeliportCAAirport : Ind Airport ; -fun CommodoreCenterHeliportCAAirport : Ind Airport ; + fun CommodoreCenterHeliportCAAirport : Ind Airport ; -fun ComodoroPierresConcordiaAirport : Ind Airport ; + fun ComodoroPierresConcordiaAirport : Ind Airport ; -fun ComptonCAAirport : Ind Airport ; + fun ComptonCAAirport : Ind Airport ; -fun ConceicaoPBAirport : Ind Airport ; + fun ConceicaoPBAirport : Ind Airport ; -fun ConcepcionAirport : Ind Airport ; + fun ConcepcionAirport : Ind Airport ; -fun ConcordMunicipalNHAirport : Ind Airport ; + fun ConcordMunicipalNHAirport : Ind Airport ; -fun ConcordiaAMAirport : Ind Airport ; + fun ConcordiaAMAirport : Ind Airport ; -fun CondobolinNewSouthWalesAirport : Ind Airport ; + fun CondobolinNewSouthWalesAirport : Ind Airport ; -fun CondotoAirport : Ind Airport ; + fun CondotoAirport : Ind Airport ; -fun ConfinsMGAirport : Ind Airport ; + fun ConfinsMGAirport : Ind Airport ; -fun ConfrezaAirport : Ind Airport ; + fun ConfrezaAirport : Ind Airport ; -fun CongoTownAirport : Ind Airport ; + fun CongoTownAirport : Ind Airport ; -fun ConnaughtAirport : Ind Airport ; + fun ConnaughtAirport : Ind Airport ; -fun ConquistaMGAirport : Ind Airport ; + fun ConquistaMGAirport : Ind Airport ; -fun ConstanzaAirport : Ind Airport ; + fun ConstanzaAirport : Ind Airport ; -fun ContamanaAirport : Ind Airport ; + fun ContamanaAirport : Ind Airport ; -fun ConverseCountyWYAirport : Ind Airport ; + fun ConverseCountyWYAirport : Ind Airport ; -fun ConwayHorryCountySCAirport : Ind Airport ; + fun ConwayHorryCountySCAirport : Ind Airport ; -fun CooberPedySouthAustraliaAirport : Ind Airport ; + fun CooberPedySouthAustraliaAirport : Ind Airport ; -fun CoochBeharAirport : Ind Airport ; + fun CoochBeharAirport : Ind Airport ; -fun CooindaNorthernTerritoryAirport : Ind Airport ; + fun CooindaNorthernTerritoryAirport : Ind Airport ; -fun CookMunicipalMNAirport : Ind Airport ; + fun CookMunicipalMNAirport : Ind Airport ; -fun CooktownQueenslandAirport : Ind Airport ; + fun CooktownQueenslandAirport : Ind Airport ; -fun CoolahNewSouthWalesAirport : Ind Airport ; + fun CoolahNewSouthWalesAirport : Ind Airport ; -fun CoolawanyahWesternAustraliaAirport : Ind Airport ; + fun CoolawanyahWesternAustraliaAirport : Ind Airport ; -fun CoolibahNorthernTerritoryAirport : Ind Airport ; + fun CoolibahNorthernTerritoryAirport : Ind Airport ; -fun CoonabarabranNewSouthWalesAirport : Ind Airport ; + fun CoonabarabranNewSouthWalesAirport : Ind Airport ; -fun CoonambleNewSouthWalesAirport : Ind Airport ; + fun CoonambleNewSouthWalesAirport : Ind Airport ; -fun CoorabieAirport : Ind Airport ; + fun CoorabieAirport : Ind Airport ; -fun CootamundraNewSouthWalesAirport : Ind Airport ; + fun CootamundraNewSouthWalesAirport : Ind Airport ; -fun CopiapoAirport : Ind Airport ; + fun CopiapoAirport : Ind Airport ; -fun CopperCenter2AKAirport : Ind Airport ; + fun CopperCenter2AKAirport : Ind Airport ; -fun CoquimboAirport : Ind Airport ; + fun CoquimboAirport : Ind Airport ; -fun CorazondeJesusAirport : Ind Airport ; + fun CorazondeJesusAirport : Ind Airport ; -fun CorcoranCAAirport : Ind Airport ; + fun CorcoranCAAirport : Ind Airport ; -fun CordovaMunicipalAKAirport : Ind Airport ; + fun CordovaMunicipalAKAirport : Ind Airport ; -fun CoritgoBlancoAirport : Ind Airport ; + fun CoritgoBlancoAirport : Ind Airport ; -fun CornelioProcopioPRAirport : Ind Airport ; + fun CornelioProcopioPRAirport : Ind Airport ; -fun CornerBayAKAirport : Ind Airport ; + fun CornerBayAKAirport : Ind Airport ; -fun CoroAirport : Ind Airport ; + fun CoroAirport : Ind Airport ; -fun CoromandelAirport : Ind Airport ; + fun CoromandelAirport : Ind Airport ; -fun CoronelFSVignetaIquitosAirport : Ind Airport ; + fun CoronelFSVignetaIquitosAirport : Ind Airport ; -fun CorowaNewSouthWalesAirport : Ind Airport ; + fun CorowaNewSouthWalesAirport : Ind Airport ; -fun CorozalAirport : Ind Airport ; + fun CorozalAirport : Ind Airport ; -fun CorozalAirportColombia : Ind Airport ; + fun CorozalAirportColombia : Ind Airport ; -fun CorpusChristiInternationalTXAirport : Ind Airport ; + fun CorpusChristiInternationalTXAirport : Ind Airport ; -fun CorrientesAirport : Ind Airport ; + fun CorrientesAirport : Ind Airport ; -fun CortezMontezumaCountyCOAirport : Ind Airport ; + fun CortezMontezumaCountyCOAirport : Ind Airport ; -fun CortinadAmpezzoAirport : Ind Airport ; + fun CortinadAmpezzoAirport : Ind Airport ; -fun CortlandCountyAirportChaseFieldNYAirport : Ind Airport ; + fun CortlandCountyAirportChaseFieldNYAirport : Ind Airport ; -fun CorumbaSPAirport : Ind Airport ; + fun CorumbaSPAirport : Ind Airport ; -fun CorvallisMunicipalORAirport : Ind Airport ; + fun CorvallisMunicipalORAirport : Ind Airport ; -fun CorvoIslandAzoresAirport : Ind Airport ; + fun CorvoIslandAzoresAirport : Ind Airport ; -fun CostaMarquesROAirport : Ind Airport ; + fun CostaMarquesROAirport : Ind Airport ; -fun CotabatoAirport : Ind Airport ; + fun CotabatoAirport : Ind Airport ; -fun CoteduRifAlHoceimaAirport : Ind Airport ; + fun CoteduRifAlHoceimaAirport : Ind Airport ; -fun CottonwoodAZAirport : Ind Airport ; + fun CottonwoodAZAirport : Ind Airport ; -fun CotullaLaSalleCountyTXAirport : Ind Airport ; + fun CotullaLaSalleCountyTXAirport : Ind Airport ; -fun CoulterFieldTXAirport : Ind Airport ; + fun CoulterFieldTXAirport : Ind Airport ; -fun CouncilAKAirport : Ind Airport ; + fun CouncilAKAirport : Ind Airport ; -fun CouncilBluffsMunicipalIAAirport : Ind Airport ; + fun CouncilBluffsMunicipalIAAirport : Ind Airport ; -fun CountyMemorialMOAirport : Ind Airport ; + fun CountyMemorialMOAirport : Ind Airport ; -fun CourchevalAirport : Ind Airport ; + fun CourchevalAirport : Ind Airport ; -fun CovenasAirport : Ind Airport ; + fun CovenasAirport : Ind Airport ; -fun CovilhaAirport : Ind Airport ; + fun CovilhaAirport : Ind Airport ; -fun CovingtonKYCincinnatiAirport : Ind Airport ; + fun CovingtonKYCincinnatiAirport : Ind Airport ; -fun CowarieSouthAustraliaAirport : Ind Airport ; + fun CowarieSouthAustraliaAirport : Ind Airport ; -fun CowellSouthAustraliaAirport : Ind Airport ; + fun CowellSouthAustraliaAirport : Ind Airport ; -fun CowraNewSouthWalesAirport : Ind Airport ; + fun CowraNewSouthWalesAirport : Ind Airport ; -fun CoxsBazarAirport : Ind Airport ; + fun CoxsBazarAirport : Ind Airport ; -fun CoyhaiqueAirport : Ind Airport ; + fun CoyhaiqueAirport : Ind Airport ; -fun CoyolesAirport : Ind Airport ; + fun CoyolesAirport : Ind Airport ; -fun CozadMunicipalNEAirport : Ind Airport ; + fun CozadMunicipalNEAirport : Ind Airport ; -fun CozumelAirport : Ind Airport ; + fun CozumelAirport : Ind Airport ; -fun CradockAirport : Ind Airport ; + fun CradockAirport : Ind Airport ; -fun CraftonIslandAKAirport : Ind Airport ; + fun CraftonIslandAKAirport : Ind Airport ; -fun CraigCoveAirport : Ind Airport ; + fun CraigCoveAirport : Ind Airport ; -fun CraigMoffatCOAirport : Ind Airport ; + fun CraigMoffatCOAirport : Ind Airport ; -fun CraigMunicipalFLAirport : Ind Airport ; + fun CraigMunicipalFLAirport : Ind Airport ; -fun CraigSeaplaneBaseAKAirport : Ind Airport ; + fun CraigSeaplaneBaseAKAirport : Ind Airport ; -fun CraiovaAirport : Ind Airport ; + fun CraiovaAirport : Ind Airport ; -fun CramFieldNEAirport : Ind Airport ; + fun CramFieldNEAirport : Ind Airport ; -fun CraneCountyTXAirport : Ind Airport ; + fun CraneCountyTXAirport : Ind Airport ; -fun CraneIslandWAAirport : Ind Airport ; + fun CraneIslandWAAirport : Ind Airport ; -fun CravenCountyRegionalNCAirport : Ind Airport ; + fun CravenCountyRegionalNCAirport : Ind Airport ; -fun CrawfordsvilleMunicipalINAirport : Ind Airport ; + fun CrawfordsvilleMunicipalINAirport : Ind Airport ; -fun CresswellDownsNorthernTerritoryAirport : Ind Airport ; + fun CresswellDownsNorthernTerritoryAirport : Ind Airport ; -fun CrestonMunicipalIAAirport : Ind Airport ; + fun CrestonMunicipalIAAirport : Ind Airport ; -fun CrisciumaSCAirport : Ind Airport ; + fun CrisciumaSCAirport : Ind Airport ; -fun CrispCountyCordeleGAAirport : Ind Airport ; + fun CrispCountyCordeleGAAirport : Ind Airport ; -fun CristoforoColomboSeatriGenoaGenovaAirport : Ind Airport ; + fun CristoforoColomboSeatriGenoaGenovaAirport : Ind Airport ; -fun CrokerIslandNorthernTerritoryAirport : Ind Airport ; + fun CrokerIslandNorthernTerritoryAirport : Ind Airport ; -fun CromartyAirport : Ind Airport ; + fun CromartyAirport : Ind Airport ; -fun CrookedCreekAKAirport : Ind Airport ; + fun CrookedCreekAKAirport : Ind Airport ; -fun CrookedIslandCrookedAirport : Ind Airport ; + fun CrookedIslandCrookedAirport : Ind Airport ; -fun CrookstonMunicipalKirkwoodFieldMNAirport : Ind Airport ; + fun CrookstonMunicipalKirkwoodFieldMNAirport : Ind Airport ; -fun CrossCityFLAirport : Ind Airport ; + fun CrossCityFLAirport : Ind Airport ; -fun CrossvilleMemorialTNAirport : Ind Airport ; + fun CrossvilleMemorialTNAirport : Ind Airport ; -fun CrotoneAirport : Ind Airport ; + fun CrotoneAirport : Ind Airport ; -fun CroydonQueenslandAirport : Ind Airport ; + fun CroydonQueenslandAirport : Ind Airport ; -fun CruzAltaRSAirport : Ind Airport ; + fun CruzAltaRSAirport : Ind Airport ; -fun CruzeirodoSulACAirport : Ind Airport ; + fun CruzeirodoSulACAirport : Ind Airport ; -fun CrystalLakePAAirport : Ind Airport ; + fun CrystalLakePAAirport : Ind Airport ; -fun CuambaNovaFreixoAirport : Ind Airport ; + fun CuambaNovaFreixoAirport : Ind Airport ; -fun CubeCoveAKAirport : Ind Airport ; + fun CubeCoveAKAirport : Ind Airport ; -fun CuddapahAirport : Ind Airport ; + fun CuddapahAirport : Ind Airport ; -fun CuddihyFieldTXAirport : Ind Airport ; + fun CuddihyFieldTXAirport : Ind Airport ; -fun CueWesternAustraliaAirport : Ind Airport ; + fun CueWesternAustraliaAirport : Ind Airport ; -fun CuencaAirport : Ind Airport ; + fun CuencaAirport : Ind Airport ; -fun CuiabaMTAirport : Ind Airport ; + fun CuiabaMTAirport : Ind Airport ; -fun CuitoCuanavaleAirport : Ind Airport ; + fun CuitoCuanavaleAirport : Ind Airport ; -fun CulebraCulebraAirport : Ind Airport ; + fun CulebraCulebraAirport : Ind Airport ; -fun CulionAirport : Ind Airport ; + fun CulionAirport : Ind Airport ; -fun CulverCityCAAirport : Ind Airport ; + fun CulverCityCAAirport : Ind Airport ; -fun CumanaAirport : Ind Airport ; + fun CumanaAirport : Ind Airport ; -fun CumberlandMDAirport : Ind Airport ; + fun CumberlandMDAirport : Ind Airport ; -fun CumbicaSPAirport : Ind Airport ; + fun CumbicaSPAirport : Ind Airport ; -fun CuneoAirport : Ind Airport ; + fun CuneoAirport : Ind Airport ; -fun CunnamullaQueenslandAirport : Ind Airport ; + fun CunnamullaQueenslandAirport : Ind Airport ; -fun CurrilloAirport : Ind Airport ; + fun CurrilloAirport : Ind Airport ; -fun CurtisFieldTXAirport : Ind Airport ; + fun CurtisFieldTXAirport : Ind Airport ; -fun CururupuMAAirport : Ind Airport ; + fun CururupuMAAirport : Ind Airport ; -fun CushingMunicipalOKAirport : Ind Airport ; + fun CushingMunicipalOKAirport : Ind Airport ; -fun CutralCoAirport : Ind Airport ; + fun CutralCoAirport : Ind Airport ; -fun CuyahogaCountyOHAirport : Ind Airport ; + fun CuyahogaCountyOHAirport : Ind Airport ; -fun CuzcoAirport : Ind Airport ; + fun CuzcoAirport : Ind Airport ; -fun CzestochowaAirport : Ind Airport ; + fun CzestochowaAirport : Ind Airport ; -fun DFMalanCapeTownAirport : Ind Airport ; + fun DFMalanCapeTownAirport : Ind Airport ; -fun DPSHeliportStCroixAirport : Ind Airport ; + fun DPSHeliportStCroixAirport : Ind Airport ; -fun DaLatAirport : Ind Airport ; + fun DaLatAirport : Ind Airport ; -fun DaNangAirport : Ind Airport ; + fun DaNangAirport : Ind Airport ; -fun DabajoroAirport : Ind Airport ; + fun DabajoroAirport : Ind Airport ; -fun DabbaAirport : Ind Airport ; + fun DabbaAirport : Ind Airport ; -fun DaduAirport : Ind Airport ; + fun DaduAirport : Ind Airport ; -fun DaetAirport : Ind Airport ; + fun DaetAirport : Ind Airport ; -fun DahlCreekAKAirport : Ind Airport ; + fun DahlCreekAKAirport : Ind Airport ; -fun DahlgrenVAUSNavalSurfaceWeaponsCenterAirport : Ind Airport ; + fun DahlgrenVAUSNavalSurfaceWeaponsCenterAirport : Ind Airport ; -fun DajaliGeiloAirport : Ind Airport ; + fun DajaliGeiloAirport : Ind Airport ; -fun DajarraQueenslandAirport : Ind Airport ; + fun DajarraQueenslandAirport : Ind Airport ; -fun DalamanAirport : Ind Airport ; + fun DalamanAirport : Ind Airport ; -fun DalbandinAirport : Ind Airport ; + fun DalbandinAirport : Ind Airport ; -fun DalbertisAirport : Ind Airport ; + fun DalbertisAirport : Ind Airport ; -fun DalbyQueenslandAirport : Ind Airport ; + fun DalbyQueenslandAirport : Ind Airport ; -fun DalhartMunicipalTXAirport : Ind Airport ; + fun DalhartMunicipalTXAirport : Ind Airport ; -fun DalianAirport : Ind Airport ; + fun DalianAirport : Ind Airport ; -fun DallasDowntownHeliportTXAirport : Ind Airport ; + fun DallasDowntownHeliportTXAirport : Ind Airport ; -fun DallasFortWorthInternationalTXAirport : Ind Airport ; + fun DallasFortWorthInternationalTXAirport : Ind Airport ; -fun DallasLoveFieldTXAirport : Ind Airport ; + fun DallasLoveFieldTXAirport : Ind Airport ; -fun DallasNorthTXAirport : Ind Airport ; + fun DallasNorthTXAirport : Ind Airport ; -fun DaloaAirport : Ind Airport ; + fun DaloaAirport : Ind Airport ; -fun DaltonMunicipalGAAirport : Ind Airport ; + fun DaltonMunicipalGAAirport : Ind Airport ; -fun DalyRiverNorthernTerritoryAirport : Ind Airport ; + fun DalyRiverNorthernTerritoryAirport : Ind Airport ; -fun DalyWatersNorthernTerritoryAirport : Ind Airport ; + fun DalyWatersNorthernTerritoryAirport : Ind Airport ; -fun DamascusAirport : Ind Airport ; + fun DamascusAirport : Ind Airport ; -fun DananeAirport : Ind Airport ; + fun DananeAirport : Ind Airport ; -fun DanburyCTAirport : Ind Airport ; + fun DanburyCTAirport : Ind Airport ; -fun DanburyMunicipalCTAirport : Ind Airport ; + fun DanburyMunicipalCTAirport : Ind Airport ; -fun DandongAirport : Ind Airport ; + fun DandongAirport : Ind Airport ; -fun DangAirport : Ind Airport ; + fun DangAirport : Ind Airport ; -fun DangerBayAKAirport : Ind Airport ; + fun DangerBayAKAirport : Ind Airport ; -fun DangrigaAirport : Ind Airport ; + fun DangrigaAirport : Ind Airport ; -fun DanielFieldGAAirport : Ind Airport ; + fun DanielFieldGAAirport : Ind Airport ; -fun DannellyAirNationalGuardBaseOperationsALAirport : Ind Airport ; + fun DannellyAirNationalGuardBaseOperationsALAirport : Ind Airport ; -fun DansvilleMunicipalNYAirport : Ind Airport ; + fun DansvilleMunicipalNYAirport : Ind Airport ; -fun DanvilleRegionalVAAirport : Ind Airport ; + fun DanvilleRegionalVAAirport : Ind Airport ; -fun DaparizoAirport : Ind Airport ; + fun DaparizoAirport : Ind Airport ; -fun DarchulaAirport : Ind Airport ; + fun DarchulaAirport : Ind Airport ; -fun DaresSalaamAirport : Ind Airport ; + fun DaresSalaamAirport : Ind Airport ; -fun DargavilleAirport : Ind Airport ; + fun DargavilleAirport : Ind Airport ; -fun DarjeelingAirport : Ind Airport ; + fun DarjeelingAirport : Ind Airport ; -fun DaruAirport : Ind Airport ; + fun DaruAirport : Ind Airport ; -fun DaruAirportSierraLeone : Ind Airport ; + fun DaruAirportSierraLeone : Ind Airport ; -fun DarwazAirport : Ind Airport ; + fun DarwazAirport : Ind Airport ; -fun DatadawaiAirport : Ind Airport ; + fun DatadawaiAirport : Ind Airport ; -fun DathinaAirport : Ind Airport ; + fun DathinaAirport : Ind Airport ; -fun DatongAirport : Ind Airport ; + fun DatongAirport : Ind Airport ; -fun DauanIslandQueenslandAirport : Ind Airport ; + fun DauanIslandQueenslandAirport : Ind Airport ; -fun DaugavpilsAirport : Ind Airport ; + fun DaugavpilsAirport : Ind Airport ; -fun DaupAirport : Ind Airport ; + fun DaupAirport : Ind Airport ; -fun DavenportDownsQueenslandAirport : Ind Airport ; + fun DavenportDownsQueenslandAirport : Ind Airport ; -fun DavenportMunicipalIAAirport : Ind Airport ; + fun DavenportMunicipalIAAirport : Ind Airport ; -fun DavidWayneHooksMemorialTXAirport : Ind Airport ; + fun DavidWayneHooksMemorialTXAirport : Ind Airport ; -fun DaviessCountyINAirport : Ind Airport ; + fun DaviessCountyINAirport : Ind Airport ; -fun DavisMonthanAirForceBaseAZAirport : Ind Airport ; + fun DavisMonthanAirForceBaseAZAirport : Ind Airport ; -fun DavisonArmyAirFieldVAAirport : Ind Airport ; + fun DavisonArmyAirFieldVAAirport : Ind Airport ; -fun DawsonCommunityMTAirport : Ind Airport ; + fun DawsonCommunityMTAirport : Ind Airport ; -fun DaxianAirport : Ind Airport ; + fun DaxianAirport : Ind Airport ; -fun DaydreamIslandQueenslandAirport : Ind Airport ; + fun DaydreamIslandQueenslandAirport : Ind Airport ; -fun DayongAirport : Ind Airport ; + fun DayongAirport : Ind Airport ; -fun DaytonaBeachRegionalFLAirport : Ind Airport ; + fun DaytonaBeachRegionalFLAirport : Ind Airport ; -fun DeKalbTaylorMunicipalILAirport : Ind Airport ; + fun DeKalbTaylorMunicipalILAirport : Ind Airport ; -fun DearbornHelistopMIAirport : Ind Airport ; + fun DearbornHelistopMIAirport : Ind Airport ; -fun DeathValleyCAAirport : Ind Airport ; + fun DeathValleyCAAirport : Ind Airport ; -fun DebapareAirport : Ind Airport ; + fun DebapareAirport : Ind Airport ; -fun DeboyneAirport : Ind Airport ; + fun DeboyneAirport : Ind Airport ; -fun DebraMarcosAirport : Ind Airport ; + fun DebraMarcosAirport : Ind Airport ; -fun DebraTaborAirport : Ind Airport ; + fun DebraTaborAirport : Ind Airport ; -fun DebrecenAirport : Ind Airport ; + fun DebrecenAirport : Ind Airport ; -fun DecaturCountyIndustrialAirParkGAAirport : Ind Airport ; + fun DecaturCountyIndustrialAirParkGAAirport : Ind Airport ; -fun DecaturHiWayINAirport : Ind Airport ; + fun DecaturHiWayINAirport : Ind Airport ; -fun DecaturILAirport : Ind Airport ; + fun DecaturILAirport : Ind Airport ; -fun DecaturShoresWAAirport : Ind Airport ; + fun DecaturShoresWAAirport : Ind Airport ; -fun DecorahMunicipalIAAirport : Ind Airport ; + fun DecorahMunicipalIAAirport : Ind Airport ; -fun DedougouAirport : Ind Airport ; + fun DedougouAirport : Ind Airport ; -fun DeerParkNYAirport : Ind Airport ; + fun DeerParkNYAirport : Ind Airport ; -fun DeeringAKAirport : Ind Airport ; + fun DeeringAKAirport : Ind Airport ; -fun DefianceMemorialOHAirport : Ind Airport ; + fun DefianceMemorialOHAirport : Ind Airport ; -fun DegahburAirport : Ind Airport ; + fun DegahburAirport : Ind Airport ; -fun DehradunAirport : Ind Airport ; + fun DehradunAirport : Ind Airport ; -fun DeirezzurAirport : Ind Airport ; + fun DeirezzurAirport : Ind Airport ; -fun DelRioInternationalTXAirport : Ind Airport ; + fun DelRioInternationalTXAirport : Ind Airport ; -fun DelawareAirparkDEAirport : Ind Airport ; + fun DelawareAirparkDEAirport : Ind Airport ; -fun DelawareMunicipalOHAirport : Ind Airport ; + fun DelawareMunicipalOHAirport : Ind Airport ; -fun DelissavilleNorthernTerritoryAirport : Ind Airport ; + fun DelissavilleNorthernTerritoryAirport : Ind Airport ; -fun DeltaCountyMIAirport : Ind Airport ; + fun DeltaCountyMIAirport : Ind Airport ; -fun DeltaDownsQueenslandAirport : Ind Airport ; + fun DeltaDownsQueenslandAirport : Ind Airport ; -fun DeltaJunctionAKAirport : Ind Airport ; + fun DeltaJunctionAKAirport : Ind Airport ; -fun DeltaMunicipalUTAirport : Ind Airport ; + fun DeltaMunicipalUTAirport : Ind Airport ; -fun DembidolloAirport : Ind Airport ; + fun DembidolloAirport : Ind Airport ; -fun DemingMunicipalNMAirport : Ind Airport ; + fun DemingMunicipalNMAirport : Ind Airport ; -fun DenHaagTheHagueHilversumAirport : Ind Airport ; + fun DenHaagTheHagueHilversumAirport : Ind Airport ; -fun DenhamWesternAustraliaAirport : Ind Airport ; + fun DenhamWesternAustraliaAirport : Ind Airport ; -fun DeniliquinNewSouthWalesAirport : Ind Airport ; + fun DeniliquinNewSouthWalesAirport : Ind Airport ; -fun DenisonMunicipalIAAirport : Ind Airport ; + fun DenisonMunicipalIAAirport : Ind Airport ; -fun DenizliAirport : Ind Airport ; + fun DenizliAirport : Ind Airport ; -fun DennisIslandAirport : Ind Airport ; + fun DennisIslandAirport : Ind Airport ; -fun DentonMunicipalTXAirport : Ind Airport ; + fun DentonMunicipalTXAirport : Ind Airport ; -fun DeolsChateaurouxAirport : Ind Airport ; + fun DeolsChateaurouxAirport : Ind Airport ; -fun DeraIsmailKhanAirport : Ind Airport ; + fun DeraIsmailKhanAirport : Ind Airport ; -fun DerbyWesternAustraliaAirport : Ind Airport ; + fun DerbyWesternAustraliaAirport : Ind Airport ; -fun DerimAirport : Ind Airport ; + fun DerimAirport : Ind Airport ; -fun DernaAirport : Ind Airport ; + fun DernaAirport : Ind Airport ; -fun DesMoinesInternationalIAAirport : Ind Airport ; + fun DesMoinesInternationalIAAirport : Ind Airport ; -fun DesertRockNVAirport : Ind Airport ; + fun DesertRockNVAirport : Ind Airport ; -fun DesrochesAirport : Ind Airport ; + fun DesrochesAirport : Ind Airport ; -fun DessieAirport : Ind Airport ; + fun DessieAirport : Ind Airport ; -fun DestinFortWaltonBeachFLAirport : Ind Airport ; + fun DestinFortWaltonBeachFLAirport : Ind Airport ; -fun DetroitCityMIAirport : Ind Airport ; + fun DetroitCityMIAirport : Ind Airport ; -fun DetroitLakesMNAirport : Ind Airport ; + fun DetroitLakesMNAirport : Ind Airport ; -fun DetroitMetropolitanWayneCountyMIAirport : Ind Airport ; + fun DetroitMetropolitanWayneCountyMIAirport : Ind Airport ; -fun DeurneAntwerpenAntwerpAirport : Ind Airport ; + fun DeurneAntwerpenAntwerpAirport : Ind Airport ; -fun DeuxAlpesAirport : Ind Airport ; + fun DeuxAlpesAirport : Ind Airport ; -fun DevaAirport : Ind Airport ; + fun DevaAirport : Ind Airport ; -fun DevilsLakeMunicipalNDAirport : Ind Airport ; + fun DevilsLakeMunicipalNDAirport : Ind Airport ; -fun DevonportTasmaniaAirport : Ind Airport ; + fun DevonportTasmaniaAirport : Ind Airport ; -fun DexterMunicipalMOAirport : Ind Airport ; + fun DexterMunicipalMOAirport : Ind Airport ; -fun DhahranAirport : Ind Airport ; + fun DhahranAirport : Ind Airport ; -fun DhalaAirport : Ind Airport ; + fun DhalaAirport : Ind Airport ; -fun DhamarAirport : Ind Airport ; + fun DhamarAirport : Ind Airport ; -fun DhanbadAirport : Ind Airport ; + fun DhanbadAirport : Ind Airport ; -fun DhangarhiAirport : Ind Airport ; + fun DhangarhiAirport : Ind Airport ; -fun DharamsalaAirport : Ind Airport ; + fun DharamsalaAirport : Ind Airport ; -fun DiamantinaLakesQueenslandAirport : Ind Airport ; + fun DiamantinaLakesQueenslandAirport : Ind Airport ; -fun DiamantinoMTAirport : Ind Airport ; + fun DiamantinoMTAirport : Ind Airport ; -fun DianopolisGOAirport : Ind Airport ; + fun DianopolisGOAirport : Ind Airport ; -fun DiapagaAirport : Ind Airport ; + fun DiapagaAirport : Ind Airport ; -fun DibaaAirport : Ind Airport ; + fun DibaaAirport : Ind Airport ; -fun DibrugarhAirport : Ind Airport ; + fun DibrugarhAirport : Ind Airport ; -fun DickinsonMunicipalNDAirport : Ind Airport ; + fun DickinsonMunicipalNDAirport : Ind Airport ; -fun DiegoAracenaIquiqueAirport : Ind Airport ; + fun DiegoAracenaIquiqueAirport : Ind Airport ; -fun DiegoJimenezTorresFajardoAirport : Ind Airport ; + fun DiegoJimenezTorresFajardoAirport : Ind Airport ; -fun DieppeAirport : Ind Airport ; + fun DieppeAirport : Ind Airport ; -fun DietrichAKAirport : Ind Airport ; + fun DietrichAKAirport : Ind Airport ; -fun DiliAirport : Ind Airport ; + fun DiliAirport : Ind Airport ; -fun DillantHopkinsNHAirport : Ind Airport ; + fun DillantHopkinsNHAirport : Ind Airport ; -fun DillinghamAKAirport : Ind Airport ; + fun DillinghamAKAirport : Ind Airport ; -fun DillinghamAirForceBaseHIAirport : Ind Airport ; + fun DillinghamAirForceBaseHIAirport : Ind Airport ; -fun DillonCountySCAirport : Ind Airport ; + fun DillonCountySCAirport : Ind Airport ; -fun DillonMTAirport : Ind Airport ; + fun DillonMTAirport : Ind Airport ; -fun DillonsBayAirport : Ind Airport ; + fun DillonsBayAirport : Ind Airport ; -fun DimapurAirport : Ind Airport ; + fun DimapurAirport : Ind Airport ; -fun DimmitCountyTXAirport : Ind Airport ; + fun DimmitCountyTXAirport : Ind Airport ; -fun DinajpurAirport : Ind Airport ; + fun DinajpurAirport : Ind Airport ; -fun DinangatAirport : Ind Airport ; + fun DinangatAirport : Ind Airport ; -fun DinderAirport : Ind Airport ; + fun DinderAirport : Ind Airport ; -fun DiosAirport : Ind Airport ; + fun DiosAirport : Ind Airport ; -fun DipologAirport : Ind Airport ; + fun DipologAirport : Ind Airport ; -fun DirranbandiQueenslandAirport : Ind Airport ; + fun DirranbandiQueenslandAirport : Ind Airport ; -fun DivinopolisMGAirport : Ind Airport ; + fun DivinopolisMGAirport : Ind Airport ; -fun DiwanofRoyalCourtAirport : Ind Airport ; + fun DiwanofRoyalCourtAirport : Ind Airport ; -fun DixieQueenslandAirport : Ind Airport ; + fun DixieQueenslandAirport : Ind Airport ; -fun DiyarbakirAirport : Ind Airport ; + fun DiyarbakirAirport : Ind Airport ; -fun DjambalaAirport : Ind Airport ; + fun DjambalaAirport : Ind Airport ; -fun DjerbaZarzisDjerbaJerbaAirport : Ind Airport ; + fun DjerbaZarzisDjerbaJerbaAirport : Ind Airport ; -fun DjoemoeAirport : Ind Airport ; + fun DjoemoeAirport : Ind Airport ; -fun DjougouAirport : Ind Airport ; + fun DjougouAirport : Ind Airport ; -fun DjupivogurAirport : Ind Airport ; + fun DjupivogurAirport : Ind Airport ; -fun DnipropetrovskDnepropetrovskDnipropetrovskAirport : Ind Airport ; + fun DnipropetrovskDnepropetrovskDnipropetrovskAirport : Ind Airport ; -fun DoanyAirport : Ind Airport ; + fun DoanyAirport : Ind Airport ; -fun DoboAruIslandsAirport : Ind Airport ; + fun DoboAruIslandsAirport : Ind Airport ; -fun DodgeCityRegionalKSAirport : Ind Airport ; + fun DodgeCityRegionalKSAirport : Ind Airport ; -fun DodoimaAirport : Ind Airport ; + fun DodoimaAirport : Ind Airport ; -fun DodomaAirport : Ind Airport ; + fun DodomaAirport : Ind Airport ; -fun DohaAirport : Ind Airport ; + fun DohaAirport : Ind Airport ; -fun DoiniAirport : Ind Airport ; + fun DoiniAirport : Ind Airport ; -fun DolisieAirport : Ind Airport ; + fun DolisieAirport : Ind Airport ; -fun DolomiAKAirport : Ind Airport ; + fun DolomiAKAirport : Ind Airport ; -fun DolpaAirport : Ind Airport ; + fun DolpaAirport : Ind Airport ; -fun DomodemovoMoscowAirport : Ind Airport ; + fun DomodemovoMoscowAirport : Ind Airport ; -fun DonMuangInternationalBangkokAirport : Ind Airport ; + fun DonMuangInternationalBangkokAirport : Ind Airport ; -fun DonaldsonCenterSCAirport : Ind Airport ; + fun DonaldsonCenterSCAirport : Ind Airport ; -fun DoncasterAirport : Ind Airport ; + fun DoncasterAirport : Ind Airport ; -fun DonetskDonetskAirport : Ind Airport ; + fun DonetskDonetskAirport : Ind Airport ; -fun DongaraWesternAustraliaAirport : Ind Airport ; + fun DongaraWesternAustraliaAirport : Ind Airport ; -fun DongolaAirport : Ind Airport ; + fun DongolaAirport : Ind Airport ; -fun DoomadgeeMissionQueenslandAirport : Ind Airport ; + fun DoomadgeeMissionQueenslandAirport : Ind Airport ; -fun DoraBayAKAirport : Ind Airport ; + fun DoraBayAKAirport : Ind Airport ; -fun DoradoAirportprivateDoradoAirport : Ind Airport ; + fun DoradoAirportprivateDoradoAirport : Ind Airport ; -fun DorchesterCountySCAirport : Ind Airport ; + fun DorchesterCountySCAirport : Ind Airport ; -fun DoriAirport : Ind Airport ; + fun DoriAirport : Ind Airport ; -fun DornochAirport : Ind Airport ; + fun DornochAirport : Ind Airport ; -fun DorobisoroAirport : Ind Airport ; + fun DorobisoroAirport : Ind Airport ; -fun DorraAirport : Ind Airport ; + fun DorraAirport : Ind Airport ; -fun DortmundAirport : Ind Airport ; + fun DortmundAirport : Ind Airport ; -fun DorundaStationQueenslandAirport : Ind Airport ; + fun DorundaStationQueenslandAirport : Ind Airport ; -fun DosLagunasAirport : Ind Airport ; + fun DosLagunasAirport : Ind Airport ; -fun DothanALAirport : Ind Airport ; + fun DothanALAirport : Ind Airport ; -fun DoualaAirport : Ind Airport ; + fun DoualaAirport : Ind Airport ; -fun DouglasMunicipalAZAirport : Ind Airport ; + fun DouglasMunicipalAZAirport : Ind Airport ; -fun DouglasMunicipalGAAirport : Ind Airport ; + fun DouglasMunicipalGAAirport : Ind Airport ; -fun DouradosMGAirport : Ind Airport ; + fun DouradosMGAirport : Ind Airport ; -fun DoverAirForceBaseDEAirport : Ind Airport ; + fun DoverAirForceBaseDEAirport : Ind Airport ; -fun DowntownAirparkOKAirport : Ind Airport ; + fun DowntownAirparkOKAirport : Ind Airport ; -fun DowntownCAAirport : Ind Airport ; + fun DowntownCAAirport : Ind Airport ; -fun DowntownHeliportMNAirport : Ind Airport ; + fun DowntownHeliportMNAirport : Ind Airport ; -fun DrakeFieldARAirport : Ind Airport ; + fun DrakeFieldARAirport : Ind Airport ; -fun DramaAirport : Ind Airport ; + fun DramaAirport : Ind Airport ; -fun DresdenAirport : Ind Airport ; + fun DresdenAirport : Ind Airport ; -fun DrietabbetjeAirport : Ind Airport ; + fun DrietabbetjeAirport : Ind Airport ; -fun DriftRiverAKAirport : Ind Airport ; + fun DriftRiverAKAirport : Ind Airport ; -fun DriftwoodBayAKAirport : Ind Airport ; + fun DriftwoodBayAKAirport : Ind Airport ; -fun DrumduffQueenslandAirport : Ind Airport ; + fun DrumduffQueenslandAirport : Ind Airport ; -fun DrummondIslandMIAirport : Ind Airport ; + fun DrummondIslandMIAirport : Ind Airport ; -fun DrummondMTAirport : Ind Airport ; + fun DrummondMTAirport : Ind Airport ; -fun DschangAirport : Ind Airport ; + fun DschangAirport : Ind Airport ; -fun DuBoisJeffersonCountyPAAirport : Ind Airport ; + fun DuBoisJeffersonCountyPAAirport : Ind Airport ; -fun DubaiAirport : Ind Airport ; + fun DubaiAirport : Ind Airport ; -fun DubboNewSouthWalesAirport : Ind Airport ; + fun DubboNewSouthWalesAirport : Ind Airport ; -fun DublinAirport : Ind Airport ; + fun DublinAirport : Ind Airport ; -fun DuboisMunicipalIDAirport : Ind Airport ; + fun DuboisMunicipalIDAirport : Ind Airport ; -fun DubrovnikAirport : Ind Airport ; + fun DubrovnikAirport : Ind Airport ; -fun DubuqueRegionalIAAirport : Ind Airport ; + fun DubuqueRegionalIAAirport : Ind Airport ; -fun DuckNCAirport : Ind Airport ; + fun DuckNCAirport : Ind Airport ; -fun DuisburgAirport : Ind Airport ; + fun DuisburgAirport : Ind Airport ; -fun DulkaninnaSouthAustraliaAirport : Ind Airport ; + fun DulkaninnaSouthAustraliaAirport : Ind Airport ; -fun DuluthInternationalMNAirport : Ind Airport ; + fun DuluthInternationalMNAirport : Ind Airport ; -fun DumDumInternationalCalcuttaAirport : Ind Airport ; + fun DumDumInternationalCalcuttaAirport : Ind Airport ; -fun DumagueteAirport : Ind Airport ; + fun DumagueteAirport : Ind Airport ; -fun DumaiAirport : Ind Airport ; + fun DumaiAirport : Ind Airport ; -fun DumasMunicipalTXAirport : Ind Airport ; + fun DumasMunicipalTXAirport : Ind Airport ; -fun DumpuAirport : Ind Airport ; + fun DumpuAirport : Ind Airport ; -fun DunbarQueenslandAirport : Ind Airport ; + fun DunbarQueenslandAirport : Ind Airport ; -fun DuncanTownRaggedAirport : Ind Airport ; + fun DuncanTownRaggedAirport : Ind Airport ; -fun DundasAirport : Ind Airport ; + fun DundasAirport : Ind Airport ; -fun DundeeAirport : Ind Airport ; + fun DundeeAirport : Ind Airport ; -fun DundoAirport : Ind Airport ; + fun DundoAirport : Ind Airport ; -fun DunedinAirport : Ind Airport ; + fun DunedinAirport : Ind Airport ; -fun DunhuangAirport : Ind Airport ; + fun DunhuangAirport : Ind Airport ; -fun DunkIslandQueenslandAirport : Ind Airport ; + fun DunkIslandQueenslandAirport : Ind Airport ; -fun DunkerqueCalaisAirport : Ind Airport ; + fun DunkerqueCalaisAirport : Ind Airport ; -fun DupageILAirport : Ind Airport ; + fun DupageILAirport : Ind Airport ; -fun DurangoAirport : Ind Airport ; + fun DurangoAirport : Ind Airport ; -fun DurangoLaPlataCountyCOAirport : Ind Airport ; + fun DurangoLaPlataCountyCOAirport : Ind Airport ; -fun DurhamDownsQueenslandAirport : Ind Airport ; + fun DurhamDownsQueenslandAirport : Ind Airport ; -fun DurrieQueenslandAirport : Ind Airport ; + fun DurrieQueenslandAirport : Ind Airport ; -fun DushanbeKaroteginAirport : Ind Airport ; + fun DushanbeKaroteginAirport : Ind Airport ; -fun DwightILAirport : Ind Airport ; + fun DwightILAirport : Ind Airport ; -fun DyceScotlandAirport : Ind Airport ; + fun DyceScotlandAirport : Ind Airport ; -fun DyessAirForceBaseTXAirport : Ind Airport ; + fun DyessAirForceBaseTXAirport : Ind Airport ; -fun DysartQueenslandAirport : Ind Airport ; + fun DysartQueenslandAirport : Ind Airport ; -fun EagleAKAirport : Ind Airport ; + fun EagleAKAirport : Ind Airport ; -fun EagleAirParkTXAirport : Ind Airport ; + fun EagleAirParkTXAirport : Ind Airport ; -fun EagleCountyRegionalCOAirport : Ind Airport ; + fun EagleCountyRegionalCOAirport : Ind Airport ; -fun EagleGroveMunicipalIAAirport : Ind Airport ; + fun EagleGroveMunicipalIAAirport : Ind Airport ; -fun EagleLakeTXAirport : Ind Airport ; + fun EagleLakeTXAirport : Ind Airport ; -fun EaglePassMunicipalTXAirport : Ind Airport ; + fun EaglePassMunicipalTXAirport : Ind Airport ; -fun EagleRiverUnionWIAirport : Ind Airport ; + fun EagleRiverUnionWIAirport : Ind Airport ; -fun EakerAirForceBaseARAirport : Ind Airport ; + fun EakerAirForceBaseARAirport : Ind Airport ; -fun EakerFieldOKAirport : Ind Airport ; + fun EakerFieldOKAirport : Ind Airport ; -fun EarlHenryOKAirport : Ind Airport ; + fun EarlHenryOKAirport : Ind Airport ; -fun East60thStreetHeliportNYAirport : Ind Airport ; + fun East60thStreetHeliportNYAirport : Ind Airport ; -fun EastForkAKAirport : Ind Airport ; + fun EastForkAKAirport : Ind Airport ; -fun EastGreenlandAirport : Ind Airport ; + fun EastGreenlandAirport : Ind Airport ; -fun EastHamptonNYAirport : Ind Airport ; + fun EastHamptonNYAirport : Ind Airport ; -fun EastLondonAirport : Ind Airport ; + fun EastLondonAirport : Ind Airport ; -fun EastMidlandsDerbyAirport : Ind Airport ; + fun EastMidlandsDerbyAirport : Ind Airport ; -fun EasternSlopesRegionalMEAirport : Ind Airport ; + fun EasternSlopesRegionalMEAirport : Ind Airport ; -fun EasterwoodFieldTXAirport : Ind Airport ; + fun EasterwoodFieldTXAirport : Ind Airport ; -fun EastlandMunicipalTXAirport : Ind Airport ; + fun EastlandMunicipalTXAirport : Ind Airport ; -fun EastmanDodgeCountyGAAirport : Ind Airport ; + fun EastmanDodgeCountyGAAirport : Ind Airport ; -fun EastonMunicipalMDAirport : Ind Airport ; + fun EastonMunicipalMDAirport : Ind Airport ; -fun EastonStateWAAirport : Ind Airport ; + fun EastonStateWAAirport : Ind Airport ; -fun EbadonAirport : Ind Airport ; + fun EbadonAirport : Ind Airport ; -fun EbolowaAirport : Ind Airport ; + fun EbolowaAirport : Ind Airport ; -fun EchucaNewSouthWalesAirport : Ind Airport ; + fun EchucaNewSouthWalesAirport : Ind Airport ; -fun EdDabbaAirport : Ind Airport ; + fun EdDabbaAirport : Ind Airport ; -fun EdayAirport : Ind Airport ; + fun EdayAirport : Ind Airport ; -fun EdentonMunicipalNCAirport : Ind Airport ; + fun EdentonMunicipalNCAirport : Ind Airport ; -fun EdinburghScotlandAirport : Ind Airport ; + fun EdinburghScotlandAirport : Ind Airport ; -fun EdnaBayAKAirport : Ind Airport ; + fun EdnaBayAKAirport : Ind Airport ; -fun EdwardRiverQueenslandAirport : Ind Airport ; + fun EdwardRiverQueenslandAirport : Ind Airport ; -fun EdwardsAirForceBaseCAAirport : Ind Airport ; + fun EdwardsAirForceBaseCAAirport : Ind Airport ; -fun EeideGroningenAirport : Ind Airport ; + fun EeideGroningenAirport : Ind Airport ; -fun EekAKAirport : Ind Airport ; + fun EekAKAirport : Ind Airport ; -fun EfogiAirport : Ind Airport ; + fun EfogiAirport : Ind Airport ; -fun EgedesmindeAirport : Ind Airport ; + fun EgedesmindeAirport : Ind Airport ; -fun EgegikAKAirport : Ind Airport ; + fun EgegikAKAirport : Ind Airport ; -fun EgilsstadirAirport : Ind Airport ; + fun EgilsstadirAirport : Ind Airport ; -fun EglinAirForceAuxiliaryNr3DukeFLAirport : Ind Airport ; + fun EglinAirForceAuxiliaryNr3DukeFLAirport : Ind Airport ; -fun EiaAirport : Ind Airport ; + fun EiaAirport : Ind Airport ; -fun EielsonAirForceBaseAKAirport : Ind Airport ; + fun EielsonAirForceBaseAKAirport : Ind Airport ; -fun EightFathombightAirport : Ind Airport ; + fun EightFathombightAirport : Ind Airport ; -fun EinYahavAirport : Ind Airport ; + fun EinYahavAirport : Ind Airport ; -fun EinasleighQueenslandAirport : Ind Airport ; + fun EinasleighQueenslandAirport : Ind Airport ; -fun EindhovenAirport : Ind Airport ; + fun EindhovenAirport : Ind Airport ; -fun EirunepeAMAirport : Ind Airport ; + fun EirunepeAMAirport : Ind Airport ; -fun EkerekuAirport : Ind Airport ; + fun EkerekuAirport : Ind Airport ; -fun EkibastuzAirport : Ind Airport ; + fun EkibastuzAirport : Ind Airport ; -fun EkukAKAirport : Ind Airport ; + fun EkukAKAirport : Ind Airport ; -fun EkwokAKAirport : Ind Airport ; + fun EkwokAKAirport : Ind Airport ; -fun ElArishAirport : Ind Airport ; + fun ElArishAirport : Ind Airport ; -fun ElBancoAirport : Ind Airport ; + fun ElBancoAirport : Ind Airport ; -fun ElBargeAirport : Ind Airport ; + fun ElBargeAirport : Ind Airport ; -fun ElBolsonAirport : Ind Airport ; + fun ElBolsonAirport : Ind Airport ; -fun ElBormaAirport : Ind Airport ; + fun ElBormaAirport : Ind Airport ; -fun ElCajonCAAirport : Ind Airport ; + fun ElCajonCAAirport : Ind Airport ; -fun ElCampoMetroAirportIncTXAirport : Ind Airport ; + fun ElCampoMetroAirportIncTXAirport : Ind Airport ; -fun ElCharcoAirport : Ind Airport ; + fun ElCharcoAirport : Ind Airport ; -fun ElCipresEnsenadaAirport : Ind Airport ; + fun ElCipresEnsenadaAirport : Ind Airport ; -fun ElDebbaAirport : Ind Airport ; + fun ElDebbaAirport : Ind Airport ; -fun ElDoradoAirport : Ind Airport ; + fun ElDoradoAirport : Ind Airport ; -fun ElEncantoAirport : Ind Airport ; + fun ElEncantoAirport : Ind Airport ; -fun ElFasherAirport : Ind Airport ; + fun ElFasherAirport : Ind Airport ; -fun ElGeneinaAirport : Ind Airport ; + fun ElGeneinaAirport : Ind Airport ; -fun ElGoleaAirport : Ind Airport ; + fun ElGoleaAirport : Ind Airport ; -fun ElMaitenAirport : Ind Airport ; + fun ElMaitenAirport : Ind Airport ; -fun ElMellahAnnabaAirport : Ind Airport ; + fun ElMellahAnnabaAirport : Ind Airport ; -fun ElMinyaAirport : Ind Airport ; + fun ElMinyaAirport : Ind Airport ; -fun ElMonteCAAirport : Ind Airport ; + fun ElMonteCAAirport : Ind Airport ; -fun ElNaranjoAirport : Ind Airport ; + fun ElNaranjoAirport : Ind Airport ; -fun ElObeidAirport : Ind Airport ; + fun ElObeidAirport : Ind Airport ; -fun ElPasoInternationalTXAirport : Ind Airport ; + fun ElPasoInternationalTXAirport : Ind Airport ; -fun ElRealAirport : Ind Airport ; + fun ElRealAirport : Ind Airport ; -fun ElRecreoAirport : Ind Airport ; + fun ElRecreoAirport : Ind Airport ; -fun ElSalvadorAirport : Ind Airport ; + fun ElSalvadorAirport : Ind Airport ; -fun ElYopalAirport : Ind Airport ; + fun ElYopalAirport : Ind Airport ; -fun ElazigAirport : Ind Airport ; + fun ElazigAirport : Ind Airport ; -fun ElbaIslandAirport : Ind Airport ; + fun ElbaIslandAirport : Ind Airport ; -fun ElchoIslandNorthernTerritoryAirport : Ind Airport ; + fun ElchoIslandNorthernTerritoryAirport : Ind Airport ; -fun EldoradoAirport : Ind Airport ; + fun EldoradoAirport : Ind Airport ; -fun EldoradoBogotaAirport : Ind Airport ; + fun EldoradoBogotaAirport : Ind Airport ; -fun EldoretAirport : Ind Airport ; + fun EldoretAirport : Ind Airport ; -fun EldredRockCoastGuardHeliportAKAirport : Ind Airport ; + fun EldredRockCoastGuardHeliportAKAirport : Ind Airport ; -fun ElfinCoveSeaplaneBaseAKAirport : Ind Airport ; + fun ElfinCoveSeaplaneBaseAKAirport : Ind Airport ; -fun ElimAKAirport : Ind Airport ; + fun ElimAKAirport : Ind Airport ; -fun EliptaminAirport : Ind Airport ; + fun EliptaminAirport : Ind Airport ; -fun ElistaKalmykiaAirport : Ind Airport ; + fun ElistaKalmykiaAirport : Ind Airport ; -fun EliyeSpringsAirport : Ind Airport ; + fun EliyeSpringsAirport : Ind Airport ; -fun ElizabethCityCostGuardAirStationMunicipalNCAirport : Ind Airport ; + fun ElizabethCityCostGuardAirStationMunicipalNCAirport : Ind Airport ; -fun ElizabethFieldNYAirport : Ind Airport ; + fun ElizabethFieldNYAirport : Ind Airport ; -fun ElkCityMunicipalOKAirport : Ind Airport ; + fun ElkCityMunicipalOKAirport : Ind Airport ; -fun ElkedraNorthernTerritoryAirport : Ind Airport ; + fun ElkedraNorthernTerritoryAirport : Ind Airport ; -fun ElkhartMortonCountyKSAirport : Ind Airport ; + fun ElkhartMortonCountyKSAirport : Ind Airport ; -fun ElkhartMunicipalINAirport : Ind Airport ; + fun ElkhartMunicipalINAirport : Ind Airport ; -fun ElkinsRandolphCountyJenningsRandolphFieldWVAirport : Ind Airport ; + fun ElkinsRandolphCountyJenningsRandolphFieldWVAirport : Ind Airport ; -fun ElkoMunicipalAirportJCHarrisFieldNVAirport : Ind Airport ; + fun ElkoMunicipalAirportJCHarrisFieldNVAirport : Ind Airport ; -fun EllAirport : Ind Airport ; + fun EllAirport : Ind Airport ; -fun EllamarSeaplaneBaseAKAirport : Ind Airport ; + fun EllamarSeaplaneBaseAKAirport : Ind Airport ; -fun EllenChurchFieldIAAirport : Ind Airport ; + fun EllenChurchFieldIAAirport : Ind Airport ; -fun EllingtonFieldTXAirport : Ind Airport ; + fun EllingtonFieldTXAirport : Ind Airport ; -fun EllisrasAirport : Ind Airport ; + fun EllisrasAirport : Ind Airport ; -fun ElmasSardiniaAirport : Ind Airport ; + fun ElmasSardiniaAirport : Ind Airport ; -fun ElmendorfAirForceBaseAKAirport : Ind Airport ; + fun ElmendorfAirForceBaseAKAirport : Ind Airport ; -fun ElmiraCorningRegionalNYAirport : Ind Airport ; + fun ElmiraCorningRegionalNYAirport : Ind Airport ; -fun ElorzaAirport : Ind Airport ; + fun ElorzaAirport : Ind Airport ; -fun EltariKupangAirport : Ind Airport ; + fun EltariKupangAirport : Ind Airport ; -fun EltonHensleyMemorialMOAirport : Ind Airport ; + fun EltonHensleyMemorialMOAirport : Ind Airport ; -fun ElyAirportYellandFieldNVAirport : Ind Airport ; + fun ElyAirportYellandFieldNVAirport : Ind Airport ; -fun EmaeAirport : Ind Airport ; + fun EmaeAirport : Ind Airport ; -fun EmbarcaderoCAAirport : Ind Airport ; + fun EmbarcaderoCAAirport : Ind Airport ; -fun EmbessaAirport : Ind Airport ; + fun EmbessaAirport : Ind Airport ; -fun EmdenAirport : Ind Airport ; + fun EmdenAirport : Ind Airport ; -fun EmeraldQueenslandAirport : Ind Airport ; + fun EmeraldQueenslandAirport : Ind Airport ; -fun EmeryvilleCAAirport : Ind Airport ; + fun EmeryvilleCAAirport : Ind Airport ; -fun EmirauAirport : Ind Airport ; + fun EmirauAirport : Ind Airport ; -fun EmmetsburgMunicipalIAAirport : Ind Airport ; + fun EmmetsburgMunicipalIAAirport : Ind Airport ; -fun EmmonakAKAirport : Ind Airport ; + fun EmmonakAKAirport : Ind Airport ; -fun EmoONAirport : Ind Airport ; + fun EmoONAirport : Ind Airport ; -fun EmpangeniAirport : Ind Airport ; + fun EmpangeniAirport : Ind Airport ; -fun EmporiaMunicipalKSAirport : Ind Airport ; + fun EmporiaMunicipalKSAirport : Ind Airport ; -fun EmporiaMunicipalVAAirport : Ind Airport ; + fun EmporiaMunicipalVAAirport : Ind Airport ; -fun EnarotaliAirport : Ind Airport ; + fun EnarotaliAirport : Ind Airport ; -fun EncarnacionAirport : Ind Airport ; + fun EncarnacionAirport : Ind Airport ; -fun EndeAirport : Ind Airport ; + fun EndeAirport : Ind Airport ; -fun EneabbaWesternAustraliaAirport : Ind Airport ; + fun EneabbaWesternAustraliaAirport : Ind Airport ; -fun EngatiAirport : Ind Airport ; + fun EngatiAirport : Ind Airport ; -fun EnglishBayAKAirport : Ind Airport ; + fun EnglishBayAKAirport : Ind Airport ; -fun EnisejskAirport : Ind Airport ; + fun EnisejskAirport : Ind Airport ; -fun EnitewokAirport : Ind Airport ; + fun EnitewokAirport : Ind Airport ; -fun EnontekioEnontekioeAirport : Ind Airport ; + fun EnontekioEnontekioeAirport : Ind Airport ; -fun EnschedeAirport : Ind Airport ; + fun EnschedeAirport : Ind Airport ; -fun EnshiAirport : Ind Airport ; + fun EnshiAirport : Ind Airport ; -fun EnterpriseMunicipalALAirport : Ind Airport ; + fun EnterpriseMunicipalALAirport : Ind Airport ; -fun EnuguAirport : Ind Airport ; + fun EnuguAirport : Ind Airport ; -fun EpenaAirport : Ind Airport ; + fun EpenaAirport : Ind Airport ; -fun EphrataMunicipalWAAirport : Ind Airport ; + fun EphrataMunicipalWAAirport : Ind Airport ; -fun EpiAirport : Ind Airport ; + fun EpiAirport : Ind Airport ; -fun EpinalAirport : Ind Airport ; + fun EpinalAirport : Ind Airport ; -fun EpiskopiAirport : Ind Airport ; + fun EpiskopiAirport : Ind Airport ; -fun ErandiqueAirport : Ind Airport ; + fun ErandiqueAirport : Ind Airport ; -fun EraveAirport : Ind Airport ; + fun EraveAirport : Ind Airport ; -fun ErcanAirport : Ind Airport ; + fun ErcanAirport : Ind Airport ; -fun ErechimRSAirport : Ind Airport ; + fun ErechimRSAirport : Ind Airport ; -fun ErfurtAirport : Ind Airport ; + fun ErfurtAirport : Ind Airport ; -fun ErhacAirport : Ind Airport ; + fun ErhacAirport : Ind Airport ; -fun ErieInternationalPAAirport : Ind Airport ; + fun ErieInternationalPAAirport : Ind Airport ; -fun ErigavoAirport : Ind Airport ; + fun ErigavoAirport : Ind Airport ; -fun ErldundaNorthernTerritoryAirport : Ind Airport ; + fun ErldundaNorthernTerritoryAirport : Ind Airport ; -fun ErnabellaSouthAustraliaAirport : Ind Airport ; + fun ErnabellaSouthAustraliaAirport : Ind Airport ; -fun ErnestoCortissozBarranquillaAirport : Ind Airport ; + fun ErnestoCortissozBarranquillaAirport : Ind Airport ; -fun EromangaQueenslandAirport : Ind Airport ; + fun EromangaQueenslandAirport : Ind Airport ; -fun ErosWindhoekAirport : Ind Airport ; + fun ErosWindhoekAirport : Ind Airport ; -fun ErrachidiaAirport : Ind Airport ; + fun ErrachidiaAirport : Ind Airport ; -fun ErrolNHAirport : Ind Airport ; + fun ErrolNHAirport : Ind Airport ; -fun ErumeAirport : Ind Airport ; + fun ErumeAirport : Ind Airport ; -fun ErzincanAirport : Ind Airport ; + fun ErzincanAirport : Ind Airport ; -fun ErzurumAirport : Ind Airport ; + fun ErzurumAirport : Ind Airport ; -fun EsaAlaAirport : Ind Airport ; + fun EsaAlaAirport : Ind Airport ; -fun EsbjergAirport : Ind Airport ; + fun EsbjergAirport : Ind Airport ; -fun EsenbogaAnkaraAirport : Ind Airport ; + fun EsenbogaAnkaraAirport : Ind Airport ; -fun EskilstunaAirport : Ind Airport ; + fun EskilstunaAirport : Ind Airport ; -fun EskisehirAirport : Ind Airport ; + fun EskisehirAirport : Ind Airport ; -fun EsperadinhaBravaAirport : Ind Airport ; + fun EsperadinhaBravaAirport : Ind Airport ; -fun EsperanceWesternAustraliaAirport : Ind Airport ; + fun EsperanceWesternAustraliaAirport : Ind Airport ; -fun EspinosaMGAirport : Ind Airport ; + fun EspinosaMGAirport : Ind Airport ; -fun EsquelAirport : Ind Airport ; + fun EsquelAirport : Ind Airport ; -fun EssenAirport : Ind Airport ; + fun EssenAirport : Ind Airport ; -fun EssexCountyNJAirport : Ind Airport ; + fun EssexCountyNJAirport : Ind Airport ; -fun EsseyNancyAirport : Ind Airport ; + fun EsseyNancyAirport : Ind Airport ; -fun EsthervilleMunicipalIAAirport : Ind Airport ; + fun EsthervilleMunicipalIAAirport : Ind Airport ; -fun EtadunnaSouthAustraliaAirport : Ind Airport ; + fun EtadunnaSouthAustraliaAirport : Ind Airport ; -fun EuaAirport : Ind Airport ; + fun EuaAirport : Ind Airport ; -fun EuclaWesternAustraliaAirport : Ind Airport ; + fun EuclaWesternAustraliaAirport : Ind Airport ; -fun EurekaNVAirport : Ind Airport ; + fun EurekaNVAirport : Ind Airport ; -fun EuroBaselMulhouseAirport : Ind Airport ; + fun EuroBaselMulhouseAirport : Ind Airport ; -fun EvaDownsNorthernTerritoryAirport : Ind Airport ; + fun EvaDownsNorthernTerritoryAirport : Ind Airport ; -fun EvadaleLandingStripTXAirport : Ind Airport ; + fun EvadaleLandingStripTXAirport : Ind Airport ; -fun EvansHeadNewSouthWalesAirport : Ind Airport ; + fun EvansHeadNewSouthWalesAirport : Ind Airport ; -fun EvanstonUintaCountyBurnsFieldWYAirport : Ind Airport ; + fun EvanstonUintaCountyBurnsFieldWYAirport : Ind Airport ; -fun EvansvilleRegionalINAirport : Ind Airport ; + fun EvansvilleRegionalINAirport : Ind Airport ; -fun EvelethVirginiaMunicipalMNAirport : Ind Airport ; + fun EvelethVirginiaMunicipalMNAirport : Ind Airport ; -fun EvenesAirport : Ind Airport ; + fun EvenesAirport : Ind Airport ; -fun EvreuxAirport : Ind Airport ; + fun EvreuxAirport : Ind Airport ; -fun EwerAirport : Ind Airport ; + fun EwerAirport : Ind Airport ; -fun EwoAirport : Ind Airport ; + fun EwoAirport : Ind Airport ; -fun ExcursionInletSeaplaneBaseAKAirport : Ind Airport ; + fun ExcursionInletSeaplaneBaseAKAirport : Ind Airport ; -fun ExeterAirport : Ind Airport ; + fun ExeterAirport : Ind Airport ; -fun ExmouthAirport : Ind Airport ; + fun ExmouthAirport : Ind Airport ; -fun FDRooseveltStEustathiusAirport : Ind Airport ; + fun FDRooseveltStEustathiusAirport : Ind Airport ; -fun FaatteAirport : Ind Airport ; + fun FaatteAirport : Ind Airport ; -fun FabaliSiApiaAirport : Ind Airport ; + fun FabaliSiApiaAirport : Ind Airport ; -fun FadaNgourmaAirport : Ind Airport ; + fun FadaNgourmaAirport : Ind Airport ; -fun FagurholsmyriAirport : Ind Airport ; + fun FagurholsmyriAirport : Ind Airport ; -fun FairIsleAirport : Ind Airport ; + fun FairIsleAirport : Ind Airport ; -fun FairbanksInternationalAKAirport : Ind Airport ; + fun FairbanksInternationalAKAirport : Ind Airport ; -fun FairburyMunicipalNEAirport : Ind Airport ; + fun FairburyMunicipalNEAirport : Ind Airport ; -fun FairfieldCountySCAirport : Ind Airport ; + fun FairfieldCountySCAirport : Ind Airport ; -fun FairfieldMunicipalIAAirport : Ind Airport ; + fun FairfieldMunicipalIAAirport : Ind Airport ; -fun FairfieldMunicipalILAirport : Ind Airport ; + fun FairfieldMunicipalILAirport : Ind Airport ; -fun FairfordRAFStationEnglandAirport : Ind Airport ; + fun FairfordRAFStationEnglandAirport : Ind Airport ; -fun FairmontMunicipalMNAirport : Ind Airport ; + fun FairmontMunicipalMNAirport : Ind Airport ; -fun FairmontStateAirfieldNEAirport : Ind Airport ; + fun FairmontStateAirfieldNEAirport : Ind Airport ; -fun FaizabadAirport : Ind Airport ; + fun FaizabadAirport : Ind Airport ; -fun FakahinaAirport : Ind Airport ; + fun FakahinaAirport : Ind Airport ; -fun FakaravaSocietyIslandsAirport : Ind Airport ; + fun FakaravaSocietyIslandsAirport : Ind Airport ; -fun FakfakFakFakNewGuineaAirport : Ind Airport ; + fun FakfakFakFakNewGuineaAirport : Ind Airport ; -fun FalconStateParkTXAirport : Ind Airport ; + fun FalconStateParkTXAirport : Ind Airport ; -fun FaleoloApiaAirport : Ind Airport ; + fun FaleoloApiaAirport : Ind Airport ; -fun FallonMunicipalNVAirport : Ind Airport ; + fun FallonMunicipalNVAirport : Ind Airport ; -fun FallsBayAKAirport : Ind Airport ; + fun FallsBayAKAirport : Ind Airport ; -fun FallsCreekAirport : Ind Airport ; + fun FallsCreekAirport : Ind Airport ; -fun FallsInternationalMNAirport : Ind Airport ; + fun FallsInternationalMNAirport : Ind Airport ; -fun FalseIslandSeaplaneBaseAKAirport : Ind Airport ; + fun FalseIslandSeaplaneBaseAKAirport : Ind Airport ; -fun FalsePassAKAirport : Ind Airport ; + fun FalsePassAKAirport : Ind Airport ; -fun FaneAirport : Ind Airport ; + fun FaneAirport : Ind Airport ; -fun FangatauAirport : Ind Airport ; + fun FangatauAirport : Ind Airport ; -fun FanningFieldIDAirport : Ind Airport ; + fun FanningFieldIDAirport : Ind Airport ; -fun FarahAirport : Ind Airport ; + fun FarahAirport : Ind Airport ; -fun FaranahAirport : Ind Airport ; + fun FaranahAirport : Ind Airport ; -fun FarewellAKAirport : Ind Airport ; + fun FarewellAKAirport : Ind Airport ; -fun FarghonaFerganaFarghonaAirport : Ind Airport ; + fun FarghonaFerganaFarghonaAirport : Ind Airport ; -fun FaribaultMunicipalMNAirport : Ind Airport ; + fun FaribaultMunicipalMNAirport : Ind Airport ; -fun FariopurAirport : Ind Airport ; + fun FariopurAirport : Ind Airport ; -fun FarmingtonRegionalMOAirport : Ind Airport ; + fun FarmingtonRegionalMOAirport : Ind Airport ; -fun FarmvilleMunicipalVAAirport : Ind Airport ; + fun FarmvilleMunicipalVAAirport : Ind Airport ; -fun FarnboroughEnglandAirport : Ind Airport ; + fun FarnboroughEnglandAirport : Ind Airport ; -fun FaroAirport : Ind Airport ; + fun FaroAirport : Ind Airport ; -fun FarranforeAirport : Ind Airport ; + fun FarranforeAirport : Ind Airport ; -fun FaskrudsfjordurAirport : Ind Airport ; + fun FaskrudsfjordurAirport : Ind Airport ; -fun FayaAirport : Ind Airport ; + fun FayaAirport : Ind Airport ; -fun FayettevilleMunicipalTNAirport : Ind Airport ; + fun FayettevilleMunicipalTNAirport : Ind Airport ; -fun FayettevilleRegionalAirportGrannisFieldNCAirport : Ind Airport ; + fun FayettevilleRegionalAirportGrannisFieldNCAirport : Ind Airport ; -fun FderikAirport : Ind Airport ; + fun FderikAirport : Ind Airport ; -fun FelkerArmyAirFieldVAAirport : Ind Airport ; + fun FelkerArmyAirFieldVAAirport : Ind Airport ; -fun FeraIslandAirport : Ind Airport ; + fun FeraIslandAirport : Ind Airport ; -fun FeraminAirport : Ind Airport ; + fun FeraminAirport : Ind Airport ; -fun FergusFallsMunicipalAirportEinarMickelsonFieldMNAirport : Ind Airport ; + fun FergusFallsMunicipalAirportEinarMickelsonFieldMNAirport : Ind Airport ; -fun FergusonsGulfAirport : Ind Airport ; + fun FergusonsGulfAirport : Ind Airport ; -fun FerihegyiBudapestAirport : Ind Airport ; + fun FerihegyiBudapestAirport : Ind Airport ; -fun FerkessedougouAirport : Ind Airport ; + fun FerkessedougouAirport : Ind Airport ; -fun FernandodeNoronhaFNAirport : Ind Airport ; + fun FernandodeNoronhaFNAirport : Ind Airport ; -fun FertiliaSardiniaAirport : Ind Airport ; + fun FertiliaSardiniaAirport : Ind Airport ; -fun FestusMemorialMOAirport : Ind Airport ; + fun FestusMemorialMOAirport : Ind Airport ; -fun FetlarIslandAirport : Ind Airport ; + fun FetlarIslandAirport : Ind Airport ; -fun FicksburgAirport : Ind Airport ; + fun FicksburgAirport : Ind Airport ; -fun FigariCorsicaAirport : Ind Airport ; + fun FigariCorsicaAirport : Ind Airport ; -fun FiladelfiaAirport : Ind Airport ; + fun FiladelfiaAirport : Ind Airport ; -fun FillmoreUTAirport : Ind Airport ; + fun FillmoreUTAirport : Ind Airport ; -fun FiltonAirport : Ind Airport ; + fun FiltonAirport : Ind Airport ; -fun FinCreekAKAirport : Ind Airport ; + fun FinCreekAKAirport : Ind Airport ; -fun FinchaAirport : Ind Airport ; + fun FinchaAirport : Ind Airport ; -fun FindlayOHAirport : Ind Airport ; + fun FindlayOHAirport : Ind Airport ; -fun FinkeNorthernTerritoryAirport : Ind Airport ; + fun FinkeNorthernTerritoryAirport : Ind Airport ; -fun FinleyNewSouthWalesAirport : Ind Airport ; + fun FinleyNewSouthWalesAirport : Ind Airport ; -fun FinschhafenAirport : Ind Airport ; + fun FinschhafenAirport : Ind Airport ; -fun FireCoveAKAirport : Ind Airport ; + fun FireCoveAKAirport : Ind Airport ; -fun FirstFlightNCAirport : Ind Airport ; + fun FirstFlightNCAirport : Ind Airport ; -fun FitchburgMunicipalMAAirport : Ind Airport ; + fun FitchburgMunicipalMAAirport : Ind Airport ; -fun FitiutaAirport : Ind Airport ; + fun FitiutaAirport : Ind Airport ; -fun FitiutaFitiutaVillageAirport : Ind Airport ; + fun FitiutaFitiutaVillageAirport : Ind Airport ; -fun FitzgeraldMunicipalGAAirport : Ind Airport ; + fun FitzgeraldMunicipalGAAirport : Ind Airport ; -fun FitzroyCrossingWesternAustraliaAirport : Ind Airport ; + fun FitzroyCrossingWesternAustraliaAirport : Ind Airport ; -fun FiveFingersCoastGuardHeliportAKAirport : Ind Airport ; + fun FiveFingersCoastGuardHeliportAKAirport : Ind Airport ; -fun FiveMileAKAirport : Ind Airport ; + fun FiveMileAKAirport : Ind Airport ; -fun FlagstaffPulliamAZAirport : Ind Airport ; + fun FlagstaffPulliamAZAirport : Ind Airport ; -fun FlamingoBonaireKralendijkAirport : Ind Airport ; + fun FlamingoBonaireKralendijkAirport : Ind Airport ; -fun FlatAKAirport : Ind Airport ; + fun FlatAKAirport : Ind Airport ; -fun FlaxmanAKAirport : Ind Airport ; + fun FlaxmanAKAirport : Ind Airport ; -fun FlemingMasonKYAirport : Ind Airport ; + fun FlemingMasonKYAirport : Ind Airport ; -fun FlensburgAirport : Ind Airport ; + fun FlensburgAirport : Ind Airport ; -fun FleslandBergenAirport : Ind Airport ; + fun FleslandBergenAirport : Ind Airport ; -fun FletcherFieldMSAirport : Ind Airport ; + fun FletcherFieldMSAirport : Ind Airport ; -fun FlindersIslandTasmaniaAirport : Ind Airport ; + fun FlindersIslandTasmaniaAirport : Ind Airport ; -fun FlorenceRegionalSCAirport : Ind Airport ; + fun FlorenceRegionalSCAirport : Ind Airport ; -fun FlorenciaAirport : Ind Airport ; + fun FlorenciaAirport : Ind Airport ; -fun FloresAirport : Ind Airport ; + fun FloresAirport : Ind Airport ; -fun FlorianoPIAirport : Ind Airport ; + fun FlorianoPIAirport : Ind Airport ; -fun FlorianopolisSCAirport : Ind Airport ; + fun FlorianopolisSCAirport : Ind Airport ; -fun FloroAirport : Ind Airport ; + fun FloroAirport : Ind Airport ; -fun FlottaIsleAirport : Ind Airport ; + fun FlottaIsleAirport : Ind Airport ; -fun FlushingNYAirport : Ind Airport ; + fun FlushingNYAirport : Ind Airport ; -fun FlyingCloudMNAirport : Ind Airport ; + fun FlyingCloudMNAirport : Ind Airport ; -fun FondduLacCountyWIAirport : Ind Airport ; + fun FondduLacCountyWIAirport : Ind Airport ; -fun FontanarossaSicilyAirport : Ind Airport ; + fun FontanarossaSicilyAirport : Ind Airport ; -fun ForbesFieldKSAirport : Ind Airport ; + fun ForbesFieldKSAirport : Ind Airport ; -fun ForbesNewSouthWalesAirport : Ind Airport ; + fun ForbesNewSouthWalesAirport : Ind Airport ; -fun FordMIAirport : Ind Airport ; + fun FordMIAirport : Ind Airport ; -fun ForestCityMunicipalIAAirport : Ind Airport ; + fun ForestCityMunicipalIAAirport : Ind Airport ; -fun ForestParkGAAirport : Ind Airport ; + fun ForestParkGAAirport : Ind Airport ; -fun ForliAirport : Ind Airport ; + fun ForliAirport : Ind Airport ; -fun FormosaAirport : Ind Airport ; + fun FormosaAirport : Ind Airport ; -fun FornebuOsloAirport : Ind Airport ; + fun FornebuOsloAirport : Ind Airport ; -fun ForresAirport : Ind Airport ; + fun ForresAirport : Ind Airport ; -fun ForrestCityMunicipalARAirport : Ind Airport ; + fun ForrestCityMunicipalARAirport : Ind Airport ; -fun ForrestWesternAustraliaAirport : Ind Airport ; + fun ForrestWesternAustraliaAirport : Ind Airport ; -fun ForsterNewSouthWalesAirport : Ind Airport ; + fun ForsterNewSouthWalesAirport : Ind Airport ; -fun FortBraggCAAirport : Ind Airport ; + fun FortBraggCAAirport : Ind Airport ; -fun FortBridgerWYAirport : Ind Airport ; + fun FortBridgerWYAirport : Ind Airport ; -fun FortCollinsLovelandMunicipalCOAirport : Ind Airport ; + fun FortCollinsLovelandMunicipalCOAirport : Ind Airport ; -fun FortDauphinAirport : Ind Airport ; + fun FortDauphinAirport : Ind Airport ; -fun FortDodgeRegionalIAAirport : Ind Airport ; + fun FortDodgeRegionalIAAirport : Ind Airport ; -fun FortLauderdaleExecutiveFLAirport : Ind Airport ; + fun FortLauderdaleExecutiveFLAirport : Ind Airport ; -fun FortLauderdaleHollywoodInternationalFLAirport : Ind Airport ; + fun FortLauderdaleHollywoodInternationalFLAirport : Ind Airport ; -fun FortLeenr1headquartersHeliportVAAirport : Ind Airport ; + fun FortLeenr1headquartersHeliportVAAirport : Ind Airport ; -fun FortMadisonMunicipalIAAirport : Ind Airport ; + fun FortMadisonMunicipalIAAirport : Ind Airport ; -fun FortRoussetAirport : Ind Airport ; + fun FortRoussetAirport : Ind Airport ; -fun FortScottMunicipalKSAirport : Ind Airport ; + fun FortScottMunicipalKSAirport : Ind Airport ; -fun FortSheridanILAirport : Ind Airport ; + fun FortSheridanILAirport : Ind Airport ; -fun FortSmithMunicipalARAirport : Ind Airport ; + fun FortSmithMunicipalARAirport : Ind Airport ; -fun FortStocktonPecosCountyTXAirport : Ind Airport ; + fun FortStocktonPecosCountyTXAirport : Ind Airport ; -fun FortSumnerMunicipalNMAirport : Ind Airport ; + fun FortSumnerMunicipalNMAirport : Ind Airport ; -fun FortWayneInternationalINAirport : Ind Airport ; + fun FortWayneInternationalINAirport : Ind Airport ; -fun FortWilliamAirport : Ind Airport ; + fun FortWilliamAirport : Ind Airport ; -fun FortWolterArmyAirFieldTXAirport : Ind Airport ; + fun FortWolterArmyAirFieldTXAirport : Ind Airport ; -fun FortWorthAllianceTXAirport : Ind Airport ; + fun FortWorthAllianceTXAirport : Ind Airport ; -fun FortWorthMeachamTXAirport : Ind Airport ; + fun FortWorthMeachamTXAirport : Ind Airport ; -fun FortWorthSpinksTXAirport : Ind Airport ; + fun FortWorthSpinksTXAirport : Ind Airport ; -fun FortYukonAKAirport : Ind Airport ; + fun FortYukonAKAirport : Ind Airport ; -fun FortalezaCEAirport : Ind Airport ; + fun FortalezaCEAirport : Ind Airport ; -fun FortunaLedgeAKAirport : Ind Airport ; + fun FortunaLedgeAKAirport : Ind Airport ; -fun FossilDownsWesternAustraliaAirport : Ind Airport ; + fun FossilDownsWesternAustraliaAirport : Ind Airport ; -fun FosstonMunicipalMNAirport : Ind Airport ; + fun FosstonMunicipalMNAirport : Ind Airport ; -fun FostoriaMetroOHAirport : Ind Airport ; + fun FostoriaMetroOHAirport : Ind Airport ; -fun FougamouAirport : Ind Airport ; + fun FougamouAirport : Ind Airport ; -fun FoulaShetlandIslandsAirport : Ind Airport ; + fun FoulaShetlandIslandsAirport : Ind Airport ; -fun FoumbanAirport : Ind Airport ; + fun FoumbanAirport : Ind Airport ; -fun FourCornersRegionalNMAirport : Ind Airport ; + fun FourCornersRegionalNMAirport : Ind Airport ; -fun FoxAKAirport : Ind Airport ; + fun FoxAKAirport : Ind Airport ; -fun FoxGlacierAirport : Ind Airport ; + fun FoxGlacierAirport : Ind Airport ; -fun FoyaAirport : Ind Airport ; + fun FoyaAirport : Ind Airport ; -fun FrancaSPAirport : Ind Airport ; + fun FrancaSPAirport : Ind Airport ; -fun FrancisEWarrenAirForceBaseWYAirport : Ind Airport ; + fun FrancisEWarrenAirForceBaseWYAirport : Ind Airport ; -fun FranciscoBangoyInternationalDavaoCityAirport : Ind Airport ; + fun FranciscoBangoyInternationalDavaoCityAirport : Ind Airport ; -fun FranciscoBeltraoPRAirport : Ind Airport ; + fun FranciscoBeltraoPRAirport : Ind Airport ; -fun FrancistownAirport : Ind Airport ; + fun FrancistownAirport : Ind Airport ; -fun FrankfortMunicipalINAirport : Ind Airport ; + fun FrankfortMunicipalINAirport : Ind Airport ; -fun FranklinCountyStateVTAirport : Ind Airport ; + fun FranklinCountyStateVTAirport : Ind Airport ; -fun FranklinMunicipalJohnBeverlyRoseVAAirport : Ind Airport ; + fun FranklinMunicipalJohnBeverlyRoseVAAirport : Ind Airport ; -fun FransKaisiepoBiakAirport : Ind Airport ; + fun FransKaisiepoBiakAirport : Ind Airport ; -fun FrederickMunicipalMDAirport : Ind Airport ; + fun FrederickMunicipalMDAirport : Ind Airport ; -fun FrederickMunicipalOKAirport : Ind Airport ; + fun FrederickMunicipalOKAirport : Ind Airport ; -fun FrederikshabAirport : Ind Airport ; + fun FrederikshabAirport : Ind Airport ; -fun FreeportInternationalGrandBahamaAirport : Ind Airport ; + fun FreeportInternationalGrandBahamaAirport : Ind Airport ; -fun FregateIslandAirport : Ind Airport ; + fun FregateIslandAirport : Ind Airport ; -fun FrejusAirport : Ind Airport ; + fun FrejusAirport : Ind Airport ; -fun FremantleWesternAustraliaAirport : Ind Airport ; + fun FremantleWesternAustraliaAirport : Ind Airport ; -fun FremontCountyCOAirport : Ind Airport ; + fun FremontCountyCOAirport : Ind Airport ; -fun FremontMunicipalNEAirport : Ind Airport ; + fun FremontMunicipalNEAirport : Ind Airport ; -fun FrenchLickMunicipalINAirport : Ind Airport ; + fun FrenchLickMunicipalINAirport : Ind Airport ; -fun FreshWaterBayAKAirport : Ind Airport ; + fun FreshWaterBayAKAirport : Ind Airport ; -fun FresnoAirTerminalCAAirport : Ind Airport ; + fun FresnoAirTerminalCAAirport : Ind Airport ; -fun FresnoChandlerDowntownCAAirport : Ind Airport ; + fun FresnoChandlerDowntownCAAirport : Ind Airport ; -fun FriaAirport : Ind Airport ; + fun FriaAirport : Ind Airport ; -fun FridayHarborWAAirport : Ind Airport ; + fun FridayHarborWAAirport : Ind Airport ; -fun FritzlarAirBaseFritzlarAirport : Ind Airport ; + fun FritzlarAirBaseFritzlarAirport : Ind Airport ; -fun FrontRangeCOAirport : Ind Airport ; + fun FrontRangeCOAirport : Ind Airport ; -fun FrontRoyalWarrenCountyVAAirport : Ind Airport ; + fun FrontRoyalWarrenCountyVAAirport : Ind Airport ; -fun FuerstenfeldbruckAirBaseFuerstenfeldbruckAirport : Ind Airport ; + fun FuerstenfeldbruckAirBaseFuerstenfeldbruckAirport : Ind Airport ; -fun FuerteventuraPuertodelRosarioCanaryIslandsAirport : Ind Airport ; + fun FuerteventuraPuertodelRosarioCanaryIslandsAirport : Ind Airport ; -fun FuhlsbuttelHamburgAirport : Ind Airport ; + fun FuhlsbuttelHamburgAirport : Ind Airport ; -fun FukueAirport : Ind Airport ; + fun FukueAirport : Ind Airport ; -fun FukuiAirport : Ind Airport ; + fun FukuiAirport : Ind Airport ; -fun FukushimaAirport : Ind Airport ; + fun FukushimaAirport : Ind Airport ; -fun FullebornAirport : Ind Airport ; + fun FullebornAirport : Ind Airport ; -fun FullertonMunicipalCAAirport : Ind Airport ; + fun FullertonMunicipalCAAirport : Ind Airport ; -fun FultonCountyAirportBrownFieldGAAirport : Ind Airport ; + fun FultonCountyAirportBrownFieldGAAirport : Ind Airport ; -fun FumaAirport : Ind Airport ; + fun FumaAirport : Ind Airport ; -fun FunafutiAirport : Ind Airport ; + fun FunafutiAirport : Ind Airport ; -fun FunchalMadeiraAirport : Ind Airport ; + fun FunchalMadeiraAirport : Ind Airport ; -fun FundacionAirport : Ind Airport ; + fun FundacionAirport : Ind Airport ; -fun FunterBaySeaplaneBaseAKAirport : Ind Airport ; + fun FunterBaySeaplaneBaseAKAirport : Ind Airport ; -fun FuoshanAirport : Ind Airport ; + fun FuoshanAirport : Ind Airport ; -fun FutaleufuAirport : Ind Airport ; + fun FutaleufuAirport : Ind Airport ; -fun FutunaAirport : Ind Airport ; + fun FutunaAirport : Ind Airport ; -fun FutunaIslandAirport : Ind Airport ; + fun FutunaIslandAirport : Ind Airport ; -fun FuyangAirport : Ind Airport ; + fun FuyangAirport : Ind Airport ; -fun FuyunAirport : Ind Airport ; + fun FuyunAirport : Ind Airport ; -fun FuzhouAirport : Ind Airport ; + fun FuzhouAirport : Ind Airport ; -fun GabbsNVAirport : Ind Airport ; + fun GabbsNVAirport : Ind Airport ; -fun GabesAirport : Ind Airport ; + fun GabesAirport : Ind Airport ; -fun GadsdenMunicipalALAirport : Ind Airport ; + fun GadsdenMunicipalALAirport : Ind Airport ; -fun GafsaAirport : Ind Airport ; + fun GafsaAirport : Ind Airport ; -fun GagIslandAirport : Ind Airport ; + fun GagIslandAirport : Ind Airport ; -fun GageOKAirport : Ind Airport ; + fun GageOKAirport : Ind Airport ; -fun GagnoaAirport : Ind Airport ; + fun GagnoaAirport : Ind Airport ; -fun GainesvilleMunicipalTXAirport : Ind Airport ; + fun GainesvilleMunicipalTXAirport : Ind Airport ; -fun GainesvilleRegionalFLAirport : Ind Airport ; + fun GainesvilleRegionalFLAirport : Ind Airport ; -fun GakonaAKAirport : Ind Airport ; + fun GakonaAKAirport : Ind Airport ; -fun GalOyaAirport : Ind Airport ; + fun GalOyaAirport : Ind Airport ; -fun GalapagosIslandsGalapagosAirport : Ind Airport ; + fun GalapagosIslandsGalapagosAirport : Ind Airport ; -fun GalbraithLakeAKAirport : Ind Airport ; + fun GalbraithLakeAKAirport : Ind Airport ; -fun GalcaioAirport : Ind Airport ; + fun GalcaioAirport : Ind Airport ; -fun GalelaAirport : Ind Airport ; + fun GalelaAirport : Ind Airport ; -fun GalenaAKAirport : Ind Airport ; + fun GalenaAKAirport : Ind Airport ; -fun GalesburgMunicipalILAirport : Ind Airport ; + fun GalesburgMunicipalILAirport : Ind Airport ; -fun GalionMunicipalOHAirport : Ind Airport ; + fun GalionMunicipalOHAirport : Ind Airport ; -fun GalkayoAirport : Ind Airport ; + fun GalkayoAirport : Ind Airport ; -fun GallatinFieldMTAirport : Ind Airport ; + fun GallatinFieldMTAirport : Ind Airport ; -fun GalleriaHeliportGAAirport : Ind Airport ; + fun GalleriaHeliportGAAirport : Ind Airport ; -fun GallivareAirport : Ind Airport ; + fun GallivareAirport : Ind Airport ; -fun GallupMunicipalNMAirport : Ind Airport ; + fun GallupMunicipalNMAirport : Ind Airport ; -fun GalwayAirport : Ind Airport ; + fun GalwayAirport : Ind Airport ; -fun GamarraAirport : Ind Airport ; + fun GamarraAirport : Ind Airport ; -fun GambaAirport : Ind Airport ; + fun GambaAirport : Ind Airport ; -fun GambelaAirport : Ind Airport ; + fun GambelaAirport : Ind Airport ; -fun GambellAKAirport : Ind Airport ; + fun GambellAKAirport : Ind Airport ; -fun GambomaAirport : Ind Airport ; + fun GambomaAirport : Ind Airport ; -fun GamboolaQueenslandAirport : Ind Airport ; + fun GamboolaQueenslandAirport : Ind Airport ; -fun GanIslandAirport : Ind Airport ; + fun GanIslandAirport : Ind Airport ; -fun GandajikaAirport : Ind Airport ; + fun GandajikaAirport : Ind Airport ; -fun GanesCreekAKAirport : Ind Airport ; + fun GanesCreekAKAirport : Ind Airport ; -fun GangawAirport : Ind Airport ; + fun GangawAirport : Ind Airport ; -fun GanzhouAirport : Ind Airport ; + fun GanzhouAirport : Ind Airport ; -fun GaoAirport : Ind Airport ; + fun GaoAirport : Ind Airport ; -fun GapAirport : Ind Airport ; + fun GapAirport : Ind Airport ; -fun GaraDjebiletAirport : Ind Airport ; + fun GaraDjebiletAirport : Ind Airport ; -fun GarachineAirport : Ind Airport ; + fun GarachineAirport : Ind Airport ; -fun GarainaAirport : Ind Airport ; + fun GarainaAirport : Ind Airport ; -fun GarasaAirport : Ind Airport ; + fun GarasaAirport : Ind Airport ; -fun GarbahareyAirport : Ind Airport ; + fun GarbahareyAirport : Ind Airport ; -fun GardeAirport : Ind Airport ; + fun GardeAirport : Ind Airport ; -fun GardenCityRegionalKSAirport : Ind Airport ; + fun GardenCityRegionalKSAirport : Ind Airport ; -fun GardenHillMBAirport : Ind Airport ; + fun GardenHillMBAirport : Ind Airport ; -fun GardenPointNorthernTerritoryAirport : Ind Airport ; + fun GardenPointNorthernTerritoryAirport : Ind Airport ; -fun GardermoenOsloAirport : Ind Airport ; + fun GardermoenOsloAirport : Ind Airport ; -fun GardezAirport : Ind Airport ; + fun GardezAirport : Ind Airport ; -fun GardnerMunicipalMAAirport : Ind Airport ; + fun GardnerMunicipalMAAirport : Ind Airport ; -fun GardoAirport : Ind Airport ; + fun GardoAirport : Ind Airport ; -fun GarissaAirport : Ind Airport ; + fun GarissaAirport : Ind Airport ; -fun GarouaAirport : Ind Airport ; + fun GarouaAirport : Ind Airport ; -fun GarrowLakeAirport : Ind Airport ; + fun GarrowLakeAirport : Ind Airport ; -fun GaruahiAirport : Ind Airport ; + fun GaruahiAirport : Ind Airport ; -fun GaryRegionalINAirport : Ind Airport ; + fun GaryRegionalINAirport : Ind Airport ; -fun GascoyneJunctionWesternAustraliaAirport : Ind Airport ; + fun GascoyneJunctionWesternAustraliaAirport : Ind Airport ; -fun GasmataIslandAirport : Ind Airport ; + fun GasmataIslandAirport : Ind Airport ; -fun GassimAirport : Ind Airport ; + fun GassimAirport : Ind Airport ; -fun GasukeAirport : Ind Airport ; + fun GasukeAirport : Ind Airport ; -fun GatlinburgPigeonForgeTNAirport : Ind Airport ; + fun GatlinburgPigeonForgeTNAirport : Ind Airport ; -fun GavleAirport : Ind Airport ; + fun GavleAirport : Ind Airport ; -fun GayaAirport : Ind Airport ; + fun GayaAirport : Ind Airport ; -fun GayndahQueenslandAirport : Ind Airport ; + fun GayndahQueenslandAirport : Ind Airport ; -fun GaziantepAirport : Ind Airport ; + fun GaziantepAirport : Ind Airport ; -fun GbadoliteAirport : Ind Airport ; + fun GbadoliteAirport : Ind Airport ; -fun GbangbatokAirport : Ind Airport ; + fun GbangbatokAirport : Ind Airport ; -fun GbessiaConakryAirport : Ind Airport ; + fun GbessiaConakryAirport : Ind Airport ; -fun GebeAirport : Ind Airport ; + fun GebeAirport : Ind Airport ; -fun GecitkaleAirport : Ind Airport ; + fun GecitkaleAirport : Ind Airport ; -fun GedarefAirport : Ind Airport ; + fun GedarefAirport : Ind Airport ; -fun GeelongVictoriaAirport : Ind Airport ; + fun GeelongVictoriaAirport : Ind Airport ; -fun GeilenkirchenAirport : Ind Airport ; + fun GeilenkirchenAirport : Ind Airport ; -fun GeiloAirport : Ind Airport ; + fun GeiloAirport : Ind Airport ; -fun GeitaAirport : Ind Airport ; + fun GeitaAirport : Ind Airport ; -fun GeladiAirport : Ind Airport ; + fun GeladiAirport : Ind Airport ; -fun GemanaAirport : Ind Airport ; + fun GemanaAirport : Ind Airport ; -fun GendaWuhaAirport : Ind Airport ; + fun GendaWuhaAirport : Ind Airport ; -fun GeneralEMosconiComodoroRivadaviaAirport : Ind Airport ; + fun GeneralEMosconiComodoroRivadaviaAirport : Ind Airport ; -fun GeneralEdwardLawrenceLoganInternationalMAAirport : Ind Airport ; + fun GeneralEdwardLawrenceLoganInternationalMAAirport : Ind Airport ; -fun GeneralIgnacioPesqueiraHermosilloAirport : Ind Airport ; + fun GeneralIgnacioPesqueiraHermosilloAirport : Ind Airport ; -fun GeneralJoseMariaYanezGuaymasAirport : Ind Airport ; + fun GeneralJoseMariaYanezGuaymasAirport : Ind Airport ; -fun GeneralJuanNAlvarezAcapulcoAirport : Ind Airport ; + fun GeneralJuanNAlvarezAcapulcoAirport : Ind Airport ; -fun GeneralPicoAirport : Ind Airport ; + fun GeneralPicoAirport : Ind Airport ; -fun GeneralRivadeneiraEsmeraldasAirport : Ind Airport ; + fun GeneralRivadeneiraEsmeraldasAirport : Ind Airport ; -fun GeneralRobertoFierroVChihuahuaAirport : Ind Airport ; + fun GeneralRobertoFierroVChihuahuaAirport : Ind Airport ; -fun GeneralRocaAirport : Ind Airport ; + fun GeneralRocaAirport : Ind Airport ; -fun GeneralSantosAirport : Ind Airport ; + fun GeneralSantosAirport : Ind Airport ; -fun GeneveCointrinGenevaAirport : Ind Airport ; + fun GeneveCointrinGenevaAirport : Ind Airport ; -fun GenjemAirport : Ind Airport ; + fun GenjemAirport : Ind Airport ; -fun GentingAirport : Ind Airport ; + fun GentingAirport : Ind Airport ; -fun GeojeHeliportSeoulAirport : Ind Airport ; + fun GeojeHeliportSeoulAirport : Ind Airport ; -fun GeorgeAirport : Ind Airport ; + fun GeorgeAirport : Ind Airport ; -fun GeorgeDownerALAirport : Ind Airport ; + fun GeorgeDownerALAirport : Ind Airport ; -fun GeorgeRCarrMemorialAirFieldLAAirport : Ind Airport ; + fun GeorgeRCarrMemorialAirFieldLAAirport : Ind Airport ; -fun GeorgeTLewisFLAirport : Ind Airport ; + fun GeorgeTLewisFLAirport : Ind Airport ; -fun GeorgeTownExumaAirport : Ind Airport ; + fun GeorgeTownExumaAirport : Ind Airport ; -fun GeorgetownCountySCAirport : Ind Airport ; + fun GeorgetownCountySCAirport : Ind Airport ; -fun GeorgetownQueenslandAirport : Ind Airport ; + fun GeorgetownQueenslandAirport : Ind Airport ; -fun GeraldtonWesternAustraliaAirport : Ind Airport ; + fun GeraldtonWesternAustraliaAirport : Ind Airport ; -fun GeronaCostaBravaGeronaAirport : Ind Airport ; + fun GeronaCostaBravaGeronaAirport : Ind Airport ; -fun GerrardSmithCaymanBracAirport : Ind Airport ; + fun GerrardSmithCaymanBracAirport : Ind Airport ; -fun GettysburgPAAirport : Ind Airport ; + fun GettysburgPAAirport : Ind Airport ; -fun GevaAirport : Ind Airport ; + fun GevaAirport : Ind Airport ; -fun GewoyaAirport : Ind Airport ; + fun GewoyaAirport : Ind Airport ; -fun GhanziAirport : Ind Airport ; + fun GhanziAirport : Ind Airport ; -fun GhatAirport : Ind Airport ; + fun GhatAirport : Ind Airport ; -fun GhazniAirport : Ind Airport ; + fun GhazniAirport : Ind Airport ; -fun GhimbiAirport : Ind Airport ; + fun GhimbiAirport : Ind Airport ; -fun GhinnirAirport : Ind Airport ; + fun GhinnirAirport : Ind Airport ; -fun GibbRiverWesternAustraliaAirport : Ind Airport ; + fun GibbRiverWesternAustraliaAirport : Ind Airport ; -fun GilaBendAirForceAuxiliaryAZAirport : Ind Airport ; + fun GilaBendAirForceAuxiliaryAZAirport : Ind Airport ; -fun GilgalAirport : Ind Airport ; + fun GilgalAirport : Ind Airport ; -fun GilgitAirport : Ind Airport ; + fun GilgitAirport : Ind Airport ; -fun GilletteCampbellCountyWYAirport : Ind Airport ; + fun GilletteCampbellCountyWYAirport : Ind Airport ; -fun GinoLisaFoggiaAirport : Ind Airport ; + fun GinoLisaFoggiaAirport : Ind Airport ; -fun GiradotAirport : Ind Airport ; + fun GiradotAirport : Ind Airport ; -fun GirdwoodAKAirport : Ind Airport ; + fun GirdwoodAKAirport : Ind Airport ; -fun GisborneAirport : Ind Airport ; + fun GisborneAirport : Ind Airport ; -fun GisenyiAirport : Ind Airport ; + fun GisenyiAirport : Ind Airport ; -fun GitengaAirport : Ind Airport ; + fun GitengaAirport : Ind Airport ; -fun GiuseppeMarconiBorgoPanigaleBolognaAirport : Ind Airport ; + fun GiuseppeMarconiBorgoPanigaleBolognaAirport : Ind Airport ; -fun GiyanaAirport : Ind Airport ; + fun GiyanaAirport : Ind Airport ; -fun GizanAirport : Ind Airport ; + fun GizanAirport : Ind Airport ; -fun GizoAirport : Ind Airport ; + fun GizoAirport : Ind Airport ; -fun GjogurReykjarnesAirport : Ind Airport ; + fun GjogurReykjarnesAirport : Ind Airport ; -fun GlacierCreekAKAirport : Ind Airport ; + fun GlacierCreekAKAirport : Ind Airport ; -fun GlacierParkInternationalMTAirport : Ind Airport ; + fun GlacierParkInternationalMTAirport : Ind Airport ; -fun GladstoneQueenslandAirport : Ind Airport ; + fun GladstoneQueenslandAirport : Ind Airport ; -fun GlasgowIndustrialMTAirport : Ind Airport ; + fun GlasgowIndustrialMTAirport : Ind Airport ; -fun GlasgowInternationalMTAirport : Ind Airport ; + fun GlasgowInternationalMTAirport : Ind Airport ; -fun GlasgowMunicipalKYAirport : Ind Airport ; + fun GlasgowMunicipalKYAirport : Ind Airport ; -fun GlenInnesNewSouthWalesAirport : Ind Airport ; + fun GlenInnesNewSouthWalesAirport : Ind Airport ; -fun GlendaleFokkerFieldWVAirport : Ind Airport ; + fun GlendaleFokkerFieldWVAirport : Ind Airport ; -fun GlendaleMunicipalAZAirport : Ind Airport ; + fun GlendaleMunicipalAZAirport : Ind Airport ; -fun GlengyleQueenslandAirport : Ind Airport ; + fun GlengyleQueenslandAirport : Ind Airport ; -fun GlenormistonAirport : Ind Airport ; + fun GlenormistonAirport : Ind Airport ; -fun GlentanMountCookAirport : Ind Airport ; + fun GlentanMountCookAirport : Ind Airport ; -fun GlenwoodSpringsMunicipalCOAirport : Ind Airport ; + fun GlenwoodSpringsMunicipalCOAirport : Ind Airport ; -fun GlobeSanCarlosRegionalAirFacilityAZAirport : Ind Airport ; + fun GlobeSanCarlosRegionalAirFacilityAZAirport : Ind Airport ; -fun GloucesterAirport : Ind Airport ; + fun GloucesterAirport : Ind Airport ; -fun GlyncoJetportGAAirport : Ind Airport ; + fun GlyncoJetportGAAirport : Ind Airport ; -fun GoaAirport : Ind Airport ; + fun GoaAirport : Ind Airport ; -fun GobaAirport : Ind Airport ; + fun GobaAirport : Ind Airport ; -fun GobernadordosGregoresAirport : Ind Airport ; + fun GobernadordosGregoresAirport : Ind Airport ; -fun GodeAirport : Ind Airport ; + fun GodeAirport : Ind Airport ; -fun GodhavnAirport : Ind Airport ; + fun GodhavnAirport : Ind Airport ; -fun GodmanArmyAirFieldKYAirport : Ind Airport ; + fun GodmanArmyAirFieldKYAirport : Ind Airport ; -fun GodthabNuukAirport : Ind Airport ; + fun GodthabNuukAirport : Ind Airport ; -fun GogebicCountyMIAirport : Ind Airport ; + fun GogebicCountyMIAirport : Ind Airport ; -fun GoianiaGOAirport : Ind Airport ; + fun GoianiaGOAirport : Ind Airport ; -fun GoldBeachMunicipalORAirport : Ind Airport ; + fun GoldBeachMunicipalORAirport : Ind Airport ; -fun GoldenHornLodgeSeaplaneBaseAKAirport : Ind Airport ; + fun GoldenHornLodgeSeaplaneBaseAKAirport : Ind Airport ; -fun GoldenTriangleRegionalMSAirport : Ind Airport ; + fun GoldenTriangleRegionalMSAirport : Ind Airport ; -fun GoldsboroWayneMunicipalNCAirport : Ind Airport ; + fun GoldsboroWayneMunicipalNCAirport : Ind Airport ; -fun GolfitoAirport : Ind Airport ; + fun GolfitoAirport : Ind Airport ; -fun GollAirport : Ind Airport ; + fun GollAirport : Ind Airport ; -fun GolmudAirport : Ind Airport ; + fun GolmudAirport : Ind Airport ; -fun GolovinAKAirport : Ind Airport ; + fun GolovinAKAirport : Ind Airport ; -fun GomaAirport : Ind Airport ; + fun GomaAirport : Ind Airport ; -fun GonailaAirport : Ind Airport ; + fun GonailaAirport : Ind Airport ; -fun GondarAirport : Ind Airport ; + fun GondarAirport : Ind Airport ; -fun GoodfellowAirForceBaseTXAirport : Ind Airport ; + fun GoodfellowAirForceBaseTXAirport : Ind Airport ; -fun GoodingMunicipalIDAirport : Ind Airport ; + fun GoodingMunicipalIDAirport : Ind Airport ; -fun GoodnewsAKAirport : Ind Airport ; + fun GoodnewsAKAirport : Ind Airport ; -fun GoodwinFieldARAirport : Ind Airport ; + fun GoodwinFieldARAirport : Ind Airport ; -fun GoondiwindiQueenslandAirport : Ind Airport ; + fun GoondiwindiQueenslandAirport : Ind Airport ; -fun GoraAirport : Ind Airport ; + fun GoraAirport : Ind Airport ; -fun GorakhpurAirport : Ind Airport ; + fun GorakhpurAirport : Ind Airport ; -fun GordilAirport : Ind Airport ; + fun GordilAirport : Ind Airport ; -fun GordonDownsWesternAustraliaAirport : Ind Airport ; + fun GordonDownsWesternAustraliaAirport : Ind Airport ; -fun GordonMunicipalNEAirport : Ind Airport ; + fun GordonMunicipalNEAirport : Ind Airport ; -fun GordonsvilleMunicipalVAAirport : Ind Airport ; + fun GordonsvilleMunicipalVAAirport : Ind Airport ; -fun GoreAirport : Ind Airport ; + fun GoreAirport : Ind Airport ; -fun GorkhaAirport : Ind Airport ; + fun GorkhaAirport : Ind Airport ; -fun GorokaAirport : Ind Airport ; + fun GorokaAirport : Ind Airport ; -fun GorontaloAirport : Ind Airport ; + fun GorontaloAirport : Ind Airport ; -fun GosfordNewSouthWalesAirport : Ind Airport ; + fun GosfordNewSouthWalesAirport : Ind Airport ; -fun GoshenMunicipalINAirport : Ind Airport ; + fun GoshenMunicipalINAirport : Ind Airport ; -fun GosseliesCharleroiAirport : Ind Airport ; + fun GosseliesCharleroiAirport : Ind Airport ; -fun GottwaldovAirport : Ind Airport ; + fun GottwaldovAirport : Ind Airport ; -fun GoulburnIslandNorthernTerritoryAirport : Ind Airport ; + fun GoulburnIslandNorthernTerritoryAirport : Ind Airport ; -fun GoulburnNewSouthWalesAirport : Ind Airport ; + fun GoulburnNewSouthWalesAirport : Ind Airport ; -fun GoulimimeAirport : Ind Airport ; + fun GoulimimeAirport : Ind Airport ; -fun GoundaAirport : Ind Airport ; + fun GoundaAirport : Ind Airport ; -fun GoundamAirport : Ind Airport ; + fun GoundamAirport : Ind Airport ; -fun GoveNorthernTerritoryAirport : Ind Airport ; + fun GoveNorthernTerritoryAirport : Ind Airport ; -fun GovernadorValadaresMGAirport : Ind Airport ; + fun GovernadorValadaresMGAirport : Ind Airport ; -fun GovernorsHarbourEleutheraAirport : Ind Airport ; + fun GovernorsHarbourEleutheraAirport : Ind Airport ; -fun GozoAirport : Ind Airport ; + fun GozoAirport : Ind Airport ; -fun GraciasAirport : Ind Airport ; + fun GraciasAirport : Ind Airport ; -fun GraciosaIslandAzoresAirport : Ind Airport ; + fun GraciosaIslandAzoresAirport : Ind Airport ; -fun GraftonNewSouthWalesAirport : Ind Airport ; + fun GraftonNewSouthWalesAirport : Ind Airport ; -fun GranadaAirport : Ind Airport ; + fun GranadaAirport : Ind Airport ; -fun GranbyGrandCountyCOAirport : Ind Airport ; + fun GranbyGrandCountyCOAirport : Ind Airport ; -fun GrandBahamaIslandGrandBahamaAirport : Ind Airport ; + fun GrandBahamaIslandGrandBahamaAirport : Ind Airport ; -fun GrandCanyonHeliportAZAirport : Ind Airport ; + fun GrandCanyonHeliportAZAirport : Ind Airport ; -fun GrandCanyonNationalParkAZAirport : Ind Airport ; + fun GrandCanyonNationalParkAZAirport : Ind Airport ; -fun GrandCaseSaintMartinAirport : Ind Airport ; + fun GrandCaseSaintMartinAirport : Ind Airport ; -fun GrandCentralJohannesburgAirport : Ind Airport ; + fun GrandCentralJohannesburgAirport : Ind Airport ; -fun GrandCessAirport : Ind Airport ; + fun GrandCessAirport : Ind Airport ; -fun GrandForksInternationalNDAirport : Ind Airport ; + fun GrandForksInternationalNDAirport : Ind Airport ; -fun GrandMaraisCookCountyMNAirport : Ind Airport ; + fun GrandMaraisCookCountyMNAirport : Ind Airport ; -fun GrandRapidsItascaCountyAirportGordonNewstromFieldMNAirport : Ind Airport ; + fun GrandRapidsItascaCountyAirportGordonNewstromFieldMNAirport : Ind Airport ; -fun GrandStrandSCAirport : Ind Airport ; + fun GrandStrandSCAirport : Ind Airport ; -fun GrandTurkGrandTurkIsAirport : Ind Airport ; + fun GrandTurkGrandTurkIsAirport : Ind Airport ; -fun GraniteMountainAKAirport : Ind Airport ; + fun GraniteMountainAKAirport : Ind Airport ; -fun GranitesNorthernTerritoryAirport : Ind Airport ; + fun GranitesNorthernTerritoryAirport : Ind Airport ; -fun GrantMunicipalNEAirport : Ind Airport ; + fun GrantMunicipalNEAirport : Ind Airport ; -fun GrantleyAdamsInternationalBarbadosBridgetownAirport : Ind Airport ; + fun GrantleyAdamsInternationalBarbadosBridgetownAirport : Ind Airport ; -fun GrantsMilanMunicipalNMAirport : Ind Airport ; + fun GrantsMilanMunicipalNMAirport : Ind Airport ; -fun GrantsburgMunicipalWIAirport : Ind Airport ; + fun GrantsburgMunicipalWIAirport : Ind Airport ; -fun GranvilleAirport : Ind Airport ; + fun GranvilleAirport : Ind Airport ; -fun GratiotCommunityMIAirport : Ind Airport ; + fun GratiotCommunityMIAirport : Ind Airport ; -fun GrayArmyAirFieldWAAirport : Ind Airport ; + fun GrayArmyAirFieldWAAirport : Ind Airport ; -fun GraylingAKAirport : Ind Airport ; + fun GraylingAKAirport : Ind Airport ; -fun GreatAussieHoleAirport : Ind Airport ; + fun GreatAussieHoleAirport : Ind Airport ; -fun GreatBarrierIslandAirport : Ind Airport ; + fun GreatBarrierIslandAirport : Ind Airport ; -fun GreatBarringtonMAAirport : Ind Airport ; + fun GreatBarringtonMAAirport : Ind Airport ; -fun GreatBendMunicipalKSAirport : Ind Airport ; + fun GreatBendMunicipalKSAirport : Ind Airport ; -fun GreatFallsInternationalMTAirport : Ind Airport ; + fun GreatFallsInternationalMTAirport : Ind Airport ; -fun GreatHarbourCayBerryAirport : Ind Airport ; + fun GreatHarbourCayBerryAirport : Ind Airport ; -fun GreatKeppelIslandQueenslandAirport : Ind Airport ; + fun GreatKeppelIslandQueenslandAirport : Ind Airport ; -fun GreaterBuffaloInternationalNYAirport : Ind Airport ; + fun GreaterBuffaloInternationalNYAirport : Ind Airport ; -fun GreaterKankakeeILAirport : Ind Airport ; + fun GreaterKankakeeILAirport : Ind Airport ; -fun GreaterSouthwestTXAirport : Ind Airport ; + fun GreaterSouthwestTXAirport : Ind Airport ; -fun GreeleyWeldCountyCOAirport : Ind Airport ; + fun GreeleyWeldCountyCOAirport : Ind Airport ; -fun GreenIslandAirport : Ind Airport ; + fun GreenIslandAirport : Ind Airport ; -fun GreenIsleAirport : Ind Airport ; + fun GreenIsleAirport : Ind Airport ; -fun GreenRiverAirport : Ind Airport ; + fun GreenRiverAirport : Ind Airport ; -fun GreenTurtleCayAirport : Ind Airport ; + fun GreenTurtleCayAirport : Ind Airport ; -fun GreenevilleMunicipalTNAirport : Ind Airport ; + fun GreenevilleMunicipalTNAirport : Ind Airport ; -fun GreenfieldMunicipalIAAirport : Ind Airport ; + fun GreenfieldMunicipalIAAirport : Ind Airport ; -fun GreenhamCommonRAFStationEnglandAirport : Ind Airport ; + fun GreenhamCommonRAFStationEnglandAirport : Ind Airport ; -fun GreenleeCountyAZAirport : Ind Airport ; + fun GreenleeCountyAZAirport : Ind Airport ; -fun GreensboroBaltimoreMDAirport : Ind Airport ; + fun GreensboroBaltimoreMDAirport : Ind Airport ; -fun GreenvaleQueenslandAirport : Ind Airport ; + fun GreenvaleQueenslandAirport : Ind Airport ; -fun GreenvilleDowntownSCAirport : Ind Airport ; + fun GreenvilleDowntownSCAirport : Ind Airport ; -fun GreenvilleILAirport : Ind Airport ; + fun GreenvilleILAirport : Ind Airport ; -fun GreenvilleMunicipalMSAirport : Ind Airport ; + fun GreenvilleMunicipalMSAirport : Ind Airport ; -fun GreenvilleSpartanburgSCAirport : Ind Airport ; + fun GreenvilleSpartanburgSCAirport : Ind Airport ; -fun GreenwayPlazaHeliportTXAirport : Ind Airport ; + fun GreenwayPlazaHeliportTXAirport : Ind Airport ; -fun GreenwoodCountySCAirport : Ind Airport ; + fun GreenwoodCountySCAirport : Ind Airport ; -fun GreenwoodLefloreMSAirport : Ind Airport ; + fun GreenwoodLefloreMSAirport : Ind Airport ; -fun GreenwoodMunicipalINAirport : Ind Airport ; + fun GreenwoodMunicipalINAirport : Ind Airport ; -fun GreggCountyTXAirport : Ind Airport ; + fun GreggCountyTXAirport : Ind Airport ; -fun GregoryDownsQueenslandAirport : Ind Airport ; + fun GregoryDownsQueenslandAirport : Ind Airport ; -fun GrenfellNewSouthWalesAirport : Ind Airport ; + fun GrenfellNewSouthWalesAirport : Ind Airport ; -fun GrevenMuensterMunsterOsnabrueckOsnabruckAirport : Ind Airport ; + fun GrevenMuensterMunsterOsnabrueckOsnabruckAirport : Ind Airport ; -fun GreymouthAirport : Ind Airport ; + fun GreymouthAirport : Ind Airport ; -fun GriffithNewSouthWalesAirport : Ind Airport ; + fun GriffithNewSouthWalesAirport : Ind Airport ; -fun GrimsbyAirport : Ind Airport ; + fun GrimsbyAirport : Ind Airport ; -fun GrimseyAirport : Ind Airport ; + fun GrimseyAirport : Ind Airport ; -fun GrinnellRegionalIAAirport : Ind Airport ; + fun GrinnellRegionalIAAirport : Ind Airport ; -fun GrissomAirForceBaseINAirport : Ind Airport ; + fun GrissomAirForceBaseINAirport : Ind Airport ; -fun GrooteEylandtNorthernTerritoryAirport : Ind Airport ; + fun GrooteEylandtNorthernTerritoryAirport : Ind Airport ; -fun GrootfonteinAirport : Ind Airport ; + fun GrootfonteinAirport : Ind Airport ; -fun GrossetoAirport : Ind Airport ; + fun GrossetoAirport : Ind Airport ; -fun GrotonNewLondonCTAirport : Ind Airport ; + fun GrotonNewLondonCTAirport : Ind Airport ; -fun GroznyyGroznyGroznyjAirport : Ind Airport ; + fun GroznyyGroznyGroznyjAirport : Ind Airport ; -fun GrummanBethpageNYAirport : Ind Airport ; + fun GrummanBethpageNYAirport : Ind Airport ; -fun GrundyMunicipalVAAirport : Ind Airport ; + fun GrundyMunicipalVAAirport : Ind Airport ; -fun GuacamayasAirport : Ind Airport ; + fun GuacamayasAirport : Ind Airport ; -fun GuadalcanalAirport : Ind Airport ; + fun GuadalcanalAirport : Ind Airport ; -fun GuadalupeTXAirport : Ind Airport ; + fun GuadalupeTXAirport : Ind Airport ; -fun GuajaraMirimROAirport : Ind Airport ; + fun GuajaraMirimROAirport : Ind Airport ; -fun GualacoAirport : Ind Airport ; + fun GualacoAirport : Ind Airport ; -fun GualeguaychuAirport : Ind Airport ; + fun GualeguaychuAirport : Ind Airport ; -fun GuamAirport : Ind Airport ; + fun GuamAirport : Ind Airport ; -fun GuamalAirport : Ind Airport ; + fun GuamalAirport : Ind Airport ; -fun GuanajaIslandAirport : Ind Airport ; + fun GuanajaIslandAirport : Ind Airport ; -fun GuanajuatoLeonAirport : Ind Airport ; + fun GuanajuatoLeonAirport : Ind Airport ; -fun GuanambiBAAirport : Ind Airport ; + fun GuanambiBAAirport : Ind Airport ; -fun GuanareAirport : Ind Airport ; + fun GuanareAirport : Ind Airport ; -fun GuapiAirport : Ind Airport ; + fun GuapiAirport : Ind Airport ; -fun GuapilesAirport : Ind Airport ; + fun GuapilesAirport : Ind Airport ; -fun GuarapuavaPRAirport : Ind Airport ; + fun GuarapuavaPRAirport : Ind Airport ; -fun GuaratinguetaSPAirport : Ind Airport ; + fun GuaratinguetaSPAirport : Ind Airport ; -fun GuariAirport : Ind Airport ; + fun GuariAirport : Ind Airport ; -fun GuasqualitoAirport : Ind Airport ; + fun GuasqualitoAirport : Ind Airport ; -fun GuayaramerinAirport : Ind Airport ; + fun GuayaramerinAirport : Ind Airport ; -fun GuemarElOuedAirport : Ind Airport ; + fun GuemarElOuedAirport : Ind Airport ; -fun GuerimaAirport : Ind Airport ; + fun GuerimaAirport : Ind Airport ; -fun GuernseyAirport : Ind Airport ; + fun GuernseyAirport : Ind Airport ; -fun GuerreroNegroAirport : Ind Airport ; + fun GuerreroNegroAirport : Ind Airport ; -fun GueterslohGuterslohAirport : Ind Airport ; + fun GueterslohGuterslohAirport : Ind Airport ; -fun GuigloAirport : Ind Airport ; + fun GuigloAirport : Ind Airport ; -fun GuilinAirport : Ind Airport ; + fun GuilinAirport : Ind Airport ; -fun GuimaraesMAAirport : Ind Airport ; + fun GuimaraesMAAirport : Ind Airport ; -fun GuipavasBrestAirport : Ind Airport ; + fun GuipavasBrestAirport : Ind Airport ; -fun GuiriaAirport : Ind Airport ; + fun GuiriaAirport : Ind Airport ; -fun GuiyangAirport : Ind Airport ; + fun GuiyangAirport : Ind Airport ; -fun GujratAirport : Ind Airport ; + fun GujratAirport : Ind Airport ; -fun GulfportBiloxiRegionalMSAirport : Ind Airport ; + fun GulfportBiloxiRegionalMSAirport : Ind Airport ; -fun GulgubipAirport : Ind Airport ; + fun GulgubipAirport : Ind Airport ; -fun GulkanaAKAirport : Ind Airport ; + fun GulkanaAKAirport : Ind Airport ; -fun GunaAirport : Ind Airport ; + fun GunaAirport : Ind Airport ; -fun GunnedahNewSouthWalesAirport : Ind Airport ; + fun GunnedahNewSouthWalesAirport : Ind Airport ; -fun GunnisonCountyCOAirport : Ind Airport ; + fun GunnisonCountyCOAirport : Ind Airport ; -fun GunterAirForceBaseALAirport : Ind Airport ; + fun GunterAirForceBaseALAirport : Ind Airport ; -fun GunungsitoliAirport : Ind Airport ; + fun GunungsitoliAirport : Ind Airport ; -fun GurneyAlotauAirport : Ind Airport ; + fun GurneyAlotauAirport : Ind Airport ; -fun GurupiGOAirport : Ind Airport ; + fun GurupiGOAirport : Ind Airport ; -fun GusapAirport : Ind Airport ; + fun GusapAirport : Ind Airport ; -fun GushKatifAirport : Ind Airport ; + fun GushKatifAirport : Ind Airport ; -fun GustavusAKAirport : Ind Airport ; + fun GustavusAKAirport : Ind Airport ; -fun GuthrieCountyRegionalIAAirport : Ind Airport ; + fun GuthrieCountyRegionalIAAirport : Ind Airport ; -fun GuthrieMunicipalOKAirport : Ind Airport ; + fun GuthrieMunicipalOKAirport : Ind Airport ; -fun GuwahatiGauhatiAirport : Ind Airport ; + fun GuwahatiGauhatiAirport : Ind Airport ; -fun GuymonMunicipalOKAirport : Ind Airport ; + fun GuymonMunicipalOKAirport : Ind Airport ; -fun GwaBurmaAirport : Ind Airport ; + fun GwaBurmaAirport : Ind Airport ; -fun GwadarAirport : Ind Airport ; + fun GwadarAirport : Ind Airport ; -fun GwaliorAirport : Ind Airport ; + fun GwaliorAirport : Ind Airport ; -fun GweruAirport : Ind Airport ; + fun GweruAirport : Ind Airport ; -fun GwinnerAirportRogerMelroeFieldNDAirport : Ind Airport ; + fun GwinnerAirportRogerMelroeFieldNDAirport : Ind Airport ; -fun GyandzhaAirport : Ind Airport ; + fun GyandzhaAirport : Ind Airport ; -fun GympieQueenslandAirport : Ind Airport ; + fun GympieQueenslandAirport : Ind Airport ; -fun HaapaiAirport : Ind Airport ; + fun HaapaiAirport : Ind Airport ; -fun HachijoJimaIslandAirport : Ind Airport ; + fun HachijoJimaIslandAirport : Ind Airport ; -fun HachinoheAirport : Ind Airport ; + fun HachinoheAirport : Ind Airport ; -fun HafrAlbatinAirport : Ind Airport ; + fun HafrAlbatinAirport : Ind Airport ; -fun HagforsAirport : Ind Airport ; + fun HagforsAirport : Ind Airport ; -fun HahayaMoroniAirport : Ind Airport ; + fun HahayaMoroniAirport : Ind Airport ; -fun HahnAirport : Ind Airport ; + fun HahnAirport : Ind Airport ; -fun HaiPhongAirport : Ind Airport ; + fun HaiPhongAirport : Ind Airport ; -fun HaifaAirport : Ind Airport ; + fun HaifaAirport : Ind Airport ; -fun HaikouAirport : Ind Airport ; + fun HaikouAirport : Ind Airport ; -fun HailAirport : Ind Airport ; + fun HailAirport : Ind Airport ; -fun HailarAirport : Ind Airport ; + fun HailarAirport : Ind Airport ; -fun HainesAKAirport : Ind Airport ; + fun HainesAKAirport : Ind Airport ; -fun HakodateHokkaidoAirport : Ind Airport ; + fun HakodateHokkaidoAirport : Ind Airport ; -fun HalaliAirport : Ind Airport ; + fun HalaliAirport : Ind Airport ; -fun HalfMoonBayCAAirport : Ind Airport ; + fun HalfMoonBayCAAirport : Ind Airport ; -fun HalimPerdanakusumaInternationalJakartaAirport : Ind Airport ; + fun HalimPerdanakusumaInternationalJakartaAirport : Ind Airport ; -fun HaliweniAtambuaAirport : Ind Airport ; + fun HaliweniAtambuaAirport : Ind Airport ; -fun HalliburtonFieldOKAirport : Ind Airport ; + fun HalliburtonFieldOKAirport : Ind Airport ; -fun HallsCreekWesternAustraliaAirport : Ind Airport ; + fun HallsCreekWesternAustraliaAirport : Ind Airport ; -fun HalmstadAirBaseHalmstadAirport : Ind Airport ; + fun HalmstadAirBaseHalmstadAirport : Ind Airport ; -fun HamadanAirport : Ind Airport ; + fun HamadanAirport : Ind Airport ; -fun HamiAirport : Ind Airport ; + fun HamiAirport : Ind Airport ; -fun HamiltonAirport : Ind Airport ; + fun HamiltonAirport : Ind Airport ; -fun HamiltonFairfieldOHAirport : Ind Airport ; + fun HamiltonFairfieldOHAirport : Ind Airport ; -fun HamiltonIslandQueenslandAirport : Ind Airport ; + fun HamiltonIslandQueenslandAirport : Ind Airport ; -fun HamiltonVictoriaAirport : Ind Airport ; + fun HamiltonVictoriaAirport : Ind Airport ; -fun HammerfestAirport : Ind Airport ; + fun HammerfestAirport : Ind Airport ; -fun HamptonMunicipalIAAirport : Ind Airport ; + fun HamptonMunicipalIAAirport : Ind Airport ; -fun HanaHIAirport : Ind Airport ; + fun HanaHIAirport : Ind Airport ; -fun HanaleiHIAirport : Ind Airport ; + fun HanaleiHIAirport : Ind Airport ; -fun HanamakiMoriokaAirport : Ind Airport ; + fun HanamakiMoriokaAirport : Ind Airport ; -fun HancheyArmyHeliportALAirport : Ind Airport ; + fun HancheyArmyHeliportALAirport : Ind Airport ; -fun HancockCountyBarHarborMEAirport : Ind Airport ; + fun HancockCountyBarHarborMEAirport : Ind Airport ; -fun HanedaTokyoAirport : Ind Airport ; + fun HanedaTokyoAirport : Ind Airport ; -fun HankowAirport : Ind Airport ; + fun HankowAirport : Ind Airport ; -fun HanksvilleUTAirport : Ind Airport ; + fun HanksvilleUTAirport : Ind Airport ; -fun HannaWYAirport : Ind Airport ; + fun HannaWYAirport : Ind Airport ; -fun HanusBayAKAirport : Ind Airport ; + fun HanusBayAKAirport : Ind Airport ; -fun HanzhongAirport : Ind Airport ; + fun HanzhongAirport : Ind Airport ; -fun HaoIslandAirport : Ind Airport ; + fun HaoIslandAirport : Ind Airport ; -fun HarareAirport : Ind Airport ; + fun HarareAirport : Ind Airport ; -fun HarbinAirport : Ind Airport ; + fun HarbinAirport : Ind Airport ; -fun HarbourIslandAirport : Ind Airport ; + fun HarbourIslandAirport : Ind Airport ; -fun HarbourNorthernIrelandAirport : Ind Airport ; + fun HarbourNorthernIrelandAirport : Ind Airport ; -fun HardwickFieldTNAirport : Ind Airport ; + fun HardwickFieldTNAirport : Ind Airport ; -fun HardyAndersFieldNatchezAdamsCountyMSAirport : Ind Airport ; + fun HardyAndersFieldNatchezAdamsCountyMSAirport : Ind Airport ; -fun HargeisaAirport : Ind Airport ; + fun HargeisaAirport : Ind Airport ; -fun HarlanMunicipalIAAirport : Ind Airport ; + fun HarlanMunicipalIAAirport : Ind Airport ; -fun HarrellFieldARAirport : Ind Airport ; + fun HarrellFieldARAirport : Ind Airport ; -fun HarrisburgRaleighILAirport : Ind Airport ; + fun HarrisburgRaleighILAirport : Ind Airport ; -fun HarrismithAirport : Ind Airport ; + fun HarrismithAirport : Ind Airport ; -fun HarrisonCountyTXAirport : Ind Airport ; + fun HarrisonCountyTXAirport : Ind Airport ; -fun HarrogateAirport : Ind Airport ; + fun HarrogateAirport : Ind Airport ; -fun HartfordBrainardCTAirport : Ind Airport ; + fun HartfordBrainardCTAirport : Ind Airport ; -fun HartfordMunicipalWIAirport : Ind Airport ; + fun HartfordMunicipalWIAirport : Ind Airport ; -fun HartsfieldHeliportGAAirport : Ind Airport ; + fun HartsfieldHeliportGAAirport : Ind Airport ; -fun HartsvilleMunicipalSCAirport : Ind Airport ; + fun HartsvilleMunicipalSCAirport : Ind Airport ; -fun HaskovoAirport : Ind Airport ; + fun HaskovoAirport : Ind Airport ; -fun HassiRmelAirport : Ind Airport ; + fun HassiRmelAirport : Ind Airport ; -fun HastingsFreetownAirport : Ind Airport ; + fun HastingsFreetownAirport : Ind Airport ; -fun HastingsMunicipalNEAirport : Ind Airport ; + fun HastingsMunicipalNEAirport : Ind Airport ; -fun HasvikAirport : Ind Airport ; + fun HasvikAirport : Ind Airport ; -fun HatboxFieldOKAirport : Ind Airport ; + fun HatboxFieldOKAirport : Ind Airport ; -fun HaterumaAirport : Ind Airport ; + fun HaterumaAirport : Ind Airport ; -fun HatfieldEnglandAirport : Ind Airport ; + fun HatfieldEnglandAirport : Ind Airport ; -fun HatoCorozalAirport : Ind Airport ; + fun HatoCorozalAirport : Ind Airport ; -fun HatzfeldthavenAirport : Ind Airport ; + fun HatzfeldthavenAirport : Ind Airport ; -fun HavasupaiAZAirport : Ind Airport ; + fun HavasupaiAZAirport : Ind Airport ; -fun HaverfordwestWalesAirport : Ind Airport ; + fun HaverfordwestWalesAirport : Ind Airport ; -fun HavreCityCountyMTAirport : Ind Airport ; + fun HavreCityCountyMTAirport : Ind Airport ; -fun HawabangoAirport : Ind Airport ; + fun HawabangoAirport : Ind Airport ; -fun HawkInletSeaplaneBaseAKAirport : Ind Airport ; + fun HawkInletSeaplaneBaseAKAirport : Ind Airport ; -fun HawkerSouthAustraliaAirport : Ind Airport ; + fun HawkerSouthAustraliaAirport : Ind Airport ; -fun HawkinsFieldMSAirport : Ind Airport ; + fun HawkinsFieldMSAirport : Ind Airport ; -fun HawthorneMunicipalCAAirport : Ind Airport ; + fun HawthorneMunicipalCAAirport : Ind Airport ; -fun HawthorneMunicipalNVAirport : Ind Airport ; + fun HawthorneMunicipalNVAirport : Ind Airport ; -fun HayNewSouthWalesAirport : Ind Airport ; + fun HayNewSouthWalesAirport : Ind Airport ; -fun HaycockAKAirport : Ind Airport ; + fun HaycockAKAirport : Ind Airport ; -fun HayfieldsAirport : Ind Airport ; + fun HayfieldsAirport : Ind Airport ; -fun HaymanIslandQueenslandAirport : Ind Airport ; + fun HaymanIslandQueenslandAirport : Ind Airport ; -fun HaysMunicipalKSAirport : Ind Airport ; + fun HaysMunicipalKSAirport : Ind Airport ; -fun HaywardAirTerminalCAAirport : Ind Airport ; + fun HaywardAirTerminalCAAirport : Ind Airport ; -fun HaywardMunicipalWIAirport : Ind Airport ; + fun HaywardMunicipalWIAirport : Ind Airport ; -fun HazebrouckAirport : Ind Airport ; + fun HazebrouckAirport : Ind Airport ; -fun HazlehurstGAAirport : Ind Airport ; + fun HazlehurstGAAirport : Ind Airport ; -fun HazletonMunicipalPAAirport : Ind Airport ; + fun HazletonMunicipalPAAirport : Ind Airport ; -fun HeadinglyQueenslandAirport : Ind Airport ; + fun HeadinglyQueenslandAirport : Ind Airport ; -fun HealyRiverAKAirport : Ind Airport ; + fun HealyRiverAKAirport : Ind Airport ; -fun HeathlandsQueenslandAirport : Ind Airport ; + fun HeathlandsQueenslandAirport : Ind Airport ; -fun HeberSpringsMunicipalARAirport : Ind Airport ; + fun HeberSpringsMunicipalARAirport : Ind Airport ; -fun HebronMunicipalNEAirport : Ind Airport ; + fun HebronMunicipalNEAirport : Ind Airport ; -fun HectorInternationalNDAirport : Ind Airport ; + fun HectorInternationalNDAirport : Ind Airport ; -fun HefeiAirport : Ind Airport ; + fun HefeiAirport : Ind Airport ; -fun HehoAirport : Ind Airport ; + fun HehoAirport : Ind Airport ; -fun HeideBuesumAirport : Ind Airport ; + fun HeideBuesumAirport : Ind Airport ; -fun HeidelbergAirport : Ind Airport ; + fun HeidelbergAirport : Ind Airport ; -fun HeiheAirport : Ind Airport ; + fun HeiheAirport : Ind Airport ; -fun HeiweniAirport : Ind Airport ; + fun HeiweniAirport : Ind Airport ; -fun HelenaRegionalMTAirport : Ind Airport ; + fun HelenaRegionalMTAirport : Ind Airport ; -fun HelenvaleAirport : Ind Airport ; + fun HelenvaleAirport : Ind Airport ; -fun HelgolandAirport : Ind Airport ; + fun HelgolandAirport : Ind Airport ; -fun HeliportCroisetteAirport : Ind Airport ; + fun HeliportCroisetteAirport : Ind Airport ; -fun HeliportGronnedalAirport : Ind Airport ; + fun HeliportGronnedalAirport : Ind Airport ; -fun HeliportHelsingborgAirport : Ind Airport ; + fun HeliportHelsingborgAirport : Ind Airport ; -fun HeliportInchonAirport : Ind Airport ; + fun HeliportInchonAirport : Ind Airport ; -fun HeliportParisAirport : Ind Airport ; + fun HeliportParisAirport : Ind Airport ; -fun HeliportSodertaljeAirport : Ind Airport ; + fun HeliportSodertaljeAirport : Ind Airport ; -fun HellinikonInternationalAthensAthinaiAirport : Ind Airport ; + fun HellinikonInternationalAthensAthinaiAirport : Ind Airport ; -fun HemetRyanCAAirport : Ind Airport ; + fun HemetRyanCAAirport : Ind Airport ; -fun HemphillCountyTXAirport : Ind Airport ; + fun HemphillCountyTXAirport : Ind Airport ; -fun HenburyNorthernTerritoryAirport : Ind Airport ; + fun HenburyNorthernTerritoryAirport : Ind Airport ; -fun HendersonFieldNCAirport : Ind Airport ; + fun HendersonFieldNCAirport : Ind Airport ; -fun HendersonGuadalcanalIsAirport : Ind Airport ; + fun HendersonGuadalcanalIsAirport : Ind Airport ; -fun HendersonOxfordNCAirport : Ind Airport ; + fun HendersonOxfordNCAirport : Ind Airport ; -fun HendonEnglandAirport : Ind Airport ; + fun HendonEnglandAirport : Ind Airport ; -fun HengyangAirport : Ind Airport ; + fun HengyangAirport : Ind Airport ; -fun HenryPostArmyAirFieldOKAirport : Ind Airport ; + fun HenryPostArmyAirFieldOKAirport : Ind Airport ; -fun HenzadaAirport : Ind Airport ; + fun HenzadaAirport : Ind Airport ; -fun HeraklionIraklionCreteAirport : Ind Airport ; + fun HeraklionIraklionCreteAirport : Ind Airport ; -fun HeratAirport : Ind Airport ; + fun HeratAirport : Ind Airport ; -fun HerefordMunicipalTXAirport : Ind Airport ; + fun HerefordMunicipalTXAirport : Ind Airport ; -fun HerendeenBayAKAirport : Ind Airport ; + fun HerendeenBayAKAirport : Ind Airport ; -fun HeringsdorfAirport : Ind Airport ; + fun HeringsdorfAirport : Ind Airport ; -fun HeringtonMunicipalKSAirport : Ind Airport ; + fun HeringtonMunicipalKSAirport : Ind Airport ; -fun HermannsburgNorthernTerritoryAirport : Ind Airport ; + fun HermannsburgNorthernTerritoryAirport : Ind Airport ; -fun HermistonMunicipalORAirport : Ind Airport ; + fun HermistonMunicipalORAirport : Ind Airport ; -fun HernandoCountyFLAirport : Ind Airport ; + fun HernandoCountyFLAirport : Ind Airport ; -fun HeronIslandQueenslandAirport : Ind Airport ; + fun HeronIslandQueenslandAirport : Ind Airport ; -fun HerreraAirport : Ind Airport ; + fun HerreraAirport : Ind Airport ; -fun HerveyBayQueenslandAirport : Ind Airport ; + fun HerveyBayQueenslandAirport : Ind Airport ; -fun HerzegovinaAirport : Ind Airport ; + fun HerzegovinaAirport : Ind Airport ; -fun HickamAirForceBaseHIAirport : Ind Airport ; + fun HickamAirForceBaseHIAirport : Ind Airport ; -fun HickoryRegionalNCAirport : Ind Airport ; + fun HickoryRegionalNCAirport : Ind Airport ; -fun HiddenFallsAKAirport : Ind Airport ; + fun HiddenFallsAKAirport : Ind Airport ; -fun HiengheneAirport : Ind Airport ; + fun HiengheneAirport : Ind Airport ; -fun HighWycombeAirport : Ind Airport ; + fun HighWycombeAirport : Ind Airport ; -fun HighburyAirport : Ind Airport ; + fun HighburyAirport : Ind Airport ; -fun HigueroteAirport : Ind Airport ; + fun HigueroteAirport : Ind Airport ; -fun HikueruAirport : Ind Airport ; + fun HikueruAirport : Ind Airport ; -fun HillAirForceBaseUTAirport : Ind Airport ; + fun HillAirForceBaseUTAirport : Ind Airport ; -fun HillCityMunicipalKSAirport : Ind Airport ; + fun HillCityMunicipalKSAirport : Ind Airport ; -fun HillenbrandIndustriesINAirport : Ind Airport ; + fun HillenbrandIndustriesINAirport : Ind Airport ; -fun HillsideWesternAustraliaAirport : Ind Airport ; + fun HillsideWesternAustraliaAirport : Ind Airport ; -fun HiloInternationalHIAirport : Ind Airport ; + fun HiloInternationalHIAirport : Ind Airport ; -fun HiltonHeadSCAirport : Ind Airport ; + fun HiltonHeadSCAirport : Ind Airport ; -fun HinchinbrookeIslandQueenslandAirport : Ind Airport ; + fun HinchinbrookeIslandQueenslandAirport : Ind Airport ; -fun HiroshimaAirport : Ind Airport ; + fun HiroshimaAirport : Ind Airport ; -fun HiroshimaWestHiroshimaAirport : Ind Airport ; + fun HiroshimaWestHiroshimaAirport : Ind Airport ; -fun HissarAirport : Ind Airport ; + fun HissarAirport : Ind Airport ; -fun HivaOaMarquesasIslandsAirport : Ind Airport ; + fun HivaOaMarquesasIslandsAirport : Ind Airport ; -fun HivaroAirport : Ind Airport ; + fun HivaroAirport : Ind Airport ; -fun HjaltabakkiBlonduosAirport : Ind Airport ; + fun HjaltabakkiBlonduosAirport : Ind Airport ; -fun HluhluweAirport : Ind Airport ; + fun HluhluweAirport : Ind Airport ; -fun HobartBayAKAirport : Ind Airport ; + fun HobartBayAKAirport : Ind Airport ; -fun HobartMunicipalOKAirport : Ind Airport ; + fun HobartMunicipalOKAirport : Ind Airport ; -fun HobartTasmaniaAirport : Ind Airport ; + fun HobartTasmaniaAirport : Ind Airport ; -fun HobbsIndustrialAirparkNMAirport : Ind Airport ; + fun HobbsIndustrialAirparkNMAirport : Ind Airport ; -fun HodeidaAirport : Ind Airport ; + fun HodeidaAirport : Ind Airport ; -fun HofAirport : Ind Airport ; + fun HofAirport : Ind Airport ; -fun HofufAirport : Ind Airport ; + fun HofufAirport : Ind Airport ; -fun HogRiverAKAirport : Ind Airport ; + fun HogRiverAKAirport : Ind Airport ; -fun HohenemsAirport : Ind Airport ; + fun HohenemsAirport : Ind Airport ; -fun HohhotAirport : Ind Airport ; + fun HohhotAirport : Ind Airport ; -fun HokitikaAirport : Ind Airport ; + fun HokitikaAirport : Ind Airport ; -fun HolaAirport : Ind Airport ; + fun HolaAirport : Ind Airport ; -fun HolguinAirport : Ind Airport ; + fun HolguinAirport : Ind Airport ; -fun HolikachuAKAirport : Ind Airport ; + fun HolikachuAKAirport : Ind Airport ; -fun HolikachukAKAirport : Ind Airport ; + fun HolikachukAKAirport : Ind Airport ; -fun HollisSeaplaneBaseAKAirport : Ind Airport ; + fun HollisSeaplaneBaseAKAirport : Ind Airport ; -fun HollisterMunicipalCAAirport : Ind Airport ; + fun HollisterMunicipalCAAirport : Ind Airport ; -fun HollomanAirForceBaseNMAirport : Ind Airport ; + fun HollomanAirForceBaseNMAirport : Ind Airport ; -fun HolmavikAirport : Ind Airport ; + fun HolmavikAirport : Ind Airport ; -fun HolsteinsborgAirport : Ind Airport ; + fun HolsteinsborgAirport : Ind Airport ; -fun HoltFlateyriAirport : Ind Airport ; + fun HoltFlateyriAirport : Ind Airport ; -fun HolyCrossAKAirport : Ind Airport ; + fun HolyCrossAKAirport : Ind Airport ; -fun HomalinAirport : Ind Airport ; + fun HomalinAirport : Ind Airport ; -fun HomeHillQueenslandAirport : Ind Airport ; + fun HomeHillQueenslandAirport : Ind Airport ; -fun HomerAKAirport : Ind Airport ; + fun HomerAKAirport : Ind Airport ; -fun HomeshoreAKAirport : Ind Airport ; + fun HomeshoreAKAirport : Ind Airport ; -fun HomesteadAirForceBaseFLAirport : Ind Airport ; + fun HomesteadAirForceBaseFLAirport : Ind Airport ; -fun HomyelGomelHomyelAirport : Ind Airport ; + fun HomyelGomelHomyelAirport : Ind Airport ; -fun HondoMunicipalTXAirport : Ind Airport ; + fun HondoMunicipalTXAirport : Ind Airport ; -fun HongKongHeliportHongKongAirport : Ind Airport ; + fun HongKongHeliportHongKongAirport : Ind Airport ; -fun HoninabiAirport : Ind Airport ; + fun HoninabiAirport : Ind Airport ; -fun HonningsvagAirport : Ind Airport ; + fun HonningsvagAirport : Ind Airport ; -fun HonoluluInternationalHIAirport : Ind Airport ; + fun HonoluluInternationalHIAirport : Ind Airport ; -fun HoodArmyAirFieldTXAirport : Ind Airport ; + fun HoodArmyAirFieldTXAirport : Ind Airport ; -fun HookIslandAirport : Ind Airport ; + fun HookIslandAirport : Ind Airport ; -fun HookersCreekNorthernTerritoryAirport : Ind Airport ; + fun HookersCreekNorthernTerritoryAirport : Ind Airport ; -fun HoonahAKAirport : Ind Airport ; + fun HoonahAKAirport : Ind Airport ; -fun HooperBayAKAirport : Ind Airport ; + fun HooperBayAKAirport : Ind Airport ; -fun HopeValeQueenslandAirport : Ind Airport ; + fun HopeValeQueenslandAirport : Ind Airport ; -fun HopetownAirport : Ind Airport ; + fun HopetownAirport : Ind Airport ; -fun HopkinsvilleChristianCountyKYAirport : Ind Airport ; + fun HopkinsvilleChristianCountyKYAirport : Ind Airport ; -fun HornIslandAirport : Ind Airport ; + fun HornIslandAirport : Ind Airport ; -fun HornafjordurHofnAirport : Ind Airport ; + fun HornafjordurHofnAirport : Ind Airport ; -fun HorshamVictoriaAirport : Ind Airport ; + fun HorshamVictoriaAirport : Ind Airport ; -fun HortaFaialIslandAzoresAirport : Ind Airport ; + fun HortaFaialIslandAzoresAirport : Ind Airport ; -fun HotSpringsMunicipalSDAirport : Ind Airport ; + fun HotSpringsMunicipalSDAirport : Ind Airport ; -fun HotanAirport : Ind Airport ; + fun HotanAirport : Ind Airport ; -fun HouailoAirport : Ind Airport ; + fun HouailoAirport : Ind Airport ; -fun HouariBoumedieneAlgerAlgiersAirport : Ind Airport ; + fun HouariBoumedieneAlgerAlgiersAirport : Ind Airport ; -fun HoueisayAirport : Ind Airport ; + fun HoueisayAirport : Ind Airport ; -fun HoughtonCountyMemorialMIAirport : Ind Airport ; + fun HoughtonCountyMemorialMIAirport : Ind Airport ; -fun HoultonInternationalMEAirport : Ind Airport ; + fun HoultonInternationalMEAirport : Ind Airport ; -fun HoumaTerrebonneLAAirport : Ind Airport ; + fun HoumaTerrebonneLAAirport : Ind Airport ; -fun HounAirport : Ind Airport ; + fun HounAirport : Ind Airport ; -fun HoustonIntercontinentalTXAirport : Ind Airport ; + fun HoustonIntercontinentalTXAirport : Ind Airport ; -fun HoustonSouthwestTXAirport : Ind Airport ; + fun HoustonSouthwestTXAirport : Ind Airport ; -fun HovdenOerstaVoldaAirport : Ind Airport ; + fun HovdenOerstaVoldaAirport : Ind Airport ; -fun HovercraftHarbourTerminalMalmoAirport : Ind Airport ; + fun HovercraftHarbourTerminalMalmoAirport : Ind Airport ; -fun HowardAirForceBaseBalboaFortKobbeAirport : Ind Airport ; + fun HowardAirForceBaseBalboaFortKobbeAirport : Ind Airport ; -fun HoyIslandAirport : Ind Airport ; + fun HoyIslandAirport : Ind Airport ; -fun HoybuktmoenKirkenesAirport : Ind Airport ; + fun HoybuktmoenKirkenesAirport : Ind Airport ; -fun HozmanElatAirport : Ind Airport ; + fun HozmanElatAirport : Ind Airport ; -fun HrodnaGrodnaHrodnaAirport : Ind Airport ; + fun HrodnaGrodnaHrodnaAirport : Ind Airport ; -fun HsinChuAirport : Ind Airport ; + fun HsinChuAirport : Ind Airport ; -fun HuaHinAirport : Ind Airport ; + fun HuaHinAirport : Ind Airport ; -fun HuahineSocietyIslandsAirport : Ind Airport ; + fun HuahineSocietyIslandsAirport : Ind Airport ; -fun HualienAirport : Ind Airport ; + fun HualienAirport : Ind Airport ; -fun HuanghuaAirport : Ind Airport ; + fun HuanghuaAirport : Ind Airport ; -fun HuangyanAirport : Ind Airport ; + fun HuangyanAirport : Ind Airport ; -fun HuanucoAirport : Ind Airport ; + fun HuanucoAirport : Ind Airport ; -fun HubliAirport : Ind Airport ; + fun HubliAirport : Ind Airport ; -fun HudiksvallAirport : Ind Airport ; + fun HudiksvallAirport : Ind Airport ; -fun HueAirport : Ind Airport ; + fun HueAirport : Ind Airport ; -fun HuehuetenangoAirport : Ind Airport ; + fun HuehuetenangoAirport : Ind Airport ; -fun HughendenQueenslandAirport : Ind Airport ; + fun HughendenQueenslandAirport : Ind Airport ; -fun HughesAKAirport : Ind Airport ; + fun HughesAKAirport : Ind Airport ; -fun HugotonMunicipalKSAirport : Ind Airport ; + fun HugotonMunicipalKSAirport : Ind Airport ; -fun HuizhowAirport : Ind Airport ; + fun HuizhowAirport : Ind Airport ; -fun HullAKAirport : Ind Airport ; + fun HullAKAirport : Ind Airport ; -fun HulmanRegionalINAirport : Ind Airport ; + fun HulmanRegionalINAirport : Ind Airport ; -fun HultsfredAirport : Ind Airport ; + fun HultsfredAirport : Ind Airport ; -fun HumacaoHumacaoAirport : Ind Airport ; + fun HumacaoHumacaoAirport : Ind Airport ; -fun HumbersideAirport : Ind Airport ; + fun HumbersideAirport : Ind Airport ; -fun HumbertRiverAirport : Ind Airport ; + fun HumbertRiverAirport : Ind Airport ; -fun HumboldtMunicipalNEAirport : Ind Airport ; + fun HumboldtMunicipalNEAirport : Ind Airport ; -fun HumeraAirport : Ind Airport ; + fun HumeraAirport : Ind Airport ; -fun HuntingburgINAirport : Ind Airport ; + fun HuntingburgINAirport : Ind Airport ; -fun HuntingtonMunicipalINAirport : Ind Airport ; + fun HuntingtonMunicipalINAirport : Ind Airport ; -fun HuntsvilleInternationalAirportCarlTJonesFieldALAirport : Ind Airport ; + fun HuntsvilleInternationalAirportCarlTJonesFieldALAirport : Ind Airport ; -fun HuntsvilleMunicipalTXAirport : Ind Airport ; + fun HuntsvilleMunicipalTXAirport : Ind Airport ; -fun HurghadaAirport : Ind Airport ; + fun HurghadaAirport : Ind Airport ; -fun HuronRegionalSDAirport : Ind Airport ; + fun HuronRegionalSDAirport : Ind Airport ; -fun HusavikAirport : Ind Airport ; + fun HusavikAirport : Ind Airport ; -fun HusliaAKAirport : Ind Airport ; + fun HusliaAKAirport : Ind Airport ; -fun HutchinsonCountyTXAirport : Ind Airport ; + fun HutchinsonCountyTXAirport : Ind Airport ; -fun HutchinsonMunicipalAirportButlerFieldMNAirport : Ind Airport ; + fun HutchinsonMunicipalAirportButlerFieldMNAirport : Ind Airport ; -fun HutchinsonMunicipalKSAirport : Ind Airport ; + fun HutchinsonMunicipalKSAirport : Ind Airport ; -fun HvammstangiAirport : Ind Airport ; + fun HvammstangiAirport : Ind Airport ; -fun HwangeNationalParkAirport : Ind Airport ; + fun HwangeNationalParkAirport : Ind Airport ; -fun HydaburgSeaplaneBaseAKAirport : Ind Airport ; + fun HydaburgSeaplaneBaseAKAirport : Ind Airport ; -fun HyderabadAirport : Ind Airport ; + fun HyderabadAirport : Ind Airport ; -fun HyderabadAirportPakistan : Ind Airport ; + fun HyderabadAirportPakistan : Ind Airport ; -fun IalibuAirport : Ind Airport ; + fun IalibuAirport : Ind Airport ; -fun IamaleleAirport : Ind Airport ; + fun IamaleleAirport : Ind Airport ; -fun IasiAirport : Ind Airport ; + fun IasiAirport : Ind Airport ; -fun IbadanAirport : Ind Airport ; + fun IbadanAirport : Ind Airport ; -fun IbagueAirport : Ind Airport ; + fun IbagueAirport : Ind Airport ; -fun IberiaAirport : Ind Airport ; + fun IberiaAirport : Ind Airport ; -fun IbizaBalearicIslandsAirport : Ind Airport ; + fun IbizaBalearicIslandsAirport : Ind Airport ; -fun IboAirport : Ind Airport ; + fun IboAirport : Ind Airport ; -fun IbokiAirport : Ind Airport ; + fun IbokiAirport : Ind Airport ; -fun IcabaruAirport : Ind Airport ; + fun IcabaruAirport : Ind Airport ; -fun IcyBayAKAirport : Ind Airport ; + fun IcyBayAKAirport : Ind Airport ; -fun IdaGroveMunicipalIAAirport : Ind Airport ; + fun IdaGroveMunicipalIAAirport : Ind Airport ; -fun IdiofaAirport : Ind Airport ; + fun IdiofaAirport : Ind Airport ; -fun IdreAirport : Ind Airport ; + fun IdreAirport : Ind Airport ; -fun IejimaAirport : Ind Airport ; + fun IejimaAirport : Ind Airport ; -fun IffleyQueenslandAirport : Ind Airport ; + fun IffleyQueenslandAirport : Ind Airport ; -fun IgarkaKrasnoyarskAirport : Ind Airport ; + fun IgarkaKrasnoyarskAirport : Ind Airport ; -fun IgiugigAKAirport : Ind Airport ; + fun IgiugigAKAirport : Ind Airport ; -fun IgnacioAgramonteCamagueyAirport : Ind Airport ; + fun IgnacioAgramonteCamagueyAirport : Ind Airport ; -fun IgorISikorskyMemorialCTAirport : Ind Airport ; + fun IgorISikorskyMemorialCTAirport : Ind Airport ; -fun IguelaAirport : Ind Airport ; + fun IguelaAirport : Ind Airport ; -fun IhosyAirport : Ind Airport ; + fun IhosyAirport : Ind Airport ; -fun IhuAirport : Ind Airport ; + fun IhuAirport : Ind Airport ; -fun IjuiRSAirport : Ind Airport ; + fun IjuiRSAirport : Ind Airport ; -fun IkelaAirport : Ind Airport ; + fun IkelaAirport : Ind Airport ; -fun IkiAirport : Ind Airport ; + fun IkiAirport : Ind Airport ; -fun IlakaAirport : Ind Airport ; + fun IlakaAirport : Ind Airport ; -fun IleQuenAirport : Ind Airport ; + fun IleQuenAirport : Ind Airport ; -fun IledYeuAirport : Ind Airport ; + fun IledYeuAirport : Ind Airport ; -fun IledesPinsIsleofPinesIsleofPinesAirport : Ind Airport ; + fun IledesPinsIsleofPinesIsleofPinesAirport : Ind Airport ; -fun IlfordMBAirport : Ind Airport ; + fun IlfordMBAirport : Ind Airport ; -fun IlhaSolteiraMSAirport : Ind Airport ; + fun IlhaSolteiraMSAirport : Ind Airport ; -fun IlheusBAAirport : Ind Airport ; + fun IlheusBAAirport : Ind Airport ; -fun IliamnaAKAirport : Ind Airport ; + fun IliamnaAKAirport : Ind Airport ; -fun IliganAirport : Ind Airport ; + fun IliganAirport : Ind Airport ; -fun IllagaAirport : Ind Airport ; + fun IllagaAirport : Ind Airport ; -fun IllishiemArmyAirFieldIllishiemAirport : Ind Airport ; + fun IllishiemArmyAirFieldIllishiemAirport : Ind Airport ; -fun IloiloAirport : Ind Airport ; + fun IloiloAirport : Ind Airport ; -fun IlorinAirport : Ind Airport ; + fun IlorinAirport : Ind Airport ; -fun IluNewGuineaAirport : Ind Airport ; + fun IluNewGuineaAirport : Ind Airport ; -fun IlulissatJakobshavnAirport : Ind Airport ; + fun IlulissatJakobshavnAirport : Ind Airport ; -fun ImbaimadaiAirport : Ind Airport ; + fun ImbaimadaiAirport : Ind Airport ; -fun ImmokaleeFLAirport : Ind Airport ; + fun ImmokaleeFLAirport : Ind Airport ; -fun ImondaAirport : Ind Airport ; + fun ImondaAirport : Ind Airport ; -fun ImperatrizMAAirport : Ind Airport ; + fun ImperatrizMAAirport : Ind Airport ; -fun ImperialCountyCAAirport : Ind Airport ; + fun ImperialCountyCAAirport : Ind Airport ; -fun ImperialMunicipalNEAirport : Ind Airport ; + fun ImperialMunicipalNEAirport : Ind Airport ; -fun ImpfondoAirport : Ind Airport ; + fun ImpfondoAirport : Ind Airport ; -fun ImphalAirport : Ind Airport ; + fun ImphalAirport : Ind Airport ; -fun InAmenasZerzaltineAirport : Ind Airport ; + fun InAmenasZerzaltineAirport : Ind Airport ; -fun InGuezzamAirport : Ind Airport ; + fun InGuezzamAirport : Ind Airport ; -fun InSalahAirport : Ind Airport ; + fun InSalahAirport : Ind Airport ; -fun InaguaMatthewTownGreatInaguaAirport : Ind Airport ; + fun InaguaMatthewTownGreatInaguaAirport : Ind Airport ; -fun InanwatanAirport : Ind Airport ; + fun InanwatanAirport : Ind Airport ; -fun IncirlikAirBaseAdanaAirport : Ind Airport ; + fun IncirlikAirBaseAdanaAirport : Ind Airport ; -fun IndagenAirport : Ind Airport ; + fun IndagenAirport : Ind Airport ; -fun IndependenceAirport : Ind Airport ; + fun IndependenceAirport : Ind Airport ; -fun IndependenceMunicipalIAAirport : Ind Airport ; + fun IndependenceMunicipalIAAirport : Ind Airport ; -fun IndependenceMunicipalKSAirport : Ind Airport ; + fun IndependenceMunicipalKSAirport : Ind Airport ; -fun IndianSpringsAirForceAuxiliaryNVAirport : Ind Airport ; + fun IndianSpringsAirForceAuxiliaryNVAirport : Ind Airport ; -fun IndianaCountyJimmyStewartFieldPAAirport : Ind Airport ; + fun IndianaCountyJimmyStewartFieldPAAirport : Ind Airport ; -fun IndianapolisInternationalINAirport : Ind Airport ; + fun IndianapolisInternationalINAirport : Ind Airport ; -fun IndianolaMunicipalMSAirport : Ind Airport ; + fun IndianolaMunicipalMSAirport : Ind Airport ; -fun IndiraGandhiInternationalDelhiAirport : Ind Airport ; + fun IndiraGandhiInternationalDelhiAirport : Ind Airport ; -fun IndoreAirport : Ind Airport ; + fun IndoreAirport : Ind Airport ; -fun IndulkanaSouthAustraliaAirport : Ind Airport ; + fun IndulkanaSouthAustraliaAirport : Ind Airport ; -fun IneIneIslandAirport : Ind Airport ; + fun IneIneIslandAirport : Ind Airport ; -fun IngallsFieldVAAirport : Ind Airport ; + fun IngallsFieldVAAirport : Ind Airport ; -fun IngenieroJacobacciAirport : Ind Airport ; + fun IngenieroJacobacciAirport : Ind Airport ; -fun IngersollILAirport : Ind Airport ; + fun IngersollILAirport : Ind Airport ; -fun InghamQueenslandAirport : Ind Airport ; + fun InghamQueenslandAirport : Ind Airport ; -fun IngjaldssandurOnundarfjordurAirport : Ind Airport ; + fun IngjaldssandurOnundarfjordurAirport : Ind Airport ; -fun InhambaneAirport : Ind Airport ; + fun InhambaneAirport : Ind Airport ; -fun InhamingaAirport : Ind Airport ; + fun InhamingaAirport : Ind Airport ; -fun InisheerAirport : Ind Airport ; + fun InisheerAirport : Ind Airport ; -fun InishmaanAirport : Ind Airport ; + fun InishmaanAirport : Ind Airport ; -fun InishmoreAirport : Ind Airport ; + fun InishmoreAirport : Ind Airport ; -fun InjuneQueenslandAirport : Ind Airport ; + fun InjuneQueenslandAirport : Ind Airport ; -fun InkermanQueenslandAirport : Ind Airport ; + fun InkermanQueenslandAirport : Ind Airport ; -fun InnaminckaSouthAustraliaAirport : Ind Airport ; + fun InnaminckaSouthAustraliaAirport : Ind Airport ; -fun InnisfailQueenslandAirport : Ind Airport ; + fun InnisfailQueenslandAirport : Ind Airport ; -fun InongoAirport : Ind Airport ; + fun InongoAirport : Ind Airport ; -fun InternacionalDFAirport : Ind Airport ; + fun InternacionalDFAirport : Ind Airport ; -fun InternationalAdenAirport : Ind Airport ; + fun InternationalAdenAirport : Ind Airport ; -fun InternationalAndrosAirport : Ind Airport ; + fun InternationalAndrosAirport : Ind Airport ; -fun InternationalAucklandAirport : Ind Airport ; + fun InternationalAucklandAirport : Ind Airport ; -fun InternationalBandarSeriBegwanAirport : Ind Airport ; + fun InternationalBandarSeriBegwanAirport : Ind Airport ; -fun InternationalBasraAirport : Ind Airport ; + fun InternationalBasraAirport : Ind Airport ; -fun InternationalBeirutAirport : Ind Airport ; + fun InternationalBeirutAirport : Ind Airport ; -fun InternationalBujumburaAirport : Ind Airport ; + fun InternationalBujumburaAirport : Ind Airport ; -fun InternationalKaohsiungAirport : Ind Airport ; + fun InternationalKaohsiungAirport : Ind Airport ; -fun InternationalNauruAirport : Ind Airport ; + fun InternationalNauruAirport : Ind Airport ; -fun InternationalNorthernTerritoryAirport : Ind Airport ; + fun InternationalNorthernTerritoryAirport : Ind Airport ; -fun InternationalQueenslandAirport : Ind Airport ; + fun InternationalQueenslandAirport : Ind Airport ; -fun InternationalSouthAustraliaAirport : Ind Airport ; + fun InternationalSouthAustraliaAirport : Ind Airport ; -fun InusAirport : Ind Airport ; + fun InusAirport : Ind Airport ; -fun InvercargillAirport : Ind Airport ; + fun InvercargillAirport : Ind Airport ; -fun InverellNewSouthWalesAirport : Ind Airport ; + fun InverellNewSouthWalesAirport : Ind Airport ; -fun InvernessScotlandAirport : Ind Airport ; + fun InvernessScotlandAirport : Ind Airport ; -fun InverwayNorthernTerritoryAirport : Ind Airport ; + fun InverwayNorthernTerritoryAirport : Ind Airport ; -fun InyokernCAAirport : Ind Airport ; + fun InyokernCAAirport : Ind Airport ; -fun IoanninaAirport : Ind Airport ; + fun IoanninaAirport : Ind Airport ; -fun IokeaAirport : Ind Airport ; + fun IokeaAirport : Ind Airport ; -fun IomaAirport : Ind Airport ; + fun IomaAirport : Ind Airport ; -fun IoscoCountyMIAirport : Ind Airport ; + fun IoscoCountyMIAirport : Ind Airport ; -fun IowaCityMunicipalIAAirport : Ind Airport ; + fun IowaCityMunicipalIAAirport : Ind Airport ; -fun IowaFallsMunicipalIAAirport : Ind Airport ; + fun IowaFallsMunicipalIAAirport : Ind Airport ; -fun IpatingaAirport : Ind Airport ; + fun IpatingaAirport : Ind Airport ; -fun IpialesAirport : Ind Airport ; + fun IpialesAirport : Ind Airport ; -fun IpiauBAAirport : Ind Airport ; + fun IpiauBAAirport : Ind Airport ; -fun IpilAirport : Ind Airport ; + fun IpilAirport : Ind Airport ; -fun IpirangaAirport : Ind Airport ; + fun IpirangaAirport : Ind Airport ; -fun IpohAirport : Ind Airport ; + fun IpohAirport : Ind Airport ; -fun IpotaAirport : Ind Airport ; + fun IpotaAirport : Ind Airport ; -fun IpswichAirport : Ind Airport ; + fun IpswichAirport : Ind Airport ; -fun IraanMunicipalTXAirport : Ind Airport ; + fun IraanMunicipalTXAirport : Ind Airport ; -fun IreceBAAirport : Ind Airport ; + fun IreceBAAirport : Ind Airport ; -fun IringaAirport : Ind Airport ; + fun IringaAirport : Ind Airport ; -fun IrionaAirport : Ind Airport ; + fun IrionaAirport : Ind Airport ; -fun IrkutskIrkutskAirport : Ind Airport ; + fun IrkutskIrkutskAirport : Ind Airport ; -fun IsabelPassAKAirport : Ind Airport ; + fun IsabelPassAKAirport : Ind Airport ; -fun IsafjordurAirport : Ind Airport ; + fun IsafjordurAirport : Ind Airport ; -fun IschiaAirport : Ind Airport ; + fun IschiaAirport : Ind Airport ; -fun IscuandeAirport : Ind Airport ; + fun IscuandeAirport : Ind Airport ; -fun IsfahanAirport : Ind Airport ; + fun IsfahanAirport : Ind Airport ; -fun IshhurdiAirport : Ind Airport ; + fun IshhurdiAirport : Ind Airport ; -fun IshigakiAirport : Ind Airport ; + fun IshigakiAirport : Ind Airport ; -fun IsisfordQueenslandAirport : Ind Airport ; + fun IsisfordQueenslandAirport : Ind Airport ; -fun IslaMujersAirport : Ind Airport ; + fun IslaMujersAirport : Ind Airport ; -fun IslamabadAirport : Ind Airport ; + fun IslamabadAirport : Ind Airport ; -fun IslandHeliportNYAirport : Ind Airport ; + fun IslandHeliportNYAirport : Ind Airport ; -fun ItabunaBAAirport : Ind Airport ; + fun ItabunaBAAirport : Ind Airport ; -fun ItacoiatiaraAMAirport : Ind Airport ; + fun ItacoiatiaraAMAirport : Ind Airport ; -fun ItaitubaPAAirport : Ind Airport ; + fun ItaitubaPAAirport : Ind Airport ; -fun ItajaiSCAirport : Ind Airport ; + fun ItajaiSCAirport : Ind Airport ; -fun ItambacuriMGAirport : Ind Airport ; + fun ItambacuriMGAirport : Ind Airport ; -fun ItamiOsakaAirport : Ind Airport ; + fun ItamiOsakaAirport : Ind Airport ; -fun ItaquiRSAirport : Ind Airport ; + fun ItaquiRSAirport : Ind Airport ; -fun ItazukeAirForceBaseKyoshuAirport : Ind Airport ; + fun ItazukeAirForceBaseKyoshuAirport : Ind Airport ; -fun ItokamaAirport : Ind Airport ; + fun ItokamaAirport : Ind Airport ; -fun ItuberaBAAirport : Ind Airport ; + fun ItuberaBAAirport : Ind Airport ; -fun IvaloAirport : Ind Airport ; + fun IvaloAirport : Ind Airport ; -fun IvangradAirport : Ind Airport ; + fun IvangradAirport : Ind Airport ; -fun IvankaBratislavaAirport : Ind Airport ; + fun IvankaBratislavaAirport : Ind Airport ; -fun IvanoFrankivskIvanoFrankovskIvanoFrankivskAirport : Ind Airport ; + fun IvanoFrankivskIvanoFrankovskIvanoFrankivskAirport : Ind Airport ; -fun IvanofBaySeaplaneBaseAKAirport : Ind Airport ; + fun IvanofBaySeaplaneBaseAKAirport : Ind Airport ; -fun IvishakAKAirport : Ind Airport ; + fun IvishakAKAirport : Ind Airport ; -fun IwakuniAirForceBaseHonshuIsAirport : Ind Airport ; + fun IwakuniAirForceBaseHonshuIsAirport : Ind Airport ; -fun IwamiAirport : Ind Airport ; + fun IwamiAirport : Ind Airport ; -fun IwoJimaAirport : Ind Airport ; + fun IwoJimaAirport : Ind Airport ; -fun IxtepecAirport : Ind Airport ; + fun IxtepecAirport : Ind Airport ; -fun IzhevskUdmurtiaAirport : Ind Airport ; + fun IzhevskUdmurtiaAirport : Ind Airport ; -fun IzumoAirport : Ind Airport ; + fun IzumoAirport : Ind Airport ; -fun JBMHertzogBloemfonteinAirport : Ind Airport ; + fun JBMHertzogBloemfonteinAirport : Ind Airport ; -fun JabalpurAirport : Ind Airport ; + fun JabalpurAirport : Ind Airport ; -fun JabatAirport : Ind Airport ; + fun JabatAirport : Ind Airport ; -fun JabiruNorthernTerritoryAirport : Ind Airport ; + fun JabiruNorthernTerritoryAirport : Ind Airport ; -fun JacareacangaPRAirport : Ind Airport ; + fun JacareacangaPRAirport : Ind Airport ; -fun JachelAirport : Ind Airport ; + fun JachelAirport : Ind Airport ; -fun JackEdwardsALAirport : Ind Airport ; + fun JackEdwardsALAirport : Ind Airport ; -fun JackMcNamaraFieldCAAirport : Ind Airport ; + fun JackMcNamaraFieldCAAirport : Ind Airport ; -fun JackpotAirportHaydenFieldNVAirport : Ind Airport ; + fun JackpotAirportHaydenFieldNVAirport : Ind Airport ; -fun JacksonCountyAirportReynoldsFieldMIAirport : Ind Airport ; + fun JacksonCountyAirportReynoldsFieldMIAirport : Ind Airport ; -fun JacksonHoleWYAirport : Ind Airport ; + fun JacksonHoleWYAirport : Ind Airport ; -fun JacksonInternationalMSAirport : Ind Airport ; + fun JacksonInternationalMSAirport : Ind Airport ; -fun JacksonvilleInternationalFLAirport : Ind Airport ; + fun JacksonvilleInternationalFLAirport : Ind Airport ; -fun JacksonvilleMunicipalILAirport : Ind Airport ; + fun JacksonvilleMunicipalILAirport : Ind Airport ; -fun JacobabadAirport : Ind Airport ; + fun JacobabadAirport : Ind Airport ; -fun JacobinaBAAirport : Ind Airport ; + fun JacobinaBAAirport : Ind Airport ; -fun JacouinotBayAirport : Ind Airport ; + fun JacouinotBayAirport : Ind Airport ; -fun JaenAirport : Ind Airport ; + fun JaenAirport : Ind Airport ; -fun JaffnaAirport : Ind Airport ; + fun JaffnaAirport : Ind Airport ; -fun JaffreyMunicipalSilverRanchNHAirport : Ind Airport ; + fun JaffreyMunicipalSilverRanchNHAirport : Ind Airport ; -fun JagdalpurAirport : Ind Airport ; + fun JagdalpurAirport : Ind Airport ; -fun JaipurAirport : Ind Airport ; + fun JaipurAirport : Ind Airport ; -fun JaisalmerAirport : Ind Airport ; + fun JaisalmerAirport : Ind Airport ; -fun JalalabadAirport : Ind Airport ; + fun JalalabadAirport : Ind Airport ; -fun JalapaAirport : Ind Airport ; + fun JalapaAirport : Ind Airport ; -fun JambaAirport : Ind Airport ; + fun JambaAirport : Ind Airport ; -fun JambiAirport : Ind Airport ; + fun JambiAirport : Ind Airport ; -fun JambolAirport : Ind Airport ; + fun JambolAirport : Ind Airport ; -fun JamesMCoxDaytonInternationalOHAirport : Ind Airport ; + fun JamesMCoxDaytonInternationalOHAirport : Ind Airport ; -fun JamestownMunicipalNDAirport : Ind Airport ; + fun JamestownMunicipalNDAirport : Ind Airport ; -fun JammuAirport : Ind Airport ; + fun JammuAirport : Ind Airport ; -fun JamnagarAirport : Ind Airport ; + fun JamnagarAirport : Ind Airport ; -fun JamshedpurAirport : Ind Airport ; + fun JamshedpurAirport : Ind Airport ; -fun JanSmutsJohannesburgAirport : Ind Airport ; + fun JanSmutsJohannesburgAirport : Ind Airport ; -fun JanakpurAirport : Ind Airport ; + fun JanakpurAirport : Ind Airport ; -fun JandakotWesternAustraliaAirport : Ind Airport ; + fun JandakotWesternAustraliaAirport : Ind Airport ; -fun JanuariaMGAirport : Ind Airport ; + fun JanuariaMGAirport : Ind Airport ; -fun JaqueAirport : Ind Airport ; + fun JaqueAirport : Ind Airport ; -fun JasperCountyAirportBellFieldTXAirport : Ind Airport ; + fun JasperCountyAirportBellFieldTXAirport : Ind Airport ; -fun JaujaAirport : Ind Airport ; + fun JaujaAirport : Ind Airport ; -fun JeffcoCOAirport : Ind Airport ; + fun JeffcoCOAirport : Ind Airport ; -fun JeffersonCityMemorialMOAirport : Ind Airport ; + fun JeffersonCityMemorialMOAirport : Ind Airport ; -fun JeffersonCountyAirparkOHAirport : Ind Airport ; + fun JeffersonCountyAirparkOHAirport : Ind Airport ; -fun JeffersonCountyTXAirport : Ind Airport ; + fun JeffersonCountyTXAirport : Ind Airport ; -fun JeffersonMunicipalIAAirport : Ind Airport ; + fun JeffersonMunicipalIAAirport : Ind Airport ; -fun JehAirport : Ind Airport ; + fun JehAirport : Ind Airport ; -fun JequieBAAirport : Ind Airport ; + fun JequieBAAirport : Ind Airport ; -fun JeremieAirport : Ind Airport ; + fun JeremieAirport : Ind Airport ; -fun JerezdelaFronteraAirport : Ind Airport ; + fun JerezdelaFronteraAirport : Ind Airport ; -fun JerseyAirport : Ind Airport ; + fun JerseyAirport : Ind Airport ; -fun JesoloAirport : Ind Airport ; + fun JesoloAirport : Ind Airport ; -fun JessoreAirport : Ind Airport ; + fun JessoreAirport : Ind Airport ; -fun JesupWayneCountyGAAirport : Ind Airport ; + fun JesupWayneCountyGAAirport : Ind Airport ; -fun JevlachNaxcivanAirport : Ind Airport ; + fun JevlachNaxcivanAirport : Ind Airport ; -fun JiParanaROAirport : Ind Airport ; + fun JiParanaROAirport : Ind Airport ; -fun JiamusiAirport : Ind Airport ; + fun JiamusiAirport : Ind Airport ; -fun JianAirport : Ind Airport ; + fun JianAirport : Ind Airport ; -fun JianqiaoHangzhouAirport : Ind Airport ; + fun JianqiaoHangzhouAirport : Ind Airport ; -fun JiayuguanAirport : Ind Airport ; + fun JiayuguanAirport : Ind Airport ; -fun JijigaAirport : Ind Airport ; + fun JijigaAirport : Ind Airport ; -fun JilinAirport : Ind Airport ; + fun JilinAirport : Ind Airport ; -fun JimShearerSouthPAAirport : Ind Airport ; + fun JimShearerSouthPAAirport : Ind Airport ; -fun JimmaAirport : Ind Airport ; + fun JimmaAirport : Ind Airport ; -fun JingdezhenAirport : Ind Airport ; + fun JingdezhenAirport : Ind Airport ; -fun JinghongAirport : Ind Airport ; + fun JinghongAirport : Ind Airport ; -fun JiningAirport : Ind Airport ; + fun JiningAirport : Ind Airport ; -fun JinjaAirport : Ind Airport ; + fun JinjaAirport : Ind Airport ; -fun JinjiangAirport : Ind Airport ; + fun JinjiangAirport : Ind Airport ; -fun JinquanAirport : Ind Airport ; + fun JinquanAirport : Ind Airport ; -fun JinzhouAirport : Ind Airport ; + fun JinzhouAirport : Ind Airport ; -fun JipijapaAirport : Ind Airport ; + fun JipijapaAirport : Ind Airport ; -fun JiriAirport : Ind Airport ; + fun JiriAirport : Ind Airport ; -fun JiujiangAirport : Ind Airport ; + fun JiujiangAirport : Ind Airport ; -fun JiwaniAirport : Ind Airport ; + fun JiwaniAirport : Ind Airport ; -fun JoacabaSCAirport : Ind Airport ; + fun JoacabaSCAirport : Ind Airport ; -fun JoaoPessoaPBAirport : Ind Airport ; + fun JoaoPessoaPBAirport : Ind Airport ; -fun JodhpurAirport : Ind Airport ; + fun JodhpurAirport : Ind Airport ; -fun JoeFossFieldSDAirport : Ind Airport ; + fun JoeFossFieldSDAirport : Ind Airport ; -fun JoensuuAirport : Ind Airport ; + fun JoensuuAirport : Ind Airport ; -fun JohannesburgHeliportJohannesburgAirport : Ind Airport ; + fun JohannesburgHeliportJohannesburgAirport : Ind Airport ; -fun JohnCTuneTNAirport : Ind Airport ; + fun JohnCTuneTNAirport : Ind Airport ; -fun JohnDayStateORAirport : Ind Airport ; + fun JohnDayStateORAirport : Ind Airport ; -fun JohnFKennedyInternationalNYAirport : Ind Airport ; + fun JohnFKennedyInternationalNYAirport : Ind Airport ; -fun JohnFKennedyMemorialWIAirport : Ind Airport ; + fun JohnFKennedyMemorialWIAirport : Ind Airport ; -fun JohnsonAtollJohnstonIslandAirport : Ind Airport ; + fun JohnsonAtollJohnstonIslandAirport : Ind Airport ; -fun JohnsonCityTXAirport : Ind Airport ; + fun JohnsonCityTXAirport : Ind Airport ; -fun JohnsonCountyWYAirport : Ind Airport ; + fun JohnsonCountyWYAirport : Ind Airport ; -fun JohnstownCambriaCountyPAAirport : Ind Airport ; + fun JohnstownCambriaCountyPAAirport : Ind Airport ; -fun JohorBahruAirport : Ind Airport ; + fun JohorBahruAirport : Ind Airport ; -fun JoinvilleSCAirport : Ind Airport ; + fun JoinvilleSCAirport : Ind Airport ; -fun JolietParkDistrictILAirport : Ind Airport ; + fun JolietParkDistrictILAirport : Ind Airport ; -fun JoloAirport : Ind Airport ; + fun JoloAirport : Ind Airport ; -fun JomsomAirport : Ind Airport ; + fun JomsomAirport : Ind Airport ; -fun JonesboroMunicipalARAirport : Ind Airport ; + fun JonesboroMunicipalARAirport : Ind Airport ; -fun JonkopingAirport : Ind Airport ; + fun JonkopingAirport : Ind Airport ; -fun JoplinRegionalMOAirport : Ind Airport ; + fun JoplinRegionalMOAirport : Ind Airport ; -fun JordanMTAirport : Ind Airport ; + fun JordanMTAirport : Ind Airport ; -fun JorgeWilstermanCochabambaAirport : Ind Airport ; + fun JorgeWilstermanCochabambaAirport : Ind Airport ; -fun JorhatAirport : Ind Airport ; + fun JorhatAirport : Ind Airport ; -fun JosAirport : Ind Airport ; + fun JosAirport : Ind Airport ; -fun JoseAAnzoateguiBarcelonaAirport : Ind Airport ; + fun JoseAAnzoateguiBarcelonaAirport : Ind Airport ; -fun JosedeSanMartinAirport : Ind Airport ; + fun JosedeSanMartinAirport : Ind Airport ; -fun JosephstaalAirport : Ind Airport ; + fun JosephstaalAirport : Ind Airport ; -fun JoshuaSanfordFieldWIAirport : Ind Airport ; + fun JoshuaSanfordFieldWIAirport : Ind Airport ; -fun JoufAirport : Ind Airport ; + fun JoufAirport : Ind Airport ; -fun JouniehAirport : Ind Airport ; + fun JouniehAirport : Ind Airport ; -fun JuanjuiAirport : Ind Airport ; + fun JuanjuiAirport : Ind Airport ; -fun JuanlesPinsAirport : Ind Airport ; + fun JuanlesPinsAirport : Ind Airport ; -fun JuaraAirport : Ind Airport ; + fun JuaraAirport : Ind Airport ; -fun JuazeirodoNorteCEAirport : Ind Airport ; + fun JuazeirodoNorteCEAirport : Ind Airport ; -fun JubaAirport : Ind Airport ; + fun JubaAirport : Ind Airport ; -fun JuinaMGAirport : Ind Airport ; + fun JuinaMGAirport : Ind Airport ; -fun JuistAirport : Ind Airport ; + fun JuistAirport : Ind Airport ; -fun JuizdoForaMGAirport : Ind Airport ; + fun JuizdoForaMGAirport : Ind Airport ; -fun JujuyAirport : Ind Airport ; + fun JujuyAirport : Ind Airport ; -fun JuliaCreekQueenslandAirport : Ind Airport ; + fun JuliaCreekQueenslandAirport : Ind Airport ; -fun JuliacaAirport : Ind Airport ; + fun JuliacaAirport : Ind Airport ; -fun JulianCarrollKYAirport : Ind Airport ; + fun JulianCarrollKYAirport : Ind Airport ; -fun JulianehabAirport : Ind Airport ; + fun JulianehabAirport : Ind Airport ; -fun JumlaAirport : Ind Airport ; + fun JumlaAirport : Ind Airport ; -fun JundahQueenslandAirport : Ind Airport ; + fun JundahQueenslandAirport : Ind Airport ; -fun JuneauHarborSeaplaneBaseAKAirport : Ind Airport ; + fun JuneauHarborSeaplaneBaseAKAirport : Ind Airport ; -fun JuneauInternationalAKAirport : Ind Airport ; + fun JuneauInternationalAKAirport : Ind Airport ; -fun JuninAirport : Ind Airport ; + fun JuninAirport : Ind Airport ; -fun JuradoAirport : Ind Airport ; + fun JuradoAirport : Ind Airport ; -fun JurienBayWesternAustraliaAirport : Ind Airport ; + fun JurienBayWesternAustraliaAirport : Ind Airport ; -fun JuruenaMGAirport : Ind Airport ; + fun JuruenaMGAirport : Ind Airport ; -fun JuticalpaAirport : Ind Airport ; + fun JuticalpaAirport : Ind Airport ; -fun JuzhowAirport : Ind Airport ; + fun JuzhowAirport : Ind Airport ; -fun JwanengAirport : Ind Airport ; + fun JwanengAirport : Ind Airport ; -fun JyvaskylaJyvaeskylaeAirport : Ind Airport ; + fun JyvaskylaJyvaeskylaeAirport : Ind Airport ; -fun KaanapaliHIAirport : Ind Airport ; + fun KaanapaliHIAirport : Ind Airport ; -fun KabaenaAirport : Ind Airport ; + fun KabaenaAirport : Ind Airport ; -fun KabalaAirport : Ind Airport ; + fun KabalaAirport : Ind Airport ; -fun KabalegaAirport : Ind Airport ; + fun KabalegaAirport : Ind Airport ; -fun KabaloAirport : Ind Airport ; + fun KabaloAirport : Ind Airport ; -fun KabindaAirport : Ind Airport ; + fun KabindaAirport : Ind Airport ; -fun KabriDarAirport : Ind Airport ; + fun KabriDarAirport : Ind Airport ; -fun KabulKhabulAirport : Ind Airport ; + fun KabulKhabulAirport : Ind Airport ; -fun KabwumAirport : Ind Airport ; + fun KabwumAirport : Ind Airport ; -fun KacmaAirport : Ind Airport ; + fun KacmaAirport : Ind Airport ; -fun KadalaChitaAirport : Ind Airport ; + fun KadalaChitaAirport : Ind Airport ; -fun KadenaAirForceBaseRyukyuIsAirport : Ind Airport ; + fun KadenaAirForceBaseRyukyuIsAirport : Ind Airport ; -fun KadunaAirport : Ind Airport ; + fun KadunaAirport : Ind Airport ; -fun KaediAirport : Ind Airport ; + fun KaediAirport : Ind Airport ; -fun KaeleAirport : Ind Airport ; + fun KaeleAirport : Ind Airport ; -fun KagiAirport : Ind Airport ; + fun KagiAirport : Ind Airport ; -fun KagoshimaKyushuAirport : Ind Airport ; + fun KagoshimaKyushuAirport : Ind Airport ; -fun KaguaAirport : Ind Airport ; + fun KaguaAirport : Ind Airport ; -fun KaiTakInternationalHongKongAirport : Ind Airport ; + fun KaiTakInternationalHongKongAirport : Ind Airport ; -fun KaiapitAirport : Ind Airport ; + fun KaiapitAirport : Ind Airport ; -fun KaieteurAirport : Ind Airport ; + fun KaieteurAirport : Ind Airport ; -fun KaikoheAirport : Ind Airport ; + fun KaikoheAirport : Ind Airport ; -fun KaikoruaAirport : Ind Airport ; + fun KaikoruaAirport : Ind Airport ; -fun KailashaharAirport : Ind Airport ; + fun KailashaharAirport : Ind Airport ; -fun KaimanaAirport : Ind Airport ; + fun KaimanaAirport : Ind Airport ; -fun KaintibaAirport : Ind Airport ; + fun KaintibaAirport : Ind Airport ; -fun KaiserslauternAirport : Ind Airport ; + fun KaiserslauternAirport : Ind Airport ; -fun KaitaiaAirport : Ind Airport ; + fun KaitaiaAirport : Ind Airport ; -fun KajaaniAirport : Ind Airport ; + fun KajaaniAirport : Ind Airport ; -fun KakeSeaplaneBaseAKAirport : Ind Airport ; + fun KakeSeaplaneBaseAKAirport : Ind Airport ; -fun KakhonakAKAirport : Ind Airport ; + fun KakhonakAKAirport : Ind Airport ; -fun KakiovikAKAirport : Ind Airport ; + fun KakiovikAKAirport : Ind Airport ; -fun KalaboAirport : Ind Airport ; + fun KalaboAirport : Ind Airport ; -fun KalakaketAKAirport : Ind Airport ; + fun KalakaketAKAirport : Ind Airport ; -fun KalamataAirport : Ind Airport ; + fun KalamataAirport : Ind Airport ; -fun KalamazooBattleCreekInternationalMIAirport : Ind Airport ; + fun KalamazooBattleCreekInternationalMIAirport : Ind Airport ; -fun KalatAirport : Ind Airport ; + fun KalatAirport : Ind Airport ; -fun KalbarriWesternAustraliaAirport : Ind Airport ; + fun KalbarriWesternAustraliaAirport : Ind Airport ; -fun KalemieAirport : Ind Airport ; + fun KalemieAirport : Ind Airport ; -fun KalemyoAirport : Ind Airport ; + fun KalemyoAirport : Ind Airport ; -fun KalgoorlieWesternAustraliaAirport : Ind Airport ; + fun KalgoorlieWesternAustraliaAirport : Ind Airport ; -fun KaliboAirport : Ind Airport ; + fun KaliboAirport : Ind Airport ; -fun KalimaAirport : Ind Airport ; + fun KalimaAirport : Ind Airport ; -fun KaliningradKaliningradAirport : Ind Airport ; + fun KaliningradKaliningradAirport : Ind Airport ; -fun KalkurungAirport : Ind Airport ; + fun KalkurungAirport : Ind Airport ; -fun KalmarAirport : Ind Airport ; + fun KalmarAirport : Ind Airport ; -fun KalokolAirport : Ind Airport ; + fun KalokolAirport : Ind Airport ; -fun KalpowarQueenslandAirport : Ind Airport ; + fun KalpowarQueenslandAirport : Ind Airport ; -fun KalskagAKAirport : Ind Airport ; + fun KalskagAKAirport : Ind Airport ; -fun KaltagAKAirport : Ind Airport ; + fun KaltagAKAirport : Ind Airport ; -fun KamalpurAirport : Ind Airport ; + fun KamalpurAirport : Ind Airport ; -fun KamaranDownsQueenslandAirport : Ind Airport ; + fun KamaranDownsQueenslandAirport : Ind Airport ; -fun KamaranIslandAirport : Ind Airport ; + fun KamaranIslandAirport : Ind Airport ; -fun KamarangAirport : Ind Airport ; + fun KamarangAirport : Ind Airport ; -fun KambaldaWesternAustraliaAirport : Ind Airport ; + fun KambaldaWesternAustraliaAirport : Ind Airport ; -fun KambuayaAirport : Ind Airport ; + fun KambuayaAirport : Ind Airport ; -fun KamembeAirport : Ind Airport ; + fun KamembeAirport : Ind Airport ; -fun KameshliAirport : Ind Airport ; + fun KameshliAirport : Ind Airport ; -fun KamileroiQueenslandAirport : Ind Airport ; + fun KamileroiQueenslandAirport : Ind Airport ; -fun KaminaAirport : Ind Airport ; + fun KaminaAirport : Ind Airport ; -fun KaminaAirportZaire : Ind Airport ; + fun KaminaAirportZaire : Ind Airport ; -fun KamirabaAirport : Ind Airport ; + fun KamirabaAirport : Ind Airport ; -fun KammarataAirport : Ind Airport ; + fun KammarataAirport : Ind Airport ; -fun KampalaAirport : Ind Airport ; + fun KampalaAirport : Ind Airport ; -fun KampalaEntebbeAirport : Ind Airport ; + fun KampalaEntebbeAirport : Ind Airport ; -fun KampotAirport : Ind Airport ; + fun KampotAirport : Ind Airport ; -fun KamulaiAirport : Ind Airport ; + fun KamulaiAirport : Ind Airport ; -fun KamusiAirport : Ind Airport ; + fun KamusiAirport : Ind Airport ; -fun KamyanetsPodilskyyKamenetsPodolskiyKhmelnytskyyAirport : Ind Airport ; + fun KamyanetsPodilskyyKamenetsPodolskiyKhmelnytskyyAirport : Ind Airport ; -fun KanabMunicipalUTAirport : Ind Airport ; + fun KanabMunicipalUTAirport : Ind Airport ; -fun KanabeaAirport : Ind Airport ; + fun KanabeaAirport : Ind Airport ; -fun KanainjAirport : Ind Airport ; + fun KanainjAirport : Ind Airport ; -fun KanangaAirport : Ind Airport ; + fun KanangaAirport : Ind Airport ; -fun KanazawaKomatsuAirport : Ind Airport ; + fun KanazawaKomatsuAirport : Ind Airport ; -fun KandaharAirport : Ind Airport ; + fun KandaharAirport : Ind Airport ; -fun KandavuAirport : Ind Airport ; + fun KandavuAirport : Ind Airport ; -fun KandepAirport : Ind Airport ; + fun KandepAirport : Ind Airport ; -fun KandiAirport : Ind Airport ; + fun KandiAirport : Ind Airport ; -fun KandlaAirport : Ind Airport ; + fun KandlaAirport : Ind Airport ; -fun KandrianAirport : Ind Airport ; + fun KandrianAirport : Ind Airport ; -fun KangambaAirport : Ind Airport ; + fun KangambaAirport : Ind Airport ; -fun KanganAirport : Ind Airport ; + fun KanganAirport : Ind Airport ; -fun KangnungAirport : Ind Airport ; + fun KangnungAirport : Ind Airport ; -fun KaniamaAirport : Ind Airport ; + fun KaniamaAirport : Ind Airport ; -fun KankanAirport : Ind Airport ; + fun KankanAirport : Ind Airport ; -fun KanoAirport : Ind Airport ; + fun KanoAirport : Ind Airport ; -fun KanombeKigaliAirport : Ind Airport ; + fun KanombeKigaliAirport : Ind Airport ; -fun KanpurAirport : Ind Airport ; + fun KanpurAirport : Ind Airport ; -fun KansaiOsakaAirport : Ind Airport ; + fun KansaiOsakaAirport : Ind Airport ; -fun KanuaAirport : Ind Airport ; + fun KanuaAirport : Ind Airport ; -fun KaolackAirport : Ind Airport ; + fun KaolackAirport : Ind Airport ; -fun KapaluaWestMauiHIAirport : Ind Airport ; + fun KapaluaWestMauiHIAirport : Ind Airport ; -fun KapangaAirport : Ind Airport ; + fun KapangaAirport : Ind Airport ; -fun KapitSarawakAirport : Ind Airport ; + fun KapitSarawakAirport : Ind Airport ; -fun KarKarAirport : Ind Airport ; + fun KarKarAirport : Ind Airport ; -fun KarachiAirport : Ind Airport ; + fun KarachiAirport : Ind Airport ; -fun KaramayAirport : Ind Airport ; + fun KaramayAirport : Ind Airport ; -fun KaranamboAirport : Ind Airport ; + fun KaranamboAirport : Ind Airport ; -fun KarasabaiAirport : Ind Airport ; + fun KarasabaiAirport : Ind Airport ; -fun KarasburgAirport : Ind Airport ; + fun KarasburgAirport : Ind Airport ; -fun KaratoAirport : Ind Airport ; + fun KaratoAirport : Ind Airport ; -fun KarawariAirport : Ind Airport ; + fun KarawariAirport : Ind Airport ; -fun KardjaliAirport : Ind Airport ; + fun KardjaliAirport : Ind Airport ; -fun KardlaAirport : Ind Airport ; + fun KardlaAirport : Ind Airport ; -fun KaribaAirport : Ind Airport ; + fun KaribaAirport : Ind Airport ; -fun KarimuiAirport : Ind Airport ; + fun KarimuiAirport : Ind Airport ; -fun KarlovyVaryAirport : Ind Airport ; + fun KarlovyVaryAirport : Ind Airport ; -fun KarlskogaAirport : Ind Airport ; + fun KarlskogaAirport : Ind Airport ; -fun KarlstadAirport : Ind Airport ; + fun KarlstadAirport : Ind Airport ; -fun KarlukAKAirport : Ind Airport ; + fun KarlukAKAirport : Ind Airport ; -fun KarlukLakeSeaplaneBaseAKAirport : Ind Airport ; + fun KarlukLakeSeaplaneBaseAKAirport : Ind Airport ; -fun KarmoyHaugesundAirport : Ind Airport ; + fun KarmoyHaugesundAirport : Ind Airport ; -fun KarongaAirport : Ind Airport ; + fun KarongaAirport : Ind Airport ; -fun KaroolaAirport : Ind Airport ; + fun KaroolaAirport : Ind Airport ; -fun KarpathosAirport : Ind Airport ; + fun KarpathosAirport : Ind Airport ; -fun KarrathaWesternAustraliaAirport : Ind Airport ; + fun KarrathaWesternAustraliaAirport : Ind Airport ; -fun KarubagaAirport : Ind Airport ; + fun KarubagaAirport : Ind Airport ; -fun KarumbaQueenslandAirport : Ind Airport ; + fun KarumbaQueenslandAirport : Ind Airport ; -fun KarupAirport : Ind Airport ; + fun KarupAirport : Ind Airport ; -fun KasaanSeaplaneBaseAKAirport : Ind Airport ; + fun KasaanSeaplaneBaseAKAirport : Ind Airport ; -fun KasamaAirport : Ind Airport ; + fun KasamaAirport : Ind Airport ; -fun KasaneAirport : Ind Airport ; + fun KasaneAirport : Ind Airport ; -fun KasanombeAirport : Ind Airport ; + fun KasanombeAirport : Ind Airport ; -fun KasengaAirport : Ind Airport ; + fun KasengaAirport : Ind Airport ; -fun KaseseAirport : Ind Airport ; + fun KaseseAirport : Ind Airport ; -fun KashiAirport : Ind Airport ; + fun KashiAirport : Ind Airport ; -fun KasiglukAKAirport : Ind Airport ; + fun KasiglukAKAirport : Ind Airport ; -fun KasikasimaAirport : Ind Airport ; + fun KasikasimaAirport : Ind Airport ; -fun KasongoLundaAirport : Ind Airport ; + fun KasongoLundaAirport : Ind Airport ; -fun KasosIslandCreteAirport : Ind Airport ; + fun KasosIslandCreteAirport : Ind Airport ; -fun KassalaAirport : Ind Airport ; + fun KassalaAirport : Ind Airport ; -fun KasselAirport : Ind Airport ; + fun KasselAirport : Ind Airport ; -fun KastelorizoAirport : Ind Airport ; + fun KastelorizoAirport : Ind Airport ; -fun KastoriaAirport : Ind Airport ; + fun KastoriaAirport : Ind Airport ; -fun KastrupKobenhavnCopenhagenAirport : Ind Airport ; + fun KastrupKobenhavnCopenhagenAirport : Ind Airport ; -fun KasunguAirport : Ind Airport ; + fun KasunguAirport : Ind Airport ; -fun KatanningWesternAustraliaAirport : Ind Airport ; + fun KatanningWesternAustraliaAirport : Ind Airport ; -fun KatherineNorthernTerritoryAirport : Ind Airport ; + fun KatherineNorthernTerritoryAirport : Ind Airport ; -fun KatoAirport : Ind Airport ; + fun KatoAirport : Ind Airport ; -fun KatunayakeColomboAirport : Ind Airport ; + fun KatunayakeColomboAirport : Ind Airport ; -fun KauAirport : Ind Airport ; + fun KauAirport : Ind Airport ; -fun KauhajokiAirport : Ind Airport ; + fun KauhajokiAirport : Ind Airport ; -fun KauhavaAirport : Ind Airport ; + fun KauhavaAirport : Ind Airport ; -fun KaukuraAirport : Ind Airport ; + fun KaukuraAirport : Ind Airport ; -fun KaunasAirport : Ind Airport ; + fun KaunasAirport : Ind Airport ; -fun KavallaKavalaAirport : Ind Airport ; + fun KavallaKavalaAirport : Ind Airport ; -fun KavanayenAirport : Ind Airport ; + fun KavanayenAirport : Ind Airport ; -fun KaviengAirport : Ind Airport ; + fun KaviengAirport : Ind Airport ; -fun KawadjiaAirport : Ind Airport ; + fun KawadjiaAirport : Ind Airport ; -fun KawauIslandAirport : Ind Airport ; + fun KawauIslandAirport : Ind Airport ; -fun KawitoAirport : Ind Airport ; + fun KawitoAirport : Ind Airport ; -fun KawthaungAirport : Ind Airport ; + fun KawthaungAirport : Ind Airport ; -fun KayesAirport : Ind Airport ; + fun KayesAirport : Ind Airport ; -fun KayseriAirport : Ind Airport ; + fun KayseriAirport : Ind Airport ; -fun KazanTatarstanAirport : Ind Airport ; + fun KazanTatarstanAirport : Ind Airport ; -fun KeaholeKonaInternationalHIAirport : Ind Airport ; + fun KeaholeKonaInternationalHIAirport : Ind Airport ; -fun KearneyMunicipalNEAirport : Ind Airport ; + fun KearneyMunicipalNEAirport : Ind Airport ; -fun KebarAirport : Ind Airport ; + fun KebarAirport : Ind Airport ; -fun KedougouAirport : Ind Airport ; + fun KedougouAirport : Ind Airport ; -fun KeeslerAirForceBaseMSAirport : Ind Airport ; + fun KeeslerAirForceBaseMSAirport : Ind Airport ; -fun KeetmanshoopAirport : Ind Airport ; + fun KeetmanshoopAirport : Ind Airport ; -fun KefaloniaKefalliniaAirport : Ind Airport ; + fun KefaloniaKefalliniaAirport : Ind Airport ; -fun KeflavikReykjavikAirport : Ind Airport ; + fun KeflavikReykjavikAirport : Ind Airport ; -fun KegelmanAirForceAuxiliaryFieldOKAirport : Ind Airport ; + fun KegelmanAirForceAuxiliaryFieldOKAirport : Ind Airport ; -fun KeglsuglAirport : Ind Airport ; + fun KeglsuglAirport : Ind Airport ; -fun KeisahAirport : Ind Airport ; + fun KeisahAirport : Ind Airport ; -fun KekanaKauaiAirport : Ind Airport ; + fun KekanaKauaiAirport : Ind Airport ; -fun KelleAirport : Ind Airport ; + fun KelleAirport : Ind Airport ; -fun KelpBayAKAirport : Ind Airport ; + fun KelpBayAKAirport : Ind Airport ; -fun KelseyMBAirport : Ind Airport ; + fun KelseyMBAirport : Ind Airport ; -fun KelsoLongviewWAAirport : Ind Airport ; + fun KelsoLongviewWAAirport : Ind Airport ; -fun KeluangAirport : Ind Airport ; + fun KeluangAirport : Ind Airport ; -fun KemerovoKemerovoAirport : Ind Airport ; + fun KemerovoKemerovoAirport : Ind Airport ; -fun KemmererMunicipalWYAirport : Ind Airport ; + fun KemmererMunicipalWYAirport : Ind Airport ; -fun KempseyNewSouthWalesAirport : Ind Airport ; + fun KempseyNewSouthWalesAirport : Ind Airport ; -fun KenaiMunicipalAKAirport : Ind Airport ; + fun KenaiMunicipalAKAirport : Ind Airport ; -fun KenemaAirport : Ind Airport ; + fun KenemaAirport : Ind Airport ; -fun KengtungAirport : Ind Airport ; + fun KengtungAirport : Ind Airport ; -fun KeniebaAirport : Ind Airport ; + fun KeniebaAirport : Ind Airport ; -fun KeningauAirport : Ind Airport ; + fun KeningauAirport : Ind Airport ; -fun KenmoreAirHarborIncSeaplaneBaseWAAirport : Ind Airport ; + fun KenmoreAirHarborIncSeaplaneBaseWAAirport : Ind Airport ; -fun KennettMemorialMOAirport : Ind Airport ; + fun KennettMemorialMOAirport : Ind Airport ; -fun KennyCoveAirport : Ind Airport ; + fun KennyCoveAirport : Ind Airport ; -fun KenoshaMunicipalWIAirport : Ind Airport ; + fun KenoshaMunicipalWIAirport : Ind Airport ; -fun KentCountyInternationalMIAirport : Ind Airport ; + fun KentCountyInternationalMIAirport : Ind Airport ; -fun KentlandMunicipalINAirport : Ind Airport ; + fun KentlandMunicipalINAirport : Ind Airport ; -fun KeokukMunicipalIAAirport : Ind Airport ; + fun KeokukMunicipalIAAirport : Ind Airport ; -fun KepiAirport : Ind Airport ; + fun KepiAirport : Ind Airport ; -fun KeramaAirport : Ind Airport ; + fun KeramaAirport : Ind Airport ; -fun KerangVictoriaAirport : Ind Airport ; + fun KerangVictoriaAirport : Ind Airport ; -fun KerchKrymCrimeaAirport : Ind Airport ; + fun KerchKrymCrimeaAirport : Ind Airport ; -fun KeremaAirport : Ind Airport ; + fun KeremaAirport : Ind Airport ; -fun KerichoAirport : Ind Airport ; + fun KerichoAirport : Ind Airport ; -fun KerikeriBayofIslandsAirport : Ind Airport ; + fun KerikeriBayofIslandsAirport : Ind Airport ; -fun KerinciSamatraAirport : Ind Airport ; + fun KerinciSamatraAirport : Ind Airport ; -fun KerioValleyAirport : Ind Airport ; + fun KerioValleyAirport : Ind Airport ; -fun KerkyraCorfuAirport : Ind Airport ; + fun KerkyraCorfuAirport : Ind Airport ; -fun KermanAirport : Ind Airport ; + fun KermanAirport : Ind Airport ; -fun KermanshahAirport : Ind Airport ; + fun KermanshahAirport : Ind Airport ; -fun KerrvilleMunicipalAirportLouisSchreinerFieldTXAirport : Ind Airport ; + fun KerrvilleMunicipalAirportLouisSchreinerFieldTXAirport : Ind Airport ; -fun KertehAirport : Ind Airport ; + fun KertehAirport : Ind Airport ; -fun KeruaAirport : Ind Airport ; + fun KeruaAirport : Ind Airport ; -fun KeshodAirport : Ind Airport ; + fun KeshodAirport : Ind Airport ; -fun KetapangBorneoAirport : Ind Airport ; + fun KetapangBorneoAirport : Ind Airport ; -fun KetchikanInternationalAKAirport : Ind Airport ; + fun KetchikanInternationalAKAirport : Ind Airport ; -fun KewaneeMunicipalILAirport : Ind Airport ; + fun KewaneeMunicipalILAirport : Ind Airport ; -fun KeyLargoFLAirport : Ind Airport ; + fun KeyLargoFLAirport : Ind Airport ; -fun KeyWestInternationalFLAirport : Ind Airport ; + fun KeyWestInternationalFLAirport : Ind Airport ; -fun KhajurahoAirport : Ind Airport ; + fun KhajurahoAirport : Ind Airport ; -fun KhamisMushayatAbhaAirport : Ind Airport ; + fun KhamisMushayatAbhaAirport : Ind Airport ; -fun KhamisMuskaytAirport : Ind Airport ; + fun KhamisMuskaytAirport : Ind Airport ; -fun KhamtiAirport : Ind Airport ; + fun KhamtiAirport : Ind Airport ; -fun KhanehAirport : Ind Airport ; + fun KhanehAirport : Ind Airport ; -fun KharkAirport : Ind Airport ; + fun KharkAirport : Ind Airport ; -fun KharkivKharkovKharkivAirport : Ind Airport ; + fun KharkivKharkovKharkivAirport : Ind Airport ; -fun KhartoumAirport : Ind Airport ; + fun KhartoumAirport : Ind Airport ; -fun KhasabAirport : Ind Airport ; + fun KhasabAirport : Ind Airport ; -fun KhashmelGirbaAirport : Ind Airport ; + fun KhashmelGirbaAirport : Ind Airport ; -fun KhaskovoAirport : Ind Airport ; + fun KhaskovoAirport : Ind Airport ; -fun KhersonMykolayivAirport : Ind Airport ; + fun KhersonMykolayivAirport : Ind Airport ; -fun KhmelnytskyyKhmelnitskiyKhmelnytskyyAirport : Ind Airport ; + fun KhmelnytskyyKhmelnitskiyKhmelnytskyyAirport : Ind Airport ; -fun KhonKaenAirport : Ind Airport ; + fun KhonKaenAirport : Ind Airport ; -fun KhongAirport : Ind Airport ; + fun KhongAirport : Ind Airport ; -fun KhostAirport : Ind Airport ; + fun KhostAirport : Ind Airport ; -fun KhowaiAirport : Ind Airport ; + fun KhowaiAirport : Ind Airport ; -fun KhulnaAirport : Ind Airport ; + fun KhulnaAirport : Ind Airport ; -fun KhuzdarAirport : Ind Airport ; + fun KhuzdarAirport : Ind Airport ; -fun KhwahanAirport : Ind Airport ; + fun KhwahanAirport : Ind Airport ; -fun KhwaiRiverLandingAirport : Ind Airport ; + fun KhwaiRiverLandingAirport : Ind Airport ; -fun KibrisAirport : Ind Airport ; + fun KibrisAirport : Ind Airport ; -fun KickapooDowntownAirparkTXAirport : Ind Airport ; + fun KickapooDowntownAirparkTXAirport : Ind Airport ; -fun KielAirport : Ind Airport ; + fun KielAirport : Ind Airport ; -fun KietaAirport : Ind Airport ; + fun KietaAirport : Ind Airport ; -fun KiffaAirport : Ind Airport ; + fun KiffaAirport : Ind Airport ; -fun KikaigaShimaAirport : Ind Airport ; + fun KikaigaShimaAirport : Ind Airport ; -fun KikinondaAirport : Ind Airport ; + fun KikinondaAirport : Ind Airport ; -fun KikoriAirport : Ind Airport ; + fun KikoriAirport : Ind Airport ; -fun KikwitAirport : Ind Airport ; + fun KikwitAirport : Ind Airport ; -fun KilaguniAirport : Ind Airport ; + fun KilaguniAirport : Ind Airport ; -fun KiliKiliIslandAirport : Ind Airport ; + fun KiliKiliIslandAirport : Ind Airport ; -fun KilimanjaroAirport : Ind Airport ; + fun KilimanjaroAirport : Ind Airport ; -fun KilkennyAirport : Ind Airport ; + fun KilkennyAirport : Ind Airport ; -fun KillarneyKerryCountyAirport : Ind Airport ; + fun KillarneyKerryCountyAirport : Ind Airport ; -fun KilleenMunicipalTXAirport : Ind Airport ; + fun KilleenMunicipalTXAirport : Ind Airport ; -fun KilwaAirport : Ind Airport ; + fun KilwaAirport : Ind Airport ; -fun KilwaAirportTanzania : Ind Airport ; + fun KilwaAirportTanzania : Ind Airport ; -fun KimamAirport : Ind Airport ; + fun KimamAirport : Ind Airport ; -fun KimballMunicipalAirportRobertEArrajFieldNEAirport : Ind Airport ; + fun KimballMunicipalAirportRobertEArrajFieldNEAirport : Ind Airport ; -fun KimbeHoskinsAirport : Ind Airport ; + fun KimbeHoskinsAirport : Ind Airport ; -fun KimberleyAirport : Ind Airport ; + fun KimberleyAirport : Ind Airport ; -fun KimberlyDownsWesternAustraliaAirport : Ind Airport ; + fun KimberlyDownsWesternAustraliaAirport : Ind Airport ; -fun KimbleCountyTXAirport : Ind Airport ; + fun KimbleCountyTXAirport : Ind Airport ; -fun KincheldeAirForceBaseMIAirport : Ind Airport ; + fun KincheldeAirForceBaseMIAirport : Ind Airport ; -fun KindambaAirport : Ind Airport ; + fun KindambaAirport : Ind Airport ; -fun KindleyFieldBermudaAirport : Ind Airport ; + fun KindleyFieldBermudaAirport : Ind Airport ; -fun KinduAirport : Ind Airport ; + fun KinduAirport : Ind Airport ; -fun KingAbdulAzizJeddahAirport : Ind Airport ; + fun KingAbdulAzizJeddahAirport : Ind Airport ; -fun KingCoveAKAirport : Ind Airport ; + fun KingCoveAKAirport : Ind Airport ; -fun KingIslandTasmaniaAirport : Ind Airport ; + fun KingIslandTasmaniaAirport : Ind Airport ; -fun KingSalmonAKAirport : Ind Airport ; + fun KingSalmonAKAirport : Ind Airport ; -fun KingaroyQueenslandAirport : Ind Airport ; + fun KingaroyQueenslandAirport : Ind Airport ; -fun KingfisherLakeAerodromeONAirport : Ind Airport ; + fun KingfisherLakeAerodromeONAirport : Ind Airport ; -fun KingmanAZAirport : Ind Airport ; + fun KingmanAZAirport : Ind Airport ; -fun KingsCanyonNorthernTerritoryAirport : Ind Airport ; + fun KingsCanyonNorthernTerritoryAirport : Ind Airport ; -fun KingsCreekStationAirport : Ind Airport ; + fun KingsCreekStationAirport : Ind Airport ; -fun KingscoteKangarooIslandSouthAustraliaAirport : Ind Airport ; + fun KingscoteKangarooIslandSouthAustraliaAirport : Ind Airport ; -fun KinmenAirport : Ind Airport ; + fun KinmenAirport : Ind Airport ; -fun KinstonRegionalJetportatStallingsFieldNCAirport : Ind Airport ; + fun KinstonRegionalJetportatStallingsFieldNCAirport : Ind Airport ; -fun KipnukAKAirport : Ind Airport ; + fun KipnukAKAirport : Ind Airport ; -fun KiraAirport : Ind Airport ; + fun KiraAirport : Ind Airport ; -fun KirakiraAirport : Ind Airport ; + fun KirakiraAirport : Ind Airport ; -fun KiriAirport : Ind Airport ; + fun KiriAirport : Ind Airport ; -fun KirkimbieAirport : Ind Airport ; + fun KirkimbieAirport : Ind Airport ; -fun KirksvilleRegionalMOAirport : Ind Airport ; + fun KirksvilleRegionalMOAirport : Ind Airport ; -fun KirkukAirport : Ind Airport ; + fun KirkukAirport : Ind Airport ; -fun KirkwallOrkneyIslandsAirport : Ind Airport ; + fun KirkwallOrkneyIslandsAirport : Ind Airport ; -fun KirovohradKirovogradKirovohradAirport : Ind Airport ; + fun KirovohradKirovogradKirovohradAirport : Ind Airport ; -fun KirschMunicipalMIAirport : Ind Airport ; + fun KirschMunicipalMIAirport : Ind Airport ; -fun KirunaAirport : Ind Airport ; + fun KirunaAirport : Ind Airport ; -fun KirunduAirport : Ind Airport ; + fun KirunduAirport : Ind Airport ; -fun KiryatShmonaAirport : Ind Airport ; + fun KiryatShmonaAirport : Ind Airport ; -fun KisenganAirport : Ind Airport ; + fun KisenganAirport : Ind Airport ; -fun KishIslandAirport : Ind Airport ; + fun KishIslandAirport : Ind Airport ; -fun KismayuAirport : Ind Airport ; + fun KismayuAirport : Ind Airport ; -fun KissidougouAirport : Ind Airport ; + fun KissidougouAirport : Ind Airport ; -fun KisumuAirport : Ind Airport ; + fun KisumuAirport : Ind Airport ; -fun KitaDaitoAirport : Ind Airport ; + fun KitaDaitoAirport : Ind Airport ; -fun KitaKyushuAirport : Ind Airport ; + fun KitaKyushuAirport : Ind Airport ; -fun KitaleAirport : Ind Airport ; + fun KitaleAirport : Ind Airport ; -fun KitavaAirport : Ind Airport ; + fun KitavaAirport : Ind Airport ; -fun KithiraAirport : Ind Airport ; + fun KithiraAirport : Ind Airport ; -fun KitoiBaySeaplaneBaseAKAirport : Ind Airport ; + fun KitoiBaySeaplaneBaseAKAirport : Ind Airport ; -fun KitsaultBCAirport : Ind Airport ; + fun KitsaultBCAirport : Ind Airport ; -fun KittilaAirport : Ind Airport ; + fun KittilaAirport : Ind Airport ; -fun KitweAirport : Ind Airport ; + fun KitweAirport : Ind Airport ; -fun KiungaAirportKenya : Ind Airport ; + fun KiungaAirportKenya : Ind Airport ; -fun KivalinaAKAirport : Ind Airport ; + fun KivalinaAKAirport : Ind Airport ; -fun KiwaiIslandAirport : Ind Airport ; + fun KiwaiIslandAirport : Ind Airport ; -fun KiwayuAirport : Ind Airport ; + fun KiwayuAirport : Ind Airport ; -fun KizhuyakAKAirport : Ind Airport ; + fun KizhuyakAKAirport : Ind Airport ; -fun KjevikKristiansandAirport : Ind Airport ; + fun KjevikKristiansandAirport : Ind Airport ; -fun KlagBayAKAirport : Ind Airport ; + fun KlagBayAKAirport : Ind Airport ; -fun KlagenfurtAirport : Ind Airport ; + fun KlagenfurtAirport : Ind Airport ; -fun KlaipedaAirport : Ind Airport ; + fun KlaipedaAirport : Ind Airport ; -fun KlawockAKAirport : Ind Airport ; + fun KlawockAKAirport : Ind Airport ; -fun KleinzeeAirport : Ind Airport ; + fun KleinzeeAirport : Ind Airport ; -fun KlerksdorpAirport : Ind Airport ; + fun KlerksdorpAirport : Ind Airport ; -fun KnokkeHeistZouteAirport : Ind Airport ; + fun KnokkeHeistZouteAirport : Ind Airport ; -fun KnoxArmyHeliportALAirport : Ind Airport ; + fun KnoxArmyHeliportALAirport : Ind Airport ; -fun KnoxvilleDowntownIslandTNAirport : Ind Airport ; + fun KnoxvilleDowntownIslandTNAirport : Ind Airport ; -fun KochiAirport : Ind Airport ; + fun KochiAirport : Ind Airport ; -fun KodiakAKAirport : Ind Airport ; + fun KodiakAKAirport : Ind Airport ; -fun KodiakMunicipalAKAirport : Ind Airport ; + fun KodiakMunicipalAKAirport : Ind Airport ; -fun KoelnKolnAirport : Ind Airport ; + fun KoelnKolnAirport : Ind Airport ; -fun KoinambeAirport : Ind Airport ; + fun KoinambeAirport : Ind Airport ; -fun KoingnaasAirport : Ind Airport ; + fun KoingnaasAirport : Ind Airport ; -fun KokeKathiemLopBuriAirport : Ind Airport ; + fun KokeKathiemLopBuriAirport : Ind Airport ; -fun KokodaAirport : Ind Airport ; + fun KokodaAirport : Ind Airport ; -fun KokonaoAirport : Ind Airport ; + fun KokonaoAirport : Ind Airport ; -fun KokoroAirport : Ind Airport ; + fun KokoroAirport : Ind Airport ; -fun KokrinesAKAirport : Ind Airport ; + fun KokrinesAKAirport : Ind Airport ; -fun KokshetauKokchetavKokshetauAirport : Ind Airport ; + fun KokshetauKokchetavKokshetauAirport : Ind Airport ; -fun KolAirport : Ind Airport ; + fun KolAirport : Ind Airport ; -fun KoldaAirport : Ind Airport ; + fun KoldaAirport : Ind Airport ; -fun KolhapurAirport : Ind Airport ; + fun KolhapurAirport : Ind Airport ; -fun KolweziAirport : Ind Airport ; + fun KolweziAirport : Ind Airport ; -fun KomacoAirport : Ind Airport ; + fun KomacoAirport : Ind Airport ; -fun KomoMandaAirport : Ind Airport ; + fun KomoMandaAirport : Ind Airport ; -fun KomoroDiliAirport : Ind Airport ; + fun KomoroDiliAirport : Ind Airport ; -fun KompiamAirport : Ind Airport ; + fun KompiamAirport : Ind Airport ; -fun KompongChhnangAirport : Ind Airport ; + fun KompongChhnangAirport : Ind Airport ; -fun KompongThomAirport : Ind Airport ; + fun KompongThomAirport : Ind Airport ; -fun KompongsomAirport : Ind Airport ; + fun KompongsomAirport : Ind Airport ; -fun KomsomolskNaAmureKhabarovskAirport : Ind Airport ; + fun KomsomolskNaAmureKhabarovskAirport : Ind Airport ; -fun KonawarukAirport : Ind Airport ; + fun KonawarukAirport : Ind Airport ; -fun KoneAirport : Ind Airport ; + fun KoneAirport : Ind Airport ; -fun KongeAirport : Ind Airport ; + fun KongeAirport : Ind Airport ; -fun KongiganakAKAirport : Ind Airport ; + fun KongiganakAKAirport : Ind Airport ; -fun KongoboumbaAirport : Ind Airport ; + fun KongoboumbaAirport : Ind Airport ; -fun KongoloAirport : Ind Airport ; + fun KongoloAirport : Ind Airport ; -fun KonoAirport : Ind Airport ; + fun KonoAirport : Ind Airport ; -fun KontumAirport : Ind Airport ; + fun KontumAirport : Ind Airport ; -fun KonyaAirport : Ind Airport ; + fun KonyaAirport : Ind Airport ; -fun KoolatahQueenslandAirport : Ind Airport ; + fun KoolatahQueenslandAirport : Ind Airport ; -fun KoolburraQueenslandAirport : Ind Airport ; + fun KoolburraQueenslandAirport : Ind Airport ; -fun KoonibbaSouthAustraliaAirport : Ind Airport ; + fun KoonibbaSouthAustraliaAirport : Ind Airport ; -fun KopiagoAirport : Ind Airport ; + fun KopiagoAirport : Ind Airport ; -fun KorhogoAirport : Ind Airport ; + fun KorhogoAirport : Ind Airport ; -fun KorlaAirport : Ind Airport ; + fun KorlaAirport : Ind Airport ; -fun KoroAirport : Ind Airport ; + fun KoroAirport : Ind Airport ; -fun KorobaAirport : Ind Airport ; + fun KorobaAirport : Ind Airport ; -fun KorolevuAirport : Ind Airport ; + fun KorolevuAirport : Ind Airport ; -fun KortrijkWevelgemKortrijkAirport : Ind Airport ; + fun KortrijkWevelgemKortrijkAirport : Ind Airport ; -fun KosKosIslandAirport : Ind Airport ; + fun KosKosIslandAirport : Ind Airport ; -fun KosipeAirport : Ind Airport ; + fun KosipeAirport : Ind Airport ; -fun KosreaKosraeIslandAirport : Ind Airport ; + fun KosreaKosraeIslandAirport : Ind Airport ; -fun KostiAirport : Ind Airport ; + fun KostiAirport : Ind Airport ; -fun KotaAirport : Ind Airport ; + fun KotaAirport : Ind Airport ; -fun KotaBharuAirport : Ind Airport ; + fun KotaBharuAirport : Ind Airport ; -fun KotaKinabaluEastAirport : Ind Airport ; + fun KotaKinabaluEastAirport : Ind Airport ; -fun KotabangunAirport : Ind Airport ; + fun KotabangunAirport : Ind Airport ; -fun KotabaruAirport : Ind Airport ; + fun KotabaruAirport : Ind Airport ; -fun KotakoliAirport : Ind Airport ; + fun KotakoliAirport : Ind Airport ; -fun KotlikAKAirport : Ind Airport ; + fun KotlikAKAirport : Ind Airport ; -fun KotokaAccraAirport : Ind Airport ; + fun KotokaAccraAirport : Ind Airport ; -fun KoulamoutouAirport : Ind Airport ; + fun KoulamoutouAirport : Ind Airport ; -fun KoumacAirport : Ind Airport ; + fun KoumacAirport : Ind Airport ; -fun KoumalaAirport : Ind Airport ; + fun KoumalaAirport : Ind Airport ; -fun KoutabaAirport : Ind Airport ; + fun KoutabaAirport : Ind Airport ; -fun KoutialaAirport : Ind Airport ; + fun KoutialaAirport : Ind Airport ; -fun KowanyamaQueenslandAirport : Ind Airport ; + fun KowanyamaQueenslandAirport : Ind Airport ; -fun KoyukAKAirport : Ind Airport ; + fun KoyukAKAirport : Ind Airport ; -fun KoyukukAKAirport : Ind Airport ; + fun KoyukukAKAirport : Ind Airport ; -fun KozaniAirport : Ind Airport ; + fun KozaniAirport : Ind Airport ; -fun KrabiAirport : Ind Airport ; + fun KrabiAirport : Ind Airport ; -fun KrakorAirport : Ind Airport ; + fun KrakorAirport : Ind Airport ; -fun KramatorskDonetskAirport : Ind Airport ; + fun KramatorskDonetskAirport : Ind Airport ; -fun KramforsAirport : Ind Airport ; + fun KramforsAirport : Ind Airport ; -fun KranebittenInnsbruckAirport : Ind Airport ; + fun KranebittenInnsbruckAirport : Ind Airport ; -fun KrasnodarKrasnodarAirport : Ind Airport ; + fun KrasnodarKrasnodarAirport : Ind Airport ; -fun KrasnodovskBalkanAirport : Ind Airport ; + fun KrasnodovskBalkanAirport : Ind Airport ; -fun KrasnoyarskKrasnoyarskAirport : Ind Airport ; + fun KrasnoyarskKrasnoyarskAirport : Ind Airport ; -fun KratieAirport : Ind Airport ; + fun KratieAirport : Ind Airport ; -fun KremenchukKremenchugPoltavaAirport : Ind Airport ; + fun KremenchukKremenchugPoltavaAirport : Ind Airport ; -fun KribiAirport : Ind Airport ; + fun KribiAirport : Ind Airport ; -fun KristianstadAirport : Ind Airport ; + fun KristianstadAirport : Ind Airport ; -fun KrivyyRihKrivoyRogDnipropetrovskAirport : Ind Airport ; + fun KrivyyRihKrivoyRogDnipropetrovskAirport : Ind Airport ; -fun KualaBelaitAirport : Ind Airport ; + fun KualaBelaitAirport : Ind Airport ; -fun KuantanAirport : Ind Airport ; + fun KuantanAirport : Ind Airport ; -fun KubinIslandAirport : Ind Airport ; + fun KubinIslandAirport : Ind Airport ; -fun KuchingEastAirport : Ind Airport ; + fun KuchingEastAirport : Ind Airport ; -fun KudatSabahAirport : Ind Airport ; + fun KudatSabahAirport : Ind Airport ; -fun KufrahAirport : Ind Airport ; + fun KufrahAirport : Ind Airport ; -fun KukunduAirport : Ind Airport ; + fun KukunduAirport : Ind Airport ; -fun KulgeraNorthernTerritoryAirport : Ind Airport ; + fun KulgeraNorthernTerritoryAirport : Ind Airport ; -fun KuluAirport : Ind Airport ; + fun KuluAirport : Ind Airport ; -fun KulusukIslandAirport : Ind Airport ; + fun KulusukIslandAirport : Ind Airport ; -fun KumamotoAirport : Ind Airport ; + fun KumamotoAirport : Ind Airport ; -fun KumasiAirport : Ind Airport ; + fun KumasiAirport : Ind Airport ; -fun KumgimAirport : Ind Airport ; + fun KumgimAirport : Ind Airport ; -fun KunsanAirport : Ind Airport ; + fun KunsanAirport : Ind Airport ; -fun KununurraWesternAustraliaAirport : Ind Airport ; + fun KununurraWesternAustraliaAirport : Ind Airport ; -fun KuopioAirport : Ind Airport ; + fun KuopioAirport : Ind Airport ; -fun KuorevisiAirport : Ind Airport ; + fun KuorevisiAirport : Ind Airport ; -fun KupianoAirport : Ind Airport ; + fun KupianoAirport : Ind Airport ; -fun KupperNJAirport : Ind Airport ; + fun KupperNJAirport : Ind Airport ; -fun KuqaAirport : Ind Airport ; + fun KuqaAirport : Ind Airport ; -fun KuranAirport : Ind Airport ; + fun KuranAirport : Ind Airport ; -fun KurganKurganAirport : Ind Airport ; + fun KurganKurganAirport : Ind Airport ; -fun KuriAirport : Ind Airport ; + fun KuriAirport : Ind Airport ; -fun KuriaAirport : Ind Airport ; + fun KuriaAirport : Ind Airport ; -fun KurumanAirport : Ind Airport ; + fun KurumanAirport : Ind Airport ; -fun KurundiNorthernTerritoryAirport : Ind Airport ; + fun KurundiNorthernTerritoryAirport : Ind Airport ; -fun KurupungAirport : Ind Airport ; + fun KurupungAirport : Ind Airport ; -fun KurwinaAirport : Ind Airport ; + fun KurwinaAirport : Ind Airport ; -fun KushimotoAirport : Ind Airport ; + fun KushimotoAirport : Ind Airport ; -fun KushiroAirport : Ind Airport ; + fun KushiroAirport : Ind Airport ; -fun KutaisiAirport : Ind Airport ; + fun KutaisiAirport : Ind Airport ; -fun KuusamoAirport : Ind Airport ; + fun KuusamoAirport : Ind Airport ; -fun KuvumuBukavuAirport : Ind Airport ; + fun KuvumuBukavuAirport : Ind Airport ; -fun KuwaitAirport : Ind Airport ; + fun KuwaitAirport : Ind Airport ; -fun KvernbergetKristiansundAirport : Ind Airport ; + fun KvernbergetKristiansundAirport : Ind Airport ; -fun KwaiHarbourAirport : Ind Airport ; + fun KwaiHarbourAirport : Ind Airport ; -fun KwangjuAirport : Ind Airport ; + fun KwangjuAirport : Ind Airport ; -fun KwethlukAKAirport : Ind Airport ; + fun KwethlukAKAirport : Ind Airport ; -fun KwigillingokSeaplaneBaseAKAirport : Ind Airport ; + fun KwigillingokSeaplaneBaseAKAirport : Ind Airport ; -fun KyaukpyuAirport : Ind Airport ; + fun KyaukpyuAirport : Ind Airport ; -fun KyauktawAirport : Ind Airport ; + fun KyauktawAirport : Ind Airport ; -fun KyleOakleyFieldKYAirport : Ind Airport ; + fun KyleOakleyFieldKYAirport : Ind Airport ; -fun KyzylTuvaAirport : Ind Airport ; + fun KyzylTuvaAirport : Ind Airport ; -fun LaAuroraGuatemalaCityAirport : Ind Airport ; + fun LaAuroraGuatemalaCityAirport : Ind Airport ; -fun LaDefenseHeliportParisAirport : Ind Airport ; + fun LaDefenseHeliportParisAirport : Ind Airport ; -fun LaDesiradeAirport : Ind Airport ; + fun LaDesiradeAirport : Ind Airport ; -fun LaRocheAirport : Ind Airport ; + fun LaRocheAirport : Ind Airport ; -fun LaayouneAirport : Ind Airport ; + fun LaayouneAirport : Ind Airport ; -fun LakeBrooksSeaplaneBaseAKAirport : Ind Airport ; + fun LakeBrooksSeaplaneBaseAKAirport : Ind Airport ; -fun LakeBuenaVistaSTOLFLAirport : Ind Airport ; + fun LakeBuenaVistaSTOLFLAirport : Ind Airport ; -fun LakeHavasuCityAZAirport : Ind Airport ; + fun LakeHavasuCityAZAirport : Ind Airport ; -fun LakefieldOHAirport : Ind Airport ; + fun LakefieldOHAirport : Ind Airport ; -fun LakelandAirportNobleFLeeMemorialFieldWIAirport : Ind Airport ; + fun LakelandAirportNobleFLeeMemorialFieldWIAirport : Ind Airport ; -fun LanderCountyNVAirport : Ind Airport ; + fun LanderCountyNVAirport : Ind Airport ; -fun LandskronaHeliportHelsingborAirport : Ind Airport ; + fun LandskronaHeliportHelsingborAirport : Ind Airport ; -fun LandvetterGoteborgGothenburgAirport : Ind Airport ; + fun LandvetterGoteborgGothenburgAirport : Ind Airport ; -fun LangenhagenHannoverAirport : Ind Airport ; + fun LangenhagenHannoverAirport : Ind Airport ; -fun LanseriaAirport : Ind Airport ; + fun LanseriaAirport : Ind Airport ; -fun LanzaroteCanaryIslandsAirport : Ind Airport ; + fun LanzaroteCanaryIslandsAirport : Ind Airport ; -fun LarsenBayAKAirport : Ind Airport ; + fun LarsenBayAKAirport : Ind Airport ; -fun LasVegasHendersonSkyHarborNVAirport : Ind Airport ; + fun LasVegasHendersonSkyHarborNVAirport : Ind Airport ; -fun LaughlinAirForceBaseTXAirport : Ind Airport ; + fun LaughlinAirForceBaseTXAirport : Ind Airport ; -fun LaughlinBullheadCityAZAirport : Ind Airport ; + fun LaughlinBullheadCityAZAirport : Ind Airport ; -fun LaurenceGHanscomFieldMAAirport : Ind Airport ; + fun LaurenceGHanscomFieldMAAirport : Ind Airport ; -fun LavonNorthTXAirport : Ind Airport ; + fun LavonNorthTXAirport : Ind Airport ; -fun LeCastelletAirport : Ind Airport ; + fun LeCastelletAirport : Ind Airport ; -fun LeLamentinFortdeFranceAirport : Ind Airport ; + fun LeLamentinFortdeFranceAirport : Ind Airport ; -fun LeaCountyHobbsNMAirport : Ind Airport ; + fun LeaCountyHobbsNMAirport : Ind Airport ; -fun LeeCFineMemorialMOAirport : Ind Airport ; + fun LeeCFineMemorialMOAirport : Ind Airport ; -fun LeeGilmerMemorialGAAirport : Ind Airport ; + fun LeeGilmerMemorialGAAirport : Ind Airport ; -fun LeeMDAirport : Ind Airport ; + fun LeeMDAirport : Ind Airport ; -fun LeesburgMunicipalAirportGodfreyFieldVAAirport : Ind Airport ; + fun LeesburgMunicipalAirportGodfreyFieldVAAirport : Ind Airport ; -fun LegerBecharAirport : Ind Airport ; + fun LegerBecharAirport : Ind Airport ; -fun LehAirport : Ind Airport ; + fun LehAirport : Ind Airport ; -fun LemboHeliportNJAirport : Ind Airport ; + fun LemboHeliportNJAirport : Ind Airport ; -fun LenaweeCountyMIAirport : Ind Airport ; + fun LenaweeCountyMIAirport : Ind Airport ; -fun LeonardodaVinciFiumicinoRomaRomeAirport : Ind Airport ; + fun LeonardodaVinciFiumicinoRomaRomeAirport : Ind Airport ; -fun LesCayesAirport : Ind Airport ; + fun LesCayesAirport : Ind Airport ; -fun LevelockAKAirport : Ind Airport ; + fun LevelockAKAirport : Ind Airport ; -fun LewisUniversityILAirport : Ind Airport ; + fun LewisUniversityILAirport : Ind Airport ; -fun LexingtonMunicipalNCAirport : Ind Airport ; + fun LexingtonMunicipalNCAirport : Ind Airport ; -fun LibbyArmyAirFieldSierraVistaMunicipalAZAirport : Ind Airport ; + fun LibbyArmyAirFieldSierraVistaMunicipalAZAirport : Ind Airport ; -fun LilabariAirport : Ind Airport ; + fun LilabariAirport : Ind Airport ; -fun LimaAllenCountyOHAirport : Ind Airport ; + fun LimaAllenCountyOHAirport : Ind Airport ; -fun LincolnMunicipalArmyNationalGuardBaseOperationsNEAirport : Ind Airport ; + fun LincolnMunicipalArmyNationalGuardBaseOperationsNEAirport : Ind Airport ; -fun ListaFarsundAirport : Ind Airport ; + fun ListaFarsundAirport : Ind Airport ; -fun LittleDiomedeIslandAKAirport : Ind Airport ; + fun LittleDiomedeIslandAKAirport : Ind Airport ; -fun LockhartRiversQueenslandAirport : Ind Airport ; + fun LockhartRiversQueenslandAirport : Ind Airport ; -fun LogansportMunicipalINAirport : Ind Airport ; + fun LogansportMunicipalINAirport : Ind Airport ; -fun LongIslandMacArthurNYAirport : Ind Airport ; + fun LongIslandMacArthurNYAirport : Ind Airport ; -fun LongPaisaSabahAirport : Ind Airport ; + fun LongPaisaSabahAirport : Ind Airport ; -fun LongvicDijonAirport : Ind Airport ; + fun LongvicDijonAirport : Ind Airport ; -fun LorraineMetzNancyAirport : Ind Airport ; + fun LorraineMetzNancyAirport : Ind Airport ; -fun LosCanosGuantanamoAirport : Ind Airport ; + fun LosCanosGuantanamoAirport : Ind Airport ; -fun LouisBothaDurbanAirport : Ind Airport ; + fun LouisBothaDurbanAirport : Ind Airport ; -fun LovellFieldTNAirport : Ind Airport ; + fun LovellFieldTNAirport : Ind Airport ; -fun LowenthalFriedrichshafenAirport : Ind Airport ; + fun LowenthalFriedrichshafenAirport : Ind Airport ; -fun LuanoLubumbashiAirport : Ind Airport ; + fun LuanoLubumbashiAirport : Ind Airport ; -fun LuceCountyHaleMIAirport : Ind Airport ; + fun LuceCountyHaleMIAirport : Ind Airport ; -fun LulsgateEnglandAirport : Ind Airport ; + fun LulsgateEnglandAirport : Ind Airport ; -fun LumbalaAirport : Ind Airport ; + fun LumbalaAirport : Ind Airport ; -fun LungiFreetownAirport : Ind Airport ; + fun LungiFreetownAirport : Ind Airport ; -fun LyangasodvKirovAirport : Ind Airport ; + fun LyangasodvKirovAirport : Ind Airport ; -fun MPokoBanguiAirport : Ind Airport ; + fun MPokoBanguiAirport : Ind Airport ; -fun MackallArmyAirFieldNCAirport : Ind Airport ; + fun MackallArmyAirFieldNCAirport : Ind Airport ; -fun MadisonLacQuiParleCountyMNAirport : Ind Airport ; + fun MadisonLacQuiParleCountyMNAirport : Ind Airport ; -fun MaduraiAirport : Ind Airport ; + fun MaduraiAirport : Ind Airport ; -fun MaeHongSonAirport : Ind Airport ; + fun MaeHongSonAirport : Ind Airport ; -fun MagadanMagadanAirport : Ind Airport ; + fun MagadanMagadanAirport : Ind Airport ; -fun MagnoliaMunicipalARAirport : Ind Airport ; + fun MagnoliaMunicipalARAirport : Ind Airport ; -fun MahlonSweetFieldORAirport : Ind Airport ; + fun MahlonSweetFieldORAirport : Ind Airport ; -fun MajorsTXAirport : Ind Airport ; + fun MajorsTXAirport : Ind Airport ; -fun MakabanaAirport : Ind Airport ; + fun MakabanaAirport : Ind Airport ; -fun MakokolaAirport : Ind Airport ; + fun MakokolaAirport : Ind Airport ; -fun MalaMalaAirport : Ind Airport ; + fun MalaMalaAirport : Ind Airport ; -fun MalagaAirport : Ind Airport ; + fun MalagaAirport : Ind Airport ; -fun MalmiHelsinkiAirport : Ind Airport ; + fun MalmiHelsinkiAirport : Ind Airport ; -fun MalmoHarbourHeliportMalmoAirport : Ind Airport ; + fun MalmoHarbourHeliportMalmoAirport : Ind Airport ; -fun MalmstromAirForceBaseMTAirport : Ind Airport ; + fun MalmstromAirForceBaseMTAirport : Ind Airport ; -fun MandelieuCannesAirport : Ind Airport ; + fun MandelieuCannesAirport : Ind Airport ; -fun MandjiAirport : Ind Airport ; + fun MandjiAirport : Ind Airport ; -fun MangaloreAirport : Ind Airport ; + fun MangaloreAirport : Ind Airport ; -fun MangarevaGambierIslandsAirport : Ind Airport ; + fun MangarevaGambierIslandsAirport : Ind Airport ; -fun MannyYokoFreetownAirport : Ind Airport ; + fun MannyYokoFreetownAirport : Ind Airport ; -fun ManokotakAKAirport : Ind Airport ; + fun ManokotakAKAirport : Ind Airport ; -fun MansehraAirport : Ind Airport ; + fun MansehraAirport : Ind Airport ; -fun MansionHouseAirport : Ind Airport ; + fun MansionHouseAirport : Ind Airport ; -fun MaoAirport : Ind Airport ; + fun MaoAirport : Ind Airport ; -fun MareebaQueenslandAirport : Ind Airport ; + fun MareebaQueenslandAirport : Ind Airport ; -fun MarhanRAFStationEnglandAirport : Ind Airport ; + fun MarhanRAFStationEnglandAirport : Ind Airport ; -fun MarieGalanteAirport : Ind Airport ; + fun MarieGalanteAirport : Ind Airport ; -fun MarionCountyALAirport : Ind Airport ; + fun MarionCountyALAirport : Ind Airport ; -fun MarionCountyAirportBrownFieldTNAirport : Ind Airport ; + fun MarionCountyAirportBrownFieldTNAirport : Ind Airport ; -fun MarionCountyRegionalARAirport : Ind Airport ; + fun MarionCountyRegionalARAirport : Ind Airport ; -fun MariscalEstigarribiaAirport : Ind Airport ; + fun MariscalEstigarribiaAirport : Ind Airport ; -fun MarkaAmmanAirport : Ind Airport ; + fun MarkaAmmanAirport : Ind Airport ; -fun MarketCenterHeliportTXAirport : Ind Airport ; + fun MarketCenterHeliportTXAirport : Ind Airport ; -fun MarlboroCountySCAirport : Ind Airport ; + fun MarlboroCountySCAirport : Ind Airport ; -fun MarriottAstrodomeHeliportTXAirport : Ind Airport ; + fun MarriottAstrodomeHeliportTXAirport : Ind Airport ; -fun MarshallArmyAirFieldKSAirport : Ind Airport ; + fun MarshallArmyAirFieldKSAirport : Ind Airport ; -fun MaryvilleMemorialMOAirport : Ind Airport ; + fun MaryvilleMemorialMOAirport : Ind Airport ; -fun MasindiAirport : Ind Airport ; + fun MasindiAirport : Ind Airport ; -fun MasvingoAirport : Ind Airport ; + fun MasvingoAirport : Ind Airport ; -fun MatariIsiroAirport : Ind Airport ; + fun MatariIsiroAirport : Ind Airport ; -fun MataveriEasterIsAirport : Ind Airport ; + fun MataveriEasterIsAirport : Ind Airport ; -fun MaupertusCherbourgAirport : Ind Airport ; + fun MaupertusCherbourgAirport : Ind Airport ; -fun MaxsonAirfieldNYAirport : Ind Airport ; + fun MaxsonAirfieldNYAirport : Ind Airport ; -fun MayaMayaBrazzavilleAirport : Ind Airport ; + fun MayaMayaBrazzavilleAirport : Ind Airport ; -fun McClellanPalomarCAAirport : Ind Airport ; + fun McClellanPalomarCAAirport : Ind Airport ; -fun McConnellAirForceBaseKSAirport : Ind Airport ; + fun McConnellAirForceBaseKSAirport : Ind Airport ; -fun McCordAKAirport : Ind Airport ; + fun McCordAKAirport : Ind Airport ; -fun MeadowsFieldCAAirport : Ind Airport ; + fun MeadowsFieldCAAirport : Ind Airport ; -fun MedellinAirport : Ind Airport ; + fun MedellinAirport : Ind Airport ; -fun MelbourneHeliportVictoriaAirport : Ind Airport ; + fun MelbourneHeliportVictoriaAirport : Ind Airport ; -fun MelvilleHallDominicaRoseauAirport : Ind Airport ; + fun MelvilleHallDominicaRoseauAirport : Ind Airport ; -fun MemorialFieldARAirport : Ind Airport ; + fun MemorialFieldARAirport : Ind Airport ; -fun MercerCountyWVAirport : Ind Airport ; + fun MercerCountyWVAirport : Ind Airport ; -fun MeridianArmyNationalGuardBaseOperationsMSAirport : Ind Airport ; + fun MeridianArmyNationalGuardBaseOperationsMSAirport : Ind Airport ; -fun MerignacBordeauxAirport : Ind Airport ; + fun MerignacBordeauxAirport : Ind Airport ; -fun MerleKMudholeSmithAKAirport : Ind Airport ; + fun MerleKMudholeSmithAKAirport : Ind Airport ; -fun MerrillCMeigsILAirport : Ind Airport ; + fun MerrillCMeigsILAirport : Ind Airport ; -fun MerrittIslandFLAirport : Ind Airport ; + fun MerrittIslandFLAirport : Ind Airport ; -fun MervilleCalonneAirport : Ind Airport ; + fun MervilleCalonneAirport : Ind Airport ; -fun MesadelReyCAAirport : Ind Airport ; + fun MesadelReyCAAirport : Ind Airport ; -fun MethodistHospitalHeliportCAAirport : Ind Airport ; + fun MethodistHospitalHeliportCAAirport : Ind Airport ; -fun MetropolitanAreaBaghdadAirport : Ind Airport ; + fun MetropolitanAreaBaghdadAirport : Ind Airport ; -fun MetropolitanAreaBerlinAirport : Ind Airport ; + fun MetropolitanAreaBerlinAirport : Ind Airport ; -fun MetropolitanAreaBucharestAirport : Ind Airport ; + fun MetropolitanAreaBucharestAirport : Ind Airport ; -fun MetropolitanAreaBuenosAiresAirport : Ind Airport ; + fun MetropolitanAreaBuenosAiresAirport : Ind Airport ; -fun MetropolitanAreaILAirport : Ind Airport ; + fun MetropolitanAreaILAirport : Ind Airport ; -fun MetropolitanAreaJakartaAirport : Ind Airport ; + fun MetropolitanAreaJakartaAirport : Ind Airport ; -fun MetropolitanAreaKSAirport : Ind Airport ; + fun MetropolitanAreaKSAirport : Ind Airport ; -fun MetropolitanAreaMIAirport : Ind Airport ; + fun MetropolitanAreaMIAirport : Ind Airport ; -fun MettelFieldINAirport : Ind Airport ; + fun MettelFieldINAirport : Ind Airport ; -fun MiamiHeliportFLAirport : Ind Airport ; + fun MiamiHeliportFLAirport : Ind Airport ; -fun MicalovoTverAirport : Ind Airport ; + fun MicalovoTverAirport : Ind Airport ; -fun MichaelArmyAirFieldUTAirport : Ind Airport ; + fun MichaelArmyAirFieldUTAirport : Ind Airport ; -fun MieleMimbaleAirport : Ind Airport ; + fun MieleMimbaleAirport : Ind Airport ; -fun MiguelHidalgoyCostillaGuadalajaraAirport : Ind Airport ; + fun MiguelHidalgoyCostillaGuadalajaraAirport : Ind Airport ; -fun MihaiKogainiceanuConstantaAirport : Ind Airport ; + fun MihaiKogainiceanuConstantaAirport : Ind Airport ; -fun MikonosAirport : Ind Airport ; + fun MikonosAirport : Ind Airport ; -fun MiltonKeynesAirport : Ind Airport ; + fun MiltonKeynesAirport : Ind Airport ; -fun MiyazakiAirport : Ind Airport ; + fun MiyazakiAirport : Ind Airport ; -fun MobaAirport : Ind Airport ; + fun MobaAirport : Ind Airport ; -fun MobileDowntownALAirport : Ind Airport ; + fun MobileDowntownALAirport : Ind Airport ; -fun MohamedVCasablancaAirport : Ind Airport ; + fun MohamedVCasablancaAirport : Ind Airport ; -fun MohammedVCasablancaAirport : Ind Airport ; + fun MohammedVCasablancaAirport : Ind Airport ; -fun MondellFieldWYAirport : Ind Airport ; + fun MondellFieldWYAirport : Ind Airport ; -fun MonroeCountyINAirport : Ind Airport ; + fun MonroeCountyINAirport : Ind Airport ; -fun MonroeNCAirport : Ind Airport ; + fun MonroeNCAirport : Ind Airport ; -fun MontgomeryCountyAirparkMDAirport : Ind Airport ; + fun MontgomeryCountyAirparkMDAirport : Ind Airport ; -fun MontgomeryCountyTXAirport : Ind Airport ; + fun MontgomeryCountyTXAirport : Ind Airport ; -fun MooreArmyAirFieldMAAirport : Ind Airport ; + fun MooreArmyAirFieldMAAirport : Ind Airport ; -fun MoserBaySeaplaneBaseAKAirport : Ind Airport ; + fun MoserBaySeaplaneBaseAKAirport : Ind Airport ; -fun MouguluAirport : Ind Airport ; + fun MouguluAirport : Ind Airport ; -fun MountCarmelMunicipalILAirport : Ind Airport ; + fun MountCarmelMunicipalILAirport : Ind Airport ; -fun MountGunsonSouthAustraliaAirport : Ind Airport ; + fun MountGunsonSouthAustraliaAirport : Ind Airport ; -fun MountIsaQueenslandAirport : Ind Airport ; + fun MountIsaQueenslandAirport : Ind Airport ; -fun MountWashingtonRegionalNHAirport : Ind Airport ; + fun MountWashingtonRegionalNHAirport : Ind Airport ; -fun MtGoldworthyWesternAustraliaAirport : Ind Airport ; + fun MtGoldworthyWesternAustraliaAirport : Ind Airport ; -fun MtHagenAirport : Ind Airport ; + fun MtHagenAirport : Ind Airport ; -fun MudgeeNewSouthWalesAirport : Ind Airport ; + fun MudgeeNewSouthWalesAirport : Ind Airport ; -fun MuharraqInternationalBahrainAirport : Ind Airport ; + fun MuharraqInternationalBahrainAirport : Ind Airport ; -fun MuldrowAirfieldHeliportOKAirport : Ind Airport ; + fun MuldrowAirfieldHeliportOKAirport : Ind Airport ; -fun MunicipalCrookedAirport : Ind Airport ; + fun MunicipalCrookedAirport : Ind Airport ; -fun MurrayFieldCAAirport : Ind Airport ; + fun MurrayFieldCAAirport : Ind Airport ; -fun NAALongBeachPortHelistopCAAirport : Ind Airport ; + fun NAALongBeachPortHelistopCAAirport : Ind Airport ; -fun NDendeAirport : Ind Airport ; + fun NDendeAirport : Ind Airport ; -fun NDjiliKinshasaAirport : Ind Airport ; + fun NDjiliKinshasaAirport : Ind Airport ; -fun NDjoleAirport : Ind Airport ; + fun NDjoleAirport : Ind Airport ; -fun NadiaInternationalAbuDhabiAirport : Ind Airport ; + fun NadiaInternationalAbuDhabiAirport : Ind Airport ; -fun NahaAirForceBaseOkinawaAirport : Ind Airport ; + fun NahaAirForceBaseOkinawaAirport : Ind Airport ; -fun NakhonPhanomAirport : Ind Airport ; + fun NakhonPhanomAirport : Ind Airport ; -fun NamatanaiAirport : Ind Airport ; + fun NamatanaiAirport : Ind Airport ; -fun NampulaAirport : Ind Airport ; + fun NampulaAirport : Ind Airport ; -fun NanchangAirport : Ind Airport ; + fun NanchangAirport : Ind Airport ; -fun NanortalikAirport : Ind Airport ; + fun NanortalikAirport : Ind Airport ; -fun NantucketMemorialMAAirport : Ind Airport ; + fun NantucketMemorialMAAirport : Ind Airport ; -fun NapaCountyCAAirport : Ind Airport ; + fun NapaCountyCAAirport : Ind Airport ; -fun NaplesMunicipalFLAirport : Ind Airport ; + fun NaplesMunicipalFLAirport : Ind Airport ; -fun NarssaqAirport : Ind Airport ; + fun NarssaqAirport : Ind Airport ; -fun NashvilleInternationalTNAirport : Ind Airport ; + fun NashvilleInternationalTNAirport : Ind Airport ; -fun NasikAirport : Ind Airport ; + fun NasikAirport : Ind Airport ; -fun NationalZaventemBrusselsBruxellesAirport : Ind Airport ; + fun NationalZaventemBrusselsBruxellesAirport : Ind Airport ; -fun NatronaCountyInternationalWYAirport : Ind Airport ; + fun NatronaCountyInternationalWYAirport : Ind Airport ; -fun NavalAirFacilityEnglandAirport : Ind Airport ; + fun NavalAirFacilityEnglandAirport : Ind Airport ; -fun NaxosAirport : Ind Airport ; + fun NaxosAirport : Ind Airport ; -fun NeedlesCAAirport : Ind Airport ; + fun NeedlesCAAirport : Ind Airport ; -fun NegageAirport : Ind Airport ; + fun NegageAirport : Ind Airport ; -fun NegarboAirport : Ind Airport ; + fun NegarboAirport : Ind Airport ; -fun NeghelliAirport : Ind Airport ; + fun NeghelliAirport : Ind Airport ; -fun NeilArmstrongOHAirport : Ind Airport ; + fun NeilArmstrongOHAirport : Ind Airport ; -fun NejranAirport : Ind Airport ; + fun NejranAirport : Ind Airport ; -fun NemaAirport : Ind Airport ; + fun NemaAirport : Ind Airport ; -fun NenanaMunicipalAKAirport : Ind Airport ; + fun NenanaMunicipalAKAirport : Ind Airport ; -fun NeoshoMemorialMOAirport : Ind Airport ; + fun NeoshoMemorialMOAirport : Ind Airport ; -fun NepalganjAirport : Ind Airport ; + fun NepalganjAirport : Ind Airport ; -fun NeumuensterAirport : Ind Airport ; + fun NeumuensterAirport : Ind Airport ; -fun NewBedfordMunicipalMAAirport : Ind Airport ; + fun NewBedfordMunicipalMAAirport : Ind Airport ; -fun NewCastleCountyDEAirport : Ind Airport ; + fun NewCastleCountyDEAirport : Ind Airport ; -fun NewHanoverInternationalNCAirport : Ind Airport ; + fun NewHanoverInternationalNCAirport : Ind Airport ; -fun NewKoliganekAKAirport : Ind Airport ; + fun NewKoliganekAKAirport : Ind Airport ; -fun NewStuyahokAKAirport : Ind Airport ; + fun NewStuyahokAKAirport : Ind Airport ; -fun NewarkInternationalNJAirport : Ind Airport ; + fun NewarkInternationalNJAirport : Ind Airport ; -fun NewportBeachCAAirport : Ind Airport ; + fun NewportBeachCAAirport : Ind Airport ; -fun NewportStateVTAirport : Ind Airport ; + fun NewportStateVTAirport : Ind Airport ; -fun NewtokAKAirport : Ind Airport ; + fun NewtokAKAirport : Ind Airport ; -fun NewtonCityCountyKSAirport : Ind Airport ; + fun NewtonCityCountyKSAirport : Ind Airport ; -fun NgurahRaiDenpasarBaliAirport : Ind Airport ; + fun NgurahRaiDenpasarBaliAirport : Ind Airport ; -fun NiagaraFallsInternationalNYAirport : Ind Airport ; + fun NiagaraFallsInternationalNYAirport : Ind Airport ; -fun NicaroAirport : Ind Airport ; + fun NicaroAirport : Ind Airport ; -fun NieuenlandBremenAirport : Ind Airport ; + fun NieuenlandBremenAirport : Ind Airport ; -fun NieuwNickerieNewNickerieAirport : Ind Airport ; + fun NieuwNickerieNewNickerieAirport : Ind Airport ; -fun NiigataHonshuAirport : Ind Airport ; + fun NiigataHonshuAirport : Ind Airport ; -fun NiihameAirport : Ind Airport ; + fun NiihameAirport : Ind Airport ; -fun NikolskiAKAirport : Ind Airport ; + fun NikolskiAKAirport : Ind Airport ; -fun NimrozAirport : Ind Airport ; + fun NimrozAirport : Ind Airport ; -fun NisAirport : Ind Airport ; + fun NisAirport : Ind Airport ; -fun NishinoomoteAirport : Ind Airport ; + fun NishinoomoteAirport : Ind Airport ; -fun NissanIslandAirport : Ind Airport ; + fun NissanIslandAirport : Ind Airport ; -fun NiueIslandAirport : Ind Airport ; + fun NiueIslandAirport : Ind Airport ; -fun NjombeAirport : Ind Airport ; + fun NjombeAirport : Ind Airport ; -fun NoiBaiHanoiAirport : Ind Airport ; + fun NoiBaiHanoiAirport : Ind Airport ; -fun NormanManleyKingstonAirport : Ind Airport ; + fun NormanManleyKingstonAirport : Ind Airport ; -fun NorthEleutheraEleutheraAirport : Ind Airport ; + fun NorthEleutheraEleutheraAirport : Ind Airport ; -fun NorthFrontGibraltarAirport : Ind Airport ; + fun NorthFrontGibraltarAirport : Ind Airport ; -fun NorthPerryFLAirport : Ind Airport ; + fun NorthPerryFLAirport : Ind Airport ; -fun NoumeaAirport : Ind Airport ; + fun NoumeaAirport : Ind Airport ; -fun NoumerateGhardaiaAirport : Ind Airport ; + fun NoumerateGhardaiaAirport : Ind Airport ; -fun NovyKhabarovskAirport : Ind Airport ; + fun NovyKhabarovskAirport : Ind Airport ; -fun NowShahrAirport : Ind Airport ; + fun NowShahrAirport : Ind Airport ; -fun NuevaGeronaAirport : Ind Airport ; + fun NuevaGeronaAirport : Ind Airport ; -fun NumfoorAirport : Ind Airport ; + fun NumfoorAirport : Ind Airport ; -fun NzetoAirport : Ind Airport ; + fun NzetoAirport : Ind Airport ; -fun OSullivanArmyAirFieldNationalGuardCAAirport : Ind Airport ; + fun OSullivanArmyAirFieldNationalGuardCAAirport : Ind Airport ; -fun OaklandConventionCenterHeliportCAAirport : Ind Airport ; + fun OaklandConventionCenterHeliportCAAirport : Ind Airport ; -fun ObbiaAirport : Ind Airport ; + fun ObbiaAirport : Ind Airport ; -fun OdienneAirport : Ind Airport ; + fun OdienneAirport : Ind Airport ; -fun OhioUniversityOHAirport : Ind Airport ; + fun OhioUniversityOHAirport : Ind Airport ; -fun OlatheKSKansasCityAirport : Ind Airport ; + fun OlatheKSKansasCityAirport : Ind Airport ; -fun OlgaBaySeaplaneBaseAKAirport : Ind Airport ; + fun OlgaBaySeaplaneBaseAKAirport : Ind Airport ; -fun OntarioHeliportCAAirport : Ind Airport ; + fun OntarioHeliportCAAirport : Ind Airport ; -fun OrangeNewSouthWalesAirport : Ind Airport ; + fun OrangeNewSouthWalesAirport : Ind Airport ; -fun OrcasIslandWAAirport : Ind Airport ; + fun OrcasIslandWAAirport : Ind Airport ; -fun OrchidIslandAirport : Ind Airport ; + fun OrchidIslandAirport : Ind Airport ; -fun OrechovisGornaAirport : Ind Airport ; + fun OrechovisGornaAirport : Ind Airport ; -fun OrlandoMunicipalFLAirport : Ind Airport ; + fun OrlandoMunicipalFLAirport : Ind Airport ; -fun OtisArmyNationalGuardBaseMAAirport : Ind Airport ; + fun OtisArmyNationalGuardBaseMAAirport : Ind Airport ; -fun OtsegoCountyMIAirport : Ind Airport ; + fun OtsegoCountyMIAirport : Ind Airport ; -fun OuedIraraHassiMessaoudAirport : Ind Airport ; + fun OuedIraraHassiMessaoudAirport : Ind Airport ; -fun OutagamieCountyWIAirport : Ind Airport ; + fun OutagamieCountyWIAirport : Ind Airport ; -fun OutlawFieldTNAirport : Ind Airport ; + fun OutlawFieldTNAirport : Ind Airport ; -fun OuzinkieAKAirport : Ind Airport ; + fun OuzinkieAKAirport : Ind Airport ; -fun OwenRobertsGrandCaymanAirport : Ind Airport ; + fun OwenRobertsGrandCaymanAirport : Ind Airport ; -fun PageFieldFLAirport : Ind Airport ; + fun PageFieldFLAirport : Ind Airport ; -fun PajasBlancasCordobaAirport : Ind Airport ; + fun PajasBlancasCordobaAirport : Ind Airport ; -fun PaleseMacchieBariAirport : Ind Airport ; + fun PaleseMacchieBariAirport : Ind Airport ; -fun PalmasdelMarAirport : Ind Airport ; + fun PalmasdelMarAirport : Ind Airport ; -fun PalonegroBucaramangaAirport : Ind Airport ; + fun PalonegroBucaramangaAirport : Ind Airport ; -fun PamandziDzaoudziMamoudzouAirport : Ind Airport ; + fun PamandziDzaoudziMamoudzouAirport : Ind Airport ; -fun PanajiAirport : Ind Airport ; + fun PanajiAirport : Ind Airport ; -fun PangbornMemorialWAAirport : Ind Airport ; + fun PangbornMemorialWAAirport : Ind Airport ; -fun ParatebuenoAirport : Ind Airport ; + fun ParatebuenoAirport : Ind Airport ; -fun ParkTenHeliportTXAirport : Ind Airport ; + fun ParkTenHeliportTXAirport : Ind Airport ; -fun ParkTownshipMIAirport : Ind Airport ; + fun ParkTownshipMIAirport : Ind Airport ; -fun ParksSeaplaneBaseAKAirport : Ind Airport ; + fun ParksSeaplaneBaseAKAirport : Ind Airport ; -fun ParmeBayonneAngletBiarritzAirport : Ind Airport ; + fun ParmeBayonneAngletBiarritzAirport : Ind Airport ; -fun PasadenaCAAirport : Ind Airport ; + fun PasadenaCAAirport : Ind Airport ; -fun PasighatAirport : Ind Airport ; + fun PasighatAirport : Ind Airport ; -fun PasodelosLibresAirport : Ind Airport ; + fun PasodelosLibresAirport : Ind Airport ; -fun PatengaChittagongAirport : Ind Airport ; + fun PatengaChittagongAirport : Ind Airport ; -fun PathankotAirport : Ind Airport ; + fun PathankotAirport : Ind Airport ; -fun PatrickAirForceBaseFLAirport : Ind Airport ; + fun PatrickAirForceBaseFLAirport : Ind Airport ; -fun PattimuraAmbonAirport : Ind Airport ; + fun PattimuraAmbonAirport : Ind Airport ; -fun PauloffHarborSeaplaneBaseAKAirport : Ind Airport ; + fun PauloffHarborSeaplaneBaseAKAirport : Ind Airport ; -fun PeachtreeCityAirportFalconFieldGAAirport : Ind Airport ; + fun PeachtreeCityAirportFalconFieldGAAirport : Ind Airport ; -fun PearlsGrenadaGrenvilleAirport : Ind Airport ; + fun PearlsGrenadaGrenvilleAirport : Ind Airport ; -fun PentagonArmyHeliportDCAirport : Ind Airport ; + fun PentagonArmyHeliportDCAirport : Ind Airport ; -fun PeretolaFirenzeFlorenceAirport : Ind Airport ; + fun PeretolaFirenzeFlorenceAirport : Ind Airport ; -fun PerimeterGAAirport : Ind Airport ; + fun PerimeterGAAirport : Ind Airport ; -fun PerryFoleyFLAirport : Ind Airport ; + fun PerryFoleyFLAirport : Ind Airport ; -fun PerryvilleAKAirport : Ind Airport ; + fun PerryvilleAKAirport : Ind Airport ; -fun PhiferAirfieldWYAirport : Ind Airport ; + fun PhiferAirfieldWYAirport : Ind Airport ; -fun PhilLHudsonMunicipalTXAirport : Ind Airport ; + fun PhilLHudsonMunicipalTXAirport : Ind Airport ; -fun PhilipSWGoldsonInternationalBelizeCityAirport : Ind Airport ; + fun PhilipSWGoldsonInternationalBelizeCityAirport : Ind Airport ; -fun PhillipsArmyAirFieldMDAirport : Ind Airport ; + fun PhillipsArmyAirFieldMDAirport : Ind Airport ; -fun PhoenixDeerValleyMunicipalAZAirport : Ind Airport ; + fun PhoenixDeerValleyMunicipalAZAirport : Ind Airport ; -fun PhoenixGoodyearMunicipalAZAirport : Ind Airport ; + fun PhoenixGoodyearMunicipalAZAirport : Ind Airport ; -fun PhuBonAirport : Ind Airport ; + fun PhuBonAirport : Ind Airport ; -fun PhuketAirport : Ind Airport ; + fun PhuketAirport : Ind Airport ; -fun PickensCountyGAAirport : Ind Airport ; + fun PickensCountyGAAirport : Ind Airport ; -fun PiedmontTriadInternationalNCAirport : Ind Airport ; + fun PiedmontTriadInternationalNCAirport : Ind Airport ; -fun PietarsaariKokkolaAirport : Ind Airport ; + fun PietarsaariKokkolaAirport : Ind Airport ; -fun PlantationAirparkGAAirport : Ind Airport ; + fun PlantationAirparkGAAirport : Ind Airport ; -fun PohangAirport : Ind Airport ; + fun PohangAirport : Ind Airport ; -fun PointBakerSeaplaneBaseAKAirport : Ind Airport ; + fun PointBakerSeaplaneBaseAKAirport : Ind Airport ; -fun PointeSalineAirport : Ind Airport ; + fun PointeSalineAirport : Ind Airport ; -fun PopeFieldINAirport : Ind Airport ; + fun PopeFieldINAirport : Ind Airport ; -fun PorettaCorsicaAirport : Ind Airport ; + fun PorettaCorsicaAirport : Ind Airport ; -fun PortAuthorityDowntownManhattanWallStreetHeliportNYAirport : Ind Airport ; + fun PortAuthorityDowntownManhattanWallStreetHeliportNYAirport : Ind Airport ; -fun PortAuthorityWest30thStreetMidtownHeliportNYAirport : Ind Airport ; + fun PortAuthorityWest30thStreetMidtownHeliportNYAirport : Ind Airport ; -fun PortBaileySeaplaneBaseAKAirport : Ind Airport ; + fun PortBaileySeaplaneBaseAKAirport : Ind Airport ; -fun PortBlairAirport : Ind Airport ; + fun PortBlairAirport : Ind Airport ; -fun PortBouetAbidjanAirport : Ind Airport ; + fun PortBouetAbidjanAirport : Ind Airport ; -fun PortClarenceCoastGuardStationAKAirport : Ind Airport ; + fun PortClarenceCoastGuardStationAKAirport : Ind Airport ; -fun PortColumbusInternationalOHAirport : Ind Airport ; + fun PortColumbusInternationalOHAirport : Ind Airport ; -fun PortEllenIslayAirport : Ind Airport ; + fun PortEllenIslayAirport : Ind Airport ; -fun PortFitzroyAirport : Ind Airport ; + fun PortFitzroyAirport : Ind Airport ; -fun PortWilliamsSeaplaneBaseAKAirport : Ind Airport ; + fun PortWilliamsSeaplaneBaseAKAirport : Ind Airport ; -fun PortlandHillsboroORAirport : Ind Airport ; + fun PortlandHillsboroORAirport : Ind Airport ; -fun PortoSeguroBAAirport : Ind Airport ; + fun PortoSeguroBAAirport : Ind Airport ; -fun PortofAstoriaORAirport : Ind Airport ; + fun PortofAstoriaORAirport : Ind Airport ; -fun PresidenteStroessnerAsuncionAirport : Ind Airport ; + fun PresidenteStroessnerAsuncionAirport : Ind Airport ; -fun PretoriaHeliportPretoriaAirport : Ind Airport ; + fun PretoriaHeliportPretoriaAirport : Ind Airport ; -fun PrincevilleHIAirport : Ind Airport ; + fun PrincevilleHIAirport : Ind Airport ; -fun PrincipedaBeiraROAirport : Ind Airport ; + fun PrincipedaBeiraROAirport : Ind Airport ; -fun PryorFieldALAirport : Ind Airport ; + fun PryorFieldALAirport : Ind Airport ; -fun PuertoArmuellaAirport : Ind Airport ; + fun PuertoArmuellaAirport : Ind Airport ; -fun PyongyangAirport : Ind Airport ; + fun PyongyangAirport : Ind Airport ; -fun PyrzowiceKatowiceAirport : Ind Airport ; + fun PyrzowiceKatowiceAirport : Ind Airport ; -fun QaisumahAirport : Ind Airport ; + fun QaisumahAirport : Ind Airport ; -fun QarshiKarshiQashqadaryoAirport : Ind Airport ; + fun QarshiKarshiQashqadaryoAirport : Ind Airport ; -fun QiemoAirport : Ind Airport ; + fun QiemoAirport : Ind Airport ; -fun QingyangAirport : Ind Airport ; + fun QingyangAirport : Ind Airport ; -fun QishnAirport : Ind Airport ; + fun QishnAirport : Ind Airport ; -fun QostanayKustanayQostanayAirport : Ind Airport ; + fun QostanayKustanayQostanayAirport : Ind Airport ; -fun QuamichanLakeWaterAerodromeBCAirport : Ind Airport ; + fun QuamichanLakeWaterAerodromeBCAirport : Ind Airport ; -fun QuanducAirport : Ind Airport ; + fun QuanducAirport : Ind Airport ; -fun QuartzCreekAKAirport : Ind Airport ; + fun QuartzCreekAKAirport : Ind Airport ; -fun QueenAliaInternationalAmmanAirport : Ind Airport ; + fun QueenAliaInternationalAmmanAirport : Ind Airport ; -fun QueenBeatrixInternationalArubaOranjestadAirport : Ind Airport ; + fun QueenBeatrixInternationalArubaOranjestadAirport : Ind Airport ; -fun QuinhagakAKAirport : Ind Airport ; + fun QuinhagakAKAirport : Ind Airport ; -fun RAFStationScotlandAirport : Ind Airport ; + fun RAFStationScotlandAirport : Ind Airport ; -fun RISDDowneyHelistopCAAirport : Ind Airport ; + fun RISDDowneyHelistopCAAirport : Ind Airport ; -fun RIScienceCenterHelistopCAAirport : Ind Airport ; + fun RIScienceCenterHelistopCAAirport : Ind Airport ; -fun RaeBareliAirport : Ind Airport ; + fun RaeBareliAirport : Ind Airport ; -fun RafaelNunezCartagenadeIndiasAirport : Ind Airport ; + fun RafaelNunezCartagenadeIndiasAirport : Ind Airport ; -fun RaleighCountyMemorialWVAirport : Ind Airport ; + fun RaleighCountyMemorialWVAirport : Ind Airport ; -fun RanchiAirport : Ind Airport ; + fun RanchiAirport : Ind Airport ; -fun RebiechowoGdanskAirport : Ind Airport ; + fun RebiechowoGdanskAirport : Ind Airport ; -fun RedhillEnglandAirport : Ind Airport ; + fun RedhillEnglandAirport : Ind Airport ; -fun RedstoneArmyAirFieldALAirport : Ind Airport ; + fun RedstoneArmyAirFieldALAirport : Ind Airport ; -fun RennerFieldGoodlandMunicipalKSAirport : Ind Airport ; + fun RennerFieldGoodlandMunicipalKSAirport : Ind Airport ; -fun RentschlerCTAirport : Ind Airport ; + fun RentschlerCTAirport : Ind Airport ; -fun RepublicNYAirport : Ind Airport ; + fun RepublicNYAirport : Ind Airport ; -fun RheinMainAirForceBaseFrankfurtAirport : Ind Airport ; + fun RheinMainAirForceBaseFrankfurtAirport : Ind Airport ; -fun RheinMainFrankfurtAirport : Ind Airport ; + fun RheinMainFrankfurtAirport : Ind Airport ; -fun RheinRuhrDuesseldorfDusseldorfAirport : Ind Airport ; + fun RheinRuhrDuesseldorfDusseldorfAirport : Ind Airport ; -fun RheindahlenAirport : Ind Airport ; + fun RheindahlenAirport : Ind Airport ; -fun RhooseCardiffAirport : Ind Airport ; + fun RhooseCardiffAirport : Ind Airport ; -fun RichardsGebaurMOAirport : Ind Airport ; + fun RichardsGebaurMOAirport : Ind Airport ; -fun RinkenbergerRLAILAirport : Ind Airport ; + fun RinkenbergerRLAILAirport : Ind Airport ; -fun RioGrandeValleyInternationalTXAirport : Ind Airport ; + fun RioGrandeValleyInternationalTXAirport : Ind Airport ; -fun RiversideMetroCenterHeliportCAAirport : Ind Airport ; + fun RiversideMetroCenterHeliportCAAirport : Ind Airport ; -fun RobertGrayArmyAirFieldTXAirport : Ind Airport ; + fun RobertGrayArmyAirFieldTXAirport : Ind Airport ; -fun RobertMuellerMunicipalTXAirport : Ind Airport ; + fun RobertMuellerMunicipalTXAirport : Ind Airport ; -fun RochambeauCayenneAirport : Ind Airport ; + fun RochambeauCayenneAirport : Ind Airport ; -fun RockCountyWIAirport : Ind Airport ; + fun RockCountyWIAirport : Ind Airport ; -fun RodriguezBallonArequipaAirport : Ind Airport ; + fun RodriguezBallonArequipaAirport : Ind Airport ; -fun RonaldswayIsleofManAirport : Ind Airport ; + fun RonaldswayIsleofManAirport : Ind Airport ; -fun RorshachAltenrheinAirport : Ind Airport ; + fun RorshachAltenrheinAirport : Ind Airport ; -fun RoscoeTurnerMSAirport : Ind Airport ; + fun RoscoeTurnerMSAirport : Ind Airport ; -fun RoscommonCountyMIAirport : Ind Airport ; + fun RoscommonCountyMIAirport : Ind Airport ; -fun RossFieldTwinCitiesMIAirport : Ind Airport ; + fun RossFieldTwinCitiesMIAirport : Ind Airport ; -fun SabreArmyHeliportTNAirport : Ind Airport ; + fun SabreArmyHeliportTNAirport : Ind Airport ; -fun SaharSantaCruzInternationalBombayAirport : Ind Airport ; + fun SaharSantaCruzInternationalBombayAirport : Ind Airport ; -fun SaintGatienDeauvilleAirport : Ind Airport ; + fun SaintGatienDeauvilleAirport : Ind Airport ; -fun SaintGeoirsGrenobleAirport : Ind Airport ; + fun SaintGeoirsGrenobleAirport : Ind Airport ; -fun SainteCatherineCorsicaAirport : Ind Airport ; + fun SainteCatherineCorsicaAirport : Ind Airport ; -fun SaissFesFezAirport : Ind Airport ; + fun SaissFesFezAirport : Ind Airport ; -fun SamaraSamaraAirport : Ind Airport ; + fun SamaraSamaraAirport : Ind Airport ; -fun SampsonCountyNCAirport : Ind Airport ; + fun SampsonCountyNCAirport : Ind Airport ; -fun SamuelsFieldKYAirport : Ind Airport ; + fun SamuelsFieldKYAirport : Ind Airport ; -fun SanCarlosdeBarilocheAirport : Ind Airport ; + fun SanCarlosdeBarilocheAirport : Ind Airport ; -fun SanJuanAposentoAirport : Ind Airport ; + fun SanJuanAposentoAirport : Ind Airport ; -fun SanJuanPuebloNMAirport : Ind Airport ; + fun SanJuanPuebloNMAirport : Ind Airport ; -fun SanLuisValleyRegionalAirportBergmanFieldCOAirport : Ind Airport ; + fun SanLuisValleyRegionalAirportBergmanFieldCOAirport : Ind Airport ; -fun SanRafaelAirport : Ind Airport ; + fun SanRafaelAirport : Ind Airport ; -fun SanSebastianAirport : Ind Airport ; + fun SanSebastianAirport : Ind Airport ; -fun SandyRiverORAirport : Ind Airport ; + fun SandyRiverORAirport : Ind Airport ; -fun SanfebagarAirport : Ind Airport ; + fun SanfebagarAirport : Ind Airport ; -fun SantaCruzFloresIslandAzoresAirport : Ind Airport ; + fun SantaCruzFloresIslandAzoresAirport : Ind Airport ; -fun SantaIsabelAirport : Ind Airport ; + fun SantaIsabelAirport : Ind Airport ; -fun SantaVitoriaMGAirport : Ind Airport ; + fun SantaVitoriaMGAirport : Ind Airport ; -fun SantaYnezCAAirport : Ind Airport ; + fun SantaYnezCAAirport : Ind Airport ; -fun SantoAngeloRSAirport : Ind Airport ; + fun SantoAngeloRSAirport : Ind Airport ; -fun SantoDonHerreraAirport : Ind Airport ; + fun SantoDonHerreraAirport : Ind Airport ; -fun SantoriniThiraAirport : Ind Airport ; + fun SantoriniThiraAirport : Ind Airport ; -fun SaqaniAirport : Ind Airport ; + fun SaqaniAirport : Ind Airport ; -fun SargodhaAirport : Ind Airport ; + fun SargodhaAirport : Ind Airport ; -fun SaveGoteborgAirport : Ind Airport ; + fun SaveGoteborgAirport : Ind Airport ; -fun SchaumburgAirParkILAirport : Ind Airport ; + fun SchaumburgAirParkILAirport : Ind Airport ; -fun SchenckFieldIAAirport : Ind Airport ; + fun SchenckFieldIAAirport : Ind Airport ; -fun SchipholAmsterdamAirport : Ind Airport ; + fun SchipholAmsterdamAirport : Ind Airport ; -fun ScholesFieldTXAirport : Ind Airport ; + fun ScholesFieldTXAirport : Ind Airport ; -fun SchoolcraftCountyMIAirport : Ind Airport ; + fun SchoolcraftCountyMIAirport : Ind Airport ; -fun ScottAirForceBaseILAirport : Ind Airport ; + fun ScottAirForceBaseILAirport : Ind Airport ; -fun SculthorpeRAFStationEnglandAirport : Ind Airport ; + fun SculthorpeRAFStationEnglandAirport : Ind Airport ; -fun ScusciubanAirport : Ind Airport ; + fun ScusciubanAirport : Ind Airport ; -fun SedaliaMemorialMOAirport : Ind Airport ; + fun SedaliaMemorialMOAirport : Ind Airport ; -fun SegeAirport : Ind Airport ; + fun SegeAirport : Ind Airport ; -fun SeiyunAirport : Ind Airport ; + fun SeiyunAirport : Ind Airport ; -fun SelaparangMataramAirport : Ind Airport ; + fun SelaparangMataramAirport : Ind Airport ; -fun SematanAirport : Ind Airport ; + fun SematanAirport : Ind Airport ; -fun SenouBamakoAirport : Ind Airport ; + fun SenouBamakoAirport : Ind Airport ; -fun SentaniDjayapuraJayapuraAirport : Ind Airport ; + fun SentaniDjayapuraJayapuraAirport : Ind Airport ; -fun SepingganBalikpapanAirport : Ind Airport ; + fun SepingganBalikpapanAirport : Ind Airport ; -fun SesquicentenarioSanAndresAirport : Ind Airport ; + fun SesquicentenarioSanAndresAirport : Ind Airport ; -fun SeymourJohnsonAirForceBaseNCAirport : Ind Airport ; + fun SeymourJohnsonAirForceBaseNCAirport : Ind Airport ; -fun ShaltzFieldKSAirport : Ind Airport ; + fun ShaltzFieldKSAirport : Ind Airport ; -fun ShannonVAAirport : Ind Airport ; + fun ShannonVAAirport : Ind Airport ; -fun ShaoguanAirport : Ind Airport ; + fun ShaoguanAirport : Ind Airport ; -fun ShauliajAirport : Ind Airport ; + fun ShauliajAirport : Ind Airport ; -fun ShelbyMunicipalNCAirport : Ind Airport ; + fun ShelbyMunicipalNCAirport : Ind Airport ; -fun ShermanArmyAirFieldKSAirport : Ind Airport ; + fun ShermanArmyAirFieldKSAirport : Ind Airport ; -fun ShermanOaksCommunityHospitalHeliportCAAirport : Ind Airport ; + fun ShermanOaksCommunityHospitalHeliportCAAirport : Ind Airport ; -fun ShillavoAirport : Ind Airport ; + fun ShillavoAirport : Ind Airport ; -fun ShimkentChimkentSouthKazakhstanAirport : Ind Airport ; + fun ShimkentChimkentSouthKazakhstanAirport : Ind Airport ; -fun ShoalCoveAKAirport : Ind Airport ; + fun ShoalCoveAKAirport : Ind Airport ; -fun ShorehamAirport : Ind Airport ; + fun ShorehamAirport : Ind Airport ; -fun ShreveportDowntownLAAirport : Ind Airport ; + fun ShreveportDowntownLAAirport : Ind Airport ; -fun ShuteHarbourQueenslandAirport : Ind Airport ; + fun ShuteHarbourQueenslandAirport : Ind Airport ; -fun SiguiriAirport : Ind Airport ; + fun SiguiriAirport : Ind Airport ; -fun SikassoAirport : Ind Airport ; + fun SikassoAirport : Ind Airport ; -fun SikorskyHeliportCTAirport : Ind Airport ; + fun SikorskyHeliportCTAirport : Ind Airport ; -fun SilcharAirport : Ind Airport ; + fun SilcharAirport : Ind Airport ; -fun SilverBayMunicipalMNAirport : Ind Airport ; + fun SilverBayMunicipalMNAirport : Ind Airport ; -fun SimikotAirport : Ind Airport ; + fun SimikotAirport : Ind Airport ; -fun SimmonsArmyAirFieldNCAirport : Ind Airport ; + fun SimmonsArmyAirFieldNCAirport : Ind Airport ; -fun SimonBolivarGuayaquilAirport : Ind Airport ; + fun SimonBolivarGuayaquilAirport : Ind Airport ; -fun SinaloaCuliacanAirport : Ind Airport ; + fun SinaloaCuliacanAirport : Ind Airport ; -fun SindalAirport : Ind Airport ; + fun SindalAirport : Ind Airport ; -fun SirSeretseKhamaInternationalGaboroneAirport : Ind Airport ; + fun SirSeretseKhamaInternationalGaboroneAirport : Ind Airport ; -fun SitiaCreteAirport : Ind Airport ; + fun SitiaCreteAirport : Ind Airport ; -fun SittweAkyabAirport : Ind Airport ; + fun SittweAkyabAirport : Ind Airport ; -fun SkarduAirport : Ind Airport ; + fun SkarduAirport : Ind Airport ; -fun SkiathosAirport : Ind Airport ; + fun SkiathosAirport : Ind Airport ; -fun SkovdeAirport : Ind Airport ; + fun SkovdeAirport : Ind Airport ; -fun SkyparkUTAirport : Ind Airport ; + fun SkyparkUTAirport : Ind Airport ; -fun SloulinFieldInternationalNDAirport : Ind Airport ; + fun SloulinFieldInternationalNDAirport : Ind Airport ; -fun SmithReynoldsNCAirport : Ind Airport ; + fun SmithReynoldsNCAirport : Ind Airport ; -fun SoalalaAirport : Ind Airport ; + fun SoalalaAirport : Ind Airport ; -fun SoekarnoHattaInternationalJakartaAirport : Ind Airport ; + fun SoekarnoHattaInternationalJakartaAirport : Ind Airport ; -fun SogwipoChejuAirport : Ind Airport ; + fun SogwipoChejuAirport : Ind Airport ; -fun SongkhiaHatyaiHatYaiAirport : Ind Airport ; + fun SongkhiaHatyaiHatYaiAirport : Ind Airport ; -fun SormavoNizhniyNovgorodAirport : Ind Airport ; + fun SormavoNizhniyNovgorodAirport : Ind Airport ; -fun SoummamBejaiaAirport : Ind Airport ; + fun SoummamBejaiaAirport : Ind Airport ; -fun SouthBigHornCountyWYAirport : Ind Airport ; + fun SouthBigHornCountyWYAirport : Ind Airport ; -fun SouthBiminiInternationalBiminiAirport : Ind Airport ; + fun SouthBiminiInternationalBiminiAirport : Ind Airport ; -fun SoutherFieldGAAirport : Ind Airport ; + fun SoutherFieldGAAirport : Ind Airport ; -fun SouthwestGeorgiaRegionalGAAirport : Ind Airport ; + fun SouthwestGeorgiaRegionalGAAirport : Ind Airport ; -fun SpartaFortMcCoyWIAirport : Ind Airport ; + fun SpartaFortMcCoyWIAirport : Ind Airport ; -fun SpetsaiIslandAirport : Ind Airport ; + fun SpetsaiIslandAirport : Ind Airport ; -fun SpokaneInternationalWAAirport : Ind Airport ; + fun SpokaneInternationalWAAirport : Ind Airport ; -fun SpringvaleQueenslandAirport : Ind Airport ; + fun SpringvaleQueenslandAirport : Ind Airport ; -fun SquiresGateEnglandAirport : Ind Airport ; + fun SquiresGateEnglandAirport : Ind Airport ; -fun StAndrewsScotlandAirport : Ind Airport ; + fun StAndrewsScotlandAirport : Ind Airport ; -fun StAngeloNorthernIrelandAirport : Ind Airport ; + fun StAngeloNorthernIrelandAirport : Ind Airport ; -fun StCloudHospitalHeliportMNAirport : Ind Airport ; + fun StCloudHospitalHeliportMNAirport : Ind Airport ; -fun StDenijsWestremGhentGentAirport : Ind Airport ; + fun StDenijsWestremGhentGentAirport : Ind Airport ; -fun StHelensTasmaniaAirport : Ind Airport ; + fun StHelensTasmaniaAirport : Ind Airport ; -fun StLucieCountyInternationalFLAirport : Ind Airport ; + fun StLucieCountyInternationalFLAirport : Ind Airport ; -fun StMaloDinardPleurtuitAirport : Ind Airport ; + fun StMaloDinardPleurtuitAirport : Ind Airport ; -fun StMarysAKAirport : Ind Airport ; + fun StMarysAKAirport : Ind Airport ; -fun StMarysEnglandAirport : Ind Airport ; + fun StMarysEnglandAirport : Ind Airport ; -fun StPierreAirport : Ind Airport ; + fun StPierreAirport : Ind Airport ; -fun StTropezAirport : Ind Airport ; + fun StTropezAirport : Ind Airport ; -fun StafsbergHamarAirport : Ind Airport ; + fun StafsbergHamarAirport : Ind Airport ; -fun StanStamperMunicipalOKAirport : Ind Airport ; + fun StanStamperMunicipalOKAirport : Ind Airport ; -fun StapletonInternationalCOAirport : Ind Airport ; + fun StapletonInternationalCOAirport : Ind Airport ; -fun SteelPierTajMahalHeliportNJAirport : Ind Airport ; + fun SteelPierTajMahalHeliportNJAirport : Ind Airport ; -fun StephensCountyTXAirport : Ind Airport ; + fun StephensCountyTXAirport : Ind Airport ; -fun StouffersHeliportPAAirport : Ind Airport ; + fun StouffersHeliportPAAirport : Ind Airport ; -fun StreakyBaySouthAustraliaAirport : Ind Airport ; + fun StreakyBaySouthAustraliaAirport : Ind Airport ; -fun StuartPowellFieldKYAirport : Ind Airport ; + fun StuartPowellFieldKYAirport : Ind Airport ; -fun SubangPeninsularAirport : Ind Airport ; + fun SubangPeninsularAirport : Ind Airport ; -fun SukkertoppenAirport : Ind Airport ; + fun SukkertoppenAirport : Ind Airport ; -fun SummitLakeBCAirport : Ind Airport ; + fun SummitLakeBCAirport : Ind Airport ; -fun SundanceAirparkOKAirport : Ind Airport ; + fun SundanceAirparkOKAirport : Ind Airport ; -fun SungeiTakaiAirport : Ind Airport ; + fun SungeiTakaiAirport : Ind Airport ; -fun SunnyvaleCAAirport : Ind Airport ; + fun SunnyvaleCAAirport : Ind Airport ; -fun SunsetGlendaleCAAirport : Ind Airport ; + fun SunsetGlendaleCAAirport : Ind Airport ; -fun SurcinBelgradeBeogradAirport : Ind Airport ; + fun SurcinBelgradeBeogradAirport : Ind Airport ; -fun SussexCountyDEAirport : Ind Airport ; + fun SussexCountyDEAirport : Ind Airport ; -fun SvegAirport : Ind Airport ; + fun SvegAirport : Ind Airport ; -fun SyamsudinNoorBanjarmarsinAirport : Ind Airport ; + fun SyamsudinNoorBanjarmarsinAirport : Ind Airport ; -fun SyrosIslandAirport : Ind Airport ; + fun SyrosIslandAirport : Ind Airport ; -fun TSTIWacoJamesConnallTXAirport : Ind Airport ; + fun TSTIWacoJamesConnallTXAirport : Ind Airport ; -fun TaherJijelAirport : Ind Airport ; + fun TaherJijelAirport : Ind Airport ; -fun TahnetaPassAKAirport : Ind Airport ; + fun TahnetaPassAKAirport : Ind Airport ; -fun TakakaAirport : Ind Airport ; + fun TakakaAirport : Ind Airport ; -fun TalaveraLaRealBadajozAirport : Ind Airport ; + fun TalaveraLaRealBadajozAirport : Ind Airport ; -fun TalladegaMunicipalALAirport : Ind Airport ; + fun TalladegaMunicipalALAirport : Ind Airport ; -fun TavauxDoleAirport : Ind Airport ; + fun TavauxDoleAirport : Ind Airport ; -fun TaymarHeliportWAAirport : Ind Airport ; + fun TaymarHeliportWAAirport : Ind Airport ; -fun TerredeBasAirport : Ind Airport ; + fun TerredeBasAirport : Ind Airport ; -fun TerrorBaySeaplaneBaseAKAirport : Ind Airport ; + fun TerrorBaySeaplaneBaseAKAirport : Ind Airport ; -fun ThalerhofGrazAirport : Ind Airport ; + fun ThalerhofGrazAirport : Ind Airport ; -fun TheDallesMunicipalORAirport : Ind Airport ; + fun TheDallesMunicipalORAirport : Ind Airport ; -fun TheFrancisSGabreskiNYAirport : Ind Airport ; + fun TheFrancisSGabreskiNYAirport : Ind Airport ; -fun TheValleyWallblakeAnguillaAirport : Ind Airport ; + fun TheValleyWallblakeAnguillaAirport : Ind Airport ; -fun TheWilliamBHartsfieldAtlantaInternationalGAAirport : Ind Airport ; + fun TheWilliamBHartsfieldAtlantaInternationalGAAirport : Ind Airport ; -fun TheWoodlandsMemorialHospitalHeliportTXAirport : Ind Airport ; + fun TheWoodlandsMemorialHospitalHeliportTXAirport : Ind Airport ; -fun ThomasCRussellFieldALAirport : Ind Airport ; + fun ThomasCRussellFieldALAirport : Ind Airport ; -fun ThompsonRobbinsARAirport : Ind Airport ; + fun ThompsonRobbinsARAirport : Ind Airport ; -fun ThorneBaySeaplaneBaseAKAirport : Ind Airport ; + fun ThorneBaySeaplaneBaseAKAirport : Ind Airport ; -fun ThreeRiversMunicipalDrHainesMIAirport : Ind Airport ; + fun ThreeRiversMunicipalDrHainesMIAirport : Ind Airport ; -fun TikchikLodgeAKAirport : Ind Airport ; + fun TikchikLodgeAKAirport : Ind Airport ; -fun TilleBeauvaisAirport : Ind Airport ; + fun TilleBeauvaisAirport : Ind Airport ; -fun TimehriGeorgetownAirport : Ind Airport ; + fun TimehriGeorgetownAirport : Ind Airport ; -fun TinsonKingstonAirport : Ind Airport ; + fun TinsonKingstonAirport : Ind Airport ; -fun TiptonArmyAirFieldMDAirport : Ind Airport ; + fun TiptonArmyAirFieldMDAirport : Ind Airport ; -fun TirstrupAarhusAirport : Ind Airport ; + fun TirstrupAarhusAirport : Ind Airport ; -fun TiskaDjanetAirport : Ind Airport ; + fun TiskaDjanetAirport : Ind Airport ; -fun TogiakFishAKAirport : Ind Airport ; + fun TogiakFishAKAirport : Ind Airport ; -fun TompkinsCountyNYAirport : Ind Airport ; + fun TompkinsCountyNYAirport : Ind Airport ; -fun TornioKemiAirport : Ind Airport ; + fun TornioKemiAirport : Ind Airport ; -fun TortolaBeefIsAirport : Ind Airport ; + fun TortolaBeefIsAirport : Ind Airport ; -fun TouatAdrarAirport : Ind Airport ; + fun TouatAdrarAirport : Ind Airport ; -fun TourSinaiCityAirport : Ind Airport ; + fun TourSinaiCityAirport : Ind Airport ; -fun TranscoTowerGarageHeliportTXAirport : Ind Airport ; + fun TranscoTowerGarageHeliportTXAirport : Ind Airport ; -fun TriStateMiltonJFergusonFieldWVAirport : Ind Airport ; + fun TriStateMiltonJFergusonFieldWVAirport : Ind Airport ; -fun TriStateSteubenCountyINAirport : Ind Airport ; + fun TriStateSteubenCountyINAirport : Ind Airport ; -fun TribhuvanKathmanduAirport : Ind Airport ; + fun TribhuvanKathmanduAirport : Ind Airport ; -fun TripoliAirport : Ind Airport ; + fun TripoliAirport : Ind Airport ; -fun TusiArmyHeliportCAAirport : Ind Airport ; + fun TusiArmyHeliportCAAirport : Ind Airport ; -fun TweedNewHavenCTAirport : Ind Airport ; + fun TweedNewHavenCTAirport : Ind Airport ; -fun TwinCountyVAAirport : Ind Airport ; + fun TwinCountyVAAirport : Ind Airport ; -fun UlanhotAirport : Ind Airport ; + fun UlanhotAirport : Ind Airport ; -fun UnalaskaAKAirport : Ind Airport ; + fun UnalaskaAKAirport : Ind Airport ; -fun UnionCAAirport : Ind Airport ; + fun UnionCAAirport : Ind Airport ; -fun UnitedStatesirForceAcademyAirstripCOAirport : Ind Airport ; + fun UnitedStatesirForceAcademyAirstripCOAirport : Ind Airport ; -fun UnitedStatesrmyHeliportILAirport : Ind Airport ; + fun UnitedStatesrmyHeliportILAirport : Ind Airport ; -fun UniversalStudiosCAAirport : Ind Airport ; + fun UniversalStudiosCAAirport : Ind Airport ; -fun UniversityofIllinoisWillardILAirport : Ind Airport ; + fun UniversityofIllinoisWillardILAirport : Ind Airport ; -fun UpernavikAirport : Ind Airport ; + fun UpernavikAirport : Ind Airport ; -fun UyakAKAirport : Ind Airport ; + fun UyakAKAirport : Ind Airport ; -fun UyakSeaplaneBaseAKAirport : Ind Airport ; + fun UyakSeaplaneBaseAKAirport : Ind Airport ; -fun VCBirdInternationalCoolidgeAntiguaIsAirport : Ind Airport ; + fun VCBirdInternationalCoolidgeAntiguaIsAirport : Ind Airport ; -fun VagarFaroeIsAirport : Ind Airport ; + fun VagarFaroeIsAirport : Ind Airport ; -fun ValedeCaesPAAirport : Ind Airport ; + fun ValedeCaesPAAirport : Ind Airport ; -fun ValleyWalesAirport : Ind Airport ; + fun ValleyWalesAirport : Ind Airport ; -fun VanceAirForceBaseOKAirport : Ind Airport ; + fun VanceAirForceBaseOKAirport : Ind Airport ; -fun VantaaHelsinkiAirport : Ind Airport ; + fun VantaaHelsinkiAirport : Ind Airport ; -fun VenangoRegionalPAAirport : Ind Airport ; + fun VenangoRegionalPAAirport : Ind Airport ; -fun VermilionCountyILAirport : Ind Airport ; + fun VermilionCountyILAirport : Ind Airport ; -fun ViasBeziersAirport : Ind Airport ; + fun ViasBeziersAirport : Ind Airport ; -fun VigraAlesundAalesundAirport : Ind Airport ; + fun VigraAlesundAalesundAirport : Ind Airport ; -fun VilhenaROAirport : Ind Airport ; + fun VilhenaROAirport : Ind Airport ; -fun VinadelMarAirport : Ind Airport ; + fun VinadelMarAirport : Ind Airport ; -fun VirgilIGrissomMunicipalINAirport : Ind Airport ; + fun VirgilIGrissomMunicipalINAirport : Ind Airport ; -fun VirginiaTechVAAirport : Ind Airport ; + fun VirginiaTechVAAirport : Ind Airport ; -fun WHBudBarronGAAirport : Ind Airport ; + fun WHBudBarronGAAirport : Ind Airport ; -fun WKKelloggMIAirport : Ind Airport ; + fun WKKelloggMIAirport : Ind Airport ; -fun WabashMunicipalINAirport : Ind Airport ; + fun WabashMunicipalINAirport : Ind Airport ; -fun WacoKungoAirport : Ind Airport ; + fun WacoKungoAirport : Ind Airport ; -fun WacoRegionalTXAirport : Ind Airport ; + fun WacoRegionalTXAirport : Ind Airport ; -fun WadMedaniAirport : Ind Airport ; + fun WadMedaniAirport : Ind Airport ; -fun WageningenAirport : Ind Airport ; + fun WageningenAirport : Ind Airport ; -fun WahnBonnAirport : Ind Airport ; + fun WahnBonnAirport : Ind Airport ; -fun WahooMunicipalNEAirport : Ind Airport ; + fun WahooMunicipalNEAirport : Ind Airport ; -fun WaimanaloHIAirport : Ind Airport ; + fun WaimanaloHIAirport : Ind Airport ; -fun WainwrightAKAirport : Ind Airport ; + fun WainwrightAKAirport : Ind Airport ; -fun WainwrightArmyAirFieldAKAirport : Ind Airport ; + fun WainwrightArmyAirFieldAKAirport : Ind Airport ; -fun WakayaIslandAirport : Ind Airport ; + fun WakayaIslandAirport : Ind Airport ; -fun WakeIslandAirfieldWakeIslandAirport : Ind Airport ; + fun WakeIslandAirfieldWakeIslandAirport : Ind Airport ; -fun WalkerFieldCOAirport : Ind Airport ; + fun WalkerFieldCOAirport : Ind Airport ; -fun WallaWallaRegionalWAAirport : Ind Airport ; + fun WallaWallaRegionalWAAirport : Ind Airport ; -fun WalnutRidgeRegionalARAirport : Ind Airport ; + fun WalnutRidgeRegionalARAirport : Ind Airport ; -fun WangeroogeAirport : Ind Airport ; + fun WangeroogeAirport : Ind Airport ; -fun WanigelaAirport : Ind Airport ; + fun WanigelaAirport : Ind Airport ; -fun WaraghandyKaragandaQaraghandyAirport : Ind Airport ; + fun WaraghandyKaragandaQaraghandyAirport : Ind Airport ; -fun WarmSpringBaySeaplaneBaseAKAirport : Ind Airport ; + fun WarmSpringBaySeaplaneBaseAKAirport : Ind Airport ; -fun WarnerBrothersStudiosCAAirport : Ind Airport ; + fun WarnerBrothersStudiosCAAirport : Ind Airport ; -fun WarrenCountyNYAirport : Ind Airport ; + fun WarrenCountyNYAirport : Ind Airport ; -fun WasecaMunicipalMNAirport : Ind Airport ; + fun WasecaMunicipalMNAirport : Ind Airport ; -fun WashingtonCountyRegionalMDAirport : Ind Airport ; + fun WashingtonCountyRegionalMDAirport : Ind Airport ; -fun WashingtonDullesInternationalDCAirport : Ind Airport ; + fun WashingtonDullesInternationalDCAirport : Ind Airport ; -fun WashingtonMunicipalIAAirport : Ind Airport ; + fun WashingtonMunicipalIAAirport : Ind Airport ; -fun WashingtonNationalDCAirport : Ind Airport ; + fun WashingtonNationalDCAirport : Ind Airport ; -fun WashingtonWilkesCountyGAAirport : Ind Airport ; + fun WashingtonWilkesCountyGAAirport : Ind Airport ; -fun WaterfallSeaplaneBaseAKAirport : Ind Airport ; + fun WaterfallSeaplaneBaseAKAirport : Ind Airport ; -fun WaterlooMunicipalIAAirport : Ind Airport ; + fun WaterlooMunicipalIAAirport : Ind Airport ; -fun WatertownInternationalNYAirport : Ind Airport ; + fun WatertownInternationalNYAirport : Ind Airport ; -fun WatertownMunicipalSDAirport : Ind Airport ; + fun WatertownMunicipalSDAirport : Ind Airport ; -fun WausauMunicipalWIAirport : Ind Airport ; + fun WausauMunicipalWIAirport : Ind Airport ; -fun WaycrossWareCountyGAAirport : Ind Airport ; + fun WaycrossWareCountyGAAirport : Ind Airport ; -fun WayneCountyKYAirport : Ind Airport ; + fun WayneCountyKYAirport : Ind Airport ; -fun WayneCountyOHAirport : Ind Airport ; + fun WayneCountyOHAirport : Ind Airport ; -fun WebsterCityMunicipalIAAirport : Ind Airport ; + fun WebsterCityMunicipalIAAirport : Ind Airport ; -fun WedjhAirport : Ind Airport ; + fun WedjhAirport : Ind Airport ; -fun WeedonFieldALAirport : Ind Airport ; + fun WeedonFieldALAirport : Ind Airport ; -fun WeideArmyAirFieldMDAirport : Ind Airport ; + fun WeideArmyAirFieldMDAirport : Ind Airport ; -fun WeiserAirParkTXAirport : Ind Airport ; + fun WeiserAirParkTXAirport : Ind Airport ; -fun WellingtonMunicipalKSAirport : Ind Airport ; + fun WellingtonMunicipalKSAirport : Ind Airport ; -fun WellsvilleMunicipalAirportTarantineFieldNYAirport : Ind Airport ; + fun WellsvilleMunicipalAirportTarantineFieldNYAirport : Ind Airport ; -fun WendoverUTAirport : Ind Airport ; + fun WendoverUTAirport : Ind Airport ; -fun WestBendMunicipalWIAirport : Ind Airport ; + fun WestBendMunicipalWIAirport : Ind Airport ; -fun WestGeorgiaRegionalGAAirport : Ind Airport ; + fun WestGeorgiaRegionalGAAirport : Ind Airport ; -fun WestHoustonLakesideTXAirport : Ind Airport ; + fun WestHoustonLakesideTXAirport : Ind Airport ; -fun WestMemphisMunicipalARAirport : Ind Airport ; + fun WestMemphisMunicipalARAirport : Ind Airport ; -fun WestPointSeaplaneBaseAKAirport : Ind Airport ; + fun WestPointSeaplaneBaseAKAirport : Ind Airport ; -fun WestchaseHiltonHeliportTXAirport : Ind Airport ; + fun WestchaseHiltonHeliportTXAirport : Ind Airport ; -fun WestchesterCountyNYAirport : Ind Airport ; + fun WestchesterCountyNYAirport : Ind Airport ; -fun WesterlandSyltIslandAirport : Ind Airport ; + fun WesterlandSyltIslandAirport : Ind Airport ; -fun WestoverAirReserveBaseMetropolitanMAAirport : Ind Airport ; + fun WestoverAirReserveBaseMetropolitanMAAirport : Ind Airport ; -fun WexfordCountyMIAirport : Ind Airport ; + fun WexfordCountyMIAirport : Ind Airport ; -fun WheatlandCountyAirportatHarlowtonMTAirport : Ind Airport ; + fun WheatlandCountyAirportatHarlowtonMTAirport : Ind Airport ; -fun WheelerArmyAirFieldHIAirport : Ind Airport ; + fun WheelerArmyAirFieldHIAirport : Ind Airport ; -fun WheelingOhioCountyWVAirport : Ind Airport ; + fun WheelingOhioCountyWVAirport : Ind Airport ; -fun WhitesburgMunicipalKYAirport : Ind Airport ; + fun WhitesburgMunicipalKYAirport : Ind Airport ; -fun WhitsundayKontikiResortLongIslandQueenslandAirport : Ind Airport ; + fun WhitsundayKontikiResortLongIslandQueenslandAirport : Ind Airport ; -fun WhitsundayQueenslandAirport : Ind Airport ; + fun WhitsundayQueenslandAirport : Ind Airport ; -fun WichitaMidContinentKSAirport : Ind Airport ; + fun WichitaMidContinentKSAirport : Ind Airport ; -fun WileyPostWillRogersMemorialAKAirport : Ind Airport ; + fun WileyPostWillRogersMemorialAKAirport : Ind Airport ; -fun WilkesBarreScrantonInternationalPAAirport : Ind Airport ; + fun WilkesBarreScrantonInternationalPAAirport : Ind Airport ; -fun WilkesCountyNCAirport : Ind Airport ; + fun WilkesCountyNCAirport : Ind Airport ; -fun WilliamBHeiligFieldNEAirport : Ind Airport ; + fun WilliamBHeiligFieldNEAirport : Ind Airport ; -fun WilliamPHobbyTXAirport : Ind Airport ; + fun WilliamPHobbyTXAirport : Ind Airport ; -fun WilliamRFairchildInternationalWAAirport : Ind Airport ; + fun WilliamRFairchildInternationalWAAirport : Ind Airport ; -fun WilliamsburgJamestownVAAirport : Ind Airport ; + fun WilliamsburgJamestownVAAirport : Ind Airport ; -fun WilliamsportLycomingCountyPAAirport : Ind Airport ; + fun WilliamsportLycomingCountyPAAirport : Ind Airport ; -fun WillmarMunicipalAirportJohnLRiceFieldMNAirport : Ind Airport ; + fun WillmarMunicipalAirportJohnLRiceFieldMNAirport : Ind Airport ; -fun WindhamCTAirport : Ind Airport ; + fun WindhamCTAirport : Ind Airport ; -fun WingsFieldPAAirport : Ind Airport ; + fun WingsFieldPAAirport : Ind Airport ; -fun WinklerCountyTXAirport : Ind Airport ; + fun WinklerCountyTXAirport : Ind Airport ; -fun WinslowMunicipalAZAirport : Ind Airport ; + fun WinslowMunicipalAZAirport : Ind Airport ; -fun WinterHavensGilbertFLAirport : Ind Airport ; + fun WinterHavensGilbertFLAirport : Ind Airport ; -fun WiscassetMEAirport : Ind Airport ; + fun WiscassetMEAirport : Ind Airport ; -fun WolterMonginsidiKendariAirport : Ind Airport ; + fun WolterMonginsidiKendariAirport : Ind Airport ; -fun WoodbourneAirStationBlenheimAirport : Ind Airport ; + fun WoodbourneAirStationBlenheimAirport : Ind Airport ; -fun WoodwardFieldSCAirport : Ind Airport ; + fun WoodwardFieldSCAirport : Ind Airport ; -fun WrightPattersonAirForceBaseOHAirport : Ind Airport ; + fun WrightPattersonAirForceBaseOHAirport : Ind Airport ; -fun WujlabaKunmingAirport : Ind Airport ; + fun WujlabaKunmingAirport : Ind Airport ; -fun YacuibaAirport : Ind Airport ; + fun YacuibaAirport : Ind Airport ; -fun YagouaAirport : Ind Airport ; + fun YagouaAirport : Ind Airport ; -fun YaguaraAirport : Ind Airport ; + fun YaguaraAirport : Ind Airport ; -fun YakatagaAKAirport : Ind Airport ; + fun YakatagaAKAirport : Ind Airport ; -fun YakimaFiringCenterArmyAirFieldWAAirport : Ind Airport ; + fun YakimaFiringCenterArmyAirFieldWAAirport : Ind Airport ; -fun YakuShimaAirport : Ind Airport ; + fun YakuShimaAirport : Ind Airport ; -fun YalataMissionSouthAustraliaAirport : Ind Airport ; + fun YalataMissionSouthAustraliaAirport : Ind Airport ; -fun YalingaAirport : Ind Airport ; + fun YalingaAirport : Ind Airport ; -fun YalumetAirport : Ind Airport ; + fun YalumetAirport : Ind Airport ; -fun YamagataHonshuAirport : Ind Airport ; + fun YamagataHonshuAirport : Ind Airport ; -fun YamoussoukroAirport : Ind Airport ; + fun YamoussoukroAirport : Ind Airport ; -fun YampaValleyCOAirport : Ind Airport ; + fun YampaValleyCOAirport : Ind Airport ; -fun YanAnAirport : Ind Airport ; + fun YanAnAirport : Ind Airport ; -fun YapsieiAirport : Ind Airport ; + fun YapsieiAirport : Ind Airport ; -fun YariAirport : Ind Airport ; + fun YariAirport : Ind Airport ; -fun YasuruAirport : Ind Airport ; + fun YasuruAirport : Ind Airport ; -fun YazdAirport : Ind Airport ; + fun YazdAirport : Ind Airport ; -fun YeagerWVAirport : Ind Airport ; + fun YeagerWVAirport : Ind Airport ; -fun YelimaneAirport : Ind Airport ; + fun YelimaneAirport : Ind Airport ; -fun YellowstoneRegionalWYAirport : Ind Airport ; + fun YellowstoneRegionalWYAirport : Ind Airport ; -fun YeringtonMunicipalNVAirport : Ind Airport ; + fun YeringtonMunicipalNVAirport : Ind Airport ; -fun YinchuanAirport : Ind Airport ; + fun YinchuanAirport : Ind Airport ; -fun YoffDakarAirport : Ind Airport ; + fun YoffDakarAirport : Ind Airport ; -fun YohannesIVAsmaraAirport : Ind Airport ; + fun YohannesIVAsmaraAirport : Ind Airport ; -fun YongaiAirport : Ind Airport ; + fun YongaiAirport : Ind Airport ; -fun YorkMunicipalNEAirport : Ind Airport ; + fun YorkMunicipalNEAirport : Ind Airport ; -fun YoshkarOlaJoshkarOlaMariElAirport : Ind Airport ; + fun YoshkarOlaJoshkarOlaMariElAirport : Ind Airport ; -fun YundumBanjulAirport : Ind Airport ; + fun YundumBanjulAirport : Ind Airport ; -fun ZMJackStellFieldARAirport : Ind Airport ; + fun ZMJackStellFieldARAirport : Ind Airport ; -fun ZacharBaySeaplaneBaseAKAirport : Ind Airport ; + fun ZacharBaySeaplaneBaseAKAirport : Ind Airport ; -fun ZakoumaAirport : Ind Airport ; + fun ZakoumaAirport : Ind Airport ; -fun ZambeziAirport : Ind Airport ; + fun ZambeziAirport : Ind Airport ; -fun ZanagaAirport : Ind Airport ; + fun ZanagaAirport : Ind Airport ; -fun ZapadnyErevanYerevanAirport : Ind Airport ; + fun ZapadnyErevanYerevanAirport : Ind Airport ; -fun ZapalaAirport : Ind Airport ; + fun ZapalaAirport : Ind Airport ; -fun ZapatocaAirport : Ind Airport ; + fun ZapatocaAirport : Ind Airport ; -fun ZegaButaAirport : Ind Airport ; + fun ZegaButaAirport : Ind Airport ; -fun ZemidAirport : Ind Airport ; + fun ZemidAirport : Ind Airport ; -fun ZhambylDzhambulZhambylAirport : Ind Airport ; + fun ZhambylDzhambulZhambylAirport : Ind Airport ; -fun ZhengzhouAirport : Ind Airport ; + fun ZhengzhouAirport : Ind Airport ; -fun ZhezqazghanDzhezkazganZhezqazghanAirport : Ind Airport ; + fun ZhezqazghanDzhezkazganZhezqazghanAirport : Ind Airport ; -fun ZhulyanyKievAirport : Ind Airport ; + fun ZhulyanyKievAirport : Ind Airport ; -fun ZiaInternationalDhakaAirport : Ind Airport ; + fun ZiaInternationalDhakaAirport : Ind Airport ; -fun ZielonaGoraAirport : Ind Airport ; + fun ZielonaGoraAirport : Ind Airport ; -fun ZilinaAirport : Ind Airport ; -} \ No newline at end of file + fun ZilinaAirport : Ind Airport ; + +} diff --git a/examples/SUMO/WorldAirportsL_Z.gf b/examples/SUMO/WorldAirportsL_Z.gf index 76281d6e5..16a6ae3a9 100644 --- a/examples/SUMO/WorldAirportsL_Z.gf +++ b/examples/SUMO/WorldAirportsL_Z.gf @@ -1,10347 +1,10345 @@ -abstract WorldAirportsL_Z = open Merge, Transportation in { +abstract WorldAirportsL_Z = Transportation ** { + fun ALManghamJrRegionalTXAirport : Ind Airport ; + fun AbbotsfordBCAirport : Ind Airport ; + fun AbengourouAirport : Ind Airport ; -fun ALManghamJrRegionalTXAirport : Ind Airport ; + fun AccomackCountyVAAirport : Ind Airport ; -fun AbbotsfordBCAirport : Ind Airport ; + fun AchmadyaniSemarangAirport : Ind Airport ; -fun AbengourouAirport : Ind Airport ; + fun AdamsFieldARAirport : Ind Airport ; -fun AccomackCountyVAAirport : Ind Airport ; + fun AdirondackNYAirport : Ind Airport ; -fun AchmadyaniSemarangAirport : Ind Airport ; + fun AdisumarmoSoloCityAirport : Ind Airport ; -fun AdamsFieldARAirport : Ind Airport ; + fun AerodromoTolosaLaPlataAirport : Ind Airport ; -fun AdirondackNYAirport : Ind Airport ; + fun Aeroporto4deFevereiroBelasLuandaAirport : Ind Airport ; -fun AdisumarmoSoloCityAirport : Ind Airport ; + fun AeroportoSantosDumontRJAirport : Ind Airport ; -fun AerodromoTolosaLaPlataAirport : Ind Airport ; + fun AeroportodaPorteladeSacavemLisboaLisbonAirport : Ind Airport ; -fun Aeroporto4deFevereiroBelasLuandaAirport : Ind Airport ; + fun AeroportodasLajesAzoresAirport : Ind Airport ; -fun AeroportoSantosDumontRJAirport : Ind Airport ; + fun AeropuerodeBajioLeonAirport : Ind Airport ; -fun AeroportodaPorteladeSacavemLisboaLisbonAirport : Ind Airport ; + fun AeropuertoComodoroArturoMerinoBenitezSantiagodeChileAirport : Ind Airport ; -fun AeroportodasLajesAzoresAirport : Ind Airport ; + fun AeropuertoDepartamentaldeRiveraRiveraAirport : Ind Airport ; -fun AeropuerodeBajioLeonAirport : Ind Airport ; + fun AeropuertoDepartamentaldeSaltoSaltoAirport : Ind Airport ; -fun AeropuertoComodoroArturoMerinoBenitezSantiagodeChileAirport : Ind Airport ; + fun AeropuertoGeneralMarianoEscobedoMonterreyAirport : Ind Airport ; -fun AeropuertoDepartamentaldeRiveraRiveraAirport : Ind Airport ; + fun AeropuertoInternacionalBenitoJuarezCiudaddeMexicoMexicoCityAirport : Ind Airport ; -fun AeropuertoDepartamentaldeSaltoSaltoAirport : Ind Airport ; + fun AeropuertoInternacionalJorgeChavezLimaAirport : Ind Airport ; -fun AeropuertoGeneralMarianoEscobedoMonterreyAirport : Ind Airport ; + fun AeropuertoInternacionalSimonBolivarMaiquetiaAirport : Ind Airport ; -fun AeropuertoInternacionalBenitoJuarezCiudaddeMexicoMexicoCityAirport : Ind Airport ; + fun AeropuertoInternacionaldelCaribeGeneralSMarinoMargeritaPorlamararAirport : Ind Airport ; -fun AeropuertoInternacionalJorgeChavezLimaAirport : Ind Airport ; + fun AeropuertoInternacionaldelNorteMonterreyAirport : Ind Airport ; -fun AeropuertoInternacionalSimonBolivarMaiquetiaAirport : Ind Airport ; + fun AeropuertodelasAmericasSantoDomingoAirport : Ind Airport ; -fun AeropuertoInternacionaldelCaribeGeneralSMarinoMargeritaPorlamararAirport : Ind Airport ; + fun AganaNavalAirStationAganaAirport : Ind Airport ; -fun AeropuertoInternacionaldelNorteMonterreyAirport : Ind Airport ; + fun AgnoLuganoAirport : Ind Airport ; -fun AeropuertodelasAmericasSantoDomingoAirport : Ind Airport ; + fun AirBaseOsanAirport : Ind Airport ; -fun AganaNavalAirStationAganaAirport : Ind Airport ; + fun AirlieBeachQueenslandAirport : Ind Airport ; -fun AgnoLuganoAirport : Ind Airport ; + fun AjmanCityAirport : Ind Airport ; -fun AirBaseOsanAirport : Ind Airport ; + fun AklavikNTAirport : Ind Airport ; -fun AirlieBeachQueenslandAirport : Ind Airport ; + fun AlKharjAirBaseAirport : Ind Airport ; -fun AjmanCityAirport : Ind Airport ; + fun AlThaurahAirport : Ind Airport ; -fun AklavikNTAirport : Ind Airport ; + fun AlagoinhasBAAirport : Ind Airport ; -fun AlKharjAirBaseAirport : Ind Airport ; + fun AlamedaNavalAirStationNimitzFieldCAAirport : Ind Airport ; -fun AlThaurahAirport : Ind Airport ; + fun AlamosAirport : Ind Airport ; -fun AlagoinhasBAAirport : Ind Airport ; + fun AlbanyNavalAirStationGAAirport : Ind Airport ; -fun AlamedaNavalAirStationNimitzFieldCAAirport : Ind Airport ; + fun AlbertJEllisNCAirport : Ind Airport ; -fun AlamosAirport : Ind Airport ; + fun AlbertWhittedFLAirport : Ind Airport ; -fun AlbanyNavalAirStationGAAirport : Ind Airport ; + fun AlbiAirport : Ind Airport ; -fun AlbertJEllisNCAirport : Ind Airport ; + fun AlcootaNorthernTerritoryAirport : Ind Airport ; -fun AlbertWhittedFLAirport : Ind Airport ; + fun AlegAirport : Ind Airport ; -fun AlbiAirport : Ind Airport ; + fun AleknagikAKAirport : Ind Airport ; -fun AlcootaNorthernTerritoryAirport : Ind Airport ; + fun AlertBayBCAirport : Ind Airport ; -fun AlegAirport : Ind Airport ; + fun AlertNTAirport : Ind Airport ; -fun AleknagikAKAirport : Ind Airport ; + fun AlexanderHamiltonStCroixAirport : Ind Airport ; -fun AlertBayBCAirport : Ind Airport ; + fun AlhegroSassariSardiniaAirport : Ind Airport ; -fun AlertNTAirport : Ind Airport ; + fun AliceArmSilverCityWaterAerodromeBCAirport : Ind Airport ; -fun AlexanderHamiltonStCroixAirport : Ind Airport ; + fun AlmaQCAirport : Ind Airport ; -fun AlhegroSassariSardiniaAirport : Ind Airport ; + fun AlmeloAirport : Ind Airport ; -fun AliceArmSilverCityWaterAerodromeBCAirport : Ind Airport ; + fun AlmeriaAirport : Ind Airport ; -fun AlmaQCAirport : Ind Airport ; + fun AlmiranteZarTrelewAirport : Ind Airport ; -fun AlmeloAirport : Ind Airport ; + fun AltaLakeBCAirport : Ind Airport ; -fun AlmeriaAirport : Ind Airport ; + fun AltoPalenaAirport : Ind Airport ; -fun AlmiranteZarTrelewAirport : Ind Airport ; + fun AltusAirForceBaseOKAirport : Ind Airport ; -fun AltaLakeBCAirport : Ind Airport ; + fun AmbatondrazakaAirport : Ind Airport ; -fun AltoPalenaAirport : Ind Airport ; + fun AmborovyMahajangaMajungaAirport : Ind Airport ; -fun AltusAirForceBaseOKAirport : Ind Airport ; + fun AmbregrisCayeSanPedroAirport : Ind Airport ; -fun AmbatondrazakaAirport : Ind Airport ; + fun AmericanRiverSouthAustraliaAirport : Ind Airport ; -fun AmborovyMahajangaMajungaAirport : Ind Airport ; + fun AmersfoortAirport : Ind Airport ; -fun AmbregrisCayeSanPedroAirport : Ind Airport ; + fun AmilcarCabralSalAirport : Ind Airport ; -fun AmericanRiverSouthAustraliaAirport : Ind Airport ; + fun AmosMunicipalQCAirport : Ind Airport ; -fun AmersfoortAirport : Ind Airport ; + fun AnacostiaUSNavyHeliportDCAirport : Ind Airport ; -fun AmilcarCabralSalAirport : Ind Airport ; + fun AnahimLakeAerodromeBCAirport : Ind Airport ; -fun AmosMunicipalQCAirport : Ind Airport ; + fun AnandAirport : Ind Airport ; -fun AnacostiaUSNavyHeliportDCAirport : Ind Airport ; + fun AncudAirport : Ind Airport ; -fun AnahimLakeAerodromeBCAirport : Ind Airport ; + fun AndaSandaneAirport : Ind Airport ; -fun AnandAirport : Ind Airport ; + fun AndapaAirport : Ind Airport ; -fun AncudAirport : Ind Airport ; + fun AndersenAirForceBaseAndersenIslandAirport : Ind Airport ; -fun AndaSandaneAirport : Ind Airport ; + fun AndriamenaAirport : Ind Airport ; -fun AndapaAirport : Ind Airport ; + fun AnegadaAirport : Ind Airport ; -fun AndersenAirForceBaseAndersenIslandAirport : Ind Airport ; + fun AngelinaCountyTXAirport : Ind Airport ; -fun AndriamenaAirport : Ind Airport ; + fun AngkorSiemReapAirport : Ind Airport ; -fun AnegadaAirport : Ind Airport ; + fun AnglingLakeMBAirport : Ind Airport ; -fun AngelinaCountyTXAirport : Ind Airport ; + fun AnkazoaboAirport : Ind Airport ; -fun AngkorSiemReapAirport : Ind Airport ; + fun AnnaiAirport : Ind Airport ; -fun AnglingLakeMBAirport : Ind Airport ; + fun AnnecyAirport : Ind Airport ; -fun AnkazoaboAirport : Ind Airport ; + fun AnnmasseAirport : Ind Airport ; -fun AnnaiAirport : Ind Airport ; + fun AntoinedeSteExuperySanAntonioOesteAirport : Ind Airport ; -fun AnnecyAirport : Ind Airport ; + fun AntonioMaceoSantiagoAirport : Ind Airport ; -fun AnnmasseAirport : Ind Airport ; + fun AntsalovaAirport : Ind Airport ; -fun AntoinedeSteExuperySanAntonioOesteAirport : Ind Airport ; + fun AntsohihyAirport : Ind Airport ; -fun AntonioMaceoSantiagoAirport : Ind Airport ; + fun ApeldoornAirport : Ind Airport ; -fun AntsalovaAirport : Ind Airport ; + fun AqmolaTselinogradAqmolaAirport : Ind Airport ; -fun AntsohihyAirport : Ind Airport ; + fun AqtanShevchenkoMangghystanAirport : Ind Airport ; -fun ApeldoornAirport : Ind Airport ; + fun AransasCountyTXAirport : Ind Airport ; -fun AqmolaTselinogradAqmolaAirport : Ind Airport ; + fun ArarAirport : Ind Airport ; -fun AqtanShevchenkoMangghystanAirport : Ind Airport ; + fun ArawaAirport : Ind Airport ; -fun AransasCountyTXAirport : Ind Airport ; + fun ArcosMGAirport : Ind Airport ; -fun ArarAirport : Ind Airport ; + fun ArcticBayNTAirport : Ind Airport ; -fun ArawaAirport : Ind Airport ; + fun ArcticRedRiverWaterAerodromeNTAirport : Ind Airport ; -fun ArcosMGAirport : Ind Airport ; + fun ArgentiaNavalAirStationNFAirport : Ind Airport ; -fun ArcticBayNTAirport : Ind Airport ; + fun AribindaAirport : Ind Airport ; -fun ArcticRedRiverWaterAerodromeNTAirport : Ind Airport ; + fun ArlingtonMunicipalTXAirport : Ind Airport ; -fun ArgentiaNavalAirStationNFAirport : Ind Airport ; + fun ArlitAirport : Ind Airport ; -fun AribindaAirport : Ind Airport ; + fun ArmstrongONAirport : Ind Airport ; -fun ArlingtonMunicipalTXAirport : Ind Airport ; + fun ArnesAerodromeMBAirport : Ind Airport ; -fun ArlitAirport : Ind Airport ; + fun ArnhemAirport : Ind Airport ; -fun ArmstrongONAirport : Ind Airport ; + fun ArnoldAirForceBaseTNAirport : Ind Airport ; -fun ArnesAerodromeMBAirport : Ind Airport ; + fun ArnosValeStVincentAirport : Ind Airport ; -fun ArnhemAirport : Ind Airport ; + fun AroMoldeAirport : Ind Airport ; -fun ArnoldAirForceBaseTNAirport : Ind Airport ; + fun AruaAirport : Ind Airport ; -fun ArnosValeStVincentAirport : Ind Airport ; + fun ArunkaAirport : Ind Airport ; -fun AroMoldeAirport : Ind Airport ; + fun ArviatNTAirport : Ind Airport ; -fun AruaAirport : Ind Airport ; + fun AsbestosAerodromeQCAirport : Ind Airport ; -fun ArunkaAirport : Ind Airport ; + fun AshcroftBCAirport : Ind Airport ; -fun ArviatNTAirport : Ind Airport ; + fun AshfordAirport : Ind Airport ; -fun AsbestosAerodromeQCAirport : Ind Airport ; + fun AsturiasOviedoAvilesAirport : Ind Airport ; -fun AshcroftBCAirport : Ind Airport ; + fun AtibaiaSPAirport : Ind Airport ; -fun AshfordAirport : Ind Airport ; + fun AtikokanMunicipalONAirport : Ind Airport ; -fun AsturiasOviedoAvilesAirport : Ind Airport ; + fun AtkinsonMunicipalKSAirport : Ind Airport ; -fun AtibaiaSPAirport : Ind Airport ; + fun AtlantaNavalAirStationGAAirport : Ind Airport ; -fun AtikokanMunicipalONAirport : Ind Airport ; + fun AtsugiAirport : Ind Airport ; -fun AtkinsonMunicipalKSAirport : Ind Airport ; + fun AttawapiskatONAirport : Ind Airport ; -fun AtlantaNavalAirStationGAAirport : Ind Airport ; + fun AubenasAirport : Ind Airport ; -fun AtsugiAirport : Ind Airport ; + fun AuburnLewistonMunicipalMEAirport : Ind Airport ; -fun AttawapiskatONAirport : Ind Airport ; + fun AugustoCesarSandinoManaguaAirport : Ind Airport ; -fun AubenasAirport : Ind Airport ; + fun AupalukQCAirport : Ind Airport ; -fun AuburnLewistonMunicipalMEAirport : Ind Airport ; + fun AuroseBayNewSouthWalesAirport : Ind Airport ; -fun AugustoCesarSandinoManaguaAirport : Ind Airport ; + fun AvellinoAirport : Ind Airport ; -fun AupalukQCAirport : Ind Airport ; + fun AvengerFieldTXAirport : Ind Airport ; -fun AuroseBayNewSouthWalesAirport : Ind Airport ; + fun AyiaNapaAirport : Ind Airport ; -fun AvellinoAirport : Ind Airport ; + fun BabelthuapKororKororAirport : Ind Airport ; -fun AvengerFieldTXAirport : Ind Airport ; + fun BagotvilleQCAirport : Ind Airport ; -fun AyiaNapaAirport : Ind Airport ; + fun BahawalnagarAirport : Ind Airport ; -fun BabelthuapKororKororAirport : Ind Airport ; + fun BaieComeauQCAirport : Ind Airport ; -fun BagotvilleQCAirport : Ind Airport ; + fun BaieJohanBeetzWaterAerodromeQCAirport : Ind Airport ; -fun BahawalnagarAirport : Ind Airport ; + fun BaimuruAirport : Ind Airport ; -fun BaieComeauQCAirport : Ind Airport ; + fun BakerLakeNTAirport : Ind Airport ; -fun BaieJohanBeetzWaterAerodromeQCAirport : Ind Airport ; + fun BalaiTanjungAirport : Ind Airport ; -fun BaimuruAirport : Ind Airport ; + fun BalcanoonaSouthAustraliaAirport : Ind Airport ; -fun BakerLakeNTAirport : Ind Airport ; + fun BaldwinCountyGAAirport : Ind Airport ; -fun BalaiTanjungAirport : Ind Airport ; + fun BalimoAirport : Ind Airport ; -fun BalcanoonaSouthAustraliaAirport : Ind Airport ; + fun BaltraIslandGalapagosAirport : Ind Airport ; -fun BaldwinCountyGAAirport : Ind Airport ; + fun BalurghatAirport : Ind Airport ; -fun BalimoAirport : Ind Airport ; + fun BamfieldWaterAerodromeBCAirport : Ind Airport ; -fun BaltraIslandGalapagosAirport : Ind Airport ; + fun BanHoueiSaiAirport : Ind Airport ; -fun BalurghatAirport : Ind Airport ; + fun BanainaAirport : Ind Airport ; -fun BamfieldWaterAerodromeBCAirport : Ind Airport ; + fun BanakLakselvAirport : Ind Airport ; -fun BanHoueiSaiAirport : Ind Airport ; + fun BandanairaAirport : Ind Airport ; -fun BanainaAirport : Ind Airport ; + fun BandarLampungAirport : Ind Airport ; -fun BanakLakselvAirport : Ind Airport ; + fun BanffABAirport : Ind Airport ; -fun BandanairaAirport : Ind Airport ; + fun BarajasMadridAirport : Ind Airport ; -fun BandarLampungAirport : Ind Airport ; + fun BarakomaAirport : Ind Airport ; -fun BanffABAirport : Ind Airport ; + fun BaratAirport : Ind Airport ; -fun BarajasMadridAirport : Ind Airport ; + fun BarbeMoptiAirport : Ind Airport ; -fun BarakomaAirport : Ind Airport ; + fun BarbersPointNavalAirStationJohnRodgersFieldHIAirport : Ind Airport ; -fun BaratAirport : Ind Airport ; + fun BarinNavalOutlyingFieldALAirport : Ind Airport ; -fun BarbeMoptiAirport : Ind Airport ; + fun BarkerWAAirport : Ind Airport ; -fun BarbersPointNavalAirStationJohnRodgersFieldHIAirport : Ind Airport ; + fun BarkleyRegionalKYAirport : Ind Airport ; -fun BarinNavalOutlyingFieldALAirport : Ind Airport ; + fun BaroraAirport : Ind Airport ; -fun BarkerWAAirport : Ind Airport ; + fun BarraMansaRJAirport : Ind Airport ; -fun BarkleyRegionalKYAirport : Ind Airport ; + fun BarradoPiraiRJAirport : Ind Airport ; -fun BaroraAirport : Ind Airport ; + fun BarrancominasAirport : Ind Airport ; -fun BarraMansaRJAirport : Ind Airport ; + fun BartolomeSalomPuertoCabelloAirport : Ind Airport ; -fun BarradoPiraiRJAirport : Ind Airport ; + fun BaselMulhouseEuroMulhouseAirport : Ind Airport ; -fun BarrancominasAirport : Ind Airport ; + fun BassillacPerigueuxAirport : Ind Airport ; -fun BartolomeSalomPuertoCabelloAirport : Ind Airport ; + fun BatemansBayNewSouthWalesAirport : Ind Airport ; -fun BaselMulhouseEuroMulhouseAirport : Ind Airport ; + fun BatesFieldALAirport : Ind Airport ; -fun BassillacPerigueuxAirport : Ind Airport ; + fun BathurstNBAirport : Ind Airport ; -fun BatemansBayNewSouthWalesAirport : Ind Airport ; + fun BatouriAirport : Ind Airport ; -fun BatesFieldALAirport : Ind Airport ; + fun BatuBerMalaccaMelakaAirport : Ind Airport ; -fun BathurstNBAirport : Ind Airport ; + fun BauerfieldEfateIsAirport : Ind Airport ; -fun BatouriAirport : Ind Airport ; + fun BaxterCountyRegionalARAirport : Ind Airport ; -fun BatuBerMalaccaMelakaAirport : Ind Airport ; + fun BealananaAirport : Ind Airport ; -fun BauerfieldEfateIsAirport : Ind Airport ; + fun BearskinLakeAerodromeONAirport : Ind Airport ; -fun BaxterCountyRegionalARAirport : Ind Airport ; + fun BeattonRiverBCAirport : Ind Airport ; -fun BealananaAirport : Ind Airport ; + fun BeaverAKAirport : Ind Airport ; -fun BearskinLakeAerodromeONAirport : Ind Airport ; + fun BeaverCreekCOAirport : Ind Airport ; -fun BeattonRiverBCAirport : Ind Airport ; + fun BeaverCreekYTAirport : Ind Airport ; -fun BeaverAKAirport : Ind Airport ; + fun BedardFieldAZAirport : Ind Airport ; -fun BeaverCreekCOAirport : Ind Airport ; + fun BededouroSPAirport : Ind Airport ; -fun BeaverCreekYTAirport : Ind Airport ; + fun BedwellHarbourWaterAerodromeBCAirport : Ind Airport ; -fun BedardFieldAZAirport : Ind Airport ; + fun BefandrianaAirport : Ind Airport ; -fun BededouroSPAirport : Ind Airport ; + fun BegaNewSouthWalesAirport : Ind Airport ; -fun BedwellHarbourWaterAerodromeBCAirport : Ind Airport ; + fun BeidaAirport : Ind Airport ; -fun BefandrianaAirport : Ind Airport ; + fun BekilyAirport : Ind Airport ; -fun BegaNewSouthWalesAirport : Ind Airport ; + fun BeldringeOdenseAirport : Ind Airport ; -fun BeidaAirport : Ind Airport ; + fun BelesPawiAirport : Ind Airport ; -fun BekilyAirport : Ind Airport ; + fun BelizeCityMunicipalAirstripBelizeCityAirport : Ind Airport ; -fun BeldringeOdenseAirport : Ind Airport ; + fun BellaCoolaBCAirport : Ind Airport ; -fun BelesPawiAirport : Ind Airport ; + fun BellegardeLimogesAirport : Ind Airport ; -fun BelizeCityMunicipalAirstripBelizeCityAirport : Ind Airport ; + fun BenGurionTelAvivAirport : Ind Airport ; -fun BellaCoolaBCAirport : Ind Airport ; + fun BenjaminConstantAMAirport : Ind Airport ; -fun BellegardeLimogesAirport : Ind Airport ; + fun BerensRiverMBAirport : Ind Airport ; -fun BenGurionTelAvivAirport : Ind Airport ; + fun BermudaDunesCAAirport : Ind Airport ; -fun BenjaminConstantAMAirport : Ind Airport ; + fun BermudaNavalAirStationBermudaAirport : Ind Airport ; -fun BerensRiverMBAirport : Ind Airport ; + fun BernAirport : Ind Airport ; -fun BermudaDunesCAAirport : Ind Airport ; + fun BerorohaAirport : Ind Airport ; -fun BermudaNavalAirStationBermudaAirport : Ind Airport ; + fun BerzMacombMIAirport : Ind Airport ; -fun BernAirport : Ind Airport ; + fun BiardPoitiersAirport : Ind Airport ; -fun BerorohaAirport : Ind Airport ; + fun BiersetLiegeLuttichAirport : Ind Airport ; -fun BerzMacombMIAirport : Ind Airport ; + fun BigBayMarinaBCAirport : Ind Airport ; -fun BiardPoitiersAirport : Ind Airport ; + fun BigBayYachtClubSeaplaneBaseBCAirport : Ind Airport ; -fun BiersetLiegeLuttichAirport : Ind Airport ; + fun BigBearCityCAAirport : Ind Airport ; -fun BigBayMarinaBCAirport : Ind Airport ; + fun BigTroutLakeONAirport : Ind Airport ; -fun BigBayYachtClubSeaplaneBaseBCAirport : Ind Airport ; + fun BilaspurAirport : Ind Airport ; -fun BigBearCityCAAirport : Ind Airport ; + fun BiniguniAirport : Ind Airport ; -fun BigTroutLakeONAirport : Ind Airport ; + fun BintuniAirport : Ind Airport ; -fun BilaspurAirport : Ind Airport ; + fun BirgiTrapaniAirport : Ind Airport ; -fun BiniguniAirport : Ind Airport ; + fun BirjandAirport : Ind Airport ; -fun BintuniAirport : Ind Airport ; + fun BirmimghamAirNationalGuardALAirport : Ind Airport ; -fun BirgiTrapaniAirport : Ind Airport ; + fun BitolaAirport : Ind Airport ; -fun BirjandAirport : Ind Airport ; + fun BlackHillsAirportClydeIceFieldSDAirport : Ind Airport ; -fun BirmimghamAirNationalGuardALAirport : Ind Airport ; + fun BlackRockNMAirport : Ind Airport ; -fun BitolaAirport : Ind Airport ; + fun BlackTickleAerodromeNFAirport : Ind Airport ; -fun BlackHillsAirportClydeIceFieldSDAirport : Ind Airport ; + fun BlackburneMontserratPlymouthAirport : Ind Airport ; -fun BlackRockNMAirport : Ind Airport ; + fun BlagnacToulouseAirport : Ind Airport ; -fun BlackTickleAerodromeNFAirport : Ind Airport ; + fun BlancSablonQCAirport : Ind Airport ; -fun BlackburneMontserratPlymouthAirport : Ind Airport ; + fun BloodveinRiverMBAirport : Ind Airport ; -fun BlagnacToulouseAirport : Ind Airport ; + fun BlubberBayBCAirport : Ind Airport ; -fun BlancSablonQCAirport : Ind Airport ; + fun BlueGrassKYAirport : Ind Airport ; -fun BloodveinRiverMBAirport : Ind Airport ; + fun BobQuinnLakeAirport : Ind Airport ; -fun BlubberBayBCAirport : Ind Airport ; + fun BochumAirport : Ind Airport ; -fun BlueGrassKYAirport : Ind Airport ; + fun BoeblingenAirport : Ind Airport ; -fun BobQuinnLakeAirport : Ind Airport ; + fun BogandeAirport : Ind Airport ; -fun BochumAirport : Ind Airport ; + fun BogashevoTomskAirport : Ind Airport ; -fun BoeblingenAirport : Ind Airport ; + fun BogueFieldMarineCorpsAuxiliaryLandingFieldNCAirport : Ind Airport ; -fun BogandeAirport : Ind Airport ; + fun BolAirportChad : Ind Airport ; -fun BogashevoTomskAirport : Ind Airport ; + fun BolshesavinoPermAirport : Ind Airport ; -fun BogueFieldMarineCorpsAuxiliaryLandingFieldNCAirport : Ind Airport ; + fun BomJesusdaLapaBAAirport : Ind Airport ; -fun BolAirportChad : Ind Airport ; + fun BomarFieldShelbyvilleMunicipalTNAirport : Ind Airport ; -fun BolshesavinoPermAirport : Ind Airport ; + fun BonaventureQCAirport : Ind Airport ; -fun BomJesusdaLapaBAAirport : Ind Airport ; + fun BongorAirport : Ind Airport ; -fun BomarFieldShelbyvilleMunicipalTNAirport : Ind Airport ; + fun BonnyvilleABAirport : Ind Airport ; -fun BonaventureQCAirport : Ind Airport ; + fun BonrikiTarawaAirport : Ind Airport ; -fun BongorAirport : Ind Airport ; + fun BoonevilleBaldwynMSAirport : Ind Airport ; -fun BonnyvilleABAirport : Ind Airport ; + fun BorbaAirport : Ind Airport ; -fun BonrikiTarawaAirport : Ind Airport ; + fun BordenONAirport : Ind Airport ; -fun BoonevilleBaldwynMSAirport : Ind Airport ; + fun BornholmRonneRoenneAirport : Ind Airport ; -fun BorbaAirport : Ind Airport ; + fun BorniteAKAirport : Ind Airport ; -fun BordenONAirport : Ind Airport ; + fun BotucatuSPAirport : Ind Airport ; -fun BornholmRonneRoenneAirport : Ind Airport ; + fun BouChekifTiaretAirport : Ind Airport ; -fun BorniteAKAirport : Ind Airport ; + fun BoukhalefTangerTangierAirport : Ind Airport ; -fun BotucatuSPAirport : Ind Airport ; + fun BoulderMunicipalCOAirport : Ind Airport ; -fun BouChekifTiaretAirport : Ind Airport ; + fun BoulsaAirport : Ind Airport ; -fun BoukhalefTangerTangierAirport : Ind Airport ; + fun BoundaryBayBCAirport : Ind Airport ; -fun BoulderMunicipalCOAirport : Ind Airport ; + fun BourgStMauriceAirport : Ind Airport ; -fun BoulsaAirport : Ind Airport ; + fun BoussoAirport : Ind Airport ; -fun BoundaryBayBCAirport : Ind Airport ; + fun BoutilimitAirport : Ind Airport ; -fun BourgStMauriceAirport : Ind Airport ; + fun BowenQueenslandAirport : Ind Airport ; -fun BoussoAirport : Ind Airport ; + fun BowmanFieldKYAirport : Ind Airport ; -fun BoutilimitAirport : Ind Airport ; + fun BrackAirport : Ind Airport ; -fun BowenQueenslandAirport : Ind Airport ; + fun BrackettFieldCAAirport : Ind Airport ; -fun BowmanFieldKYAirport : Ind Airport ; + fun BrandonAirport : Ind Airport ; -fun BrackAirport : Ind Airport ; + fun BrandonMBAirport : Ind Airport ; -fun BrackettFieldCAAirport : Ind Airport ; + fun BrantfordONAirport : Ind Airport ; -fun BrandonAirport : Ind Airport ; + fun BratislavaBusStationBratislavaAirport : Ind Airport ; -fun BrandonMBAirport : Ind Airport ; + fun BrazoriaCountyTXAirport : Ind Airport ; -fun BrantfordONAirport : Ind Airport ; + fun BreckenridgeCOAirport : Ind Airport ; -fun BratislavaBusStationBratislavaAirport : Ind Airport ; + fun BremertonNationalWAAirport : Ind Airport ; -fun BrazoriaCountyTXAirport : Ind Airport ; + fun BresciaAirport : Ind Airport ; -fun BreckenridgeCOAirport : Ind Airport ; + fun BrevoortNTAirport : Ind Airport ; -fun BremertonNationalWAAirport : Ind Airport ; + fun BridgewaterAirParkVAAirport : Ind Airport ; -fun BresciaAirport : Ind Airport ; + fun BrittonMunicipalSDAirport : Ind Airport ; -fun BrevoortNTAirport : Ind Airport ; + fun BrnikLjubljanaAirport : Ind Airport ; -fun BridgewaterAirParkVAAirport : Ind Airport ; + fun BroadviewSKAirport : Ind Airport ; -fun BrittonMunicipalSDAirport : Ind Airport ; + fun BrochetMBAirport : Ind Airport ; -fun BrnikLjubljanaAirport : Ind Airport ; + fun BrockvilleAerodromeONAirport : Ind Airport ; -fun BroadviewSKAirport : Ind Airport ; + fun BromontQCAirport : Ind Airport ; -fun BrochetMBAirport : Ind Airport ; + fun BronLyonAirport : Ind Airport ; -fun BrockvilleAerodromeONAirport : Ind Airport ; + fun BronsonCreekAerodromeBCAirport : Ind Airport ; -fun BromontQCAirport : Ind Airport ; + fun BrookhavenNYAirport : Ind Airport ; -fun BronLyonAirport : Ind Airport ; + fun BroughtonIslandNTAirport : Ind Airport ; -fun BronsonCreekAerodromeBCAirport : Ind Airport ; + fun BrownFieldMunicipalCAAirport : Ind Airport ; -fun BrookhavenNYAirport : Ind Airport ; + fun BrunswickCountyNCAirport : Ind Airport ; -fun BroughtonIslandNTAirport : Ind Airport ; + fun BrunswickNavalAirStationMEAirport : Ind Airport ; -fun BrownFieldMunicipalCAAirport : Ind Airport ; + fun BrusqueSCAirport : Ind Airport ; -fun BrunswickCountyNCAirport : Ind Airport ; + fun BuchananAirport : Ind Airport ; -fun BrunswickNavalAirStationMEAirport : Ind Airport ; + fun BuchansNFAirport : Ind Airport ; -fun BrusqueSCAirport : Ind Airport ; + fun BudvaAirport : Ind Airport ; -fun BuchananAirport : Ind Airport ; + fun BuffaloNarrowsSKAirport : Ind Airport ; -fun BuchansNFAirport : Ind Airport ; + fun BugulmaTatarstanAirport : Ind Airport ; -fun BudvaAirport : Ind Airport ; + fun BuinAirport : Ind Airport ; -fun BuffaloNarrowsSKAirport : Ind Airport ; + fun BullHarbourWaterAerodromeBCAirport : Ind Airport ; -fun BugulmaTatarstanAirport : Ind Airport ; + fun BuluhTumbangTanjungPandanAirport : Ind Airport ; -fun BuinAirport : Ind Airport ; + fun BunoBedelleAirport : Ind Airport ; -fun BullHarbourWaterAerodromeBCAirport : Ind Airport ; + fun BuolNewGuineaAirport : Ind Airport ; -fun BuluhTumbangTanjungPandanAirport : Ind Airport ; + fun BuraimiAirport : Ind Airport ; -fun BunoBedelleAirport : Ind Airport ; + fun BuretaAirport : Ind Airport ; -fun BuolNewGuineaAirport : Ind Airport ; + fun BurlingtonAirparkONAirport : Ind Airport ; -fun BuraimiAirport : Ind Airport ; + fun BurnettCountyWIAirport : Ind Airport ; -fun BuretaAirport : Ind Airport ; + fun BurnsLakeBCAirport : Ind Airport ; -fun BurlingtonAirparkONAirport : Ind Airport ; + fun BurwashYTAirport : Ind Airport ; -fun BurnettCountyWIAirport : Ind Airport ; + fun BusuangaAirport : Ind Airport ; -fun BurnsLakeBCAirport : Ind Airport ; + fun ButterworthAirport : Ind Airport ; -fun BurwashYTAirport : Ind Airport ; + fun ButtonvilleAirfieldONAirport : Ind Airport ; -fun BusuangaAirport : Ind Airport ; + fun ByronBayNTAirport : Ind Airport ; -fun ButterworthAirport : Ind Airport ; + fun ByronBayQueenslandAirport : Ind Airport ; -fun ButtonvilleAirfieldONAirport : Ind Airport ; + fun CPACarlosRovirosaVillahermosaAirport : Ind Airport ; -fun ByronBayNTAirport : Ind Airport ; + fun CaballocochaAirport : Ind Airport ; -fun ByronBayQueenslandAirport : Ind Airport ; + fun CabanissFieldNavalOutlyingFieldTXAirport : Ind Airport ; -fun CPACarlosRovirosaVillahermosaAirport : Ind Airport ; + fun CaboolMemorialMOAirport : Ind Airport ; -fun CaballocochaAirport : Ind Airport ; + fun CachoeiradoSulRSAirport : Ind Airport ; -fun CabanissFieldNavalOutlyingFieldTXAirport : Ind Airport ; + fun CahorsAirport : Ind Airport ; -fun CaboolMemorialMOAirport : Ind Airport ; + fun CairnsArmyAirFieldALAirport : Ind Airport ; -fun CachoeiradoSulRSAirport : Ind Airport ; + fun CaixasdoSulRSAirport : Ind Airport ; -fun CahorsAirport : Ind Airport ; + fun CaledoniaCountyVTAirport : Ind Airport ; -fun CairnsArmyAirFieldALAirport : Ind Airport ; + fun CaletaJosefinaAirport : Ind Airport ; -fun CaixasdoSulRSAirport : Ind Airport ; + fun CalgaryInternationalABAirport : Ind Airport ; -fun CaledoniaCountyVTAirport : Ind Airport ; + fun CallawayGAAirport : Ind Airport ; -fun CaletaJosefinaAirport : Ind Airport ; + fun CamacariBAAirport : Ind Airport ; -fun CalgaryInternationalABAirport : Ind Airport ; + fun CambridgeBayNTAirport : Ind Airport ; -fun CallawayGAAirport : Ind Airport ; + fun CampMaybryTXAirport : Ind Airport ; -fun CamacariBAAirport : Ind Airport ; + fun CampbellRiverBCAirport : Ind Airport ; -fun CambridgeBayNTAirport : Ind Airport ; + fun CampbellRiverHarborSeaplaneBaseBCAirport : Ind Airport ; -fun CampMaybryTXAirport : Ind Airport ; + fun CampoBomRSAirport : Ind Airport ; -fun CampbellRiverBCAirport : Ind Airport ; + fun CamposdoJordaoAirport : Ind Airport ; -fun CampbellRiverHarborSeaplaneBaseBCAirport : Ind Airport ; + fun CanThoAirport : Ind Airport ; -fun CampoBomRSAirport : Ind Airport ; + fun CanaBravaPAAirport : Ind Airport ; -fun CamposdoJordaoAirport : Ind Airport ; + fun CanelasRSAirport : Ind Airport ; -fun CanThoAirport : Ind Airport ; + fun CanoasRSAirport : Ind Airport ; -fun CanaBravaPAAirport : Ind Airport ; + fun CanoinhasSCAirport : Ind Airport ; -fun CanelasRSAirport : Ind Airport ; + fun CapeCanaveralAirForceStationSkidStripFLAirport : Ind Airport ; -fun CanoasRSAirport : Ind Airport ; + fun CapeDorsetNTAirport : Ind Airport ; -fun CanoinhasSCAirport : Ind Airport ; + fun CapeDyerNTAirport : Ind Airport ; -fun CapeCanaveralAirForceStationSkidStripFLAirport : Ind Airport ; + fun CapeHooperNTAirport : Ind Airport ; -fun CapeDorsetNTAirport : Ind Airport ; + fun CapeLisburneLRRSAKAirport : Ind Airport ; -fun CapeDyerNTAirport : Ind Airport ; + fun CapeMayCountyNJAirport : Ind Airport ; -fun CapeHooperNTAirport : Ind Airport ; + fun CapeParryNTAirport : Ind Airport ; -fun CapeLisburneLRRSAKAirport : Ind Airport ; + fun CapeStJamesBCAirport : Ind Airport ; -fun CapeMayCountyNJAirport : Ind Airport ; + fun CapeYoungNTAirport : Ind Airport ; -fun CapeParryNTAirport : Ind Airport ; + fun CapitalBeijingPekingAirport : Ind Airport ; -fun CapeStJamesBCAirport : Ind Airport ; + fun CapitalCityMIAirport : Ind Airport ; -fun CapeYoungNTAirport : Ind Airport ; + fun CapitalILAirport : Ind Airport ; -fun CapitalBeijingPekingAirport : Ind Airport ; + fun CapitanAvSalvadorOgayaPuertoSuarezAirport : Ind Airport ; -fun CapitalCityMIAirport : Ind Airport ; + fun CapitanJoseDVasquezSanJulianAirport : Ind Airport ; -fun CapitalILAirport : Ind Airport ; + fun CapitanMontesTalaraAirport : Ind Airport ; -fun CapitanAvSalvadorOgayaPuertoSuarezAirport : Ind Airport ; + fun CapitanNicolasRojasPotosiAirport : Ind Airport ; -fun CapitanJoseDVasquezSanJulianAirport : Ind Airport ; + fun CapitanOrielleaPlazaTirijaTarijaAirport : Ind Airport ; -fun CapitanMontesTalaraAirport : Ind Airport ; + fun CapodichinoNapoliNaplesAirport : Ind Airport ; -fun CapitanNicolasRojasPotosiAirport : Ind Airport ; + fun CapriAirport : Ind Airport ; -fun CapitanOrielleaPlazaTirijaTarijaAirport : Ind Airport ; + fun CarbonCountyUTAirport : Ind Airport ; -fun CapodichinoNapoliNaplesAirport : Ind Airport ; + fun CaribouIslandONAirport : Ind Airport ; -fun CapriAirport : Ind Airport ; + fun CarlRKellerFieldOHAirport : Ind Airport ; -fun CarbonCountyUTAirport : Ind Airport ; + fun CaroraAirport : Ind Airport ; -fun CaribouIslandONAirport : Ind Airport ; + fun CarpONAirport : Ind Airport ; -fun CarlRKellerFieldOHAirport : Ind Airport ; + fun CarrascoMontevideoAirport : Ind Airport ; -fun CaroraAirport : Ind Airport ; + fun CarrilloAirport : Ind Airport ; -fun CarpONAirport : Ind Airport ; + fun CartersvilleGAAirport : Ind Airport ; -fun CarrascoMontevideoAirport : Ind Airport ; + fun CarthageTunisAirport : Ind Airport ; -fun CarrilloAirport : Ind Airport ; + fun CartiervilleQCAirport : Ind Airport ; -fun CartersvilleGAAirport : Ind Airport ; + fun CartwrightNFAirport : Ind Airport ; -fun CarthageTunisAirport : Ind Airport ; + fun CasasGrandesAirport : Ind Airport ; -fun CartiervilleQCAirport : Ind Airport ; + fun CaselleTorinoTurinAirport : Ind Airport ; -fun CartwrightNFAirport : Ind Airport ; + fun CasementOHAirport : Ind Airport ; -fun CasasGrandesAirport : Ind Airport ; + fun CastleAirForceBaseCAAirport : Ind Airport ; -fun CaselleTorinoTurinAirport : Ind Airport ; + fun CastlegarBCAirport : Ind Airport ; -fun CasementOHAirport : Ind Airport ; + fun CastroAirport : Ind Airport ; -fun CastleAirForceBaseCAAirport : Ind Airport ; + fun CastunhalPAAirport : Ind Airport ; -fun CastlegarBCAirport : Ind Airport ; + fun CatLakeONAirport : Ind Airport ; -fun CastroAirport : Ind Airport ; + fun CataguasesMGAirport : Ind Airport ; -fun CastunhalPAAirport : Ind Airport ; + fun CatalaoGOAirport : Ind Airport ; -fun CatLakeONAirport : Ind Airport ; + fun CatalinaSeaAirTerminalCAAirport : Ind Airport ; -fun CataguasesMGAirport : Ind Airport ; + fun CatanduvaSPAirport : Ind Airport ; -fun CatalaoGOAirport : Ind Airport ; + fun CatanzaroAirport : Ind Airport ; -fun CatalinaSeaAirTerminalCAAirport : Ind Airport ; + fun CatungAerodromeNTAirport : Ind Airport ; -fun CatanduvaSPAirport : Ind Airport ; + fun CecilFieldNavalAirStationFLAirport : Ind Airport ; -fun CatanzaroAirport : Ind Airport ; + fun CentervilleMunicipalIAAirport : Ind Airport ; -fun CatungAerodromeNTAirport : Ind Airport ; + fun CentralFloridaRegionalFLAirport : Ind Airport ; -fun CecilFieldNavalAirStationFLAirport : Ind Airport ; + fun CentralMaineAirportofNorridgewockMEAirport : Ind Airport ; -fun CentervilleMunicipalIAAirport : Ind Airport ; + fun CerroSombreroAirport : Ind Airport ; -fun CentralFloridaRegionalFLAirport : Ind Airport ; + fun ChahBaharAirport : Ind Airport ; -fun CentralMaineAirportofNorridgewockMEAirport : Ind Airport ; + fun ChaitenAirport : Ind Airport ; -fun CerroSombreroAirport : Ind Airport ; + fun ChalkSeaplaneBaseFLAirport : Ind Airport ; -fun ChahBaharAirport : Ind Airport ; + fun ChampagneReimsAirport : Ind Airport ; -fun ChaitenAirport : Ind Airport ; + fun ChanGurneyMunicipalSDAirport : Ind Airport ; -fun ChalkSeaplaneBaseFLAirport : Ind Airport ; + fun ChandalarLakeAKAirport : Ind Airport ; -fun ChampagneReimsAirport : Ind Airport ; + fun ChangiInternationalSingaporeAirport : Ind Airport ; -fun ChanGurneyMunicipalSDAirport : Ind Airport ; + fun ChapaisQCAirport : Ind Airport ; -fun ChandalarLakeAKAirport : Ind Airport ; + fun ChapecoSCAirport : Ind Airport ; -fun ChangiInternationalSingaporeAirport : Ind Airport ; + fun ChapleauONAirport : Ind Airport ; -fun ChapaisQCAirport : Ind Airport ; + fun CharlieSinclairMemorialMBAirport : Ind Airport ; -fun ChapecoSCAirport : Ind Airport ; + fun CharloNBAirport : Ind Airport ; -fun ChapleauONAirport : Ind Airport ; + fun CharlotteAmalieStThomasSeaplaneBaseStThomasAirport : Ind Airport ; -fun CharlieSinclairMemorialMBAirport : Ind Airport ; + fun CharlotteCountyFLAirport : Ind Airport ; -fun CharloNBAirport : Ind Airport ; + fun CharlottetownAerodromeNFAirport : Ind Airport ; -fun CharlotteAmalieStThomasSeaplaneBaseStThomasAirport : Ind Airport ; + fun CharlottetownPEAirport : Ind Airport ; -fun CharlotteCountyFLAirport : Ind Airport ; + fun CharmeilVichyAirport : Ind Airport ; -fun CharlottetownAerodromeNFAirport : Ind Airport ; + fun CharquedasRSAirport : Ind Airport ; -fun CharlottetownPEAirport : Ind Airport ; + fun ChaseFieldNavalAirStationTXAirport : Ind Airport ; -fun CharmeilVichyAirport : Ind Airport ; + fun ChateauBougonNantesAirport : Ind Airport ; -fun CharquedasRSAirport : Ind Airport ; + fun ChathamAerodromeONAirport : Ind Airport ; -fun ChaseFieldNavalAirStationTXAirport : Ind Airport ; + fun ChathamNBAirport : Ind Airport ; -fun ChateauBougonNantesAirport : Ind Airport ; + fun CherryCapitalMIAirport : Ind Airport ; -fun ChathamAerodromeONAirport : Ind Airport ; + fun CherryPointMarineCorpsAirStationCunninghamFieldNCAirport : Ind Airport ; -fun ChathamNBAirport : Ind Airport ; + fun ChesterfieldInletNTAirport : Ind Airport ; -fun CherryCapitalMIAirport : Ind Airport ; + fun ChetwyndBCAirport : Ind Airport ; -fun CherryPointMarineCorpsAirStationCunninghamFieldNCAirport : Ind Airport ; + fun ChevakAKAirport : Ind Airport ; -fun ChesterfieldInletNTAirport : Ind Airport ; + fun CheyenneCountyMunicipalKSAirport : Ind Airport ; -fun ChetwyndBCAirport : Ind Airport ; + fun ChiangKaiShekTaipeiAirport : Ind Airport ; -fun ChevakAKAirport : Ind Airport ; + fun ChicagoMidwayILAirport : Ind Airport ; -fun CheyenneCountyMunicipalKSAirport : Ind Airport ; + fun ChicagoOHareInternationalILAirport : Ind Airport ; -fun ChiangKaiShekTaipeiAirport : Ind Airport ; + fun ChillagoeQueenslandAirport : Ind Airport ; -fun ChicagoMidwayILAirport : Ind Airport ; + fun ChillanAirport : Ind Airport ; -fun ChicagoOHareInternationalILAirport : Ind Airport ; + fun ChilliwackBCAirport : Ind Airport ; -fun ChillagoeQueenslandAirport : Ind Airport ; + fun ChinaLakeNAWSArmitageFieldCAAirport : Ind Airport ; -fun ChillanAirport : Ind Airport ; + fun ChincoteagueVAAirport : Ind Airport ; -fun ChilliwackBCAirport : Ind Airport ; + fun ChingoziTeteAirport : Ind Airport ; -fun ChinaLakeNAWSArmitageFieldCAAirport : Ind Airport ; + fun ChisasibiAerodromeQCAirport : Ind Airport ; -fun ChincoteagueVAAirport : Ind Airport ; + fun ChitoseSaporroAirport : Ind Airport ; -fun ChingoziTeteAirport : Ind Airport ; + fun ChoctawNavalOutlyingFieldFLAirport : Ind Airport ; -fun ChisasibiAerodromeQCAirport : Ind Airport ; + fun ChristianstedHarborSSBSeaplaneBaseStCroixAirport : Ind Airport ; -fun ChitoseSaporroAirport : Ind Airport ; + fun ChristmasIslandChristmasIslandAirport : Ind Airport ; -fun ChoctawNavalOutlyingFieldFLAirport : Ind Airport ; + fun ChurAirport : Ind Airport ; -fun ChristianstedHarborSSBSeaplaneBaseStCroixAirport : Ind Airport ; + fun ChurchillFallsNFAirport : Ind Airport ; -fun ChristmasIslandChristmasIslandAirport : Ind Airport ; + fun ChurchillMBAirport : Ind Airport ; -fun ChurAirport : Ind Airport ; + fun ChuukInternationalTrukIslandWenoIslandAirport : Ind Airport ; -fun ChurchillFallsNFAirport : Ind Airport ; + fun CibaoSantiagoAirport : Ind Airport ; -fun ChurchillMBAirport : Ind Airport ; + fun CilikRiwutPalangkarayaAirport : Ind Airport ; -fun ChuukInternationalTrukIslandWenoIslandAirport : Ind Airport ; + fun CincinnatiMunicipalAirportLunkenFieldOHAirport : Ind Airport ; -fun CibaoSantiagoAirport : Ind Airport ; + fun CityCountyORAirport : Ind Airport ; -fun CilikRiwutPalangkarayaAirport : Ind Airport ; + fun CityEnglandAirport : Ind Airport ; -fun CincinnatiMunicipalAirportLunkenFieldOHAirport : Ind Airport ; + fun CityLaeAirport : Ind Airport ; -fun CityCountyORAirport : Ind Airport ; + fun CiudadManteAirport : Ind Airport ; -fun CityEnglandAirport : Ind Airport ; + fun CiudadelaAirport : Ind Airport ; -fun CityLaeAirport : Ind Airport ; + fun ClarkFieldMunicipalTXAirport : Ind Airport ; -fun CiudadManteAirport : Ind Airport ; + fun ClevelandMunicipalMSAirport : Ind Airport ; -fun CiudadelaAirport : Ind Airport ; + fun ClintonCountyNYAirport : Ind Airport ; -fun ClarkFieldMunicipalTXAirport : Ind Airport ; + fun ClintonCreekYTAirport : Ind Airport ; -fun ClevelandMunicipalMSAirport : Ind Airport ; + fun ClintonPointNTAirport : Ind Airport ; -fun ClintonCountyNYAirport : Ind Airport ; + fun ClockTowerILAirport : Ind Airport ; -fun ClintonCreekYTAirport : Ind Airport ; + fun CluffLakeAerodromeSKAirport : Ind Airport ; -fun ClintonPointNTAirport : Ind Airport ; + fun ClydeRiverNTAirport : Ind Airport ; -fun ClockTowerILAirport : Ind Airport ; + fun CoatzacoalcosAirport : Ind Airport ; -fun CluffLakeAerodromeSKAirport : Ind Airport ; + fun CobbCountyAirportMcCollumFieldGAAirport : Ind Airport ; -fun ClydeRiverNTAirport : Ind Airport ; + fun CocaAirport : Ind Airport ; -fun CoatzacoalcosAirport : Ind Airport ; + fun CochraneAirport : Ind Airport ; -fun CobbCountyAirportMcCollumFieldGAAirport : Ind Airport ; + fun CochraneONAirport : Ind Airport ; -fun CocaAirport : Ind Airport ; + fun CoffeyCountyKSAirport : Ind Airport ; -fun CochraneAirport : Ind Airport ; + fun ColacVictoriaAirport : Ind Airport ; -fun CochraneONAirport : Ind Airport ; + fun ColatinaESAirport : Ind Airport ; -fun CoffeyCountyKSAirport : Ind Airport ; + fun ColdLakeRegionalABAirport : Ind Airport ; -fun ColacVictoriaAirport : Ind Airport ; + fun ColesCountyMemorialILAirport : Ind Airport ; -fun ColatinaESAirport : Ind Airport ; + fun ColiseumStreetCAAirport : Ind Airport ; -fun ColdLakeRegionalABAirport : Ind Airport ; + fun CollinsBaySKAirport : Ind Airport ; -fun ColesCountyMemorialILAirport : Ind Airport ; + fun ColomboAirport : Ind Airport ; -fun ColiseumStreetCAAirport : Ind Airport ; + fun ColonAirport : Ind Airport ; -fun CollinsBaySKAirport : Ind Airport ; + fun ColonAirportCuba : Ind Airport ; -fun ColomboAirport : Ind Airport ; + fun ColoniaSarmienAirport : Ind Airport ; -fun ColonAirport : Ind Airport ; + fun ColonialWilliamsburgVAAirport : Ind Airport ; -fun ColonAirportCuba : Ind Airport ; + fun ColtonCAAirport : Ind Airport ; -fun ColoniaSarmienAirport : Ind Airport ; + fun ColumbusLowndesCountyMSAirport : Ind Airport ; -fun ColonialWilliamsburgVAAirport : Ind Airport ; + fun ColumbusMunicipalNEAirport : Ind Airport ; -fun ColtonCAAirport : Ind Airport ; + fun ColvilleLakeAerodromeNTAirport : Ind Airport ; -fun ColumbusLowndesCountyMSAirport : Ind Airport ; + fun ComayaguaAirport : Ind Airport ; -fun ColumbusMunicipalNEAirport : Ind Airport ; + fun ComodoroZanniPehuajoAirport : Ind Airport ; -fun ColvilleLakeAerodromeNTAirport : Ind Airport ; + fun ComoxBCAirport : Ind Airport ; -fun ComayaguaAirport : Ind Airport ; + fun CondronArmyAirFieldNMAirport : Ind Airport ; -fun ComodoroZanniPehuajoAirport : Ind Airport ; + fun CongoTownAndrosAirport : Ind Airport ; -fun ComoxBCAirport : Ind Airport ; + fun ConnellsvillePAAirport : Ind Airport ; -fun CondronArmyAirFieldNMAirport : Ind Airport ; + fun ConselheiroLafaieteMGAirport : Ind Airport ; -fun CongoTownAndrosAirport : Ind Airport ; + fun ContadoraAirport : Ind Airport ; -fun ConnellsvillePAAirport : Ind Airport ; + fun CoolullahAirport : Ind Airport ; -fun ConselheiroLafaieteMGAirport : Ind Airport ; + fun CoomaNewSouthWalesAirport : Ind Airport ; -fun ContadoraAirport : Ind Airport ; + fun CoopPointMBAirport : Ind Airport ; -fun CoolullahAirport : Ind Airport ; + fun CopanAirport : Ind Airport ; -fun CoomaNewSouthWalesAirport : Ind Airport ; + fun CopperMountainCOAirport : Ind Airport ; -fun CoopPointMBAirport : Ind Airport ; + fun CoppermineNTAirport : Ind Airport ; -fun CopanAirport : Ind Airport ; + fun CoralHarbourNTAirport : Ind Airport ; -fun CopperMountainCOAirport : Ind Airport ; + fun CordilloDownsSouthAustraliaAirport : Ind Airport ; -fun CoppermineNTAirport : Ind Airport ; + fun CorkAirport : Ind Airport ; -fun CoralHarbourNTAirport : Ind Airport ; + fun CornIslandAirport : Ind Airport ; -fun CordilloDownsSouthAustraliaAirport : Ind Airport ; + fun CoronationABAirport : Ind Airport ; -fun CorkAirport : Ind Airport ; + fun CoronelCarlosCirianiSantaRosaTacnaAirport : Ind Airport ; -fun CornIslandAirport : Ind Airport ; + fun CorpusChristiNavalAirStationTXAirport : Ind Airport ; -fun CoronationABAirport : Ind Airport ; + fun CortesBayWaterAerodromeBCAirport : Ind Airport ; -fun CoronelCarlosCirianiSantaRosaTacnaAirport : Ind Airport ; + fun CostaSmeraldaSardiniaAirport : Ind Airport ; -fun CorpusChristiNavalAirStationTXAirport : Ind Airport ; + fun CotedAzurNiceAirport : Ind Airport ; -fun CortesBayWaterAerodromeBCAirport : Ind Airport ; + fun CotiaSPAirport : Ind Airport ; -fun CostaSmeraldaSardiniaAirport : Ind Airport ; + fun Coto47Airport : Ind Airport ; -fun CotedAzurNiceAirport : Ind Airport ; + fun CottesmoreRAFStationEnglandAirport : Ind Airport ; -fun CotiaSPAirport : Ind Airport ; + fun CountyHeliportCAAirport : Ind Airport ; -fun Coto47Airport : Ind Airport ; + fun CourtenayAerodromeBCAirport : Ind Airport ; -fun CottesmoreRAFStationEnglandAirport : Ind Airport ; + fun CowleyABAirport : Ind Airport ; -fun CountyHeliportCAAirport : Ind Airport ; + fun CoxFieldTXAirport : Ind Airport ; -fun CourtenayAerodromeBCAirport : Ind Airport ; + fun CraigFieldALAirport : Ind Airport ; -fun CowleyABAirport : Ind Airport ; + fun CranbrookBCAirport : Ind Airport ; -fun CoxFieldTXAirport : Ind Airport ; + fun CravoNorteAirport : Ind Airport ; -fun CraigFieldALAirport : Ind Airport ; + fun CreeLakeSKAirport : Ind Airport ; -fun CranbrookBCAirport : Ind Airport ; + fun CreechArmyAirFieldKYAirport : Ind Airport ; -fun CravoNorteAirport : Ind Airport ; + fun CrestonAerodromeBCAirport : Ind Airport ; -fun CreeLakeSKAirport : Ind Airport ; + fun CrossonFieldCOAirport : Ind Airport ; -fun CreechArmyAirFieldKYAirport : Ind Airport ; + fun CrownTobagoIsAirport : Ind Airport ; -fun CrestonAerodromeBCAirport : Ind Airport ; + fun CrowsLandingNavalAuxiliaryLandingFieldCAAirport : Ind Airport ; -fun CrossonFieldCOAirport : Ind Airport ; + fun CruzBaySeaplaneBaseStJohnAirport : Ind Airport ; -fun CrownTobagoIsAirport : Ind Airport ; + fun CrystalMNAirport : Ind Airport ; -fun CrowsLandingNavalAuxiliaryLandingFieldCAAirport : Ind Airport ; + fun CubaMunicipalMOAirport : Ind Airport ; -fun CruzBaySeaplaneBaseStJohnAirport : Ind Airport ; + fun CubiPointNavalAirStationCubiPointAirport : Ind Airport ; -fun CrystalMNAirport : Ind Airport ; + fun CulbersonCountyTXAirport : Ind Airport ; -fun CubaMunicipalMOAirport : Ind Airport ; + fun CullatonLakeNTAirport : Ind Airport ; -fun CubiPointNavalAirStationCubiPointAirport : Ind Airport ; + fun CumberlandMunicipalWIAirport : Ind Airport ; -fun CulbersonCountyTXAirport : Ind Airport ; + fun CuritibaosAirport : Ind Airport ; -fun CullatonLakeNTAirport : Ind Airport ; + fun CurraisNovosRNAirport : Ind Airport ; -fun CumberlandMunicipalWIAirport : Ind Airport ; + fun CuruzuCuatiaAirport : Ind Airport ; -fun CuritibaosAirport : Ind Airport ; + fun CyrilEKingStThomasAirport : Ind Airport ; -fun CurraisNovosRNAirport : Ind Airport ; + fun DaboSingkepAirport : Ind Airport ; -fun CuruzuCuatiaAirport : Ind Airport ; + fun DadeCollierTrainingandTransitionFLAirport : Ind Airport ; -fun CyrilEKingStThomasAirport : Ind Airport ; + fun DakhlaVillaCisnerosWesternSaharaAirport : Ind Airport ; -fun DaboSingkepAirport : Ind Airport ; + fun DallasNavalAirStationHensleyFieldTXAirport : Ind Airport ; -fun DadeCollierTrainingandTransitionFLAirport : Ind Airport ; + fun DamanAirport : Ind Airport ; -fun DakhlaVillaCisnerosWesternSaharaAirport : Ind Airport ; + fun DammanAirport : Ind Airport ; -fun DallasNavalAirStationHensleyFieldTXAirport : Ind Airport ; + fun DaneCountyRegionalAirportTruaxFieldWIAirport : Ind Airport ; -fun DamanAirport : Ind Airport ; + fun DanielsHarbourNFAirport : Ind Airport ; -fun DammanAirport : Ind Airport ; + fun DannellyFieldALAirport : Ind Airport ; -fun DaneCountyRegionalAirportTruaxFieldWIAirport : Ind Airport ; + fun DareCountyRegionalNCAirport : Ind Airport ; -fun DanielsHarbourNFAirport : Ind Airport ; + fun DarkeCountyOHAirport : Ind Airport ; -fun DannellyFieldALAirport : Ind Airport ; + fun DarnleyIslandQueenslandAirport : Ind Airport ; -fun DareCountyRegionalNCAirport : Ind Airport ; + fun DashhowuzTashauzDashhowuzAirport : Ind Airport ; -fun DarkeCountyOHAirport : Ind Airport ; + fun DauphinMBAirport : Ind Airport ; -fun DarnleyIslandQueenslandAirport : Ind Airport ; + fun DavisFieldOKAirport : Ind Airport ; -fun DashhowuzTashauzDashhowuzAirport : Ind Airport ; + fun DavisInletAerodromeNFAirport : Ind Airport ; -fun DauphinMBAirport : Ind Airport ; + fun DawsonCreekBCAirport : Ind Airport ; -fun DavisFieldOKAirport : Ind Airport ; + fun DawsonYTAirport : Ind Airport ; -fun DavisInletAerodromeNFAirport : Ind Airport ; + fun DaytonGeneralAirportSouthOHAirport : Ind Airport ; -fun DawsonCreekBCAirport : Ind Airport ; + fun DeadhorseAKAirport : Ind Airport ; -fun DawsonYTAirport : Ind Airport ; + fun DeadmansCayLongAirport : Ind Airport ; -fun DaytonGeneralAirportSouthOHAirport : Ind Airport ; + fun DeanRiverBCAirport : Ind Airport ; -fun DeadhorseAKAirport : Ind Airport ; + fun DeaseLakeBCAirport : Ind Airport ; -fun DeadmansCayLongAirport : Ind Airport ; + fun DeceptionBayWaterAerodromeQCAirport : Ind Airport ; -fun DeanRiverBCAirport : Ind Airport ; + fun DeepBayAKAirport : Ind Airport ; -fun DeaseLakeBCAirport : Ind Airport ; + fun DeerLakeNFAirport : Ind Airport ; -fun DeceptionBayWaterAerodromeQCAirport : Ind Airport ; + fun DeerLakeONAirport : Ind Airport ; -fun DeepBayAKAirport : Ind Airport ; + fun DekalbPeachtreeGAAirport : Ind Airport ; -fun DeerLakeNFAirport : Ind Airport ; + fun DelawareCountyAirportJohnsonFieldINAirport : Ind Airport ; -fun DeerLakeONAirport : Ind Airport ; + fun DennyIslandBCAirport : Ind Airport ; -fun DekalbPeachtreeGAAirport : Ind Airport ; + fun DerbyFieldNVAirport : Ind Airport ; -fun DelawareCountyAirportJohnsonFieldINAirport : Ind Airport ; + fun DesolationSoundBCAirport : Ind Airport ; -fun DennyIslandBCAirport : Ind Airport ; + fun DetroitNavalAirFacilityMIAirport : Ind Airport ; -fun DerbyFieldNVAirport : Ind Airport ; + fun DewarLakesNTAirport : Ind Airport ; -fun DesolationSoundBCAirport : Ind Airport ; + fun DewittFieldOldTownMunicipalMEAirport : Ind Airport ; -fun DetroitNavalAirFacilityMIAirport : Ind Airport ; + fun DiademaSPAirport : Ind Airport ; -fun DewarLakesNTAirport : Ind Airport ; + fun DiagorasMaritsaRhodosIslandAirport : Ind Airport ; -fun DewittFieldOldTownMunicipalMEAirport : Ind Airport ; + fun DiebougouAirport : Ind Airport ; -fun DiademaSPAirport : Ind Airport ; + fun DiegoGarciaAirport : Ind Airport ; -fun DiagorasMaritsaRhodosIslandAirport : Ind Airport ; + fun DigbyAerodromeNSAirport : Ind Airport ; -fun DiebougouAirport : Ind Airport ; + fun DiwopuUrumqiAirport : Ind Airport ; -fun DiegoGarciaAirport : Ind Airport ; + fun DjiboAirport : Ind Airport ; -fun DigbyAerodromeNSAirport : Ind Airport ; + fun DnataAirport : Ind Airport ; -fun DiwopuUrumqiAirport : Ind Airport ; + fun DobbinsAirReserveBaseGAAirport : Ind Airport ; -fun DjiboAirport : Ind Airport ; + fun DocCreekAirport : Ind Airport ; -fun DnataAirport : Ind Airport ; + fun DodgeCountyWIAirport : Ind Airport ; -fun DobbinsAirReserveBaseGAAirport : Ind Airport ; + fun DoisdeJulhoBAAirport : Ind Airport ; -fun DocCreekAirport : Ind Airport ; + fun DolbeauStMethodeQCAirport : Ind Airport ; -fun DodgeCountyWIAirport : Ind Airport ; + fun DomPedritoRSAirport : Ind Airport ; -fun DoisdeJulhoBAAirport : Ind Airport ; + fun DoorCountyCherrylandWIAirport : Ind Airport ; -fun DolbeauStMethodeQCAirport : Ind Airport ; + fun DornierDLROberpfaffenhofenAirport : Ind Airport ; -fun DomPedritoRSAirport : Ind Airport ; + fun DouglasCountyNVAirport : Ind Airport ; -fun DoorCountyCherrylandWIAirport : Ind Airport ; + fun DownsviewONAirport : Ind Airport ; -fun DornierDLROberpfaffenhofenAirport : Ind Airport ; + fun DraughonMillerMunicipalTXAirport : Ind Airport ; -fun DouglasCountyNVAirport : Ind Airport ; + fun DraytonValleyIndustrialAerodromeABAirport : Ind Airport ; -fun DownsviewONAirport : Ind Airport ; + fun DrydenMunicipalONAirport : Ind Airport ; -fun DraughonMillerMunicipalTXAirport : Ind Airport ; + fun DuesseldorfDusseldorfAirport : Ind Airport ; -fun DraytonValleyIndustrialAerodromeABAirport : Ind Airport ; + fun DuesseldorfDusseldorfKoelnKolnAirport : Ind Airport ; -fun DrydenMunicipalONAirport : Ind Airport ; + fun DundoChitatoAirport : Ind Airport ; -fun DuesseldorfDusseldorfAirport : Ind Airport ; + fun DuquedeCaixasRJAirport : Ind Airport ; -fun DuesseldorfDusseldorfKoelnKolnAirport : Ind Airport ; + fun DutchessCountyNYAirport : Ind Airport ; -fun DundoChitatoAirport : Ind Airport ; + fun DyessArmyAirFieldRoiNamurAirport : Ind Airport ; -fun DuquedeCaixasRJAirport : Ind Airport ; + fun EarltonONAirport : Ind Airport ; -fun DutchessCountyNYAirport : Ind Airport ; + fun East34thStreetHeliportNYAirport : Ind Airport ; -fun DyessArmyAirFieldRoiNamurAirport : Ind Airport ; + fun EastMainRiverQCAirport : Ind Airport ; -fun EarltonONAirport : Ind Airport ; + fun EasternWestVirginiaRegionalAirportShepherdFieldWVAirport : Ind Airport ; -fun East34thStreetHeliportNYAirport : Ind Airport ; + fun EastleighEnglandAirport : Ind Airport ; -fun EastMainRiverQCAirport : Ind Airport ; + fun EchterdingenStuttgartAirport : Ind Airport ; -fun EasternWestVirginiaRegionalAirportShepherdFieldWVAirport : Ind Airport ; + fun EckertFieldCAAirport : Ind Airport ; -fun EastleighEnglandAirport : Ind Airport ; + fun EdenNewSouthWalesAirport : Ind Airport ; -fun EchterdingenStuttgartAirport : Ind Airport ; + fun EdmontonInternationalABAirport : Ind Airport ; -fun EckertFieldCAAirport : Ind Airport ; + fun EdmontonMunicipalABAirport : Ind Airport ; -fun EdenNewSouthWalesAirport : Ind Airport ; + fun EdsonABAirport : Ind Airport ; -fun EdmontonInternationalABAirport : Ind Airport ; + fun EduardoGomesAMAirport : Ind Airport ; -fun EdmontonMunicipalABAirport : Ind Airport ; + fun EdwardFKnappStateVTAirport : Ind Airport ; -fun EdsonABAirport : Ind Airport ; + fun EglinAirForceBaseOkaloosaCountyFLAirport : Ind Airport ; -fun EduardoGomesAMAirport : Ind Airport ; + fun EglintonNorthernIrelandAirport : Ind Airport ; -fun EdwardFKnappStateVTAirport : Ind Airport ; + fun EilatInternationalOvdaAirport : Ind Airport ; -fun EglinAirForceBaseOkaloosaCountyFLAirport : Ind Airport ; + fun ElCentroNavalAirFacilityCAAirport : Ind Airport ; -fun EglintonNorthernIrelandAirport : Ind Airport ; + fun ElCocoSanJoseAirport : Ind Airport ; -fun EilatInternationalOvdaAirport : Ind Airport ; + fun ElGoueraAirport : Ind Airport ; -fun ElCentroNavalAirFacilityCAAirport : Ind Airport ; + fun ElJacuelPuntadelEsteAirport : Ind Airport ; -fun ElCocoSanJoseAirport : Ind Airport ; + fun ElPlumerilloMendozaAirport : Ind Airport ; -fun ElGoueraAirport : Ind Airport ; + fun ElPorvenirAirport : Ind Airport ; -fun ElJacuelPuntadelEsteAirport : Ind Airport ; + fun ElRahabaSanaaSanaaAirport : Ind Airport ; -fun ElPlumerilloMendozaAirport : Ind Airport ; + fun ElRosalColLMGuerreroTulcanAirport : Ind Airport ; -fun ElPorvenirAirport : Ind Airport ; + fun ElTehuelchePuertoMadrynAirport : Ind Airport ; -fun ElRahabaSanaaSanaaAirport : Ind Airport ; + fun ElTepualPuertoMonttAirport : Ind Airport ; -fun ElRosalColLMGuerreroTulcanAirport : Ind Airport ; + fun ElToroMarineCorpsAirStationCAAirport : Ind Airport ; -fun ElTehuelchePuertoMadrynAirport : Ind Airport ; + fun ElTrompilloSantaCruzAirport : Ind Airport ; -fun ElTepualPuertoMonttAirport : Ind Airport ; + fun ElVigiaAirport : Ind Airport ; -fun ElToroMarineCorpsAirStationCAAirport : Ind Airport ; + fun ElkinMunicipalNCAirport : Ind Airport ; -fun ElTrompilloSantaCruzAirport : Ind Airport ; + fun ElliotLakeMunicipalONAirport : Ind Airport ; -fun ElVigiaAirport : Ind Airport ; + fun EllsworthAirForceBaseSDAirport : Ind Airport ; -fun ElkinMunicipalNCAirport : Ind Airport ; + fun EllysonNavalAirStationFLAirport : Ind Airport ; -fun ElliotLakeMunicipalONAirport : Ind Airport ; + fun EloyAlfaroMantaAirport : Ind Airport ; -fun EllsworthAirForceBaseSDAirport : Ind Airport ; + fun ElyMunicipalMNAirport : Ind Airport ; -fun EllysonNavalAirStationFLAirport : Ind Airport ; + fun EmmenAirport : Ind Airport ; -fun EloyAlfaroMantaAirport : Ind Airport ; + fun EnNahudAirport : Ind Airport ; -fun ElyMunicipalMNAirport : Ind Airport ; + fun EnidWoodringMunicipalOKAirport : Ind Airport ; -fun EmmenAirport : Ind Airport ; + fun EnnadaiLakeNTAirport : Ind Airport ; -fun EnNahudAirport : Ind Airport ; + fun EnsheimSaarbrueckenSaarbruckenAirport : Ind Airport ; -fun EnidWoodringMunicipalOKAirport : Ind Airport ; + fun EntzheimStrasbourgAirport : Ind Airport ; -fun EnnadaiLakeNTAirport : Ind Airport ; + fun EppleyAirfieldNEAirport : Ind Airport ; -fun EnsheimSaarbrueckenSaarbruckenAirport : Ind Airport ; + fun ErnestALoveFieldAZAirport : Ind Airport ; -fun EntzheimStrasbourgAirport : Ind Airport ; + fun EsSeniaOranAirport : Ind Airport ; -fun EppleyAirfieldNEAirport : Ind Airport ; + fun EsperanceSaintMartinAirport : Ind Airport ; -fun ErnestALoveFieldAZAirport : Ind Airport ; + fun EsperanzaAirport : Ind Airport ; -fun EsSeniaOranAirport : Ind Airport ; + fun EsquimaltBCAirport : Ind Airport ; -fun EsperanceSaintMartinAirport : Ind Airport ; + fun EssendonVictoriaAirport : Ind Airport ; -fun EsperanzaAirport : Ind Airport ; + fun EstevanPointBCAirport : Ind Airport ; -fun EsquimaltBCAirport : Ind Airport ; + fun EstevanSKAirport : Ind Airport ; -fun EssendonVictoriaAirport : Ind Airport ; + fun EugenioMariadeHostosMayaguezAirport : Ind Airport ; -fun EstevanPointBCAirport : Ind Airport ; + fun EuniceLAAirport : Ind Airport ; -fun EstevanSKAirport : Ind Airport ; + fun EurekaNTAirport : Ind Airport ; -fun EugenioMariadeHostosMayaguezAirport : Ind Airport ; + fun EvelynSharpFieldNEAirport : Ind Airport ; -fun EuniceLAAirport : Ind Airport ; + fun EverettStewartTNAirport : Ind Airport ; -fun EurekaNTAirport : Ind Airport ; + fun ExumaInternationalExumaAirport : Ind Airport ; -fun EvelynSharpFieldNEAirport : Ind Airport ; + fun FairchildAirForceBaseWAAirport : Ind Airport ; -fun EverettStewartTNAirport : Ind Airport ; + fun FaisalabadAirport : Ind Airport ; -fun ExumaInternationalExumaAirport : Ind Airport ; + fun FalconFieldAZAirport : Ind Airport ; -fun FairchildAirForceBaseWAAirport : Ind Airport ; + fun FalherABAirport : Ind Airport ; -fun FaisalabadAirport : Ind Airport ; + fun FallonNavalAirStationVanVoorhisFieldNVAirport : Ind Airport ; -fun FalconFieldAZAirport : Ind Airport ; + fun FarafanganaAirport : Ind Airport ; -fun FalherABAirport : Ind Airport ; + fun FaroYTAirport : Ind Airport ; -fun FallonNavalAirStationVanVoorhisFieldNVAirport : Ind Airport ; + fun FasceneNossiBeAirport : Ind Airport ; -fun FarafanganaAirport : Ind Airport ; + fun FassamaAirport : Ind Airport ; -fun FaroYTAirport : Ind Airport ; + fun FeltsFieldWAAirport : Ind Airport ; -fun FasceneNossiBeAirport : Ind Airport ; + fun FentressNavalAuxiliaryLandingFieldVAAirport : Ind Airport ; -fun FassamaAirport : Ind Airport ; + fun FerdinandoLuisRibasDominicciSanJuanAirport : Ind Airport ; -fun FeltsFieldWAAirport : Ind Airport ; + fun FianarantsoaAirport : Ind Airport ; -fun FentressNavalAuxiliaryLandingFieldVAAirport : Ind Airport ; + fun FiddymentFieldCAAirport : Ind Airport ; -fun FerdinandoLuisRibasDominicciSanJuanAirport : Ind Airport ; + fun FindelLuxembourgAirport : Ind Airport ; -fun FianarantsoaAirport : Ind Airport ; + fun FinkerwerdenAirbusPlantHamburgAirport : Ind Airport ; -fun FiddymentFieldCAAirport : Ind Airport ; + fun FlabobCAAirport : Ind Airport ; -fun FindelLuxembourgAirport : Ind Airport ; + fun FlinFlonMBAirport : Ind Airport ; -fun FinkerwerdenAirbusPlantHamburgAirport : Ind Airport ; + fun FoleyMunicipalALAirport : Ind Airport ; -fun FlabobCAAirport : Ind Airport ; + fun FondduLacSKAirport : Ind Airport ; -fun FlinFlonMBAirport : Ind Airport ; + fun FontRomeuAirport : Ind Airport ; -fun FoleyMunicipalALAirport : Ind Airport ; + fun ForchheimKarlsruheAirport : Ind Airport ; -fun FondduLacSKAirport : Ind Airport ; + fun FordIslandAuxiliaryLandingFieldHIAirport : Ind Airport ; -fun FontRomeuAirport : Ind Airport ; + fun ForestvilleQCAirport : Ind Airport ; -fun ForchheimKarlsruheAirport : Ind Airport ; + fun ForneyArmyAirFieldMOAirport : Ind Airport ; -fun FordIslandAuxiliaryLandingFieldHIAirport : Ind Airport ; + fun FortAlbanyONAirport : Ind Airport ; -fun ForestvilleQCAirport : Ind Airport ; + fun FortChipewyanABAirport : Ind Airport ; -fun ForneyArmyAirFieldMOAirport : Ind Airport ; + fun FortFrancesMunicipalONAirport : Ind Airport ; -fun FortAlbanyONAirport : Ind Airport ; + fun FortFranklinNTAirport : Ind Airport ; -fun FortChipewyanABAirport : Ind Airport ; + fun FortFrederickAKAirport : Ind Airport ; -fun FortFrancesMunicipalONAirport : Ind Airport ; + fun FortGoodHopeNTAirport : Ind Airport ; -fun FortFranklinNTAirport : Ind Airport ; + fun FortHopeONAirport : Ind Airport ; -fun FortFrederickAKAirport : Ind Airport ; + fun FortLiardNTAirport : Ind Airport ; -fun FortGoodHopeNTAirport : Ind Airport ; + fun FortMcMurrayABAirport : Ind Airport ; -fun FortHopeONAirport : Ind Airport ; + fun FortMcPhersonNTAirport : Ind Airport ; -fun FortLiardNTAirport : Ind Airport ; + fun FortNelsonBCAirport : Ind Airport ; -fun FortMcMurrayABAirport : Ind Airport ; + fun FortNormanNTAirport : Ind Airport ; -fun FortMcPhersonNTAirport : Ind Airport ; + fun FortProvidenceNTAirport : Ind Airport ; -fun FortNelsonBCAirport : Ind Airport ; + fun FortRelianceWaterAerodromeNTAirport : Ind Airport ; -fun FortNormanNTAirport : Ind Airport ; + fun FortResolutionNTAirport : Ind Airport ; -fun FortProvidenceNTAirport : Ind Airport ; + fun FortSevernONAirport : Ind Airport ; -fun FortRelianceWaterAerodromeNTAirport : Ind Airport ; + fun FortSimpsonNTAirport : Ind Airport ; -fun FortResolutionNTAirport : Ind Airport ; + fun FortSmithNTAirport : Ind Airport ; -fun FortSevernONAirport : Ind Airport ; + fun FortStJohnBCAirport : Ind Airport ; -fun FortSimpsonNTAirport : Ind Airport ; + fun FoxHarbourAerodromeNFAirport : Ind Airport ; -fun FortSmithNTAirport : Ind Airport ; + fun FramnesNarvikAirport : Ind Airport ; -fun FortStJohnBCAirport : Ind Airport ; + fun FranciscoSaCarneiroPedrasRubrasPortoOportoAirport : Ind Airport ; -fun FoxHarbourAerodromeNFAirport : Ind Airport ; + fun FrankWileyFieldMTAirport : Ind Airport ; -fun FramnesNarvikAirport : Ind Airport ; + fun FranklinCountyTNAirport : Ind Airport ; -fun FranciscoSaCarneiroPedrasRubrasPortoOportoAirport : Ind Airport ; + fun FranzJosefAirport : Ind Airport ; -fun FrankWileyFieldMTAirport : Ind Airport ; + fun FrederictonNBAirport : Ind Airport ; -fun FranklinCountyTNAirport : Ind Airport ; + fun FreemanMunicipalINAirport : Ind Airport ; -fun FranzJosefAirport : Ind Airport ; + fun FreiburgAirport : Ind Airport ; -fun FrederictonNBAirport : Ind Airport ; + fun FrescatyMetzAirport : Ind Airport ; -fun FreemanMunicipalINAirport : Ind Airport ; + fun FriedmanMemorialIDAirport : Ind Airport ; -fun FreiburgAirport : Ind Airport ; + fun FritzscheArmyAirFieldCAAirport : Ind Airport ; -fun FrescatyMetzAirport : Ind Airport ; + fun FrosinoneAirport : Ind Airport ; -fun FriedmanMemorialIDAirport : Ind Airport ; + fun FrosonAirBaseOstersundAirport : Ind Airport ; -fun FritzscheArmyAirFieldCAAirport : Ind Airport ; + fun FryklandaTorsbyAirport : Ind Airport ; -fun FrosinoneAirport : Ind Airport ; + fun FuaAmotuNukuAlofaTongatapuAirport : Ind Airport ; -fun FrosonAirBaseOstersundAirport : Ind Airport ; + fun FultonCountyINAirport : Ind Airport ; -fun FryklandaTorsbyAirport : Ind Airport ; + fun FultonCountyOHAirport : Ind Airport ; -fun FuaAmotuNukuAlofaTongatapuAirport : Ind Airport ; + fun GagetownNBAirport : Ind Airport ; -fun FultonCountyINAirport : Ind Airport ; + fun GagnonQCAirport : Ind Airport ; -fun FultonCountyOHAirport : Ind Airport ; + fun GalileiSanGiustoPisaAirport : Ind Airport ; -fun GagetownNBAirport : Ind Airport ; + fun GanderInternationalNFAirport : Ind Airport ; -fun GagnonQCAirport : Ind Airport ; + fun GanedTaizAirport : Ind Airport ; -fun GalileiSanGiustoPisaAirport : Ind Airport ; + fun GangesHarborBCAirport : Ind Airport ; -fun GanderInternationalNFAirport : Ind Airport ; + fun GaouaAirport : Ind Airport ; -fun GanedTaizAirport : Ind Airport ; + fun GaranhunsPEAirport : Ind Airport ; -fun GangesHarborBCAirport : Ind Airport ; + fun GardenCountyNEAirport : Ind Airport ; -fun GaouaAirport : Ind Airport ; + fun GardenKeySeaplanaBaseFLAirport : Ind Airport ; -fun GaranhunsPEAirport : Ind Airport ; + fun GarfieldCountyRegionalCOAirport : Ind Airport ; -fun GardenCountyNEAirport : Ind Airport ; + fun GarmischPartenkirchenAirport : Ind Airport ; -fun GardenKeySeaplanaBaseFLAirport : Ind Airport ; + fun GarnerFieldTXAirport : Ind Airport ; -fun GarfieldCountyRegionalCOAirport : Ind Airport ; + fun GarrettCountyMDAirport : Ind Airport ; -fun GarmischPartenkirchenAirport : Ind Airport ; + fun GarulhosSPAirport : Ind Airport ; -fun GarnerFieldTXAirport : Ind Airport ; + fun GaspeQCAirport : Ind Airport ; -fun GarrettCountyMDAirport : Ind Airport ; + fun GatineauQCAirport : Ind Airport ; -fun GarulhosSPAirport : Ind Airport ; + fun GatwickEnglandAirport : Ind Airport ; -fun GaspeQCAirport : Ind Airport ; + fun GaviotasAirport : Ind Airport ; -fun GatineauQCAirport : Ind Airport ; + fun GeiteryggenSkeinAirport : Ind Airport ; -fun GatwickEnglandAirport : Ind Airport ; + fun GeneralAbelardoLRodriguezTijuanaAirport : Ind Airport ; -fun GaviotasAirport : Ind Airport ; + fun GeneralEnriqueMoscTartagalAirport : Ind Airport ; -fun GeiteryggenSkeinAirport : Ind Airport ; + fun GeneralFranciscoJavierMinaTampicoAirport : Ind Airport ; -fun GeneralAbelardoLRodriguezTijuanaAirport : Ind Airport ; + fun GeneralHeribertoJaraVeracruzAirport : Ind Airport ; -fun GeneralEnriqueMoscTartagalAirport : Ind Airport ; + fun GeneralLeobardoRuizZacatecasAirport : Ind Airport ; -fun GeneralFranciscoJavierMinaTampicoAirport : Ind Airport ; + fun GeneralLucioBlancoReynosaAirport : Ind Airport ; -fun GeneralHeribertoJaraVeracruzAirport : Ind Airport ; + fun GeneralManuelMdeLeonLaPazAirport : Ind Airport ; -fun GeneralLeobardoRuizZacatecasAirport : Ind Airport ; + fun GeneralMitchellInternationalWIAirport : Ind Airport ; -fun GeneralLucioBlancoReynosaAirport : Ind Airport ; + fun GeneralOmarTorrijosHerraraPanamaCityAirport : Ind Airport ; -fun GeneralManuelMdeLeonLaPazAirport : Ind Airport ; + fun GeneralRafaelBueinaMazatlanAirport : Ind Airport ; -fun GeneralMitchellInternationalWIAirport : Ind Airport ; + fun GeneralRodolfoSTaboadaMexicaliAirport : Ind Airport ; -fun GeneralOmarTorrijosHerraraPanamaCityAirport : Ind Airport ; + fun GeneralUlpianoPaezSalinasAirport : Ind Airport ; -fun GeneralRafaelBueinaMazatlanAirport : Ind Airport ; + fun GeneralUrquizaParanaAirport : Ind Airport ; -fun GeneralRodolfoSTaboadaMexicaliAirport : Ind Airport ; + fun GeneralVillegaAirport : Ind Airport ; -fun GeneralUlpianoPaezSalinasAirport : Ind Airport ; + fun GeneralWilliamJFoxAirfieldCAAirport : Ind Airport ; -fun GeneralUrquizaParanaAirport : Ind Airport ; + fun GeorgeAirForceBaseCAAirport : Ind Airport ; -fun GeneralVillegaAirport : Ind Airport ; + fun GeorgianBayAerodromeONAirport : Ind Airport ; -fun GeneralWilliamJFoxAirfieldCAAirport : Ind Airport ; + fun GeraldtonONAirport : Ind Airport ; -fun GeorgeAirForceBaseCAAirport : Ind Airport ; + fun GermansenLandingBCAirport : Ind Airport ; -fun GeorgianBayAerodromeONAirport : Ind Airport ; + fun GethsemaniQCAirport : Ind Airport ; -fun GeraldtonONAirport : Ind Airport ; + fun GhadamesAirport : Ind Airport ; -fun GermansenLandingBCAirport : Ind Airport ; + fun GiarmataTimisoaraAirport : Ind Airport ; -fun GethsemaniQCAirport : Ind Airport ; + fun GibsonCountyTNAirport : Ind Airport ; -fun GhadamesAirport : Ind Airport ; + fun GifuAirport : Ind Airport ; -fun GiarmataTimisoaraAirport : Ind Airport ; + fun GijonAirport : Ind Airport ; -fun GibsonCountyTNAirport : Ind Airport ; + fun GillamMBAirport : Ind Airport ; -fun GifuAirport : Ind Airport ; + fun GillespieFieldCAAirport : Ind Airport ; -fun GijonAirport : Ind Airport ; + fun GilliesBayBCAirport : Ind Airport ; -fun GillamMBAirport : Ind Airport ; + fun GillotReunionSaintDenisdelaReunionAirport : Ind Airport ; -fun GillespieFieldCAAirport : Ind Airport ; + fun GimliIndustrialParkMBAirport : Ind Airport ; -fun GilliesBayBCAirport : Ind Airport ; + fun GjoaHavenNTAirport : Ind Airport ; -fun GillotReunionSaintDenisdelaReunionAirport : Ind Airport ; + fun GladmanPointNTAirport : Ind Airport ; -fun GimliIndustrialParkMBAirport : Ind Airport ; + fun GlenviewNavalAirStationILAirport : Ind Airport ; -fun GjoaHavenNTAirport : Ind Airport ; + fun GlyncoNavalAirStationGAAirport : Ind Airport ; -fun GladmanPointNTAirport : Ind Airport ; + fun GnossFieldCAAirport : Ind Airport ; -fun GlenviewNavalAirStationILAirport : Ind Airport ; + fun GobernadorCastelloViedmaAirport : Ind Airport ; -fun GlyncoNavalAirStationGAAirport : Ind Airport ; + fun GoderichONAirport : Ind Airport ; -fun GnossFieldCAAirport : Ind Airport ; + fun GodsLakeNarrowsMBAirport : Ind Airport ; -fun GobernadorCastelloViedmaAirport : Ind Airport ; + fun GodsRiverMBAirport : Ind Airport ; -fun GoderichONAirport : Ind Airport ; + fun GoldCoastCoolangattaQueenslandAirport : Ind Airport ; -fun GodsLakeNarrowsMBAirport : Ind Airport ; + fun GoldenRockStKittsAirport : Ind Airport ; -fun GodsRiverMBAirport : Ind Airport ; + fun GoleniowSzczecinStettinAirport : Ind Airport ; -fun GoldCoastCoolangattaQueenslandAirport : Ind Airport ; + fun GoliadNavalAuxiliaryLandingFieldTXAirport : Ind Airport ; -fun GoldenRockStKittsAirport : Ind Airport ; + fun GolosonLaCeibaAirport : Ind Airport ; -fun GoleniowSzczecinStettinAirport : Ind Airport ; + fun GooseAirport : Ind Airport ; -fun GoliadNavalAuxiliaryLandingFieldTXAirport : Ind Airport ; + fun GooseNFAirport : Ind Airport ; -fun GolosonLaCeibaAirport : Ind Airport ; + fun GorgeHarborBCAirport : Ind Airport ; -fun GooseAirport : Ind Airport ; + fun GoromGoromAirport : Ind Airport ; -fun GooseNFAirport : Ind Airport ; + fun GoslarAirport : Ind Airport ; -fun GorgeHarborBCAirport : Ind Airport ; + fun GoyaAirport : Ind Airport ; -fun GoromGoromAirport : Ind Airport ; + fun GrandCanyonCavernsAZAirport : Ind Airport ; -fun GoslarAirport : Ind Airport ; + fun GrandForksBCAirport : Ind Airport ; -fun GoyaAirport : Ind Airport ; + fun GrandViewInternationalWAAirport : Ind Airport ; -fun GrandCanyonCavernsAZAirport : Ind Airport ; + fun GrandeCacheAerodromeABAirport : Ind Airport ; -fun GrandForksBCAirport : Ind Airport ; + fun GrandePrairieABAirport : Ind Airport ; -fun GrandViewInternationalWAAirport : Ind Airport ; + fun GrantCountyNMAirport : Ind Airport ; -fun GrandeCacheAerodromeABAirport : Ind Airport ; + fun GrantCountyWAAirport : Ind Airport ; -fun GrandePrairieABAirport : Ind Airport ; + fun GrantCountyWIAirport : Ind Airport ; -fun GrantCountyNMAirport : Ind Airport ; + fun GrantCountyWVAirport : Ind Airport ; -fun GrantCountyWAAirport : Ind Airport ; + fun GranvilleLakeMBAirport : Ind Airport ; -fun GrantCountyWIAirport : Ind Airport ; + fun GraysonCountyTXAirport : Ind Airport ; -fun GrantCountyWVAirport : Ind Airport ; + fun GreaterPeoriaRegionalILAirport : Ind Airport ; -fun GranvilleLakeMBAirport : Ind Airport ; + fun GreaterPittsburghInternationalPAAirport : Ind Airport ; -fun GraysonCountyTXAirport : Ind Airport ; + fun GreaterPortsmouthRegionalOHAirport : Ind Airport ; -fun GreaterPeoriaRegionalILAirport : Ind Airport ; + fun GreaterRochesterInternationalNYAirport : Ind Airport ; -fun GreaterPittsburghInternationalPAAirport : Ind Airport ; + fun GreaterRockfordILAirport : Ind Airport ; -fun GreaterPortsmouthRegionalOHAirport : Ind Airport ; + fun GreenINAirport : Ind Airport ; -fun GreaterRochesterInternationalNYAirport : Ind Airport ; + fun GreenLakeWaterAerodromeBCAirport : Ind Airport ; -fun GreaterRockfordILAirport : Ind Airport ; + fun GreenRiverMunicipalUTAirport : Ind Airport ; -fun GreenINAirport : Ind Airport ; + fun GreenbrierValleyWVAirport : Ind Airport ; -fun GreenLakeWaterAerodromeBCAirport : Ind Airport ; + fun GreeneCountyPAAirport : Ind Airport ; -fun GreenRiverMunicipalUTAirport : Ind Airport ; + fun GreenfieldMAAirport : Ind Airport ; -fun GreenbrierValleyWVAirport : Ind Airport ; + fun GreenwaySoundBCAirport : Ind Airport ; -fun GreeneCountyPAAirport : Ind Airport ; + fun GreenwoodNSAirport : Ind Airport ; -fun GreenfieldMAAirport : Ind Airport ; + fun GrenchenAirport : Ind Airport ; -fun GreenwaySoundBCAirport : Ind Airport ; + fun GrevenMuensterMunsterAirport : Ind Airport ; -fun GreenwoodNSAirport : Ind Airport ; + fun GriderFieldARAirport : Ind Airport ; -fun GrenchenAirport : Ind Airport ; + fun GriffingSanduskyOHAirport : Ind Airport ; -fun GrevenMuensterMunsterAirport : Ind Airport ; + fun GriffissAirForceBaseNYAirport : Ind Airport ; -fun GriderFieldARAirport : Ind Airport ; + fun GriseFiordNTAirport : Ind Airport ; -fun GriffingSanduskyOHAirport : Ind Airport ; + fun GriswoldCTAirport : Ind Airport ; -fun GriffissAirForceBaseNYAirport : Ind Airport ; + fun GuairaPRAirport : Ind Airport ; -fun GriseFiordNTAirport : Ind Airport ; + fun GuantanamoNavalAirStationGuantanamoAirport : Ind Airport ; -fun GriswoldCTAirport : Ind Airport ; + fun GuararapesPEAirport : Ind Airport ; -fun GuairaPRAirport : Ind Airport ; + fun GuayanaPuertoOrdazAirport : Ind Airport ; -fun GuantanamoNavalAirStationGuantanamoAirport : Ind Airport ; + fun GuluAirport : Ind Airport ; -fun GuararapesPEAirport : Ind Airport ; + fun GurayatAirport : Ind Airport ; -fun GuayanaPuertoOrdazAirport : Ind Airport ; + fun GusauAirport : Ind Airport ; -fun GuluAirport : Ind Airport ; + fun GwinnettCountyAirportBriscoeFieldGAAirport : Ind Airport ; -fun GurayatAirport : Ind Airport ; + fun GyumriLeninakanAirport : Ind Airport ; -fun GusauAirport : Ind Airport ; + fun HHCoffieldRegionalTXAirport : Ind Airport ; -fun GwinnettCountyAirportBriscoeFieldGAAirport : Ind Airport ; + fun HadjerAirport : Ind Airport ; -fun GyumriLeninakanAirport : Ind Airport ; + fun HahayaIconiMoroniAirport : Ind Airport ; -fun HHCoffieldRegionalTXAirport : Ind Airport ; + fun HainesJunctionYTAirport : Ind Airport ; -fun HadjerAirport : Ind Airport ; + fun HakaiPassAirport : Ind Airport ; -fun HahayaIconiMoroniAirport : Ind Airport ; + fun HaleCountyTXAirport : Ind Airport ; -fun HainesJunctionYTAirport : Ind Airport ; + fun HalifaxCountyNCAirport : Ind Airport ; -fun HakaiPassAirport : Ind Airport ; + fun HalifaxDowntownWaterfrontHeliportNSAirport : Ind Airport ; -fun HaleCountyTXAirport : Ind Airport ; + fun HalifaxInternationalNSAirport : Ind Airport ; -fun HalifaxCountyNCAirport : Ind Airport ; + fun HallBeachNTAirport : Ind Airport ; -fun HalifaxDowntownWaterfrontHeliportNSAirport : Ind Airport ; + fun HamiltonONAirport : Ind Airport ; -fun HalifaxInternationalNSAirport : Ind Airport ; + fun HammAirport : Ind Airport ; -fun HallBeachNTAirport : Ind Airport ; + fun HamptonRoadsVAAirport : Ind Airport ; -fun HamiltonONAirport : Ind Airport ; + fun HanoverCountyMunicipalVAAirport : Ind Airport ; -fun HammAirport : Ind Airport ; + fun HarnosandSundsvallAirport : Ind Airport ; -fun HamptonRoadsVAAirport : Ind Airport ; + fun HaroldDavidsonFieldSDAirport : Ind Airport ; -fun HanoverCountyMunicipalVAAirport : Ind Airport ; + fun HaroldNavalOutlyingFieldFLAirport : Ind Airport ; -fun HarnosandSundsvallAirport : Ind Airport ; + fun HarrietAlexanderFieldCOAirport : Ind Airport ; -fun HaroldDavidsonFieldSDAirport : Ind Airport ; + fun HarrietFieldNVAirport : Ind Airport ; -fun HaroldNavalOutlyingFieldFLAirport : Ind Airport ; + fun HarringtonHarbourQCAirport : Ind Airport ; -fun HarrietAlexanderFieldCOAirport : Ind Airport ; + fun HarrisburgInternationalPAAirport : Ind Airport ; -fun HarrietFieldNVAirport : Ind Airport ; + fun HarryCleverFieldOHAirport : Ind Airport ; -fun HarringtonHarbourQCAirport : Ind Airport ; + fun HarryPWilliamsMemorialLAAirport : Ind Airport ; -fun HarrisburgInternationalPAAirport : Ind Airport ; + fun HarrySternNDAirport : Ind Airport ; -fun HarryCleverFieldOHAirport : Ind Airport ; + fun HarryWBrowneMIAirport : Ind Airport ; -fun HarryPWilliamsMemorialLAAirport : Ind Airport ; + fun HartleyBayWaterAerodromeBCAirport : Ind Airport ; -fun HarrySternNDAirport : Ind Airport ; + fun HartnessStateSpringfieldVTAirport : Ind Airport ; -fun HarryWBrowneMIAirport : Ind Airport ; + fun HasanuddinUjungPandangAirport : Ind Airport ; -fun HartleyBayWaterAerodromeBCAirport : Ind Airport ; + fun HasseltAirport : Ind Airport ; -fun HartnessStateSpringfieldVTAirport : Ind Airport ; + fun HassloVasterasAirport : Ind Airport ; -fun HasanuddinUjungPandangAirport : Ind Airport ; + fun HattiesburgLaurelRegionalMSAirport : Ind Airport ; -fun HasseltAirport : Ind Airport ; + fun HaukasenSogndalAirport : Ind Airport ; -fun HassloVasterasAirport : Ind Airport ; + fun HavilarAirport : Ind Airport ; -fun HattiesburgLaurelRegionalMSAirport : Ind Airport ; + fun HavreStPierreQCAirport : Ind Airport ; -fun HaukasenSogndalAirport : Ind Airport ; + fun HayRiverNTAirport : Ind Airport ; -fun HavilarAirport : Ind Airport ; + fun HearstReneFontaineMunicipalONAirport : Ind Airport ; -fun HavreStPierreQCAirport : Ind Airport ; + fun HeathrowEnglandAirport : Ind Airport ; -fun HayRiverNTAirport : Ind Airport ; + fun HeerenveenAirport : Ind Airport ; -fun HearstReneFontaineMunicipalONAirport : Ind Airport ; + fun HeliportMAAirport : Ind Airport ; -fun HeathrowEnglandAirport : Ind Airport ; + fun HeliportSophiaAntipolisAirport : Ind Airport ; -fun HeerenveenAirport : Ind Airport ; + fun HeliportTrevisoAirport : Ind Airport ; -fun HeliportMAAirport : Ind Airport ; + fun HelleSvolvaerAirport : Ind Airport ; -fun HeliportSophiaAntipolisAirport : Ind Airport ; + fun HengeloAirport : Ind Airport ; -fun HeliportTrevisoAirport : Ind Airport ; + fun HenryCountyTNAirport : Ind Airport ; -fun HelleSvolvaerAirport : Ind Airport ; + fun HenryTiftMyersGAAirport : Ind Airport ; -fun HengeloAirport : Ind Airport ; + fun HenyamyaAirport : Ind Airport ; -fun HenryCountyTNAirport : Ind Airport ; + fun HerbertSmartDowntownGAAirport : Ind Airport ; -fun HenryTiftMyersGAAirport : Ind Airport ; + fun HeslerNobleFieldMSAirport : Ind Airport ; -fun HenyamyaAirport : Ind Airport ; + fun HewanorraStLuciaVieuxFortAirport : Ind Airport ; -fun HerbertSmartDowntownGAAirport : Ind Airport ; + fun HierroCanaryIslandsAirport : Ind Airport ; -fun HeslerNobleFieldMSAirport : Ind Airport ; + fun HighLevelABAirport : Ind Airport ; -fun HewanorraStLuciaVieuxFortAirport : Ind Airport ; + fun HighPrairieABAirport : Ind Airport ; -fun HierroCanaryIslandsAirport : Ind Airport ; + fun HihifoWallisIslandAirport : Ind Airport ; -fun HighLevelABAirport : Ind Airport ; + fun HilversumTheHagueAirport : Ind Airport ; -fun HighPrairieABAirport : Ind Airport ; + fun HohenemsDornbirnDornbirnAirport : Ind Airport ; -fun HihifoWallisIslandAirport : Ind Airport ; + fun HokkaidoWakkanaiAirport : Ind Airport ; -fun HilversumTheHagueAirport : Ind Airport ; + fun HolmanNTAirport : Ind Airport ; -fun HohenemsDornbirnDornbirnAirport : Ind Airport ; + fun HongqiaoShanghaiAirport : Ind Airport ; -fun HokkaidoWakkanaiAirport : Ind Airport ; + fun HookFieldMunicipalOHAirport : Ind Airport ; -fun HolmanNTAirport : Ind Airport ; + fun HookerCountyNEAirport : Ind Airport ; -fun HongqiaoShanghaiAirport : Ind Airport ; + fun HopeBCAirport : Ind Airport ; -fun HookFieldMunicipalOHAirport : Ind Airport ; + fun HopedaleNFAirport : Ind Airport ; -fun HookerCountyNEAirport : Ind Airport ; + fun HornIslandQueenslandAirport : Ind Airport ; -fun HopeBCAirport : Ind Airport ; + fun HornepayneMunicipalONAirport : Ind Airport ; -fun HopedaleNFAirport : Ind Airport ; + fun HorschingLinzAirport : Ind Airport ; -fun HornIslandQueenslandAirport : Ind Airport ; + fun HotSpringsCountyThermopolisMunicipalWYAirport : Ind Airport ; -fun HornepayneMunicipalONAirport : Ind Airport ; + fun HuamboNovaLisboaAirport : Ind Airport ; -fun HorschingLinzAirport : Ind Airport ; + fun HudsonBaySKAirport : Ind Airport ; -fun HotSpringsCountyThermopolisMunicipalWYAirport : Ind Airport ; + fun HudsonsHopeBCAirport : Ind Airport ; -fun HuamboNovaLisboaAirport : Ind Airport ; + fun HumacaoAirport : Ind Airport ; -fun HudsonBaySKAirport : Ind Airport ; + fun HuntFieldWYAirport : Ind Airport ; -fun HudsonsHopeBCAirport : Ind Airport ; + fun HunterArmyAirFieldGAAirport : Ind Airport ; -fun HumacaoAirport : Ind Airport ; + fun HuntingdonCountyPAAirport : Ind Airport ; -fun HuntFieldWYAirport : Ind Airport ; + fun HuronAirparkONAirport : Ind Airport ; -fun HunterArmyAirFieldGAAirport : Ind Airport ; + fun HuroniaONAirport : Ind Airport ; -fun HuntingdonCountyPAAirport : Ind Airport ; + fun HwangeAirport : Ind Airport ; -fun HuronAirparkONAirport : Ind Airport ; + fun HyderSeaplaneBaseAKAirport : Ind Airport ; -fun HuroniaONAirport : Ind Airport ; + fun IcoaraciPAAirport : Ind Airport ; -fun HwangeAirport : Ind Airport ; + fun IdrisTripoliAirport : Ind Airport ; -fun HyderSeaplaneBaseAKAirport : Ind Airport ; + fun IgloolikNTAirport : Ind Airport ; -fun IcoaraciPAAirport : Ind Airport ; + fun IgnaceMunicipalONAirport : Ind Airport ; -fun IdrisTripoliAirport : Ind Airport ; + fun IguatuAirport : Ind Airport ; -fun IgloolikNTAirport : Ind Airport ; + fun IleboAirport : Ind Airport ; -fun IgnaceMunicipalONAirport : Ind Airport ; + fun IlesdelaMadeleineQCAirport : Ind Airport ; -fun IguatuAirport : Ind Airport ; + fun IllinoisValleyRegionalAirportWalterADuncanFieldILAirport : Ind Airport ; -fun IleboAirport : Ind Airport ; + fun IlliziAirport : Ind Airport ; -fun IlesdelaMadeleineQCAirport : Ind Airport ; + fun ImperialBeachNavalOutlyingFieldCAAirport : Ind Airport ; -fun IllinoisValleyRegionalAirportWalterADuncanFieldILAirport : Ind Airport ; + fun IndaselassieAirport : Ind Airport ; -fun IlliziAirport : Ind Airport ; + fun IndianMountainLRRSAKAirport : Ind Airport ; -fun ImperialBeachNavalOutlyingFieldCAAirport : Ind Airport ; + fun IndianapolisMetropolitanINAirport : Ind Airport ; -fun IndaselassieAirport : Ind Airport ; + fun IngenikaBCAirport : Ind Airport ; -fun IndianMountainLRRSAKAirport : Ind Airport ; + fun IngolstadtAirport : Ind Airport ; -fun IndianapolisMetropolitanINAirport : Ind Airport ; + fun InterContinentalKYAirport : Ind Airport ; -fun IngenikaBCAirport : Ind Airport ; + fun InterlakenAirport : Ind Airport ; -fun IngolstadtAirport : Ind Airport ; + fun InternacionalSanSalvadorAirport : Ind Airport ; -fun InterContinentalKYAirport : Ind Airport ; + fun InternationalBophuthatswanaAirport : Ind Airport ; -fun InterlakenAirport : Ind Airport ; + fun InternationalNewProvidenceAirport : Ind Airport ; -fun InternacionalSanSalvadorAirport : Ind Airport ; + fun InternationalPaphosAirport : Ind Airport ; -fun InternationalBophuthatswanaAirport : Ind Airport ; + fun InternationalPeninsularAirport : Ind Airport ; -fun InternationalNewProvidenceAirport : Ind Airport ; + fun InternationalTrivandrumAirport : Ind Airport ; -fun InternationalPaphosAirport : Ind Airport ; + fun InternationalWellingtonAirport : Ind Airport ; -fun InternationalPeninsularAirport : Ind Airport ; + fun InukjuakQCAirport : Ind Airport ; -fun InternationalTrivandrumAirport : Ind Airport ; + fun InuvikNTAirport : Ind Airport ; -fun InternationalWellingtonAirport : Ind Airport ; + fun InverlakeSKAirport : Ind Airport ; -fun InukjuakQCAirport : Ind Airport ; + fun IqaluitFrobisherBayNTAirport : Ind Airport ; -fun InuvikNTAirport : Ind Airport ; + fun IrbioAirport : Ind Airport ; -fun InverlakeSKAirport : Ind Airport ; + fun IsachsenNTAirport : Ind Airport ; -fun IqaluitFrobisherBayNTAirport : Ind Airport ; + fun IslandLakeGardenHillMBAirport : Ind Airport ; -fun IrbioAirport : Ind Airport ; + fun IsleofSkyeAirport : Ind Airport ; -fun IsachsenNTAirport : Ind Airport ; + fun ItsjubaSCAirport : Ind Airport ; -fun IslandLakeGardenHillMBAirport : Ind Airport ; + fun IvatoAntananarivoAirport : Ind Airport ; -fun IsleofSkyeAirport : Ind Airport ; + fun IvujivikQCAirport : Ind Airport ; -fun ItsjubaSCAirport : Ind Airport ; + fun IwakuniHonshuIsAirport : Ind Airport ; -fun IvatoAntananarivoAirport : Ind Airport ; + fun IxtapaZihuatanejoAirport : Ind Airport ; -fun IvujivikQCAirport : Ind Airport ; + fun JFKennedyElAltoLaPazAirport : Ind Airport ; -fun IwakuniHonshuIsAirport : Ind Airport ; + fun JGStrijdomInternationalWindhoekAirport : Ind Airport ; -fun IxtapaZihuatanejoAirport : Ind Airport ; + fun JMVelascoIbarraMacaraAirport : Ind Airport ; -fun JFKennedyElAltoLaPazAirport : Ind Airport ; + fun JacksonMunicipalMNAirport : Ind Airport ; -fun JGStrijdomInternationalWindhoekAirport : Ind Airport ; + fun JacksonvilleNavalAirStationTowersFieldFLAirport : Ind Airport ; -fun JMVelascoIbarraMacaraAirport : Ind Airport ; + fun JacobAirport : Ind Airport ; -fun JacksonMunicipalMNAirport : Ind Airport ; + fun JaladharAirport : Ind Airport ; -fun JacksonvilleNavalAirStationTowersFieldFLAirport : Ind Airport ; + fun JaluitJaborJaluitAirport : Ind Airport ; -fun JacobAirport : Ind Airport ; + fun JaraguadoSulSCAirport : Ind Airport ; -fun JaladharAirport : Ind Airport ; + fun JasionkaRzeszowAirport : Ind Airport ; -fun JaluitJaborJaluitAirport : Ind Airport ; + fun JasperCountyINAirport : Ind Airport ; -fun JaraguadoSulSCAirport : Ind Airport ; + fun JasperHintonABAirport : Ind Airport ; -fun JasionkaRzeszowAirport : Ind Airport ; + fun JeffersonCountyInternationalWAAirport : Ind Airport ; -fun JasperCountyINAirport : Ind Airport ; + fun JefmanSorongAirport : Ind Airport ; -fun JasperHintonABAirport : Ind Airport ; + fun JennyLindIslandNTAirport : Ind Airport ; -fun JeffersonCountyInternationalWAAirport : Ind Airport ; + fun JenpegMBAirport : Ind Airport ; -fun JefmanSorongAirport : Ind Airport ; + fun JerryTylerMemorialMIAirport : Ind Airport ; -fun JennyLindIslandNTAirport : Ind Airport ; + fun JeyporeAirport : Ind Airport ; -fun JenpegMBAirport : Ind Airport ; + fun JimKellyFieldNEAirport : Ind Airport ; -fun JerryTylerMemorialMIAirport : Ind Airport ; + fun JimdabyneNewSouthWalesAirport : Ind Airport ; -fun JeyporeAirport : Ind Airport ; + fun JinanAirport : Ind Airport ; -fun JimKellyFieldNEAirport : Ind Airport ; + fun JoeWilliamsNavalOutlyingFieldMSAirport : Ind Airport ; -fun JimdabyneNewSouthWalesAirport : Ind Airport ; + fun JohanAdolfPengelZanderyParamariboAirport : Ind Airport ; -fun JinanAirport : Ind Airport ; + fun JohnHBattenFieldWIAirport : Ind Airport ; -fun JoeWilliamsNavalOutlyingFieldMSAirport : Ind Airport ; + fun JohnWayneAirportOrangeCountyCAAirport : Ind Airport ; -fun JohanAdolfPengelZanderyParamariboAirport : Ind Airport ; + fun JohnnyMountainBCAirport : Ind Airport ; -fun JohnHBattenFieldWIAirport : Ind Airport ; + fun JohnsonPointNTAirport : Ind Airport ; -fun JohnWayneAirportOrangeCountyCAAirport : Ind Airport ; + fun JomoKenyattaNairobiAirport : Ind Airport ; -fun JohnnyMountainBCAirport : Ind Airport ; + fun JosefaCamejoParaguanaAirport : Ind Airport ; -fun JohnsonPointNTAirport : Ind Airport ; + fun JuanSantamariaInternationalSanJoseAirport : Ind Airport ; -fun JomoKenyattaNairobiAirport : Ind Airport ; + fun JuanaAzurduydePadillaSucreAirport : Ind Airport ; -fun JosefaCamejoParaguanaAirport : Ind Airport ; + fun JuandaSurabayaAirport : Ind Airport ; -fun JuanSantamariaInternationalSanJoseAirport : Ind Airport ; + fun JubailAirport : Ind Airport ; -fun JuanaAzurduydePadillaSucreAirport : Ind Airport ; + fun KISawyerAirForceBaseMIAirport : Ind Airport ; -fun JuandaSurabayaAirport : Ind Airport ; + fun KabalegaFallsMurchisonFallsAirport : Ind Airport ; -fun JubailAirport : Ind Airport ; + fun KahuluiHIAirport : Ind Airport ; -fun KISawyerAirForceBaseMIAirport : Ind Airport ; + fun KalaupapaHIAirport : Ind Airport ; -fun KabalegaFallsMurchisonFallsAirport : Ind Airport ; + fun KallaxLuleaAirport : Ind Airport ; -fun KahuluiHIAirport : Ind Airport ; + fun KalumburuWesternAustraliaAirport : Ind Airport ; -fun KalaupapaHIAirport : Ind Airport ; + fun KamloopsBCAirport : Ind Airport ; -fun KallaxLuleaAirport : Ind Airport ; + fun KamuzuInternationalLilongweAirport : Ind Airport ; -fun KalumburuWesternAustraliaAirport : Ind Airport ; + fun KanazawaCityAirport : Ind Airport ; -fun KamloopsBCAirport : Ind Airport ; + fun KaneoheBayMarineCorpsAirStationMokapuPointHIAirport : Ind Airport ; -fun KamuzuInternationalLilongweAirport : Ind Airport ; + fun KangiqsualujjuaqQCAirport : Ind Airport ; -fun KanazawaCityAirport : Ind Airport ; + fun KangiqsujuaqQCAirport : Ind Airport ; -fun KaneoheBayMarineCorpsAirStationMokapuPointHIAirport : Ind Airport ; + fun KangirsukQCAirport : Ind Airport ; -fun KangiqsualujjuaqQCAirport : Ind Airport ; + fun KansasCityDowntownMOAirport : Ind Airport ; -fun KangiqsujuaqQCAirport : Ind Airport ; + fun KansasCityInternationalMOAirport : Ind Airport ; -fun KangirsukQCAirport : Ind Airport ; + fun KantchariAirport : Ind Airport ; -fun KansasCityDowntownMOAirport : Ind Airport ; + fun KaolinFieldGAAirport : Ind Airport ; -fun KansasCityInternationalMOAirport : Ind Airport ; + fun KapuskasingQCAirport : Ind Airport ; -fun KantchariAirport : Ind Airport ; + fun KarlStefanMemorialNEAirport : Ind Airport ; -fun KaolinFieldGAAirport : Ind Airport ; + fun KarlovasiAirport : Ind Airport ; -fun KapuskasingQCAirport : Ind Airport ; + fun KasabaBayAirport : Ind Airport ; -fun KarlStefanMemorialNEAirport : Ind Airport ; + fun KasabonikaONAirport : Ind Airport ; -fun KarlovasiAirport : Ind Airport ; + fun KaschechewanQCAirport : Ind Airport ; -fun KasabaBayAirport : Ind Airport ; + fun KastelSplitAirport : Ind Airport ; -fun KasabonikaONAirport : Ind Airport ; + fun KavikAKAirport : Ind Airport ; -fun KaschechewanQCAirport : Ind Airport ; + fun KayaAirport : Ind Airport ; -fun KastelSplitAirport : Ind Airport ; + fun KayentaAZAirport : Ind Airport ; -fun KavikAKAirport : Ind Airport ; + fun KeekorokAirport : Ind Airport ; -fun KayaAirport : Ind Airport ; + fun KegaskaWaterAerodromeQCAirport : Ind Airport ; -fun KayentaAZAirport : Ind Airport ; + fun KelafoAirport : Ind Airport ; -fun KeekorokAirport : Ind Airport ; + fun KelilaAirport : Ind Airport ; -fun KegaskaWaterAerodromeQCAirport : Ind Airport ; + fun KellyAirForceBaseTXAirport : Ind Airport ; -fun KelafoAirport : Ind Airport ; + fun KelownaBCAirport : Ind Airport ; -fun KelilaAirport : Ind Airport ; + fun KelsterbachAirport : Ind Airport ; -fun KellyAirForceBaseTXAirport : Ind Airport ; + fun KendallTamiamiExecutiveFLAirport : Ind Airport ; -fun KelownaBCAirport : Ind Airport ; + fun KenitraAirport : Ind Airport ; -fun KelsterbachAirport : Ind Airport ; + fun KenoraONAirport : Ind Airport ; -fun KendallTamiamiExecutiveFLAirport : Ind Airport ; + fun KentInternationalEnglandAirport : Ind Airport ; -fun KenitraAirport : Ind Airport ; + fun KentlandINAirport : Ind Airport ; -fun KenoraONAirport : Ind Airport ; + fun KetchikanHarborSeaplaneBaseAKAirport : Ind Airport ; -fun KentInternationalEnglandAirport : Ind Airport ; + fun KeyFieldMSAirport : Ind Airport ; -fun KentlandINAirport : Ind Airport ; + fun KeyLakeSKAirport : Ind Airport ; -fun KetchikanHarborSeaplaneBaseAKAirport : Ind Airport ; + fun KeyWestNavalAirStationBocaChicaFieldFLAirport : Ind Airport ; -fun KeyFieldMSAirport : Ind Airport ; + fun KeystoneCOAirport : Ind Airport ; -fun KeyLakeSKAirport : Ind Airport ; + fun KhalidMilitaryCityAirport : Ind Airport ; -fun KeyWestNavalAirStationBocaChicaFieldFLAirport : Ind Airport ; + fun KhujandKhudzhandKhujandAirport : Ind Airport ; -fun KeystoneCOAirport : Ind Airport ; + fun KigomaAirport : Ind Airport ; -fun KhalidMilitaryCityAirport : Ind Airport ; + fun KijangTanjungPinangAirport : Ind Airport ; -fun KhujandKhudzhandKhujandAirport : Ind Airport ; + fun KillaloeONAirport : Ind Airport ; -fun KigomaAirport : Ind Airport ; + fun KilliniqKillinekIslandNTAirport : Ind Airport ; -fun KijangTanjungPinangAirport : Ind Airport ; + fun KimberleyBCAirport : Ind Airport ; -fun KillaloeONAirport : Ind Airport ; + fun KimhaePusanAirport : Ind Airport ; -fun KilliniqKillinekIslandNTAirport : Ind Airport ; + fun KimpoSeoulAirport : Ind Airport ; -fun KimberleyBCAirport : Ind Airport ; + fun KindersleySKAirport : Ind Airport ; -fun KimhaePusanAirport : Ind Airport ; + fun KingHusseinAirBaseMafraqAirport : Ind Airport ; -fun KimpoSeoulAirport : Ind Airport ; + fun KingKhalidRiyadhAirport : Ind Airport ; -fun KindersleySKAirport : Ind Airport ; + fun KingsLandOLakesWIAirport : Ind Airport ; -fun KingHusseinAirBaseMafraqAirport : Ind Airport ; + fun KingsfordSmithNewSouthWalesAirport : Ind Airport ; -fun KingKhalidRiyadhAirport : Ind Airport ; + fun KingstonONAirport : Ind Airport ; -fun KingsLandOLakesWIAirport : Ind Airport ; + fun KingsvilleNavalAirStationTXAirport : Ind Airport ; -fun KingsfordSmithNewSouthWalesAirport : Ind Airport ; + fun KirkFieldARAirport : Ind Airport ; -fun KingstonONAirport : Ind Airport ; + fun KirklandLakeONAirport : Ind Airport ; -fun KingsvilleNavalAirStationTXAirport : Ind Airport ; + fun KitchenerLakeWaterAerodromeBCAirport : Ind Airport ; -fun KirkFieldARAirport : Ind Airport ; + fun KitimatAerodromeBCAirport : Ind Airport ; -fun KirklandLakeONAirport : Ind Airport ; + fun KiungaAirport : Ind Airport ; -fun KitchenerLakeWaterAerodromeBCAirport : Ind Airport ; + fun KlamathFallsInternationalORAirport : Ind Airport ; -fun KitimatAerodromeBCAirport : Ind Airport ; + fun KlemtuWaterAerodromeBCAirport : Ind Airport ; -fun KiungaAirport : Ind Airport ; + fun KneeLakeMBAirport : Ind Airport ; -fun KlamathFallsInternationalORAirport : Ind Airport ; + fun KnockConnaughtAirport : Ind Airport ; -fun KlemtuWaterAerodromeBCAirport : Ind Airport ; + fun KnoxCountyRegionalMEAirport : Ind Airport ; -fun KneeLakeMBAirport : Ind Airport ; + fun KnoxvilleMunicipalIAAirport : Ind Airport ; -fun KnockConnaughtAirport : Ind Airport ; + fun KobeAirport : Ind Airport ; -fun KnoxCountyRegionalMEAirport : Ind Airport ; + fun KobukAKAirport : Ind Airport ; -fun KnoxvilleMunicipalIAAirport : Ind Airport ; + fun KohSamuiAirport : Ind Airport ; -fun KobeAirport : Ind Airport ; + fun KohatAirport : Ind Airport ; -fun KobukAKAirport : Ind Airport ; + fun KokomoMunicipalINAirport : Ind Airport ; -fun KohSamuiAirport : Ind Airport ; + fun KomakiHonshuAirport : Ind Airport ; -fun KohatAirport : Ind Airport ; + fun KomotiniAirport : Ind Airport ; -fun KokomoMunicipalINAirport : Ind Airport ; + fun KonstanzAirport : Ind Airport ; -fun KomakiHonshuAirport : Ind Airport ; + fun KopaskerAirport : Ind Airport ; -fun KomotiniAirport : Ind Airport ; + fun KosciuskoAttalaCountyMSAirport : Ind Airport ; -fun KonstanzAirport : Ind Airport ; + fun KoszalinAirport : Ind Airport ; -fun KopaskerAirport : Ind Airport ; + fun KotaAirportEthiopia : Ind Airport ; -fun KosciuskoAttalaCountyMSAirport : Ind Airport ; + fun KoundaraAirport : Ind Airport ; -fun KoszalinAirport : Ind Airport ; + fun KourouAirport : Ind Airport ; -fun KotaAirportEthiopia : Ind Airport ; + fun KrefeldAirport : Ind Airport ; -fun KoundaraAirport : Ind Airport ; + fun KsarEsSoukAirport : Ind Airport ; -fun KourouAirport : Ind Airport ; + fun KualaTerengganuAirport : Ind Airport ; -fun KrefeldAirport : Ind Airport ; + fun KuitoAirport : Ind Airport ; -fun KsarEsSoukAirport : Ind Airport ; + fun KulikLakeAKAirport : Ind Airport ; -fun KualaTerengganuAirport : Ind Airport ; + fun KumeJimaAirport : Ind Airport ; -fun KuitoAirport : Ind Airport ; + fun KunduzAirport : Ind Airport ; -fun KulikLakeAKAirport : Ind Airport ; + fun KungKuanAirport : Ind Airport ; -fun KumeJimaAirport : Ind Airport ; + fun KungsangenNorrkopingAirport : Ind Airport ; -fun KunduzAirport : Ind Airport ; + fun KurskKurskAirport : Ind Airport ; -fun KungKuanAirport : Ind Airport ; + fun KuujjuaqFortChimoQCAirport : Ind Airport ; -fun KungsangenNorrkopingAirport : Ind Airport ; + fun KuujjuarapikQCAirport : Ind Airport ; -fun KurskKurskAirport : Ind Airport ; + fun KwangYunAirport : Ind Airport ; -fun KuujjuaqFortChimoQCAirport : Ind Airport ; + fun KymiKouvolaAirport : Ind Airport ; -fun KuujjuarapikQCAirport : Ind Airport ; + fun KyotoAirport : Ind Airport ; -fun KwangYunAirport : Ind Airport ; + fun LMClaytonMTAirport : Ind Airport ; -fun KymiKouvolaAirport : Ind Airport ; + fun LOSimenstadMunicipalWIAirport : Ind Airport ; -fun KyotoAirport : Ind Airport ; + fun LaBauleAirport : Ind Airport ; -fun LMClaytonMTAirport : Ind Airport ; + fun LaChinitaMaracaiboAirport : Ind Airport ; -fun LOSimenstadMunicipalWIAirport : Ind Airport ; + fun LaChorreraAirport : Ind Airport ; -fun LaBauleAirport : Ind Airport ; + fun LaColomaAirport : Ind Airport ; -fun LaChinitaMaracaiboAirport : Ind Airport ; + fun LaCorunaAirport : Ind Airport ; -fun LaChorreraAirport : Ind Airport ; + fun LaCrosseWIWinonaAirport : Ind Airport ; -fun LaColomaAirport : Ind Airport ; + fun LaFriaAirport : Ind Airport ; -fun LaCorunaAirport : Ind Airport ; + fun LaGrandeUnionCountyORAirport : Ind Airport ; -fun LaCrosseWIWinonaAirport : Ind Airport ; + fun LaGrandenr3QCAirport : Ind Airport ; -fun LaFriaAirport : Ind Airport ; + fun LaGrandenr4QCAirport : Ind Airport ; -fun LaGrandeUnionCountyORAirport : Ind Airport ; + fun LaGuairaAirport : Ind Airport ; -fun LaGrandenr3QCAirport : Ind Airport ; + fun LaGuardiaNYAirport : Ind Airport ; -fun LaGrandenr4QCAirport : Ind Airport ; + fun LaJuntaMunicipalCOAirport : Ind Airport ; -fun LaGuairaAirport : Ind Airport ; + fun LaLlagoneAirport : Ind Airport ; -fun LaGuardiaNYAirport : Ind Airport ; + fun LaMacazaQCAirport : Ind Airport ; -fun LaJuntaMunicipalCOAirport : Ind Airport ; + fun LaMesaSanPedroSulaAirport : Ind Airport ; -fun LaLlagoneAirport : Ind Airport ; + fun LaMunozaAirport : Ind Airport ; -fun LaMacazaQCAirport : Ind Airport ; + fun LaPalmaCanaryIslandsAirport : Ind Airport ; -fun LaMesaSanPedroSulaAirport : Ind Airport ; + fun LaPalyvestreToulonHyeresAirport : Ind Airport ; -fun LaMunozaAirport : Ind Airport ; + fun LaPedreraAirport : Ind Airport ; -fun LaPalmaCanaryIslandsAirport : Ind Airport ; + fun LaPlagneAirport : Ind Airport ; -fun LaPalyvestreToulonHyeresAirport : Ind Airport ; + fun LaPorteMunicipalINAirport : Ind Airport ; -fun LaPedreraAirport : Ind Airport ; + fun LaPrimaveraAirport : Ind Airport ; -fun LaPlagneAirport : Ind Airport ; + fun LaRomanaAirport : Ind Airport ; -fun LaPorteMunicipalINAirport : Ind Airport ; + fun LaRongeSKAirport : Ind Airport ; -fun LaPrimaveraAirport : Ind Airport ; + fun LaSarreAerodromeQCAirport : Ind Airport ; -fun LaRomanaAirport : Ind Airport ; + fun LaSerenaAirport : Ind Airport ; -fun LaRongeSKAirport : Ind Airport ; + fun LaTabatiereWaterAerodromeQCAirport : Ind Airport ; -fun LaSarreAerodromeQCAirport : Ind Airport ; + fun LaTontoutaNoumeaAirport : Ind Airport ; -fun LaSerenaAirport : Ind Airport ; + fun LaToucheAKAirport : Ind Airport ; -fun LaTabatiereWaterAerodromeQCAirport : Ind Airport ; + fun LaTuqueQCAirport : Ind Airport ; -fun LaTontoutaNoumeaAirport : Ind Airport ; + fun LaUnionAirport : Ind Airport ; -fun LaToucheAKAirport : Ind Airport ; + fun LaVanguardiaVillavicencioAirport : Ind Airport ; -fun LaTuqueQCAirport : Ind Airport ; + fun LaarbruchAirport : Ind Airport ; -fun LaUnionAirport : Ind Airport ; + fun LabambaAirport : Ind Airport ; -fun LaVanguardiaVillavicencioAirport : Ind Airport ; + fun LabasaAirport : Ind Airport ; -fun LaarbruchAirport : Ind Airport ; + fun LabeAirport : Ind Airport ; -fun LabambaAirport : Ind Airport ; + fun LaberalAirport : Ind Airport ; -fun LabasaAirport : Ind Airport ; + fun LablabAirport : Ind Airport ; -fun LabeAirport : Ind Airport ; + fun LabouchereBayAKAirport : Ind Airport ; -fun LaberalAirport : Ind Airport ; + fun LabuanBajoAirport : Ind Airport ; -fun LablabAirport : Ind Airport ; + fun LabuanSabahAirport : Ind Airport ; -fun LabouchereBayAKAirport : Ind Airport ; + fun LabuhaAirport : Ind Airport ; -fun LabuanBajoAirport : Ind Airport ; + fun LacBrochetMBAirport : Ind Airport ; -fun LabuanSabahAirport : Ind Airport ; + fun LacLaBicheABAirport : Ind Airport ; -fun LabuhaAirport : Ind Airport ; + fun LacLaMartreAerodromeNTAirport : Ind Airport ; -fun LacBrochetMBAirport : Ind Airport ; + fun LaconiaMunicipalNHAirport : Ind Airport ; -fun LacLaBicheABAirport : Ind Airport ; + fun LacumbreAirport : Ind Airport ; -fun LacLaMartreAerodromeNTAirport : Ind Airport ; + fun LadouanieAirport : Ind Airport ; -fun LaconiaMunicipalNHAirport : Ind Airport ; + fun LadyElliottIslandAirport : Ind Airport ; -fun LacumbreAirport : Ind Airport ; + fun LadyFranklinPointNTAirport : Ind Airport ; -fun LadouanieAirport : Ind Airport ; + fun LadysmithAirport : Ind Airport ; -fun LadyElliottIslandAirport : Ind Airport ; + fun LaeIslandAirport : Ind Airport ; -fun LadyFranklinPointNTAirport : Ind Airport ; + fun LafayetteRegionalLAAirport : Ind Airport ; -fun LadysmithAirport : Ind Airport ; + fun LagesSCAirport : Ind Airport ; -fun LaeIslandAirport : Ind Airport ; + fun LaghouatAirport : Ind Airport ; -fun LafayetteRegionalLAAirport : Ind Airport ; + fun LagoAgrioAirport : Ind Airport ; -fun LagesSCAirport : Ind Airport ; + fun LagosdeMorenoAirport : Ind Airport ; -fun LaghouatAirport : Ind Airport ; + fun LagunaArmyAirFieldAZAirport : Ind Airport ; -fun LagoAgrioAirport : Ind Airport ; + fun LagunillasAirport : Ind Airport ; -fun LagosdeMorenoAirport : Ind Airport ; + fun LahadDatuSabahAirport : Ind Airport ; -fun LagunaArmyAirFieldAZAirport : Ind Airport ; + fun LahoreAirport : Ind Airport ; -fun LagunillasAirport : Ind Airport ; + fun LahrAirport : Ind Airport ; -fun LahadDatuSabahAirport : Ind Airport ; + fun LaiAirport : Ind Airport ; -fun LahoreAirport : Ind Airport ; + fun LaiagamAirport : Ind Airport ; -fun LahrAirport : Ind Airport ; + fun LaieuLaRochelleAirport : Ind Airport ; -fun LaiAirport : Ind Airport ; + fun LajeadoRSAirport : Ind Airport ; -fun LaiagamAirport : Ind Airport ; + fun LajesNavalAirStationAzoresAirport : Ind Airport ; -fun LaieuLaRochelleAirport : Ind Airport ; + fun LakeBaringoAirport : Ind Airport ; -fun LajeadoRSAirport : Ind Airport ; + fun LakeCharlesRegionalLAAirport : Ind Airport ; -fun LajesNavalAirStationAzoresAirport : Ind Airport ; + fun LakeCountyCOAirport : Ind Airport ; -fun LakeBaringoAirport : Ind Airport ; + fun LakeCountyORAirport : Ind Airport ; -fun LakeCharlesRegionalLAAirport : Ind Airport ; + fun LakeEvellaNorthernTerritoryAirport : Ind Airport ; -fun LakeCountyCOAirport : Ind Airport ; + fun LakeGenevaAireEstatesWIAirport : Ind Airport ; -fun LakeCountyORAirport : Ind Airport ; + fun LakeHarbourNTAirport : Ind Airport ; -fun LakeEvellaNorthernTerritoryAirport : Ind Airport ; + fun LakeHoodSeaplaneBaseAKAirport : Ind Airport ; -fun LakeGenevaAireEstatesWIAirport : Ind Airport ; + fun LakeManyaraAirport : Ind Airport ; -fun LakeHarbourNTAirport : Ind Airport ; + fun LakeMinchuminaAKAirport : Ind Airport ; -fun LakeHoodSeaplaneBaseAKAirport : Ind Airport ; + fun LakeMurrayAirport : Ind Airport ; -fun LakeManyaraAirport : Ind Airport ; + fun LakeNashNorthernTerritoryAirport : Ind Airport ; -fun LakeMinchuminaAKAirport : Ind Airport ; + fun LakePlacidNYAirport : Ind Airport ; -fun LakeMurrayAirport : Ind Airport ; + fun LakeRudolfAirport : Ind Airport ; -fun LakeNashNorthernTerritoryAirport : Ind Airport ; + fun LakeTahoeCAAirport : Ind Airport ; -fun LakePlacidNYAirport : Ind Airport ; + fun LakeUnionChryslerAirSeaplaneBaseWAAirport : Ind Airport ; -fun LakeRudolfAirport : Ind Airport ; + fun LakebaAirport : Ind Airport ; -fun LakeTahoeCAAirport : Ind Airport ; + fun LakefieldQueenslandAirport : Ind Airport ; -fun LakeUnionChryslerAirSeaplaneBaseWAAirport : Ind Airport ; + fun LakefrontLAAirport : Ind Airport ; -fun LakebaAirport : Ind Airport ; + fun LakehurstNAESMaxfieldFieldNJAirport : Ind Airport ; -fun LakefieldQueenslandAirport : Ind Airport ; + fun LakelandDownsAirport : Ind Airport ; -fun LakefrontLAAirport : Ind Airport ; + fun LakelandRegionalFLAirport : Ind Airport ; -fun LakehurstNAESMaxfieldFieldNJAirport : Ind Airport ; + fun LakenheathAirport : Ind Airport ; -fun LakelandDownsAirport : Ind Airport ; + fun LakesideTXAirport : Ind Airport ; -fun LakelandRegionalFLAirport : Ind Airport ; + fun LakesideUSAFMNAirport : Ind Airport ; -fun LakenheathAirport : Ind Airport ; + fun LalibellaAirport : Ind Airport ; -fun LakesideTXAirport : Ind Airport ; + fun LalmonirhatAirport : Ind Airport ; -fun LakesideUSAFMNAirport : Ind Airport ; + fun LalomalavaAirport : Ind Airport ; -fun LalibellaAirport : Ind Airport ; + fun LamapAirport : Ind Airport ; -fun LalmonirhatAirport : Ind Airport ; + fun LamarMunicipalCOAirport : Ind Airport ; -fun LalomalavaAirport : Ind Airport ; + fun LamarMunicipalMOAirport : Ind Airport ; -fun LamapAirport : Ind Airport ; + fun LamassaAirport : Ind Airport ; -fun LamarMunicipalCOAirport : Ind Airport ; + fun LambareneAirport : Ind Airport ; -fun LamarMunicipalMOAirport : Ind Airport ; + fun LambertStLouisInternationalMOAirport : Ind Airport ; -fun LamassaAirport : Ind Airport ; + fun LamenBayAirport : Ind Airport ; -fun LambareneAirport : Ind Airport ; + fun LameziaTermeAirport : Ind Airport ; -fun LambertStLouisInternationalMOAirport : Ind Airport ; + fun LamidandaAirport : Ind Airport ; -fun LamenBayAirport : Ind Airport ; + fun LampangAirport : Ind Airport ; -fun LameziaTermeAirport : Ind Airport ; + fun LampedusaLampedusaIslandAirport : Ind Airport ; -fun LamidandaAirport : Ind Airport ; + fun LanaiHIAirport : Ind Airport ; -fun LampangAirport : Ind Airport ; + fun LancasterPAAirport : Ind Airport ; -fun LampedusaLampedusaIslandAirport : Ind Airport ; + fun LandshotAirport : Ind Airport ; -fun LanaiHIAirport : Ind Airport ; + fun LangaraBCAirport : Ind Airport ; -fun LancasterPAAirport : Ind Airport ; + fun LangeoogAirport : Ind Airport ; -fun LandshotAirport : Ind Airport ; + fun LanggurTualAirport : Ind Airport ; -fun LangaraBCAirport : Ind Airport ; + fun LangimarAirport : Ind Airport ; -fun LangeoogAirport : Ind Airport ; + fun LangkawiAirport : Ind Airport ; -fun LanggurTualAirport : Ind Airport ; + fun LangkawiPulauAirport : Ind Airport ; -fun LangimarAirport : Ind Airport ; + fun LangleyAirForceBaseVAAirport : Ind Airport ; -fun LangkawiAirport : Ind Airport ; + fun LangnesTromsoAirport : Ind Airport ; -fun LangkawiPulauAirport : Ind Airport ; + fun LangtangAirport : Ind Airport ; -fun LangleyAirForceBaseVAAirport : Ind Airport ; + fun LannBihouetLorientAirport : Ind Airport ; -fun LangnesTromsoAirport : Ind Airport ; + fun LannionAirport : Ind Airport ; -fun LangtangAirport : Ind Airport ; + fun LansdowneHouseONAirport : Ind Airport ; -fun LannBihouetLorientAirport : Ind Airport ; + fun LansdowneStationWesternAustraliaAirport : Ind Airport ; -fun LannionAirport : Ind Airport ; + fun LaoagAirport : Ind Airport ; -fun LansdowneHouseONAirport : Ind Airport ; + fun LappeenrantaAirport : Ind Airport ; -fun LansdowneStationWesternAustraliaAirport : Ind Airport ; + fun LaramieRegionalWYAirport : Ind Airport ; -fun LaoagAirport : Ind Airport ; + fun LarantukaAirport : Ind Airport ; -fun LappeenrantaAirport : Ind Airport ; + fun LaredoInternationalTXAirport : Ind Airport ; -fun LaramieRegionalWYAirport : Ind Airport ; + fun LarisaAirport : Ind Airport ; -fun LarantukaAirport : Ind Airport ; + fun LarkanaAirport : Ind Airport ; -fun LaredoInternationalTXAirport : Ind Airport ; + fun LarnacaAirport : Ind Airport ; -fun LarisaAirport : Ind Airport ; + fun LarnedPawneeCountyKSAirport : Ind Airport ; -fun LarkanaAirport : Ind Airport ; + fun LarsonAirForceBaseWAAirport : Ind Airport ; -fun LarnacaAirport : Ind Airport ; + fun LasCanasAirport : Ind Airport ; -fun LarnedPawneeCountyKSAirport : Ind Airport ; + fun LasCrucesInternationalNMAirport : Ind Airport ; -fun LarsonAirForceBaseWAAirport : Ind Airport ; + fun LasGaviotasAirport : Ind Airport ; -fun LasCanasAirport : Ind Airport ; + fun LasHerasAirport : Ind Airport ; -fun LasCrucesInternationalNMAirport : Ind Airport ; + fun LasKorehAirport : Ind Airport ; -fun LasGaviotasAirport : Ind Airport ; + fun LasLimasAirport : Ind Airport ; -fun LasHerasAirport : Ind Airport ; + fun LasLomitasAirport : Ind Airport ; -fun LasKorehAirport : Ind Airport ; + fun LasPalmasGranCanariaCanaryIslandsAirport : Ind Airport ; -fun LasLimasAirport : Ind Airport ; + fun LasPiedrasAirport : Ind Airport ; -fun LasLomitasAirport : Ind Airport ; + fun LasTunasAirport : Ind Airport ; -fun LasPalmasGranCanariaCanaryIslandsAirport : Ind Airport ; + fun LasVegasMunicipalNMAirport : Ind Airport ; -fun LasPiedrasAirport : Ind Airport ; + fun LashioAirport : Ind Airport ; -fun LasTunasAirport : Ind Airport ; + fun LastourvilleAirport : Ind Airport ; -fun LasVegasMunicipalNMAirport : Ind Airport ; + fun LatakiaAirport : Ind Airport ; -fun LashioAirport : Ind Airport ; + fun LathropWellsNVAirport : Ind Airport ; -fun LastourvilleAirport : Ind Airport ; + fun LatinaAirport : Ind Airport ; -fun LatakiaAirport : Ind Airport ; + fun LatrobeAirport : Ind Airport ; -fun LathropWellsNVAirport : Ind Airport ; + fun LaucalaIslandAirport : Ind Airport ; -fun LatinaAirport : Ind Airport ; + fun LauncestonTasmaniaAirport : Ind Airport ; -fun LatrobeAirport : Ind Airport ; + fun LauraQueenslandAirport : Ind Airport ; -fun LaucalaIslandAirport : Ind Airport ; + fun LauraStationQueenslandAirport : Ind Airport ; -fun LauncestonTasmaniaAirport : Ind Airport ; + fun LauribeAirport : Ind Airport ; -fun LauraQueenslandAirport : Ind Airport ; + fun LaurieRiverAerodromeMBAirport : Ind Airport ; -fun LauraStationQueenslandAirport : Ind Airport ; + fun LaurinburgMaxtonNCAirport : Ind Airport ; -fun LauribeAirport : Ind Airport ; + fun LausanneLaBlecheretteLausanneAirport : Ind Airport ; -fun LaurieRiverAerodromeMBAirport : Ind Airport ; + fun LauterachAirport : Ind Airport ; -fun LaurinburgMaxtonNCAirport : Ind Airport ; + fun LavalAirport : Ind Airport ; -fun LausanneLaBlecheretteLausanneAirport : Ind Airport ; + fun LavertonWesternAustraliaAirport : Ind Airport ; -fun LauterachAirport : Ind Airport ; + fun LavrasMGAirport : Ind Airport ; -fun LavalAirport : Ind Airport ; + fun LawasSarawakAirport : Ind Airport ; -fun LavertonWesternAustraliaAirport : Ind Airport ; + fun LawicaPoznanAirport : Ind Airport ; -fun LavrasMGAirport : Ind Airport ; + fun LawnHillQueenslandAirport : Ind Airport ; -fun LawasSarawakAirport : Ind Airport ; + fun LawrenceJTimmermanWIAirport : Ind Airport ; -fun LawicaPoznanAirport : Ind Airport ; + fun LawrenceKSAirport : Ind Airport ; -fun LawnHillQueenslandAirport : Ind Airport ; + fun LawrenceMunicipalKSAirport : Ind Airport ; -fun LawrenceJTimmermanWIAirport : Ind Airport ; + fun LawrenceMunicipalMAAirport : Ind Airport ; -fun LawrenceKSAirport : Ind Airport ; + fun LawrencevilleBrunswickMunicipalVAAirport : Ind Airport ; -fun LawrenceMunicipalKSAirport : Ind Airport ; + fun LawrencevilleVincennesInternationalILAirport : Ind Airport ; -fun LawrenceMunicipalMAAirport : Ind Airport ; + fun LawsonArmyAirFieldGAAirport : Ind Airport ; -fun LawrencevilleBrunswickMunicipalVAAirport : Ind Airport ; + fun LawtonMunicipalOKAirport : Ind Airport ; -fun LawrencevilleVincennesInternationalILAirport : Ind Airport ; + fun LazaroCardenasAirport : Ind Airport ; -fun LawsonArmyAirFieldGAAirport : Ind Airport ; + fun LeBourgetParisAirport : Ind Airport ; -fun LawtonMunicipalOKAirport : Ind Airport ; + fun LeMansAirport : Ind Airport ; -fun LazaroCardenasAirport : Ind Airport ; + fun LeMarsMunicipalIAAirport : Ind Airport ; -fun LeBourgetParisAirport : Ind Airport ; + fun LePuyAirport : Ind Airport ; -fun LeMansAirport : Ind Airport ; + fun LeRaizetPointeaPitreAirport : Ind Airport ; -fun LeMarsMunicipalIAAirport : Ind Airport ; + fun LeafRapidsMBAirport : Ind Airport ; -fun LePuyAirport : Ind Airport ; + fun LearmouthExmouthWesternAustraliaAirport : Ind Airport ; -fun LeRaizetPointeaPitreAirport : Ind Airport ; + fun LebakengAirport : Ind Airport ; -fun LeafRapidsMBAirport : Ind Airport ; + fun LebanonMunicipalNHAirport : Ind Airport ; -fun LearmouthExmouthWesternAustraliaAirport : Ind Airport ; + fun LebelsurQuevillonAerodromeQCAirport : Ind Airport ; -fun LebakengAirport : Ind Airport ; + fun LecceAirport : Ind Airport ; -fun LebanonMunicipalNHAirport : Ind Airport ; + fun LeconfeldEnglandAirport : Ind Airport ; -fun LebelsurQuevillonAerodromeQCAirport : Ind Airport ; + fun LeconiAirport : Ind Airport ; -fun LecceAirport : Ind Airport ; + fun LeedsBradfordAirport : Ind Airport ; -fun LeconfeldEnglandAirport : Ind Airport ; + fun LeesburgMunicipalFLAirport : Ind Airport ; -fun LeconiAirport : Ind Airport ; + fun LeetonNewSouthWalesAirport : Ind Airport ; -fun LeedsBradfordAirport : Ind Airport ; + fun LeeuwardenAirport : Ind Airport ; -fun LeesburgMunicipalFLAirport : Ind Airport ; + fun LegaspiAirport : Ind Airport ; -fun LeetonNewSouthWalesAirport : Ind Airport ; + fun LeguizamoAirport : Ind Airport ; -fun LeeuwardenAirport : Ind Airport ; + fun LehmiCountyIDAirport : Ind Airport ; -fun LegaspiAirport : Ind Airport ; + fun LehuAirport : Ind Airport ; -fun LeguizamoAirport : Ind Airport ; + fun LeighCreekSouthAustraliaAirport : Ind Airport ; -fun LehmiCountyIDAirport : Ind Airport ; + fun LeinsterWesternAustraliaAirport : Ind Airport ; -fun LehuAirport : Ind Airport ; + fun LeirinFagernesAirport : Ind Airport ; -fun LeighCreekSouthAustraliaAirport : Ind Airport ; + fun LeitreAirport : Ind Airport ; -fun LeinsterWesternAustraliaAirport : Ind Airport ; + fun LekanaAirport : Ind Airport ; -fun LeirinFagernesAirport : Ind Airport ; + fun LeknesAirport : Ind Airport ; -fun LeitreAirport : Ind Airport ; + fun LelystadAirport : Ind Airport ; -fun LekanaAirport : Ind Airport ; + fun LemmonMunicipalSDAirport : Ind Airport ; -fun LeknesAirport : Ind Airport ; + fun LemnosLimnosAirport : Ind Airport ; -fun LelystadAirport : Ind Airport ; + fun LemooreNavalAirStationReevesFieldCAAirport : Ind Airport ; -fun LemmonMunicipalSDAirport : Ind Airport ; + fun LemwerderDASAPlantBremenAirport : Ind Airport ; -fun LemnosLimnosAirport : Ind Airport ; + fun LengbatiAirport : Ind Airport ; -fun LemooreNavalAirStationReevesFieldCAAirport : Ind Airport ; + fun LeoAirport : Ind Airport ; -fun LemwerderDASAPlantBremenAirport : Ind Airport ; + fun LeonMBaLibrevilleAirport : Ind Airport ; -fun LengbatiAirport : Ind Airport ; + fun LeonoraWesternAustraliaAirport : Ind Airport ; -fun LeoAirport : Ind Airport ; + fun LeopoldinaMGAirport : Ind Airport ; -fun LeonMBaLibrevilleAirport : Ind Airport ; + fun LerehAirport : Ind Airport ; -fun LeonoraWesternAustraliaAirport : Ind Airport ; + fun LeribeAirport : Ind Airport ; -fun LeopoldinaMGAirport : Ind Airport ; + fun LerosAirport : Ind Airport ; -fun LerehAirport : Ind Airport ; + fun LesAngladesOujdaAirport : Ind Airport ; -fun LeribeAirport : Ind Airport ; + fun LesSablesAirport : Ind Airport ; -fun LerosAirport : Ind Airport ; + fun LesSaintesTerredeHautAirport : Ind Airport ; -fun LesAngladesOujdaAirport : Ind Airport ; + fun LeseAirport : Ind Airport ; -fun LesSablesAirport : Ind Airport ; + fun LesobengAirport : Ind Airport ; -fun LesSaintesTerredeHautAirport : Ind Airport ; + fun LesquinLilleAirport : Ind Airport ; -fun LeseAirport : Ind Airport ; + fun LesterBPearsonInternationalONAirport : Ind Airport ; -fun LesobengAirport : Ind Airport ; + fun LethbridgeABAirport : Ind Airport ; -fun LesquinLilleAirport : Ind Airport ; + fun LethemAirport : Ind Airport ; -fun LesterBPearsonInternationalONAirport : Ind Airport ; + fun LewistonNezPerceCountyIDAirport : Ind Airport ; -fun LethbridgeABAirport : Ind Airport ; + fun LewistownMunicipalMTAirport : Ind Airport ; -fun LethemAirport : Ind Airport ; + fun LewolebaAirport : Ind Airport ; -fun LewistonNezPerceCountyIDAirport : Ind Airport ; + fun LhasaAirport : Ind Airport ; -fun LewistownMunicipalMTAirport : Ind Airport ; + fun LhokSukonAirport : Ind Airport ; -fun LewolebaAirport : Ind Airport ; + fun LhokseumaweAirport : Ind Airport ; -fun LhasaAirport : Ind Airport ; + fun LianyungangXinpuAirport : Ind Airport ; -fun LhokSukonAirport : Ind Airport ; + fun LiardRiverBCAirport : Ind Airport ; -fun LhokseumaweAirport : Ind Airport ; + fun LibengeAirport : Ind Airport ; -fun LianyungangXinpuAirport : Ind Airport ; + fun LiberalMunicipalKSAirport : Ind Airport ; -fun LiardRiverBCAirport : Ind Airport ; + fun LibertyCountyGAAirport : Ind Airport ; -fun LibengeAirport : Ind Airport ; + fun LiboiAirport : Ind Airport ; -fun LiberalMunicipalKSAirport : Ind Airport ; + fun LicGustavoDOrdazPuertoVallartaAirport : Ind Airport ; -fun LibertyCountyGAAirport : Ind Airport ; + fun LicManuelCrecencioRejonMeridaAirport : Ind Airport ; -fun LiboiAirport : Ind Airport ; + fun LicenciadoAdolfoLopezMateosTolucaAirport : Ind Airport ; -fun LicGustavoDOrdazPuertoVallartaAirport : Ind Airport ; + fun LichingaVilaCabralAirport : Ind Airport ; -fun LicManuelCrecencioRejonMeridaAirport : Ind Airport ; + fun LidkopingAirport : Ind Airport ; -fun LicenciadoAdolfoLopezMateosTolucaAirport : Ind Airport ; + fun LiepajaAirport : Ind Airport ; -fun LichingaVilaCabralAirport : Ind Airport ; + fun LifouLifuLoyaltyIslandsAirport : Ind Airport ; -fun LidkopingAirport : Ind Airport ; + fun LightningRidgeNewSouthWalesAirport : Ind Airport ; -fun LiepajaAirport : Ind Airport ; + fun LihueHIAirport : Ind Airport ; -fun LifouLifuLoyaltyIslandsAirport : Ind Airport ; + fun LikiepAirport : Ind Airport ; -fun LightningRidgeNewSouthWalesAirport : Ind Airport ; + fun LikomaIslandAirport : Ind Airport ; -fun LihueHIAirport : Ind Airport ; + fun LimaOHAirport : Ind Airport ; -fun LikiepAirport : Ind Airport ; + fun LimassolAirport : Ind Airport ; -fun LikomaIslandAirport : Ind Airport ; + fun LimbangSarawakAirport : Ind Airport ; -fun LimaOHAirport : Ind Airport ; + fun LimbunyaNorthernTerritoryAirport : Ind Airport ; -fun LimassolAirport : Ind Airport ; + fun LimeAcresAirport : Ind Airport ; -fun LimbangSarawakAirport : Ind Airport ; + fun LimeVillageAKAirport : Ind Airport ; -fun LimbunyaNorthernTerritoryAirport : Ind Airport ; + fun LimerickAirport : Ind Airport ; -fun LimeAcresAirport : Ind Airport ; + fun LimonAirport : Ind Airport ; -fun LimeVillageAKAirport : Ind Airport ; + fun LimonAirportCostaRica : Ind Airport ; -fun LimerickAirport : Ind Airport ; + fun LimonMunicipalCOAirport : Ind Airport ; -fun LimonAirport : Ind Airport ; + fun LinateMilanoMilanAirport : Ind Airport ; -fun LimonAirportCostaRica : Ind Airport ; + fun LincolnMunicipalNEAirport : Ind Airport ; -fun LimonMunicipalCOAirport : Ind Airport ; + fun LincolnRiverAKAirport : Ind Airport ; -fun LinateMilanoMilanAirport : Ind Airport ; + fun LindaDownsAirport : Ind Airport ; -fun LincolnMunicipalNEAirport : Ind Airport ; + fun LindemanIslandQueenslandAirport : Ind Airport ; -fun LincolnRiverAKAirport : Ind Airport ; + fun LindenNJAirport : Ind Airport ; -fun LindaDownsAirport : Ind Airport ; + fun LindiAirport : Ind Airport ; -fun LindemanIslandQueenslandAirport : Ind Airport ; + fun LingaLingaAirport : Ind Airport ; -fun LindenNJAirport : Ind Airport ; + fun LinkopingAirport : Ind Airport ; -fun LindiAirport : Ind Airport ; + fun LinnCreekGrandGlaizeMemorialMOAirport : Ind Airport ; -fun LingaLingaAirport : Ind Airport ; + fun LinsSPAirport : Ind Airport ; -fun LinkopingAirport : Ind Airport ; + fun LipetskLipetskAirport : Ind Airport ; -fun LinnCreekGrandGlaizeMemorialMOAirport : Ind Airport ; + fun LisalaAirport : Ind Airport ; -fun LinsSPAirport : Ind Airport ; + fun LishanAirport : Ind Airport ; -fun LipetskLipetskAirport : Ind Airport ; + fun LismoreQueenslandAirport : Ind Airport ; -fun LisalaAirport : Ind Airport ; + fun LissadelWesternAustraliaAirport : Ind Airport ; -fun LishanAirport : Ind Airport ; + fun LittleAmericaUTAirport : Ind Airport ; -fun LismoreQueenslandAirport : Ind Airport ; + fun LittleCaymenMunicipalAirStripLittleCaymanAirport : Ind Airport ; -fun LissadelWesternAustraliaAirport : Ind Airport ; + fun LittleFallsMorrisonCountyMNAirport : Ind Airport ; -fun LittleAmericaUTAirport : Ind Airport ; + fun LittleGrandRapidsMBAirport : Ind Airport ; -fun LittleCaymenMunicipalAirStripLittleCaymanAirport : Ind Airport ; + fun LittleNaukatiAKAirport : Ind Airport ; -fun LittleFallsMorrisonCountyMNAirport : Ind Airport ; + fun LittlePortWalkerAKAirport : Ind Airport ; -fun LittleGrandRapidsMBAirport : Ind Airport ; + fun LittleRockAirForceBaseARAirport : Ind Airport ; -fun LittleNaukatiAKAirport : Ind Airport ; + fun LiuzhouAirport : Ind Airport ; -fun LittlePortWalkerAKAirport : Ind Airport ; + fun LivermoreMunicipalCAAirport : Ind Airport ; -fun LittleRockAirForceBaseARAirport : Ind Airport ; + fun LiverpoolNSAirport : Ind Airport ; -fun LiuzhouAirport : Ind Airport ; + fun LivingoodAKAirport : Ind Airport ; -fun LivermoreMunicipalCAAirport : Ind Airport ; + fun LivingstoneMarambaAirport : Ind Airport ; -fun LiverpoolNSAirport : Ind Airport ; + fun LizardIslandQueenslandAirport : Ind Airport ; -fun LivingoodAKAirport : Ind Airport ; + fun LloydminsterABAirport : Ind Airport ; -fun LivingstoneMarambaAirport : Ind Airport ; + fun LoTungAirport : Ind Airport ; -fun LizardIslandQueenslandAirport : Ind Airport ; + fun LoaniAirport : Ind Airport ; -fun LloydminsterABAirport : Ind Airport ; + fun LobatzeAirport : Ind Airport ; -fun LoTungAirport : Ind Airport ; + fun LocarnoAirport : Ind Airport ; -fun LoaniAirport : Ind Airport ; + fun LochgilpheadAirport : Ind Airport ; -fun LobatzeAirport : Ind Airport ; + fun LockSouthAustraliaAirport : Ind Airport ; -fun LocarnoAirport : Ind Airport ; + fun LodarAirport : Ind Airport ; -fun LochgilpheadAirport : Ind Airport ; + fun LodjaAirport : Ind Airport ; -fun LockSouthAustraliaAirport : Ind Airport ; + fun LodwarAirport : Ind Airport ; -fun LodarAirport : Ind Airport ; + fun LoeiAirport : Ind Airport ; -fun LodjaAirport : Ind Airport ; + fun LoenAirport : Ind Airport ; -fun LodwarAirport : Ind Airport ; + fun LoganCacheUTAirport : Ind Airport ; -fun LoeiAirport : Ind Airport ; + fun LoikawAirport : Ind Airport ; -fun LoenAirport : Ind Airport ; + fun LojaAirport : Ind Airport ; -fun LoganCacheUTAirport : Ind Airport ; + fun LolyangalaniAirport : Ind Airport ; -fun LoikawAirport : Ind Airport ; + fun LompocCAAirport : Ind Airport ; -fun LojaAirport : Ind Airport ; + fun LondolovitAirport : Ind Airport ; -fun LolyangalaniAirport : Ind Airport ; + fun LondonCorbinAirportMageeFieldKYAirport : Ind Airport ; -fun LompocCAAirport : Ind Airport ; + fun LondonONAirport : Ind Airport ; -fun LondolovitAirport : Ind Airport ; + fun LondrinaPRAirport : Ind Airport ; -fun LondonCorbinAirportMageeFieldKYAirport : Ind Airport ; + fun LondroreAirport : Ind Airport ; -fun LondonONAirport : Ind Airport ; + fun LonelyAFSAKAirport : Ind Airport ; -fun LondrinaPRAirport : Ind Airport ; + fun LonesomePineVAAirport : Ind Airport ; -fun LondroreAirport : Ind Airport ; + fun LongApungAirport : Ind Airport ; -fun LonelyAFSAKAirport : Ind Airport ; + fun LongBeachAirportDaughertyFieldCAAirport : Ind Airport ; -fun LonesomePineVAAirport : Ind Airport ; + fun LongIslandAKAirport : Ind Airport ; -fun LongApungAirport : Ind Airport ; + fun LongLamaAirport : Ind Airport ; -fun LongBeachAirportDaughertyFieldCAAirport : Ind Airport ; + fun LongLellangAirport : Ind Airport ; -fun LongIslandAKAirport : Ind Airport ; + fun LongSemadoSarawakAirport : Ind Airport ; -fun LongLamaAirport : Ind Airport ; + fun LongSeridanSarawakAirport : Ind Airport ; -fun LongLellangAirport : Ind Airport ; + fun LongSukangAirport : Ind Airport ; -fun LongSemadoSarawakAirport : Ind Airport ; + fun LongXuyenAirport : Ind Airport ; -fun LongSeridanSarawakAirport : Ind Airport ; + fun LonganaAirport : Ind Airport ; -fun LongSukangAirport : Ind Airport ; + fun LongbawanAirport : Ind Airport ; -fun LongXuyenAirport : Ind Airport ; + fun LongpointLakeWaterAerodromeONAirport : Ind Airport ; -fun LonganaAirport : Ind Airport ; + fun LongreachQueenslandAirport : Ind Airport ; -fun LongbawanAirport : Ind Airport ; + fun LongstaffBluffNTAirport : Ind Airport ; -fun LongpointLakeWaterAerodromeONAirport : Ind Airport ; + fun LongviewWAAirport : Ind Airport ; -fun LongreachQueenslandAirport : Ind Airport ; + fun LongyearbyenSvalbardAirport : Ind Airport ; -fun LongstaffBluffNTAirport : Ind Airport ; + fun LopezIslandWAAirport : Ind Airport ; -fun LongviewWAAirport : Ind Airport ; + fun LopezdeMicayAirport : Ind Airport ; -fun LongyearbyenSvalbardAirport : Ind Airport ; + fun LoqueAirport : Ind Airport ; -fun LopezIslandWAAirport : Ind Airport ; + fun LoraLaiAirport : Ind Airport ; -fun LopezdeMicayAirport : Ind Airport ; + fun LordHoweIslandNewSouthWalesAirport : Ind Airport ; -fun LoqueAirport : Ind Airport ; + fun LordsburgMunicipalNMAirport : Ind Airport ; -fun LoraLaiAirport : Ind Airport ; + fun LorengauManusIslandAirport : Ind Airport ; -fun LordHoweIslandNewSouthWalesAirport : Ind Airport ; + fun LoretoAirport : Ind Airport ; -fun LordsburgMunicipalNMAirport : Ind Airport ; + fun LoricaAirport : Ind Airport ; -fun LorengauManusIslandAirport : Ind Airport ; + fun LoringAirForceBaseMEAirport : Ind Airport ; -fun LoretoAirport : Ind Airport ; + fun LoringSeaplaneBaseAKAirport : Ind Airport ; -fun LoricaAirport : Ind Airport ; + fun LorrachAirport : Ind Airport ; -fun LoringAirForceBaseMEAirport : Ind Airport ; + fun LorraineQueenslandAirport : Ind Airport ; -fun LoringSeaplaneBaseAKAirport : Ind Airport ; + fun LosAlamosNMAirport : Ind Airport ; -fun LorrachAirport : Ind Airport ; + fun LosAngelesAirport : Ind Airport ; -fun LorraineQueenslandAirport : Ind Airport ; + fun LosAngelesInternationalCAAirport : Ind Airport ; -fun LosAlamosNMAirport : Ind Airport ; + fun LosBanosMunicipalCAAirport : Ind Airport ; -fun LosAngelesAirport : Ind Airport ; + fun LosCabosSanJosedelCaboAirport : Ind Airport ; -fun LosAngelesInternationalCAAirport : Ind Airport ; + fun LosChilesAirport : Ind Airport ; -fun LosBanosMunicipalCAAirport : Ind Airport ; + fun LosMenucosAirport : Ind Airport ; -fun LosCabosSanJosedelCaboAirport : Ind Airport ; + fun LosMochisAirport : Ind Airport ; -fun LosChilesAirport : Ind Airport ; + fun LosRodeosCanaryIslandsAirport : Ind Airport ; -fun LosMenucosAirport : Ind Airport ; + fun LosRoquesAirport : Ind Airport ; -fun LosMochisAirport : Ind Airport ; + fun LoshitsaMinskAirport : Ind Airport ; -fun LosRodeosCanaryIslandsAirport : Ind Airport ; + fun LosinjAirport : Ind Airport ; -fun LosRoquesAirport : Ind Airport ; + fun LostHarborAKAirport : Ind Airport ; -fun LoshitsaMinskAirport : Ind Airport ; + fun LostNationOHAirport : Ind Airport ; -fun LosinjAirport : Ind Airport ; + fun LostRiver1AKAirport : Ind Airport ; -fun LostHarborAKAirport : Ind Airport ; + fun LosuiaAirport : Ind Airport ; -fun LostNationOHAirport : Ind Airport ; + fun LotusvaleQueenslandAirport : Ind Airport ; -fun LostRiver1AKAirport : Ind Airport ; + fun LouisTrichardtAirport : Ind Airport ; -fun LosuiaAirport : Ind Airport ; + fun LouisaCountyAirportFreemanFieldVAAirport : Ind Airport ; -fun LotusvaleQueenslandAirport : Ind Airport ; + fun LouisvilleWinstonCountyMSAirport : Ind Airport ; -fun LouisTrichardtAirport : Ind Airport ; + fun LovelandCOAirport : Ind Airport ; -fun LouisaCountyAirportFreemanFieldVAAirport : Ind Airport ; + fun LowaiAirport : Ind Airport ; -fun LouisvilleWinstonCountyMSAirport : Ind Airport ; + fun LoweArmyHeliportALAirport : Ind Airport ; -fun LovelandCOAirport : Ind Airport ; + fun LtWarrenEatonNYAirport : Ind Airport ; -fun LowaiAirport : Ind Airport ; + fun LuaboAirport : Ind Airport ; -fun LoweArmyHeliportALAirport : Ind Airport ; + fun LuangNamthaAirport : Ind Airport ; -fun LtWarrenEatonNYAirport : Ind Airport ; + fun LuangPrabangAirport : Ind Airport ; -fun LuaboAirport : Ind Airport ; + fun LuauAirport : Ind Airport ; -fun LuangNamthaAirport : Ind Airport ; + fun LubangoSadaBandeiraAirport : Ind Airport ; -fun LuangPrabangAirport : Ind Airport ; + fun LubbockInternationalTXAirport : Ind Airport ; -fun LuauAirport : Ind Airport ; + fun LuccaAirport : Ind Airport ; -fun LubangoSadaBandeiraAirport : Ind Airport ; + fun LucenecAirport : Ind Airport ; -fun LubbockInternationalTXAirport : Ind Airport ; + fun LucerneAirport : Ind Airport ; -fun LuccaAirport : Ind Airport ; + fun LucknowAirport : Ind Airport ; -fun LucenecAirport : Ind Airport ; + fun LudhianaAirport : Ind Airport ; -fun LucerneAirport : Ind Airport ; + fun LuebeckLubeckAirport : Ind Airport ; -fun LucknowAirport : Ind Airport ; + fun LuederitzLuderitzAirport : Ind Airport ; -fun LudhianaAirport : Ind Airport ; + fun LuenaLusoAirport : Ind Airport ; -fun LuebeckLubeckAirport : Ind Airport ; + fun LughGananeAirport : Ind Airport ; -fun LuederitzLuderitzAirport : Ind Airport ; + fun LuhanskLuhanskAirport : Ind Airport ; -fun LuenaLusoAirport : Ind Airport ; + fun LuisMunozMarinInternationalSanJuanAirport : Ind Airport ; -fun LughGananeAirport : Ind Airport ; + fun LuizaAirport : Ind Airport ; -fun LuhanskLuhanskAirport : Ind Airport ; + fun LukeAirForceBaseAZAirport : Ind Airport ; -fun LuisMunozMarinInternationalSanJuanAirport : Ind Airport ; + fun LuklaAirport : Ind Airport ; -fun LuizaAirport : Ind Airport ; + fun LukuluAirport : Ind Airport ; -fun LukeAirForceBaseAZAirport : Ind Airport ; + fun LumbertonMunicipalNCAirport : Ind Airport ; -fun LuklaAirport : Ind Airport ; + fun LumiAirport : Ind Airport ; -fun LukuluAirport : Ind Airport ; + fun LumidPauAirport : Ind Airport ; -fun LumbertonMunicipalNCAirport : Ind Airport ; + fun LunyukAirport : Ind Airport ; -fun LumiAirport : Ind Airport ; + fun LuoyangAirport : Ind Airport ; -fun LumidPauAirport : Ind Airport ; + fun LuoziAirport : Ind Airport ; -fun LunyukAirport : Ind Airport ; + fun LupepauuVavauAirport : Ind Airport ; -fun LuoyangAirport : Ind Airport ; + fun LupinNTAirport : Ind Airport ; -fun LuoziAirport : Ind Airport ; + fun LuqaMaltaAirport : Ind Airport ; -fun LupepauuVavauAirport : Ind Airport ; + fun LusakaInternationalLusakaAirport : Ind Airport ; -fun LupinNTAirport : Ind Airport ; + fun LusamboAirport : Ind Airport ; -fun LuqaMaltaAirport : Ind Airport ; + fun LusangaAirport : Ind Airport ; -fun LusakaInternationalLusakaAirport : Ind Airport ; + fun LusikisikiAirport : Ind Airport ; -fun LusamboAirport : Ind Airport ; + fun LuskMunicipalWYAirport : Ind Airport ; -fun LusangaAirport : Ind Airport ; + fun LutonEnglandAirport : Ind Airport ; -fun LusikisikiAirport : Ind Airport ; + fun LutskVolynAirport : Ind Airport ; -fun LuskMunicipalWYAirport : Ind Airport ; + fun LuwukAirport : Ind Airport ; -fun LutonEnglandAirport : Ind Airport ; + fun LuxiAirport : Ind Airport ; -fun LutskVolynAirport : Ind Airport ; + fun LuxorAirport : Ind Airport ; -fun LuwukAirport : Ind Airport ; + fun LuzhouSichuanAirport : Ind Airport ; -fun LuxiAirport : Ind Airport ; + fun LvivLwowLvovAirport : Ind Airport ; -fun LuxorAirport : Ind Airport ; + fun LyallHarbourBCAirport : Ind Airport ; -fun LuzhouSichuanAirport : Ind Airport ; + fun LyckseleAirport : Ind Airport ; -fun LvivLwowLvovAirport : Ind Airport ; + fun LyddAirport : Ind Airport ; -fun LyallHarbourBCAirport : Ind Airport ; + fun LynchburgRegionalAirportPrestonGlennFieldVAAirport : Ind Airport ; -fun LyckseleAirport : Ind Airport ; + fun LyndhurstQueenslandAirport : Ind Airport ; -fun LyddAirport : Ind Airport ; + fun LynehamRAFStationEnglandAirport : Ind Airport ; -fun LynchburgRegionalAirportPrestonGlennFieldVAAirport : Ind Airport ; + fun LynnLakeMBAirport : Ind Airport ; -fun LyndhurstQueenslandAirport : Ind Airport ; + fun LyonsRiceCountyMunicipalKSAirport : Ind Airport ; -fun LynehamRAFStationEnglandAirport : Ind Airport ; + fun LyttonBCAirport : Ind Airport ; -fun LynnLakeMBAirport : Ind Airport ; + fun MBalaAirport : Ind Airport ; -fun LyonsRiceCountyMunicipalKSAirport : Ind Airport ; + fun MGrahamClarkMOAirport : Ind Airport ; -fun LyttonBCAirport : Ind Airport ; + fun MVengueFrancevilleAirport : Ind Airport ; -fun MBalaAirport : Ind Airport ; + fun MaanAirport : Ind Airport ; -fun MGrahamClarkMOAirport : Ind Airport ; + fun MabarumaAirport : Ind Airport ; -fun MVengueFrancevilleAirport : Ind Airport ; + fun MabuiagIslandQueenslandAirport : Ind Airport ; -fun MaanAirport : Ind Airport ; + fun MacDillAirForceBaseFLAirport : Ind Airport ; -fun MabarumaAirport : Ind Airport ; + fun MacDonaldDownsAirport : Ind Airport ; -fun MabuiagIslandQueenslandAirport : Ind Airport ; + fun MacMillanPassAerodromeYTAirport : Ind Airport ; -fun MacDillAirForceBaseFLAirport : Ind Airport ; + fun MacaeRJAirport : Ind Airport ; -fun MacDonaldDownsAirport : Ind Airport ; + fun MacanalAirport : Ind Airport ; -fun MacMillanPassAerodromeYTAirport : Ind Airport ; + fun MacapaPAAirport : Ind Airport ; -fun MacaeRJAirport : Ind Airport ; + fun MacasAirport : Ind Airport ; -fun MacanalAirport : Ind Airport ; + fun MacauMacaoAirport : Ind Airport ; -fun MacapaPAAirport : Ind Airport ; + fun MacdonaldCartierInternationalONAirport : Ind Airport ; -fun MacasAirport : Ind Airport ; + fun MaceioALAirport : Ind Airport ; -fun MacauMacaoAirport : Ind Airport ; + fun MacentaAirport : Ind Airport ; -fun MacdonaldCartierInternationalONAirport : Ind Airport ; + fun MachalaAirport : Ind Airport ; -fun MaceioALAirport : Ind Airport ; + fun MachesneyILAirport : Ind Airport ; -fun MacentaAirport : Ind Airport ; + fun MackarInletNTAirport : Ind Airport ; -fun MachalaAirport : Ind Airport ; + fun MackayQueenslandAirport : Ind Airport ; -fun MachesneyILAirport : Ind Airport ; + fun MackenzieBCAirport : Ind Airport ; -fun MackarInletNTAirport : Ind Airport ; + fun MackinacIslandMIAirport : Ind Airport ; -fun MackayQueenslandAirport : Ind Airport ; + fun MacombMunicipalILAirport : Ind Airport ; -fun MackenzieBCAirport : Ind Airport ; + fun MactanInternationalMactanIslandAirport : Ind Airport ; -fun MackinacIslandMIAirport : Ind Airport ; + fun MadabaAirport : Ind Airport ; -fun MacombMunicipalILAirport : Ind Airport ; + fun MadangAirport : Ind Airport ; -fun MactanInternationalMactanIslandAirport : Ind Airport ; + fun MaderaMunicipalCAAirport : Ind Airport ; -fun MadabaAirport : Ind Airport ; + fun MadirovaloAirport : Ind Airport ; -fun MadangAirport : Ind Airport ; + fun MadisonCountyOHAirport : Ind Airport ; -fun MaderaMunicipalCAAirport : Ind Airport ; + fun MadisonMunicipalINAirport : Ind Airport ; -fun MadirovaloAirport : Ind Airport ; + fun MadisonMunicipalSDAirport : Ind Airport ; -fun MadisonCountyOHAirport : Ind Airport ; + fun MaeSotAirport : Ind Airport ; -fun MadisonMunicipalINAirport : Ind Airport ; + fun MaewoAirport : Ind Airport ; -fun MadisonMunicipalSDAirport : Ind Airport ; + fun MafekingAirport : Ind Airport ; -fun MaeSotAirport : Ind Airport ; + fun MafetengAirport : Ind Airport ; -fun MaewoAirport : Ind Airport ; + fun MafiaIslandAirport : Ind Airport ; -fun MafekingAirport : Ind Airport ; + fun MafraSCAirport : Ind Airport ; -fun MafetengAirport : Ind Airport ; + fun MaganjadaCostaAirport : Ind Airport ; -fun MafiaIslandAirport : Ind Airport ; + fun MaganqueAirport : Ind Airport ; -fun MafraSCAirport : Ind Airport ; + fun MagdalenaAirport : Ind Airport ; -fun MaganjadaCostaAirport : Ind Airport ; + fun MagnitogorskChelyabinskAirport : Ind Airport ; -fun MaganqueAirport : Ind Airport ; + fun MagweAirport : Ind Airport ; -fun MagdalenaAirport : Ind Airport ; + fun MahanoroAirport : Ind Airport ; -fun MagnitogorskChelyabinskAirport : Ind Airport ; + fun MahdiaAirport : Ind Airport ; -fun MagweAirport : Ind Airport ; + fun MahendranagarAirport : Ind Airport ; -fun MahanoroAirport : Ind Airport ; + fun MahilyowMogilevMahiliowAirport : Ind Airport ; -fun MahdiaAirport : Ind Airport ; + fun MahonMenorcaBalearicIslandsAirport : Ind Airport ; -fun MahendranagarAirport : Ind Airport ; + fun MaianaAirport : Ind Airport ; -fun MahilyowMogilevMahiliowAirport : Ind Airport ; + fun MaicaoAirport : Ind Airport ; -fun MahonMenorcaBalearicIslandsAirport : Ind Airport ; + fun MaiduguriAirport : Ind Airport ; -fun MaianaAirport : Ind Airport ; + fun MaikwakAirport : Ind Airport ; -fun MaicaoAirport : Ind Airport ; + fun MaimanaAirport : Ind Airport ; -fun MaiduguriAirport : Ind Airport ; + fun MainDuckONAirport : Ind Airport ; -fun MaikwakAirport : Ind Airport ; + fun MainStationDowntownStuttgartAirport : Ind Airport ; -fun MaimanaAirport : Ind Airport ; + fun MainoruNorthernTerritoryAirport : Ind Airport ; -fun MainDuckONAirport : Ind Airport ; + fun MaintiranoAirport : Ind Airport ; -fun MainStationDowntownStuttgartAirport : Ind Airport ; + fun MainzAirport : Ind Airport ; -fun MainoruNorthernTerritoryAirport : Ind Airport ; + fun MaioMaioAirport : Ind Airport ; -fun MaintiranoAirport : Ind Airport ; + fun MairiporuSPAirport : Ind Airport ; -fun MainzAirport : Ind Airport ; + fun MaitlandNewSouthWalesAirport : Ind Airport ; -fun MaioMaioAirport : Ind Airport ; + fun MajiAirport : Ind Airport ; -fun MairiporuSPAirport : Ind Airport ; + fun MajkinAirport : Ind Airport ; -fun MaitlandNewSouthWalesAirport : Ind Airport ; + fun MajmaAirport : Ind Airport ; -fun MajiAirport : Ind Airport ; + fun MakaleAirport : Ind Airport ; -fun MajkinAirport : Ind Airport ; + fun MakariosNicosiaAirport : Ind Airport ; -fun MajmaAirport : Ind Airport ; + fun MakemoAirport : Ind Airport ; -fun MakaleAirport : Ind Airport ; + fun MakhachkalaDagestanAirport : Ind Airport ; -fun MakariosNicosiaAirport : Ind Airport ; + fun MakinAirport : Ind Airport ; -fun MakemoAirport : Ind Airport ; + fun MakiniAirport : Ind Airport ; -fun MakhachkalaDagestanAirport : Ind Airport ; + fun MakkahAirport : Ind Airport ; -fun MakinAirport : Ind Airport ; + fun MakkovikNFAirport : Ind Airport ; -fun MakiniAirport : Ind Airport ; + fun MakokouAirport : Ind Airport ; -fun MakkahAirport : Ind Airport ; + fun MakouaAirport : Ind Airport ; -fun MakkovikNFAirport : Ind Airport ; + fun MakungAirport : Ind Airport ; -fun MakokouAirport : Ind Airport ; + fun MakurdiAirport : Ind Airport ; -fun MakouaAirport : Ind Airport ; + fun MalabangAirport : Ind Airport ; -fun MakungAirport : Ind Airport ; + fun MalaboAirport : Ind Airport ; -fun MakurdiAirport : Ind Airport ; + fun MaladCityIDAirport : Ind Airport ; -fun MalabangAirport : Ind Airport ; + fun MalaimbandyAirport : Ind Airport ; -fun MalaboAirport : Ind Airport ; + fun MalakalAirport : Ind Airport ; -fun MaladCityIDAirport : Ind Airport ; + fun MalalauaAirport : Ind Airport ; -fun MalaimbandyAirport : Ind Airport ; + fun MalangAirport : Ind Airport ; -fun MalakalAirport : Ind Airport ; + fun MalangeMalanjeAirport : Ind Airport ; -fun MalalauaAirport : Ind Airport ; + fun MalargueAirport : Ind Airport ; -fun MalangAirport : Ind Airport ; + fun MalatupoAirport : Ind Airport ; -fun MalangeMalanjeAirport : Ind Airport ; + fun MalatvaAirport : Ind Airport ; -fun MalargueAirport : Ind Airport ; + fun MalayAirport : Ind Airport ; -fun MalatupoAirport : Ind Airport ; + fun MalcolmMcKinnonGAAirport : Ind Airport ; -fun MalatvaAirport : Ind Airport ; + fun MaldaAirport : Ind Airport ; -fun MalayAirport : Ind Airport ; + fun MaldenMunicipalMOAirport : Ind Airport ; -fun MalcolmMcKinnonGAAirport : Ind Airport ; + fun MaleHululeAirport : Ind Airport ; -fun MaldaAirport : Ind Airport ; + fun MalekolonAirport : Ind Airport ; -fun MaldenMunicipalMOAirport : Ind Airport ; + fun MalianaAirport : Ind Airport ; -fun MaleHululeAirport : Ind Airport ; + fun MalindiAirport : Ind Airport ; -fun MalekolonAirport : Ind Airport ; + fun MallacootaVictoriaAirport : Ind Airport ; -fun MalianaAirport : Ind Airport ; + fun MalmoAirport : Ind Airport ; -fun MalindiAirport : Ind Airport ; + fun MaloelapMaloelapAirport : Ind Airport ; -fun MallacootaVictoriaAirport : Ind Airport ; + fun MalololailaiAirport : Ind Airport ; -fun MalmoAirport : Ind Airport ; + fun MalpensaMilanoMilanAirport : Ind Airport ; -fun MaloelapMaloelapAirport : Ind Airport ; + fun MaltaMTAirport : Ind Airport ; -fun MalololailaiAirport : Ind Airport ; + fun MamaiAirport : Ind Airport ; -fun MalpensaMilanoMilanAirport : Ind Airport ; + fun MamburaoAirport : Ind Airport ; -fun MaltaMTAirport : Ind Airport ; + fun MamfeAirport : Ind Airport ; -fun MamaiAirport : Ind Airport ; + fun MamitupoAirport : Ind Airport ; -fun MamburaoAirport : Ind Airport ; + fun MammothLakesCAAirport : Ind Airport ; -fun MamfeAirport : Ind Airport ; + fun MampikonyAirport : Ind Airport ; -fun MamitupoAirport : Ind Airport ; + fun MamujuAirport : Ind Airport ; -fun MammothLakesCAAirport : Ind Airport ; + fun ManAirport : Ind Airport ; -fun MampikonyAirport : Ind Airport ; + fun ManaAirport : Ind Airport ; -fun MamujuAirport : Ind Airport ; + fun ManakaraAirport : Ind Airport ; -fun ManAirport : Ind Airport ; + fun MananaraAirport : Ind Airport ; -fun ManaAirport : Ind Airport ; + fun ManangAirport : Ind Airport ; -fun ManakaraAirport : Ind Airport ; + fun MananjaryAirport : Ind Airport ; -fun MananaraAirport : Ind Airport ; + fun ManareAirport : Ind Airport ; -fun ManangAirport : Ind Airport ; + fun ManassasMunicipalAirportHarryPDavisFieldVAAirport : Ind Airport ; -fun MananjaryAirport : Ind Airport ; + fun ManateeAirport : Ind Airport ; -fun ManareAirport : Ind Airport ; + fun ManaungAirport : Ind Airport ; -fun ManassasMunicipalAirportHarryPDavisFieldVAAirport : Ind Airport ; + fun ManchesterNHAirport : Ind Airport ; -fun ManateeAirport : Ind Airport ; + fun MandabeAirport : Ind Airport ; -fun ManaungAirport : Ind Airport ; + fun MandalayAirport : Ind Airport ; -fun ManchesterNHAirport : Ind Airport ; + fun ManderaAirport : Ind Airport ; -fun MandabeAirport : Ind Airport ; + fun MandevilleAirport : Ind Airport ; -fun MandalayAirport : Ind Airport ; + fun MandoraWesternAustraliaAirport : Ind Airport ; -fun ManderaAirport : Ind Airport ; + fun MandritsaraAirport : Ind Airport ; -fun MandevilleAirport : Ind Airport ; + fun ManeaAirport : Ind Airport ; -fun MandoraWesternAustraliaAirport : Ind Airport ; + fun ManetaiAirport : Ind Airport ; -fun MandritsaraAirport : Ind Airport ; + fun MangaAirport : Ind Airport ; -fun ManeaAirport : Ind Airport ; + fun MangaiaAirport : Ind Airport ; -fun ManetaiAirport : Ind Airport ; + fun MangochiAirport : Ind Airport ; -fun MangaAirport : Ind Airport ; + fun MangoleAirport : Ind Airport ; -fun MangaiaAirport : Ind Airport ; + fun MangroveCayAirport : Ind Airport ; -fun MangochiAirport : Ind Airport ; + fun MangunjayaAirport : Ind Airport ; -fun MangoleAirport : Ind Airport ; + fun ManhattanMunicipalKSAirport : Ind Airport ; -fun MangroveCayAirport : Ind Airport ; + fun ManicoreAMAirport : Ind Airport ; -fun MangunjayaAirport : Ind Airport ; + fun ManihiAirport : Ind Airport ; -fun ManhattanMunicipalKSAirport : Ind Airport ; + fun ManihikiIslandAirport : Ind Airport ; -fun ManicoreAMAirport : Ind Airport ; + fun ManilaAirport : Ind Airport ; -fun ManihiAirport : Ind Airport ; + fun ManilaMunicipalARAirport : Ind Airport ; -fun ManihikiIslandAirport : Ind Airport ; + fun ManingridaNorthernTerritoryAirport : Ind Airport ; -fun ManilaAirport : Ind Airport ; + fun ManisteeCountyBlackerMIAirport : Ind Airport ; -fun ManilaMunicipalARAirport : Ind Airport ; + fun ManitoulinONAirport : Ind Airport ; -fun ManingridaNorthernTerritoryAirport : Ind Airport ; + fun ManitouwadgeONAirport : Ind Airport ; -fun ManisteeCountyBlackerMIAirport : Ind Airport ; + fun ManitowaningAerodromeONAirport : Ind Airport ; -fun ManitoulinONAirport : Ind Airport ; + fun ManitowocCountyWIAirport : Ind Airport ; -fun ManitouwadgeONAirport : Ind Airport ; + fun ManiwakiQCAirport : Ind Airport ; -fun ManitowaningAerodromeONAirport : Ind Airport ; + fun ManizalesAirport : Ind Airport ; -fun ManitowocCountyWIAirport : Ind Airport ; + fun ManjaAirport : Ind Airport ; -fun ManiwakiQCAirport : Ind Airport ; + fun ManjimupWesternAustraliaAirport : Ind Airport ; -fun ManizalesAirport : Ind Airport ; + fun MankatoMunicipalMNAirport : Ind Airport ; -fun ManjaAirport : Ind Airport ; + fun ManleyHotSpringsAKAirport : Ind Airport ; -fun ManjimupWesternAustraliaAirport : Ind Airport ; + fun MannersCreekNorthernTerritoryAirport : Ind Airport ; -fun MankatoMunicipalMNAirport : Ind Airport ; + fun MannheimAirport : Ind Airport ; -fun ManleyHotSpringsAKAirport : Ind Airport ; + fun ManokwariAirport : Ind Airport ; -fun MannersCreekNorthernTerritoryAirport : Ind Airport ; + fun ManonoAirport : Ind Airport ; -fun MannheimAirport : Ind Airport ; + fun MansaAirport : Ind Airport ; -fun ManokwariAirport : Ind Airport ; + fun MansfieldLahmMunicipalOHAirport : Ind Airport ; -fun ManonoAirport : Ind Airport ; + fun MantiEphraimUTAirport : Ind Airport ; -fun MansaAirport : Ind Airport ; + fun ManumuAirport : Ind Airport ; -fun MansfieldLahmMunicipalOHAirport : Ind Airport ; + fun ManzanilloAirport : Ind Airport ; -fun MantiEphraimUTAirport : Ind Airport ; + fun MaotaAirport : Ind Airport ; -fun ManumuAirport : Ind Airport ; + fun MapleBayBCAirport : Ind Airport ; -fun ManzanilloAirport : Ind Airport ; + fun MapodaAirport : Ind Airport ; -fun MaotaAirport : Ind Airport ; + fun MapuaAirport : Ind Airport ; -fun MapleBayBCAirport : Ind Airport ; + fun MaputoAirport : Ind Airport ; -fun MapodaAirport : Ind Airport ; + fun MaquinchaoAirport : Ind Airport ; -fun MapuaAirport : Ind Airport ; + fun MaquoketaMunicipalIAAirport : Ind Airport ; -fun MaputoAirport : Ind Airport ; + fun MaraLodgesAirport : Ind Airport ; -fun MaquinchaoAirport : Ind Airport ; + fun MarabaPAAirport : Ind Airport ; -fun MaquoketaMunicipalIAAirport : Ind Airport ; + fun MaracayAirport : Ind Airport ; -fun MaraLodgesAirport : Ind Airport ; + fun MaradiAirport : Ind Airport ; -fun MarabaPAAirport : Ind Airport ; + fun MarakeiAirport : Ind Airport ; -fun MaracayAirport : Ind Airport ; + fun MaramuniAirport : Ind Airport ; -fun MaradiAirport : Ind Airport ; + fun MarathonFLAirport : Ind Airport ; -fun MarakeiAirport : Ind Airport ; + fun MarathonONAirport : Ind Airport ; -fun MaramuniAirport : Ind Airport ; + fun MarauAirport : Ind Airport ; -fun MarathonFLAirport : Ind Airport ; + fun MarawakaAirport : Ind Airport ; -fun MarathonONAirport : Ind Airport ; + fun MarbellaAirport : Ind Airport ; -fun MarauAirport : Ind Airport ; + fun MarbleBarWesternAustraliaAirport : Ind Airport ; -fun MarawakaAirport : Ind Airport ; + fun MarbleCanyonAZAirport : Ind Airport ; -fun MarbellaAirport : Ind Airport ; + fun MarcalaAirport : Ind Airport ; -fun MarbleBarWesternAustraliaAirport : Ind Airport ; + fun MarchAirForceBaseCAAirport : Ind Airport ; -fun MarbleCanyonAZAirport : Ind Airport ; + fun MarcoIslandFLAirport : Ind Airport ; -fun MarcalaAirport : Ind Airport ; + fun MarcoPoloTesseraVeneziaVeniceAirport : Ind Airport ; -fun MarchAirForceBaseCAAirport : Ind Airport ; + fun MarcusIslandsAirport : Ind Airport ; -fun MarcoIslandFLAirport : Ind Airport ; + fun MardelPlataAirport : Ind Airport ; -fun MarcoPoloTesseraVeneziaVeniceAirport : Ind Airport ; + fun MareLoyaltyIslandsAirport : Ind Airport ; -fun MarcusIslandsAirport : Ind Airport ; + fun MarebAirport : Ind Airport ; -fun MardelPlataAirport : Ind Airport ; + fun MarfaMunicipalTXAirport : Ind Airport ; -fun MareLoyaltyIslandsAirport : Ind Airport ; + fun MargaretRiverWesternAustraliaAirport : Ind Airport ; -fun MarebAirport : Ind Airport ; + fun MargarinaAirport : Ind Airport ; -fun MarfaMunicipalTXAirport : Ind Airport ; + fun MargaritaIslandAirport : Ind Airport ; -fun MargaretRiverWesternAustraliaAirport : Ind Airport ; + fun MargateAirport : Ind Airport ; -fun MargarinaAirport : Ind Airport ; + fun MargueriteBayAKAirport : Ind Airport ; -fun MargaritaIslandAirport : Ind Airport ; + fun MarianskeLazneAirport : Ind Airport ; -fun MargateAirport : Ind Airport ; + fun MariborAirport : Ind Airport ; -fun MargueriteBayAKAirport : Ind Airport ; + fun MaricourtAirstripQCAirport : Ind Airport ; -fun MarianskeLazneAirport : Ind Airport ; + fun MariehamnMaarianhaminaAirport : Ind Airport ; -fun MariborAirport : Ind Airport ; + fun MarignaneProvenceMarseilleAirport : Ind Airport ; -fun MaricourtAirstripQCAirport : Ind Airport ; + fun MariliaSPAirport : Ind Airport ; -fun MariehamnMaarianhaminaAirport : Ind Airport ; + fun MarinadiMassaAirport : Ind Airport ; -fun MarignaneProvenceMarseilleAirport : Ind Airport ; + fun MarinduqueAirport : Ind Airport ; -fun MariliaSPAirport : Ind Airport ; + fun MarineCorpsAirFacilityHonshuIsAirport : Ind Airport ; -fun MarinadiMassaAirport : Ind Airport ; + fun MaringaPRAirport : Ind Airport ; -fun MarinduqueAirport : Ind Airport ; + fun MarionDownsQueenslandAirport : Ind Airport ; -fun MarineCorpsAirFacilityHonshuIsAirport : Ind Airport ; + fun MarionMunicipalINAirport : Ind Airport ; -fun MaringaPRAirport : Ind Airport ; + fun MarionMunicipalOHAirport : Ind Airport ; -fun MarionDownsQueenslandAirport : Ind Airport ; + fun MaripasoulaAirport : Ind Airport ; -fun MarionMunicipalINAirport : Ind Airport ; + fun MariquitaAirport : Ind Airport ; -fun MarionMunicipalOHAirport : Ind Airport ; + fun MariscalSucreQuitoAirport : Ind Airport ; -fun MaripasoulaAirport : Ind Airport ; + fun MariupolZhdanovDonetskAirport : Ind Airport ; -fun MariquitaAirport : Ind Airport ; + fun MarlaSouthAustraliaAirport : Ind Airport ; -fun MariscalSucreQuitoAirport : Ind Airport ; + fun MarlboroughMAAirport : Ind Airport ; -fun MariupolZhdanovDonetskAirport : Ind Airport ; + fun MarmulAirport : Ind Airport ; -fun MarlaSouthAustraliaAirport : Ind Airport ; + fun MaroantsetraAirport : Ind Airport ; -fun MarlboroughMAAirport : Ind Airport ; + fun MaronAirport : Ind Airport ; -fun MarmulAirport : Ind Airport ; + fun MaroochydoreSunshineCoastQueenslandAirport : Ind Airport ; -fun MaroantsetraAirport : Ind Airport ; + fun MarquaNorthernTerritoryAirport : Ind Airport ; -fun MaronAirport : Ind Airport ; + fun MarquetteCountyMIAirport : Ind Airport ; -fun MaroochydoreSunshineCoastQueenslandAirport : Ind Airport ; + fun MarreeSouthAustraliaAirport : Ind Airport ; -fun MarquaNorthernTerritoryAirport : Ind Airport ; + fun MarromeuAirport : Ind Airport ; -fun MarquetteCountyMIAirport : Ind Airport ; + fun MarsaBregaAirport : Ind Airport ; -fun MarreeSouthAustraliaAirport : Ind Airport ; + fun MarsaMatrumMersaMatruhAirport : Ind Airport ; -fun MarromeuAirport : Ind Airport ; + fun MarsabitAirport : Ind Airport ; -fun MarsaBregaAirport : Ind Airport ; + fun MarshHarbourAbacoAirport : Ind Airport ; -fun MarsaMatrumMersaMatruhAirport : Ind Airport ; + fun MarshallAKAirport : Ind Airport ; -fun MarsabitAirport : Ind Airport ; + fun MarshallIslandsInternationalMajuroAirport : Ind Airport ; -fun MarshHarbourAbacoAirport : Ind Airport ; + fun MarshallMemorialMunicipalMOAirport : Ind Airport ; -fun MarshallAKAirport : Ind Airport ; + fun MarshallMunicipalAirportRyanFieldMNAirport : Ind Airport ; -fun MarshallIslandsInternationalMajuroAirport : Ind Airport ; + fun MarshalltownMunicipalIAAirport : Ind Airport ; -fun MarshallMemorialMunicipalMOAirport : Ind Airport ; + fun MarshfieldMunicipalWIAirport : Ind Airport ; -fun MarshallMunicipalAirportRyanFieldMNAirport : Ind Airport ; + fun MarthasVineyardMAAirport : Ind Airport ; -fun MarshalltownMunicipalIAAirport : Ind Airport ; + fun MartinStateMDAirport : Ind Airport ; -fun MarshfieldMunicipalWIAirport : Ind Airport ; + fun MartindaleArmyAirFieldTexasArmyNationalGuardTXAirport : Ind Airport ; -fun MarthasVineyardMAAirport : Ind Airport ; + fun MarudiSarawakAirport : Ind Airport ; -fun MartinStateMDAirport : Ind Airport ; + fun MaryMaryAirport : Ind Airport ; -fun MartindaleArmyAirFieldTexasArmyNationalGuardTXAirport : Ind Airport ; + fun MaryboroughQueenslandAirport : Ind Airport ; -fun MarudiSarawakAirport : Ind Airport ; + fun MarysHarbourNFAirport : Ind Airport ; -fun MaryMaryAirport : Ind Airport ; + fun MasaAirport : Ind Airport ; -fun MaryboroughQueenslandAirport : Ind Airport ; + fun MasadaAirport : Ind Airport ; -fun MarysHarbourNFAirport : Ind Airport ; + fun MasalemboAirport : Ind Airport ; -fun MasaAirport : Ind Airport ; + fun MasambaAirport : Ind Airport ; -fun MasadaAirport : Ind Airport ; + fun MasasiAirport : Ind Airport ; -fun MasalemboAirport : Ind Airport ; + fun MasbateAirport : Ind Airport ; -fun MasambaAirport : Ind Airport ; + fun MascaraAirport : Ind Airport ; -fun MasasiAirport : Ind Airport ; + fun MashadAirport : Ind Airport ; -fun MasbateAirport : Ind Airport ; + fun MasiManimbaAirport : Ind Airport ; -fun MascaraAirport : Ind Airport ; + fun MasirahAirport : Ind Airport ; -fun MashadAirport : Ind Airport ; + fun MasonCityMunicipalIAAirport : Ind Airport ; -fun MasiManimbaAirport : Ind Airport ; + fun MasonCountyMIAirport : Ind Airport ; -fun MasirahAirport : Ind Airport ; + fun MassawaAirport : Ind Airport ; -fun MasonCityMunicipalIAAirport : Ind Airport ; + fun MassenaInternationalAirportRichardsFieldNYAirport : Ind Airport ; -fun MasonCountyMIAirport : Ind Airport ; + fun MassendjoAirport : Ind Airport ; -fun MassawaAirport : Ind Airport ; + fun MassettWaterAerodromeBCAirport : Ind Airport ; -fun MassenaInternationalAirportRichardsFieldNYAirport : Ind Airport ; + fun MastertonAirport : Ind Airport ; -fun MassendjoAirport : Ind Airport ; + fun MasticPointAirport : Ind Airport ; -fun MassettWaterAerodromeBCAirport : Ind Airport ; + fun MatadiAirport : Ind Airport ; -fun MastertonAirport : Ind Airport ; + fun MatagamiQCAirport : Ind Airport ; -fun MasticPointAirport : Ind Airport ; + fun MatagordaPeninsulaTXAirport : Ind Airport ; -fun MatadiAirport : Ind Airport ; + fun MataivaAirport : Ind Airport ; -fun MatagamiQCAirport : Ind Airport ; + fun MatakAirport : Ind Airport ; -fun MatagordaPeninsulaTXAirport : Ind Airport ; + fun MatamAirport : Ind Airport ; -fun MataivaAirport : Ind Airport ; + fun MatamataAirport : Ind Airport ; -fun MatakAirport : Ind Airport ; + fun MatamorosAirport : Ind Airport ; -fun MatamAirport : Ind Airport ; + fun MataneQCAirport : Ind Airport ; -fun MatamataAirport : Ind Airport ; + fun MatanzasAirport : Ind Airport ; -fun MatamorosAirport : Ind Airport ; + fun MatasaphaManziniAirport : Ind Airport ; -fun MataneQCAirport : Ind Airport ; + fun MatecanaPereiraAirport : Ind Airport ; -fun MatanzasAirport : Ind Airport ; + fun MatherAirForceBaseCAAirport : Ind Airport ; -fun MatasaphaManziniAirport : Ind Airport ; + fun MathisFieldTXAirport : Ind Airport ; -fun MatecanaPereiraAirport : Ind Airport ; + fun MatiAirport : Ind Airport ; -fun MatherAirForceBaseCAAirport : Ind Airport ; + fun MatoGrossoMGAirport : Ind Airport ; -fun MathisFieldTXAirport : Ind Airport ; + fun MatsaileAirport : Ind Airport ; -fun MatiAirport : Ind Airport ; + fun MatsumotoAirport : Ind Airport ; -fun MatoGrossoMGAirport : Ind Airport ; + fun MatsuyamaSkikokuAirport : Ind Airport ; -fun MatsaileAirport : Ind Airport ; + fun MatthewsRidgeAirport : Ind Airport ; -fun MatsumotoAirport : Ind Airport ; + fun MatupaAirport : Ind Airport ; -fun MatsuyamaSkikokuAirport : Ind Airport ; + fun MaturinAirport : Ind Airport ; -fun MatthewsRidgeAirport : Ind Airport ; + fun MaukeAirport : Ind Airport ; -fun MatupaAirport : Ind Airport ; + fun MaulmyineMoulmeinAirport : Ind Airport ; -fun MaturinAirport : Ind Airport ; + fun MaumereAirport : Ind Airport ; -fun MaukeAirport : Ind Airport ; + fun MaunAirport : Ind Airport ; -fun MaulmyineMoulmeinAirport : Ind Airport ; + fun MaupitiSocietyIslandsAirport : Ind Airport ; -fun MaumereAirport : Ind Airport ; + fun MauryCountyTNAirport : Ind Airport ; -fun MaunAirport : Ind Airport ; + fun MavesAirport : Ind Airport ; -fun MaupitiSocietyIslandsAirport : Ind Airport ; + fun MaxwellAirForceBaseALAirport : Ind Airport ; -fun MauryCountyTNAirport : Ind Airport ; + fun MayCreekAKAirport : Ind Airport ; -fun MavesAirport : Ind Airport ; + fun MayRiverAirport : Ind Airport ; -fun MaxwellAirForceBaseALAirport : Ind Airport ; + fun MayaguanaMayaguanaAirport : Ind Airport ; -fun MayCreekAKAirport : Ind Airport ; + fun MayajiquaAirport : Ind Airport ; -fun MayRiverAirport : Ind Airport ; + fun MayfaahAirport : Ind Airport ; -fun MayaguanaMayaguanaAirport : Ind Airport ; + fun MayoYTAirport : Ind Airport ; -fun MayajiquaAirport : Ind Airport ; + fun MayoumbaAirport : Ind Airport ; -fun MayfaahAirport : Ind Airport ; + fun MayportNavalAirStationFLAirport : Ind Airport ; -fun MayoYTAirport : Ind Airport ; + fun MazariSharifAirport : Ind Airport ; -fun MayoumbaAirport : Ind Airport ; + fun MbabaneAirport : Ind Airport ; -fun MayportNavalAirStationFLAirport : Ind Airport ; + fun MbambanakiraAirport : Ind Airport ; -fun MazariSharifAirport : Ind Airport ; + fun MbandakaAirport : Ind Airport ; -fun MbabaneAirport : Ind Airport ; + fun MbanzaCongoAirport : Ind Airport ; -fun MbambanakiraAirport : Ind Airport ; + fun MbararaAirport : Ind Airport ; -fun MbandakaAirport : Ind Airport ; + fun MbeyaAirport : Ind Airport ; -fun MbanzaCongoAirport : Ind Airport ; + fun MbigouAirport : Ind Airport ; -fun MbararaAirport : Ind Airport ; + fun MbokiAirport : Ind Airport ; -fun MbeyaAirport : Ind Airport ; + fun MboutAirport : Ind Airport ; -fun MbigouAirport : Ind Airport ; + fun MbujiMayiAirport : Ind Airport ; -fun MbokiAirport : Ind Airport ; + fun McAlesterRegionalOKAirport : Ind Airport ; -fun MboutAirport : Ind Airport ; + fun McArthurRiverNorthernTerritoryAirport : Ind Airport ; -fun MbujiMayiAirport : Ind Airport ; + fun McCallIDAirport : Ind Airport ; -fun McAlesterRegionalOKAirport : Ind Airport ; + fun McCarranInternationalNVAirport : Ind Airport ; -fun McArthurRiverNorthernTerritoryAirport : Ind Airport ; + fun McCarthyAKAirport : Ind Airport ; -fun McCallIDAirport : Ind Airport ; + fun McChordAirForceBaseWAAirport : Ind Airport ; -fun McCarranInternationalNVAirport : Ind Airport ; + fun McClellanAirForceBaseCAAirport : Ind Airport ; -fun McCarthyAKAirport : Ind Airport ; + fun McCombPikeCountyJohnELewisFieldMSAirport : Ind Airport ; -fun McChordAirForceBaseWAAirport : Ind Airport ; + fun McCookMunicipalNEAirport : Ind Airport ; -fun McClellanAirForceBaseCAAirport : Ind Airport ; + fun McEntireAirNationalGuardBaseSCAirport : Ind Airport ; -fun McCombPikeCountyJohnELewisFieldMSAirport : Ind Airport ; + fun McGheeTysonTNAirport : Ind Airport ; -fun McCookMunicipalNEAirport : Ind Airport ; + fun McGrathAKAirport : Ind Airport ; -fun McEntireAirNationalGuardBaseSCAirport : Ind Airport ; + fun McGuireAirForceBaseNJAirport : Ind Airport ; -fun McGheeTysonTNAirport : Ind Airport ; + fun McKellarSipesRegionalTNAirport : Ind Airport ; -fun McGrathAKAirport : Ind Airport ; + fun McKennaArmyAirFieldGAAirport : Ind Airport ; -fun McGuireAirForceBaseNJAirport : Ind Airport ; + fun McKinleyNationalParkAKAirport : Ind Airport ; -fun McKellarSipesRegionalTNAirport : Ind Airport ; + fun McMinnCountyTNAirport : Ind Airport ; -fun McKennaArmyAirFieldGAAirport : Ind Airport ; + fun McMinnvilleMunicipalORAirport : Ind Airport ; -fun McKinleyNationalParkAKAirport : Ind Airport ; + fun McNaryFieldORAirport : Ind Airport ; -fun McMinnCountyTNAirport : Ind Airport ; + fun McPhersonKSAirport : Ind Airport ; -fun McMinnvilleMunicipalORAirport : Ind Airport ; + fun MeadowLakeSKAirport : Ind Airport ; -fun McNaryFieldORAirport : Ind Airport ; + fun MechanicsBaySeaplaneBaseAucklandAirport : Ind Airport ; -fun McPhersonKSAirport : Ind Airport ; + fun MedfordJacksonCountyORAirport : Ind Airport ; -fun MeadowLakeSKAirport : Ind Airport ; + fun MedfraAKAirport : Ind Airport ; -fun MechanicsBaySeaplaneBaseAucklandAirport : Ind Airport ; + fun MedicineHatABAirport : Ind Airport ; -fun MedfordJacksonCountyORAirport : Ind Airport ; + fun MedinaCAAirport : Ind Airport ; -fun MedfraAKAirport : Ind Airport ; + fun MedinaMadinahAirport : Ind Airport ; -fun MedicineHatABAirport : Ind Airport ; + fun MediteraneeFrejorguesMontpellierAirport : Ind Airport ; -fun MedinaCAAirport : Ind Airport ; + fun MedouneuAirport : Ind Airport ; -fun MedinaMadinahAirport : Ind Airport ; + fun MeekatharraWesternAustraliaAirport : Ind Airport ; -fun MediteraneeFrejorguesMontpellierAirport : Ind Airport ; + fun MeenambakkamMadrasAirport : Ind Airport ; -fun MedouneuAirport : Ind Airport ; + fun MeffordFieldCAAirport : Ind Airport ; -fun MeekatharraWesternAustraliaAirport : Ind Airport ; + fun MegeveAirport : Ind Airport ; -fun MeenambakkamMadrasAirport : Ind Airport ; + fun MeghauliAirport : Ind Airport ; -fun MeffordFieldCAAirport : Ind Airport ; + fun MehamnAirport : Ind Airport ; -fun MegeveAirport : Ind Airport ; + fun MehrabadQualehMorgehTeheranTheranAirport : Ind Airport ; -fun MeghauliAirport : Ind Airport ; + fun MeixianAirport : Ind Airport ; -fun MehamnAirport : Ind Airport ; + fun MejitMejitIslandAirport : Ind Airport ; -fun MehrabadQualehMorgehTeheranTheranAirport : Ind Airport ; + fun MekamboAirport : Ind Airport ; -fun MeixianAirport : Ind Airport ; + fun MekaneSalemAirport : Ind Airport ; -fun MejitMejitIslandAirport : Ind Airport ; + fun MeknesAirport : Ind Airport ; -fun MekamboAirport : Ind Airport ; + fun MekoryukAKAirport : Ind Airport ; -fun MekaneSalemAirport : Ind Airport ; + fun MelangguaneAirport : Ind Airport ; -fun MeknesAirport : Ind Airport ; + fun MelbourneInternationalFLAirport : Ind Airport ; -fun MekoryukAKAirport : Ind Airport ; + fun MelchordeMencosAirport : Ind Airport ; -fun MelangguaneAirport : Ind Airport ; + fun MelfiAirport : Ind Airport ; -fun MelbourneInternationalFLAirport : Ind Airport ; + fun MelillaAirport : Ind Airport ; -fun MelchordeMencosAirport : Ind Airport ; + fun MelindaAirport : Ind Airport ; -fun MelfiAirport : Ind Airport ; + fun MeloAirport : Ind Airport ; -fun MelillaAirport : Ind Airport ; + fun MemanbetsuAirport : Ind Airport ; -fun MelindaAirport : Ind Airport ; + fun MemphisInternationalTNAirport : Ind Airport ; -fun MeloAirport : Ind Airport ; + fun MemphisNavalAirStationTNAirport : Ind Airport ; -fun MemanbetsuAirport : Ind Airport ; + fun MenaAirport : Ind Airport ; -fun MemphisInternationalTNAirport : Ind Airport ; + fun MenaraMarrakechAirport : Ind Airport ; -fun MemphisNavalAirStationTNAirport : Ind Airport ; + fun MendeAirport : Ind Airport ; -fun MenaAirport : Ind Airport ; + fun MendezAirport : Ind Airport ; -fun MenaraMarrakechAirport : Ind Airport ; + fun MendiAirport : Ind Airport ; -fun MendeAirport : Ind Airport ; + fun MendiAirportEthiopia : Ind Airport ; -fun MendezAirport : Ind Airport ; + fun MenomineeMarinetteTwinCountyMIAirport : Ind Airport ; -fun MendiAirport : Ind Airport ; + fun MenongueAirport : Ind Airport ; -fun MendiAirportEthiopia : Ind Airport ; + fun MercedMunicipalAirportMacreadyFieldCAAirport : Ind Airport ; -fun MenomineeMarinetteTwinCountyMIAirport : Ind Airport ; + fun MercedesAirport : Ind Airport ; -fun MenongueAirport : Ind Airport ; + fun MerceditaPonceAirport : Ind Airport ; -fun MercedMunicipalAirportMacreadyFieldCAAirport : Ind Airport ; + fun MercerCountyNJAirport : Ind Airport ; -fun MercedesAirport : Ind Airport ; + fun MerdeyAirport : Ind Airport ; -fun MerceditaPonceAirport : Ind Airport ; + fun MeribelAirport : Ind Airport ; -fun MercerCountyNJAirport : Ind Airport ; + fun MeridaAirport : Ind Airport ; -fun MerdeyAirport : Ind Airport ; + fun MeridianNavalAirStationMcCainFieldMSAirport : Ind Airport ; -fun MeribelAirport : Ind Airport ; + fun MerimbulaNewSouthWalesAirport : Ind Airport ; -fun MeridaAirport : Ind Airport ; + fun MerlunaQueenslandAirport : Ind Airport ; -fun MeridianNavalAirStationMcCainFieldMSAirport : Ind Airport ; + fun MeroweAirport : Ind Airport ; -fun MerimbulaNewSouthWalesAirport : Ind Airport ; + fun MerrillFieldAKAirport : Ind Airport ; -fun MerlunaQueenslandAirport : Ind Airport ; + fun MerrillMunicipalWIAirport : Ind Airport ; -fun MeroweAirport : Ind Airport ; + fun MerrittBCAirport : Ind Airport ; -fun MerrillFieldAKAirport : Ind Airport ; + fun MerryIslandBCAirport : Ind Airport ; -fun MerrillMunicipalWIAirport : Ind Airport ; + fun MersingAirport : Ind Airport ; -fun MerrittBCAirport : Ind Airport ; + fun MertySouthAustraliaAirport : Ind Airport ; -fun MerryIslandBCAirport : Ind Airport ; + fun MerzifonAirport : Ind Airport ; -fun MersingAirport : Ind Airport ; + fun MessinaAirport : Ind Airport ; -fun MertySouthAustraliaAirport : Ind Airport ; + fun MessinaAirportItaly : Ind Airport ; -fun MerzifonAirport : Ind Airport ; + fun MetcalfFieldOHAirport : Ind Airport ; -fun MessinaAirport : Ind Airport ; + fun MetekelAirport : Ind Airport ; -fun MessinaAirportItaly : Ind Airport ; + fun MetlakatlaAKAirport : Ind Airport ; -fun MetcalfFieldOHAirport : Ind Airport ; + fun MetroFieldAKAirport : Ind Airport ; -fun MetekelAirport : Ind Airport ; + fun MetropolianAreaParisAirport : Ind Airport ; -fun MetlakatlaAKAirport : Ind Airport ; + fun MetropolitanAreaABAirport : Ind Airport ; -fun MetroFieldAKAirport : Ind Airport ; + fun MetropolitanAreaCAAirport : Ind Airport ; -fun MetropolianAreaParisAirport : Ind Airport ; + fun MetropolitanAreaCOAirport : Ind Airport ; -fun MetropolitanAreaABAirport : Ind Airport ; + fun MetropolitanAreaDCAirport : Ind Airport ; -fun MetropolitanAreaCAAirport : Ind Airport ; + fun MetropolitanAreaEnglandAirport : Ind Airport ; -fun MetropolitanAreaCOAirport : Ind Airport ; + fun MetropolitanAreaFLAirport : Ind Airport ; -fun MetropolitanAreaDCAirport : Ind Airport ; + fun MetropolitanAreaMilanoMilanAirport : Ind Airport ; -fun MetropolitanAreaEnglandAirport : Ind Airport ; + fun MetropolitanAreaMoscowAirport : Ind Airport ; -fun MetropolitanAreaFLAirport : Ind Airport ; + fun MetropolitanAreaNYAirport : Ind Airport ; -fun MetropolitanAreaMilanoMilanAirport : Ind Airport ; + fun MetropolitanAreaONAirport : Ind Airport ; -fun MetropolitanAreaMoscowAirport : Ind Airport ; + fun MetropolitanAreaOsakaAirport : Ind Airport ; -fun MetropolitanAreaNYAirport : Ind Airport ; + fun MetropolitanAreaOsloAirport : Ind Airport ; -fun MetropolitanAreaONAirport : Ind Airport ; + fun MetropolitanAreaQCAirport : Ind Airport ; -fun MetropolitanAreaOsakaAirport : Ind Airport ; + fun MetropolitanAreaRJAirport : Ind Airport ; -fun MetropolitanAreaOsloAirport : Ind Airport ; + fun MetropolitanAreaRomaRomeAirport : Ind Airport ; -fun MetropolitanAreaQCAirport : Ind Airport ; + fun MetropolitanAreaSPAirport : Ind Airport ; -fun MetropolitanAreaRJAirport : Ind Airport ; + fun MetropolitanAreaStockholmAirport : Ind Airport ; -fun MetropolitanAreaRomaRomeAirport : Ind Airport ; + fun MetropolitanAreaTokyoAirport : Ind Airport ; -fun MetropolitanAreaSPAirport : Ind Airport ; + fun MetropolitanMAAirport : Ind Airport ; -fun MetropolitanAreaStockholmAirport : Ind Airport ; + fun MetropolitanOaklandInternationalCAAirport : Ind Airport ; -fun MetropolitanAreaTokyoAirport : Ind Airport ; + fun MetterMunicipalGAAirport : Ind Airport ; -fun MetropolitanMAAirport : Ind Airport ; + fun MeulabohAirport : Ind Airport ; -fun MetropolitanOaklandInternationalCAAirport : Ind Airport ; + fun MevangAirport : Ind Airport ; -fun MetterMunicipalGAAirport : Ind Airport ; + fun MeyersChuckSeaplaneBaseAKAirport : Ind Airport ; -fun MeulabohAirport : Ind Airport ; + fun MfuweAirport : Ind Airport ; -fun MevangAirport : Ind Airport ; + fun MiamiInternationalFLAirport : Ind Airport ; -fun MeyersChuckSeaplaneBaseAKAirport : Ind Airport ; + fun MiamiMunicipalOKAirport : Ind Airport ; -fun MfuweAirport : Ind Airport ; + fun MiamiUniversityOHAirport : Ind Airport ; -fun MiamiInternationalFLAirport : Ind Airport ; + fun MiandrivazoAirport : Ind Airport ; -fun MiamiMunicipalOKAirport : Ind Airport ; + fun MianwaliAirport : Ind Airport ; -fun MiamiUniversityOHAirport : Ind Airport ; + fun MichianaRegionalTransportationCenterINAirport : Ind Airport ; -fun MiandrivazoAirport : Ind Airport ; + fun MichiganCityINAirport : Ind Airport ; -fun MianwaliAirport : Ind Airport ; + fun MidStatePAAirport : Ind Airport ; -fun MichianaRegionalTransportationCenterINAirport : Ind Airport ; + fun MiddleCaicosAirport : Ind Airport ; -fun MichiganCityINAirport : Ind Airport ; + fun MiddleGeorgiaRegionalGAAirport : Ind Airport ; -fun MidStatePAAirport : Ind Airport ; + fun MiddlemountQueenslandAirport : Ind Airport ; -fun MiddleCaicosAirport : Ind Airport ; + fun MiddletonIslandAKAirport : Ind Airport ; -fun MiddleGeorgiaRegionalGAAirport : Ind Airport ; + fun MidlandAirparkTXAirport : Ind Airport ; -fun MiddlemountQueenslandAirport : Ind Airport ; + fun MidlandInternationalTXAirport : Ind Airport ; -fun MiddletonIslandAKAirport : Ind Airport ; + fun MidwayNavalAirFacilitySandIslandAirport : Ind Airport ; -fun MidlandAirparkTXAirport : Ind Airport ; + fun MifflinCountyPAAirport : Ind Airport ; -fun MidlandInternationalTXAirport : Ind Airport ; + fun MikkeliAirport : Ind Airport ; -fun MidwayNavalAirFacilitySandIslandAirport : Ind Airport ; + fun MikraThessalonikiSalonikiAirport : Ind Airport ; -fun MifflinCountyPAAirport : Ind Airport ; + fun MildenhallAirport : Ind Airport ; -fun MikkeliAirport : Ind Airport ; + fun MilduraVictoriaAirport : Ind Airport ; -fun MikraThessalonikiSalonikiAirport : Ind Airport ; + fun MilfordMunicipalUTAirport : Ind Airport ; -fun MildenhallAirport : Ind Airport ; + fun MilfordSoundAirport : Ind Airport ; -fun MilduraVictoriaAirport : Ind Airport ; + fun MiliMiliIslandAirport : Ind Airport ; -fun MilfordMunicipalUTAirport : Ind Airport ; + fun MillardNEAirport : Ind Airport ; -fun MilfordSoundAirport : Ind Airport ; + fun MillerFieldNEAirport : Ind Airport ; -fun MiliMiliIslandAirport : Ind Airport ; + fun MillerInternationalTXAirport : Ind Airport ; -fun MillardNEAirport : Ind Airport ; + fun MillicentSouthAustraliaAirport : Ind Airport ; -fun MillerFieldNEAirport : Ind Airport ; + fun MillingimbiNorthernTerritoryAirport : Ind Airport ; -fun MillerInternationalTXAirport : Ind Airport ; + fun MillinocketMunicipalMEAirport : Ind Airport ; -fun MillicentSouthAustraliaAirport : Ind Airport ; + fun MillvilleMunicipalNJAirport : Ind Airport ; -fun MillingimbiNorthernTerritoryAirport : Ind Airport ; + fun MilosAirport : Ind Airport ; -fun MillinocketMunicipalMEAirport : Ind Airport ; + fun MinacuAirport : Ind Airport ; -fun MillvilleMunicipalNJAirport : Ind Airport ; + fun MinakiAerodromeONAirport : Ind Airport ; -fun MilosAirport : Ind Airport ; + fun MinaltonSouthAustraliaAirport : Ind Airport ; -fun MinacuAirport : Ind Airport ; + fun MinamiDaitoJimaOkinawaAirport : Ind Airport ; -fun MinakiAerodromeONAirport : Ind Airport ; + fun MinatitlanAirport : Ind Airport ; -fun MinaltonSouthAustraliaAirport : Ind Airport ; + fun MinchuminaAKAirport : Ind Airport ; -fun MinamiDaitoJimaOkinawaAirport : Ind Airport ; + fun MindikAirport : Ind Airport ; -fun MinatitlanAirport : Ind Airport ; + fun MindiptanaAirport : Ind Airport ; -fun MinchuminaAKAirport : Ind Airport ; + fun MineralWellsTXAirport : Ind Airport ; -fun MindikAirport : Ind Airport ; + fun MineralniyeVodyStavropolAirport : Ind Airport ; -fun MindiptanaAirport : Ind Airport ; + fun MinersBayBCAirport : Ind Airport ; -fun MineralWellsTXAirport : Ind Airport ; + fun MinersLakeAirport : Ind Airport ; -fun MineralniyeVodyStavropolAirport : Ind Airport ; + fun MingaladonYangoonRangoonAirport : Ind Airport ; -fun MinersBayBCAirport : Ind Airport ; + fun MinganQCAirport : Ind Airport ; -fun MinersLakeAirport : Ind Airport ; + fun MinjAirport : Ind Airport ; -fun MingaladonYangoonRangoonAirport : Ind Airport ; + fun MinnaAirport : Ind Airport ; -fun MinganQCAirport : Ind Airport ; + fun MinneapolisStPaulInternationalWoldChamberlainMNAirport : Ind Airport ; -fun MinjAirport : Ind Airport ; + fun MinneriyaAirport : Ind Airport ; -fun MinnaAirport : Ind Airport ; + fun MinnipaSouthAustraliaAirport : Ind Airport ; -fun MinneapolisStPaulInternationalWoldChamberlainMNAirport : Ind Airport ; + fun MinotAirForceBaseNDAirport : Ind Airport ; -fun MinneriyaAirport : Ind Airport ; + fun MinotInternationalNDAirport : Ind Airport ; -fun MinnipaSouthAustraliaAirport : Ind Airport ; + fun MintoAKAirport : Ind Airport ; -fun MinotAirForceBaseNDAirport : Ind Airport ; + fun MinuteManAirfieldMAAirport : Ind Airport ; -fun MinotInternationalNDAirport : Ind Airport ; + fun MinvoulAirport : Ind Airport ; -fun MintoAKAirport : Ind Airport ; + fun MiquelonAirport : Ind Airport ; -fun MinuteManAirfieldMAAirport : Ind Airport ; + fun MirabelInternationalQCAirport : Ind Airport ; -fun MinvoulAirport : Ind Airport ; + fun MiracemadoNorteGOAirport : Ind Airport ; -fun MiquelonAirport : Ind Airport ; + fun MirafloresAirport : Ind Airport ; -fun MirabelInternationalQCAirport : Ind Airport ; + fun MiramarAirport : Ind Airport ; -fun MiracemadoNorteGOAirport : Ind Airport ; + fun MiramarNavalAirStationMitscherFieldCAAirport : Ind Airport ; -fun MirafloresAirport : Ind Airport ; + fun MirandaDownsQueenslandAirport : Ind Airport ; -fun MiramarAirport : Ind Airport ; + fun MirgorodPoltavaAirport : Ind Airport ; -fun MiramarNavalAirStationMitscherFieldCAAirport : Ind Airport ; + fun MiriSarawakAirport : Ind Airport ; -fun MirandaDownsQueenslandAirport : Ind Airport ; + fun MiritiAirport : Ind Airport ; -fun MirgorodPoltavaAirport : Ind Airport ; + fun MirnyyYakutiaSakhaAirport : Ind Airport ; -fun MiriSarawakAirport : Ind Airport ; + fun MirpurAirport : Ind Airport ; -fun MiritiAirport : Ind Airport ; + fun MirpurKhasAirport : Ind Airport ; -fun MirnyyYakutiaSakhaAirport : Ind Airport ; + fun MisawaAirport : Ind Airport ; -fun MirpurAirport : Ind Airport ; + fun MisimaAirport : Ind Airport ; -fun MirpurKhasAirport : Ind Airport ; + fun MiskolcAirport : Ind Airport ; -fun MisawaAirport : Ind Airport ; + fun MissionFieldMTAirport : Ind Airport ; -fun MisimaAirport : Ind Airport ; + fun MissoulaInternationalMTAirport : Ind Airport ; -fun MiskolcAirport : Ind Airport ; + fun MissouriAirNationalGuardMOAirport : Ind Airport ; -fun MissionFieldMTAirport : Ind Airport ; + fun MisurataAirport : Ind Airport ; -fun MissoulaInternationalMTAirport : Ind Airport ; + fun MitchellMunicipalSDAirport : Ind Airport ; -fun MissouriAirNationalGuardMOAirport : Ind Airport ; + fun MitchellPlateauAirport : Ind Airport ; -fun MisurataAirport : Ind Airport ; + fun MitchellQueenslandAirport : Ind Airport ; -fun MitchellMunicipalSDAirport : Ind Airport ; + fun MitchellRiverAirport : Ind Airport ; -fun MitchellPlateauAirport : Ind Airport ; + fun MitiaroAirport : Ind Airport ; -fun MitchellQueenslandAirport : Ind Airport ; + fun MitspehRamonaAirport : Ind Airport ; -fun MitchellRiverAirport : Ind Airport ; + fun MituAirport : Ind Airport ; -fun MitiaroAirport : Ind Airport ; + fun MitzicAirport : Ind Airport ; -fun MitspehRamonaAirport : Ind Airport ; + fun MiyakeJimaAirport : Ind Airport ; -fun MituAirport : Ind Airport ; + fun MiyakoJimaRyukuAirport : Ind Airport ; -fun MitzicAirport : Ind Airport ; + fun MiyanminAirport : Ind Airport ; -fun MiyakeJimaAirport : Ind Airport ; + fun MizanTeferiAirport : Ind Airport ; -fun MiyakoJimaRyukuAirport : Ind Airport ; + fun MkambatiAirport : Ind Airport ; -fun MiyanminAirport : Ind Airport ; + fun MkuzeAirport : Ind Airport ; -fun MizanTeferiAirport : Ind Airport ; + fun MoaAirport : Ind Airport ; -fun MkambatiAirport : Ind Airport ; + fun MoabiAirport : Ind Airport ; -fun MkuzeAirport : Ind Airport ; + fun MoalaAirport : Ind Airport ; -fun MoaAirport : Ind Airport ; + fun MoanamaniAirport : Ind Airport ; -fun MoabiAirport : Ind Airport ; + fun MoandaAirport : Ind Airport ; -fun MoalaAirport : Ind Airport ; + fun MoandaAirportGabon : Ind Airport ; -fun MoanamaniAirport : Ind Airport ; + fun MobridgeMunicipalSDAirport : Ind Airport ; -fun MoandaAirport : Ind Airport ; + fun MocamedesNewNamibeAirport : Ind Airport ; -fun MoandaAirportGabon : Ind Airport ; + fun MocimboadaPraiaAirport : Ind Airport ; -fun MobridgeMunicipalSDAirport : Ind Airport ; + fun MococaSPAirport : Ind Airport ; -fun MocamedesNewNamibeAirport : Ind Airport ; + fun ModestoCityCountyAirportHarryShamFieldCAAirport : Ind Airport ; -fun MocimboadaPraiaAirport : Ind Airport ; + fun MoenchengladbachMonchengladbachAirport : Ind Airport ; -fun MococaSPAirport : Ind Airport ; + fun MoenjodaroMohenjoDaroAirport : Ind Airport ; -fun ModestoCityCountyAirportHarryShamFieldCAAirport : Ind Airport ; + fun MoffettFieldNavalAirStationCAAirport : Ind Airport ; -fun MoenchengladbachMonchengladbachAirport : Ind Airport ; + fun MogidasCrazesSPAirport : Ind Airport ; -fun MoenjodaroMohenjoDaroAirport : Ind Airport ; + fun MohanbariAirport : Ind Airport ; -fun MoffettFieldNavalAirStationCAAirport : Ind Airport ; + fun MoheliAirport : Ind Airport ; -fun MogidasCrazesSPAirport : Ind Airport ; + fun MoiInternationalMombasaAirport : Ind Airport ; -fun MohanbariAirport : Ind Airport ; + fun MojaveCAAirport : Ind Airport ; -fun MoheliAirport : Ind Airport ; + fun MokhotlongAirport : Ind Airport ; -fun MoiInternationalMombasaAirport : Ind Airport ; + fun MokiAirport : Ind Airport ; -fun MojaveCAAirport : Ind Airport ; + fun MokpoAirport : Ind Airport ; -fun MokhotlongAirport : Ind Airport ; + fun MokutiAirport : Ind Airport ; -fun MokiAirport : Ind Airport ; + fun MolokaiHIAirport : Ind Airport ; -fun MokpoAirport : Ind Airport ; + fun MomaAirport : Ind Airport ; -fun MokutiAirport : Ind Airport ; + fun MomeikAirport : Ind Airport ; -fun MolokaiHIAirport : Ind Airport ; + fun MompusAirport : Ind Airport ; -fun MomaAirport : Ind Airport ; + fun MonbetsuAirport : Ind Airport ; -fun MomeikAirport : Ind Airport ; + fun MonclovaAirport : Ind Airport ; -fun MompusAirport : Ind Airport ; + fun MonctonNBAirport : Ind Airport ; -fun MonbetsuAirport : Ind Airport ; + fun MonfortAirport : Ind Airport ; -fun MonclovaAirport : Ind Airport ; + fun MonghsatAirport : Ind Airport ; -fun MonctonNBAirport : Ind Airport ; + fun MongoAirport : Ind Airport ; -fun MonfortAirport : Ind Airport ; + fun MonguAirport : Ind Airport ; -fun MonghsatAirport : Ind Airport ; + fun MonkeyIslandAirport : Ind Airport ; -fun MongoAirport : Ind Airport ; + fun MonkeyMiaWesternAustraliaAirport : Ind Airport ; -fun MonguAirport : Ind Airport ; + fun MonkeyMountainAirport : Ind Airport ; -fun MonkeyIslandAirport : Ind Airport ; + fun MonkiraQueenslandAirport : Ind Airport ; -fun MonkeyMiaWesternAustraliaAirport : Ind Airport ; + fun MonoAirport : Ind Airport ; -fun MonkeyMountainAirport : Ind Airport ; + fun MonroeCountyALAirport : Ind Airport ; -fun MonkiraQueenslandAirport : Ind Airport ; + fun MonroeRegionalLAAirport : Ind Airport ; -fun MonoAirport : Ind Airport ; + fun MonsAirport : Ind Airport ; -fun MonroeCountyALAirport : Ind Airport ; + fun MontJoliQCAirport : Ind Airport ; -fun MonroeRegionalLAAirport : Ind Airport ; + fun MontagueHarborBCAirport : Ind Airport ; -fun MonsAirport : Ind Airport ; + fun MontaukNYAirport : Ind Airport ; -fun MontJoliQCAirport : Ind Airport ; + fun MonteAlegrePAAirport : Ind Airport ; -fun MontagueHarborBCAirport : Ind Airport ; + fun MonteCarloAirport : Ind Airport ; -fun MontaukNYAirport : Ind Airport ; + fun MonteDouradoAirport : Ind Airport ; -fun MonteAlegrePAAirport : Ind Airport ; + fun MonteLibanoAirport : Ind Airport ; -fun MonteCarloAirport : Ind Airport ; + fun MontenegroRSAirport : Ind Airport ; -fun MonteDouradoAirport : Ind Airport ; + fun MontepuezAirport : Ind Airport ; -fun MonteLibanoAirport : Ind Airport ; + fun MontereyPeninsulaCAAirport : Ind Airport ; -fun MontenegroRSAirport : Ind Airport ; + fun MonteriaAirport : Ind Airport ; -fun MontepuezAirport : Ind Airport ; + fun MonterreyAirport : Ind Airport ; -fun MontereyPeninsulaCAAirport : Ind Airport ; + fun MontesCaserosAirport : Ind Airport ; -fun MonteriaAirport : Ind Airport ; + fun MontesClarosMGAirport : Ind Airport ; -fun MonterreyAirport : Ind Airport ; + fun MontevideoChippewaCountyMNAirport : Ind Airport ; -fun MontesCaserosAirport : Ind Airport ; + fun MontgomeryFieldCAAirport : Ind Airport ; -fun MontesClarosMGAirport : Ind Airport ; + fun MonticelloMunicipalIAAirport : Ind Airport ; -fun MontevideoChippewaCountyMNAirport : Ind Airport ; + fun MontluconAirport : Ind Airport ; -fun MontgomeryFieldCAAirport : Ind Airport ; + fun MontoQueenslandAirport : Ind Airport ; -fun MonticelloMunicipalIAAirport : Ind Airport ; + fun MontoirSaintNazaireAirport : Ind Airport ; -fun MontluconAirport : Ind Airport ; + fun MontreuxAirport : Ind Airport ; -fun MontoQueenslandAirport : Ind Airport ; + fun MontroseRegionalCOAirport : Ind Airport ; -fun MontoirSaintNazaireAirport : Ind Airport ; + fun MoodyAirForceBaseGAAirport : Ind Airport ; -fun MontreuxAirport : Ind Airport ; + fun MoolawatanaSouthAustraliaAirport : Ind Airport ; -fun MontroseRegionalCOAirport : Ind Airport ; + fun MoombaAirport : Ind Airport ; -fun MoodyAirForceBaseGAAirport : Ind Airport ; + fun MoorabbinVictoriaAirport : Ind Airport ; -fun MoolawatanaSouthAustraliaAirport : Ind Airport ; + fun MooraberrieQueenslandAirport : Ind Airport ; -fun MoombaAirport : Ind Airport ; + fun MooreCountyNCAirport : Ind Airport ; -fun MoorabbinVictoriaAirport : Ind Airport ; + fun MooreMurrellTNAirport : Ind Airport ; -fun MooraberrieQueenslandAirport : Ind Airport ; + fun MooreaSocietyIslandsAirport : Ind Airport ; -fun MooreCountyNCAirport : Ind Airport ; + fun MooseJawSKAirport : Ind Airport ; -fun MooreMurrellTNAirport : Ind Airport ; + fun MoosoneeONAirport : Ind Airport ; -fun MooreaSocietyIslandsAirport : Ind Airport ; + fun MopahMeraukeAirport : Ind Airport ; -fun MooseJawSKAirport : Ind Airport ; + fun MorafenobeAirport : Ind Airport ; -fun MoosoneeONAirport : Ind Airport ; + fun MoranbahQueenslandAirport : Ind Airport ; -fun MopahMeraukeAirport : Ind Airport ; + fun MorawaWesternAustraliaAirport : Ind Airport ; -fun MorafenobeAirport : Ind Airport ; + fun MordakAirport : Ind Airport ; -fun MoranbahQueenslandAirport : Ind Airport ; + fun MoreeNewSouthWalesAirport : Ind Airport ; -fun MorawaWesternAustraliaAirport : Ind Airport ; + fun MoreheadAirport : Ind Airport ; -fun MordakAirport : Ind Airport ; + fun MoreliaAirport : Ind Airport ; -fun MoreeNewSouthWalesAirport : Ind Airport ; + fun MoretonQueenslandAirport : Ind Airport ; -fun MoreheadAirport : Ind Airport ; + fun MorgantonLenoirNCAirport : Ind Airport ; -fun MoreliaAirport : Ind Airport ; + fun MorgantownMunicipalAirportWalterLBillHartFieldWVAirport : Ind Airport ; -fun MoretonQueenslandAirport : Ind Airport ; + fun MorichalAirport : Ind Airport ; -fun MorgantonLenoirNCAirport : Ind Airport ; + fun MoriokaAirport : Ind Airport ; -fun MorgantownMunicipalAirportWalterLBillHartFieldWVAirport : Ind Airport ; + fun MorneyPlainsQueenslandAirport : Ind Airport ; -fun MorichalAirport : Ind Airport ; + fun MorningtonIslandQueenslandAirport : Ind Airport ; -fun MoriokaAirport : Ind Airport ; + fun MorobeAirport : Ind Airport ; -fun MorneyPlainsQueenslandAirport : Ind Airport ; + fun MorombeAirport : Ind Airport ; -fun MorningtonIslandQueenslandAirport : Ind Airport ; + fun MoronAirBaseMorondelaFronteraAirport : Ind Airport ; -fun MorobeAirport : Ind Airport ; + fun MorondavaAirport : Ind Airport ; -fun MorombeAirport : Ind Airport ; + fun MorotaiIslandAirport : Ind Airport ; -fun MoronAirBaseMorondelaFronteraAirport : Ind Airport ; + fun MorrisMunicipalMNAirport : Ind Airport ; -fun MorondavaAirport : Ind Airport ; + fun MorristownMunicipalNJAirport : Ind Airport ; -fun MorotaiIslandAirport : Ind Airport ; + fun MorrisvilleStoweStateVTAirport : Ind Airport ; -fun MorrisMunicipalMNAirport : Ind Airport ; + fun MoruyaNewSouthWalesAirport : Ind Airport ; -fun MorristownMunicipalNJAirport : Ind Airport ; + fun MosesPointAKAirport : Ind Airport ; -fun MorrisvilleStoweStateVTAirport : Ind Airport ; + fun MoshiAirport : Ind Airport ; -fun MoruyaNewSouthWalesAirport : Ind Airport ; + fun MoshoeshoeIInternationalMaseruAirport : Ind Airport ; -fun MosesPointAKAirport : Ind Airport ; + fun MosjoenAirport : Ind Airport ; -fun MoshiAirport : Ind Airport ; + fun MosnovOstravaAirport : Ind Airport ; -fun MoshoeshoeIInternationalMaseruAirport : Ind Airport ; + fun MosqueraAirport : Ind Airport ; -fun MosjoenAirport : Ind Airport ; + fun MosselBayAirport : Ind Airport ; -fun MosnovOstravaAirport : Ind Airport ; + fun MossoroRNAirport : Ind Airport ; -fun MosqueraAirport : Ind Airport ; + fun MostarAirport : Ind Airport ; -fun MosselBayAirport : Ind Airport ; + fun MosteirosAirport : Ind Airport ; -fun MossoroRNAirport : Ind Airport ; + fun MostynAirport : Ind Airport ; -fun MostarAirport : Ind Airport ; + fun MosulAirport : Ind Airport ; -fun MosteirosAirport : Ind Airport ; + fun MotaLavaAirport : Ind Airport ; -fun MostynAirport : Ind Airport ; + fun MotonFieldMunicipalALAirport : Ind Airport ; -fun MosulAirport : Ind Airport ; + fun MotuekaAirport : Ind Airport ; -fun MotaLavaAirport : Ind Airport ; + fun MoudjeriaAirport : Ind Airport ; -fun MotonFieldMunicipalALAirport : Ind Airport ; + fun MouilaAirport : Ind Airport ; -fun MotuekaAirport : Ind Airport ; + fun MouldBayNTAirport : Ind Airport ; -fun MoudjeriaAirport : Ind Airport ; + fun MoultrieMunicipalGAAirport : Ind Airport ; -fun MouilaAirport : Ind Airport ; + fun MoundouAirport : Ind Airport ; -fun MouldBayNTAirport : Ind Airport ; + fun MountAueAirport : Ind Airport ; -fun MoultrieMunicipalGAAirport : Ind Airport ; + fun MountBarnettWesternAustraliaAirport : Ind Airport ; -fun MoundouAirport : Ind Airport ; + fun MountComfortINAirport : Ind Airport ; -fun MountAueAirport : Ind Airport ; + fun MountCookAirport : Ind Airport ; -fun MountBarnettWesternAustraliaAirport : Ind Airport ; + fun MountGambierSouthAustraliaAirport : Ind Airport ; -fun MountComfortINAirport : Ind Airport ; + fun MountHothamVictoriaAirport : Ind Airport ; -fun MountCookAirport : Ind Airport ; + fun MountMagnetWesternAustraliaAirport : Ind Airport ; -fun MountGambierSouthAustraliaAirport : Ind Airport ; + fun MountPleasantAirport : Ind Airport ; -fun MountHothamVictoriaAirport : Ind Airport ; + fun MountPleasantMunicipalIAAirport : Ind Airport ; -fun MountMagnetWesternAustraliaAirport : Ind Airport ; + fun MountPleasantMunicipalMIAirport : Ind Airport ; -fun MountPleasantAirport : Ind Airport ; + fun MountPleasantMunicipalTXAirport : Ind Airport ; -fun MountPleasantMunicipalIAAirport : Ind Airport ; + fun MountPleasantUTAirport : Ind Airport ; -fun MountPleasantMunicipalMIAirport : Ind Airport ; + fun MountShastaCAAirport : Ind Airport ; -fun MountPleasantMunicipalTXAirport : Ind Airport ; + fun MountVernonILAirport : Ind Airport ; -fun MountPleasantUTAirport : Ind Airport ; + fun MountWilsonCAAirport : Ind Airport ; -fun MountShastaCAAirport : Ind Airport ; + fun MountainAirport : Ind Airport ; -fun MountVernonILAirport : Ind Airport ; + fun MountainHomeAirForceBaseIDAirport : Ind Airport ; -fun MountWilsonCAAirport : Ind Airport ; + fun MountainValleyAirport : Ind Airport ; -fun MountainAirport : Ind Airport ; + fun MountainVillageAKAirport : Ind Airport ; -fun MountainHomeAirForceBaseIDAirport : Ind Airport ; + fun MoutiersAirport : Ind Airport ; -fun MountainValleyAirport : Ind Airport ; + fun MouyondziAirport : Ind Airport ; -fun MountainVillageAKAirport : Ind Airport ; + fun MoyaleAirport : Ind Airport ; -fun MoutiersAirport : Ind Airport ; + fun MoyaleAirportKenya : Ind Airport ; -fun MouyondziAirport : Ind Airport ; + fun MoyoAirport : Ind Airport ; -fun MoyaleAirport : Ind Airport ; + fun MoyobambaAirport : Ind Airport ; -fun MoyaleAirportKenya : Ind Airport ; + fun MpachaAirport : Ind Airport ; -fun MoyoAirport : Ind Airport ; + fun MtBuffaloAirport : Ind Airport ; -fun MoyobambaAirport : Ind Airport ; + fun MtCavenaghNorthernTerritoryAirport : Ind Airport ; -fun MpachaAirport : Ind Airport ; + fun MtFullStopAirport : Ind Airport ; -fun MtBuffaloAirport : Ind Airport ; + fun MtHouseWesternAustraliaAirport : Ind Airport ; -fun MtCavenaghNorthernTerritoryAirport : Ind Airport ; + fun MtSanfordNorthernTerritoryAirport : Ind Airport ; -fun MtFullStopAirport : Ind Airport ; + fun MtSwanNorthernTerritoryAirport : Ind Airport ; -fun MtHouseWesternAustraliaAirport : Ind Airport ; + fun MtwaraAirport : Ind Airport ; -fun MtSanfordNorthernTerritoryAirport : Ind Airport ; + fun MuccanWesternAustraliaAirport : Ind Airport ; -fun MtSwanNorthernTerritoryAirport : Ind Airport ; + fun MucuriBAAirport : Ind Airport ; -fun MtwaraAirport : Ind Airport ; + fun MudanjiangAirport : Ind Airport ; -fun MuccanWesternAustraliaAirport : Ind Airport ; + fun MueoAirport : Ind Airport ; -fun MucuriBAAirport : Ind Airport ; + fun MuiAirport : Ind Airport ; -fun MudanjiangAirport : Ind Airport ; + fun MuirArmyAirFieldPAAirport : Ind Airport ; -fun MueoAirport : Ind Airport ; + fun MukahSarawakAirport : Ind Airport ; -fun MuiAirport : Ind Airport ; + fun MukallaAirport : Ind Airport ; -fun MuirArmyAirFieldPAAirport : Ind Airport ; + fun MukeirasAirport : Ind Airport ; -fun MukahSarawakAirport : Ind Airport ; + fun MukhinoBuryatiaAirport : Ind Airport ; -fun MukallaAirport : Ind Airport ; + fun MukoMukoAirport : Ind Airport ; -fun MukeirasAirport : Ind Airport ; + fun MulatosAirport : Ind Airport ; -fun MukhinoBuryatiaAirport : Ind Airport ; + fun MulegeAirport : Ind Airport ; -fun MukoMukoAirport : Ind Airport ; + fun MulgaParkNorthernTerritoryAirport : Ind Airport ; -fun MulatosAirport : Ind Airport ; + fun MuliaAirport : Ind Airport ; -fun MulegeAirport : Ind Airport ; + fun MulkaSouthAustraliaAirport : Ind Airport ; -fun MulgaParkNorthernTerritoryAirport : Ind Airport ; + fun MullAirport : Ind Airport ; -fun MuliaAirport : Ind Airport ; + fun MullewaWesternAustraliaAirport : Ind Airport ; -fun MulkaSouthAustraliaAirport : Ind Airport ; + fun MultanAirport : Ind Airport ; -fun MullAirport : Ind Airport ; + fun MuluAirport : Ind Airport ; -fun MullewaWesternAustraliaAirport : Ind Airport ; + fun MumiasAirport : Ind Airport ; -fun MultanAirport : Ind Airport ; + fun MunbilAirport : Ind Airport ; -fun MuluAirport : Ind Airport ; + fun MunchenAirport : Ind Airport ; -fun MumiasAirport : Ind Airport ; + fun MundaNewGeorgiaIsAirport : Ind Airport ; -fun MunbilAirport : Ind Airport ; + fun MundukuAirport : Ind Airport ; -fun MunchenAirport : Ind Airport ; + fun MungeranieSouthAustraliaAirport : Ind Airport ; -fun MundaNewGeorgiaIsAirport : Ind Airport ; + fun MunicipalPAAirport : Ind Airport ; -fun MundukuAirport : Ind Airport ; + fun MuongSaiAirport : Ind Airport ; -fun MungeranieSouthAustraliaAirport : Ind Airport ; + fun MuriaeMGAirport : Ind Airport ; -fun MunicipalPAAirport : Ind Airport ; + fun MurmanskMurmanskAirport : Ind Airport ; -fun MuongSaiAirport : Ind Airport ; + fun MurrayBayNTAirport : Ind Airport ; -fun MuriaeMGAirport : Ind Airport ; + fun MurrayIslandsQueenslandAirport : Ind Airport ; -fun MurmanskMurmanskAirport : Ind Airport ; + fun MurtalaMuhammedLagosAirport : Ind Airport ; -fun MurrayBayNTAirport : Ind Airport ; + fun MuscatineMunicipalIAAirport : Ind Airport ; -fun MurrayIslandsQueenslandAirport : Ind Airport ; + fun MuscleShoalsRegionalALAirport : Ind Airport ; -fun MurtalaMuhammedLagosAirport : Ind Airport ; + fun MusgraveQueenslandAirport : Ind Airport ; -fun MuscatineMunicipalIAAirport : Ind Airport ; + fun MushaAirport : Ind Airport ; -fun MuscleShoalsRegionalALAirport : Ind Airport ; + fun MuskokaONAirport : Ind Airport ; -fun MusgraveQueenslandAirport : Ind Airport ; + fun MuskratDamONAirport : Ind Airport ; -fun MushaAirport : Ind Airport ; + fun MusomaAirport : Ind Airport ; -fun MuskokaONAirport : Ind Airport ; + fun MussauAirport : Ind Airport ; -fun MuskratDamONAirport : Ind Airport ; + fun MustinALFPAAirport : Ind Airport ; -fun MusomaAirport : Ind Airport ; + fun MustiqueIslandAirport : Ind Airport ; -fun MussauAirport : Ind Airport ; + fun MutareAirport : Ind Airport ; -fun MustinALFPAAirport : Ind Airport ; + fun MutiaraPaluAirport : Ind Airport ; -fun MustiqueIslandAirport : Ind Airport ; + fun MutingAirport : Ind Airport ; -fun MutareAirport : Ind Airport ; + fun MuttaburraQueenslandAirport : Ind Airport ; -fun MutiaraPaluAirport : Ind Airport ; + fun MuzaffarabadAirport : Ind Airport ; -fun MutingAirport : Ind Airport ; + fun MuzaffarnagarAirport : Ind Airport ; -fun MuttaburraQueenslandAirport : Ind Airport ; + fun MuzaffarpurAirport : Ind Airport ; -fun MuzaffarabadAirport : Ind Airport ; + fun MwaduiAirport : Ind Airport ; -fun MuzaffarnagarAirport : Ind Airport ; + fun MwanaLamuAirport : Ind Airport ; -fun MuzaffarpurAirport : Ind Airport ; + fun MwanzaAirport : Ind Airport ; -fun MwaduiAirport : Ind Airport ; + fun MwekaAirport : Ind Airport ; -fun MwanaLamuAirport : Ind Airport ; + fun MyeikMerguiAirport : Ind Airport ; -fun MwanzaAirport : Ind Airport ; + fun MyitkyinaAirport : Ind Airport ; -fun MwekaAirport : Ind Airport ; + fun MykolayivNikolayevMykolayivAirport : Ind Airport ; -fun MyeikMerguiAirport : Ind Airport ; + fun MyroodahAirport : Ind Airport ; -fun MyitkyinaAirport : Ind Airport ; + fun MyrtleBeachAirForceBaseSCAirport : Ind Airport ; -fun MykolayivNikolayevMykolayivAirport : Ind Airport ; + fun MysoreAirport : Ind Airport ; -fun MyroodahAirport : Ind Airport ; + fun MytileneMitiliniLesbosIslandAirport : Ind Airport ; -fun MyrtleBeachAirForceBaseSCAirport : Ind Airport ; + fun MzambaAirport : Ind Airport ; -fun MysoreAirport : Ind Airport ; + fun MzuzuAirport : Ind Airport ; -fun MytileneMitiliniLesbosIslandAirport : Ind Airport ; + fun NDjamenaAirport : Ind Airport ; -fun MzambaAirport : Ind Airport ; + fun NDolaAirport : Ind Airport ; -fun MzuzuAirport : Ind Airport ; + fun NDoloKinshasaAirport : Ind Airport ; -fun NDjamenaAirport : Ind Airport ; + fun NGaoundereAirport : Ind Airport ; -fun NDolaAirport : Ind Airport ; + fun NKongsambaAirport : Ind Airport ; -fun NDoloKinshasaAirport : Ind Airport ; + fun NRCMIAirport : Ind Airport ; -fun NGaoundereAirport : Ind Airport ; + fun NZerekoreAirport : Ind Airport ; -fun NKongsambaAirport : Ind Airport ; + fun NaberezhnyyeChelnyTatarstanAirport : Ind Airport ; -fun NRCMIAirport : Ind Airport ; + fun NabireAirport : Ind Airport ; -fun NZerekoreAirport : Ind Airport ; + fun NacalaAirport : Ind Airport ; -fun NaberezhnyyeChelnyTatarstanAirport : Ind Airport ; + fun NachingweaAirport : Ind Airport ; -fun NabireAirport : Ind Airport ; + fun NadiAirport : Ind Airport ; -fun NacalaAirport : Ind Airport ; + fun NadorAirport : Ind Airport ; -fun NachingweaAirport : Ind Airport ; + fun NadymTyumenAirport : Ind Airport ; -fun NadiAirport : Ind Airport ; + fun NadzabLaeAirport : Ind Airport ; -fun NadorAirport : Ind Airport ; + fun NagaAirport : Ind Airport ; -fun NadymTyumenAirport : Ind Airport ; + fun NaganoAirport : Ind Airport ; -fun NadzabLaeAirport : Ind Airport ; + fun NagasakiAirport : Ind Airport ; -fun NagaAirport : Ind Airport ; + fun NagpurAirport : Ind Airport ; -fun NaganoAirport : Ind Airport ; + fun NahaAirport : Ind Airport ; -fun NagasakiAirport : Ind Airport ; + fun NahaSangiheAirport : Ind Airport ; -fun NagpurAirport : Ind Airport ; + fun NainNFAirport : Ind Airport ; -fun NahaAirport : Ind Airport ; + fun NakashibetsuAirport : Ind Airport ; -fun NahaSangiheAirport : Ind Airport ; + fun NakhonRatchasimaAirport : Ind Airport ; -fun NainNFAirport : Ind Airport ; + fun NakhonSiThammaratAirport : Ind Airport ; -fun NakashibetsuAirport : Ind Airport ; + fun NakinaONAirport : Ind Airport ; -fun NakhonRatchasimaAirport : Ind Airport ; + fun NaknekAKAirport : Ind Airport ; -fun NakhonSiThammaratAirport : Ind Airport ; + fun NakuruAirport : Ind Airport ; -fun NakinaONAirport : Ind Airport ; + fun NalchikKabardinoBalkariaAirport : Ind Airport ; -fun NaknekAKAirport : Ind Airport ; + fun NamanganNamanganAirport : Ind Airport ; -fun NakuruAirport : Ind Airport ; + fun NamaoFieldABAirport : Ind Airport ; -fun NalchikKabardinoBalkariaAirport : Ind Airport ; + fun NambourQueenslandAirport : Ind Airport ; -fun NamanganNamanganAirport : Ind Airport ; + fun NambuccaHeadsNewSouthWalesAirport : Ind Airport ; -fun NamaoFieldABAirport : Ind Airport ; + fun NamleaAirport : Ind Airport ; -fun NambourQueenslandAirport : Ind Airport ; + fun NamorikNamorikAirport : Ind Airport ; -fun NambuccaHeadsNewSouthWalesAirport : Ind Airport ; + fun NamroleBuruIslandAirport : Ind Airport ; -fun NamleaAirport : Ind Airport ; + fun NamsangAirport : Ind Airport ; -fun NamorikNamorikAirport : Ind Airport ; + fun NamsosAirport : Ind Airport ; -fun NamroleBuruIslandAirport : Ind Airport ; + fun NamtuAirport : Ind Airport ; -fun NamsangAirport : Ind Airport ; + fun NamuAirport : Ind Airport ; -fun NamsosAirport : Ind Airport ; + fun NamuBCAirport : Ind Airport ; -fun NamtuAirport : Ind Airport ; + fun NamudiAirport : Ind Airport ; -fun NamuAirport : Ind Airport ; + fun NamutoniAirport : Ind Airport ; -fun NamuBCAirport : Ind Airport ; + fun NanAirport : Ind Airport ; -fun NamudiAirport : Ind Airport ; + fun NanYuanAirBaseBeijingAirport : Ind Airport ; -fun NamutoniAirport : Ind Airport ; + fun NanaimoBCAirport : Ind Airport ; -fun NanAirport : Ind Airport ; + fun NanaimoHarbourSeaplaneBaseBCAirport : Ind Airport ; -fun NanYuanAirBaseBeijingAirport : Ind Airport ; + fun NanchongAirport : Ind Airport ; -fun NanaimoBCAirport : Ind Airport ; + fun NandedAirport : Ind Airport ; -fun NanaimoHarbourSeaplaneBaseBCAirport : Ind Airport ; + fun NangadeAirport : Ind Airport ; -fun NanchongAirport : Ind Airport ; + fun NangapinohAirport : Ind Airport ; -fun NandedAirport : Ind Airport ; + fun NanisivikNTAirport : Ind Airport ; -fun NangadeAirport : Ind Airport ; + fun NanjingAirport : Ind Airport ; -fun NangapinohAirport : Ind Airport ; + fun NankiShirahanaAirport : Ind Airport ; -fun NanisivikNTAirport : Ind Airport ; + fun NankinaAirport : Ind Airport ; -fun NanjingAirport : Ind Airport ; + fun NanningAirport : Ind Airport ; -fun NankiShirahanaAirport : Ind Airport ; + fun NantongAirport : Ind Airport ; -fun NankinaAirport : Ind Airport ; + fun NanuqueMGAirport : Ind Airport ; -fun NanningAirport : Ind Airport ; + fun NanyangAirport : Ind Airport ; -fun NantongAirport : Ind Airport ; + fun NanyukiAirport : Ind Airport ; -fun NanuqueMGAirport : Ind Airport ; + fun NaoroAirport : Ind Airport ; -fun NanyangAirport : Ind Airport ; + fun NapakiakAKAirport : Ind Airport ; -fun NanyukiAirport : Ind Airport ; + fun NapaskiakAKAirport : Ind Airport ; -fun NaoroAirport : Ind Airport ; + fun NapierHastingsAirport : Ind Airport ; -fun NapakiakAKAirport : Ind Airport ; + fun NappaMerryQueenslandAirport : Ind Airport ; -fun NapaskiakAKAirport : Ind Airport ; + fun NapperbyNorthernTerritoryAirport : Ind Airport ; -fun NapierHastingsAirport : Ind Airport ; + fun NapukaAirport : Ind Airport ; -fun NappaMerryQueenslandAirport : Ind Airport ; + fun NaraAirport : Ind Airport ; -fun NapperbyNorthernTerritoryAirport : Ind Airport ; + fun NaracoorteSouthAustraliaAirport : Ind Airport ; -fun NapukaAirport : Ind Airport ; + fun NarathiwatAirport : Ind Airport ; -fun NaraAirport : Ind Airport ; + fun NareAirport : Ind Airport ; -fun NaracoorteSouthAustraliaAirport : Ind Airport ; + fun NarganaAirport : Ind Airport ; -fun NarathiwatAirport : Ind Airport ; + fun NaritaTokyoAirport : Ind Airport ; -fun NareAirport : Ind Airport ; + fun NaroomaAirport : Ind Airport ; -fun NarganaAirport : Ind Airport ; + fun NarrabriNewSouthWalesAirport : Ind Airport ; -fun NaritaTokyoAirport : Ind Airport ; + fun NarranderaNewSouthWalesAirport : Ind Airport ; -fun NaroomaAirport : Ind Airport ; + fun NarroginWesternAustraliaAirport : Ind Airport ; -fun NarrabriNewSouthWalesAirport : Ind Airport ; + fun NarromineNewSouthWalesAirport : Ind Airport ; -fun NarranderaNewSouthWalesAirport : Ind Airport ; + fun NarssarssuaqAirport : Ind Airport ; -fun NarroginWesternAustraliaAirport : Ind Airport ; + fun NartronFieldMIAirport : Ind Airport ; -fun NarromineNewSouthWalesAirport : Ind Airport ; + fun NarumAirport : Ind Airport ; -fun NarssarssuaqAirport : Ind Airport ; + fun NassauSeaplaneBaseNewProvidenceAirport : Ind Airport ; -fun NartronFieldMIAirport : Ind Airport ; + fun NatadolaAirport : Ind Airport ; -fun NarumAirport : Ind Airport ; + fun NatalRNAirport : Ind Airport ; -fun NassauSeaplaneBaseNewProvidenceAirport : Ind Airport ; + fun NatashquanQCAirport : Ind Airport ; -fun NatadolaAirport : Ind Airport ; + fun NatitingouAirport : Ind Airport ; -fun NatalRNAirport : Ind Airport ; + fun NatunaRanaiAirport : Ind Airport ; -fun NatashquanQCAirport : Ind Airport ; + fun NaukitiAKAirport : Ind Airport ; -fun NatitingouAirport : Ind Airport ; + fun NausoriInternationalSuvaAirport : Ind Airport ; -fun NatunaRanaiAirport : Ind Airport ; + fun NavegantesAirport : Ind Airport ; -fun NaukitiAKAirport : Ind Airport ; + fun NawabShahAirport : Ind Airport ; -fun NausoriInternationalSuvaAirport : Ind Airport ; + fun NazcaAirport : Ind Airport ; -fun NavegantesAirport : Ind Airport ; + fun NdeleAirport : Ind Airport ; -fun NawabShahAirport : Ind Airport ; + fun NecocheaAirport : Ind Airport ; -fun NazcaAirport : Ind Airport ; + fun NecocliAirport : Ind Airport ; -fun NdeleAirport : Ind Airport ; + fun NeftaTozeurAirport : Ind Airport ; -fun NecocheaAirport : Ind Airport ; + fun NefteyuganskTyumenAirport : Ind Airport ; -fun NecocliAirport : Ind Airport ; + fun NegginanMBAirport : Ind Airport ; -fun NeftaTozeurAirport : Ind Airport ; + fun NegrilAirport : Ind Airport ; -fun NefteyuganskTyumenAirport : Ind Airport ; + fun NeivaAirport : Ind Airport ; -fun NegginanMBAirport : Ind Airport ; + fun NekemeteAirport : Ind Airport ; -fun NegrilAirport : Ind Airport ; + fun NekemptAirport : Ind Airport ; -fun NeivaAirport : Ind Airport ; + fun NellisAirForceBaseNVAirport : Ind Airport ; -fun NekemeteAirport : Ind Airport ; + fun NelsonAirport : Ind Airport ; -fun NekemptAirport : Ind Airport ; + fun NelsonBCAirport : Ind Airport ; -fun NellisAirForceBaseNVAirport : Ind Airport ; + fun NelsonLagoonAKAirport : Ind Airport ; -fun NelsonAirport : Ind Airport ; + fun NelspruitAirport : Ind Airport ; -fun NelsonBCAirport : Ind Airport ; + fun NemiscauQCAirport : Ind Airport ; -fun NelsonLagoonAKAirport : Ind Airport ; + fun NephiMunicipalUTAirport : Ind Airport ; -fun NelspruitAirport : Ind Airport ; + fun NeryungriYakutiaSakhaAirport : Ind Airport ; -fun NemiscauQCAirport : Ind Airport ; + fun NeuIsenburgAirport : Ind Airport ; -fun NephiMunicipalUTAirport : Ind Airport ; + fun NeuquenAirport : Ind Airport ; -fun NeryungriYakutiaSakhaAirport : Ind Airport ; + fun NevadaCountyAirParkCAAirport : Ind Airport ; -fun NeuIsenburgAirport : Ind Airport ; + fun NevadaMunicipalMOAirport : Ind Airport ; -fun NeuquenAirport : Ind Airport ; + fun NeverasAirport : Ind Airport ; -fun NevadaCountyAirParkCAAirport : Ind Airport ; + fun NewCastleHenryCountyMunicipalINAirport : Ind Airport ; -fun NevadaMunicipalMOAirport : Ind Airport ; + fun NewChenegaAKAirport : Ind Airport ; -fun NeverasAirport : Ind Airport ; + fun NewHalfaAirport : Ind Airport ; -fun NewCastleHenryCountyMunicipalINAirport : Ind Airport ; + fun NewMoonQueenslandAirport : Ind Airport ; -fun NewChenegaAKAirport : Ind Airport ; + fun NewOrleansInternationalAirportMoisantFieldLAAirport : Ind Airport ; -fun NewHalfaAirport : Ind Airport ; + fun NewOrleansNavalAirStationAlvinCallenderFieldLAAirport : Ind Airport ; -fun NewMoonQueenslandAirport : Ind Airport ; + fun NewPlymouthAirport : Ind Airport ; -fun NewOrleansInternationalAirportMoisantFieldLAAirport : Ind Airport ; + fun NewRichmondMunicipalWIAirport : Ind Airport ; -fun NewOrleansNavalAirStationAlvinCallenderFieldLAAirport : Ind Airport ; + fun NewRiverValleyVAAirport : Ind Airport ; -fun NewPlymouthAirport : Ind Airport ; + fun NewUlmMunicipalMNAirport : Ind Airport ; -fun NewRichmondMunicipalWIAirport : Ind Airport ; + fun NewValleyAirport : Ind Airport ; -fun NewRiverValleyVAAirport : Ind Airport ; + fun NewWestminsterWaterAerodromeBCAirport : Ind Airport ; -fun NewUlmMunicipalMNAirport : Ind Airport ; + fun NewYorkSkyportsIncSeaplaneBaseNYAirport : Ind Airport ; -fun NewValleyAirport : Ind Airport ; + fun NewcastleAirport : Ind Airport ; -fun NewWestminsterWaterAerodromeBCAirport : Ind Airport ; + fun NewcastleAirportUnitedKingdom : Ind Airport ; -fun NewYorkSkyportsIncSeaplaneBaseNYAirport : Ind Airport ; + fun NewcastleNevisAirport : Ind Airport ; -fun NewcastleAirport : Ind Airport ; + fun NewmanWesternAustraliaAirport : Ind Airport ; -fun NewcastleAirportUnitedKingdom : Ind Airport ; + fun NewportMunicipalORAirport : Ind Airport ; -fun NewcastleNevisAirport : Ind Airport ; + fun NewportNewsWilliamsburgInternationalVAAirport : Ind Airport ; -fun NewmanWesternAustraliaAirport : Ind Airport ; + fun NewportStateRIAirport : Ind Airport ; -fun NewportMunicipalORAirport : Ind Airport ; + fun NewryNorthernTerritoryAirport : Ind Airport ; -fun NewportNewsWilliamsburgInternationalVAAirport : Ind Airport ; + fun NewtokSeaplaneBaseAKAirport : Ind Airport ; -fun NewportStateRIAirport : Ind Airport ; + fun NewtonMunicipalIAAirport : Ind Airport ; -fun NewryNorthernTerritoryAirport : Ind Airport ; + fun NeyveliAirport : Ind Airport ; -fun NewtokSeaplaneBaseAKAirport : Ind Airport ; + fun NgauAirport : Ind Airport ; -fun NewtonMunicipalIAAirport : Ind Airport ; + fun NgivaOngivaOndjivaAirport : Ind Airport ; -fun NeyveliAirport : Ind Airport ; + fun NgomaAirport : Ind Airport ; -fun NgauAirport : Ind Airport ; + fun NgukurrNorthernTerritoryAirport : Ind Airport ; -fun NgivaOngivaOndjivaAirport : Ind Airport ; + fun NhaTrangAirport : Ind Airport ; -fun NgomaAirport : Ind Airport ; + fun NiameyAirport : Ind Airport ; -fun NgukurrNorthernTerritoryAirport : Ind Airport ; + fun NiamtougouLamaKaraAirport : Ind Airport ; -fun NhaTrangAirport : Ind Airport ; + fun NiblackAKAirport : Ind Airport ; -fun NiameyAirport : Ind Airport ; + fun NichenCoveAKAirport : Ind Airport ; -fun NiamtougouLamaKaraAirport : Ind Airport ; + fun NichinCoveSeaplaneBaseAKAirport : Ind Airport ; -fun NiblackAKAirport : Ind Airport ; + fun NicholsonPeninsulaWaterAerodromeNTAirport : Ind Airport ; -fun NichenCoveAKAirport : Ind Airport ; + fun NicholsonWesternAustraliaAirport : Ind Airport ; -fun NichinCoveSeaplaneBaseAKAirport : Ind Airport ; + fun NicosiaAirport : Ind Airport ; -fun NicholsonPeninsulaWaterAerodromeNTAirport : Ind Airport ; + fun NicoyaAirport : Ind Airport ; -fun NicholsonWesternAustraliaAirport : Ind Airport ; + fun NiftyWesternAustraliaAirport : Ind Airport ; -fun NicosiaAirport : Ind Airport ; + fun NigerumAirport : Ind Airport ; -fun NicoyaAirport : Ind Airport ; + fun NightmuteAKAirport : Ind Airport ; -fun NiftyWesternAustraliaAirport : Ind Airport ; + fun NikolaiAKAirport : Ind Airport ; -fun NigerumAirport : Ind Airport ; + fun NikunauAirport : Ind Airport ; -fun NightmuteAKAirport : Ind Airport ; + fun NimbaAirport : Ind Airport ; -fun NikolaiAKAirport : Ind Airport ; + fun NingboAirport : Ind Airport ; -fun NikunauAirport : Ind Airport ; + fun NinilchikAKAirport : Ind Airport ; -fun NimbaAirport : Ind Airport ; + fun NinoyAquinoInternationalManilaAirport : Ind Airport ; -fun NingboAirport : Ind Airport ; + fun NiokiAirport : Ind Airport ; -fun NinilchikAKAirport : Ind Airport ; + fun NiokoloKobaAirport : Ind Airport ; -fun NinoyAquinoInternationalManilaAirport : Ind Airport ; + fun NioroAirport : Ind Airport ; -fun NiokiAirport : Ind Airport ; + fun NiortAirport : Ind Airport ; -fun NiokoloKobaAirport : Ind Airport ; + fun NipaAirport : Ind Airport ; -fun NioroAirport : Ind Airport ; + fun NipawinSKAirport : Ind Airport ; -fun NiortAirport : Ind Airport ; + fun NiquelandiaGOAirport : Ind Airport ; -fun NipaAirport : Ind Airport ; + fun NitchequonQCAirport : Ind Airport ; -fun NipawinSKAirport : Ind Airport ; + fun NiteroiRJAirport : Ind Airport ; -fun NiquelandiaGOAirport : Ind Airport ; + fun NiuafoouAirport : Ind Airport ; -fun NitchequonQCAirport : Ind Airport ; + fun NiuatoputapuAirport : Ind Airport ; -fun NiteroiRJAirport : Ind Airport ; + fun NiuqsutAKAirport : Ind Airport ; -fun NiuafoouAirport : Ind Airport ; + fun NizhevartovskTyumenAirport : Ind Airport ; -fun NiuatoputapuAirport : Ind Airport ; + fun NkanAirport : Ind Airport ; -fun NiuqsutAKAirport : Ind Airport ; + fun NkausAirport : Ind Airport ; -fun NizhevartovskTyumenAirport : Ind Airport ; + fun NkayiAirport : Ind Airport ; -fun NkanAirport : Ind Airport ; + fun NkoloAirport : Ind Airport ; -fun NkausAirport : Ind Airport ; + fun NoatakAKAirport : Ind Airport ; -fun NkayiAirport : Ind Airport ; + fun NogalesAirport : Ind Airport ; -fun NkoloAirport : Ind Airport ; + fun NogalesInternationalAZAirport : Ind Airport ; -fun NoatakAKAirport : Ind Airport ; + fun NojabrxskAirport : Ind Airport ; -fun NogalesAirport : Ind Airport ; + fun NomadRiverAirport : Ind Airport ; -fun NogalesInternationalAZAirport : Ind Airport ; + fun NomeAKAirport : Ind Airport ; -fun NojabrxskAirport : Ind Airport ; + fun NondaltonAKAirport : Ind Airport ; -fun NomadRiverAirport : Ind Airport ; + fun NonoutiAirport : Ind Airport ; -fun NomeAKAirport : Ind Airport ; + fun NoonkanbahWesternAustraliaAirport : Ind Airport ; -fun NondaltonAKAirport : Ind Airport ; + fun NoosaQueenslandAirport : Ind Airport ; -fun NonoutiAirport : Ind Airport ; + fun NoosavilleQueenslandAirport : Ind Airport ; -fun NoonkanbahWesternAustraliaAirport : Ind Airport ; + fun NootkaSoundBCAirport : Ind Airport ; -fun NoosaQueenslandAirport : Ind Airport ; + fun NoraAKAirport : Ind Airport ; -fun NoosavilleQueenslandAirport : Ind Airport ; + fun NorddeichAirport : Ind Airport ; -fun NootkaSoundBCAirport : Ind Airport ; + fun NordenAirport : Ind Airport ; -fun NoraAKAirport : Ind Airport ; + fun NorderneyAirport : Ind Airport ; -fun NorddeichAirport : Ind Airport ; + fun NordfjordurAirport : Ind Airport ; -fun NordenAirport : Ind Airport ; + fun NordholzAirport : Ind Airport ; -fun NorderneyAirport : Ind Airport ; + fun NorfolkInternationalVAAirport : Ind Airport ; -fun NordfjordurAirport : Ind Airport ; + fun NorfolkIslandNorfolkIslandAirport : Ind Airport ; -fun NordholzAirport : Ind Airport ; + fun NorfolkNavalAirStationChambersFieldVAAirport : Ind Airport ; -fun NorfolkInternationalVAAirport : Ind Airport ; + fun NorilskNorylskNorylskAirport : Ind Airport ; -fun NorfolkIslandNorfolkIslandAirport : Ind Airport ; + fun NormanWellsNTAirport : Ind Airport ; -fun NorfolkNavalAirStationChambersFieldVAAirport : Ind Airport ; + fun NormansCayAirport : Ind Airport ; -fun NorilskNorylskNorylskAirport : Ind Airport ; + fun NormantonQueenslandAirport : Ind Airport ; -fun NormanWellsNTAirport : Ind Airport ; + fun NorsemanWesternAustraliaAirport : Ind Airport ; -fun NormansCayAirport : Ind Airport ; + fun NorsupAirport : Ind Airport ; -fun NormantonQueenslandAirport : Ind Airport ; + fun NorthAirForceAuxiliarySCAirport : Ind Airport ; -fun NorsemanWesternAustraliaAirport : Ind Airport ; + fun NorthBattlefordSKAirport : Ind Airport ; -fun NorsupAirport : Ind Airport ; + fun NorthBayONAirport : Ind Airport ; -fun NorthAirForceAuxiliarySCAirport : Ind Airport ; + fun NorthBendMunicipalORAirport : Ind Airport ; -fun NorthBattlefordSKAirport : Ind Airport ; + fun NorthCaicosAirport : Ind Airport ; -fun NorthBayONAirport : Ind Airport ; + fun NorthCentralStateRIAirport : Ind Airport ; -fun NorthBendMunicipalORAirport : Ind Airport ; + fun NorthDallasHeliportTXAirport : Ind Airport ; -fun NorthCaicosAirport : Ind Airport ; + fun NorthForkValleyCOAirport : Ind Airport ; -fun NorthCentralStateRIAirport : Ind Airport ; + fun NorthIslandNavalAirStationHalseyFieldCAAirport : Ind Airport ; -fun NorthDallasHeliportTXAirport : Ind Airport ; + fun NorthLasVegasAirTerminalNVAirport : Ind Airport ; -fun NorthForkValleyCOAirport : Ind Airport ; + fun NorthPlatteRegionalNEAirport : Ind Airport ; -fun NorthIslandNavalAirStationHalseyFieldCAAirport : Ind Airport ; + fun NorthRaleighNCAirport : Ind Airport ; -fun NorthLasVegasAirTerminalNVAirport : Ind Airport ; + fun NorthRimAZAirport : Ind Airport ; -fun NorthPlatteRegionalNEAirport : Ind Airport ; + fun NorthRonaldswayAirport : Ind Airport ; -fun NorthRaleighNCAirport : Ind Airport ; + fun NorthSeaplaneBaseBiminiAirport : Ind Airport ; -fun NorthRimAZAirport : Ind Airport ; + fun NorthSpiritLakeONAirport : Ind Airport ; -fun NorthRonaldswayAirport : Ind Airport ; + fun NorthVernonINAirport : Ind Airport ; -fun NorthSeaplaneBaseBiminiAirport : Ind Airport ; + fun NorthWhaleSeaplaneBaseAKAirport : Ind Airport ; -fun NorthSpiritLakeONAirport : Ind Airport ; + fun NorthamptonAirportWitteringRAFStationEnglandAirport : Ind Airport ; -fun NorthVernonINAirport : Ind Airport ; + fun NortheastCapeAKAirport : Ind Airport ; -fun NorthWhaleSeaplaneBaseAKAirport : Ind Airport ; + fun NortheastPhiladelphiaPAAirport : Ind Airport ; -fun NorthamptonAirportWitteringRAFStationEnglandAirport : Ind Airport ; + fun NorthernAroostookRegionalMEAirport : Ind Airport ; -fun NortheastCapeAKAirport : Ind Airport ; + fun NorthernMaineRegionalAirportatPresqueIsleMEAirport : Ind Airport ; -fun NortheastPhiladelphiaPAAirport : Ind Airport ; + fun NorthholtAerodromeEnglandAirport : Ind Airport ; -fun NorthernAroostookRegionalMEAirport : Ind Airport ; + fun NorthsideMIAirport : Ind Airport ; -fun NorthernMaineRegionalAirportatPresqueIsleMEAirport : Ind Airport ; + fun NorthwayAKAirport : Ind Airport ; -fun NorthholtAerodromeEnglandAirport : Ind Airport ; + fun NortonMunicipalKSAirport : Ind Airport ; -fun NorthsideMIAirport : Ind Airport ; + fun NorwalkCTAirport : Ind Airport ; -fun NorthwayAKAirport : Ind Airport ; + fun NorwayHouseMBAirport : Ind Airport ; -fun NortonMunicipalKSAirport : Ind Airport ; + fun NorwichAirport : Ind Airport ; -fun NorwalkCTAirport : Ind Airport ; + fun NorwoodMemorialMAAirport : Ind Airport ; -fun NorwayHouseMBAirport : Ind Airport ; + fun NosaraBeachAirport : Ind Airport ; -fun NorwichAirport : Ind Airport ; + fun NotoddenAirport : Ind Airport ; -fun NorwoodMemorialMAAirport : Ind Airport ; + fun NouadhibouAirport : Ind Airport ; -fun NosaraBeachAirport : Ind Airport ; + fun NouakchottAirport : Ind Airport ; -fun NotoddenAirport : Ind Airport ; + fun NounaeAirport : Ind Airport ; -fun NouadhibouAirport : Ind Airport ; + fun NovaIguacuRJAirport : Ind Airport ; -fun NouakchottAirport : Ind Airport ; + fun NovaLamegoAirport : Ind Airport ; -fun NounaeAirport : Ind Airport ; + fun NovaXavantinaAirport : Ind Airport ; -fun NovaIguacuRJAirport : Ind Airport ; + fun NovgorodNovgorodAirport : Ind Airport ; -fun NovaLamegoAirport : Ind Airport ; + fun NoviSadAirport : Ind Airport ; -fun NovaXavantinaAirport : Ind Airport ; + fun NovoAripuanaAirport : Ind Airport ; -fun NovgorodNovgorodAirport : Ind Airport ; + fun NovoHamburgoRSAirport : Ind Airport ; -fun NoviSadAirport : Ind Airport ; + fun NovoalexeyevkaAbkhaziaAirport : Ind Airport ; -fun NovoAripuanaAirport : Ind Airport ; + fun NovokuznetskNovokuznetskAirport : Ind Airport ; -fun NovoHamburgoRSAirport : Ind Airport ; + fun NovorossiyskKrasnodarAirport : Ind Airport ; -fun NovoalexeyevkaAbkhaziaAirport : Ind Airport ; + fun NovyUrengoyAirport : Ind Airport ; -fun NovokuznetskNovokuznetskAirport : Ind Airport ; + fun NowataAirport : Ind Airport ; -fun NovorossiyskKrasnodarAirport : Ind Airport ; + fun NowraNewSouthWalesAirport : Ind Airport ; -fun NovyUrengoyAirport : Ind Airport ; + fun NowshahrAirport : Ind Airport ; -fun NowataAirport : Ind Airport ; + fun NsimalenInternationalYaoundeAirport : Ind Airport ; -fun NowraNewSouthWalesAirport : Ind Airport ; + fun NuernbergNurnbergAirport : Ind Airport ; -fun NowshahrAirport : Ind Airport ; + fun NuevaGuineaAirport : Ind Airport ; -fun NsimalenInternationalYaoundeAirport : Ind Airport ; + fun NuguriaAirport : Ind Airport ; -fun NuernbergNurnbergAirport : Ind Airport ; + fun NuiatoputapuAirport : Ind Airport ; -fun NuevaGuineaAirport : Ind Airport ; + fun NukuAirport : Ind Airport ; -fun NuguriaAirport : Ind Airport ; + fun NukuHivaMarquesasIslandsAirport : Ind Airport ; -fun NuiatoputapuAirport : Ind Airport ; + fun NukusKarakalpakstanAirport : Ind Airport ; -fun NukuAirport : Ind Airport ; + fun NukutavekeAirport : Ind Airport ; -fun NukuHivaMarquesasIslandsAirport : Ind Airport ; + fun NulatoAKAirport : Ind Airport ; -fun NukusKarakalpakstanAirport : Ind Airport ; + fun NullagineWesternAustraliaAirport : Ind Airport ; -fun NukutavekeAirport : Ind Airport ; + fun NullarborSouthAustraliaAirport : Ind Airport ; -fun NulatoAKAirport : Ind Airport ; + fun NumbulwarNorthernTerritoryAirport : Ind Airport ; -fun NullagineWesternAustraliaAirport : Ind Airport ; + fun NunapitchukAKAirport : Ind Airport ; -fun NullarborSouthAustraliaAirport : Ind Airport ; + fun NunchiaAirport : Ind Airport ; -fun NumbulwarNorthernTerritoryAirport : Ind Airport ; + fun NunukanBorneoAirport : Ind Airport ; -fun NunapitchukAKAirport : Ind Airport ; + fun NuoroAirport : Ind Airport ; -fun NunchiaAirport : Ind Airport ; + fun NuquiAirport : Ind Airport ; -fun NunukanBorneoAirport : Ind Airport ; + fun NushkiAirport : Ind Airport ; -fun NuoroAirport : Ind Airport ; + fun NutuveAirport : Ind Airport ; -fun NuquiAirport : Ind Airport ; + fun NutwoodDownsNorthernTerritoryAirport : Ind Airport ; -fun NushkiAirport : Ind Airport ; + fun NyackAKAirport : Ind Airport ; -fun NutuveAirport : Ind Airport ; + fun NyalaAirport : Ind Airport ; -fun NutwoodDownsNorthernTerritoryAirport : Ind Airport ; + fun NyaungUAirport : Ind Airport ; -fun NyackAKAirport : Ind Airport ; + fun NyeriAirport : Ind Airport ; -fun NyalaAirport : Ind Airport ; + fun NykopingAirport : Ind Airport ; -fun NyaungUAirport : Ind Airport ; + fun NynganNewSouthWalesAirport : Ind Airport ; -fun NyeriAirport : Ind Airport ; + fun NzoiaAirport : Ind Airport ; -fun NykopingAirport : Ind Airport ; + fun ONealINAirport : Ind Airport ; -fun NynganNewSouthWalesAirport : Ind Airport ; + fun OachasNeckAirport : Ind Airport ; -fun NzoiaAirport : Ind Airport ; + fun OakHarborAirParkWAAirport : Ind Airport ; -fun ONealINAirport : Ind Airport ; + fun OakeyQueenslandAirport : Ind Airport ; -fun OachasNeckAirport : Ind Airport ; + fun OaklandPontiacMIAirport : Ind Airport ; -fun OakHarborAirParkWAAirport : Ind Airport ; + fun OakleyMunicipalKSAirport : Ind Airport ; -fun OakeyQueenslandAirport : Ind Airport ; + fun OamaruAirport : Ind Airport ; -fun OaklandPontiacMIAirport : Ind Airport ; + fun ObanAirport : Ind Airport ; -fun OakleyMunicipalKSAirport : Ind Airport ; + fun ObanHeliportObanAirport : Ind Airport ; -fun OamaruAirport : Ind Airport ; + fun ObanQueenslandAirport : Ind Airport ; -fun ObanAirport : Ind Airport ; + fun ObanoAirport : Ind Airport ; -fun ObanHeliportObanAirport : Ind Airport ; + fun OberlinMunicipalKSAirport : Ind Airport ; -fun ObanQueenslandAirport : Ind Airport ; + fun ObidosPAAirport : Ind Airport ; -fun ObanoAirport : Ind Airport ; + fun ObihiroAirport : Ind Airport ; -fun OberlinMunicipalKSAirport : Ind Airport ; + fun OboAirport : Ind Airport ; -fun ObidosPAAirport : Ind Airport ; + fun ObockAirport : Ind Airport ; -fun ObihiroAirport : Ind Airport ; + fun OcalaMunicipalAirportJimTaylorFieldFLAirport : Ind Airport ; -fun OboAirport : Ind Airport ; + fun OcanaAirport : Ind Airport ; -fun ObockAirport : Ind Airport ; + fun OceanCityMunicipalMDAirport : Ind Airport ; -fun OcalaMunicipalAirportJimTaylorFieldFLAirport : Ind Airport ; + fun OceanFallsWaterAerodromeBCAirport : Ind Airport ; -fun OcanaAirport : Ind Airport ; + fun OceanReefClubFLAirport : Ind Airport ; -fun OceanCityMunicipalMDAirport : Ind Airport ; + fun OceanaNavalAirStationApolloSoucekFieldVAAirport : Ind Airport ; -fun OceanFallsWaterAerodromeBCAirport : Ind Airport ; + fun OceanicAKAirport : Ind Airport ; -fun OceanReefClubFLAirport : Ind Airport ; + fun OceansideMunicipalCAAirport : Ind Airport ; -fun OceanaNavalAirStationApolloSoucekFieldVAAirport : Ind Airport ; + fun OchoRiosAirport : Ind Airport ; -fun OceanicAKAirport : Ind Airport ; + fun OcontoMunicipalWIAirport : Ind Airport ; -fun OceansideMunicipalCAAirport : Ind Airport ; + fun OctevilleLeHavreAirport : Ind Airport ; -fun OchoRiosAirport : Ind Airport ; + fun OcussiAirport : Ind Airport ; -fun OcontoMunicipalWIAirport : Ind Airport ; + fun OddorMeancheyAirport : Ind Airport ; -fun OctevilleLeHavreAirport : Ind Airport ; + fun OdihamRAFStationEnglandAirport : Ind Airport ; -fun OcussiAirport : Ind Airport ; + fun OelweinMunicipalIAAirport : Ind Airport ; -fun OddorMeancheyAirport : Ind Airport ; + fun OenpelliNorthernTerritoryAirport : Ind Airport ; -fun OdihamRAFStationEnglandAirport : Ind Airport ; + fun OffuttAirForceBaseNEAirport : Ind Airport ; -fun OelweinMunicipalIAAirport : Ind Airport ; + fun OfuOfuIslandAirport : Ind Airport ; -fun OenpelliNorthernTerritoryAirport : Ind Airport ; + fun OgdenHinckleyUTAirport : Ind Airport ; -fun OffuttAirForceBaseNEAirport : Ind Airport ; + fun OgdensburgInternationalNYAirport : Ind Airport ; -fun OfuOfuIslandAirport : Ind Airport ; + fun OgeranangAirport : Ind Airport ; -fun OgdenHinckleyUTAirport : Ind Airport ; + fun OgleAirport : Ind Airport ; -fun OgdensburgInternationalNYAirport : Ind Airport ; + fun OgnAirport : Ind Airport ; -fun OgeranangAirport : Ind Airport ; + fun OgokiPostAerodromeONAirport : Ind Airport ; -fun OgleAirport : Ind Airport ; + fun OhioStateUniversityOHAirport : Ind Airport ; -fun OgnAirport : Ind Airport ; + fun OhridAirport : Ind Airport ; -fun OgokiPostAerodromeONAirport : Ind Airport ; + fun OiapoqueAPAirport : Ind Airport ; -fun OhioStateUniversityOHAirport : Ind Airport ; + fun OitaAirport : Ind Airport ; -fun OhridAirport : Ind Airport ; + fun OkabaAirport : Ind Airport ; -fun OiapoqueAPAirport : Ind Airport ; + fun OkadamaSapporoAirport : Ind Airport ; -fun OitaAirport : Ind Airport ; + fun OkaukuejoAirport : Ind Airport ; -fun OkabaAirport : Ind Airport ; + fun OkayamaAirport : Ind Airport ; -fun OkadamaSapporoAirport : Ind Airport ; + fun OkecieWarszawaWarsawAirport : Ind Airport ; -fun OkaukuejoAirport : Ind Airport ; + fun OkeechobeeCountyFLAirport : Ind Airport ; -fun OkayamaAirport : Ind Airport ; + fun OkiIslandAirport : Ind Airport ; -fun OkecieWarszawaWarsawAirport : Ind Airport ; + fun OkinawaRyukyuIsAirport : Ind Airport ; -fun OkeechobeeCountyFLAirport : Ind Airport ; + fun OkinoErabuAirport : Ind Airport ; -fun OkiIslandAirport : Ind Airport ; + fun OkmulgeeMunicipalOKAirport : Ind Airport ; -fun OkinawaRyukyuIsAirport : Ind Airport ; + fun OkondjaAirport : Ind Airport ; -fun OkinoErabuAirport : Ind Airport ; + fun OkoyoAirport : Ind Airport ; -fun OkmulgeeMunicipalOKAirport : Ind Airport ; + fun OksapminAirport : Ind Airport ; -fun OkondjaAirport : Ind Airport ; + fun OksibilAirport : Ind Airport ; -fun OkoyoAirport : Ind Airport ; + fun OkushiriAirport : Ind Airport ; -fun OksapminAirport : Ind Airport ; + fun OlafsfjordurAirport : Ind Airport ; -fun OksibilAirport : Ind Airport ; + fun OlafsvikAirport : Ind Airport ; -fun OkushiriAirport : Ind Airport ; + fun OlanchitoAirport : Ind Airport ; -fun OlafsfjordurAirport : Ind Airport ; + fun OlayaHerreraMedellinAirport : Ind Airport ; -fun OlafsvikAirport : Ind Airport ; + fun OldCrowYTAirport : Ind Airport ; -fun OlanchitoAirport : Ind Airport ; + fun OldFortBayQCAirport : Ind Airport ; -fun OlayaHerreraMedellinAirport : Ind Airport ; + fun OldHarborAKAirport : Ind Airport ; -fun OldCrowYTAirport : Ind Airport ; + fun OleanMunicipalNYAirport : Ind Airport ; -fun OldFortBayQCAirport : Ind Airport ; + fun OliveBranchMSAirport : Ind Airport ; -fun OldHarborAKAirport : Ind Airport ; + fun OlneyMunicipalTXAirport : Ind Airport ; -fun OleanMunicipalNYAirport : Ind Airport ; + fun OlneyNobleILAirport : Ind Airport ; -fun OliveBranchMSAirport : Ind Airport ; + fun OlomoucAirport : Ind Airport ; -fun OlneyMunicipalTXAirport : Ind Airport ; + fun OlpoiAirport : Ind Airport ; -fun OlneyNobleILAirport : Ind Airport ; + fun OlsobipAirport : Ind Airport ; -fun OlomoucAirport : Ind Airport ; + fun OlympiaWAAirport : Ind Airport ; -fun OlpoiAirport : Ind Airport ; + fun OlympicDamSouthAustraliaAirport : Ind Airport ; -fun OlsobipAirport : Ind Airport ; + fun OmagwaPortHarcourtAirport : Ind Airport ; -fun OlympiaWAAirport : Ind Airport ; + fun OmakWAAirport : Ind Airport ; -fun OlympicDamSouthAustraliaAirport : Ind Airport ; + fun OmarNBradleyMOAirport : Ind Airport ; -fun OmagwaPortHarcourtAirport : Ind Airport ; + fun OmboueAirport : Ind Airport ; -fun OmakWAAirport : Ind Airport ; + fun OmegaAirport : Ind Airport ; -fun OmarNBradleyMOAirport : Ind Airport ; + fun OmkalaiAirport : Ind Airport ; -fun OmboueAirport : Ind Airport ; + fun OmoraAirport : Ind Airport ; -fun OmegaAirport : Ind Airport ; + fun OmskOmskAirport : Ind Airport ; -fun OmkalaiAirport : Ind Airport ; + fun OmuraAirport : Ind Airport ; -fun OmoraAirport : Ind Airport ; + fun OmyiaAirport : Ind Airport ; -fun OmskOmskAirport : Ind Airport ; + fun OndangwaAirport : Ind Airport ; -fun OmuraAirport : Ind Airport ; + fun OneHundredEightMileRanchBCAirport : Ind Airport ; -fun OmyiaAirport : Ind Airport ; + fun OneidaCountyNYAirport : Ind Airport ; -fun OndangwaAirport : Ind Airport ; + fun OneontaMunicipalNYAirport : Ind Airport ; -fun OneHundredEightMileRanchBCAirport : Ind Airport ; + fun OnepusoAirport : Ind Airport ; -fun OneidaCountyNYAirport : Ind Airport ; + fun OnionBayAKAirport : Ind Airport ; -fun OneontaMunicipalNYAirport : Ind Airport ; + fun OnoILauAirport : Ind Airport ; -fun OnepusoAirport : Ind Airport ; + fun OnongeAirport : Ind Airport ; -fun OnionBayAKAirport : Ind Airport ; + fun OnotoaAirport : Ind Airport ; -fun OnoILauAirport : Ind Airport ; + fun OnslowWesternAustraliaAirport : Ind Airport ; -fun OnongeAirport : Ind Airport ; + fun OntarioInternationalCAAirport : Ind Airport ; -fun OnotoaAirport : Ind Airport ; + fun OntarioMunicipalORAirport : Ind Airport ; -fun OnslowWesternAustraliaAirport : Ind Airport ; + fun OntonagonCountyMIAirport : Ind Airport ; -fun OntarioInternationalCAAirport : Ind Airport ; + fun OodnadattaSouthAustraliaAirport : Ind Airport ; -fun OntarioMunicipalORAirport : Ind Airport ; + fun OpaLockaFLAirport : Ind Airport ; -fun OntonagonCountyMIAirport : Ind Airport ; + fun OpenBayAirport : Ind Airport ; -fun OodnadattaSouthAustraliaAirport : Ind Airport ; + fun OpuwaAirport : Ind Airport ; -fun OpaLockaFLAirport : Ind Airport ; + fun OradeaAirport : Ind Airport ; -fun OpenBayAirport : Ind Airport ; + fun OralUralskWestKazakhstanAirport : Ind Airport ; -fun OpuwaAirport : Ind Airport ; + fun OramAirport : Ind Airport ; -fun OradeaAirport : Ind Airport ; + fun OranAirport : Ind Airport ; -fun OralUralskWestKazakhstanAirport : Ind Airport ; + fun OrangeCountyNYAirport : Ind Airport ; -fun OramAirport : Ind Airport ; + fun OrangeMunicipalMAAirport : Ind Airport ; -fun OranAirport : Ind Airport ; + fun OrangeWalkAirport : Ind Airport ; -fun OrangeCountyNYAirport : Ind Airport ; + fun OrangeburgMunicipalSCAirport : Ind Airport ; -fun OrangeMunicipalMAAirport : Ind Airport ; + fun OranjemundAirport : Ind Airport ; -fun OrangeWalkAirport : Ind Airport ; + fun OrapaAirport : Ind Airport ; -fun OrangeburgMunicipalSCAirport : Ind Airport ; + fun OrchidBeachAirport : Ind Airport ; -fun OranjemundAirport : Ind Airport ; + fun OrdRiverWesternAustraliaAirport : Ind Airport ; -fun OrapaAirport : Ind Airport ; + fun OrduAirport : Ind Airport ; -fun OrchidBeachAirport : Ind Airport ; + fun OrebroAirport : Ind Airport ; -fun OrdRiverWesternAustraliaAirport : Ind Airport ; + fun OrenburgOrenburgAirport : Ind Airport ; -fun OrduAirport : Ind Airport ; + fun OriaAirport : Ind Airport ; -fun OrebroAirport : Ind Airport ; + fun OrientosNewSouthWalesAirport : Ind Airport ; -fun OrenburgOrenburgAirport : Ind Airport ; + fun OrinduikAirport : Ind Airport ; -fun OriaAirport : Ind Airport ; + fun OristamoAirport : Ind Airport ; -fun OrientosNewSouthWalesAirport : Ind Airport ; + fun OriximinaPAAirport : Ind Airport ; -fun OrinduikAirport : Ind Airport ; + fun OrlandAirport : Ind Airport ; -fun OristamoAirport : Ind Airport ; + fun OrlandoExecutiveFLAirport : Ind Airport ; -fun OriximinaPAAirport : Ind Airport ; + fun OrlandoInternationalFLAirport : Ind Airport ; -fun OrlandAirport : Ind Airport ; + fun OrlyParisAirport : Ind Airport ; -fun OrlandoExecutiveFLAirport : Ind Airport ; + fun OrmaraAirport : Ind Airport ; -fun OrlandoInternationalFLAirport : Ind Airport ; + fun OrmocAirport : Ind Airport ; -fun OrlyParisAirport : Ind Airport ; + fun OrnskoldsvikAirport : Ind Airport ; -fun OrmaraAirport : Ind Airport ; + fun OrocueAirport : Ind Airport ; -fun OrmocAirport : Ind Airport ; + fun OrovilleMunicipalCAAirport : Ind Airport ; -fun OrnskoldsvikAirport : Ind Airport ; + fun OrpheusIslandResortQueenslandAirport : Ind Airport ; -fun OrocueAirport : Ind Airport ; + fun OrskOrenburgAirport : Ind Airport ; -fun OrovilleMunicipalCAAirport : Ind Airport ; + fun OrtonvilleMunicipalAirportMartinsonFieldMNAirport : Ind Airport ; -fun OrpheusIslandResortQueenslandAirport : Ind Airport ; + fun OruroAirport : Ind Airport ; -fun OrskOrenburgAirport : Ind Airport ; + fun OsascoSPAirport : Ind Airport ; -fun OrtonvilleMunicipalAirportMartinsonFieldMNAirport : Ind Airport ; + fun OscodaWurtsmithMIAirport : Ind Airport ; -fun OruroAirport : Ind Airport ; + fun OshOshAirport : Ind Airport ; -fun OsascoSPAirport : Ind Airport ; + fun OshakatiAirport : Ind Airport ; -fun OscodaWurtsmithMIAirport : Ind Airport ; + fun OshawaONAirport : Ind Airport ; -fun OshOshAirport : Ind Airport ; + fun OshimaIslandAirport : Ind Airport ; -fun OshakatiAirport : Ind Airport ; + fun OsijekAirport : Ind Airport ; -fun OshawaONAirport : Ind Airport ; + fun OskaloosaMunicipalIAAirport : Ind Airport ; -fun OshimaIslandAirport : Ind Airport ; + fun OskarshamnAirport : Ind Airport ; -fun OsijekAirport : Ind Airport ; + fun OskemanUstKamenogorskEastKazakhstanAirport : Ind Airport ; -fun OskaloosaMunicipalIAAirport : Ind Airport ; + fun OsmanabadAirport : Ind Airport ; -fun OskarshamnAirport : Ind Airport ; + fun OsmanyShyletSylhetAirport : Ind Airport ; -fun OskemanUstKamenogorskEastKazakhstanAirport : Ind Airport ; + fun OsnabrueckOsnabruckAirport : Ind Airport ; -fun OsmanabadAirport : Ind Airport ; + fun OsornoAirport : Ind Airport ; -fun OsmanyShyletSylhetAirport : Ind Airport ; + fun OssunLourdesTarbesAirport : Ind Airport ; -fun OsnabrueckOsnabruckAirport : Ind Airport ; + fun OstendOostendeAirport : Ind Airport ; -fun OsornoAirport : Ind Airport ; + fun OtaviaAirport : Ind Airport ; -fun OssunLourdesTarbesAirport : Ind Airport ; + fun OtjiwarongoAirport : Ind Airport ; -fun OstendOostendeAirport : Ind Airport ; + fun OtopeniBucharestAirport : Ind Airport ; -fun OtaviaAirport : Ind Airport ; + fun OttawaMunicipalKSAirport : Ind Airport ; -fun OtjiwarongoAirport : Ind Airport ; + fun OttestrupSaebyFrederikshavnAirport : Ind Airport ; -fun OtopeniBucharestAirport : Ind Airport ; + fun OttoNMAirport : Ind Airport ; -fun OttawaMunicipalKSAirport : Ind Airport ; + fun OttumwaIndustrialIAAirport : Ind Airport ; -fun OttestrupSaebyFrederikshavnAirport : Ind Airport ; + fun OtuAirport : Ind Airport ; -fun OttoNMAirport : Ind Airport ; + fun OuaddaAirport : Ind Airport ; -fun OttumwaIndustrialIAAirport : Ind Airport ; + fun OuagaAirport : Ind Airport ; -fun OtuAirport : Ind Airport ; + fun OuagadougouAirport : Ind Airport ; -fun OuaddaAirport : Ind Airport ; + fun OuahigouyaAirport : Ind Airport ; -fun OuagaAirport : Ind Airport ; + fun OuandaDjalleAirport : Ind Airport ; -fun OuagadougouAirport : Ind Airport ; + fun OuangoFitiniAirport : Ind Airport ; -fun OuahigouyaAirport : Ind Airport ; + fun OuarglaAirport : Ind Airport ; -fun OuandaDjalleAirport : Ind Airport ; + fun OuarzazateAirport : Ind Airport ; -fun OuangoFitiniAirport : Ind Airport ; + fun OudomxayAirport : Ind Airport ; -fun OuarglaAirport : Ind Airport ; + fun OudtshoornAirport : Ind Airport ; -fun OuarzazateAirport : Ind Airport ; + fun OuessoAirport : Ind Airport ; -fun OudomxayAirport : Ind Airport ; + fun OuluAirport : Ind Airport ; -fun OudtshoornAirport : Ind Airport ; + fun OurinhosSPAirport : Ind Airport ; -fun OuessoAirport : Ind Airport ; + fun OuterSkerriesShetlandIslandsAirport : Ind Airport ; -fun OuluAirport : Ind Airport ; + fun OutjoAirport : Ind Airport ; -fun OurinhosSPAirport : Ind Airport ; + fun OuveaUveaLoyaltyIslandsAirport : Ind Airport ; -fun OuterSkerriesShetlandIslandsAirport : Ind Airport ; + fun OuvenAirport : Ind Airport ; -fun OutjoAirport : Ind Airport ; + fun OuyenVictoriaAirport : Ind Airport ; -fun OuveaUveaLoyaltyIslandsAirport : Ind Airport ; + fun OvalleAirport : Ind Airport ; -fun OuvenAirport : Ind Airport ; + fun OwatonnaMunicipalMNAirport : Ind Airport ; -fun OuyenVictoriaAirport : Ind Airport ; + fun OwenSoundONAirport : Ind Airport ; -fun OvalleAirport : Ind Airport ; + fun OwendoAirport : Ind Airport ; -fun OwatonnaMunicipalMNAirport : Ind Airport ; + fun OwensboroDaviessCountyKYAirport : Ind Airport ; -fun OwenSoundONAirport : Ind Airport ; + fun OxfordEnglandAirport : Ind Airport ; -fun OwendoAirport : Ind Airport ; + fun OxfordHouseMBAirport : Ind Airport ; -fun OwensboroDaviessCountyKYAirport : Ind Airport ; + fun OxnardCAAirport : Ind Airport ; -fun OxfordEnglandAirport : Ind Airport ; + fun OyemAirport : Ind Airport ; -fun OxfordHouseMBAirport : Ind Airport ; + fun OzamisCityAirport : Ind Airport ; -fun OxnardCAAirport : Ind Airport ; + fun OzonaMunicipalTXAirport : Ind Airport ; -fun OyemAirport : Ind Airport ; + fun PaAnAirport : Ind Airport ; -fun OzamisCityAirport : Ind Airport ; + fun PaamaAirport : Ind Airport ; -fun OzonaMunicipalTXAirport : Ind Airport ; + fun PacificCityStateORAirport : Ind Airport ; -fun PaAnAirport : Ind Airport ; + fun PacificHarbourAirport : Ind Airport ; -fun PaamaAirport : Ind Airport ; + fun PackCreekAKAirport : Ind Airport ; -fun PacificCityStateORAirport : Ind Airport ; + fun PaderbornLippstadtAirport : Ind Airport ; -fun PacificHarbourAirport : Ind Airport ; + fun PadovaAirport : Ind Airport ; -fun PackCreekAKAirport : Ind Airport ; + fun PadreAldamizPuertoMaldonadoAirport : Ind Airport ; -fun PaderbornLippstadtAirport : Ind Airport ; + fun PafWarrenAKAirport : Ind Airport ; -fun PadovaAirport : Ind Airport ; + fun PagadianAirport : Ind Airport ; -fun PadreAldamizPuertoMaldonadoAirport : Ind Airport ; + fun PageMunicipalAZAirport : Ind Airport ; -fun PafWarrenAKAirport : Ind Airport ; + fun PagelandSCAirport : Ind Airport ; -fun PagadianAirport : Ind Airport ; + fun PagoPagoInternationalTutuilaIslandAirport : Ind Airport ; -fun PageMunicipalAZAirport : Ind Airport ; + fun PaielaAirport : Ind Airport ; -fun PagelandSCAirport : Ind Airport ; + fun PailinAirport : Ind Airport ; -fun PagoPagoInternationalTutuilaIslandAirport : Ind Airport ; + fun PaimiutAKAirport : Ind Airport ; -fun PaielaAirport : Ind Airport ; + fun PainterCreekAKAirport : Ind Airport ; -fun PailinAirport : Ind Airport ; + fun PaitillaMarcosAGelabertPanamaCityAirport : Ind Airport ; -fun PaimiutAKAirport : Ind Airport ; + fun PakatoaIslandAirport : Ind Airport ; -fun PainterCreekAKAirport : Ind Airport ; + fun PakokkuAirport : Ind Airport ; -fun PaitillaMarcosAGelabertPanamaCityAirport : Ind Airport ; + fun PakotoaIslandAirport : Ind Airport ; -fun PakatoaIslandAirport : Ind Airport ; + fun PaksaneAirport : Ind Airport ; -fun PakokkuAirport : Ind Airport ; + fun PakseAirport : Ind Airport ; -fun PakotoaIslandAirport : Ind Airport ; + fun PakuashipiQCAirport : Ind Airport ; -fun PaksaneAirport : Ind Airport ; + fun PakubaAirport : Ind Airport ; -fun PakseAirport : Ind Airport ; + fun PalWaukeeILAirport : Ind Airport ; -fun PakuashipiQCAirport : Ind Airport ; + fun PalaAirport : Ind Airport ; -fun PakubaAirport : Ind Airport ; + fun PalaciosAirport : Ind Airport ; -fun PalWaukeeILAirport : Ind Airport ; + fun PalaciosMunicipalTXAirport : Ind Airport ; -fun PalaAirport : Ind Airport ; + fun PalangaAirport : Ind Airport ; -fun PalaciosAirport : Ind Airport ; + fun PalanqueroAirport : Ind Airport ; -fun PalaciosMunicipalTXAirport : Ind Airport ; + fun PalenqueAirport : Ind Airport ; -fun PalangaAirport : Ind Airport ; + fun PalestineMunicipalTXAirport : Ind Airport ; -fun PalanqueroAirport : Ind Airport ; + fun PalibeloAirport : Ind Airport ; -fun PalenqueAirport : Ind Airport ; + fun PalmBeachCountyGladesFLAirport : Ind Airport ; -fun PalestineMunicipalTXAirport : Ind Airport ; + fun PalmBeachCountyParkFLAirport : Ind Airport ; -fun PalibeloAirport : Ind Airport ; + fun PalmBeachInternationalFLAirport : Ind Airport ; -fun PalmBeachCountyGladesFLAirport : Ind Airport ; + fun PalmBeachNewSouthWalesAirport : Ind Airport ; -fun PalmBeachCountyParkFLAirport : Ind Airport ; + fun PalmIslandAirport : Ind Airport ; -fun PalmBeachInternationalFLAirport : Ind Airport ; + fun PalmIslandQueenslandAirport : Ind Airport ; -fun PalmBeachNewSouthWalesAirport : Ind Airport ; + fun PalmSpringsRegionalCAAirport : Ind Airport ; -fun PalmIslandAirport : Ind Airport ; + fun PalmaAirport : Ind Airport ; -fun PalmIslandQueenslandAirport : Ind Airport ; + fun PalmadeMallorcaBalearicIslandsAirport : Ind Airport ; -fun PalmSpringsRegionalCAAirport : Ind Airport ; + fun PalmarAirport : Ind Airport ; -fun PalmaAirport : Ind Airport ; + fun PalmaresPEAirport : Ind Airport ; -fun PalmadeMallorcaBalearicIslandsAirport : Ind Airport ; + fun PalmaritoAirport : Ind Airport ; -fun PalmarAirport : Ind Airport ; + fun PalmasPRAirport : Ind Airport ; -fun PalmaresPEAirport : Ind Airport ; + fun PalmdaleProductionFlightTestInstallationAirForcePlant42CAAirport : Ind Airport ; -fun PalmaritoAirport : Ind Airport ; + fun PalmerMunicipalAKAirport : Ind Airport ; -fun PalmasPRAirport : Ind Airport ; + fun PalmerstonNorthAirport : Ind Airport ; -fun PalmdaleProductionFlightTestInstallationAirForcePlant42CAAirport : Ind Airport ; + fun PalmiaAirport : Ind Airport ; -fun PalmerMunicipalAKAirport : Ind Airport ; + fun PalmyraAirport : Ind Airport ; -fun PalmerstonNorthAirport : Ind Airport ; + fun PaloAltoAirportofSantaClaraCountyCAAirport : Ind Airport ; -fun PalmiaAirport : Ind Airport ; + fun PaloemeuAirport : Ind Airport ; -fun PalmyraAirport : Ind Airport ; + fun PamaAirport : Ind Airport ; -fun PaloAltoAirportofSantaClaraCountyCAAirport : Ind Airport ; + fun PambwaAirport : Ind Airport ; -fun PaloemeuAirport : Ind Airport ; + fun PamolSabahAirport : Ind Airport ; -fun PamaAirport : Ind Airport ; + fun PamplonaAirport : Ind Airport ; -fun PambwaAirport : Ind Airport ; + fun PanamaCityBayInternationalFLAirport : Ind Airport ; -fun PamolSabahAirport : Ind Airport ; + fun PanambiAirport : Ind Airport ; -fun PamplonaAirport : Ind Airport ; + fun PancevoAirport : Ind Airport ; -fun PanamaCityBayInternationalFLAirport : Ind Airport ; + fun PandiePandieSouthAustraliaAirport : Ind Airport ; -fun PanambiAirport : Ind Airport ; + fun PangiaAirport : Ind Airport ; -fun PancevoAirport : Ind Airport ; + fun PangkalanbuunAirport : Ind Airport ; -fun PandiePandieSouthAustraliaAirport : Ind Airport ; + fun PangkalpinangAirport : Ind Airport ; -fun PangiaAirport : Ind Airport ; + fun PangkorIslandAirport : Ind Airport ; -fun PangkalanbuunAirport : Ind Airport ; + fun PangnirtungNTAirport : Ind Airport ; -fun PangkalpinangAirport : Ind Airport ; + fun PangoaAirport : Ind Airport ; -fun PangkorIslandAirport : Ind Airport ; + fun PanguitchMunicipalUTAirport : Ind Airport ; -fun PangnirtungNTAirport : Ind Airport ; + fun PanjgurAirport : Ind Airport ; -fun PangoaAirport : Ind Airport ; + fun PantelleriaPantelleriaIslandAirport : Ind Airport ; -fun PanguitchMunicipalUTAirport : Ind Airport ; + fun PantnagarAirport : Ind Airport ; -fun PanjgurAirport : Ind Airport ; + fun PapaStourShetlandIslandsAirport : Ind Airport ; -fun PantelleriaPantelleriaIslandAirport : Ind Airport ; + fun PapaWestrayAirport : Ind Airport ; -fun PantnagarAirport : Ind Airport ; + fun PapeeteTahitiAirport : Ind Airport ; -fun PapaStourShetlandIslandsAirport : Ind Airport ; + fun PapunAirport : Ind Airport ; -fun PapaWestrayAirport : Ind Airport ; + fun ParaChinarAirport : Ind Airport ; -fun PapeeteTahitiAirport : Ind Airport ; + fun ParaburdooWesternAustraliaAirport : Ind Airport ; -fun PapunAirport : Ind Airport ; + fun ParadiseIslandParadiseAirport : Ind Airport ; -fun ParaChinarAirport : Ind Airport ; + fun ParadiseRiverAerodromeNFAirport : Ind Airport ; -fun ParaburdooWesternAustraliaAirport : Ind Airport ; + fun ParakouAirport : Ind Airport ; -fun ParadiseIslandParadiseAirport : Ind Airport ; + fun ParamakatoiAirport : Ind Airport ; -fun ParadiseRiverAerodromeNFAirport : Ind Airport ; + fun ParanAirport : Ind Airport ; -fun ParakouAirport : Ind Airport ; + fun ParanaGOAirport : Ind Airport ; -fun ParamakatoiAirport : Ind Airport ; + fun ParanaguaPRAirport : Ind Airport ; -fun ParanAirport : Ind Airport ; + fun ParanaibaMGAirport : Ind Airport ; -fun ParanaGOAirport : Ind Airport ; + fun ParanavaiPRAirport : Ind Airport ; -fun ParanaguaPRAirport : Ind Airport ; + fun ParaparaumuAirport : Ind Airport ; -fun ParanaibaMGAirport : Ind Airport ; + fun ParasiAirport : Ind Airport ; -fun ParanavaiPRAirport : Ind Airport ; + fun PardooWesternAustraliaAirport : Ind Airport ; -fun ParaparaumuAirport : Ind Airport ; + fun ParintinsAMAirport : Ind Airport ; -fun ParasiAirport : Ind Airport ; + fun ParisPlageLeTouquetAirport : Ind Airport ; -fun PardooWesternAustraliaAirport : Ind Airport ; + fun ParkFallsMunicipalWIAirport : Ind Airport ; -fun ParintinsAMAirport : Ind Airport ; + fun ParkRapidsMunicipalMNAirport : Ind Airport ; -fun ParisPlageLeTouquetAirport : Ind Airport ; + fun ParkerCountyTXAirport : Ind Airport ; -fun ParkFallsMunicipalWIAirport : Ind Airport ; + fun ParkesNewSouthWalesAirport : Ind Airport ; -fun ParkRapidsMunicipalMNAirport : Ind Airport ; + fun ParlinFieldNHAirport : Ind Airport ; -fun ParkerCountyTXAirport : Ind Airport ; + fun ParmaAirport : Ind Airport ; -fun ParkesNewSouthWalesAirport : Ind Airport ; + fun ParmalbaAirport : Ind Airport ; -fun ParlinFieldNHAirport : Ind Airport ; + fun ParndanaSouthAustraliaAirport : Ind Airport ; -fun ParmaAirport : Ind Airport ; + fun ParoAirport : Ind Airport ; -fun ParmalbaAirport : Ind Airport ; + fun ParosAirport : Ind Airport ; -fun ParndanaSouthAustraliaAirport : Ind Airport ; + fun ParuimaAirport : Ind Airport ; -fun ParoAirport : Ind Airport ; + fun PasirPangarayanAirport : Ind Airport ; -fun ParosAirport : Ind Airport ; + fun PasniAirport : Ind Airport ; -fun ParuimaAirport : Ind Airport ; + fun PasoCaballosAirport : Ind Airport ; -fun PasirPangarayanAirport : Ind Airport ; + fun PasoRoblesMunicipalCAAirport : Ind Airport ; -fun PasniAirport : Ind Airport ; + fun PassoFundoRSAirport : Ind Airport ; -fun PasoCaballosAirport : Ind Airport ; + fun PassosAirport : Ind Airport ; -fun PasoRoblesMunicipalCAAirport : Ind Airport ; + fun PastazaAirport : Ind Airport ; -fun PassoFundoRSAirport : Ind Airport ; + fun PastoAirport : Ind Airport ; -fun PassosAirport : Ind Airport ; + fun PatnaAirport : Ind Airport ; -fun PastazaAirport : Ind Airport ; + fun PatoBrancoPRAirport : Ind Airport ; -fun PastoAirport : Ind Airport ; + fun PatongBeachAirport : Ind Airport ; -fun PatnaAirport : Ind Airport ; + fun PatreksfjordurAirport : Ind Airport ; -fun PatoBrancoPRAirport : Ind Airport ; + fun PattaniAirport : Ind Airport ; -fun PatongBeachAirport : Ind Airport ; + fun PattayaAirport : Ind Airport ; -fun PatreksfjordurAirport : Ind Airport ; + fun PatuxentRiverNavalAirStationTrapnellFieldMDAirport : Ind Airport ; -fun PattaniAirport : Ind Airport ; + fun PaukAirport : Ind Airport ; -fun PattayaAirport : Ind Airport ; + fun PaulatukNTAirport : Ind Airport ; -fun PatuxentRiverNavalAirStationTrapnellFieldMDAirport : Ind Airport ; + fun PauloAfonsoBAAirport : Ind Airport ; -fun PaukAirport : Ind Airport ; + fun PavlodarPavlodarAirport : Ind Airport ; -fun PaulatukNTAirport : Ind Airport ; + fun PayalebaarSingaporeAirport : Ind Airport ; -fun PauloAfonsoBAAirport : Ind Airport ; + fun PayanAirport : Ind Airport ; -fun PavlodarPavlodarAirport : Ind Airport ; + fun PaysanduAirport : Ind Airport ; -fun PayalebaarSingaporeAirport : Ind Airport ; + fun PaysonAZAirport : Ind Airport ; -fun PayanAirport : Ind Airport ; + fun PazdeAriporoAirport : Ind Airport ; -fun PaysanduAirport : Ind Airport ; + fun PeaceRiverABAirport : Ind Airport ; -fun PaysonAZAirport : Ind Airport ; + fun PeaseAirNationalGuardBaseNHAirport : Ind Airport ; -fun PazdeAriporoAirport : Ind Airport ; + fun PeawanuckONAirport : Ind Airport ; -fun PeaceRiverABAirport : Ind Airport ; + fun PebaneAirport : Ind Airport ; -fun PeaseAirNationalGuardBaseNHAirport : Ind Airport ; + fun PecosMunicipalTXAirport : Ind Airport ; -fun PeawanuckONAirport : Ind Airport ; + fun PedernalesAirport : Ind Airport ; -fun PebaneAirport : Ind Airport ; + fun PedroBayAKAirport : Ind Airport ; -fun PecosMunicipalTXAirport : Ind Airport ; + fun PedroJuanCaballeroAirport : Ind Airport ; -fun PedernalesAirport : Ind Airport ; + fun PeeblyBeachSeaplaneBaseCAAirport : Ind Airport ; -fun PedroBayAKAirport : Ind Airport ; + fun PekoaEspiritoSantoAirport : Ind Airport ; -fun PedroJuanCaballeroAirport : Ind Airport ; + fun PelanengAirport : Ind Airport ; -fun PeeblyBeachSeaplaneBaseCAAirport : Ind Airport ; + fun PelicanSeaplaneBaseAKAirport : Ind Airport ; -fun PekoaEspiritoSantoAirport : Ind Airport ; + fun PellstonRegionalAirportofEmmetCountyMIAirport : Ind Airport ; -fun PelanengAirport : Ind Airport ; + fun PellyBayNTAirport : Ind Airport ; -fun PelicanSeaplaneBaseAKAirport : Ind Airport ; + fun PellyBayTownsiteNTAirport : Ind Airport ; -fun PellstonRegionalAirportofEmmetCountyMIAirport : Ind Airport ; + fun PelotasRSAirport : Ind Airport ; -fun PellyBayNTAirport : Ind Airport ; + fun PembaIslandAirport : Ind Airport ; -fun PellyBayTownsiteNTAirport : Ind Airport ; + fun PembaPortoAmeliaAirport : Ind Airport ; -fun PelotasRSAirport : Ind Airport ; + fun PembinaMunicipalNDAirport : Ind Airport ; -fun PembaIslandAirport : Ind Airport ; + fun PembrokeONAirport : Ind Airport ; -fun PembaPortoAmeliaAirport : Ind Airport ; + fun PenderHarbourWaterAerodromeBCAirport : Ind Airport ; -fun PembinaMunicipalNDAirport : Ind Airport ; + fun PendletonMunicipalORAirport : Ind Airport ; -fun PembrokeONAirport : Ind Airport ; + fun PendopoAirport : Ind Airport ; -fun PenderHarbourWaterAerodromeBCAirport : Ind Airport ; + fun PennValleyPAAirport : Ind Airport ; -fun PendletonMunicipalORAirport : Ind Airport ; + fun PenneshawSouthAustraliaAirport : Ind Airport ; -fun PendopoAirport : Ind Airport ; + fun PenongSouthAustraliaAirport : Ind Airport ; -fun PennValleyPAAirport : Ind Airport ; + fun PenrhynIslandAirport : Ind Airport ; -fun PenneshawSouthAustraliaAirport : Ind Airport ; + fun PensacolaNavalAirStationForrestShermanFieldFLAirport : Ind Airport ; -fun PenongSouthAustraliaAirport : Ind Airport ; + fun PensacolaRegionalFLAirport : Ind Airport ; -fun PenrhynIslandAirport : Ind Airport ; + fun PentictonBCAirport : Ind Airport ; -fun PensacolaNavalAirStationForrestShermanFieldFLAirport : Ind Airport ; + fun PenzaPenzaAirport : Ind Airport ; -fun PensacolaRegionalFLAirport : Ind Airport ; + fun PenzanceHeliportEnglandAirport : Ind Airport ; -fun PentictonBCAirport : Ind Airport ; + fun PeppimenartiNorthernTerritoryAirport : Ind Airport ; -fun PenzaPenzaAirport : Ind Airport ; + fun PeraitepuysAirport : Ind Airport ; -fun PenzanceHeliportEnglandAirport : Ind Airport ; + fun PerisherValleyNewSouthWalesAirport : Ind Airport ; -fun PeppimenartiNorthernTerritoryAirport : Ind Airport ; + fun PerisonBCAirport : Ind Airport ; -fun PeraitepuysAirport : Ind Airport ; + fun PeritoMorenoAirport : Ind Airport ; -fun PerisherValleyNewSouthWalesAirport : Ind Airport ; + fun PerryIslandSeaplaneBaseAKAirport : Ind Airport ; -fun PerisonBCAirport : Ind Airport ; + fun PerryLeforsFieldTXAirport : Ind Airport ; -fun PeritoMorenoAirport : Ind Airport ; + fun PerryMunicipalIAAirport : Ind Airport ; -fun PerryIslandSeaplaneBaseAKAirport : Ind Airport ; + fun PerryStokesCOAirport : Ind Airport ; -fun PerryLeforsFieldTXAirport : Ind Airport ; + fun PersepolisAirport : Ind Airport ; -fun PerryMunicipalIAAirport : Ind Airport ; + fun PersonCountyNCAirport : Ind Airport ; -fun PerryStokesCOAirport : Ind Airport ; + fun PerthScotlandAirport : Ind Airport ; -fun PersepolisAirport : Ind Airport ; + fun PerthWesternAustraliaAirport : Ind Airport ; -fun PersonCountyNCAirport : Ind Airport ; + fun PerwokertoAirport : Ind Airport ; -fun PerthScotlandAirport : Ind Airport ; + fun PescaraAirport : Ind Airport ; -fun PerthWesternAustraliaAirport : Ind Airport ; + fun PeshawarAirport : Ind Airport ; -fun PerwokertoAirport : Ind Airport ; + fun PetawawaONAirport : Ind Airport ; -fun PescaraAirport : Ind Airport ; + fun PeterOKnightFLAirport : Ind Airport ; -fun PeshawarAirport : Ind Airport ; + fun PeterboroughONAirport : Ind Airport ; -fun PetawawaONAirport : Ind Airport ; + fun PetersburgAKAirport : Ind Airport ; -fun PeterOKnightFLAirport : Ind Airport ; + fun PetersburgMunicipalVAAirport : Ind Airport ; -fun PeterboroughONAirport : Ind Airport ; + fun PetersonsPointAKAirport : Ind Airport ; -fun PetersburgAKAirport : Ind Airport ; + fun PetitJeanParkARAirport : Ind Airport ; -fun PetersburgMunicipalVAAirport : Ind Airport ; + fun PetrellaMogadishuMogadiscioAirport : Ind Airport ; -fun PetersonsPointAKAirport : Ind Airport ; + fun PetrolinaPEAirport : Ind Airport ; -fun PetitJeanParkARAirport : Ind Airport ; + fun PetropavlovskKamchatkaAirport : Ind Airport ; -fun PetrellaMogadishuMogadiscioAirport : Ind Airport ; + fun PetropavlovskKamchatskiyKamchatkaAirport : Ind Airport ; -fun PetrolinaPEAirport : Ind Airport ; + fun PetropolisRJAirport : Ind Airport ; -fun PetropavlovskKamchatkaAirport : Ind Airport ; + fun PetrozavodskKareliaAirport : Ind Airport ; -fun PetropavlovskKamchatskiyKamchatkaAirport : Ind Airport ; + fun PevekMagadanAirport : Ind Airport ; -fun PetropolisRJAirport : Ind Airport ; + fun PforzheimAirport : Ind Airport ; -fun PetrozavodskKareliaAirport : Ind Airport ; + fun PhalaborwaAirport : Ind Airport ; -fun PevekMagadanAirport : Ind Airport ; + fun PhanRangAirport : Ind Airport ; -fun PforzheimAirport : Ind Airport ; + fun PhanThietAirport : Ind Airport ; -fun PhalaborwaAirport : Ind Airport ; + fun PhanomSarakhamAirport : Ind Airport ; -fun PhanRangAirport : Ind Airport ; + fun PhapluAirport : Ind Airport ; -fun PhanThietAirport : Ind Airport ; + fun PhiladelphiaInternationalPAAirport : Ind Airport ; -fun PhanomSarakhamAirport : Ind Airport ; + fun PhiladelphiaSeaplaneBasePAAirport : Ind Airport ; -fun PhapluAirport : Ind Airport ; + fun PhilipBillardMunicipalKSAirport : Ind Airport ; -fun PhiladelphiaInternationalPAAirport : Ind Airport ; + fun PhilipSDAirport : Ind Airport ; -fun PhiladelphiaSeaplaneBasePAAirport : Ind Airport ; + fun PhillipsAKAirport : Ind Airport ; -fun PhilipBillardMunicipalKSAirport : Ind Airport ; + fun PhillipsburgMunicipalKSAirport : Ind Airport ; -fun PhilipSDAirport : Ind Airport ; + fun PhitsanulokAirport : Ind Airport ; -fun PhillipsAKAirport : Ind Airport ; + fun PhoenixSkyHarborInternationalAZAirport : Ind Airport ; -fun PhillipsburgMunicipalKSAirport : Ind Airport ; + fun PhraeAirport : Ind Airport ; -fun PhitsanulokAirport : Ind Airport ; + fun PhuQuocAirport : Ind Airport ; -fun PhoenixSkyHarborInternationalAZAirport : Ind Airport ; + fun PhuVinhAirport : Ind Airport ; -fun PhraeAirport : Ind Airport ; + fun PhuoclongAirport : Ind Airport ; -fun PhuQuocAirport : Ind Airport ; + fun PiarcoTrinidadIsAirport : Ind Airport ; -fun PhuVinhAirport : Ind Airport ; + fun PicayunePearlRiverCountyMSAirport : Ind Airport ; -fun PhuoclongAirport : Ind Airport ; + fun PickensCountySCAirport : Ind Airport ; -fun PiarcoTrinidadIsAirport : Ind Airport ; + fun PickleLakeONAirport : Ind Airport ; -fun PicayunePearlRiverCountyMSAirport : Ind Airport ; + fun PicoIslandAzoresAirport : Ind Airport ; -fun PickensCountySCAirport : Ind Airport ; + fun PicosPIAirport : Ind Airport ; -fun PickleLakeONAirport : Ind Airport ; + fun PictonAirport : Ind Airport ; -fun PicoIslandAzoresAirport : Ind Airport ; + fun PiedrasNegrasAirport : Ind Airport ; -fun PicosPIAirport : Ind Airport ; + fun PierreElliottTrudeauInternationalQCAirport : Ind Airport ; -fun PictonAirport : Ind Airport ; + fun PierreMunicipalSDAirport : Ind Airport ; -fun PiedrasNegrasAirport : Ind Airport ; + fun PiestanyAirport : Ind Airport ; -fun PierreElliottTrudeauInternationalQCAirport : Ind Airport ; + fun PietermaritzburgAirport : Ind Airport ; -fun PierreMunicipalSDAirport : Ind Airport ; + fun PietersburgAirport : Ind Airport ; -fun PiestanyAirport : Ind Airport ; + fun PijiguaosAirport : Ind Airport ; -fun PietermaritzburgAirport : Ind Airport ; + fun PikangikumONAirport : Ind Airport ; -fun PietersburgAirport : Ind Airport ; + fun PikangikumWaterAerodromeONAirport : Ind Airport ; -fun PijiguaosAirport : Ind Airport ; + fun PilanesbergSunCityAirport : Ind Airport ; -fun PikangikumONAirport : Ind Airport ; + fun PilarAirport : Ind Airport ; -fun PikangikumWaterAerodromeONAirport : Ind Airport ; + fun PilotPointAKAirport : Ind Airport ; -fun PilanesbergSunCityAirport : Ind Airport ; + fun PilotStationAKAirport : Ind Airport ; -fun PilarAirport : Ind Airport ; + fun PimagaAirport : Ind Airport ; -fun PilotPointAKAirport : Ind Airport ; + fun PinalAirparkAZAirport : Ind Airport ; -fun PilotStationAKAirport : Ind Airport ; + fun PinardelRioAirport : Ind Airport ; -fun PimagaAirport : Ind Airport ; + fun PincherCreekABAirport : Ind Airport ; -fun PinalAirparkAZAirport : Ind Airport ; + fun PinckneyvilleDuQuoinILAirport : Ind Airport ; -fun PinardelRioAirport : Ind Airport ; + fun PindiuAirport : Ind Airport ; -fun PincherCreekABAirport : Ind Airport ; + fun PineCayAirport : Ind Airport ; -fun PinckneyvilleDuQuoinILAirport : Ind Airport ; + fun PinePointNTAirport : Ind Airport ; -fun PindiuAirport : Ind Airport ; + fun PineRidgeSDAirport : Ind Airport ; -fun PineCayAirport : Ind Airport ; + fun PinebeltMSAirport : Ind Airport ; -fun PinePointNTAirport : Ind Airport ; + fun PinehouseLakeSKAirport : Ind Airport ; -fun PineRidgeSDAirport : Ind Airport ; + fun PingTungAirport : Ind Airport ; -fun PinebeltMSAirport : Ind Airport ; + fun PinheiroMAAirport : Ind Airport ; -fun PinehouseLakeSKAirport : Ind Airport ; + fun PipestoneMunicipalMNAirport : Ind Airport ; -fun PingTungAirport : Ind Airport ; + fun PipillipaiAirport : Ind Airport ; -fun PinheiroMAAirport : Ind Airport ; + fun PirkkalaTampereAirport : Ind Airport ; -fun PipestoneMunicipalMNAirport : Ind Airport ; + fun PiscoAirport : Ind Airport ; -fun PipillipaiAirport : Ind Airport ; + fun PitalitoAirport : Ind Airport ; -fun PirkkalaTampereAirport : Ind Airport ; + fun PitingaAirport : Ind Airport ; -fun PiscoAirport : Ind Airport ; + fun PittGreenvilleNCAirport : Ind Airport ; -fun PitalitoAirport : Ind Airport ; + fun PittMeadowsBCAirport : Ind Airport ; -fun PitingaAirport : Ind Airport ; + fun PittsTownAirport : Ind Airport ; -fun PittGreenvilleNCAirport : Ind Airport ; + fun PittsfieldMunicipalMAAirport : Ind Airport ; -fun PittMeadowsBCAirport : Ind Airport ; + fun PiuraAirport : Ind Airport ; -fun PittsTownAirport : Ind Airport ; + fun PlacervilleCAAirport : Ind Airport ; -fun PittsfieldMunicipalMAAirport : Ind Airport ; + fun PlageBlancheTanTanAirport : Ind Airport ; -fun PiuraAirport : Ind Airport ; + fun PlanadasAirport : Ind Airport ; -fun PlacervilleCAAirport : Ind Airport ; + fun PlandeGuadelupeSaltilloAirport : Ind Airport ; -fun PlageBlancheTanTanAirport : Ind Airport ; + fun PlanetaRicaAirport : Ind Airport ; -fun PlanadasAirport : Ind Airport ; + fun PlatinumAKAirport : Ind Airport ; -fun PlandeGuadelupeSaltilloAirport : Ind Airport ; + fun PlatoAirport : Ind Airport ; -fun PlanetaRicaAirport : Ind Airport ; + fun PlattsburghAirForceBaseNYAirport : Ind Airport ; -fun PlatinumAKAirport : Ind Airport ; + fun PlaujeanMorlaixAirport : Ind Airport ; -fun PlatoAirport : Ind Airport ; + fun PlayaSamaraAirport : Ind Airport ; -fun PlattsburghAirForceBaseNYAirport : Ind Airport ; + fun PlayadeOroManzanilloAirport : Ind Airport ; -fun PlaujeanMorlaixAirport : Ind Airport ; + fun PlayadelCarmenAirport : Ind Airport ; -fun PlayaSamaraAirport : Ind Airport ; + fun PlayonChicoAirport : Ind Airport ; -fun PlayadeOroManzanilloAirport : Ind Airport ; + fun PlazaHeliportILAirport : Ind Airport ; -fun PlayadelCarmenAirport : Ind Airport ; + fun PleasantHarborAKAirport : Ind Airport ; -fun PlayonChicoAirport : Ind Airport ; + fun PleikuAirport : Ind Airport ; -fun PlazaHeliportILAirport : Ind Airport ; + fun PlekhanovaTyumenAirport : Ind Airport ; -fun PleasantHarborAKAirport : Ind Airport ; + fun PlesoZagrebAirport : Ind Airport ; -fun PleikuAirport : Ind Airport ; + fun PlettenbergBayAirport : Ind Airport ; -fun PlekhanovaTyumenAirport : Ind Airport ; + fun PlevenAirport : Ind Airport ; -fun PlesoZagrebAirport : Ind Airport ; + fun PlovdivAirport : Ind Airport ; -fun PlettenbergBayAirport : Ind Airport ; + fun PluguffanQuimperAirport : Ind Airport ; -fun PlevenAirport : Ind Airport ; + fun PlymouthMunicipalMAAirport : Ind Airport ; -fun PlovdivAirport : Ind Airport ; + fun PoAirport : Ind Airport ; -fun PluguffanQuimperAirport : Ind Airport ; + fun PocahontasMunicipalIAAirport : Ind Airport ; -fun PlymouthMunicipalMAAirport : Ind Airport ; + fun PocatelloMunicipalIDAirport : Ind Airport ; -fun PoAirport : Ind Airport ; + fun PochentongPhnomPenhAirport : Ind Airport ; -fun PocahontasMunicipalIAAirport : Ind Airport ; + fun PochutlaAirport : Ind Airport ; -fun PocatelloMunicipalIDAirport : Ind Airport ; + fun PoconoMountainsMunicipalPAAirport : Ind Airport ; -fun PochentongPhnomPenhAirport : Ind Airport ; + fun PocosdeCaldasMGAirport : Ind Airport ; -fun PochutlaAirport : Ind Airport ; + fun PodorAirport : Ind Airport ; -fun PoconoMountainsMunicipalPAAirport : Ind Airport ; + fun PogdoricaTitogradAirport : Ind Airport ; -fun PocosdeCaldasMGAirport : Ind Airport ; + fun PohnpeiInternationalPohnpeiIslandAirport : Ind Airport ; -fun PodorAirport : Ind Airport ; + fun PointBarrowAKAirport : Ind Airport ; -fun PogdoricaTitogradAirport : Ind Airport ; + fun PointHopeAKAirport : Ind Airport ; -fun PohnpeiInternationalPohnpeiIslandAirport : Ind Airport ; + fun PointLayLRRSAKAirport : Ind Airport ; -fun PointBarrowAKAirport : Ind Airport ; + fun PointMuguNAWSCAAirport : Ind Airport ; -fun PointHopeAKAirport : Ind Airport ; + fun PointeNoireAirport : Ind Airport ; -fun PointLayLRRSAKAirport : Ind Airport ; + fun PointeRetreatAKAirport : Ind Airport ; -fun PointMuguNAWSCAAirport : Ind Airport ; + fun PointsNorthLandingAerodromeSKAirport : Ind Airport ; -fun PointeNoireAirport : Ind Airport ; + fun PokharaAirport : Ind Airport ; -fun PointeRetreatAKAirport : Ind Airport ; + fun PolaccaAZAirport : Ind Airport ; -fun PointsNorthLandingAerodromeSKAirport : Ind Airport ; + fun PolkArmyAirFieldLAAirport : Ind Airport ; -fun PokharaAirport : Ind Airport ; + fun PolkInletAKAirport : Ind Airport ; -fun PolaccaAZAirport : Ind Airport ; + fun PoloniaMedanAirport : Ind Airport ; -fun PolkArmyAirFieldLAAirport : Ind Airport ; + fun PoltavaPoltavaAirport : Ind Airport ; -fun PolkInletAKAirport : Ind Airport ; + fun PomalaaAirport : Ind Airport ; -fun PoloniaMedanAirport : Ind Airport ; + fun PomeziaAirport : Ind Airport ; -fun PoltavaPoltavaAirport : Ind Airport ; + fun PompanoBeachAirparkFLAirport : Ind Airport ; -fun PomalaaAirport : Ind Airport ; + fun PompeiaSPAirport : Ind Airport ; -fun PomeziaAirport : Ind Airport ; + fun PoncaCityMunicipalOKAirport : Ind Airport ; -fun PompanoBeachAirparkFLAirport : Ind Airport ; + fun PondInletNTAirport : Ind Airport ; -fun PompeiaSPAirport : Ind Airport ; + fun PondokCabeAirport : Ind Airport ; -fun PoncaCityMunicipalOKAirport : Ind Airport ; + fun PontLongUzeinPauAirport : Ind Airport ; -fun PondInletNTAirport : Ind Airport ; + fun PontaDelgadaSaoMiguelIslandAzoresAirport : Ind Airport ; -fun PondokCabeAirport : Ind Airport ; + fun PontaGrossaPRAirport : Ind Airport ; -fun PontLongUzeinPauAirport : Ind Airport ; + fun PontaPoraSPAirport : Ind Airport ; -fun PontaDelgadaSaoMiguelIslandAzoresAirport : Ind Airport ; + fun PontoiseAirport : Ind Airport ; -fun PontaGrossaPRAirport : Ind Airport ; + fun PoonaAirport : Ind Airport ; -fun PontaPoraSPAirport : Ind Airport ; + fun PopayanAirport : Ind Airport ; -fun PontoiseAirport : Ind Airport ; + fun PopeAirForceBaseNCAirport : Ind Airport ; -fun PoonaAirport : Ind Airport ; + fun PopeVanoyAKAirport : Ind Airport ; -fun PopayanAirport : Ind Airport ; + fun PoplarBluffMunicipalMOAirport : Ind Airport ; -fun PopeAirForceBaseNCAirport : Ind Airport ; + fun PoplarHillONAirport : Ind Airport ; -fun PopeVanoyAKAirport : Ind Airport ; + fun PoplarRiverMBAirport : Ind Airport ; -fun PoplarBluffMunicipalMOAirport : Ind Airport ; + fun PopondettaAirport : Ind Airport ; -fun PoplarHillONAirport : Ind Airport ; + fun PoptunAirport : Ind Airport ; -fun PoplarRiverMBAirport : Ind Airport ; + fun PorbandarAirport : Ind Airport ; -fun PopondettaAirport : Ind Airport ; + fun PorcupineCreekAKAirport : Ind Airport ; -fun PoptunAirport : Ind Airport ; + fun PoreAirport : Ind Airport ; -fun PorbandarAirport : Ind Airport ; + fun PorgeraAirport : Ind Airport ; -fun PorcupineCreekAKAirport : Ind Airport ; + fun PoriAirport : Ind Airport ; -fun PoreAirport : Ind Airport ; + fun PortAlberniBCAirport : Ind Airport ; -fun PorgeraAirport : Ind Airport ; + fun PortAlexanderSeaplaneBaseAKAirport : Ind Airport ; -fun PoriAirport : Ind Airport ; + fun PortAllenHIAirport : Ind Airport ; -fun PortAlberniBCAirport : Ind Airport ; + fun PortAlsworthAKAirport : Ind Airport ; -fun PortAlexanderSeaplaneBaseAKAirport : Ind Airport ; + fun PortAngelesCoastGuardAirStationWAAirport : Ind Airport ; -fun PortAllenHIAirport : Ind Airport ; + fun PortAntonioAirport : Ind Airport ; -fun PortAlsworthAKAirport : Ind Airport ; + fun PortArmstrongAKAirport : Ind Airport ; -fun PortAngelesCoastGuardAirStationWAAirport : Ind Airport ; + fun PortAugustaSouthAustraliaAirport : Ind Airport ; -fun PortAntonioAirport : Ind Airport ; + fun PortBergeAirport : Ind Airport ; -fun PortArmstrongAKAirport : Ind Airport ; + fun PortDouglasQueenslandAirport : Ind Airport ; -fun PortAugustaSouthAustraliaAirport : Ind Airport ; + fun PortElizabethAirport : Ind Airport ; -fun PortBergeAirport : Ind Airport ; + fun PortGentilAirport : Ind Airport ; -fun PortDouglasQueenslandAirport : Ind Airport ; + fun PortGrahamAKAirport : Ind Airport ; -fun PortElizabethAirport : Ind Airport ; + fun PortHardyBCAirport : Ind Airport ; -fun PortGentilAirport : Ind Airport ; + fun PortHardyWaterAerodromeBCAirport : Ind Airport ; -fun PortGrahamAKAirport : Ind Airport ; + fun PortHawkesburyNSAirport : Ind Airport ; -fun PortHardyBCAirport : Ind Airport ; + fun PortHedlandWesternAustraliaAirport : Ind Airport ; -fun PortHardyWaterAerodromeBCAirport : Ind Airport ; + fun PortHeidenAKAirport : Ind Airport ; -fun PortHawkesburyNSAirport : Ind Airport ; + fun PortHopeSimpsonAerodromeNFAirport : Ind Airport ; -fun PortHedlandWesternAustraliaAirport : Ind Airport ; + fun PortHunterNewSouthWalesAirport : Ind Airport ; -fun PortHeidenAKAirport : Ind Airport ; + fun PortJohnsonAKAirport : Ind Airport ; -fun PortHopeSimpsonAerodromeNFAirport : Ind Airport ; + fun PortKaitumaAirport : Ind Airport ; -fun PortHunterNewSouthWalesAirport : Ind Airport ; + fun PortKeatsNorthernTerritoryAirport : Ind Airport ; -fun PortJohnsonAKAirport : Ind Airport ; + fun PortLincolnSouthAustraliaAirport : Ind Airport ; -fun PortKaitumaAirport : Ind Airport ; + fun PortLionsAKAirport : Ind Airport ; -fun PortKeatsNorthernTerritoryAirport : Ind Airport ; + fun PortMacquarieNewSouthWalesAirport : Ind Airport ; -fun PortLincolnSouthAustraliaAirport : Ind Airport ; + fun PortMcNeillWaterAerodromeBCAirport : Ind Airport ; -fun PortLionsAKAirport : Ind Airport ; + fun PortMeadvillePAAirport : Ind Airport ; -fun PortMacquarieNewSouthWalesAirport : Ind Airport ; + fun PortMenierQCAirport : Ind Airport ; -fun PortMcNeillWaterAerodromeBCAirport : Ind Airport ; + fun PortMollerAKAirport : Ind Airport ; -fun PortMeadvillePAAirport : Ind Airport ; + fun PortMoresbyAirport : Ind Airport ; -fun PortMenierQCAirport : Ind Airport ; + fun PortOceanicAKAirport : Ind Airport ; -fun PortMollerAKAirport : Ind Airport ; + fun PortProtectionSeaplaneBaseAKAirport : Ind Airport ; -fun PortMoresbyAirport : Ind Airport ; + fun PortRadiumNTAirport : Ind Airport ; -fun PortOceanicAKAirport : Ind Airport ; + fun PortSaidAirport : Ind Airport ; -fun PortProtectionSeaplaneBaseAKAirport : Ind Airport ; + fun PortSanJuanAKAirport : Ind Airport ; -fun PortRadiumNTAirport : Ind Airport ; + fun PortSimpsonWaterAerodromeBCAirport : Ind Airport ; -fun PortSaidAirport : Ind Airport ; + fun PortStanleyStanleyAirport : Ind Airport ; -fun PortSanJuanAKAirport : Ind Airport ; + fun PortStephensNewSouthWalesAirport : Ind Airport ; -fun PortSimpsonWaterAerodromeBCAirport : Ind Airport ; + fun PortSudanAirport : Ind Airport ; -fun PortStanleyStanleyAirport : Ind Airport ; + fun PortWalterSeaplaneBaseAKAirport : Ind Airport ; -fun PortStephensNewSouthWalesAirport : Ind Airport ; + fun PortageCreekAKAirport : Ind Airport ; -fun PortSudanAirport : Ind Airport ; + fun PortauPrinceAirport : Ind Airport ; -fun PortWalterSeaplaneBaseAKAirport : Ind Airport ; + fun PortdePaixAirport : Ind Airport ; -fun PortageCreekAKAirport : Ind Airport ; + fun PorterCountyMunicipalINAirport : Ind Airport ; -fun PortauPrinceAirport : Ind Airport ; + fun PortervilleMunicipalCAAirport : Ind Airport ; -fun PortdePaixAirport : Ind Airport ; + fun PortimaoAirport : Ind Airport ; -fun PorterCountyMunicipalINAirport : Ind Airport ; + fun PortlandInternationalJetportMEAirport : Ind Airport ; -fun PortervilleMunicipalCAAirport : Ind Airport ; + fun PortlandInternationalORAirport : Ind Airport ; -fun PortimaoAirport : Ind Airport ; + fun PortlandTroutdaleORAirport : Ind Airport ; -fun PortlandInternationalJetportMEAirport : Ind Airport ; + fun PortlandVictoriaAirport : Ind Airport ; -fun PortlandInternationalORAirport : Ind Airport ; + fun PortoAlegreSaoTomeAirport : Ind Airport ; -fun PortlandTroutdaleORAirport : Ind Airport ; + fun PortoAmboimAirport : Ind Airport ; -fun PortlandVictoriaAirport : Ind Airport ; + fun PortoKheliAirport : Ind Airport ; -fun PortoAlegreSaoTomeAirport : Ind Airport ; + fun PortoNacionalGOAirport : Ind Airport ; -fun PortoAmboimAirport : Ind Airport ; + fun PortoSantoMadeiraAirport : Ind Airport ; -fun PortoKheliAirport : Ind Airport ; + fun PortoTrombetasPAAirport : Ind Airport ; -fun PortoNacionalGOAirport : Ind Airport ; + fun PortoVelhoROAirport : Ind Airport ; -fun PortoSantoMadeiraAirport : Ind Airport ; + fun PortodeMosPAAirport : Ind Airport ; -fun PortoTrombetasPAAirport : Ind Airport ; + fun PortofPoulsboMarinaMoorageSeaplaneBaseWAAirport : Ind Airport ; -fun PortoVelhoROAirport : Ind Airport ; + fun PortorozAirport : Ind Airport ; -fun PortodeMosPAAirport : Ind Airport ; + fun PortoviejoAirport : Ind Airport ; -fun PortofPoulsboMarinaMoorageSeaplaneBaseWAAirport : Ind Airport ; + fun PortpirieSouthAustraliaAirport : Ind Airport ; -fun PortorozAirport : Ind Airport ; + fun PortsmouthEnglandAirport : Ind Airport ; -fun PortoviejoAirport : Ind Airport ; + fun PorvenirAirport : Ind Airport ; -fun PortpirieSouthAustraliaAirport : Ind Airport ; + fun PosadasAirport : Ind Airport ; -fun PortsmouthEnglandAirport : Ind Airport ; + fun PosoAirport : Ind Airport ; -fun PorvenirAirport : Ind Airport ; + fun PostvilleAerodromeNFAirport : Ind Airport ; -fun PosadasAirport : Ind Airport ; + fun PottstownLimerickPAAirport : Ind Airport ; -fun PosoAirport : Ind Airport ; + fun PousoAlegreMGAirport : Ind Airport ; -fun PostvilleAerodromeNFAirport : Ind Airport ; + fun PovungnitukQCAirport : Ind Airport ; -fun PottstownLimerickPAAirport : Ind Airport ; + fun PowellLakeWaterAerodromeBCAirport : Ind Airport ; -fun PousoAlegreMGAirport : Ind Airport ; + fun PowellMunicipalWYAirport : Ind Airport ; -fun PovungnitukQCAirport : Ind Airport ; + fun PowellPointAirport : Ind Airport ; -fun PowellLakeWaterAerodromeBCAirport : Ind Airport ; + fun PowellRiverBCAirport : Ind Airport ; -fun PowellMunicipalWYAirport : Ind Airport ; + fun PozaRicaAirport : Ind Airport ; -fun PowellPointAirport : Ind Airport ; + fun PprtAliceSeaplaneBaseAKAirport : Ind Airport ; -fun PowellRiverBCAirport : Ind Airport ; + fun PradoBAAirport : Ind Airport ; -fun PozaRicaAirport : Ind Airport ; + fun PraiaSaoTiagoAirport : Ind Airport ; -fun PprtAliceSeaplaneBaseAKAirport : Ind Airport ; + fun PrairieduChienMunicipalWIAirport : Ind Airport ; -fun PradoBAAirport : Ind Airport ; + fun PraslinIslandAirport : Ind Airport ; -fun PraiaSaoTiagoAirport : Ind Airport ; + fun PratoAirport : Ind Airport ; -fun PrairieduChienMunicipalWIAirport : Ind Airport ; + fun PrattIndustrialKSAirport : Ind Airport ; -fun PraslinIslandAirport : Ind Airport ; + fun PrenticeWIAirport : Ind Airport ; -fun PratoAirport : Ind Airport ; + fun PrerovAirport : Ind Airport ; -fun PrattIndustrialKSAirport : Ind Airport ; + fun PresidenciaRoqueSaenzPenaAirport : Ind Airport ; -fun PrenticeWIAirport : Ind Airport ; + fun PresidenteCIdelCampoPuntaArenasAirport : Ind Airport ; -fun PrerovAirport : Ind Airport ; + fun PresidenteDutraAirport : Ind Airport ; -fun PresidenciaRoqueSaenzPenaAirport : Ind Airport ; + fun PresidenteMediciACAirport : Ind Airport ; -fun PresidenteCIdelCampoPuntaArenasAirport : Ind Airport ; + fun PresidentePrudenteSPAirport : Ind Airport ; -fun PresidenteDutraAirport : Ind Airport ; + fun PresqueIsleCountyMIAirport : Ind Airport ; -fun PresidenteMediciACAirport : Ind Airport ; + fun PrestonAirport : Ind Airport ; -fun PresidentePrudenteSPAirport : Ind Airport ; + fun PrestwickScotlandAirport : Ind Airport ; -fun PresqueIsleCountyMIAirport : Ind Airport ; + fun PrevezaLefkasAirport : Ind Airport ; -fun PrestonAirport : Ind Airport ; + fun PrinceAlbertSKAirport : Ind Airport ; -fun PrestwickScotlandAirport : Ind Airport ; + fun PrinceGeorgeBCAirport : Ind Airport ; -fun PrevezaLefkasAirport : Ind Airport ; + fun PrinceRupertBCAirport : Ind Airport ; -fun PrinceAlbertSKAirport : Ind Airport ; + fun PrincesJulianaStMaartenPhilipsburgAirport : Ind Airport ; -fun PrinceGeorgeBCAirport : Ind Airport ; + fun PrincetonMunicipalMEAirport : Ind Airport ; -fun PrinceRupertBCAirport : Ind Airport ; + fun PrincetonMunicipalMNAirport : Ind Airport ; -fun PrincesJulianaStMaartenPhilipsburgAirport : Ind Airport ; + fun PrincetonNJAirport : Ind Airport ; -fun PrincetonMunicipalMEAirport : Ind Airport ; + fun PrincipePrincipeAirport : Ind Airport ; -fun PrincetonMunicipalMNAirport : Ind Airport ; + fun PrinevilleORAirport : Ind Airport ; -fun PrincetonNJAirport : Ind Airport ; + fun PristinaAirport : Ind Airport ; -fun PrincipePrincipeAirport : Ind Airport ; + fun ProgressoAirport : Ind Airport ; -fun PrinevilleORAirport : Ind Airport ; + fun PromeAirport : Ind Airport ; -fun PristinaAirport : Ind Airport ; + fun ProprianoAirport : Ind Airport ; -fun ProgressoAirport : Ind Airport ; + fun ProserpineQueenslandAirport : Ind Airport ; -fun PromeAirport : Ind Airport ; + fun ProspectCreekAKAirport : Ind Airport ; -fun ProprianoAirport : Ind Airport ; + fun ProspectHillMAAirport : Ind Airport ; -fun ProserpineQueenslandAirport : Ind Airport ; + fun ProvidenciaAirport : Ind Airport ; -fun ProspectCreekAKAirport : Ind Airport ; + fun ProvidencialesCaicosIsAirport : Ind Airport ; -fun ProspectHillMAAirport : Ind Airport ; + fun ProvideniyaMagadanAirport : Ind Airport ; -fun ProvidenciaAirport : Ind Airport ; + fun ProvincetownMunicipalMAAirport : Ind Airport ; -fun ProvidencialesCaicosIsAirport : Ind Airport ; + fun ProvoMunicipalUTAirport : Ind Airport ; -fun ProvideniyaMagadanAirport : Ind Airport ; + fun PrudhoeBayAKAirport : Ind Airport ; -fun ProvincetownMunicipalMAAirport : Ind Airport ; + fun PuasAirport : Ind Airport ; -fun ProvoMunicipalUTAirport : Ind Airport ; + fun PucallpaAirport : Ind Airport ; -fun PrudhoeBayAKAirport : Ind Airport ; + fun PuconAirport : Ind Airport ; -fun PuasAirport : Ind Airport ; + fun PueblaAirport : Ind Airport ; -fun PucallpaAirport : Ind Airport ; + fun PuebloMemorialCOAirport : Ind Airport ; -fun PuconAirport : Ind Airport ; + fun PuertoAisenAirport : Ind Airport ; -fun PueblaAirport : Ind Airport ; + fun PuertoAsisAirport : Ind Airport ; -fun PuebloMemorialCOAirport : Ind Airport ; + fun PuertoAyacuchoAirport : Ind Airport ; -fun PuertoAisenAirport : Ind Airport ; + fun PuertoBarriosAirport : Ind Airport ; -fun PuertoAsisAirport : Ind Airport ; + fun PuertoBerrioAirport : Ind Airport ; -fun PuertoAyacuchoAirport : Ind Airport ; + fun PuertoBoyacaAirport : Ind Airport ; -fun PuertoBarriosAirport : Ind Airport ; + fun PuertoCabezasAirport : Ind Airport ; -fun PuertoBerrioAirport : Ind Airport ; + fun PuertoCarrenoAirport : Ind Airport ; -fun PuertoBoyacaAirport : Ind Airport ; + fun PuertoDeseadoAirport : Ind Airport ; -fun PuertoCabezasAirport : Ind Airport ; + fun PuertoEscondidoAirport : Ind Airport ; -fun PuertoCarrenoAirport : Ind Airport ; + fun PuertoIniridaAirport : Ind Airport ; -fun PuertoDeseadoAirport : Ind Airport ; + fun PuertoJimenezAirport : Ind Airport ; -fun PuertoEscondidoAirport : Ind Airport ; + fun PuertoJuarezAirport : Ind Airport ; -fun PuertoIniridaAirport : Ind Airport ; + fun PuertoLaCruzAirport : Ind Airport ; -fun PuertoJimenezAirport : Ind Airport ; + fun PuertoLeguizamAirport : Ind Airport ; -fun PuertoJuarezAirport : Ind Airport ; + fun PuertoLenpiraAirport : Ind Airport ; -fun PuertoLaCruzAirport : Ind Airport ; + fun PuertoObaldiaAirport : Ind Airport ; -fun PuertoLeguizamAirport : Ind Airport ; + fun PuertoPaezAirport : Ind Airport ; -fun PuertoLenpiraAirport : Ind Airport ; + fun PuertoPenascoAirport : Ind Airport ; -fun PuertoObaldiaAirport : Ind Airport ; + fun PuertoPlataAirport : Ind Airport ; -fun PuertoPaezAirport : Ind Airport ; + fun PuertoPrincesaInternationalPuertoPrincesaAirport : Ind Airport ; -fun PuertoPenascoAirport : Ind Airport ; + fun PuertoRicoAirport : Ind Airport ; -fun PuertoPlataAirport : Ind Airport ; + fun PuertoRicoAirportColombia : Ind Airport ; -fun PuertoPrincesaInternationalPuertoPrincesaAirport : Ind Airport ; + fun PuertoWilliamsAirport : Ind Airport ; -fun PuertoRicoAirport : Ind Airport ; + fun PukapukaAirport : Ind Airport ; -fun PuertoRicoAirportColombia : Ind Airport ; + fun PukaruAirport : Ind Airport ; -fun PuertoWilliamsAirport : Ind Airport ; + fun PukatawaganMBAirport : Ind Airport ; -fun PukapukaAirport : Ind Airport ; + fun PulaAirport : Ind Airport ; -fun PukaruAirport : Ind Airport ; + fun Pulkowo2LeningradAirport : Ind Airport ; -fun PukatawaganMBAirport : Ind Airport ; + fun PullmanWAMoscowAirport : Ind Airport ; -fun PulaAirport : Ind Airport ; + fun PumaniAirport : Ind Airport ; -fun Pulkowo2LeningradAirport : Ind Airport ; + fun PuniaAirport : Ind Airport ; -fun PullmanWAMoscowAirport : Ind Airport ; + fun PunotecaAirport : Ind Airport ; -fun PumaniAirport : Ind Airport ; + fun PuntaAlegreAirport : Ind Airport ; -fun PuniaAirport : Ind Airport ; + fun PuntaCanaAirport : Ind Airport ; -fun PunotecaAirport : Ind Airport ; + fun PuntaChivatoAirport : Ind Airport ; -fun PuntaAlegreAirport : Ind Airport ; + fun PuntaColoradaAirport : Ind Airport ; -fun PuntaCanaAirport : Ind Airport ; + fun PuntaGordaAirport : Ind Airport ; -fun PuntaChivatoAirport : Ind Airport ; + fun PuntaRaisiSicilyAirport : Ind Airport ; -fun PuntaColoradaAirport : Ind Airport ; + fun PuntadeMaisiAirport : Ind Airport ; -fun PuntaGordaAirport : Ind Airport ; + fun PuntziMountainBCAirport : Ind Airport ; -fun PuntaRaisiSicilyAirport : Ind Airport ; + fun PurdueUniversityINAirport : Ind Airport ; -fun PuntadeMaisiAirport : Ind Airport ; + fun PussoAlegreMGAirport : Ind Airport ; -fun PuntziMountainBCAirport : Ind Airport ; + fun PutaoAirport : Ind Airport ; -fun PurdueUniversityINAirport : Ind Airport ; + fun PutnamCountyOHAirport : Ind Airport ; -fun PussoAlegreMGAirport : Ind Airport ; + fun PuttaparthiAirport : Ind Airport ; -fun PutaoAirport : Ind Airport ; + fun PuttgardenAirport : Ind Airport ; -fun PutnamCountyOHAirport : Ind Airport ; + fun PutumayoAirport : Ind Airport ; -fun PuttaparthiAirport : Ind Airport ; + fun PutussibauBorneoAirport : Ind Airport ; -fun PuttgardenAirport : Ind Airport ; + fun PwetoAirport : Ind Airport ; -fun PutumayoAirport : Ind Airport ; + fun PyrgosAirport : Ind Airport ; -fun PutussibauBorneoAirport : Ind Airport ; + fun QalaNauAirport : Ind Airport ; -fun PwetoAirport : Ind Airport ; + fun QanaqAirport : Ind Airport ; -fun PyrgosAirport : Ind Airport ; + fun QingdaoAirport : Ind Airport ; -fun QalaNauAirport : Ind Airport ; + fun QinhuangdaoAirport : Ind Airport ; -fun QanaqAirport : Ind Airport ; + fun QiqiharTsitsiharAirport : Ind Airport ; -fun QingdaoAirport : Ind Airport ; + fun QuadCityILAirport : Ind Airport ; -fun QinhuangdaoAirport : Ind Airport ; + fun QuakertownPAAirport : Ind Airport ; -fun QiqiharTsitsiharAirport : Ind Airport ; + fun QualicumBeachAerodromeBCAirport : Ind Airport ; -fun QuadCityILAirport : Ind Airport ; + fun QuangNgaiAirport : Ind Airport ; -fun QuakertownPAAirport : Ind Airport ; + fun QuangaAirport : Ind Airport ; -fun QualicumBeachAerodromeBCAirport : Ind Airport ; + fun QuanticoMarineCorpsAirFacilityTurnerFieldVAAirport : Ind Airport ; -fun QuangNgaiAirport : Ind Airport ; + fun QuaqtaqQCAirport : Ind Airport ; -fun QuangaAirport : Ind Airport ; + fun QuartzHillCAAirport : Ind Airport ; -fun QuanticoMarineCorpsAirFacilityTurnerFieldVAAirport : Ind Airport ; + fun QuebecQCAirport : Ind Airport ; -fun QuaqtaqQCAirport : Ind Airport ; + fun QueenCharlotteWaterAerodromeBCAirport : Ind Airport ; -fun QuartzHillCAAirport : Ind Airport ; + fun QueenstownAirport : Ind Airport ; -fun QuebecQCAirport : Ind Airport ; + fun QueenstownAirportSouthAfrica : Ind Airport ; -fun QueenCharlotteWaterAerodromeBCAirport : Ind Airport ; + fun QueenstownTasmaniaAirport : Ind Airport ; -fun QueenstownAirport : Ind Airport ; + fun QuelimaneAirport : Ind Airport ; -fun QueenstownAirportSouthAfrica : Ind Airport ; + fun QueposAirport : Ind Airport ; -fun QueenstownTasmaniaAirport : Ind Airport ; + fun QueretaroAirport : Ind Airport ; -fun QuelimaneAirport : Ind Airport ; + fun QuesnelBCAirport : Ind Airport ; -fun QueposAirport : Ind Airport ; + fun QuettaAirport : Ind Airport ; -fun QueretaroAirport : Ind Airport ; + fun QuetzalcoatiNuevoLaredoAirport : Ind Airport ; -fun QuesnelBCAirport : Ind Airport ; + fun QuibdoAirport : Ind Airport ; -fun QuettaAirport : Ind Airport ; + fun QuillayuteStateWAAirport : Ind Airport ; -fun QuetzalcoatiNuevoLaredoAirport : Ind Airport ; + fun QuilpieQueenslandAirport : Ind Airport ; -fun QuibdoAirport : Ind Airport ; + fun QuinceMilAirport : Ind Airport ; -fun QuillayuteStateWAAirport : Ind Airport ; + fun QuincyMunicipalBaldwinFieldILAirport : Ind Airport ; -fun QuilpieQueenslandAirport : Ind Airport ; + fun QuineHillAirport : Ind Airport ; -fun QuinceMilAirport : Ind Airport ; + fun QuirindiNewSouthWalesAirport : Ind Airport ; -fun QuincyMunicipalBaldwinFieldILAirport : Ind Airport ; + fun QuonsetStateRIAirport : Ind Airport ; -fun QuineHillAirport : Ind Airport ; + fun QuyNhonAirport : Ind Airport ; -fun QuirindiNewSouthWalesAirport : Ind Airport ; + fun QuzhouAirport : Ind Airport ; -fun QuonsetStateRIAirport : Ind Airport ; + fun RabarabaAirport : Ind Airport ; -fun QuyNhonAirport : Ind Airport ; + fun RabaulAirport : Ind Airport ; -fun QuzhouAirport : Ind Airport ; + fun RabiAirport : Ind Airport ; -fun RabarabaAirport : Ind Airport ; + fun RachGiaAirport : Ind Airport ; -fun RabaulAirport : Ind Airport ; + fun RaduzhnyiAirport : Ind Airport ; -fun RabiAirport : Ind Airport ; + fun RaeLakesAerodromeNTAirport : Ind Airport ; -fun RachGiaAirport : Ind Airport ; + fun RafaiAirport : Ind Airport ; -fun RaduzhnyiAirport : Ind Airport ; + fun RafhaAirport : Ind Airport ; -fun RaeLakesAerodromeNTAirport : Ind Airport ; + fun RaglandAirport : Ind Airport ; -fun RafaiAirport : Ind Airport ; + fun RahaAirport : Ind Airport ; -fun RafhaAirport : Ind Airport ; + fun RahimYarKhanAirport : Ind Airport ; -fun RaglandAirport : Ind Airport ; + fun RaiateaSocietyIslandsAirport : Ind Airport ; -fun RahaAirport : Ind Airport ; + fun RailwayStationBadenBadenAirport : Ind Airport ; -fun RahimYarKhanAirport : Ind Airport ; + fun RailwayStationNJAirport : Ind Airport ; -fun RaiateaSocietyIslandsAirport : Ind Airport ; + fun RainbowLakeABAirport : Ind Airport ; -fun RailwayStationBadenBadenAirport : Ind Airport ; + fun RaipurAirport : Ind Airport ; -fun RailwayStationNJAirport : Ind Airport ; + fun RajahmundryAirport : Ind Airport ; -fun RainbowLakeABAirport : Ind Airport ; + fun RajbirajAirport : Ind Airport ; -fun RaipurAirport : Ind Airport ; + fun RajkotAirport : Ind Airport ; -fun RajahmundryAirport : Ind Airport ; + fun RajouriAirport : Ind Airport ; -fun RajbirajAirport : Ind Airport ; + fun RajshaniAirport : Ind Airport ; -fun RajkotAirport : Ind Airport ; + fun RakandaAirport : Ind Airport ; -fun RajouriAirport : Ind Airport ; + fun RaleighDurhamInternationalNCAirport : Ind Airport ; -fun RajshaniAirport : Ind Airport ; + fun RalphMCalhounMemorialAKAirport : Ind Airport ; -fun RakandaAirport : Ind Airport ; + fun RalphWienMemorialAKAirport : Ind Airport ; -fun RaleighDurhamInternationalNCAirport : Ind Airport ; + fun RamagundamAirport : Ind Airport ; -fun RalphMCalhounMemorialAKAirport : Ind Airport ; + fun RamechhapAirport : Ind Airport ; -fun RalphWienMemorialAKAirport : Ind Airport ; + fun RaminginingNorthernTerritoryAirport : Ind Airport ; -fun RamagundamAirport : Ind Airport ; + fun RampartAKAirport : Ind Airport ; -fun RamechhapAirport : Ind Airport ; + fun RamsarAirport : Ind Airport ; -fun RaminginingNorthernTerritoryAirport : Ind Airport ; + fun RamsteinAirBaseRamsteinAirport : Ind Airport ; -fun RampartAKAirport : Ind Airport ; + fun RanauAirport : Ind Airport ; -fun RamsarAirport : Ind Airport ; + fun RanchoBuenaVistaAirport : Ind Airport ; -fun RamsteinAirBaseRamsteinAirport : Ind Airport ; + fun RanchoCaliforniaCAAirport : Ind Airport ; -fun RanauAirport : Ind Airport ; + fun RanchoMurietaCAAirport : Ind Airport ; -fun RanchoBuenaVistaAirport : Ind Airport ; + fun RandGermistonJohannesburgAirport : Ind Airport ; -fun RanchoCaliforniaCAAirport : Ind Airport ; + fun RandolphAirForceBaseTXAirport : Ind Airport ; -fun RanchoMurietaCAAirport : Ind Airport ; + fun RangelyCOAirport : Ind Airport ; -fun RandGermistonJohannesburgAirport : Ind Airport ; + fun RangerMunicipalTXAirport : Ind Airport ; -fun RandolphAirForceBaseTXAirport : Ind Airport ; + fun RangiroaTuamotuArchipelagoAirport : Ind Airport ; -fun RangelyCOAirport : Ind Airport ; + fun RangpurAirport : Ind Airport ; -fun RangerMunicipalTXAirport : Ind Airport ; + fun RankinInletNTAirport : Ind Airport ; -fun RangiroaTuamotuArchipelagoAirport : Ind Airport ; + fun RansikiAirport : Ind Airport ; -fun RangpurAirport : Ind Airport ; + fun RapidCityRegionalSDAirport : Ind Airport ; -fun RankinInletNTAirport : Ind Airport ; + fun RarotongaInternationalAvaruaAirport : Ind Airport ; -fun RansikiAirport : Ind Airport ; + fun RasNasraniSharmElSheikhAirport : Ind Airport ; -fun RapidCityRegionalSDAirport : Ind Airport ; + fun RasalKhaymahAirport : Ind Airport ; -fun RarotongaInternationalAvaruaAirport : Ind Airport ; + fun RaselNaqbRasanNaqbAirport : Ind Airport ; -fun RasNasraniSharmElSheikhAirport : Ind Airport ; + fun RashtAirport : Ind Airport ; -fun RasalKhaymahAirport : Ind Airport ; + fun RaspberryStraitAKAirport : Ind Airport ; -fun RaselNaqbRasanNaqbAirport : Ind Airport ; + fun RatnagiriAirport : Ind Airport ; -fun RashtAirport : Ind Airport ; + fun RatonMunicipalAirportCrewsFieldNMAirport : Ind Airport ; -fun RaspberryStraitAKAirport : Ind Airport ; + fun RaudaskylaYlivieskaAirport : Ind Airport ; -fun RatnagiriAirport : Ind Airport ; + fun RaudhaAirport : Ind Airport ; -fun RatonMunicipalAirportCrewsFieldNMAirport : Ind Airport ; + fun RaufarhofnAirport : Ind Airport ; -fun RaudaskylaYlivieskaAirport : Ind Airport ; + fun RavennaAirport : Ind Airport ; -fun RaudhaAirport : Ind Airport ; + fun RawalaKotAirport : Ind Airport ; -fun RaufarhofnAirport : Ind Airport ; + fun RawalpindiAirport : Ind Airport ; -fun RavennaAirport : Ind Airport ; + fun RawlinsMunicipalWYAirport : Ind Airport ; -fun RawalaKotAirport : Ind Airport ; + fun RayongPattayaAirport : Ind Airport ; -fun RawalpindiAirport : Ind Airport ; + fun ReaPointNTAirport : Ind Airport ; -fun RawlinsMunicipalWYAirport : Ind Airport ; + fun ReadAirport : Ind Airport ; -fun RayongPattayaAirport : Ind Airport ; + fun ReadingRegionalAirportCarlASpaatzFieldPAAirport : Ind Airport ; -fun ReaPointNTAirport : Ind Airport ; + fun RebunAirport : Ind Airport ; -fun ReadAirport : Ind Airport ; + fun ReconquistaAirport : Ind Airport ; -fun ReadingRegionalAirportCarlASpaatzFieldPAAirport : Ind Airport ; + fun RedBluffMunicipalCAAirport : Ind Airport ; -fun RebunAirport : Ind Airport ; + fun RedDeerIndustrialABAirport : Ind Airport ; -fun ReconquistaAirport : Ind Airport ; + fun RedDevilAKAirport : Ind Airport ; -fun RedBluffMunicipalCAAirport : Ind Airport ; + fun RedDogAKAirport : Ind Airport ; -fun RedDeerIndustrialABAirport : Ind Airport ; + fun RedLakeONAirport : Ind Airport ; -fun RedDevilAKAirport : Ind Airport ; + fun RedOakMunicipalIAAirport : Ind Airport ; -fun RedDogAKAirport : Ind Airport ; + fun RedRiverNDAirport : Ind Airport ; -fun RedLakeONAirport : Ind Airport ; + fun RedSuckerLakeONAirport : Ind Airport ; -fun RedOakMunicipalIAAirport : Ind Airport ; + fun RedWingMunicipalMNAirport : Ind Airport ; -fun RedRiverNDAirport : Ind Airport ; + fun RedbirdTXAirport : Ind Airport ; -fun RedSuckerLakeONAirport : Ind Airport ; + fun RedcliffeAirport : Ind Airport ; -fun RedWingMunicipalMNAirport : Ind Airport ; + fun ReddingMunicipalCAAirport : Ind Airport ; -fun RedbirdTXAirport : Ind Airport ; + fun RedencaoAirport : Ind Airport ; -fun RedcliffeAirport : Ind Airport ; + fun RedwoodFallsMunicipalMNAirport : Ind Airport ; -fun ReddingMunicipalCAAirport : Ind Airport ; + fun ReeseAirForceBaseTXAirport : Ind Airport ; -fun RedencaoAirport : Ind Airport ; + fun ReggioCalabriaAirport : Ind Airport ; -fun RedwoodFallsMunicipalMNAirport : Ind Airport ; + fun ReginaAirport : Ind Airport ; -fun ReeseAirForceBaseTXAirport : Ind Airport ; + fun ReginaSKAirport : Ind Airport ; -fun ReggioCalabriaAirport : Ind Airport ; + fun ReginaldGrantMemorialGAAirport : Ind Airport ; -fun ReginaAirport : Ind Airport ; + fun RegionalONAirport : Ind Airport ; -fun ReginaSKAirport : Ind Airport ; + fun RehobothBaySeaplaneBaseDEAirport : Ind Airport ; -fun ReginaldGrantMemorialGAAirport : Ind Airport ; + fun ReidHillviewofSantaClaraCountyCAAirport : Ind Airport ; -fun RegionalONAirport : Ind Airport ; + fun ReidsvilleGAAirport : Ind Airport ; -fun RehobothBaySeaplaneBaseDEAirport : Ind Airport ; + fun ReinaSofiaTenerifeSurCanaryIslandsAirport : Ind Airport ; -fun ReidHillviewofSantaClaraCountyCAAirport : Ind Airport ; + fun ReiviloAirport : Ind Airport ; -fun ReidsvilleGAAirport : Ind Airport ; + fun RengatAirport : Ind Airport ; -fun ReinaSofiaTenerifeSurCanaryIslandsAirport : Ind Airport ; + fun RenmarkSouthAustraliaAirport : Ind Airport ; -fun ReiviloAirport : Ind Airport ; + fun RennellIslandAirport : Ind Airport ; -fun RengatAirport : Ind Airport ; + fun RenoCannonInternationalNVAirport : Ind Airport ; -fun RenmarkSouthAustraliaAirport : Ind Airport ; + fun RentonMunicipalWAAirport : Ind Airport ; -fun RennellIslandAirport : Ind Airport ; + fun RepulseBayNTAirport : Ind Airport ; -fun RenoCannonInternationalNVAirport : Ind Airport ; + fun RequenaAirport : Ind Airport ; -fun RentonMunicipalWAAirport : Ind Airport ; + fun ResendeRJAirport : Ind Airport ; -fun RepulseBayNTAirport : Ind Airport ; + fun ResistenciaAirport : Ind Airport ; -fun RequenaAirport : Ind Airport ; + fun ResoluteBayNTAirport : Ind Airport ; -fun ResendeRJAirport : Ind Airport ; + fun ResolutionIslandNTAirport : Ind Airport ; -fun ResistenciaAirport : Ind Airport ; + fun RethymnonCreteAirport : Ind Airport ; -fun ResoluteBayNTAirport : Ind Airport ; + fun ReusAirport : Ind Airport ; -fun ResolutionIslandNTAirport : Ind Airport ; + fun ReusTarragonaAirport : Ind Airport ; -fun RethymnonCreteAirport : Ind Airport ; + fun RevelstokeBCAirport : Ind Airport ; -fun ReusAirport : Ind Airport ; + fun RewaAirport : Ind Airport ; -fun ReusTarragonaAirport : Ind Airport ; + fun ReyesAirport : Ind Airport ; -fun RevelstokeBCAirport : Ind Airport ; + fun ReykholarAirport : Ind Airport ; -fun RewaAirport : Ind Airport ; + fun ReykjahlidhMyvatnAirport : Ind Airport ; -fun ReyesAirport : Ind Airport ; + fun ReykjavikAirport : Ind Airport ; -fun ReykholarAirport : Ind Airport ; + fun RezayiehAirport : Ind Airport ; -fun ReykjahlidhMyvatnAirport : Ind Airport ; + fun RhinelanderOneidaCountyWIAirport : Ind Airport ; -fun ReykjavikAirport : Ind Airport ; + fun RiberaltaAirport : Ind Airport ; -fun RezayiehAirport : Ind Airport ; + fun RiberaoPretoSPAirport : Ind Airport ; -fun RhinelanderOneidaCountyWIAirport : Ind Airport ; + fun RiceLakeMunicipalWIAirport : Ind Airport ; -fun RiberaltaAirport : Ind Airport ; + fun RichardBHelgesonMNAirport : Ind Airport ; -fun RiberaoPretoSPAirport : Ind Airport ; + fun RichardBRussellGAAirport : Ind Airport ; -fun RiceLakeMunicipalWIAirport : Ind Airport ; + fun RichardIBongWIAirport : Ind Airport ; -fun RichardBHelgesonMNAirport : Ind Airport ; + fun RichardLloydJonesJrOKAirport : Ind Airport ; -fun RichardBRussellGAAirport : Ind Airport ; + fun RichardTollAirport : Ind Airport ; -fun RichardIBongWIAirport : Ind Airport ; + fun RichardsBayAirport : Ind Airport ; -fun RichardLloydJonesJrOKAirport : Ind Airport ; + fun RichfieldMunicipalUTAirport : Ind Airport ; -fun RichardTollAirport : Ind Airport ; + fun RichlandWAAirport : Ind Airport ; -fun RichardsBayAirport : Ind Airport ; + fun RichmondInternationalAirportByrdFieldVAAirport : Ind Airport ; -fun RichfieldMunicipalUTAirport : Ind Airport ; + fun RichmondMunicipalINAirport : Ind Airport ; -fun RichlandWAAirport : Ind Airport ; + fun RichmondQueenslandAirport : Ind Airport ; -fun RichmondInternationalAirportByrdFieldVAAirport : Ind Airport ; + fun RickenbackerInternationalOHAirport : Ind Airport ; -fun RichmondMunicipalINAirport : Ind Airport ; + fun RigoletAerodromeNFAirport : Ind Airport ; -fun RichmondQueenslandAirport : Ind Airport ; + fun RijekaAirport : Ind Airport ; -fun RickenbackerInternationalOHAirport : Ind Airport ; + fun RiminiAirport : Ind Airport ; -fun RigoletAerodromeNFAirport : Ind Airport ; + fun RimouskiQCAirport : Ind Airport ; -fun RijekaAirport : Ind Airport ; + fun RingiCoveAirport : Ind Airport ; -fun RiminiAirport : Ind Airport ; + fun RingwayInternationalEnglandAirport : Ind Airport ; -fun RimouskiQCAirport : Ind Airport ; + fun RioAlzucarAirport : Ind Airport ; -fun RingiCoveAirport : Ind Airport ; + fun RioCuartoAreadeMaterialRioCuartoAirport : Ind Airport ; -fun RingwayInternationalEnglandAirport : Ind Airport ; + fun RioFrioAirport : Ind Airport ; -fun RioAlzucarAirport : Ind Airport ; + fun RioGallegosAirport : Ind Airport ; -fun RioCuartoAreadeMaterialRioCuartoAirport : Ind Airport ; + fun RioGrandeAirport : Ind Airport ; -fun RioFrioAirport : Ind Airport ; + fun RioGrandeRSAirport : Ind Airport ; -fun RioGallegosAirport : Ind Airport ; + fun RioGrandeValleyTXAirport : Ind Airport ; -fun RioGrandeAirport : Ind Airport ; + fun RioHondoAirport : Ind Airport ; -fun RioGrandeRSAirport : Ind Airport ; + fun RioMayoAirport : Ind Airport ; -fun RioGrandeValleyTXAirport : Ind Airport ; + fun RioSidraAirport : Ind Airport ; -fun RioHondoAirport : Ind Airport ; + fun RioTigreAirport : Ind Airport ; -fun RioMayoAirport : Ind Airport ; + fun RioTurbioAirport : Ind Airport ; -fun RioSidraAirport : Ind Airport ; + fun RioVerdeAirport : Ind Airport ; -fun RioTigreAirport : Ind Airport ; + fun RiohachaAirport : Ind Airport ; -fun RioTurbioAirport : Ind Airport ; + fun RiojaAirport : Ind Airport ; -fun RioVerdeAirport : Ind Airport ; + fun RiosoSulSCAirport : Ind Airport ; -fun RiohachaAirport : Ind Airport ; + fun RishiriAirport : Ind Airport ; -fun RiojaAirport : Ind Airport ; + fun RiverCessAirport : Ind Airport ; -fun RiosoSulSCAirport : Ind Airport ; + fun RiversInletWaterAerodromeBCAirport : Ind Airport ; -fun RishiriAirport : Ind Airport ; + fun RiversMBAirport : Ind Airport ; -fun RiverCessAirport : Ind Airport ; + fun RiversideMunicipalCAAirport : Ind Airport ; -fun RiversInletWaterAerodromeBCAirport : Ind Airport ; + fun RivertonRegionalWYAirport : Ind Airport ; -fun RiversMBAirport : Ind Airport ; + fun RivesaltesPerpignanAirport : Ind Airport ; -fun RiversideMunicipalCAAirport : Ind Airport ; + fun RiviereQCAirport : Ind Airport ; -fun RivertonRegionalWYAirport : Ind Airport ; + fun RiviereauTonnerreQCAirport : Ind Airport ; -fun RivesaltesPerpignanAirport : Ind Airport ; + fun RiviereduLoupQCAirport : Ind Airport ; -fun RiviereQCAirport : Ind Airport ; + fun RivneRovnoRivneAirport : Ind Airport ; -fun RiviereauTonnerreQCAirport : Ind Airport ; + fun RivoltoUdineAirport : Ind Airport ; -fun RiviereduLoupQCAirport : Ind Airport ; + fun RiyadhAirport : Ind Airport ; -fun RivneRovnoRivneAirport : Ind Airport ; + fun RiyanAirport : Ind Airport ; -fun RivoltoUdineAirport : Ind Airport ; + fun RizeAirport : Ind Airport ; -fun RiyadhAirport : Ind Airport ; + fun RoadTownSeaplaneBaseTortolaAirport : Ind Airport ; -fun RiyanAirport : Ind Airport ; + fun RoanneAirport : Ind Airport ; -fun RizeAirport : Ind Airport ; + fun RoanokeRegionalAirportWoodrumFieldVAAirport : Ind Airport ; -fun RoadTownSeaplaneBaseTortolaAirport : Ind Airport ; + fun RoatanAirport : Ind Airport ; -fun RoanneAirport : Ind Airport ; + fun RobenHoodMIAirport : Ind Airport ; -fun RoanokeRegionalAirportWoodrumFieldVAAirport : Ind Airport ; + fun RobertBobCurtisMemorialAKAirport : Ind Airport ; -fun RoatanAirport : Ind Airport ; + fun RobertSKerrOKAirport : Ind Airport ; -fun RobenHoodMIAirport : Ind Airport ; + fun RobertSibleyTNAirport : Ind Airport ; -fun RobertBobCurtisMemorialAKAirport : Ind Airport ; + fun RobertsArmyAirFieldCAAirport : Ind Airport ; -fun RobertSKerrOKAirport : Ind Airport ; + fun RobertsFieldMonroviaAirport : Ind Airport ; -fun RobertSibleyTNAirport : Ind Airport ; + fun RobertsFieldORAirport : Ind Airport ; -fun RobertsArmyAirFieldCAAirport : Ind Airport ; + fun RobervalQCAirport : Ind Airport ; -fun RobertsFieldMonroviaAirport : Ind Airport ; + fun RobinhoodQueenslandAirport : Ind Airport ; -fun RobertsFieldORAirport : Ind Airport ; + fun RobinsAirForceBaseGAAirport : Ind Airport ; -fun RobervalQCAirport : Ind Airport ; + fun RobinsonArmyAirFieldNationalGuardARAirport : Ind Airport ; -fun RobinhoodQueenslandAirport : Ind Airport ; + fun RobinsonMunicipalILAirport : Ind Airport ; -fun RobinsAirForceBaseGAAirport : Ind Airport ; + fun RobinsonRiverAirport : Ind Airport ; -fun RobinsonArmyAirFieldNationalGuardARAirport : Ind Airport ; + fun RobinsonRiverNorthernTerritoryAirport : Ind Airport ; -fun RobinsonMunicipalILAirport : Ind Airport ; + fun RobinvaleVictoriaAirport : Ind Airport ; -fun RobinsonRiverAirport : Ind Airport ; + fun RoboreAirport : Ind Airport ; -fun RobinsonRiverNorthernTerritoryAirport : Ind Airport ; + fun RoboroughEnglandAirport : Ind Airport ; -fun RobinvaleVictoriaAirport : Ind Airport ; + fun RocheHarborWAAirport : Ind Airport ; -fun RoboreAirport : Ind Airport ; + fun RochefortAirport : Ind Airport ; -fun RoboroughEnglandAirport : Ind Airport ; + fun RochesterAirport : Ind Airport ; -fun RocheHarborWAAirport : Ind Airport ; + fun RochesterMunicipalMNAirport : Ind Airport ; -fun RochefortAirport : Ind Airport ; + fun RockCountyNEAirport : Ind Airport ; -fun RochesterAirport : Ind Airport ; + fun RockHillMunicipalAirportBryantFieldSCAirport : Ind Airport ; -fun RochesterMunicipalMNAirport : Ind Airport ; + fun RockRapidsMunicipalIAAirport : Ind Airport ; -fun RockCountyNEAirport : Ind Airport ; + fun RockSoundEleutheraAirport : Ind Airport ; -fun RockHillMunicipalAirportBryantFieldSCAirport : Ind Airport ; + fun RockSpringsSweetwaterCountyWYAirport : Ind Airport ; -fun RockRapidsMunicipalIAAirport : Ind Airport ; + fun RockcliffeONAirport : Ind Airport ; -fun RockSoundEleutheraAirport : Ind Airport ; + fun RockhamptonDownsNorthernTerritoryAirport : Ind Airport ; -fun RockSpringsSweetwaterCountyWYAirport : Ind Airport ; + fun RockhamptonQueenslandAirport : Ind Airport ; -fun RockcliffeONAirport : Ind Airport ; + fun RockleighNJAirport : Ind Airport ; -fun RockhamptonDownsNorthernTerritoryAirport : Ind Airport ; + fun RockwoodMunicipalTNAirport : Ind Airport ; -fun RockhamptonQueenslandAirport : Ind Airport ; + fun RockyMountWilsonNCAirport : Ind Airport ; -fun RockleighNJAirport : Ind Airport ; + fun RockyMountainHouseABAirport : Ind Airport ; -fun RockwoodMunicipalTNAirport : Ind Airport ; + fun RodezAirport : Ind Airport ; -fun RockyMountWilsonNCAirport : Ind Airport ; + fun RodriguesIslandAirport : Ind Airport ; -fun RockyMountainHouseABAirport : Ind Airport ; + fun RodriguezdeMendezAirport : Ind Airport ; -fun RodezAirport : Ind Airport ; + fun RoebourneWesternAustraliaAirport : Ind Airport ; -fun RodriguesIslandAirport : Ind Airport ; + fun RogersMunicipalAirportCarterFieldARAirport : Ind Airport ; -fun RodriguezdeMendezAirport : Ind Airport ; + fun RokebyQueenslandAirport : Ind Airport ; -fun RoebourneWesternAustraliaAirport : Ind Airport ; + fun RokotAirport : Ind Airport ; -fun RogersMunicipalAirportCarterFieldARAirport : Ind Airport ; + fun RollaDowntownMOAirport : Ind Airport ; -fun RokebyQueenslandAirport : Ind Airport ; + fun RollaNationalMOAirport : Ind Airport ; -fun RokotAirport : Ind Airport ; + fun RollangFieldMSAirport : Ind Airport ; -fun RollaDowntownMOAirport : Ind Airport ; + fun RolpaAirport : Ind Airport ; -fun RollaNationalMOAirport : Ind Airport ; + fun RomaQueenslandAirport : Ind Airport ; -fun RollangFieldMSAirport : Ind Airport ; + fun RomeStateORAirport : Ind Airport ; -fun RolpaAirport : Ind Airport ; + fun RonchideiLegionariTriesteAirport : Ind Airport ; -fun RomaQueenslandAirport : Ind Airport ; + fun RondonAirport : Ind Airport ; -fun RomeStateORAirport : Ind Airport ; + fun RondonopolisMTAirport : Ind Airport ; -fun RonchideiLegionariTriesteAirport : Ind Airport ; + fun RongelapAirport : Ind Airport ; -fun RondonAirport : Ind Airport ; + fun RonnebyAirBaseRonnebyAirport : Ind Airport ; -fun RondonopolisMTAirport : Ind Airport ; + fun RookeFieldTXAirport : Ind Airport ; -fun RongelapAirport : Ind Airport ; + fun RooseveltMunicipalUTAirport : Ind Airport ; -fun RonnebyAirBaseRonnebyAirport : Ind Airport ; + fun RooseveltRoadsNavalStationOfstieFieldRooseveltRoadsAirport : Ind Airport ; -fun RookeFieldTXAirport : Ind Airport ; + fun RoperBarAirport : Ind Airport ; -fun RooseveltMunicipalUTAirport : Ind Airport ; + fun RoperValleyNorthernTerritoryAirport : Ind Airport ; -fun RooseveltRoadsNavalStationOfstieFieldRooseveltRoadsAirport : Ind Airport ; + fun RoronaAirport : Ind Airport ; -fun RoperBarAirport : Ind Airport ; + fun RorosAirport : Ind Airport ; -fun RoperValleyNorthernTerritoryAirport : Ind Airport ; + fun RorvikRoervikAirport : Ind Airport ; -fun RoronaAirport : Ind Airport ; + fun RosarioAirport : Ind Airport ; -fun RorosAirport : Ind Airport ; + fun RosarioSeaplaneBaseWAAirport : Ind Airport ; -fun RorvikRoervikAirport : Ind Airport ; + fun RoseauMunicipalMNAirport : Ind Airport ; -fun RosarioAirport : Ind Airport ; + fun RoseberthQueenslandAirport : Ind Airport ; -fun RosarioSeaplaneBaseWAAirport : Ind Airport ; + fun RoseburgMunicipalORAirport : Ind Airport ; -fun RoseauMunicipalMNAirport : Ind Airport ; + fun RosecransMemorialMOAirport : Ind Airport ; -fun RoseberthQueenslandAirport : Ind Airport ; + fun RoseiresAirport : Ind Airport ; -fun RoseburgMunicipalORAirport : Ind Airport ; + fun RosellaPlainsQueenslandAirport : Ind Airport ; -fun RosecransMemorialMOAirport : Ind Airport ; + fun RoshPinaAirport : Ind Airport ; -fun RoseiresAirport : Ind Airport ; + fun RoskildeKobenhavnCopenhagenAirport : Ind Airport ; -fun RosellaPlainsQueenslandAirport : Ind Airport ; + fun RossCountyOHAirport : Ind Airport ; -fun RoshPinaAirport : Ind Airport ; + fun RossRiverYTAirport : Ind Airport ; -fun RoskildeKobenhavnCopenhagenAirport : Ind Airport ; + fun RossvollMoiRanaAirport : Ind Airport ; -fun RossCountyOHAirport : Ind Airport ; + fun RostRoestAirport : Ind Airport ; -fun RossRiverYTAirport : Ind Airport ; + fun RostockAirport : Ind Airport ; -fun RossvollMoiRanaAirport : Ind Airport ; + fun RostovRostovAirport : Ind Airport ; -fun RostRoestAirport : Ind Airport ; + fun RoswellIndustrialAirCenterNMAirport : Ind Airport ; -fun RostockAirport : Ind Airport ; + fun RotaInternationalRotaIslandAirport : Ind Airport ; -fun RostovRostovAirport : Ind Airport ; + fun RotaNavalStationRotaAirport : Ind Airport ; -fun RoswellIndustrialAirCenterNMAirport : Ind Airport ; + fun RothenburgAirport : Ind Airport ; -fun RotaInternationalRotaIslandAirport : Ind Airport ; + fun RothesayAirport : Ind Airport ; -fun RotaNavalStationRotaAirport : Ind Airport ; + fun RotiAirport : Ind Airport ; -fun RothenburgAirport : Ind Airport ; + fun RotoruaAirport : Ind Airport ; -fun RothesayAirport : Ind Airport ; + fun RotterdamAirport : Ind Airport ; -fun RotiAirport : Ind Airport ; + fun RottnestIslandWesternAustraliaAirport : Ind Airport ; -fun RotoruaAirport : Ind Airport ; + fun RotumaAirport : Ind Airport ; -fun RotterdamAirport : Ind Airport ; + fun RotundaCAAirport : Ind Airport ; -fun RottnestIslandWesternAustraliaAirport : Ind Airport ; + fun RouenAirport : Ind Airport ; -fun RotumaAirport : Ind Airport ; + fun RoundupMTAirport : Ind Airport ; -fun RotundaCAAirport : Ind Airport ; + fun RourkelaAirport : Ind Airport ; -fun RouenAirport : Ind Airport ; + fun RousesPointSeaplaneBaseNYAirport : Ind Airport ; -fun RoundupMTAirport : Ind Airport ; + fun RouynNorandaQCAirport : Ind Airport ; -fun RourkelaAirport : Ind Airport ; + fun RovaniemiAirport : Ind Airport ; -fun RousesPointSeaplaneBaseNYAirport : Ind Airport ; + fun RowanBayAKAirport : Ind Airport ; -fun RouynNorandaQCAirport : Ind Airport ; + fun RowanCountyNCAirport : Ind Airport ; -fun RovaniemiAirport : Ind Airport ; + fun RoxasAirport : Ind Airport ; -fun RowanBayAKAirport : Ind Airport ; + fun RoyHillAirport : Ind Airport ; -fun RowanCountyNCAirport : Ind Airport ; + fun RoyHurdMemorialTXAirport : Ind Airport ; -fun RoxasAirport : Ind Airport ; + fun RoyanAirport : Ind Airport ; -fun RoyHillAirport : Ind Airport ; + fun RubelsantoAirport : Ind Airport ; -fun RoyHurdMemorialTXAirport : Ind Airport ; + fun RubemBertaRSAirport : Ind Airport ; -fun RoyanAirport : Ind Airport ; + fun RubyAKAirport : Ind Airport ; -fun RubelsantoAirport : Ind Airport ; + fun RugaoAirport : Ind Airport ; -fun RubemBertaRSAirport : Ind Airport ; + fun RuhengeriAirport : Ind Airport ; -fun RubyAKAirport : Ind Airport ; + fun RukumkotAirport : Ind Airport ; -fun RugaoAirport : Ind Airport ; + fun RumCayAirport : Ind Airport ; -fun RuhengeriAirport : Ind Airport ; + fun RumginaeAirport : Ind Airport ; -fun RukumkotAirport : Ind Airport ; + fun RumjartarAirport : Ind Airport ; -fun RumCayAirport : Ind Airport ; + fun RunduAirport : Ind Airport ; -fun RumginaeAirport : Ind Airport ; + fun RupsiAirport : Ind Airport ; -fun RumjartarAirport : Ind Airport ; + fun RurrenabaqueAirport : Ind Airport ; -fun RunduAirport : Ind Airport ; + fun RurutuTubuaiIslandsAirport : Ind Airport ; -fun RupsiAirport : Ind Airport ; + fun RuseAirport : Ind Airport ; -fun RurrenabaqueAirport : Ind Airport ; + fun RuskCountyWIAirport : Ind Airport ; -fun RurutuTubuaiIslandsAirport : Ind Airport ; + fun RussellMunicipalKSAirport : Ind Airport ; -fun RuseAirport : Ind Airport ; + fun RussianMissionAKAirport : Ind Airport ; -fun RuskCountyWIAirport : Ind Airport ; + fun RustonMunicipalLAAirport : Ind Airport ; -fun RussellMunicipalKSAirport : Ind Airport ; + fun RutengAirport : Ind Airport ; -fun RussianMissionAKAirport : Ind Airport ; + fun RutlandPlainsAirport : Ind Airport ; -fun RustonMunicipalLAAirport : Ind Airport ; + fun RutlandStateVTAirport : Ind Airport ; -fun RutengAirport : Ind Airport ; + fun RuzynePrahaPragueAirport : Ind Airport ; -fun RutlandPlainsAirport : Ind Airport ; + fun RyotsuSadoIsAirport : Ind Airport ; -fun RutlandStateVTAirport : Ind Airport ; + fun SAngeloTrevisoAirport : Ind Airport ; -fun RuzynePrahaPragueAirport : Ind Airport ; + fun SEgidioPerugiaAirport : Ind Airport ; -fun RyotsuSadoIsAirport : Ind Airport ; + fun SabaAirport : Ind Airport ; -fun SAngeloTrevisoAirport : Ind Airport ; + fun SabadellAirport : Ind Airport ; -fun SEgidioPerugiaAirport : Ind Airport ; + fun SabahAirport : Ind Airport ; -fun SabaAirport : Ind Airport ; + fun SabanadeLaMarAirport : Ind Airport ; -fun SabadellAirport : Ind Airport ; + fun SabanadeTorresAirport : Ind Airport ; -fun SabahAirport : Ind Airport ; + fun SableIslandNSAirport : Ind Airport ; -fun SabanadeLaMarAirport : Ind Airport ; + fun SachigoLakeNTAirport : Ind Airport ; -fun SabanadeTorresAirport : Ind Airport ; + fun SachsHarbourNTAirport : Ind Airport ; -fun SableIslandNSAirport : Ind Airport ; + fun SacramentoExecutiveCAAirport : Ind Airport ; -fun SachigoLakeNTAirport : Ind Airport ; + fun SacramentoMetropolitanCAAirport : Ind Airport ; -fun SachsHarbourNTAirport : Ind Airport ; + fun SadahAirport : Ind Airport ; -fun SacramentoExecutiveCAAirport : Ind Airport ; + fun SaddamInternationalBaghdadAirport : Ind Airport ; -fun SacramentoMetropolitanCAAirport : Ind Airport ; + fun SadoShimaAirport : Ind Airport ; -fun SadahAirport : Ind Airport ; + fun SaenzPenaAirport : Ind Airport ; -fun SaddamInternationalBaghdadAirport : Ind Airport ; + fun SaffordMunicipalAZAirport : Ind Airport ; -fun SadoShimaAirport : Ind Airport ; + fun SafiAirport : Ind Airport ; -fun SaenzPenaAirport : Ind Airport ; + fun SafiaAirport : Ind Airport ; -fun SaffordMunicipalAZAirport : Ind Airport ; + fun SagaraiAirport : Ind Airport ; -fun SafiAirport : Ind Airport ; + fun SaglekNFAirport : Ind Airport ; -fun SafiaAirport : Ind Airport ; + fun SagwonAKAirport : Ind Airport ; -fun SagaraiAirport : Ind Airport ; + fun Sahabat16Airport : Ind Airport ; -fun SaglekNFAirport : Ind Airport ; + fun SahiwalAirport : Ind Airport ; -fun SagwonAKAirport : Ind Airport ; + fun SaibaiIslandQueenslandAirport : Ind Airport ; -fun Sahabat16Airport : Ind Airport ; + fun SaidPurAirport : Ind Airport ; -fun SahiwalAirport : Ind Airport ; + fun SaidorAirport : Ind Airport ; -fun SaibaiIslandQueenslandAirport : Ind Airport ; + fun SaiduSharifAirport : Ind Airport ; -fun SaidPurAirport : Ind Airport ; + fun SaintBarthelemyAirport : Ind Airport ; -fun SaidorAirport : Ind Airport ; + fun SaintBrieucAirport : Ind Airport ; -fun SaiduSharifAirport : Ind Airport ; + fun SaintFrancoisAirport : Ind Airport ; -fun SaintBarthelemyAirport : Ind Airport ; + fun SaintJacquesRennesAirport : Ind Airport ; -fun SaintBrieucAirport : Ind Airport ; + fun SaintJohnNBAirport : Ind Airport ; -fun SaintFrancoisAirport : Ind Airport ; + fun SaintLouisAirport : Ind Airport ; -fun SaintJacquesRennesAirport : Ind Airport ; + fun SaintPierreAirport : Ind Airport ; -fun SaintJohnNBAirport : Ind Airport ; + fun SaintSymphorienToursAirport : Ind Airport ; -fun SaintLouisAirport : Ind Airport ; + fun SaintYanAirport : Ind Airport ; -fun SaintPierreAirport : Ind Airport ; + fun SaipanInternationalSaipanAirport : Ind Airport ; -fun SaintSymphorienToursAirport : Ind Airport ; + fun SakonNakhonAirport : Ind Airport ; -fun SaintYanAirport : Ind Airport ; + fun SalakMarouaAirport : Ind Airport ; -fun SaipanInternationalSaipanAirport : Ind Airport ; + fun SalalahInternationalSalalahAirport : Ind Airport ; -fun SakonNakhonAirport : Ind Airport ; + fun SalamancaAirport : Ind Airport ; -fun SalakMarouaAirport : Ind Airport ; + fun SalamoAirport : Ind Airport ; -fun SalalahInternationalSalalahAirport : Ind Airport ; + fun SaleRabatAirport : Ind Airport ; -fun SalamancaAirport : Ind Airport ; + fun SalemLeckroneILAirport : Ind Airport ; -fun SalamoAirport : Ind Airport ; + fun SalernoAirport : Ind Airport ; -fun SaleRabatAirport : Ind Airport ; + fun SalgadoFilhoRSAirport : Ind Airport ; -fun SalemLeckroneILAirport : Ind Airport ; + fun SalimaAirport : Ind Airport ; -fun SalernoAirport : Ind Airport ; + fun SalinaCruzAirport : Ind Airport ; -fun SalgadoFilhoRSAirport : Ind Airport ; + fun SalinaGunnisonUTAirport : Ind Airport ; -fun SalimaAirport : Ind Airport ; + fun SalinaMunicipalKSAirport : Ind Airport ; -fun SalinaCruzAirport : Ind Airport ; + fun SalinasMunicipalCAAirport : Ind Airport ; -fun SalinaGunnisonUTAirport : Ind Airport ; + fun SalisburyWicomicoCountyRegionalMDAirport : Ind Airport ; -fun SalinaMunicipalKSAirport : Ind Airport ; + fun SalluitQCAirport : Ind Airport ; -fun SalinasMunicipalCAAirport : Ind Airport ; + fun SalmonArmAerodromeBCAirport : Ind Airport ; -fun SalisburyWicomicoCountyRegionalMDAirport : Ind Airport ; + fun SaltCaySaltCayAirport : Ind Airport ; -fun SalluitQCAirport : Ind Airport ; + fun SaltLakeCityInternationalUTAirport : Ind Airport ; -fun SalmonArmAerodromeBCAirport : Ind Airport ; + fun SaltaAirport : Ind Airport ; -fun SaltCaySaltCayAirport : Ind Airport ; + fun SaltonSeaCAAirport : Ind Airport ; -fun SaltLakeCityInternationalUTAirport : Ind Airport ; + fun SalzburgAirport : Ind Airport ; -fun SaltaAirport : Ind Airport ; + fun SamRatulangiManadoAirport : Ind Airport ; -fun SaltonSeaCAAirport : Ind Airport ; + fun SamarindaAirport : Ind Airport ; -fun SalzburgAirport : Ind Airport ; + fun SamarqandSamarkandSamarqandAirport : Ind Airport ; -fun SamRatulangiManadoAirport : Ind Airport ; + fun SambavaAirport : Ind Airport ; -fun SamarindaAirport : Ind Airport ; + fun SambuAirport : Ind Airport ; -fun SamarqandSamarkandSamarqandAirport : Ind Airport ; + fun SamburuAirport : Ind Airport ; -fun SambavaAirport : Ind Airport ; + fun SamchokAirport : Ind Airport ; -fun SambuAirport : Ind Airport ; + fun SamedanStMoritzAirport : Ind Airport ; -fun SamburuAirport : Ind Airport ; + fun SamosSamosIslandAirport : Ind Airport ; -fun SamchokAirport : Ind Airport ; + fun SampitBorneoAirport : Ind Airport ; -fun SamedanStMoritzAirport : Ind Airport ; + fun SamsunAirport : Ind Airport ; -fun SamosSamosIslandAirport : Ind Airport ; + fun SanAndrosAndrosAirport : Ind Airport ; -fun SampitBorneoAirport : Ind Airport ; + fun SanAntonioAirport : Ind Airport ; -fun SamsunAirport : Ind Airport ; + fun SanAntonioInternationalTXAirport : Ind Airport ; -fun SanAndrosAndrosAirport : Ind Airport ; + fun SanBernardinoInternationalCAAirport : Ind Airport ; -fun SanAntonioAirport : Ind Airport ; + fun SanBlasAirport : Ind Airport ; -fun SanAntonioInternationalTXAirport : Ind Airport ; + fun SanBorjaAirport : Ind Airport ; -fun SanBernardinoInternationalCAAirport : Ind Airport ; + fun SanCarlosCAAirport : Ind Airport ; -fun SanBlasAirport : Ind Airport ; + fun SanClementeIslandNavalAuxiliaryLandingFieldFrederickShermanFieldCAAirport : Ind Airport ; -fun SanBorjaAirport : Ind Airport ; + fun SanCristobalAirport : Ind Airport ; -fun SanCarlosCAAirport : Ind Airport ; + fun SanDiegoInternationalAirportLindberghFieldCAAirport : Ind Airport ; -fun SanClementeIslandNavalAuxiliaryLandingFieldFrederickShermanFieldCAAirport : Ind Airport ; + fun SanEstebanAirport : Ind Airport ; -fun SanCristobalAirport : Ind Airport ; + fun SanFelipeAirportColombia : Ind Airport ; -fun SanDiegoInternationalAirportLindberghFieldCAAirport : Ind Airport ; + fun SanFelipeAirportMexico : Ind Airport ; -fun SanEstebanAirport : Ind Airport ; + fun SanFelipeAirportVenezuela : Ind Airport ; -fun SanFelipeAirportColombia : Ind Airport ; + fun SanFelixAirport : Ind Airport ; -fun SanFelipeAirportMexico : Ind Airport ; + fun SanFernandoAirport : Ind Airport ; -fun SanFelipeAirportVenezuela : Ind Airport ; + fun SanFernandoCAAirport : Ind Airport ; -fun SanFelixAirport : Ind Airport ; + fun SanFernandodeApuAirport : Ind Airport ; -fun SanFernandoAirport : Ind Airport ; + fun SanFranciscoAirport : Ind Airport ; -fun SanFernandoCAAirport : Ind Airport ; + fun SanFranciscoInternationalCAAirport : Ind Airport ; -fun SanFernandodeApuAirport : Ind Airport ; + fun SanFrancisquitoAirport : Ind Airport ; -fun SanFranciscoAirport : Ind Airport ; + fun SanIgnacioAirport : Ind Airport ; -fun SanFranciscoInternationalCAAirport : Ind Airport ; + fun SanIgnaciodeMoxosAirport : Ind Airport ; -fun SanFrancisquitoAirport : Ind Airport ; + fun SanIgnaciodeVLSAirport : Ind Airport ; -fun SanIgnacioAirport : Ind Airport ; + fun SanIsidroAirport : Ind Airport ; -fun SanIgnaciodeMoxosAirport : Ind Airport ; + fun SanJavierAirport : Ind Airport ; -fun SanIgnaciodeVLSAirport : Ind Airport ; + fun SanJavierMurciaAirport : Ind Airport ; -fun SanIsidroAirport : Ind Airport ; + fun SanJeronimoCordobaAirport : Ind Airport ; -fun SanJavierAirport : Ind Airport ; + fun SanJoaquinAirport : Ind Airport ; -fun SanJavierMurciaAirport : Ind Airport ; + fun SanJoseAirportBolivia : Ind Airport ; -fun SanJeronimoCordobaAirport : Ind Airport ; + fun SanJoseAirportPhilippines : Ind Airport ; -fun SanJoaquinAirport : Ind Airport ; + fun SanJoseInternationalCAAirport : Ind Airport ; -fun SanJoseAirportBolivia : Ind Airport ; + fun SanJosedelGuaviaroAirport : Ind Airport ; -fun SanJoseAirportPhilippines : Ind Airport ; + fun SanJuanAirport : Ind Airport ; -fun SanJoseInternationalCAAirport : Ind Airport ; + fun SanJuanAirportArgentina : Ind Airport ; -fun SanJosedelGuaviaroAirport : Ind Airport ; + fun SanJuanCountyUTAirport : Ind Airport ; -fun SanJuanAirport : Ind Airport ; + fun SanJuanUganikSeaplaneBaseAKAirport : Ind Airport ; -fun SanJuanAirportArgentina : Ind Airport ; + fun SanJuandeUrabaAirport : Ind Airport ; -fun SanJuanCountyUTAirport : Ind Airport ; + fun SanJuandelCesarAirport : Ind Airport ; -fun SanJuanUganikSeaplaneBaseAKAirport : Ind Airport ; + fun SanJuandelaMarAirport : Ind Airport ; -fun SanJuandeUrabaAirport : Ind Airport ; + fun SanJulianAirport : Ind Airport ; -fun SanJuandelCesarAirport : Ind Airport ; + fun SanLuisAirport : Ind Airport ; -fun SanJuandelaMarAirport : Ind Airport ; + fun SanLuisObispoCountyAirportMcChesneyFieldCAAirport : Ind Airport ; -fun SanJulianAirport : Ind Airport ; + fun SanLuisPotosiAirport : Ind Airport ; -fun SanLuisAirport : Ind Airport ; + fun SanLuisRioColoradoAirport : Ind Airport ; -fun SanLuisObispoCountyAirportMcChesneyFieldCAAirport : Ind Airport ; + fun SanLuisdePalenqueAirport : Ind Airport ; -fun SanLuisPotosiAirport : Ind Airport ; + fun SanMarcosAirport : Ind Airport ; -fun SanLuisRioColoradoAirport : Ind Airport ; + fun SanMarinoAirport : Ind Airport ; -fun SanLuisdePalenqueAirport : Ind Airport ; + fun SanMiguelAirport : Ind Airport ; -fun SanMarcosAirport : Ind Airport ; + fun SanNicolasdeBariAirport : Ind Airport ; -fun SanMarinoAirport : Ind Airport ; + fun SanPabloAirport : Ind Airport ; -fun SanMiguelAirport : Ind Airport ; + fun SanPabloSevillaAirport : Ind Airport ; -fun SanNicolasdeBariAirport : Ind Airport ; + fun SanPedroAirport : Ind Airport ; -fun SanPabloAirport : Ind Airport ; + fun SanPedroJaguaAirport : Ind Airport ; -fun SanPabloSevillaAirport : Ind Airport ; + fun SanPedrodeUrabaAirport : Ind Airport ; -fun SanPedroAirport : Ind Airport ; + fun SanQuintinAirport : Ind Airport ; -fun SanPedroJaguaAirport : Ind Airport ; + fun SanRamonAirport : Ind Airport ; -fun SanPedrodeUrabaAirport : Ind Airport ; + fun SanSalvadorAirport : Ind Airport ; -fun SanQuintinAirport : Ind Airport ; + fun SanSalvadorCockburnTownSanSalvadorAirport : Ind Airport ; -fun SanRamonAirport : Ind Airport ; + fun SanTomeAirport : Ind Airport ; -fun SanSalvadorAirport : Ind Airport ; + fun SanVicentedelCaguanAirport : Ind Airport ; -fun SanSalvadorCockburnTownSanSalvadorAirport : Ind Airport ; + fun SananaAirport : Ind Airport ; -fun SanTomeAirport : Ind Airport ; + fun SanandajAirport : Ind Airport ; -fun SanVicentedelCaguanAirport : Ind Airport ; + fun SanctiSpirituAirport : Ind Airport ; -fun SananaAirport : Ind Airport ; + fun SandPointAKAirport : Ind Airport ; -fun SanandajAirport : Ind Airport ; + fun SandakanSabahAirport : Ind Airport ; -fun SanctiSpirituAirport : Ind Airport ; + fun SandayOrkneyIslandsAirport : Ind Airport ; -fun SandPointAKAirport : Ind Airport ; + fun SandcreekAirport : Ind Airport ; -fun SandakanSabahAirport : Ind Airport ; + fun SandersonFieldWAAirport : Ind Airport ; -fun SandayOrkneyIslandsAirport : Ind Airport ; + fun SandowayAirport : Ind Airport ; -fun SandcreekAirport : Ind Airport ; + fun SandringhamQueenslandAirport : Ind Airport ; -fun SandersonFieldWAAirport : Ind Airport ; + fun SandspitBCAirport : Ind Airport ; -fun SandowayAirport : Ind Airport ; + fun SandstoneWesternAustraliaAirport : Ind Airport ; -fun SandringhamQueenslandAirport : Ind Airport ; + fun SandwipAirport : Ind Airport ; -fun SandspitBCAirport : Ind Airport ; + fun SandyLakeONAirport : Ind Airport ; -fun SandstoneWesternAustraliaAirport : Ind Airport ; + fun SanfordMunicipalMEAirport : Ind Airport ; -fun SandwipAirport : Ind Airport ; + fun SangaSangaAirport : Ind Airport ; -fun SandyLakeONAirport : Ind Airport ; + fun SangapiAirport : Ind Airport ; -fun SanfordMunicipalMEAirport : Ind Airport ; + fun SanggataAirport : Ind Airport ; -fun SangaSangaAirport : Ind Airport ; + fun SangirAirport : Ind Airport ; -fun SangapiAirport : Ind Airport ; + fun SangleyPointAirport : Ind Airport ; -fun SanggataAirport : Ind Airport ; + fun SangsterMontegoBayAirport : Ind Airport ; -fun SangirAirport : Ind Airport ; + fun SaniaRamelTetouanTetuanAirport : Ind Airport ; -fun SangleyPointAirport : Ind Airport ; + fun SanikiluaqNTAirport : Ind Airport ; -fun SangsterMontegoBayAirport : Ind Airport ; + fun SansSouciONAirport : Ind Airport ; -fun SaniaRamelTetouanTetuanAirport : Ind Airport ; + fun SantaAnaAirportBolivia : Ind Airport ; -fun SanikiluaqNTAirport : Ind Airport ; + fun SantaAnaAirportColombia : Ind Airport ; -fun SansSouciONAirport : Ind Airport ; + fun SantaAnaSeaplaneBaseSantaAnaAirport : Ind Airport ; -fun SantaAnaAirportBolivia : Ind Airport ; + fun SantaBarbaraAirport : Ind Airport ; -fun SantaAnaAirportColombia : Ind Airport ; + fun SantaBarbaraMunicipalCAAirport : Ind Airport ; -fun SantaAnaSeaplaneBaseSantaAnaAirport : Ind Airport ; + fun SantaCarolinaAirport : Ind Airport ; -fun SantaBarbaraAirport : Ind Airport ; + fun SantaCatalinaAirport : Ind Airport ; -fun SantaBarbaraMunicipalCAAirport : Ind Airport ; + fun SantaCeciliaAirport : Ind Airport ; -fun SantaCarolinaAirport : Ind Airport ; + fun SantaClaraAirport : Ind Airport ; -fun SantaCatalinaAirport : Ind Airport ; + fun SantaCruzAirportArgentina : Ind Airport ; -fun SantaCeciliaAirport : Ind Airport ; + fun SantaCruzAirportBelize : Ind Airport ; -fun SantaClaraAirport : Ind Airport ; + fun SantaCruzAirportBrazil : Ind Airport ; -fun SantaCruzAirportArgentina : Ind Airport ; + fun SantaCruzAirportCostaRica : Ind Airport ; -fun SantaCruzAirportBelize : Ind Airport ; + fun SantaCruzAirportSolomonIslands : Ind Airport ; -fun SantaCruzAirportBrazil : Ind Airport ; + fun SantaCruzCAAirport : Ind Airport ; -fun SantaCruzAirportCostaRica : Ind Airport ; + fun SantaCruzIslandCAAirport : Ind Airport ; -fun SantaCruzAirportSolomonIslands : Ind Airport ; + fun SantaCruzdelaPalmaAirport : Ind Airport ; -fun SantaCruzCAAirport : Ind Airport ; + fun SantaElenaAirport : Ind Airport ; -fun SantaCruzIslandCAAirport : Ind Airport ; + fun SantaFeAirport : Ind Airport ; -fun SantaCruzdelaPalmaAirport : Ind Airport ; + fun SantaFeBusStationNMAirport : Ind Airport ; -fun SantaElenaAirport : Ind Airport ; + fun SantaFeCountyMunicipalNMAirport : Ind Airport ; -fun SantaFeAirport : Ind Airport ; + fun SantaFedoSulAirport : Ind Airport ; -fun SantaFeBusStationNMAirport : Ind Airport ; + fun SantaInezCAAirport : Ind Airport ; -fun SantaFeCountyMunicipalNMAirport : Ind Airport ; + fun SantaKatarinaAirport : Ind Airport ; -fun SantaFedoSulAirport : Ind Airport ; + fun SantaLuciaAirport : Ind Airport ; -fun SantaInezCAAirport : Ind Airport ; + fun SantaMariaAirportColombia : Ind Airport ; -fun SantaKatarinaAirport : Ind Airport ; + fun SantaMariaAirportPeru : Ind Airport ; -fun SantaLuciaAirport : Ind Airport ; + fun SantaMariaAzoresAirport : Ind Airport ; -fun SantaMariaAirportColombia : Ind Airport ; + fun SantaMariaPublicCAAirport : Ind Airport ; -fun SantaMariaAirportPeru : Ind Airport ; + fun SantaMariaRSAirport : Ind Airport ; -fun SantaMariaAzoresAirport : Ind Airport ; + fun SantaMonicaMunicipalCAAirport : Ind Airport ; -fun SantaMariaPublicCAAirport : Ind Airport ; + fun SantaPaulaCAAirport : Ind Airport ; -fun SantaMariaRSAirport : Ind Airport ; + fun SantaRosaAirportArgentina : Ind Airport ; -fun SantaMonicaMunicipalCAAirport : Ind Airport ; + fun SantaRosaAirportBolivia : Ind Airport ; -fun SantaPaulaCAAirport : Ind Airport ; + fun SantaRosaRSAirport : Ind Airport ; -fun SantaRosaAirportArgentina : Ind Airport ; + fun SantaRosadeCopanAirport : Ind Airport ; -fun SantaRosaAirportBolivia : Ind Airport ; + fun SantaRosaliaAirport : Ind Airport ; -fun SantaRosaRSAirport : Ind Airport ; + fun SantaRosaliaAirportMexico : Ind Airport ; -fun SantaRosadeCopanAirport : Ind Airport ; + fun SantaTeresitaAirport : Ind Airport ; -fun SantaRosaliaAirport : Ind Airport ; + fun SantaTerezinhaAirport : Ind Airport ; -fun SantaRosaliaAirportMexico : Ind Airport ; + fun SantanTanjungAirport : Ind Airport ; -fun SantaTeresitaAirport : Ind Airport ; + fun SantanaRamosAirport : Ind Airport ; -fun SantaTerezinhaAirport : Ind Airport ; + fun SantanadoLivramentoRSAirport : Ind Airport ; -fun SantanTanjungAirport : Ind Airport ; + fun SantanderAirport : Ind Airport ; -fun SantanaRamosAirport : Ind Airport ; + fun SantaremPAAirport : Ind Airport ; -fun SantanadoLivramentoRSAirport : Ind Airport ; + fun SantiagoSantiagodeCompostelaAirport : Ind Airport ; -fun SantanderAirport : Ind Airport ; + fun SantiagodeChileAirport : Ind Airport ; -fun SantaremPAAirport : Ind Airport ; + fun SantiagodelEsteroAirport : Ind Airport ; -fun SantiagoSantiagodeCompostelaAirport : Ind Airport ; + fun SantoAndreSPAirport : Ind Airport ; -fun SantiagodeChileAirport : Ind Airport ; + fun SantoAntaoAirport : Ind Airport ; -fun SantiagodelEsteroAirport : Ind Airport ; + fun SantoDomingoAirport : Ind Airport ; -fun SantoAndreSPAirport : Ind Airport ; + fun SantosSPAirport : Ind Airport ; -fun SantoAntaoAirport : Ind Airport ; + fun SanyaAirport : Ind Airport ; -fun SantoDomingoAirport : Ind Airport ; + fun SaoBentodoSulSCAirport : Ind Airport ; -fun SantosSPAirport : Ind Airport ; + fun SaoBernardodoCampoSPAirport : Ind Airport ; -fun SanyaAirport : Ind Airport ; + fun SaoCaetanodoSulSPAirport : Ind Airport ; -fun SaoBentodoSulSCAirport : Ind Airport ; + fun SaoCarlosSPAirport : Ind Airport ; -fun SaoBernardodoCampoSPAirport : Ind Airport ; + fun SaoDomingosAirport : Ind Airport ; -fun SaoCaetanodoSulSPAirport : Ind Airport ; + fun SaoFelipeAirport : Ind Airport ; -fun SaoCarlosSPAirport : Ind Airport ; + fun SaoFelixAraguaiAirport : Ind Airport ; -fun SaoDomingosAirport : Ind Airport ; + fun SaoFelixdeXinguAirport : Ind Airport ; -fun SaoFelipeAirport : Ind Airport ; + fun SaoFranciscodoSulSCAirport : Ind Airport ; -fun SaoFelixAraguaiAirport : Ind Airport ; + fun SaoGabrielAirport : Ind Airport ; -fun SaoFelixdeXinguAirport : Ind Airport ; + fun SaoGoncaloRJAirport : Ind Airport ; -fun SaoFranciscodoSulSCAirport : Ind Airport ; + fun SaoGoncalodoAmaranteRNAirport : Ind Airport ; -fun SaoGabrielAirport : Ind Airport ; + fun SaoJoaodelReiMGAirport : Ind Airport ; -fun SaoGoncaloRJAirport : Ind Airport ; + fun SaoJorgeAzoresAirport : Ind Airport ; -fun SaoGoncalodoAmaranteRNAirport : Ind Airport ; + fun SaoJosedoRioPretoSPAirport : Ind Airport ; -fun SaoJoaodelReiMGAirport : Ind Airport ; + fun SaoJosedoXinguAirport : Ind Airport ; -fun SaoJorgeAzoresAirport : Ind Airport ; + fun SaoJosedosLamposSPAirport : Ind Airport ; -fun SaoJosedoRioPretoSPAirport : Ind Airport ; + fun SaoLeopoldoRSAirport : Ind Airport ; -fun SaoJosedoXinguAirport : Ind Airport ; + fun SaoLourencoAirport : Ind Airport ; -fun SaoJosedosLamposSPAirport : Ind Airport ; + fun SaoLuisMAAirport : Ind Airport ; -fun SaoLeopoldoRSAirport : Ind Airport ; + fun SaoMateusESAirport : Ind Airport ; -fun SaoLourencoAirport : Ind Airport ; + fun SaoMigueldeAragaoAirport : Ind Airport ; -fun SaoLuisMAAirport : Ind Airport ; + fun SaoNicolauSaoNicolauAirport : Ind Airport ; -fun SaoMateusESAirport : Ind Airport ; + fun SaoTomeSaoTomeAirport : Ind Airport ; -fun SaoMigueldeAragaoAirport : Ind Airport ; + fun SaoVicenteSaoVicenteAirport : Ind Airport ; -fun SaoNicolauSaoNicolauAirport : Ind Airport ; + fun SapmangaAirport : Ind Airport ; -fun SaoTomeSaoTomeAirport : Ind Airport ; + fun SaposoaAirport : Ind Airport ; -fun SaoVicenteSaoVicenteAirport : Ind Airport ; + fun SaraAirport : Ind Airport ; -fun SapmangaAirport : Ind Airport ; + fun SarajevoAirport : Ind Airport ; -fun SaposoaAirport : Ind Airport ; + fun SaranskMordviniaAirport : Ind Airport ; -fun SaraAirport : Ind Airport ; + fun SarasotaBradentonFLAirport : Ind Airport ; -fun SarajevoAirport : Ind Airport ; + fun SaratovSaratovAirport : Ind Airport ; -fun SaranskMordviniaAirport : Ind Airport ; + fun SaravaneAirport : Ind Airport ; -fun SarasotaBradentonFLAirport : Ind Airport ; + fun SaravenaAirport : Ind Airport ; -fun SaratovSaratovAirport : Ind Airport ; + fun SardehBandAirport : Ind Airport ; -fun SaravaneAirport : Ind Airport ; + fun SarhAirport : Ind Airport ; -fun SaravenaAirport : Ind Airport ; + fun SarichefAKAirport : Ind Airport ; -fun SardehBandAirport : Ind Airport ; + fun SarmiNewGuineaAirport : Ind Airport ; -fun SarhAirport : Ind Airport ; + fun SarniaONAirport : Ind Airport ; -fun SarichefAKAirport : Ind Airport ; + fun SartanejaAirport : Ind Airport ; -fun SarmiNewGuineaAirport : Ind Airport ; + fun SaryAirport : Ind Airport ; -fun SarniaONAirport : Ind Airport ; + fun SaskatoonSKAirport : Ind Airport ; -fun SartanejaAirport : Ind Airport ; + fun SassandraAirport : Ind Airport ; -fun SaryAirport : Ind Airport ; + fun SasstownAirport : Ind Airport ; -fun SaskatoonSKAirport : Ind Airport ; + fun SatipoAirport : Ind Airport ; -fun SassandraAirport : Ind Airport ; + fun SatnaAirport : Ind Airport ; -fun SasstownAirport : Ind Airport ; + fun SatolasLyonAirport : Ind Airport ; -fun SatipoAirport : Ind Airport ; + fun SatuMareAirport : Ind Airport ; -fun SatnaAirport : Ind Airport ; + fun SaubiAirport : Ind Airport ; -fun SatolasLyonAirport : Ind Airport ; + fun SauceViejoSantaFeAirport : Ind Airport ; -fun SatuMareAirport : Ind Airport ; + fun SaudarkrokurAirport : Ind Airport ; -fun SaubiAirport : Ind Airport ; + fun SaufleyFieldNavalOutlyingFieldFLAirport : Ind Airport ; -fun SauceViejoSantaFeAirport : Ind Airport ; + fun SaulAirport : Ind Airport ; -fun SaudarkrokurAirport : Ind Airport ; + fun SaultSteMarieMunicipalAirportSandersonFieldMIAirport : Ind Airport ; -fun SaufleyFieldNavalOutlyingFieldFLAirport : Ind Airport ; + fun SaultSteMarieONAirport : Ind Airport ; -fun SaulAirport : Ind Airport ; + fun SaumlakiAirport : Ind Airport ; -fun SaultSteMarieMunicipalAirportSandersonFieldMIAirport : Ind Airport ; + fun SaurimoAirport : Ind Airport ; -fun SaultSteMarieONAirport : Ind Airport ; + fun SavannahInternationalGAAirport : Ind Airport ; -fun SaumlakiAirport : Ind Airport ; + fun SavannakhetAirport : Ind Airport ; -fun SaurimoAirport : Ind Airport ; + fun SaveAirport : Ind Airport ; -fun SavannahInternationalGAAirport : Ind Airport ; + fun SavoAirport : Ind Airport ; -fun SavannakhetAirport : Ind Airport ; + fun SavonlinnaAirport : Ind Airport ; -fun SaveAirport : Ind Airport ; + fun SavoongaAKAirport : Ind Airport ; -fun SavoAirport : Ind Airport ; + fun SavusavuAirport : Ind Airport ; -fun SavonlinnaAirport : Ind Airport ; + fun SawuAirport : Ind Airport ; -fun SavoongaAKAirport : Ind Airport ; + fun SayabouryAirport : Ind Airport ; -fun SavusavuAirport : Ind Airport ; + fun ScammonBayAKAirport : Ind Airport ; -fun SawuAirport : Ind Airport ; + fun ScamptonRAFStationEnglandAirport : Ind Airport ; -fun SayabouryAirport : Ind Airport ; + fun ScatsaShetlandIslandsAirport : Ind Airport ; -fun ScammonBayAKAirport : Ind Airport ; + fun ScheffervilleQCAirport : Ind Airport ; -fun ScamptonRAFStationEnglandAirport : Ind Airport ; + fun SchenectadyCountyNYAirport : Ind Airport ; -fun ScatsaShetlandIslandsAirport : Ind Airport ; + fun SchkeuditzLeipzigAirport : Ind Airport ; -fun ScheffervilleQCAirport : Ind Airport ; + fun SchloredtWYAirport : Ind Airport ; -fun SchenectadyCountyNYAirport : Ind Airport ; + fun SchoenefeldBerlinAirport : Ind Airport ; -fun SchkeuditzLeipzigAirport : Ind Airport ; + fun SchwechatWienViennaAirport : Ind Airport ; -fun SchloredtWYAirport : Ind Airport ; + fun ScillyTrescoAirport : Ind Airport ; -fun SchoenefeldBerlinAirport : Ind Airport ; + fun SconeNewSouthWalesAirport : Ind Airport ; -fun SchwechatWienViennaAirport : Ind Airport ; + fun ScoresbysundAirport : Ind Airport ; -fun ScillyTrescoAirport : Ind Airport ; + fun ScottCityMunicipalKSAirport : Ind Airport ; -fun SconeNewSouthWalesAirport : Ind Airport ; + fun ScottsdaleAZAirport : Ind Airport ; -fun ScoresbysundAirport : Ind Airport ; + fun ScribnerStateNEAirport : Ind Airport ; -fun ScottCityMunicipalKSAirport : Ind Airport ; + fun SculthorpeAirport : Ind Airport ; -fun ScottsdaleAZAirport : Ind Airport ; + fun SealBayAKAirport : Ind Airport ; -fun ScribnerStateNEAirport : Ind Airport ; + fun SealCoveWaterAerodromeBCAirport : Ind Airport ; -fun SculthorpeAirport : Ind Airport ; + fun SearcyMunicipalARAirport : Ind Airport ; -fun SealBayAKAirport : Ind Airport ; + fun SearleFieldNEAirport : Ind Airport ; -fun SealCoveWaterAerodromeBCAirport : Ind Airport ; + fun SeattleTacomaInternationalWAAirport : Ind Airport ; -fun SearcyMunicipalARAirport : Ind Airport ; + fun SebbaAirport : Ind Airport ; -fun SearleFieldNEAirport : Ind Airport ; + fun SebhaAirport : Ind Airport ; -fun SeattleTacomaInternationalWAAirport : Ind Airport ; + fun SebringRegionalFLAirport : Ind Airport ; -fun SebbaAirport : Ind Airport ; + fun SecheltWaterAerodromeBCAirport : Ind Airport ; -fun SebhaAirport : Ind Airport ; + fun SecondaAirport : Ind Airport ; -fun SebringRegionalFLAirport : Ind Airport ; + fun SedomAirport : Ind Airport ; -fun SecheltWaterAerodromeBCAirport : Ind Airport ; + fun SedonaAZAirport : Ind Airport ; -fun SecondaAirport : Ind Airport ; + fun SeebMuscatAirport : Ind Airport ; -fun SedomAirport : Ind Airport ; + fun SeeheimAirport : Ind Airport ; -fun SedonaAZAirport : Ind Airport ; + fun SegouAirport : Ind Airport ; -fun SeebMuscatAirport : Ind Airport ; + fun SegrateMilanoAirport : Ind Airport ; -fun SeeheimAirport : Ind Airport ; + fun SeguelaAirport : Ind Airport ; -fun SegouAirport : Ind Airport ; + fun SehonghongAirport : Ind Airport ; -fun SegrateMilanoAirport : Ind Airport ; + fun SehuleaAirport : Ind Airport ; -fun SeguelaAirport : Ind Airport ; + fun SeinajokiAirport : Ind Airport ; -fun SehonghongAirport : Ind Airport ; + fun SekakesAirport : Ind Airport ; -fun SehuleaAirport : Ind Airport ; + fun SelawikAKAirport : Ind Airport ; -fun SeinajokiAirport : Ind Airport ; + fun SeldoviaAKAirport : Ind Airport ; -fun SekakesAirport : Ind Airport ; + fun SeletarSingaporeAirport : Ind Airport ; -fun SelawikAKAirport : Ind Airport ; + fun SelfridgeAirNationalGuardBaseMIAirport : Ind Airport ; -fun SeldoviaAKAirport : Ind Airport ; + fun SelfsMSAirport : Ind Airport ; -fun SeletarSingaporeAirport : Ind Airport ; + fun SelibabyAirport : Ind Airport ; -fun SelfridgeAirNationalGuardBaseMIAirport : Ind Airport ; + fun SelibiPhikweAirport : Ind Airport ; -fun SelfsMSAirport : Ind Airport ; + fun SembachAirport : Ind Airport ; -fun SelibabyAirport : Ind Airport ; + fun SemeySemipalatinskSemeyAirport : Ind Airport ; -fun SelibiPhikweAirport : Ind Airport ; + fun SemongkongAirport : Ind Airport ; -fun SembachAirport : Ind Airport ; + fun SempornaSabahAirport : Ind Airport ; -fun SemeySemipalatinskSemeyAirport : Ind Airport ; + fun SenaMadureiraACAirport : Ind Airport ; -fun SemongkongAirport : Ind Airport ; + fun SenangaAirport : Ind Airport ; -fun SempornaSabahAirport : Ind Airport ; + fun SendaiHonshuAirport : Ind Airport ; -fun SenaMadureiraACAirport : Ind Airport ; + fun SenggehAirport : Ind Airport ; -fun SenangaAirport : Ind Airport ; + fun SenggoAirport : Ind Airport ; -fun SendaiHonshuAirport : Ind Airport ; + fun SenhordoBonfimBAAirport : Ind Airport ; -fun SenggehAirport : Ind Airport ; + fun SenipahAirport : Ind Airport ; -fun SenggoAirport : Ind Airport ; + fun SenoAirport : Ind Airport ; -fun SenhordoBonfimBAAirport : Ind Airport ; + fun SeodeUrgelAirport : Ind Airport ; -fun SenipahAirport : Ind Airport ; + fun SeoulAirBaseSeoulAirport : Ind Airport ; -fun SenoAirport : Ind Airport ; + fun SeptIlesQCAirport : Ind Airport ; -fun SeodeUrgelAirport : Ind Airport ; + fun SepulotAirport : Ind Airport ; -fun SeoulAirBaseSeoulAirport : Ind Airport ; + fun SeroneraAirport : Ind Airport ; -fun SeptIlesQCAirport : Ind Airport ; + fun SerraNorteMTAirport : Ind Airport ; -fun SepulotAirport : Ind Airport ; + fun SerraPeladaAirport : Ind Airport ; -fun SeroneraAirport : Ind Airport ; + fun SerreChevalierAirport : Ind Airport ; -fun SerraNorteMTAirport : Ind Airport ; + fun SertAirport : Ind Airport ; -fun SerraPeladaAirport : Ind Airport ; + fun SertelCiudaddeMexicoMexicoCityAirport : Ind Airport ; -fun SerreChevalierAirport : Ind Airport ; + fun SeruiAirport : Ind Airport ; -fun SertAirport : Ind Airport ; + fun SeshekeAirport : Ind Airport ; -fun SertelCiudaddeMexicoMexicoCityAirport : Ind Airport ; + fun SeshutesAirport : Ind Airport ; -fun SeruiAirport : Ind Airport ; + fun SetteCamaAirport : Ind Airport ; -fun SeshekeAirport : Ind Airport ; + fun SewardAKAirport : Ind Airport ; -fun SeshutesAirport : Ind Airport ; + fun SeychellesInternationalMaheIsAirport : Ind Airport ; -fun SetteCamaAirport : Ind Airport ; + fun ShafterAirportMinterFieldCAAirport : Ind Airport ; -fun SewardAKAirport : Ind Airport ; + fun ShagelukAKAirport : Ind Airport ; -fun SeychellesInternationalMaheIsAirport : Ind Airport ; + fun ShakisoAirport : Ind Airport ; -fun ShafterAirportMinterFieldCAAirport : Ind Airport ; + fun ShaktoolikAKAirport : Ind Airport ; -fun ShagelukAKAirport : Ind Airport ; + fun ShamattawaMBAirport : Ind Airport ; -fun ShakisoAirport : Ind Airport ; + fun ShamshernagarAirport : Ind Airport ; -fun ShaktoolikAKAirport : Ind Airport ; + fun ShangriLaOKAirport : Ind Airport ; -fun ShamattawaMBAirport : Ind Airport ; + fun ShanhaiguanAirport : Ind Airport ; -fun ShamshernagarAirport : Ind Airport ; + fun ShannonLimerickAirport : Ind Airport ; -fun ShangriLaOKAirport : Ind Airport ; + fun ShantouAirport : Ind Airport ; -fun ShanhaiguanAirport : Ind Airport ; + fun SharjahAirport : Ind Airport ; -fun ShannonLimerickAirport : Ind Airport ; + fun SharmElSheikhRasNasraniAirport : Ind Airport ; -fun ShantouAirport : Ind Airport ; + fun SharpeArmyAirFieldCAAirport : Ind Airport ; -fun SharjahAirport : Ind Airport ; + fun SharurahAirport : Ind Airport ; -fun SharmElSheikhRasNasraniAirport : Ind Airport ; + fun ShashiAirport : Ind Airport ; -fun SharpeArmyAirFieldCAAirport : Ind Airport ; + fun ShawAirForceBaseSCAirport : Ind Airport ; -fun SharurahAirport : Ind Airport ; + fun ShawRiverWesternAustraliaAirport : Ind Airport ; -fun ShashiAirport : Ind Airport ; + fun ShawneeMunicipalOKAirport : Ind Airport ; -fun ShawAirForceBaseSCAirport : Ind Airport ; + fun ShayGapWesternAustraliaAirport : Ind Airport ; -fun ShawRiverWesternAustraliaAirport : Ind Airport ; + fun ShearwaterNSAirport : Ind Airport ; -fun ShawneeMunicipalOKAirport : Ind Airport ; + fun SheboyganCountyMemorialWIAirport : Ind Airport ; -fun ShayGapWesternAustraliaAirport : Ind Airport ; + fun SheepMountainAKAirport : Ind Airport ; -fun ShearwaterNSAirport : Ind Airport ; + fun ShehdiAirport : Ind Airport ; -fun SheboyganCountyMemorialWIAirport : Ind Airport ; + fun ShelbyMTAirport : Ind Airport ; -fun SheepMountainAKAirport : Ind Airport ; + fun SheldonPointAKAirport : Ind Airport ; -fun ShehdiAirport : Ind Airport ; + fun ShemyaAirForceBaseAKAirport : Ind Airport ; -fun ShelbyMTAirport : Ind Airport ; + fun ShenandoahValleyRegionalVAAirport : Ind Airport ; -fun SheldonPointAKAirport : Ind Airport ; + fun ShenchiuAirport : Ind Airport ; -fun ShemyaAirForceBaseAKAirport : Ind Airport ; + fun ShenyangAirport : Ind Airport ; -fun ShenandoahValleyRegionalVAAirport : Ind Airport ; + fun SheperdBayNTAirport : Ind Airport ; -fun ShenchiuAirport : Ind Airport ; + fun SheppardAirForceBaseWichitaFallsMunicipalTXAirport : Ind Airport ; -fun ShenyangAirport : Ind Airport ; + fun SheppartonVictoriaAirport : Ind Airport ; -fun SheperdBayNTAirport : Ind Airport ; + fun SherWoodMTAirport : Ind Airport ; -fun SheppardAirForceBaseWichitaFallsMunicipalTXAirport : Ind Airport ; + fun SherbrookeQCAirport : Ind Airport ; -fun SheppartonVictoriaAirport : Ind Airport ; + fun Sheremetyevo2MoscowAirport : Ind Airport ; -fun SherWoodMTAirport : Ind Airport ; + fun SheridanCountyWYAirport : Ind Airport ; -fun SherbrookeQCAirport : Ind Airport ; + fun ShetlandIslandsShetlandIslandsAirport : Ind Airport ; -fun Sheremetyevo2MoscowAirport : Ind Airport ; + fun ShijiazhuangAirport : Ind Airport ; -fun SheridanCountyWYAirport : Ind Airport ; + fun ShillongAirport : Ind Airport ; -fun ShetlandIslandsShetlandIslandsAirport : Ind Airport ; + fun ShiloMBAirport : Ind Airport ; -fun ShijiazhuangAirport : Ind Airport ; + fun ShimojishimaAirport : Ind Airport ; -fun ShillongAirport : Ind Airport ; + fun ShinChuAirport : Ind Airport ; -fun ShiloMBAirport : Ind Airport ; + fun ShinglePointYTAirport : Ind Airport ; -fun ShimojishimaAirport : Ind Airport ; + fun ShinyangaAirport : Ind Airport ; -fun ShinChuAirport : Ind Airport ; + fun ShirazAirport : Ind Airport ; -fun ShinglePointYTAirport : Ind Airport ; + fun ShishmarefAKAirport : Ind Airport ; -fun ShinyangaAirport : Ind Airport ; + fun ShivelyFieldWYAirport : Ind Airport ; -fun ShirazAirport : Ind Airport ; + fun ShizuokaCityAirport : Ind Airport ; -fun ShishmarefAKAirport : Ind Airport ; + fun SholapurAirport : Ind Airport ; -fun ShivelyFieldWYAirport : Ind Airport ; + fun ShonaiAirport : Ind Airport ; -fun ShizuokaCityAirport : Ind Airport ; + fun ShowLowMunicipalAZAirport : Ind Airport ; -fun SholapurAirport : Ind Airport ; + fun ShreveportRegionalLAAirport : Ind Airport ; -fun ShonaiAirport : Ind Airport ; + fun ShungnakAKAirport : Ind Airport ; -fun ShowLowMunicipalAZAirport : Ind Airport ; + fun SialkotAirport : Ind Airport ; -fun ShreveportRegionalLAAirport : Ind Airport ; + fun SialumAirport : Ind Airport ; -fun ShungnakAKAirport : Ind Airport ; + fun SiassiAirport : Ind Airport ; -fun SialkotAirport : Ind Airport ; + fun SibasaAirport : Ind Airport ; -fun SialumAirport : Ind Airport ; + fun SibiAirport : Ind Airport ; -fun SiassiAirport : Ind Airport ; + fun SibisaAirport : Ind Airport ; -fun SibasaAirport : Ind Airport ; + fun SibitiAirport : Ind Airport ; -fun SibiAirport : Ind Airport ; + fun SibiuAirport : Ind Airport ; -fun SibisaAirport : Ind Airport ; + fun SibuSarawakAirport : Ind Airport ; -fun SibitiAirport : Ind Airport ; + fun SidiIfniAirport : Ind Airport ; -fun SibiuAirport : Ind Airport ; + fun SidiMahdiTouggourtAirport : Ind Airport ; -fun SibuSarawakAirport : Ind Airport ; + fun SidneyMunicipalNEAirport : Ind Airport ; -fun SidiIfniAirport : Ind Airport ; + fun SidneyMunicipalNYAirport : Ind Airport ; -fun SidiMahdiTouggourtAirport : Ind Airport ; + fun SidneyRichlandMunicipalMTAirport : Ind Airport ; -fun SidneyMunicipalNEAirport : Ind Airport ; + fun SiegenAirport : Ind Airport ; -fun SidneyMunicipalNYAirport : Ind Airport ; + fun SienaAirport : Ind Airport ; -fun SidneyRichlandMunicipalMTAirport : Ind Airport ; + fun SierraBlancaRegionalNMAirport : Ind Airport ; -fun SiegenAirport : Ind Airport ; + fun SierraGrandeAirport : Ind Airport ; -fun SienaAirport : Ind Airport ; + fun SierraLeoneAirport : Ind Airport ; -fun SierraBlancaRegionalNMAirport : Ind Airport ; + fun SiglufjordurAirport : Ind Airport ; -fun SierraGrandeAirport : Ind Airport ; + fun SigonellaAirport : Ind Airport ; -fun SierraLeoneAirport : Ind Airport ; + fun SikestonMemorialMunicipalMOAirport : Ind Airport ; -fun SiglufjordurAirport : Ind Airport ; + fun SilaAirport : Ind Airport ; -fun SigonellaAirport : Ind Airport ; + fun SilgadiDotiAirport : Ind Airport ; -fun SikestonMemorialMunicipalMOAirport : Ind Airport ; + fun SilistraAirport : Ind Airport ; -fun SilaAirport : Ind Airport ; + fun SiljanMoraAirport : Ind Airport ; -fun SilgadiDotiAirport : Ind Airport ; + fun SilverCreekAirport : Ind Airport ; -fun SilistraAirport : Ind Airport ; + fun SilverPlainsQueenslandAirport : Ind Airport ; -fun SiljanMoraAirport : Ind Airport ; + fun SimAirport : Ind Airport ; -fun SilverCreekAirport : Ind Airport ; + fun SimanggangAirport : Ind Airport ; -fun SilverPlainsQueenslandAirport : Ind Airport ; + fun SimaoAirport : Ind Airport ; -fun SimAirport : Ind Airport ; + fun SimbaiAirport : Ind Airport ; -fun SimanggangAirport : Ind Airport ; + fun SimbirskUlyanovskUlyanovskAirport : Ind Airport ; -fun SimaoAirport : Ind Airport ; + fun SimentiAirport : Ind Airport ; -fun SimbaiAirport : Ind Airport ; + fun SimferopolAdygeaAirport : Ind Airport ; -fun SimbirskUlyanovskUlyanovskAirport : Ind Airport ; + fun SimlaAirport : Ind Airport ; -fun SimentiAirport : Ind Airport ; + fun SimmonsMIAirport : Ind Airport ; -fun SimferopolAdygeaAirport : Ind Airport ; + fun SimonBolivarSantaMartaAirport : Ind Airport ; -fun SimlaAirport : Ind Airport ; + fun SimpangTigaPekanbaruAirport : Ind Airport ; -fun SimmonsMIAirport : Ind Airport ; + fun SimraAirport : Ind Airport ; -fun SimonBolivarSantaMartaAirport : Ind Airport ; + fun SinesAirport : Ind Airport ; -fun SimpangTigaPekanbaruAirport : Ind Airport ; + fun SingauaAirport : Ind Airport ; -fun SimraAirport : Ind Airport ; + fun SingletonNewSouthWalesAirport : Ind Airport ; -fun SinesAirport : Ind Airport ; + fun SinoeAirport : Ind Airport ; -fun SingauaAirport : Ind Airport ; + fun SinopArmyAirFieldSinopAirport : Ind Airport ; -fun SingletonNewSouthWalesAirport : Ind Airport ; + fun SinopMTAirport : Ind Airport ; -fun SinoeAirport : Ind Airport ; + fun SintangBorneoAirport : Ind Airport ; -fun SinopArmyAirFieldSinopAirport : Ind Airport ; + fun SionSittenAirport : Ind Airport ; -fun SinopMTAirport : Ind Airport ; + fun SiouxGatewayIAAirport : Ind Airport ; -fun SintangBorneoAirport : Ind Airport ; + fun SiouxLookoutONAirport : Ind Airport ; -fun SionSittenAirport : Ind Airport ; + fun SipitangAirport : Ind Airport ; -fun SiouxGatewayIAAirport : Ind Airport ; + fun SiporaAirport : Ind Airport ; -fun SiouxLookoutONAirport : Ind Airport ; + fun SirSeewoosagurRamgoolamMauritiusAirport : Ind Airport ; -fun SipitangAirport : Ind Airport ; + fun SirajganjAirport : Ind Airport ; -fun SiporaAirport : Ind Airport ; + fun SirkhetAirport : Ind Airport ; -fun SirSeewoosagurRamgoolamMauritiusAirport : Ind Airport ; + fun SirriIslandAirport : Ind Airport ; -fun SirajganjAirport : Ind Airport ; + fun SishenAirport : Ind Airport ; -fun SirkhetAirport : Ind Airport ; + fun SiskiyouCountyCAAirport : Ind Airport ; -fun SirriIslandAirport : Ind Airport ; + fun SissanoAirport : Ind Airport ; -fun SishenAirport : Ind Airport ; + fun SitiawanAirport : Ind Airport ; -fun SiskiyouCountyCAAirport : Ind Airport ; + fun SitkaAKAirport : Ind Airport ; -fun SissanoAirport : Ind Airport ; + fun SitkinakAKAirport : Ind Airport ; -fun SitiawanAirport : Ind Airport ; + fun SiunaAirport : Ind Airport ; -fun SitkaAKAirport : Ind Airport ; + fun SivasAirport : Ind Airport ; -fun SitkinakAKAirport : Ind Airport ; + fun SiwaAirport : Ind Airport ; -fun SiunaAirport : Ind Airport ; + fun SiweaAirport : Ind Airport ; -fun SivasAirport : Ind Airport ; + fun SkagenStokmarknesAirport : Ind Airport ; -fun SiwaAirport : Ind Airport ; + fun SkagwayAKAirport : Ind Airport ; -fun SiweaAirport : Ind Airport ; + fun SkanesMonastirAirport : Ind Airport ; -fun SkagenStokmarknesAirport : Ind Airport ; + fun SkeldonAirport : Ind Airport ; -fun SkagwayAKAirport : Ind Airport ; + fun SkellefteaAirport : Ind Airport ; -fun SkanesMonastirAirport : Ind Airport ; + fun SkikdaAirport : Ind Airport ; -fun SkeldonAirport : Ind Airport ; + fun SkirosAirport : Ind Airport ; -fun SkellefteaAirport : Ind Airport ; + fun SkopjeAirport : Ind Airport ; -fun SkikdaAirport : Ind Airport ; + fun SkukuzaAirport : Ind Airport ; -fun SkirosAirport : Ind Airport ; + fun SkulteRigaAirport : Ind Airport ; -fun SkopjeAirport : Ind Airport ; + fun SkwentnaAKAirport : Ind Airport ; -fun SkukuzaAirport : Ind Airport ; + fun SlateIslandONAirport : Ind Airport ; -fun SkulteRigaAirport : Ind Airport ; + fun SlaveLakeABAirport : Ind Airport ; -fun SkwentnaAKAirport : Ind Airport ; + fun SleetmuteAKAirport : Ind Airport ; -fun SlateIslandONAirport : Ind Airport ; + fun SliacAirport : Ind Airport ; -fun SlaveLakeABAirport : Ind Airport ; + fun SligoAirport : Ind Airport ; -fun SleetmuteAKAirport : Ind Airport ; + fun SlupskAirport : Ind Airport ; -fun SliacAirport : Ind Airport ; + fun SmaraAirport : Ind Airport ; -fun SligoAirport : Ind Airport ; + fun SmigginHolesNewSouthWalesAirport : Ind Airport ; -fun SlupskAirport : Ind Airport ; + fun SmithCoveAKAirport : Ind Airport ; -fun SmaraAirport : Ind Airport ; + fun SmithFallsMontagueONAirport : Ind Airport ; -fun SmigginHolesNewSouthWalesAirport : Ind Airport ; + fun SmithFieldARAirport : Ind Airport ; -fun SmithCoveAKAirport : Ind Airport ; + fun SmithFieldINAirport : Ind Airport ; -fun SmithFallsMontagueONAirport : Ind Airport ; + fun SmithFieldKSAirport : Ind Airport ; -fun SmithFieldARAirport : Ind Airport ; + fun SmithPointNorthernTerritoryAirport : Ind Airport ; -fun SmithFieldINAirport : Ind Airport ; + fun SmithersBCAirport : Ind Airport ; -fun SmithFieldKSAirport : Ind Airport ; + fun SmithtonTasmaniaAirport : Ind Airport ; -fun SmithPointNorthernTerritoryAirport : Ind Airport ; + fun SmolenskSmolenskAirport : Ind Airport ; -fun SmithersBCAirport : Ind Airport ; + fun SmyrnaTNAirport : Ind Airport ; -fun SmithtonTasmaniaAirport : Ind Airport ; + fun SnakeBayNorthernTerritoryAirport : Ind Airport ; -fun SmolenskSmolenskAirport : Ind Airport ; + fun SnakeRiverYTAirport : Ind Airport ; -fun SmyrnaTNAirport : Ind Airport ; + fun SnohomishCountyAirportPaineFieldWAAirport : Ind Airport ; -fun SnakeBayNorthernTerritoryAirport : Ind Airport ; + fun SnowdriftAerodromeNTAirport : Ind Airport ; -fun SnakeRiverYTAirport : Ind Airport ; + fun SobralCEAirport : Ind Airport ; -fun SnohomishCountyAirportPaineFieldWAAirport : Ind Airport ; + fun SocTrangAirport : Ind Airport ; -fun SnowdriftAerodromeNTAirport : Ind Airport ; + fun SocorroMunicipalNMAirport : Ind Airport ; -fun SobralCEAirport : Ind Airport ; + fun SocotraAirport : Ind Airport ; -fun SocTrangAirport : Ind Airport ; + fun SodankylaAirport : Ind Airport ; -fun SocorroMunicipalNMAirport : Ind Airport ; + fun SodduAirport : Ind Airport ; -fun SocotraAirport : Ind Airport ; + fun SoderhamnAirport : Ind Airport ; -fun SodankylaAirport : Ind Airport ; + fun SoerkjosenSorkjosenAirport : Ind Airport ; -fun SodduAirport : Ind Airport ; + fun SogamosoAirport : Ind Airport ; -fun SoderhamnAirport : Ind Airport ; + fun SokchoAirport : Ind Airport ; -fun SoerkjosenSorkjosenAirport : Ind Airport ; + fun SokhumiAbkhaziaAirport : Ind Airport ; -fun SogamosoAirport : Ind Airport ; + fun SokotoAirport : Ind Airport ; -fun SokchoAirport : Ind Airport ; + fun SolaAirport : Ind Airport ; -fun SokhumiAbkhaziaAirport : Ind Airport ; + fun SolaStavangerAirport : Ind Airport ; -fun SokotoAirport : Ind Airport ; + fun SolanoAirport : Ind Airport ; -fun SolaAirport : Ind Airport ; + fun SoldotnaAKAirport : Ind Airport ; -fun SolaStavangerAirport : Ind Airport ; + fun SolitaAirport : Ind Airport ; -fun SolanoAirport : Ind Airport ; + fun SolomonStateFieldAKAirport : Ind Airport ; -fun SoldotnaAKAirport : Ind Airport ; + fun SolonSpringsMunicipalWIAirport : Ind Airport ; -fun SolitaAirport : Ind Airport ; + fun SolweziAirport : Ind Airport ; -fun SolomonStateFieldAKAirport : Ind Airport ; + fun SomersetPulaskiCountyAirportJTWilsonFieldKYAirport : Ind Airport ; -fun SolonSpringsMunicipalWIAirport : Ind Airport ; + fun SonderborgSoenderborgAirport : Ind Airport ; -fun SolweziAirport : Ind Airport ; + fun SongeaAirport : Ind Airport ; -fun SomersetPulaskiCountyAirportJTWilsonFieldKYAirport : Ind Airport ; + fun SongkhlaAirport : Ind Airport ; -fun SonderborgSoenderborgAirport : Ind Airport ; + fun SonomaCountyCAAirport : Ind Airport ; -fun SongeaAirport : Ind Airport ; + fun SopuAirport : Ind Airport ; -fun SongkhlaAirport : Ind Airport ; + fun SoroakoAirport : Ind Airport ; -fun SonomaCountyCAAirport : Ind Airport ; + fun SorocabaAirport : Ind Airport ; -fun SopuAirport : Ind Airport ; + fun SorotiAirport : Ind Airport ; -fun SoroakoAirport : Ind Airport ; + fun SorrentoAirport : Ind Airport ; -fun SorocabaAirport : Ind Airport ; + fun SorstukkenStordAirport : Ind Airport ; -fun SorotiAirport : Ind Airport ; + fun SouankeAirport : Ind Airport ; -fun SorrentoAirport : Ind Airport ; + fun SousseAirport : Ind Airport ; -fun SorstukkenStordAirport : Ind Airport ; + fun SouthCaicosIsAirport : Ind Airport ; -fun SouankeAirport : Ind Airport ; + fun SouthGalwayAirport : Ind Airport ; -fun SousseAirport : Ind Airport ; + fun SouthIndianLakeMBAirport : Ind Airport ; -fun SouthCaicosIsAirport : Ind Airport ; + fun SouthJerseyRegionalNJAirport : Ind Airport ; -fun SouthGalwayAirport : Ind Airport ; + fun SouthMolleIslandQueenslandAirport : Ind Airport ; -fun SouthIndianLakeMBAirport : Ind Airport ; + fun SouthNakneknr2AKAirport : Ind Airport ; -fun SouthJerseyRegionalNJAirport : Ind Airport ; + fun SouthTroutLakeONAirport : Ind Airport ; -fun SouthMolleIslandQueenslandAirport : Ind Airport ; + fun SouthWestBayAirport : Ind Airport ; -fun SouthNakneknr2AKAirport : Ind Airport ; + fun SouthWeymouthNavalAirStationSheaFieldMAAirport : Ind Airport ; -fun SouthTroutLakeONAirport : Ind Airport ; + fun SouthendEnglandAirport : Ind Airport ; -fun SouthWestBayAirport : Ind Airport ; + fun SouthernCrossWesternAustraliaAirport : Ind Airport ; -fun SouthWeymouthNavalAirStationSheaFieldMAAirport : Ind Airport ; + fun SouthernIllinoisILAirport : Ind Airport ; -fun SouthendEnglandAirport : Ind Airport ; + fun SouthportMBAirport : Ind Airport ; -fun SouthernCrossWesternAustraliaAirport : Ind Airport ; + fun SouthwestFloridaRegionalFLAirport : Ind Airport ; -fun SouthernIllinoisILAirport : Ind Airport ; + fun SoyoAirport : Ind Airport ; -fun SouthportMBAirport : Ind Airport ; + fun SpaceCenterExecutiveFLAirport : Ind Airport ; -fun SouthwestFloridaRegionalFLAirport : Ind Airport ; + fun SpacelandHoustonGulfTXAirport : Ind Airport ; -fun SoyoAirport : Ind Airport ; + fun SpangdahlemAirBaseSpangdahlemAirport : Ind Airport ; -fun SpaceCenterExecutiveFLAirport : Ind Airport ; + fun SpanishWellsAirport : Ind Airport ; -fun SpacelandHoustonGulfTXAirport : Ind Airport ; + fun SparrevohnLRRSAKAirport : Ind Airport ; -fun SpangdahlemAirBaseSpangdahlemAirport : Ind Airport ; + fun SpartaAirport : Ind Airport ; -fun SpanishWellsAirport : Ind Airport ; + fun SpartaCommunityAirportHunterFieldILAirport : Ind Airport ; -fun SparrevohnLRRSAKAirport : Ind Airport ; + fun SpartanburgDowntownMemorialSCAirport : Ind Airport ; -fun SpartaAirport : Ind Airport ; + fun SpekeEnglandAirport : Ind Airport ; -fun SpartaCommunityAirportHunterFieldILAirport : Ind Airport ; + fun SpenceBayNTAirport : Ind Airport ; -fun SpartanburgDowntownMemorialSCAirport : Ind Airport ; + fun SpenceGAAirport : Ind Airport ; -fun SpekeEnglandAirport : Ind Airport ; + fun SpencerMunicipalIAAirport : Ind Airport ; -fun SpenceBayNTAirport : Ind Airport ; + fun SpiezAirport : Ind Airport ; -fun SpenceGAAirport : Ind Airport ; + fun SpilveRigaAirport : Ind Airport ; -fun SpencerMunicipalIAAirport : Ind Airport ; + fun SpiritofStLouisMOAirport : Ind Airport ; -fun SpiezAirport : Ind Airport ; + fun SplaneMemorialPAAirport : Ind Airport ; -fun SpilveRigaAirport : Ind Airport ; + fun SpriggsPayneMonroviaAirport : Ind Airport ; -fun SpiritofStLouisMOAirport : Ind Airport ; + fun SpringCreekQueenslandAirport : Ind Airport ; -fun SplaneMemorialPAAirport : Ind Airport ; + fun SpringIslandBCAirport : Ind Airport ; -fun SpriggsPayneMonroviaAirport : Ind Airport ; + fun SpringbokAirport : Ind Airport ; -fun SpringCreekQueenslandAirport : Ind Airport ; + fun SpringdaleMunicipalARAirport : Ind Airport ; -fun SpringIslandBCAirport : Ind Airport ; + fun SpringfieldBeckleyMunicipalOHAirport : Ind Airport ; -fun SpringbokAirport : Ind Airport ; + fun SpringfieldMAAirport : Ind Airport ; -fun SpringdaleMunicipalARAirport : Ind Airport ; + fun SpringfieldRegionalMOAirport : Ind Airport ; -fun SpringfieldBeckleyMunicipalOHAirport : Ind Airport ; + fun SpringvaleWesternAustraliaAirport : Ind Airport ; -fun SpringfieldMAAirport : Ind Airport ; + fun SrinagarAirport : Ind Airport ; -fun SpringfieldRegionalMOAirport : Ind Airport ; + fun StAnthonyNFAirport : Ind Airport ; -fun SpringvaleWesternAustraliaAirport : Ind Airport ; + fun StAugustineFLAirport : Ind Airport ; -fun SrinagarAirport : Ind Airport ; + fun StCatharinesONAirport : Ind Airport ; -fun StAnthonyNFAirport : Ind Airport ; + fun StClairCountyALAirport : Ind Airport ; -fun StAugustineFLAirport : Ind Airport ; + fun StClairCountyInternationalMIAirport : Ind Airport ; -fun StCatharinesONAirport : Ind Airport ; + fun StCloudMunicipalMNAirport : Ind Airport ; -fun StClairCountyALAirport : Ind Airport ; + fun StCrepinAirport : Ind Airport ; -fun StClairCountyInternationalMIAirport : Ind Airport ; + fun StGeorgeAKAirport : Ind Airport ; -fun StCloudMunicipalMNAirport : Ind Airport ; + fun StGeorgeMunicipalUTAirport : Ind Airport ; -fun StCrepinAirport : Ind Airport ; + fun StGeorgeOyapockAirport : Ind Airport ; -fun StGeorgeAKAirport : Ind Airport ; + fun StGeorgeQueenslandAirport : Ind Airport ; -fun StGeorgeMunicipalUTAirport : Ind Airport ; + fun StHonoreQCAirport : Ind Airport ; -fun StGeorgeOyapockAirport : Ind Airport ; + fun StHubertQCAirport : Ind Airport ; -fun StGeorgeQueenslandAirport : Ind Airport ; + fun StJeanQCAirport : Ind Airport ; -fun StHonoreQCAirport : Ind Airport ; + fun StJohnsIndustrialAirParkAZAirport : Ind Airport ; -fun StHubertQCAirport : Ind Airport ; + fun StJohnsNFAirport : Ind Airport ; -fun StJeanQCAirport : Ind Airport ; + fun StJustEnglandAirport : Ind Airport ; -fun StJohnsIndustrialAirParkAZAirport : Ind Airport ; + fun StLandryParishAirportAhartFieldLAAirport : Ind Airport ; -fun StJohnsNFAirport : Ind Airport ; + fun StLaurentduMaroniAirport : Ind Airport ; -fun StJustEnglandAirport : Ind Airport ; + fun StLeonardNBAirport : Ind Airport ; -fun StLandryParishAirportAhartFieldLAAirport : Ind Airport ; + fun StMaartenAirport : Ind Airport ; -fun StLaurentduMaroniAirport : Ind Airport ; + fun StMaartenMarigotAirport : Ind Airport ; -fun StLeonardNBAirport : Ind Airport ; + fun StMaloAirport : Ind Airport ; -fun StMaartenAirport : Ind Airport ; + fun StMarysCountyMDAirport : Ind Airport ; -fun StMaartenMarigotAirport : Ind Airport ; + fun StMarysMDAirport : Ind Airport ; -fun StMaloAirport : Ind Airport ; + fun StMarysMunicipalPAAirport : Ind Airport ; -fun StMarysCountyMDAirport : Ind Airport ; + fun StMawganNewquayAirport : Ind Airport ; -fun StMarysMDAirport : Ind Airport ; + fun StMichaelAKAirport : Ind Airport ; -fun StMarysMunicipalPAAirport : Ind Airport ; + fun StPaulAerodromeABAirport : Ind Airport ; -fun StMawganNewquayAirport : Ind Airport ; + fun StPaulDowntownHolmanFieldMNAirport : Ind Airport ; -fun StMichaelAKAirport : Ind Airport ; + fun StPaulIslandAKAirport : Ind Airport ; -fun StPaulAerodromeABAirport : Ind Airport ; + fun StPaulsMissionQueenslandAirport : Ind Airport ; -fun StPaulDowntownHolmanFieldMNAirport : Ind Airport ; + fun StPeterAirport : Ind Airport ; -fun StPaulIslandAKAirport : Ind Airport ; + fun StPetersburgClearwaterInternationalFLAirport : Ind Airport ; -fun StPaulsMissionQueenslandAirport : Ind Airport ; + fun StThomasONAirport : Ind Airport ; -fun StPeterAirport : Ind Airport ; + fun StandifordFieldKYAirport : Ind Airport ; -fun StPetersburgClearwaterInternationalFLAirport : Ind Airport ; + fun StanielCayAirport : Ind Airport ; -fun StThomasONAirport : Ind Airport ; + fun StanstedLondonAirport : Ind Airport ; -fun StandifordFieldKYAirport : Ind Airport ; + fun StanthorpeQueenslandAirport : Ind Airport ; -fun StanielCayAirport : Ind Airport ; + fun StantonAirfieldMNAirport : Ind Airport ; -fun StanstedLondonAirport : Ind Airport ; + fun StaraZagoraAirport : Ind Airport ; -fun StanthorpeQueenslandAirport : Ind Airport ; + fun StarckeQueenslandAirport : Ind Airport ; -fun StantonAirfieldMNAirport : Ind Airport ; + fun StarkeCountyINAirport : Ind Airport ; -fun StaraZagoraAirport : Ind Airport ; + fun StateCollegePAAirport : Ind Airport ; -fun StarckeQueenslandAirport : Ind Airport ; + fun StatesboroMunicipalGAAirport : Ind Airport ; -fun StarkeCountyINAirport : Ind Airport ; + fun StatesvilleMunicipalNCAirport : Ind Airport ; -fun StateCollegePAAirport : Ind Airport ; + fun StatwagAirport : Ind Airport ; -fun StatesboroMunicipalGAAirport : Ind Airport ; + fun StauningAirport : Ind Airport ; -fun StatesvilleMunicipalNCAirport : Ind Airport ; + fun StavertonEnglandAirport : Ind Airport ; -fun StatwagAirport : Ind Airport ; + fun StavropolStavropolAirport : Ind Airport ; -fun StauningAirport : Ind Airport ; + fun StawellVictoriaAirport : Ind Airport ; -fun StavertonEnglandAirport : Ind Airport ; + fun SteAnnedesMontsQCAirport : Ind Airport ; -fun StavropolStavropolAirport : Ind Airport ; + fun SteMarieAirport : Ind Airport ; -fun StawellVictoriaAirport : Ind Airport ; + fun SteamboatBaySeaplaneBaseAKAirport : Ind Airport ; -fun SteAnnedesMontsQCAirport : Ind Airport ; + fun SteamboatSpringsBobAdamsFieldSTOLCOAirport : Ind Airport ; -fun SteMarieAirport : Ind Airport ; + fun StebbinsAKAirport : Ind Airport ; -fun SteamboatBaySeaplaneBaseAKAirport : Ind Airport ; + fun SteenkoolAirport : Ind Airport ; -fun SteamboatSpringsBobAdamsFieldSTOLCOAirport : Ind Airport ; + fun StellaMarisLongAirport : Ind Airport ; -fun StebbinsAKAirport : Ind Airport ; + fun StellarAirparkAZAirport : Ind Airport ; -fun SteenkoolAirport : Ind Airport ; + fun StephenIslandQueenslandAirport : Ind Airport ; -fun StellaMarisLongAirport : Ind Airport ; + fun StephenvilleNFAirport : Ind Airport ; -fun StellarAirparkAZAirport : Ind Airport ; + fun StevensFieldCOAirport : Ind Airport ; -fun StephenIslandQueenslandAirport : Ind Airport ; + fun StevensPointMunicipalWIAirport : Ind Airport ; -fun StephenvilleNFAirport : Ind Airport ; + fun StevensVillageAKAirport : Ind Airport ; -fun StevensFieldCOAirport : Ind Airport ; + fun StewartBCAirport : Ind Airport ; -fun StevensPointMunicipalWIAirport : Ind Airport ; + fun StewartInternationalNYAirport : Ind Airport ; -fun StevensVillageAKAirport : Ind Airport ; + fun StewartIslandAirport : Ind Airport ; -fun StewartBCAirport : Ind Airport ; + fun StillwaterMunicipalOKAirport : Ind Airport ; -fun StewartInternationalNYAirport : Ind Airport ; + fun StinsonMunicipalTXAirport : Ind Airport ; -fun StewartIslandAirport : Ind Airport ; + fun StockholmAirport : Ind Airport ; -fun StillwaterMunicipalOKAirport : Ind Airport ; + fun StocktonMetropolitanCAAirport : Ind Airport ; -fun StinsonMunicipalTXAirport : Ind Airport ; + fun StoelmanseilandAirport : Ind Airport ; -fun StockholmAirport : Ind Airport ; + fun StokkaSandnessjoenAirport : Ind Airport ; -fun StocktonMetropolitanCAAirport : Ind Airport ; + fun StonyRapidsSKAirport : Ind Airport ; -fun StoelmanseilandAirport : Ind Airport ; + fun StonyRiver2AKAirport : Ind Airport ; -fun StokkaSandnessjoenAirport : Ind Airport ; + fun StormLakeMunicipalIAAirport : Ind Airport ; -fun StonyRapidsSKAirport : Ind Airport ; + fun StornwayAirport : Ind Airport ; -fun StonyRiver2AKAirport : Ind Airport ; + fun StorumanAirport : Ind Airport ; -fun StormLakeMunicipalIAAirport : Ind Airport ; + fun StradbrokeIslandQueenslandAirport : Ind Airport ; -fun StornwayAirport : Ind Airport ; + fun StrahanTasmaniaAirport : Ind Airport ; -fun StorumanAirport : Ind Airport ; + fun StromfjordAirBaseSondreStromfjordKangerlussuaqAirport : Ind Airport ; -fun StradbrokeIslandQueenslandAirport : Ind Airport ; + fun StronsayAirport : Ind Airport ; -fun StrahanTasmaniaAirport : Ind Airport ; + fun StrotherFieldKSAirport : Ind Airport ; -fun StromfjordAirBaseSondreStromfjordKangerlussuaqAirport : Ind Airport ; + fun StroudMunicipalOKAirport : Ind Airport ; -fun StronsayAirport : Ind Airport ; + fun StrugaAirport : Ind Airport ; -fun StrotherFieldKSAirport : Ind Airport ; + fun StrzhewoiAirport : Ind Airport ; -fun StroudMunicipalOKAirport : Ind Airport ; + fun StuartIslandAirparkWAAirport : Ind Airport ; -fun StrugaAirport : Ind Airport ; + fun StuartIslandWaterAerodromeBCAirport : Ind Airport ; -fun StrzhewoiAirport : Ind Airport ; + fun SturdeeBCAirport : Ind Airport ; -fun StuartIslandAirparkWAAirport : Ind Airport ; + fun SturtCreekWesternAustraliaAirport : Ind Airport ; -fun StuartIslandWaterAerodromeBCAirport : Ind Airport ; + fun SturupMalmoAirport : Ind Airport ; -fun SturdeeBCAirport : Ind Airport ; + fun StuttgartMunicipalARAirport : Ind Airport ; -fun SturtCreekWesternAustraliaAirport : Ind Airport ; + fun StykkisholmurAirport : Ind Airport ; -fun SturupMalmoAirport : Ind Airport ; + fun SuWonCityAirport : Ind Airport ; -fun StuttgartMunicipalARAirport : Ind Airport ; + fun SuaiAirport : Ind Airport ; -fun StykkisholmurAirport : Ind Airport ; + fun SuavanaoAirport : Ind Airport ; -fun SuWonCityAirport : Ind Airport ; + fun SuceavaAirport : Ind Airport ; -fun SuaiAirport : Ind Airport ; + fun SucuaAirport : Ind Airport ; -fun SuavanaoAirport : Ind Airport ; + fun SudburyONAirport : Ind Airport ; -fun SuceavaAirport : Ind Airport ; + fun SudureyriAirport : Ind Airport ; -fun SucuaAirport : Ind Airport ; + fun SueIslandQueenslandAirport : Ind Airport ; -fun SudburyONAirport : Ind Airport ; + fun SuffieldABAirport : Ind Airport ; -fun SudureyriAirport : Ind Airport ; + fun SugapaAirport : Ind Airport ; -fun SueIslandQueenslandAirport : Ind Airport ; + fun SugarLandMunicipalAirportHullFieldTXAirport : Ind Airport ; -fun SuffieldABAirport : Ind Airport ; + fun SuiAirport : Ind Airport ; -fun SugapaAirport : Ind Airport ; + fun SuiaMissuMTAirport : Ind Airport ; -fun SugarLandMunicipalAirportHullFieldTXAirport : Ind Airport ; + fun SukiAirport : Ind Airport ; -fun SuiAirport : Ind Airport ; + fun SukkurAirport : Ind Airport ; -fun SuiaMissuMTAirport : Ind Airport ; + fun SulacoAirport : Ind Airport ; -fun SukiAirport : Ind Airport ; + fun SulayelAirport : Ind Airport ; -fun SukkurAirport : Ind Airport ; + fun SuleAirport : Ind Airport ; -fun SulacoAirport : Ind Airport ; + fun SullivanBayWaterAerodromeBCAirport : Ind Airport ; -fun SulayelAirport : Ind Airport ; + fun SullivanCountyINAirport : Ind Airport ; -fun SuleAirport : Ind Airport ; + fun SullivanCountyInternationalNYAirport : Ind Airport ; -fun SullivanBayWaterAerodromeBCAirport : Ind Airport ; + fun SullivanRegionalMOAirport : Ind Airport ; -fun SullivanCountyINAirport : Ind Airport ; + fun SulphurSpringsMunicipalTXAirport : Ind Airport ; -fun SullivanCountyInternationalNYAirport : Ind Airport ; + fun SultanMahmudBadaruddinIIPalembangAirport : Ind Airport ; -fun SullivanRegionalMOAirport : Ind Airport ; + fun SumbawaBesarSumbawaAirport : Ind Airport ; -fun SulphurSpringsMunicipalTXAirport : Ind Airport ; + fun SumbawangaAirport : Ind Airport ; -fun SultanMahmudBadaruddinIIPalembangAirport : Ind Airport ; + fun SumbeAirport : Ind Airport ; -fun SumbawaBesarSumbawaAirport : Ind Airport ; + fun SumburghShetlandIslandsAirport : Ind Airport ; -fun SumbawangaAirport : Ind Airport ; + fun SumenepAirport : Ind Airport ; -fun SumbeAirport : Ind Airport ; + fun SummerBeaverAirport : Ind Airport ; -fun SumburghShetlandIslandsAirport : Ind Airport ; + fun SummerdaleNavalOutlyingFieldALAirport : Ind Airport ; -fun SumenepAirport : Ind Airport ; + fun SummersidePEAirport : Ind Airport ; -fun SummerBeaverAirport : Ind Airport ; + fun SummitAKAirport : Ind Airport ; -fun SummerdaleNavalOutlyingFieldALAirport : Ind Airport ; + fun SumterMunicipalSCAirport : Ind Airport ; -fun SummersidePEAirport : Ind Airport ; + fun SumySumyAirport : Ind Airport ; -fun SummitAKAirport : Ind Airport ; + fun SunMoonLakeAirport : Ind Airport ; -fun SumterMunicipalSCAirport : Ind Airport ; + fun SunRiverAirport : Ind Airport ; -fun SumySumyAirport : Ind Airport ; + fun SungShanTaipeiAirport : Ind Airport ; -fun SunMoonLakeAirport : Ind Airport ; + fun SungalPakningAirport : Ind Airport ; -fun SunRiverAirport : Ind Airport ; + fun SungeiTiangAirport : Ind Airport ; -fun SungShanTaipeiAirport : Ind Airport ; + fun SunyaniAirport : Ind Airport ; -fun SungalPakningAirport : Ind Airport ; + fun SupadioPontianakAirport : Ind Airport ; -fun SungeiTiangAirport : Ind Airport ; + fun SurAirport : Ind Airport ; -fun SunyaniAirport : Ind Airport ; + fun SuratAirport : Ind Airport ; -fun SupadioPontianakAirport : Ind Airport ; + fun SuratThaniAirport : Ind Airport ; -fun SurAirport : Ind Airport ; + fun SurfdaleAirport : Ind Airport ; -fun SuratAirport : Ind Airport ; + fun SurfersParadiseQueenslandAirport : Ind Airport ; -fun SuratThaniAirport : Ind Airport ; + fun SurgutTyumenAirport : Ind Airport ; -fun SurfdaleAirport : Ind Airport ; + fun SuriaAirport : Ind Airport ; -fun SurfersParadiseQueenslandAirport : Ind Airport ; + fun SurigaoAirport : Ind Airport ; -fun SurgutTyumenAirport : Ind Airport ; + fun SurseeAirport : Ind Airport ; -fun SuriaAirport : Ind Airport ; + fun SurtranBuildingMcDavidPontiacCompanyHeliportTXAirport : Ind Airport ; -fun SurigaoAirport : Ind Airport ; + fun SusanvilleMunicipalCAAirport : Ind Airport ; -fun SurseeAirport : Ind Airport ; + fun SuzhouAirport : Ind Airport ; -fun SurtranBuildingMcDavidPontiacCompanyHeliportTXAirport : Ind Airport ; + fun SvartnesVardoVardoeAirport : Ind Airport ; -fun SusanvilleMunicipalCAAirport : Ind Airport ; + fun SvayRiengAirport : Ind Airport ; -fun SuzhouAirport : Ind Airport ; + fun SwakopmundAirport : Ind Airport ; -fun SvartnesVardoVardoeAirport : Ind Airport ; + fun SwanHillVictoriaAirport : Ind Airport ; -fun SvayRiengAirport : Ind Airport ; + fun SwanRiverMBAirport : Ind Airport ; -fun SwakopmundAirport : Ind Airport ; + fun SwanseaWalesAirport : Ind Airport ; -fun SwanHillVictoriaAirport : Ind Airport ; + fun SwiftCurrentSKAirport : Ind Airport ; -fun SwanRiverMBAirport : Ind Airport ; + fun SwindonAirport : Ind Airport ; -fun SwanseaWalesAirport : Ind Airport ; + fun SydneyNSAirport : Ind Airport ; -fun SwiftCurrentSKAirport : Ind Airport ; + fun SyktyvkarKomiAirport : Ind Airport ; -fun SwindonAirport : Ind Airport ; + fun SylvesterGAAirport : Ind Airport ; -fun SydneyNSAirport : Ind Airport ; + fun SyracuseHancockInternationalNYAirport : Ind Airport ; -fun SyktyvkarKomiAirport : Ind Airport ; + fun TabarkaAirport : Ind Airport ; -fun SylvesterGAAirport : Ind Airport ; + fun TabatingaAMAirport : Ind Airport ; -fun SyracuseHancockInternationalNYAirport : Ind Airport ; + fun TabibugaAirport : Ind Airport ; -fun TabarkaAirport : Ind Airport ; + fun TabingPadangAirport : Ind Airport ; -fun TabatingaAMAirport : Ind Airport ; + fun TabiteueaNorthAirport : Ind Airport ; -fun TabibugaAirport : Ind Airport ; + fun TabiteueaSouthAirport : Ind Airport ; -fun TabingPadangAirport : Ind Airport ; + fun TablasAirport : Ind Airport ; -fun TabiteueaNorthAirport : Ind Airport ; + fun TableRockHeliportMOAirport : Ind Airport ; -fun TabiteueaSouthAirport : Ind Airport ; + fun TablelandAirport : Ind Airport ; -fun TablasAirport : Ind Airport ; + fun TablondeTamaraAirport : Ind Airport ; -fun TableRockHeliportMOAirport : Ind Airport ; + fun TaboraAirport : Ind Airport ; -fun TablelandAirport : Ind Airport ; + fun TabouAirport : Ind Airport ; -fun TablondeTamaraAirport : Ind Airport ; + fun TabrizAirport : Ind Airport ; -fun TaboraAirport : Ind Airport ; + fun TabubilAirport : Ind Airport ; -fun TabouAirport : Ind Airport ; + fun TabukAirport : Ind Airport ; -fun TabrizAirport : Ind Airport ; + fun TachilekAirport : Ind Airport ; -fun TabubilAirport : Ind Airport ; + fun TaclobanAirport : Ind Airport ; -fun TabukAirport : Ind Airport ; + fun TacomaNarrowsWAAirport : Ind Airport ; -fun TachilekAirport : Ind Airport ; + fun TacuaremboAirport : Ind Airport ; -fun TaclobanAirport : Ind Airport ; + fun TadjiAirport : Ind Airport ; -fun TacomaNarrowsWAAirport : Ind Airport ; + fun TadjouraAirport : Ind Airport ; -fun TacuaremboAirport : Ind Airport ; + fun TadouleLakeMBAirport : Ind Airport ; -fun TadjiAirport : Ind Airport ; + fun TadouleLakeWaterAerodromeMBAirport : Ind Airport ; -fun TadjouraAirport : Ind Airport ; + fun TaeguAirport : Ind Airport ; -fun TadouleLakeMBAirport : Ind Airport ; + fun TaejonAirport : Ind Airport ; -fun TadouleLakeWaterAerodromeMBAirport : Ind Airport ; + fun TafaroviAirport : Ind Airport ; -fun TaeguAirport : Ind Airport ; + fun TaftanAirport : Ind Airport ; -fun TaejonAirport : Ind Airport ; + fun TagbilaranAirport : Ind Airport ; -fun TafaroviAirport : Ind Airport ; + fun TaguacAirport : Ind Airport ; -fun TaftanAirport : Ind Airport ; + fun TagulaAirport : Ind Airport ; -fun TagbilaranAirport : Ind Airport ; + fun TaharoaAirport : Ind Airport ; -fun TaguacAirport : Ind Airport ; + fun TahouaAirport : Ind Airport ; -fun TagulaAirport : Ind Airport ; + fun TahsisWaterAerodromeBCAirport : Ind Airport ; -fun TaharoaAirport : Ind Airport ; + fun TaichungAirport : Ind Airport ; -fun TahouaAirport : Ind Airport ; + fun TaifAirport : Ind Airport ; -fun TahsisWaterAerodromeBCAirport : Ind Airport ; + fun TainanAirport : Ind Airport ; -fun TaichungAirport : Ind Airport ; + fun TaipingAirport : Ind Airport ; -fun TaifAirport : Ind Airport ; + fun TaishaAirport : Ind Airport ; -fun TainanAirport : Ind Airport ; + fun TaitungAirport : Ind Airport ; -fun TaipingAirport : Ind Airport ; + fun TakAirport : Ind Airport ; -fun TaishaAirport : Ind Airport ; + fun TakamatsuAirport : Ind Airport ; -fun TaitungAirport : Ind Airport ; + fun TakapotoAirport : Ind Airport ; -fun TakAirport : Ind Airport ; + fun TakaroaAirport : Ind Airport ; -fun TakamatsuAirport : Ind Airport ; + fun TakhliAirport : Ind Airport ; -fun TakapotoAirport : Ind Airport ; + fun TakoradiAirport : Ind Airport ; -fun TakaroaAirport : Ind Airport ; + fun TakotnaAKAirport : Ind Airport ; -fun TakhliAirport : Ind Airport ; + fun TakuLodgeSeaplaneBaseAKAirport : Ind Airport ; -fun TakoradiAirport : Ind Airport ; + fun TalaseaAirport : Ind Airport ; -fun TakotnaAKAirport : Ind Airport ; + fun TalcaAirport : Ind Airport ; -fun TakuLodgeSeaplaneBaseAKAirport : Ind Airport ; + fun TaldyqorghanTaldyKurganTaldyqorghanAirport : Ind Airport ; -fun TalaseaAirport : Ind Airport ; + fun TaliabuAirport : Ind Airport ; -fun TalcaAirport : Ind Airport ; + fun TalkeetnaAKAirport : Ind Airport ; -fun TaldyqorghanTaldyKurganTaldyqorghanAirport : Ind Airport ; + fun TalknafjordurAirport : Ind Airport ; -fun TaliabuAirport : Ind Airport ; + fun TallahasseeRegionalFLAirport : Ind Airport ; -fun TalkeetnaAKAirport : Ind Airport ; + fun TaltalAirport : Ind Airport ; -fun TalknafjordurAirport : Ind Airport ; + fun TaluqanAirport : Ind Airport ; -fun TallahasseeRegionalFLAirport : Ind Airport ; + fun TamaleAirport : Ind Airport ; -fun TaltalAirport : Ind Airport ; + fun TamanaAirport : Ind Airport ; -fun TaluqanAirport : Ind Airport ; + fun TamanrassetAirport : Ind Airport ; -fun TamaleAirport : Ind Airport ; + fun TamarindoAirport : Ind Airport ; -fun TamanaAirport : Ind Airport ; + fun TamataveAirport : Ind Airport ; -fun TamanrassetAirport : Ind Airport ; + fun TambacoundaAirport : Ind Airport ; -fun TamarindoAirport : Ind Airport ; + fun TambaoAirport : Ind Airport ; -fun TamataveAirport : Ind Airport ; + fun TambohoranoAirport : Ind Airport ; -fun TambacoundaAirport : Ind Airport ; + fun TambolakaAirport : Ind Airport ; -fun TambaoAirport : Ind Airport ; + fun TamborAirport : Ind Airport ; -fun TambohoranoAirport : Ind Airport ; + fun TambovTambovAirport : Ind Airport ; -fun TambolakaAirport : Ind Airport ; + fun TamchakettAirport : Ind Airport ; -fun TamborAirport : Ind Airport ; + fun TameAirport : Ind Airport ; -fun TambovTambovAirport : Ind Airport ; + fun TamkyAirport : Ind Airport ; -fun TamchakettAirport : Ind Airport ; + fun TampaInternationalFLAirport : Ind Airport ; -fun TameAirport : Ind Airport ; + fun TamuinAirport : Ind Airport ; -fun TamkyAirport : Ind Airport ; + fun TamworthNewSouthWalesAirport : Ind Airport ; -fun TampaInternationalFLAirport : Ind Airport ; + fun TanSonNhutInternationalHoChiMinhCitySaigonAirport : Ind Airport ; -fun TamuinAirport : Ind Airport ; + fun TanacrossAKAirport : Ind Airport ; -fun TamworthNewSouthWalesAirport : Ind Airport ; + fun TanahGrogotAirport : Ind Airport ; -fun TanSonNhutInternationalHoChiMinhCitySaigonAirport : Ind Airport ; + fun TanahmerahAirport : Ind Airport ; -fun TanacrossAKAirport : Ind Airport ; + fun TanalianAKAirport : Ind Airport ; -fun TanahGrogotAirport : Ind Airport ; + fun TanandavaAirport : Ind Airport ; -fun TanahmerahAirport : Ind Airport ; + fun TanatorajaAirport : Ind Airport ; -fun TanalianAKAirport : Ind Airport ; + fun TanbarQueenslandAirport : Ind Airport ; -fun TanandavaAirport : Ind Airport ; + fun TandagAirport : Ind Airport ; -fun TanatorajaAirport : Ind Airport ; + fun TandilAirport : Ind Airport ; -fun TanbarQueenslandAirport : Ind Airport ; + fun TanegashimaAirport : Ind Airport ; -fun TandagAirport : Ind Airport ; + fun TangaAirport : Ind Airport ; -fun TandilAirport : Ind Airport ; + fun TangaIslandAirport : Ind Airport ; -fun TanegashimaAirport : Ind Airport ; + fun TangaloomaAirport : Ind Airport ; -fun TangaAirport : Ind Airport ; + fun TanjungAirport : Ind Airport ; -fun TangaIslandAirport : Ind Airport ; + fun TanjungSelorBorneoAirport : Ind Airport ; -fun TangaloomaAirport : Ind Airport ; + fun TannaIslandAirport : Ind Airport ; -fun TanjungAirport : Ind Airport ; + fun TaosMunicipalNMAirport : Ind Airport ; -fun TanjungSelorBorneoAirport : Ind Airport ; + fun TapachulaAirport : Ind Airport ; -fun TannaIslandAirport : Ind Airport ; + fun TapaktuanAirport : Ind Airport ; -fun TaosMunicipalNMAirport : Ind Airport ; + fun TapetaAirport : Ind Airport ; -fun TapachulaAirport : Ind Airport ; + fun TaplejungAirport : Ind Airport ; -fun TapaktuanAirport : Ind Airport ; + fun TaraQueenslandAirport : Ind Airport ; -fun TapetaAirport : Ind Airport ; + fun TarakanBorneoAirport : Ind Airport ; -fun TaplejungAirport : Ind Airport ; + fun TarakbitsAirport : Ind Airport ; -fun TaraQueenslandAirport : Ind Airport ; + fun TaramajimaAirport : Ind Airport ; -fun TarakanBorneoAirport : Ind Airport ; + fun TarantoAirport : Ind Airport ; -fun TarakbitsAirport : Ind Airport ; + fun TarapacaAirport : Ind Airport ; -fun TaramajimaAirport : Ind Airport ; + fun TarapainaAirport : Ind Airport ; -fun TarantoAirport : Ind Airport ; + fun TarapoaAirport : Ind Airport ; -fun TarapacaAirport : Ind Airport ; + fun TarapotoAirport : Ind Airport ; -fun TarapainaAirport : Ind Airport ; + fun TarauacaACAirport : Ind Airport ; -fun TarapoaAirport : Ind Airport ; + fun TarbelaAirport : Ind Airport ; -fun TarapotoAirport : Ind Airport ; + fun TarbesAirport : Ind Airport ; -fun TarauacaACAirport : Ind Airport ; + fun TarcoolaSouthAustraliaAirport : Ind Airport ; -fun TarbelaAirport : Ind Airport ; + fun TareeNewSouthWalesAirport : Ind Airport ; -fun TarbesAirport : Ind Airport ; + fun TarfayaAirport : Ind Airport ; -fun TarcoolaSouthAustraliaAirport : Ind Airport ; + fun TargovishteAirport : Ind Airport ; -fun TareeNewSouthWalesAirport : Ind Airport ; + fun TariAirport : Ind Airport ; -fun TarfayaAirport : Ind Airport ; + fun TaroomQueenslandAirport : Ind Airport ; -fun TargovishteAirport : Ind Airport ; + fun TartuAirport : Ind Airport ; -fun TariAirport : Ind Airport ; + fun TasikmalayaAirport : Ind Airport ; -fun TaroomQueenslandAirport : Ind Airport ; + fun TasiujuaqQCAirport : Ind Airport ; -fun TartuAirport : Ind Airport ; + fun TaskulAirport : Ind Airport ; -fun TasikmalayaAirport : Ind Airport ; + fun TasuWaterAerodromeBCAirport : Ind Airport ; -fun TasiujuaqQCAirport : Ind Airport ; + fun TatakotoAirport : Ind Airport ; -fun TaskulAirport : Ind Airport ; + fun TatalinaLRRSAKAirport : Ind Airport ; -fun TasuWaterAerodromeBCAirport : Ind Airport ; + fun TatitlekSeaplaneBaseAKAirport : Ind Airport ; -fun TatakotoAirport : Ind Airport ; + fun TatryPopradAirport : Ind Airport ; -fun TatalinaLRRSAKAirport : Ind Airport ; + fun TauSeaplaneBaseTauIslandAirport : Ind Airport ; -fun TatitlekSeaplaneBaseAKAirport : Ind Airport ; + fun TaupoAirport : Ind Airport ; -fun TatryPopradAirport : Ind Airport ; + fun TauramenaAirport : Ind Airport ; -fun TauSeaplaneBaseTauIslandAirport : Ind Airport ; + fun TaurangaAirport : Ind Airport ; -fun TaupoAirport : Ind Airport ; + fun TautaAirport : Ind Airport ; -fun TauramenaAirport : Ind Airport ; + fun TaveuniAirport : Ind Airport ; -fun TaurangaAirport : Ind Airport ; + fun TavoyAirport : Ind Airport ; -fun TautaAirport : Ind Airport ; + fun TawaTibetAirport : Ind Airport ; -fun TaveuniAirport : Ind Airport ; + fun TawauSabahAirport : Ind Airport ; -fun TavoyAirport : Ind Airport ; + fun TawiTawiAirport : Ind Airport ; -fun TawaTibetAirport : Ind Airport ; + fun TaylorAKAirport : Ind Airport ; -fun TawauSabahAirport : Ind Airport ; + fun TaylorAZAirport : Ind Airport ; -fun TawiTawiAirport : Ind Airport ; + fun TaylorCountyWIAirport : Ind Airport ; -fun TaylorAKAirport : Ind Airport ; + fun TchibangaAirport : Ind Airport ; -fun TaylorAZAirport : Ind Airport ; + fun TchienAirport : Ind Airport ; -fun TaylorCountyWIAirport : Ind Airport ; + fun TeAnauAirport : Ind Airport ; -fun TchibangaAirport : Ind Airport ; + fun TebessaAirport : Ind Airport ; -fun TchienAirport : Ind Airport ; + fun TeesSideAirport : Ind Airport ; -fun TeAnauAirport : Ind Airport ; + fun TefeMAAirport : Ind Airport ; -fun TebessaAirport : Ind Airport ; + fun TegelBerlinAirport : Ind Airport ; -fun TeesSideAirport : Ind Airport ; + fun TehachapiMunicipalCAAirport : Ind Airport ; -fun TefeMAAirport : Ind Airport ; + fun TehuacanAirport : Ind Airport ; -fun TegelBerlinAirport : Ind Airport ; + fun TekaduAirport : Ind Airport ; -fun TehachapiMunicipalCAAirport : Ind Airport ; + fun TekamahMunicipalNEAirport : Ind Airport ; -fun TehuacanAirport : Ind Airport ; + fun TekinAirport : Ind Airport ; -fun TekaduAirport : Ind Airport ; + fun TelAvivAirport : Ind Airport ; -fun TekamahMunicipalNEAirport : Ind Airport ; + fun TelaAirport : Ind Airport ; -fun TekinAirport : Ind Airport ; + fun TelefominAirport : Ind Airport ; -fun TelAvivAirport : Ind Airport ; + fun TelegraphCreekAerodromeBCAirport : Ind Airport ; -fun TelaAirport : Ind Airport ; + fun TelemacoBorbaPRAirport : Ind Airport ; -fun TelefominAirport : Ind Airport ; + fun TelfairWheelerGAAirport : Ind Airport ; -fun TelegraphCreekAerodromeBCAirport : Ind Airport ; + fun TelferWesternAustraliaAirport : Ind Airport ; -fun TelemacoBorbaPRAirport : Ind Airport ; + fun TelidaAKAirport : Ind Airport ; -fun TelfairWheelerGAAirport : Ind Airport ; + fun TellerAKAirport : Ind Airport ; -fun TelferWesternAustraliaAirport : Ind Airport ; + fun TellurideCOAirport : Ind Airport ; -fun TelidaAKAirport : Ind Airport ; + fun TellurideRegionalCOAirport : Ind Airport ; -fun TellerAKAirport : Ind Airport ; + fun TelupidAirport : Ind Airport ; -fun TellurideCOAirport : Ind Airport ; + fun TeminabuanAirport : Ind Airport ; -fun TellurideRegionalCOAirport : Ind Airport ; + fun TemoraNewSouthWalesAirport : Ind Airport ; -fun TelupidAirport : Ind Airport ; + fun TempelhofBerlinAirport : Ind Airport ; -fun TeminabuanAirport : Ind Airport ; + fun TemucoAirport : Ind Airport ; -fun TemoraNewSouthWalesAirport : Ind Airport ; + fun TenakeeAirForceBaseAKAirport : Ind Airport ; -fun TempelhofBerlinAirport : Ind Airport ; + fun TenerifeCanaryIslandsAirport : Ind Airport ; -fun TemucoAirport : Ind Airport ; + fun TengahRAFStationTengahAirport : Ind Airport ; -fun TenakeeAirForceBaseAKAirport : Ind Airport ; + fun TenienteBenMatienzTucumanSanMiguelTucumanAirport : Ind Airport ; -fun TenerifeCanaryIslandsAirport : Ind Airport ; + fun TenienteJorgeHenrichArauzTrinidadAirport : Ind Airport ; -fun TengahRAFStationTengahAirport : Ind Airport ; + fun TenkodogoAirport : Ind Airport ; -fun TenienteBenMatienzTucumanSanMiguelTucumanAirport : Ind Airport ; + fun TennantCreekNorthernTerritoryAirport : Ind Airport ; -fun TenienteJorgeHenrichArauzTrinidadAirport : Ind Airport ; + fun TeofiloOtoniMGAirport : Ind Airport ; -fun TenkodogoAirport : Ind Airport ; + fun TepicAirport : Ind Airport ; -fun TennantCreekNorthernTerritoryAirport : Ind Airport ; + fun TeptepAirport : Ind Airport ; -fun TeofiloOtoniMGAirport : Ind Airport ; + fun TerapoAirport : Ind Airport ; -fun TepicAirport : Ind Airport ; + fun TeresinaPIAirport : Ind Airport ; -fun TeptepAirport : Ind Airport ; + fun TeresopolisRJAirport : Ind Airport ; -fun TerapoAirport : Ind Airport ; + fun TermizTermesSurkhondaryoAirport : Ind Airport ; -fun TeresinaPIAirport : Ind Airport ; + fun TernateAirport : Ind Airport ; -fun TeresopolisRJAirport : Ind Airport ; + fun TernopilTernopolTernopilAirport : Ind Airport ; -fun TermizTermesSurkhondaryoAirport : Ind Airport ; + fun TerraceBCAirport : Ind Airport ; -fun TernateAirport : Ind Airport ; + fun TerraceBayONAirport : Ind Airport ; -fun TernopilTernopolTernopilAirport : Ind Airport ; + fun TerrellMunicipalTXAirport : Ind Airport ; -fun TerraceBCAirport : Ind Airport ; + fun TeslinYTAirport : Ind Airport ; -fun TerraceBayONAirport : Ind Airport ; + fun TesseneiAirport : Ind Airport ; -fun TerrellMunicipalTXAirport : Ind Airport ; + fun TeteAirport : Ind Airport ; -fun TeslinYTAirport : Ind Airport ; + fun TetealaBaleineWaterAerodromeQCAirport : Ind Airport ; -fun TesseneiAirport : Ind Airport ; + fun TetebediAirport : Ind Airport ; -fun TeteAirport : Ind Airport ; + fun TeterboroNJAirport : Ind Airport ; -fun TetealaBaleineWaterAerodromeQCAirport : Ind Airport ; + fun TetiaroaIslandAirport : Ind Airport ; -fun TetebediAirport : Ind Airport ; + fun TetlinAKAirport : Ind Airport ; -fun TeterboroNJAirport : Ind Airport ; + fun TeugeDeventerAirport : Ind Airport ; -fun TetiaroaIslandAirport : Ind Airport ; + fun TewantinQueenslandAirport : Ind Airport ; -fun TetlinAKAirport : Ind Airport ; + fun TexarkanaRegionalAirportWebbFieldARAirport : Ind Airport ; -fun TeugeDeventerAirport : Ind Airport ; + fun TezpurAirport : Ind Airport ; -fun TewantinQueenslandAirport : Ind Airport ; + fun TezuAirport : Ind Airport ; -fun TexarkanaRegionalAirportWebbFieldARAirport : Ind Airport ; + fun ThabaNchuAirport : Ind Airport ; -fun TezpurAirport : Ind Airport ; + fun ThabaTsekaAirport : Ind Airport ; -fun TezuAirport : Ind Airport ; + fun ThakhekAirport : Ind Airport ; -fun ThabaNchuAirport : Ind Airport ; + fun ThakurgaonAirport : Ind Airport ; -fun ThabaTsekaAirport : Ind Airport ; + fun ThangoolBiloelaQueenslandAirport : Ind Airport ; -fun ThakhekAirport : Ind Airport ; + fun ThanjavurAirport : Ind Airport ; -fun ThakurgaonAirport : Ind Airport ; + fun ThargomindahQueenslandAirport : Ind Airport ; -fun ThangoolBiloelaQueenslandAirport : Ind Airport ; + fun TheBightAirport : Ind Airport ; -fun ThanjavurAirport : Ind Airport ; + fun TheONeillMunicipalAirportJohnLBakerFieldNEAirport : Ind Airport ; -fun ThargomindahQueenslandAirport : Ind Airport ; + fun ThePasMBAirport : Ind Airport ; -fun TheBightAirport : Ind Airport ; + fun TheQueensAKAirport : Ind Airport ; -fun TheONeillMunicipalAirportJohnLBakerFieldNEAirport : Ind Airport ; + fun TheodoreFrancisGreenStateRIAirport : Ind Airport ; -fun ThePasMBAirport : Ind Airport ; + fun TheodoreQueenslandAirport : Ind Airport ; -fun TheQueensAKAirport : Ind Airport ; + fun ThermalCAAirport : Ind Airport ; -fun TheodoreFrancisGreenStateRIAirport : Ind Airport ; + fun ThicketPortageMBAirport : Ind Airport ; -fun TheodoreQueenslandAirport : Ind Airport ; + fun ThiefRiverFallsRegionalMNAirport : Ind Airport ; -fun ThermalCAAirport : Ind Airport ; + fun ThingeyriAirport : Ind Airport ; -fun ThicketPortageMBAirport : Ind Airport ; + fun ThistedAirport : Ind Airport ; -fun ThiefRiverFallsRegionalMNAirport : Ind Airport ; + fun ThohoyandouVendaAirport : Ind Airport ; -fun ThingeyriAirport : Ind Airport ; + fun ThomasvilleMunicipalGAAirport : Ind Airport ; -fun ThistedAirport : Ind Airport ; + fun ThompsonFallsMTAirport : Ind Airport ; -fun ThohoyandouVendaAirport : Ind Airport ; + fun ThompsonMBAirport : Ind Airport ; -fun ThomasvilleMunicipalGAAirport : Ind Airport ; + fun ThorshofnAirport : Ind Airport ; -fun ThompsonFallsMTAirport : Ind Airport ; + fun ThredboNewSouthWalesAirport : Ind Airport ; -fun ThompsonMBAirport : Ind Airport ; + fun ThuleAirBaseThuleAirport : Ind Airport ; -fun ThorshofnAirport : Ind Airport ; + fun ThumraitAirport : Ind Airport ; -fun ThredboNewSouthWalesAirport : Ind Airport ; + fun ThunderBayONAirport : Ind Airport ; -fun ThuleAirBaseThuleAirport : Ind Airport ; + fun ThylungraQueenslandAirport : Ind Airport ; -fun ThumraitAirport : Ind Airport ; + fun ThynaSfaxAirport : Ind Airport ; -fun ThunderBayONAirport : Ind Airport ; + fun TibooburraNewSouthWalesAirport : Ind Airport ; -fun ThylungraQueenslandAirport : Ind Airport ; + fun TibuAirport : Ind Airport ; -fun ThynaSfaxAirport : Ind Airport ; + fun TichittAirport : Ind Airport ; -fun TibooburraNewSouthWalesAirport : Ind Airport ; + fun TidjikjaAirport : Ind Airport ; -fun TibuAirport : Ind Airport ; + fun TigaAirport : Ind Airport ; -fun TichittAirport : Ind Airport ; + fun TignesAirport : Ind Airport ; -fun TidjikjaAirport : Ind Airport ; + fun TikalAirport : Ind Airport ; -fun TigaAirport : Ind Airport ; + fun TikapurAirport : Ind Airport ; -fun TignesAirport : Ind Airport ; + fun TikehauAtollAirport : Ind Airport ; -fun TikalAirport : Ind Airport ; + fun TikoAirport : Ind Airport ; -fun TikapurAirport : Ind Airport ; + fun TilfalminAirport : Ind Airport ; -fun TikehauAtollAirport : Ind Airport ; + fun TilinAirport : Ind Airport ; -fun TikoAirport : Ind Airport ; + fun TimaruAirport : Ind Airport ; -fun TilfalminAirport : Ind Airport ; + fun TimbaubaPEAirport : Ind Airport ; -fun TilinAirport : Ind Airport ; + fun TimbedraAirport : Ind Airport ; -fun TimaruAirport : Ind Airport ; + fun TimberCreekAirport : Ind Airport ; -fun TimbaubaPEAirport : Ind Airport ; + fun TimbiquiAirport : Ind Airport ; -fun TimbedraAirport : Ind Airport ; + fun TimbunkeAirport : Ind Airport ; -fun TimberCreekAirport : Ind Airport ; + fun TimikaTimukaTembagapuraNewGuineaAirport : Ind Airport ; -fun TimbiquiAirport : Ind Airport ; + fun TimimounAirport : Ind Airport ; -fun TimbunkeAirport : Ind Airport ; + fun TimminsONAirport : Ind Airport ; -fun TimikaTimukaTembagapuraNewGuineaAirport : Ind Airport ; + fun TinCityLRRSAKAirport : Ind Airport ; -fun TimimounAirport : Ind Airport ; + fun TinakTinakAirport : Ind Airport ; -fun TimminsONAirport : Ind Airport ; + fun TindoufAirport : Ind Airport ; -fun TinCityLRRSAKAirport : Ind Airport ; + fun TingoMariaAirport : Ind Airport ; -fun TinakTinakAirport : Ind Airport ; + fun TingwallShetlandIslandsAirport : Ind Airport ; -fun TindoufAirport : Ind Airport ; + fun TingwonAirport : Ind Airport ; -fun TingoMariaAirport : Ind Airport ; + fun TinkerAirForceBaseOKAirport : Ind Airport ; -fun TingwallShetlandIslandsAirport : Ind Airport ; + fun TiogaMunicipalNDAirport : Ind Airport ; -fun TingwonAirport : Ind Airport ; + fun TiomNewGuineaAirport : Ind Airport ; -fun TinkerAirForceBaseOKAirport : Ind Airport ; + fun TiomanAirport : Ind Airport ; -fun TiogaMunicipalNDAirport : Ind Airport ; + fun TippiAirport : Ind Airport ; -fun TiomNewGuineaAirport : Ind Airport ; + fun TiputiniAirport : Ind Airport ; -fun TiomanAirport : Ind Airport ; + fun TiranaAirport : Ind Airport ; -fun TippiAirport : Ind Airport ; + fun TireeIslandAirport : Ind Airport ; -fun TiputiniAirport : Ind Airport ; + fun TirinkotAirport : Ind Airport ; -fun TiranaAirport : Ind Airport ; + fun TiruchirapallyAirport : Ind Airport ; -fun TireeIslandAirport : Ind Airport ; + fun TirupatiAirport : Ind Airport ; -fun TirinkotAirport : Ind Airport ; + fun TisdaleAerodromeSKAirport : Ind Airport ; -fun TiruchirapallyAirport : Ind Airport ; + fun TivatAirport : Ind Airport ; -fun TirupatiAirport : Ind Airport ; + fun TiziminAirport : Ind Airport ; -fun TisdaleAerodromeSKAirport : Ind Airport ; + fun TlokoengAirport : Ind Airport ; -fun TivatAirport : Ind Airport ; + fun TobermoryAirport : Ind Airport ; -fun TiziminAirport : Ind Airport ; + fun TobolskTyumenAirport : Ind Airport ; -fun TlokoengAirport : Ind Airport ; + fun TobrukAirport : Ind Airport ; -fun TobermoryAirport : Ind Airport ; + fun TocacheAirport : Ind Airport ; -fun TobolskTyumenAirport : Ind Airport ; + fun ToccoaRGLetourneauFieldGAAirport : Ind Airport ; -fun TobrukAirport : Ind Airport ; + fun TocoaAirport : Ind Airport ; -fun TocacheAirport : Ind Airport ; + fun TocopillaAirport : Ind Airport ; -fun ToccoaRGLetourneauFieldGAAirport : Ind Airport ; + fun TocumwalNewSouthWalesAirport : Ind Airport ; -fun TocoaAirport : Ind Airport ; + fun TofinoBCAirport : Ind Airport ; -fun TocopillaAirport : Ind Airport ; + fun TofinoWaterAerodromeBCAirport : Ind Airport ; -fun TocumwalNewSouthWalesAirport : Ind Airport ; + fun TogiakAKAirport : Ind Airport ; -fun TofinoBCAirport : Ind Airport ; + fun TokAKAirport : Ind Airport ; -fun TofinoWaterAerodromeBCAirport : Ind Airport ; + fun TokeenSeaplaneBaseAKAirport : Ind Airport ; -fun TogiakAKAirport : Ind Airport ; + fun TokoinLomeAirport : Ind Airport ; -fun TokAKAirport : Ind Airport ; + fun ToksookBayAKAirport : Ind Airport ; -fun TokeenSeaplaneBaseAKAirport : Ind Airport ; + fun TokunoShimaAirport : Ind Airport ; -fun TokoinLomeAirport : Ind Airport ; + fun TokushimaAirport : Ind Airport ; -fun ToksookBayAKAirport : Ind Airport ; + fun TolAirport : Ind Airport ; -fun TokunoShimaAirport : Ind Airport ; + fun ToledoAirportWinlockEdCarlsonMemorialFieldWAAirport : Ind Airport ; -fun TokushimaAirport : Ind Airport ; + fun ToledoExpressOHAirport : Ind Airport ; -fun TolAirport : Ind Airport ; + fun ToledoPRAirport : Ind Airport ; -fun ToledoAirportWinlockEdCarlsonMemorialFieldWAAirport : Ind Airport ; + fun TolitoliAirport : Ind Airport ; -fun ToledoExpressOHAirport : Ind Airport ; + fun TolmachevoNovosibirskAirport : Ind Airport ; -fun ToledoPRAirport : Ind Airport ; + fun ToluAirport : Ind Airport ; -fun TolitoliAirport : Ind Airport ; + fun TomOConnerTXAirport : Ind Airport ; -fun TolmachevoNovosibirskAirport : Ind Airport ; + fun TomPriceWesternAustraliaAirport : Ind Airport ; -fun ToluAirport : Ind Airport ; + fun TomanggongAirport : Ind Airport ; -fun TomOConnerTXAirport : Ind Airport ; + fun TomasGuardiaLiberiaAirport : Ind Airport ; -fun TomPriceWesternAustraliaAirport : Ind Airport ; + fun TombouctouAirport : Ind Airport ; -fun TomanggongAirport : Ind Airport ; + fun TompkinsvilleMonroeCountyKYAirport : Ind Airport ; -fun TomasGuardiaLiberiaAirport : Ind Airport ; + fun ToncontinTegucigalpaAirport : Ind Airport ; -fun TombouctouAirport : Ind Airport ; + fun TonghuaAirport : Ind Airport ; -fun TompkinsvilleMonroeCountyKYAirport : Ind Airport ; + fun TongliaoAirport : Ind Airport ; -fun ToncontinTegucigalpaAirport : Ind Airport ; + fun TongoaAirport : Ind Airport ; -fun TonghuaAirport : Ind Airport ; + fun TonopahNVAirport : Ind Airport ; -fun TongliaoAirport : Ind Airport ; + fun TonopahTestRangeNVAirport : Ind Airport ; -fun TongoaAirport : Ind Airport ; + fun TonuAirport : Ind Airport ; -fun TonopahNVAirport : Ind Airport ; + fun ToowoombaQueenslandAirport : Ind Airport ; -fun TonopahTestRangeNVAirport : Ind Airport ; + fun TorokinaAirport : Ind Airport ; -fun TonuAirport : Ind Airport ; + fun TorontoDowntownHeliportONAirport : Ind Airport ; -fun ToowoombaQueenslandAirport : Ind Airport ; + fun TorontoIslandONAirport : Ind Airport ; -fun TorokinaAirport : Ind Airport ; + fun TororoAirport : Ind Airport ; -fun TorontoDowntownHeliportONAirport : Ind Airport ; + fun TorpSandefjordAirport : Ind Airport ; -fun TorontoIslandONAirport : Ind Airport ; + fun TorranceMunicipalCAAirport : Ind Airport ; -fun TororoAirport : Ind Airport ; + fun TorrejonAirForceBaseMadridAirport : Ind Airport ; -fun TorpSandefjordAirport : Ind Airport ; + fun TorremolinosAirport : Ind Airport ; -fun TorranceMunicipalCAAirport : Ind Airport ; + fun TorreonAirport : Ind Airport ; -fun TorrejonAirForceBaseMadridAirport : Ind Airport ; + fun TorresAirport : Ind Airport ; -fun TorremolinosAirport : Ind Airport ; + fun TorringtonMunicipalWYAirport : Ind Airport ; -fun TorreonAirport : Ind Airport ; + fun TortoliSardiniaAirport : Ind Airport ; -fun TorresAirport : Ind Airport ; + fun TortuqueroAirport : Ind Airport ; -fun TorringtonMunicipalWYAirport : Ind Airport ; + fun TorwoodQueenslandAirport : Ind Airport ; -fun TortoliSardiniaAirport : Ind Airport ; + fun TotnessAirport : Ind Airport ; -fun TortuqueroAirport : Ind Airport ; + fun TottoriAirport : Ind Airport ; -fun TorwoodQueenslandAirport : Ind Airport ; + fun ToubaAirport : Ind Airport ; -fun TotnessAirport : Ind Airport ; + fun TouganAirport : Ind Airport ; -fun TottoriAirport : Ind Airport ; + fun TouhoAirport : Ind Airport ; -fun ToubaAirport : Ind Airport ; + fun ToussusLeNobleAirport : Ind Airport ; -fun TouganAirport : Ind Airport ; + fun TownsvilleQueenslandAirport : Ind Airport ; -fun TouhoAirport : Ind Airport ; + fun ToyamaAirport : Ind Airport ; -fun ToussusLeNobleAirport : Ind Airport ; + fun TrabzonAirBaseTrabzonAirport : Ind Airport ; -fun TownsvilleQueenslandAirport : Ind Airport ; + fun TracyMunicipalCAAirport : Ind Airport ; -fun ToyamaAirport : Ind Airport ; + fun TradewindTXAirport : Ind Airport ; -fun TrabzonAirBaseTrabzonAirport : Ind Airport ; + fun TrangAirport : Ind Airport ; -fun TracyMunicipalCAAirport : Ind Airport ; + fun TrapaniAirport : Ind Airport ; -fun TradewindTXAirport : Ind Airport ; + fun TraralgonVictoriaAirport : Ind Airport ; -fun TrangAirport : Ind Airport ; + fun TravisAirForceBaseCAAirport : Ind Airport ; -fun TrapaniAirport : Ind Airport ; + fun TreasureCayAbacoAirport : Ind Airport ; -fun TraralgonVictoriaAirport : Ind Airport ; + fun TreePointAKAirport : Ind Airport ; -fun TravisAirForceBaseCAAirport : Ind Airport ; + fun TreintayTresAirport : Ind Airport ; -fun TreasureCayAbacoAirport : Ind Airport ; + fun TremontonMunicipalUTAirport : Ind Airport ; -fun TreePointAKAirport : Ind Airport ; + fun TrentLottInternationalMSAirport : Ind Airport ; -fun TreintayTresAirport : Ind Airport ; + fun TrentonMunicipalMOAirport : Ind Airport ; -fun TremontonMunicipalUTAirport : Ind Airport ; + fun TrentonONAirport : Ind Airport ; -fun TrentLottInternationalMSAirport : Ind Airport ; + fun TresArroyosAirport : Ind Airport ; -fun TrentonMunicipalMOAirport : Ind Airport ; + fun TresCoracoesMGAirport : Ind Airport ; -fun TrentonONAirport : Ind Airport ; + fun TresEsquinasAirport : Ind Airport ; -fun TresArroyosAirport : Ind Airport ; + fun TresLagoasMTAirport : Ind Airport ; -fun TresCoracoesMGAirport : Ind Airport ; + fun TresRiosRJAirport : Ind Airport ; -fun TresEsquinasAirport : Ind Airport ; + fun TriCitiesWAAirport : Ind Airport ; -fun TresLagoasMTAirport : Ind Airport ; + fun TriCityInternationalMIAirport : Ind Airport ; -fun TresRiosRJAirport : Ind Airport ; + fun TriCityKSAirport : Ind Airport ; -fun TriCitiesWAAirport : Ind Airport ; + fun TriCityRegionalTNAirport : Ind Airport ; -fun TriCityInternationalMIAirport : Ind Airport ; + fun TriCountyRegionalWIAirport : Ind Airport ; -fun TriCityKSAirport : Ind Airport ; + fun TrigodeMoraisAirport : Ind Airport ; -fun TriCityRegionalTNAirport : Ind Airport ; + fun TrincomaleeAirport : Ind Airport ; -fun TriCountyRegionalWIAirport : Ind Airport ; + fun TrinidadAirport : Ind Airport ; -fun TrigodeMoraisAirport : Ind Airport ; + fun TrinidadAirportColombia : Ind Airport ; -fun TrincomaleeAirport : Ind Airport ; + fun TripleIslandBCAirport : Ind Airport ; -fun TrinidadAirport : Ind Airport ; + fun TrissinoVicenzaAirport : Ind Airport ; -fun TrinidadAirportColombia : Ind Airport ; + fun TroisRivieresQCAirport : Ind Airport ; -fun TripleIslandBCAirport : Ind Airport ; + fun TrollhattanAirport : Ind Airport ; -fun TrissinoVicenzaAirport : Ind Airport ; + fun TronaCAAirport : Ind Airport ; -fun TroisRivieresQCAirport : Ind Airport ; + fun TroyMunicipalALAirport : Ind Airport ; -fun TrollhattanAirport : Ind Airport ; + fun TruckeeTahoeCAAirport : Ind Airport ; -fun TronaCAAirport : Ind Airport ; + fun TrujilloAirport : Ind Airport ; -fun TroyMunicipalALAirport : Ind Airport ; + fun TrujilloAirportHonduras : Ind Airport ; -fun TruckeeTahoeCAAirport : Ind Airport ; + fun TruthorConsequencesMunicipalNMAirport : Ind Airport ; -fun TrujilloAirport : Ind Airport ; + fun TsaratananaAirport : Ind Airport ; -fun TrujilloAirportHonduras : Ind Airport ; + fun TsentrainyOdesaAirport : Ind Airport ; -fun TruthorConsequencesMunicipalNMAirport : Ind Airport ; + fun TsewiAirport : Ind Airport ; -fun TsaratananaAirport : Ind Airport ; + fun TshikapaAirport : Ind Airport ; -fun TsentrainyOdesaAirport : Ind Airport ; + fun TshipiseAirport : Ind Airport ; -fun TsewiAirport : Ind Airport ; + fun TsiliTsiliAirport : Ind Airport ; -fun TshikapaAirport : Ind Airport ; + fun TsiroanomandidyAirport : Ind Airport ; -fun TshipiseAirport : Ind Airport ; + fun TsumebAirport : Ind Airport ; -fun TsiliTsiliAirport : Ind Airport ; + fun TsushimaAirport : Ind Airport ; -fun TsiroanomandidyAirport : Ind Airport ; + fun TubaCityAZAirport : Ind Airport ; -fun TsumebAirport : Ind Airport ; + fun TubalaAirport : Ind Airport ; -fun TsushimaAirport : Ind Airport ; + fun TubuaiTubuaiIslandsAirport : Ind Airport ; -fun TubaCityAZAirport : Ind Airport ; + fun TucsonInternationalAZAirport : Ind Airport ; -fun TubalaAirport : Ind Airport ; + fun TucumaAirport : Ind Airport ; -fun TubuaiTubuaiIslandsAirport : Ind Airport ; + fun TucumcariMunicipalNMAirport : Ind Airport ; -fun TucsonInternationalAZAirport : Ind Airport ; + fun TucupitaAirport : Ind Airport ; -fun TucumaAirport : Ind Airport ; + fun TucuruiPAAirport : Ind Airport ; -fun TucumcariMunicipalNMAirport : Ind Airport ; + fun TufiAirport : Ind Airport ; -fun TucupitaAirport : Ind Airport ; + fun TuguegaraoAirport : Ind Airport ; -fun TucuruiPAAirport : Ind Airport ; + fun TuktoyaktukNTAirport : Ind Airport ; -fun TufiAirport : Ind Airport ; + fun TulagiAirport : Ind Airport ; -fun TuguegaraoAirport : Ind Airport ; + fun TulceaAirport : Ind Airport ; -fun TuktoyaktukNTAirport : Ind Airport ; + fun TulearAirport : Ind Airport ; -fun TulagiAirport : Ind Airport ; + fun TuliLodgeAirport : Ind Airport ; -fun TulceaAirport : Ind Airport ; + fun TullahomaRegionalAirportWmNorthernFieldTNAirport : Ind Airport ; -fun TulearAirport : Ind Airport ; + fun TullamarineInternationalVictoriaAirport : Ind Airport ; -fun TuliLodgeAirport : Ind Airport ; + fun TulsaInternationalOKAirport : Ind Airport ; -fun TullahomaRegionalAirportWmNorthernFieldTNAirport : Ind Airport ; + fun TuluaAirport : Ind Airport ; -fun TullamarineInternationalVictoriaAirport : Ind Airport ; + fun TulugakAirport : Ind Airport ; -fun TulsaInternationalOKAirport : Ind Airport ; + fun TuluksakAKAirport : Ind Airport ; -fun TuluaAirport : Ind Airport ; + fun TulumAirport : Ind Airport ; -fun TulugakAirport : Ind Airport ; + fun TumAirport : Ind Airport ; -fun TuluksakAKAirport : Ind Airport ; + fun TumacoAirport : Ind Airport ; -fun TulumAirport : Ind Airport ; + fun TumbangSambaAirport : Ind Airport ; -fun TumAirport : Ind Airport ; + fun TumbesAirport : Ind Airport ; -fun TumacoAirport : Ind Airport ; + fun TumblerRidgeAerodromeBCAirport : Ind Airport ; -fun TumbangSambaAirport : Ind Airport ; + fun TumeremoAirport : Ind Airport ; -fun TumbesAirport : Ind Airport ; + fun TumlingtarAirport : Ind Airport ; -fun TumblerRidgeAerodromeBCAirport : Ind Airport ; + fun TumolbilAirport : Ind Airport ; -fun TumeremoAirport : Ind Airport ; + fun TumutNewSouthWalesAirport : Ind Airport ; -fun TumlingtarAirport : Ind Airport ; + fun TuntatuliakAKAirport : Ind Airport ; -fun TumolbilAirport : Ind Airport ; + fun TununakAKAirport : Ind Airport ; -fun TumutNewSouthWalesAirport : Ind Airport ; + fun TunxiAirport : Ind Airport ; -fun TuntatuliakAKAirport : Ind Airport ; + fun TupeloMunicipalCDLemonsMSAirport : Ind Airport ; -fun TununakAKAirport : Ind Airport ; + fun TupileAirport : Ind Airport ; -fun TunxiAirport : Ind Airport ; + fun TuraifAirport : Ind Airport ; -fun TupeloMunicipalCDLemonsMSAirport : Ind Airport ; + fun TurbatAirport : Ind Airport ; -fun TupileAirport : Ind Airport ; + fun TurboAirport : Ind Airport ; -fun TuraifAirport : Ind Airport ; + fun TureiaAirport : Ind Airport ; -fun TurbatAirport : Ind Airport ; + fun TurkeyCreekWesternAustraliaAirport : Ind Airport ; -fun TurboAirport : Ind Airport ; + fun TurkuAirport : Ind Airport ; -fun TureiaAirport : Ind Airport ; + fun TurtleIslandAirport : Ind Airport ; -fun TurkeyCreekWesternAustraliaAirport : Ind Airport ; + fun TuscaloosaMunicipalALAirport : Ind Airport ; -fun TurkuAirport : Ind Airport ; + fun TustinMarineCorpsAirStationCAAirport : Ind Airport ; -fun TurtleIslandAirport : Ind Airport ; + fun TuxpanAirport : Ind Airport ; -fun TuscaloosaMunicipalALAirport : Ind Airport ; + fun TuxtlaGutierrezAirport : Ind Airport ; -fun TustinMarineCorpsAirStationCAAirport : Ind Airport ; + fun TuyHoaAirport : Ind Airport ; -fun TuxpanAirport : Ind Airport ; + fun TwentyninePalmsCAAirport : Ind Airport ; -fun TuxtlaGutierrezAirport : Ind Airport ; + fun TwentyninePalmsEAFMarineCorpsAirGroundCombatCenterCAAirport : Ind Airport ; -fun TuyHoaAirport : Ind Airport ; + fun TwinFallsSunValleyRegionalAirportJoslinFieldIDAirport : Ind Airport ; -fun TwentyninePalmsCAAirport : Ind Airport ; + fun TwinHillsAKAirport : Ind Airport ; -fun TwentyninePalmsEAFMarineCorpsAirGroundCombatCenterCAAirport : Ind Airport ; + fun TwoHarborsAmphibiousTerminalCAAirport : Ind Airport ; -fun TwinFallsSunValleyRegionalAirportJoslinFieldIDAirport : Ind Airport ; + fun TylerPoundsFieldTXAirport : Ind Airport ; -fun TwinHillsAKAirport : Ind Airport ; + fun TyndallAirForceBaseFLAirport : Ind Airport ; -fun TwoHarborsAmphibiousTerminalCAAirport : Ind Airport ; + fun TyonekAKAirport : Ind Airport ; -fun TylerPoundsFieldTXAirport : Ind Airport ; + fun TzaneenAirport : Ind Airport ; -fun TyndallAirForceBaseFLAirport : Ind Airport ; + fun USCoastGuardGuamAirport : Ind Airport ; -fun TyonekAKAirport : Ind Airport ; + fun UaHukaMarquesasIslandsAirport : Ind Airport ; -fun TzaneenAirport : Ind Airport ; + fun UaPuMarquesasIslandsAirport : Ind Airport ; -fun USCoastGuardGuamAirport : Ind Airport ; + fun UaxactunAirport : Ind Airport ; -fun UaHukaMarquesasIslandsAirport : Ind Airport ; + fun UbatubaAirport : Ind Airport ; -fun UaPuMarquesasIslandsAirport : Ind Airport ; + fun UbeAirport : Ind Airport ; -fun UaxactunAirport : Ind Airport ; + fun UberabaMGAirport : Ind Airport ; -fun UbatubaAirport : Ind Airport ; + fun UberlandiaMGAirport : Ind Airport ; -fun UbeAirport : Ind Airport ; + fun UbonRatchathniAirport : Ind Airport ; -fun UberabaMGAirport : Ind Airport ; + fun UchizaAirport : Ind Airport ; -fun UberlandiaMGAirport : Ind Airport ; + fun UdaipurAirport : Ind Airport ; -fun UbonRatchathniAirport : Ind Airport ; + fun UdomxayAirport : Ind Airport ; -fun UchizaAirport : Ind Airport ; + fun UdonThaniAirport : Ind Airport ; -fun UdaipurAirport : Ind Airport ; + fun UfaBashkortostanAirport : Ind Airport ; -fun UdomxayAirport : Ind Airport ; + fun UganikAKAirport : Ind Airport ; -fun UdonThaniAirport : Ind Airport ; + fun UgashikBayAKAirport : Ind Airport ; -fun UfaBashkortostanAirport : Ind Airport ; + fun UgashikNewAKAirport : Ind Airport ; -fun UganikAKAirport : Ind Airport ; + fun UgnuKuparukAKAirport : Ind Airport ; -fun UgashikBayAKAirport : Ind Airport ; + fun UherskeHradisteAirport : Ind Airport ; -fun UgashikNewAKAirport : Ind Airport ; + fun UigeAirport : Ind Airport ; -fun UgnuKuparukAKAirport : Ind Airport ; + fun UjaeIslandAirport : Ind Airport ; -fun UherskeHradisteAirport : Ind Airport ; + fun UkiahMunicipalCAAirport : Ind Airport ; -fun UigeAirport : Ind Airport ; + fun UlKmarsAirport : Ind Airport ; -fun UjaeIslandAirport : Ind Airport ; + fun UlanBatorAirport : Ind Airport ; -fun UkiahMunicipalCAAirport : Ind Airport ; + fun UleiAirport : Ind Airport ; -fun UlKmarsAirport : Ind Airport ; + fun UlithiUlithiIslandAirport : Ind Airport ; -fun UlanBatorAirport : Ind Airport ; + fun UlmAirport : Ind Airport ; -fun UleiAirport : Ind Airport ; + fun UlsanAirport : Ind Airport ; -fun UlithiUlithiIslandAirport : Ind Airport ; + fun UlundiAirport : Ind Airport ; -fun UlmAirport : Ind Airport ; + fun UmbaAirport : Ind Airport ; -fun UlsanAirport : Ind Airport ; + fun UmeaAirport : Ind Airport ; -fun UlundiAirport : Ind Airport ; + fun UmiatAKAirport : Ind Airport ; -fun UmbaAirport : Ind Airport ; + fun UmiujaqQCAirport : Ind Airport ; -fun UmeaAirport : Ind Airport ; + fun UmmAlquwainAirport : Ind Airport ; -fun UmiatAKAirport : Ind Airport ; + fun UmnakAKAirport : Ind Airport ; -fun UmiujaqQCAirport : Ind Airport ; + fun UmnakIslandAKAirport : Ind Airport ; -fun UmmAlquwainAirport : Ind Airport ; + fun UmtataTranskeiAirport : Ind Airport ; -fun UmnakAKAirport : Ind Airport ; + fun UmuaramaPRAirport : Ind Airport ; -fun UmnakIslandAKAirport : Ind Airport ; + fun UnalakleetAKAirport : Ind Airport ; -fun UmtataTranskeiAirport : Ind Airport ; + fun UnayzahAirport : Ind Airport ; -fun UmuaramaPRAirport : Ind Airport ; + fun UndarraAirport : Ind Airport ; -fun UnalakleetAKAirport : Ind Airport ; + fun UnguiaAirport : Ind Airport ; -fun UnayzahAirport : Ind Airport ; + fun UniaodoVitoriaPRAirport : Ind Airport ; -fun UndarraAirport : Ind Airport ; + fun UnionIslandAirport : Ind Airport ; -fun UnguiaAirport : Ind Airport ; + fun UniversityOxfordMSAirport : Ind Airport ; -fun UniaodoVitoriaPRAirport : Ind Airport ; + fun UniversityParkPAAirport : Ind Airport ; -fun UnionIslandAirport : Ind Airport ; + fun UniversityofOklahomaWestheimerOKAirport : Ind Airport ; -fun UniversityOxfordMSAirport : Ind Airport ; + fun UnstShetlandIslandsAirport : Ind Airport ; -fun UniversityParkPAAirport : Ind Airport ; + fun UpalaAirport : Ind Airport ; -fun UniversityofOklahomaWestheimerOKAirport : Ind Airport ; + fun UpavonEnglandAirport : Ind Airport ; -fun UnstShetlandIslandsAirport : Ind Airport ; + fun UpiaraAirport : Ind Airport ; -fun UpalaAirport : Ind Airport ; + fun UpingtonAirport : Ind Airport ; -fun UpavonEnglandAirport : Ind Airport ; + fun UpoluHIAirport : Ind Airport ; -fun UpiaraAirport : Ind Airport ; + fun UpperHeyfordRAFStationEnglandAirport : Ind Airport ; -fun UpingtonAirport : Ind Airport ; + fun UraniumCitySKAirport : Ind Airport ; -fun UpoluHIAirport : Ind Airport ; + fun UrgenchKarakalpakstanAirport : Ind Airport ; -fun UpperHeyfordRAFStationEnglandAirport : Ind Airport ; + fun UrgoonAirport : Ind Airport ; -fun UraniumCitySKAirport : Ind Airport ; + fun UribeAirport : Ind Airport ; -fun UrgenchKarakalpakstanAirport : Ind Airport ; + fun UrimanAirport : Ind Airport ; -fun UrgoonAirport : Ind Airport ; + fun UrmiehAirport : Ind Airport ; -fun UribeAirport : Ind Airport ; + fun UrraoAirport : Ind Airport ; -fun UrimanAirport : Ind Airport ; + fun UruapanAirport : Ind Airport ; -fun UrmiehAirport : Ind Airport ; + fun UrubupungaMTAirport : Ind Airport ; -fun UrraoAirport : Ind Airport ; + fun UruzganAirport : Ind Airport ; -fun UruapanAirport : Ind Airport ; + fun UselessLoopWesternAustraliaAirport : Ind Airport ; -fun UrubupungaMTAirport : Ind Airport ; + fun UshuaiaAirport : Ind Airport ; -fun UruzganAirport : Ind Airport ; + fun UsinoAirport : Ind Airport ; -fun UselessLoopWesternAustraliaAirport : Ind Airport ; + fun UsinskAirport : Ind Airport ; -fun UshuaiaAirport : Ind Airport ; + fun UstIlimskIrkutskAirport : Ind Airport ; -fun UsinoAirport : Ind Airport ; + fun UstUkhtaKomiAirport : Ind Airport ; -fun UsinskAirport : Ind Airport ; + fun UstuopAirport : Ind Airport ; -fun UstIlimskIrkutskAirport : Ind Airport ; + fun UtilaIslandAirport : Ind Airport ; -fun UstUkhtaKomiAirport : Ind Airport ; + fun UtirikIslandUtirikAirport : Ind Airport ; -fun UstuopAirport : Ind Airport ; + fun UtsunomiyaAirport : Ind Airport ; -fun UtilaIslandAirport : Ind Airport ; + fun UttaraditAirport : Ind Airport ; -fun UtirikIslandUtirikAirport : Ind Airport ; + fun UummannaqAirport : Ind Airport ; -fun UtsunomiyaAirport : Ind Airport ; + fun UvolAirport : Ind Airport ; -fun UttaraditAirport : Ind Airport ; + fun UzhgorodZakarpatskaTranscarpathiaAirport : Ind Airport ; -fun UummannaqAirport : Ind Airport ; + fun VaasaAirport : Ind Airport ; -fun UvolAirport : Ind Airport ; + fun VadsoeVadsoAirport : Ind Airport ; -fun UzhgorodZakarpatskaTranscarpathiaAirport : Ind Airport ; + fun VaernesTrondheimAirport : Ind Airport ; -fun VaasaAirport : Ind Airport ; + fun VaeroyAirport : Ind Airport ; -fun VadsoeVadsoAirport : Ind Airport ; + fun VahitahiAirport : Ind Airport ; -fun VaernesTrondheimAirport : Ind Airport ; + fun VailJunctionHeliportCOAirport : Ind Airport ; -fun VaeroyAirport : Ind Airport ; + fun ValbonneAirport : Ind Airport ; -fun VahitahiAirport : Ind Airport ; + fun ValchetaAirport : Ind Airport ; -fun VailJunctionHeliportCOAirport : Ind Airport ; + fun ValdIsereAirport : Ind Airport ; -fun ValbonneAirport : Ind Airport ; + fun ValdOrQCAirport : Ind Airport ; -fun ValchetaAirport : Ind Airport ; + fun ValdepenasAirport : Ind Airport ; -fun ValdIsereAirport : Ind Airport ; + fun ValdezAKAirport : Ind Airport ; -fun ValdOrQCAirport : Ind Airport ; + fun ValdiviaAirport : Ind Airport ; -fun ValdepenasAirport : Ind Airport ; + fun ValdostaRegionalGAAirport : Ind Airport ; -fun ValdezAKAirport : Ind Airport ; + fun ValencaBAAirport : Ind Airport ; -fun ValdiviaAirport : Ind Airport ; + fun ValenceAirport : Ind Airport ; -fun ValdostaRegionalGAAirport : Ind Airport ; + fun ValenciaAirport : Ind Airport ; -fun ValencaBAAirport : Ind Airport ; + fun ValeraAirport : Ind Airport ; -fun ValenceAirport : Ind Airport ; + fun ValesdirAirport : Ind Airport ; -fun ValenciaAirport : Ind Airport ; + fun ValladolidAirport : Ind Airport ; -fun ValeraAirport : Ind Airport ; + fun ValledePascuaAirport : Ind Airport ; -fun ValesdirAirport : Ind Airport ; + fun ValleduparAirport : Ind Airport ; -fun ValladolidAirport : Ind Airport ; + fun VallejoAirport : Ind Airport ; -fun ValledePascuaAirport : Ind Airport ; + fun VallenarAirport : Ind Airport ; -fun ValleduparAirport : Ind Airport ; + fun VallesAirport : Ind Airport ; -fun VallejoAirport : Ind Airport ; + fun ValparaisoAirport : Ind Airport ; -fun VallenarAirport : Ind Airport ; + fun ValverdeAirport : Ind Airport ; -fun VallesAirport : Ind Airport ; + fun VanAirport : Ind Airport ; -fun ValparaisoAirport : Ind Airport ; + fun VanNuysCAAirport : Ind Airport ; -fun ValverdeAirport : Ind Airport ; + fun VanWertCountyOHAirport : Ind Airport ; -fun VanAirport : Ind Airport ; + fun VancouverInternationalBCAirport : Ind Airport ; -fun VanNuysCAAirport : Ind Airport ; + fun VandaliaMunicipalILAirport : Ind Airport ; -fun VanWertCountyOHAirport : Ind Airport ; + fun VandenbergAirForceBaseCAAirport : Ind Airport ; -fun VancouverInternationalBCAirport : Ind Airport ; + fun VangriengAirport : Ind Airport ; -fun VandaliaMunicipalILAirport : Ind Airport ; + fun VanimoAirport : Ind Airport ; -fun VandenbergAirForceBaseCAAirport : Ind Airport ; + fun VanjiAirport : Ind Airport ; -fun VangriengAirport : Ind Airport ; + fun VannesAirport : Ind Airport ; -fun VanimoAirport : Ind Airport ; + fun VanrookQueenslandAirport : Ind Airport ; -fun VanjiAirport : Ind Airport ; + fun VanuabalavuAirport : Ind Airport ; -fun VannesAirport : Ind Airport ; + fun VaraderoAirport : Ind Airport ; -fun VanrookQueenslandAirport : Ind Airport ; + fun VaranasiAirport : Ind Airport ; -fun VanuabalavuAirport : Ind Airport ; + fun VarginhaMGAirport : Ind Airport ; -fun VaraderoAirport : Ind Airport ; + fun VarkausAirport : Ind Airport ; -fun VaranasiAirport : Ind Airport ; + fun VarnaAirport : Ind Airport ; -fun VarginhaMGAirport : Ind Airport ; + fun VarrelbuschAirport : Ind Airport ; -fun VarkausAirport : Ind Airport ; + fun VasquezCoboLeticiaAirport : Ind Airport ; -fun VarnaAirport : Ind Airport ; + fun VastervikAirport : Ind Airport ; -fun VarrelbuschAirport : Ind Airport ; + fun VatomandryAirport : Ind Airport ; -fun VasquezCoboLeticiaAirport : Ind Airport ; + fun VatukoulaAirport : Ind Airport ; -fun VastervikAirport : Ind Airport ; + fun VatuleleAirport : Ind Airport ; -fun VatomandryAirport : Ind Airport ; + fun VaxjoAirport : Ind Airport ; -fun VatukoulaAirport : Ind Airport ; + fun VejleAirport : Ind Airport ; -fun VatuleleAirport : Ind Airport ; + fun VelikiyeLukiPskovAirport : Ind Airport ; -fun VaxjoAirport : Ind Airport ; + fun VelikiyeLukiWelikijeLukiPskovAirport : Ind Airport ; -fun VejleAirport : Ind Airport ; + fun VenetieAKAirport : Ind Airport ; -fun VelikiyeLukiPskovAirport : Ind Airport ; + fun VeniceMunicipalFLAirport : Ind Airport ; -fun VelikiyeLukiWelikijeLukiPskovAirport : Ind Airport ; + fun VermilionABAirport : Ind Airport ; -fun VenetieAKAirport : Ind Airport ; + fun VernalUTAirport : Ind Airport ; -fun VeniceMunicipalFLAirport : Ind Airport ; + fun VernonAerodromeBCAirport : Ind Airport ; -fun VermilionABAirport : Ind Airport ; + fun VeroBeachMunicipalFLAirport : Ind Airport ; -fun VernalUTAirport : Ind Airport ; + fun VersaillesAirport : Ind Airport ; -fun VernonAerodromeBCAirport : Ind Airport ; + fun VestmannaeyjarAirport : Ind Airport ; -fun VeroBeachMunicipalFLAirport : Ind Airport ; + fun VichaderoAirport : Ind Airport ; -fun VersaillesAirport : Ind Airport ; + fun VicksburgMunicipalMSAirport : Ind Airport ; -fun VestmannaeyjarAirport : Ind Airport ; + fun VictoriaAirportCameroon : Ind Airport ; -fun VichaderoAirport : Ind Airport ; + fun VictoriaAirportChile : Ind Airport ; -fun VicksburgMunicipalMSAirport : Ind Airport ; + fun VictoriaAirportHonduras : Ind Airport ; -fun VictoriaAirportCameroon : Ind Airport ; + fun VictoriaFallsAirport : Ind Airport ; -fun VictoriaAirportChile : Ind Airport ; + fun VictoriaInnerHarbourWaterAerodromeBCAirport : Ind Airport ; -fun VictoriaAirportHonduras : Ind Airport ; + fun VictoriaInternationalBCAirport : Ind Airport ; -fun VictoriaFallsAirport : Ind Airport ; + fun VictoriaRegionalTXAirport : Ind Airport ; -fun VictoriaInnerHarbourWaterAerodromeBCAirport : Ind Airport ; + fun VictoriaRiverDownsNorthernTerritoryAirport : Ind Airport ; -fun VictoriaInternationalBCAirport : Ind Airport ; + fun VictoriaSTOLportQCAirport : Ind Airport ; -fun VictoriaRegionalTXAirport : Ind Airport ; + fun VictoriadelasTunasAirport : Ind Airport ; -fun VictoriaRiverDownsNorthernTerritoryAirport : Ind Airport ; + fun VidaliaMunicipalGAAirport : Ind Airport ; -fun VictoriaSTOLportQCAirport : Ind Airport ; + fun VidinAirport : Ind Airport ; -fun VictoriadelasTunasAirport : Ind Airport ; + fun VidrasauTirguMuresAirport : Ind Airport ; -fun VidaliaMunicipalGAAirport : Ind Airport ; + fun ViequesViequesAirport : Ind Airport ; -fun VidinAirport : Ind Airport ; + fun ViewCoveAKAirport : Ind Airport ; -fun VidrasauTirguMuresAirport : Ind Airport ; + fun ViganAirport : Ind Airport ; -fun ViequesViequesAirport : Ind Airport ; + fun VigieStLuciaCastriesAirport : Ind Airport ; -fun ViewCoveAKAirport : Ind Airport ; + fun VigoAirport : Ind Airport ; -fun ViganAirport : Ind Airport ; + fun VijayawadaAirport : Ind Airport ; -fun VigieStLuciaCastriesAirport : Ind Airport ; + fun VilaJunqueiroAirport : Ind Airport ; -fun VigoAirport : Ind Airport ; + fun VilaRealAirport : Ind Airport ; -fun VijayawadaAirport : Ind Airport ; + fun VilaRicaAirport : Ind Airport ; -fun VilaJunqueiroAirport : Ind Airport ; + fun VilaVelhoESAirport : Ind Airport ; -fun VilaRealAirport : Ind Airport ; + fun VilanculosAirport : Ind Airport ; -fun VilaRicaAirport : Ind Airport ; + fun VilhelminaAirport : Ind Airport ; -fun VilaVelhoESAirport : Ind Airport ; + fun VillaConstitucionAirport : Ind Airport ; -fun VilanculosAirport : Ind Airport ; + fun VillaDoloresAirport : Ind Airport ; -fun VilhelminaAirport : Ind Airport ; + fun VillaGesellAirport : Ind Airport ; -fun VillaConstitucionAirport : Ind Airport ; + fun VillaMercedesAirport : Ind Airport ; -fun VillaDoloresAirport : Ind Airport ; + fun VillaMontesAirport : Ind Airport ; -fun VillaGesellAirport : Ind Airport ; + fun VillafrancaVeronaAirport : Ind Airport ; -fun VillaMercedesAirport : Ind Airport ; + fun VillagarzonAirport : Ind Airport ; -fun VillaMontesAirport : Ind Airport ; + fun VilniusAirport : Ind Airport ; -fun VillafrancaVeronaAirport : Ind Airport ; + fun VinhLongAirport : Ind Airport ; -fun VillagarzonAirport : Ind Airport ; + fun VinnytsyaVinnytsyaAirport : Ind Airport ; -fun VilniusAirport : Ind Airport ; + fun VintonVeteransMemorialAirparkIAAirport : Ind Airport ; -fun VinhLongAirport : Ind Airport ; + fun ViquequeAirport : Ind Airport ; -fun VinnytsyaVinnytsyaAirport : Ind Airport ; + fun ViracAirport : Ind Airport ; -fun VintonVeteransMemorialAirparkIAAirport : Ind Airport ; + fun ViracoposSPAirport : Ind Airport ; -fun ViquequeAirport : Ind Airport ; + fun VirginGordaNavalStationVirginGordaAirport : Ind Airport ; -fun ViracAirport : Ind Airport ; + fun VirginGordaValleyVirginGordaAirport : Ind Airport ; -fun ViracoposSPAirport : Ind Airport ; + fun VirginIslandsSeaplaneBaseVirginIslandsAirport : Ind Airport ; -fun VirginGordaNavalStationVirginGordaAirport : Ind Airport ; + fun VirginiaHighlandsVAAirport : Ind Airport ; -fun VirginGordaValleyVirginGordaAirport : Ind Airport ; + fun ViruAirport : Ind Airport ; -fun VirginIslandsSeaplaneBaseVirginIslandsAirport : Ind Airport ; + fun ViruViruInternationalSantaCruzAirport : Ind Airport ; -fun VirginiaHighlandsVAAirport : Ind Airport ; + fun VisaliaMunicipalCAAirport : Ind Airport ; -fun ViruAirport : Ind Airport ; + fun VisbyAirport : Ind Airport ; -fun ViruViruInternationalSantaCruzAirport : Ind Airport ; + fun ViseuAirport : Ind Airport ; -fun VisaliaMunicipalCAAirport : Ind Airport ; + fun VishakhapatnamAirport : Ind Airport ; -fun VisbyAirport : Ind Airport ; + fun VitoriaAirport : Ind Airport ; -fun ViseuAirport : Ind Airport ; + fun VitoriaESAirport : Ind Airport ; -fun VishakhapatnamAirport : Ind Airport ; + fun VitoriadaConquistaBAAirport : Ind Airport ; -fun VitoriaAirport : Ind Airport ; + fun VitsyebskVitebskVitsyebskAirport : Ind Airport ; -fun VitoriaESAirport : Ind Airport ; + fun VittelAirport : Ind Airport ; -fun VitoriadaConquistaBAAirport : Ind Airport ; + fun ViviganiAirport : Ind Airport ; -fun VitsyebskVitebskVitsyebskAirport : Ind Airport ; + fun VizagAirport : Ind Airport ; -fun VittelAirport : Ind Airport ; + fun VladikavkazNorthOssetiaAirport : Ind Airport ; -fun ViviganiAirport : Ind Airport ; + fun VladivostokPrimoryeAirport : Ind Airport ; -fun VizagAirport : Ind Airport ; + fun VnukovoMoscowAirport : Ind Airport ; -fun VladikavkazNorthOssetiaAirport : Ind Airport ; + fun VogensSkrydstrupAirport : Ind Airport ; -fun VladivostokPrimoryeAirport : Ind Airport ; + fun VohemarAirport : Ind Airport ; -fun VnukovoMoscowAirport : Ind Airport ; + fun VoinjamaAirport : Ind Airport ; -fun VogensSkrydstrupAirport : Ind Airport ; + fun VolgodonskRostovAirport : Ind Airport ; -fun VohemarAirport : Ind Airport ; + fun VolgogradStalingradVolgogradAirport : Ind Airport ; -fun VoinjamaAirport : Ind Airport ; + fun VolkFieldWIAirport : Ind Airport ; -fun VolgodonskRostovAirport : Ind Airport ; + fun VolosAirport : Ind Airport ; -fun VolgogradStalingradVolgogradAirport : Ind Airport ; + fun VolovanAirport : Ind Airport ; -fun VolkFieldWIAirport : Ind Airport ; + fun VoltaRedondaRJAirport : Ind Airport ; -fun VolosAirport : Ind Airport ; + fun VopnafjordurAirport : Ind Airport ; -fun VolovanAirport : Ind Airport ; + fun VorkutaKomiAirport : Ind Airport ; -fun VoltaRedondaRJAirport : Ind Airport ; + fun VoronezhVoronezhAirport : Ind Airport ; -fun VopnafjordurAirport : Ind Airport ; + fun VotuporangaSPAirport : Ind Airport ; -fun VorkutaKomiAirport : Ind Airport ; + fun VrajdebnaSofiaAirport : Ind Airport ; -fun VoronezhVoronezhAirport : Ind Airport ; + fun VredendalAirport : Ind Airport ; -fun VotuporangaSPAirport : Ind Airport ; + fun VryburgAirport : Ind Airport ; -fun VrajdebnaSofiaAirport : Ind Airport ; + fun VryheidAirport : Ind Airport ; -fun VredendalAirport : Ind Airport ; + fun WabagAirport : Ind Airport ; -fun VryburgAirport : Ind Airport ; + fun WaboAirport : Ind Airport ; -fun VryheidAirport : Ind Airport ; + fun WabushNFAirport : Ind Airport ; -fun WabagAirport : Ind Airport ; + fun WacaAirport : Ind Airport ; -fun WaboAirport : Ind Airport ; + fun WaddingtonRAFStationEnglandAirport : Ind Airport ; -fun WabushNFAirport : Ind Airport ; + fun WadiAdDawasirAirport : Ind Airport ; -fun WacaAirport : Ind Airport ; + fun WadiAinAirport : Ind Airport ; -fun WaddingtonRAFStationEnglandAirport : Ind Airport ; + fun WadiHalfaAirport : Ind Airport ; -fun WadiAdDawasirAirport : Ind Airport ; + fun WagetheAirport : Ind Airport ; -fun WadiAinAirport : Ind Airport ; + fun WaggaWaggaNewSouthWalesAirport : Ind Airport ; -fun WadiHalfaAirport : Ind Airport ; + fun WagnyAirport : Ind Airport ; -fun WagetheAirport : Ind Airport ; + fun WaikoloaHIAirport : Ind Airport ; -fun WaggaWaggaNewSouthWalesAirport : Ind Airport ; + fun WaimeaKohalaHIAirport : Ind Airport ; -fun WagnyAirport : Ind Airport ; + fun WaingapuAirport : Ind Airport ; -fun WaikoloaHIAirport : Ind Airport ; + fun WainwrightABAirport : Ind Airport ; -fun WaimeaKohalaHIAirport : Ind Airport ; + fun WaitangiAirport : Ind Airport ; -fun WaingapuAirport : Ind Airport ; + fun WajirAirport : Ind Airport ; -fun WainwrightABAirport : Ind Airport ; + fun WakunaiAirport : Ind Airport ; -fun WaitangiAirport : Ind Airport ; + fun WalahaAirport : Ind Airport ; -fun WajirAirport : Ind Airport ; + fun WalchaNewSouthWalesAirport : Ind Airport ; -fun WakunaiAirport : Ind Airport ; + fun WalesAKAirport : Ind Airport ; -fun WalahaAirport : Ind Airport ; + fun WalgettNewSouthWalesAirport : Ind Airport ; -fun WalchaNewSouthWalesAirport : Ind Airport ; + fun WalkersCayAbacoAirport : Ind Airport ; -fun WalesAKAirport : Ind Airport ; + fun WallStSeaplaneDockNYAirport : Ind Airport ; -fun WalgettNewSouthWalesAirport : Ind Airport ; + fun WallalAirport : Ind Airport ; -fun WalkersCayAbacoAirport : Ind Airport ; + fun WalterboroMunicipalSCAirport : Ind Airport ; -fun WallStSeaplaneDockNYAirport : Ind Airport ; + fun WalvisBayAirport : Ind Airport ; -fun WallalAirport : Ind Airport ; + fun WamenaAirport : Ind Airport ; -fun WalterboroMunicipalSCAirport : Ind Airport ; + fun WanaAirport : Ind Airport ; -fun WalvisBayAirport : Ind Airport ; + fun WanakaAirport : Ind Airport ; -fun WamenaAirport : Ind Airport ; + fun WandoAirport : Ind Airport ; -fun WanaAirport : Ind Airport ; + fun WanganuiAirport : Ind Airport ; -fun WanakaAirport : Ind Airport ; + fun WangarattaVictoriaAirport : Ind Airport ; -fun WandoAirport : Ind Airport ; + fun WantoatAirport : Ind Airport ; -fun WanganuiAirport : Ind Airport ; + fun WanumaAirport : Ind Airport ; -fun WangarattaVictoriaAirport : Ind Airport ; + fun WanxianSichuanAirport : Ind Airport ; -fun WantoatAirport : Ind Airport ; + fun WapenamandaAirport : Ind Airport ; -fun WanumaAirport : Ind Airport ; + fun WarderAirport : Ind Airport ; -fun WanxianSichuanAirport : Ind Airport ; + fun WareMAAirport : Ind Airport ; -fun WapenamandaAirport : Ind Airport ; + fun WarisAirport : Ind Airport ; -fun WarderAirport : Ind Airport ; + fun WarminsterNADCPAAirport : Ind Airport ; -fun WareMAAirport : Ind Airport ; + fun WarraberIslandQueenslandAirport : Ind Airport ; -fun WarisAirport : Ind Airport ; + fun WarracknabealVictoriaAirport : Ind Airport ; -fun WarminsterNADCPAAirport : Ind Airport ; + fun WarramboorMtKeithWesternAustraliaAirport : Ind Airport ; -fun WarraberIslandQueenslandAirport : Ind Airport ; + fun WarranagineWesternAustraliaAirport : Ind Airport ; -fun WarracknabealVictoriaAirport : Ind Airport ; + fun WarrangalAirport : Ind Airport ; -fun WarramboorMtKeithWesternAustraliaAirport : Ind Airport ; + fun WarrenCountyMemorialTNAirport : Ind Airport ; -fun WarranagineWesternAustraliaAirport : Ind Airport ; + fun WarrenFieldNCAirport : Ind Airport ; -fun WarrangalAirport : Ind Airport ; + fun WarrenNewSouthWalesAirport : Ind Airport ; -fun WarrenCountyMemorialTNAirport : Ind Airport ; + fun WarrnamboolVictoriaAirport : Ind Airport ; -fun WarrenFieldNCAirport : Ind Airport ; + fun WarroadInternationalAirportSwedeCarlsonFieldMNAirport : Ind Airport ; -fun WarrenNewSouthWalesAirport : Ind Airport ; + fun WarwickQueenslandAirport : Ind Airport ; -fun WarrnamboolVictoriaAirport : Ind Airport ; + fun WashaboAirport : Ind Airport ; -fun WarroadInternationalAirportSwedeCarlsonFieldMNAirport : Ind Airport ; + fun WashingtonCountyPAAirport : Ind Airport ; -fun WarwickQueenslandAirport : Ind Airport ; + fun WasillaAKAirport : Ind Airport ; -fun WashaboAirport : Ind Airport ; + fun WasiorAirport : Ind Airport ; -fun WashingtonCountyPAAirport : Ind Airport ; + fun WaskaganishQCAirport : Ind Airport ; -fun WasillaAKAirport : Ind Airport ; + fun WasuAirport : Ind Airport ; -fun WasiorAirport : Ind Airport ; + fun WasuaAirport : Ind Airport ; -fun WaskaganishQCAirport : Ind Airport ; + fun WaterburyOxfordCTAirport : Ind Airport ; -fun WasuAirport : Ind Airport ; + fun WaterfordAirport : Ind Airport ; -fun WasuaAirport : Ind Airport ; + fun WaterlooNorthernTerritoryAirport : Ind Airport ; -fun WaterburyOxfordCTAirport : Ind Airport ; + fun WatertownMunicipalWIAirport : Ind Airport ; -fun WaterfordAirport : Ind Airport ; + fun WatervilleRobertLafleurMEAirport : Ind Airport ; -fun WaterlooNorthernTerritoryAirport : Ind Airport ; + fun WatsonLakeYTAirport : Ind Airport ; -fun WatertownMunicipalWIAirport : Ind Airport ; + fun WatsonvilleMunicipalCAAirport : Ind Airport ; -fun WatervilleRobertLafleurMEAirport : Ind Airport ; + fun WattayVientianeAirport : Ind Airport ; -fun WatsonLakeYTAirport : Ind Airport ; + fun WauAirport : Ind Airport ; -fun WatsonvilleMunicipalCAAirport : Ind Airport ; + fun WauAirportSudan : Ind Airport ; -fun WattayVientianeAirport : Ind Airport ; + fun WauchopeNewSouthWalesAirport : Ind Airport ; -fun WauAirport : Ind Airport ; + fun WaukeganRegionalILAirport : Ind Airport ; -fun WauAirportSudan : Ind Airport ; + fun WaukeshaCountyWIAirport : Ind Airport ; -fun WauchopeNewSouthWalesAirport : Ind Airport ; + fun WaukonMunicipalIAAirport : Ind Airport ; -fun WaukeganRegionalILAirport : Ind Airport ; + fun WaveHillNorthernTerritoryAirport : Ind Airport ; -fun WaukeshaCountyWIAirport : Ind Airport ; + fun WaverneyAirport : Ind Airport ; -fun WaukonMunicipalIAAirport : Ind Airport ; + fun WawaONAirport : Ind Airport ; -fun WaveHillNorthernTerritoryAirport : Ind Airport ; + fun WawoiFallsAirport : Ind Airport ; -fun WaverneyAirport : Ind Airport ; + fun WeagamowLakeONAirport : Ind Airport ; -fun WawaONAirport : Ind Airport ; + fun WeamAirport : Ind Airport ; -fun WawoiFallsAirport : Ind Airport ; + fun WeasuaAirport : Ind Airport ; -fun WeagamowLakeONAirport : Ind Airport ; + fun WebequieONAirport : Ind Airport ; -fun WeamAirport : Ind Airport ; + fun WedauAirport : Ind Airport ; -fun WeasuaAirport : Ind Airport ; + fun WeeWaaNewSouthWalesAirport : Ind Airport ; -fun WebequieONAirport : Ind Airport ; + fun WeifangAirport : Ind Airport ; -fun WedauAirport : Ind Airport ; + fun WeihaiAirport : Ind Airport ; -fun WeeWaaNewSouthWalesAirport : Ind Airport ; + fun WeipaQueenslandAirport : Ind Airport ; -fun WeifangAirport : Ind Airport ; + fun WelkomAirport : Ind Airport ; -fun WeihaiAirport : Ind Airport ; + fun WelshpoolVictoriaAirport : Ind Airport ; -fun WeipaQueenslandAirport : Ind Airport ; + fun WemindjiQCAirport : Ind Airport ; -fun WelkomAirport : Ind Airport ; + fun WenzhouAirport : Ind Airport ; -fun WelshpoolVictoriaAirport : Ind Airport ; + fun WerurAirport : Ind Airport ; -fun WemindjiQCAirport : Ind Airport ; + fun WespamAirport : Ind Airport ; -fun WenzhouAirport : Ind Airport ; + fun WestEndAirport : Ind Airport ; -fun WerurAirport : Ind Airport ; + fun WestEndTortolaAirport : Ind Airport ; -fun WespamAirport : Ind Airport ; + fun WestHoustonTXAirport : Ind Airport ; -fun WestEndAirport : Ind Airport ; + fun WestKaviAKAirport : Ind Airport ; -fun WestEndTortolaAirport : Ind Airport ; + fun WestKuparukAKAirport : Ind Airport ; -fun WestHoustonTXAirport : Ind Airport ; + fun WestMallingEnglandAirport : Ind Airport ; -fun WestKaviAKAirport : Ind Airport ; + fun WestPlainsMunicipalMOAirport : Ind Airport ; -fun WestKuparukAKAirport : Ind Airport ; + fun WestSaleVictoriaAirport : Ind Airport ; -fun WestMallingEnglandAirport : Ind Airport ; + fun WestTinianTinianPeipeinimaruAirport : Ind Airport ; -fun WestPlainsMunicipalMOAirport : Ind Airport ; + fun WestWoodwardOKAirport : Ind Airport ; -fun WestSaleVictoriaAirport : Ind Airport ; + fun WestWyalongNewSouthWalesAirport : Ind Airport ; -fun WestTinianTinianPeipeinimaruAirport : Ind Airport ; + fun WesterlyStateRIAirport : Ind Airport ; -fun WestWoodwardOKAirport : Ind Airport ; + fun WestmorelandCountyPAAirport : Ind Airport ; -fun WestWyalongNewSouthWalesAirport : Ind Airport ; + fun WestportAirport : Ind Airport ; -fun WesterlyStateRIAirport : Ind Airport ; + fun WestrayAirport : Ind Airport ; -fun WestmorelandCountyPAAirport : Ind Airport ; + fun WestsoundSeaplaneBaseWAAirport : Ind Airport ; -fun WestportAirport : Ind Airport ; + fun WetzlarAirport : Ind Airport ; -fun WestrayAirport : Ind Airport ; + fun WewakAirport : Ind Airport ; -fun WestsoundSeaplaneBaseWAAirport : Ind Airport ; + fun WexfordAirport : Ind Airport ; -fun WetzlarAirport : Ind Airport ; + fun WhakataneAirport : Ind Airport ; -fun WewakAirport : Ind Airport ; + fun WhaleCoveNTAirport : Ind Airport ; -fun WexfordAirport : Ind Airport ; + fun WhalsayAirport : Ind Airport ; -fun WhakataneAirport : Ind Airport ; + fun WhangareiAirport : Ind Airport ; -fun WhaleCoveNTAirport : Ind Airport ; + fun WhartonMunicipalTXAirport : Ind Airport ; -fun WhalsayAirport : Ind Airport ; + fun WheghnanAirport : Ind Airport ; -fun WhangareiAirport : Ind Airport ; + fun WhidbeyIslandNavalAirStationAultFieldWAAirport : Ind Airport ; -fun WhartonMunicipalTXAirport : Ind Airport ; + fun WhiteMountainAKAirport : Ind Airport ; -fun WheghnanAirport : Ind Airport ; + fun WhiteRiverWaterAerodromeONAirport : Ind Airport ; -fun WhidbeyIslandNavalAirStationAultFieldWAAirport : Ind Airport ; + fun WhiteRockTXAirport : Ind Airport ; -fun WhiteMountainAKAirport : Ind Airport ; + fun WhiteSulphurSpringsWVAirport : Ind Airport ; -fun WhiteRiverWaterAerodromeONAirport : Ind Airport ; + fun WhitecourtABAirport : Ind Airport ; -fun WhiteRockTXAirport : Ind Airport ; + fun WhitehorseYTAirport : Ind Airport ; -fun WhiteSulphurSpringsWVAirport : Ind Airport ; + fun WhitehouseNavalOutlyingFieldFLAirport : Ind Airport ; -fun WhitecourtABAirport : Ind Airport ; + fun WhitemanAirForceBaseMOAirport : Ind Airport ; -fun WhitehorseYTAirport : Ind Airport ; + fun WhitemanCAAirport : Ind Airport ; -fun WhitehouseNavalOutlyingFieldFLAirport : Ind Airport ; + fun WhiteriverAZAirport : Ind Airport ; -fun WhitemanAirForceBaseMOAirport : Ind Airport ; + fun WhitesideCountyAirportJosHBittorfFieldILAirport : Ind Airport ; -fun WhitemanCAAirport : Ind Airport ; + fun WhitingFieldNavalkAirStationNorthFLAirport : Ind Airport ; -fun WhiteriverAZAirport : Ind Airport ; + fun WhittangaAirport : Ind Airport ; -fun WhitesideCountyAirportJosHBittorfFieldILAirport : Ind Airport ; + fun WhyallaSouthAustraliaAirport : Ind Airport ; -fun WhitingFieldNavalkAirStationNorthFLAirport : Ind Airport ; + fun WiartonONAirport : Ind Airport ; -fun WhittangaAirport : Ind Airport ; + fun WickAirport : Ind Airport ; -fun WhyallaSouthAustraliaAirport : Ind Airport ; + fun WickhamAirport : Ind Airport ; -fun WiartonONAirport : Ind Airport ; + fun WiesbadenAirBaseWiesbadenAirport : Ind Airport ; -fun WickAirport : Ind Airport ; + fun WiesbadenAirport : Ind Airport ; -fun WickhamAirport : Ind Airport ; + fun WilcanniaSouthAustraliaAirport : Ind Airport ; -fun WiesbadenAirBaseWiesbadenAirport : Ind Airport ; + fun WildenrathAirport : Ind Airport ; -fun WiesbadenAirport : Ind Airport ; + fun WildwoodAKAirport : Ind Airport ; -fun WilcanniaSouthAustraliaAirport : Ind Airport ; + fun WileyPostOKAirport : Ind Airport ; -fun WildenrathAirport : Ind Airport ; + fun WilhemshavenAirport : Ind Airport ; -fun WildwoodAKAirport : Ind Airport ; + fun WilkesBarreWyomingValleyPAAirport : Ind Airport ; -fun WileyPostOKAirport : Ind Airport ; + fun WillRogersWorldOKAirport : Ind Airport ; -fun WilhemshavenAirport : Ind Airport ; + fun WilliamPGwinnFLAirport : Ind Airport ; -fun WilkesBarreWyomingValleyPAAirport : Ind Airport ; + fun WilliamTPiperMemorialPAAirport : Ind Airport ; -fun WillRogersWorldOKAirport : Ind Airport ; + fun WilliamsHarbourNFAirport : Ind Airport ; -fun WilliamPGwinnFLAirport : Ind Airport ; + fun WilliamsLakeBCAirport : Ind Airport ; -fun WilliamTPiperMemorialPAAirport : Ind Airport ; + fun WilliamsonCountyRegionalILAirport : Ind Airport ; -fun WilliamsHarbourNFAirport : Ind Airport ; + fun WilliamtownNewSouthWalesAirport : Ind Airport ; -fun WilliamsLakeBCAirport : Ind Airport ; + fun WillowAKAirport : Ind Airport ; -fun WilliamsonCountyRegionalILAirport : Ind Airport ; + fun WillowGroveNavalAirStationPAAirport : Ind Airport ; -fun WilliamtownNewSouthWalesAirport : Ind Airport ; + fun WillowRunMIAirport : Ind Airport ; -fun WillowAKAirport : Ind Airport ; + fun WillowsGlennCountyCAAirport : Ind Airport ; -fun WillowGroveNavalAirStationPAAirport : Ind Airport ; + fun WilsonNairobiAirport : Ind Airport ; -fun WillowRunMIAirport : Ind Airport ; + fun WiltonCTAirport : Ind Airport ; -fun WillowsGlennCountyCAAirport : Ind Airport ; + fun WilunaWesternAustraliaAirport : Ind Airport ; -fun WilsonNairobiAirport : Ind Airport ; + fun WinchesterRegionalVAAirport : Ind Airport ; -fun WiltonCTAirport : Ind Airport ; + fun WindarraWesternAustraliaAirport : Ind Airport ; -fun WilunaWesternAustraliaAirport : Ind Airport ; + fun WinderGAAirport : Ind Airport ; -fun WinchesterRegionalVAAirport : Ind Airport ; + fun WindomMunicipalMNAirport : Ind Airport ; -fun WindarraWesternAustraliaAirport : Ind Airport ; + fun WindorahParkQueenslandAirport : Ind Airport ; -fun WinderGAAirport : Ind Airport ; + fun WindsorONAirport : Ind Airport ; -fun WindomMunicipalMNAirport : Ind Airport ; + fun WiniskONAirport : Ind Airport ; -fun WindorahParkQueenslandAirport : Ind Airport ; + fun WinnemuccaMunicipalNVAirport : Ind Airport ; -fun WindsorONAirport : Ind Airport ; + fun WinnipegInternationalMBAirport : Ind Airport ; -fun WiniskONAirport : Ind Airport ; + fun WinonaMunicipalAirportMaxConradFieldMNAirport : Ind Airport ; -fun WinnemuccaMunicipalNVAirport : Ind Airport ; + fun WinstonFieldTXAirport : Ind Airport ; -fun WinnipegInternationalMBAirport : Ind Airport ; + fun WinterParkCOAirport : Ind Airport ; -fun WinonaMunicipalAirportMaxConradFieldMNAirport : Ind Airport ; + fun WintonQueenslandAirport : Ind Airport ; -fun WinstonFieldTXAirport : Ind Airport ; + fun WipimAirport : Ind Airport ; -fun WinterParkCOAirport : Ind Airport ; + fun WisemanAKAirport : Ind Airport ; -fun WintonQueenslandAirport : Ind Airport ; + fun WithamFieldFLAirport : Ind Airport ; -fun WipimAirport : Ind Airport ; + fun WittendomGorgeWesternAustraliaAirport : Ind Airport ; -fun WisemanAKAirport : Ind Airport ; + fun WittmanRegionalWIAirport : Ind Airport ; -fun WithamFieldFLAirport : Ind Airport ; + fun WituAirport : Ind Airport ; -fun WittendomGorgeWesternAustraliaAirport : Ind Airport ; + fun WoburnMAAirport : Ind Airport ; -fun WittmanRegionalWIAirport : Ind Airport ; + fun WoensdrechtAirport : Ind Airport ; -fun WituAirport : Ind Airport ; + fun WoitapeAirport : Ind Airport ; -fun WoburnMAAirport : Ind Airport ; + fun WojaAirport : Ind Airport ; -fun WoensdrechtAirport : Ind Airport ; + fun WollastonLakeSKAirport : Ind Airport ; -fun WoitapeAirport : Ind Airport ; + fun WollogorangAirport : Ind Airport ; -fun WojaAirport : Ind Airport ; + fun WollongongNewSouthWalesAirport : Ind Airport ; -fun WollastonLakeSKAirport : Ind Airport ; + fun WologissiAirport : Ind Airport ; -fun WollogorangAirport : Ind Airport ; + fun WonanAirport : Ind Airport ; -fun WollongongNewSouthWalesAirport : Ind Airport ; + fun WondaiAirport : Ind Airport ; -fun WologissiAirport : Ind Airport ; + fun WonderboomPretoriaAirport : Ind Airport ; -fun WonanAirport : Ind Airport ; + fun WondoolaAirport : Ind Airport ; -fun WondaiAirport : Ind Airport ; + fun WonenaraAirport : Ind Airport ; -fun WonderboomPretoriaAirport : Ind Airport ; + fun WonkenAirport : Ind Airport ; -fun WondoolaAirport : Ind Airport ; + fun WoodCountyAirportGillRobbWilsonFieldWVAirport : Ind Airport ; -fun WonenaraAirport : Ind Airport ; + fun WoodRiverAKAirport : Ind Airport ; -fun WonkenAirport : Ind Airport ; + fun WoodbridgeRAFStationEnglandAirport : Ind Airport ; -fun WoodCountyAirportGillRobbWilsonFieldWVAirport : Ind Airport ; + fun WoodchopperAKAirport : Ind Airport ; -fun WoodRiverAKAirport : Ind Airport ; + fun WoodfordAerodromeEnglandAirport : Ind Airport ; -fun WoodbridgeRAFStationEnglandAirport : Ind Airport ; + fun WoodgreenNorthernTerritoryAirport : Ind Airport ; -fun WoodchopperAKAirport : Ind Airport ; + fun WoomeraSouthAustraliaAirport : Ind Airport ; -fun WoodfordAerodromeEnglandAirport : Ind Airport ; + fun WoraNaYeAirport : Ind Airport ; -fun WoodgreenNorthernTerritoryAirport : Ind Airport ; + fun WorcesterMunicipalMAAirport : Ind Airport ; -fun WoomeraSouthAustraliaAirport : Ind Airport ; + fun WorlandMunicipalWYAirport : Ind Airport ; -fun WoraNaYeAirport : Ind Airport ; + fun WorldTradeCenterNYAirport : Ind Airport ; -fun WorcesterMunicipalMAAirport : Ind Airport ; + fun WorthingtonMunicipalMNAirport : Ind Airport ; -fun WorlandMunicipalWYAirport : Ind Airport ; + fun WothoAirport : Ind Airport ; -fun WorldTradeCenterNYAirport : Ind Airport ; + fun WotjeWotjeAirport : Ind Airport ; -fun WorthingtonMunicipalMNAirport : Ind Airport ; + fun WrangellAKAirport : Ind Airport ; -fun WothoAirport : Ind Airport ; + fun WrigleyNTAirport : Ind Airport ; -fun WotjeWotjeAirport : Ind Airport ; + fun WroclawAirport : Ind Airport ; -fun WrangellAKAirport : Ind Airport ; + fun WrothamQueenslandAirport : Ind Airport ; -fun WrigleyNTAirport : Ind Airport ; + fun WuauTaiyuanAirport : Ind Airport ; -fun WroclawAirport : Ind Airport ; + fun WudinnaSouthAustraliaAirport : Ind Airport ; -fun WrothamQueenslandAirport : Ind Airport ; + fun WuhanAirport : Ind Airport ; -fun WuauTaiyuanAirport : Ind Airport ; + fun WuhuAirport : Ind Airport ; -fun WudinnaSouthAustraliaAirport : Ind Airport ; + fun WunnumminLakeONAirport : Ind Airport ; -fun WuhanAirport : Ind Airport ; + fun WuppertalAirport : Ind Airport ; -fun WuhuAirport : Ind Airport ; + fun WurzburgAirport : Ind Airport ; -fun WunnumminLakeONAirport : Ind Airport ; + fun WuvuluIslandAirport : Ind Airport ; -fun WuppertalAirport : Ind Airport ; + fun WuxiAirport : Ind Airport ; -fun WurzburgAirport : Ind Airport ; + fun WuyishanAirport : Ind Airport ; -fun WuvuluIslandAirport : Ind Airport ; + fun WuzhouAirport : Ind Airport ; -fun WuxiAirport : Ind Airport ; + fun WykaufFoehrAirport : Ind Airport ; -fun WuyishanAirport : Ind Airport ; + fun WyndhamWesternAustraliaAirport : Ind Airport ; -fun WuzhouAirport : Ind Airport ; + fun WynyardSKAirport : Ind Airport ; -fun WykaufFoehrAirport : Ind Airport ; + fun WynyardTasmaniaAirport : Ind Airport ; -fun WyndhamWesternAustraliaAirport : Ind Airport ; + fun XaiXaiViladeJoaoBeloAirport : Ind Airport ; -fun WynyardSKAirport : Ind Airport ; + fun XangongoAirport : Ind Airport ; -fun WynyardTasmaniaAirport : Ind Airport ; + fun XayaburyAirport : Ind Airport ; -fun XaiXaiViladeJoaoBeloAirport : Ind Airport ; + fun XiamenAirport : Ind Airport ; -fun XangongoAirport : Ind Airport ; + fun XiamenAmoyAirport : Ind Airport ; -fun XayaburyAirport : Ind Airport ; + fun XianXianyangAirport : Ind Airport ; -fun XiamenAirport : Ind Airport ; + fun XiangfanAirport : Ind Airport ; -fun XiamenAmoyAirport : Ind Airport ; + fun XichangAirport : Ind Airport ; -fun XianXianyangAirport : Ind Airport ; + fun XiengKhouangAirport : Ind Airport ; -fun XiangfanAirport : Ind Airport ; + fun XienglomAirport : Ind Airport ; -fun XichangAirport : Ind Airport ; + fun XiguanXianZiAnAirport : Ind Airport ; -fun XiengKhouangAirport : Ind Airport ; + fun XilinhotAirport : Ind Airport ; -fun XienglomAirport : Ind Airport ; + fun XingchengAirport : Ind Airport ; -fun XiguanXianZiAnAirport : Ind Airport ; + fun XingningAirport : Ind Airport ; -fun XilinhotAirport : Ind Airport ; + fun XingtaiAirport : Ind Airport ; -fun XingchengAirport : Ind Airport ; + fun XinguaraAirport : Ind Airport ; -fun XingningAirport : Ind Airport ; + fun XiningAirport : Ind Airport ; -fun XingtaiAirport : Ind Airport ; + fun XoxocotlanOaxacaAirport : Ind Airport ; -fun XinguaraAirport : Ind Airport ; + fun XuzhouAirport : Ind Airport ; -fun XiningAirport : Ind Airport ; + fun YakimaAirTerminalWAAirport : Ind Airport ; -fun XoxocotlanOaxacaAirport : Ind Airport ; + fun YakutatAKAirport : Ind Airport ; -fun XuzhouAirport : Ind Airport ; + fun YalgooWesternAustraliaAirport : Ind Airport ; -fun YakimaAirTerminalWAAirport : Ind Airport ; + fun YalovaYalovaAsagisolozAirport : Ind Airport ; -fun YakutatAKAirport : Ind Airport ; + fun YamIslandQueenslandAirport : Ind Airport ; -fun YalgooWesternAustraliaAirport : Ind Airport ; + fun YanbuAirport : Ind Airport ; -fun YalovaYalovaAsagisolozAirport : Ind Airport ; + fun YanchenAirport : Ind Airport ; -fun YamIslandQueenslandAirport : Ind Airport ; + fun YandinaRusselIsAirport : Ind Airport ; -fun YanbuAirport : Ind Airport ; + fun YangambiAirport : Ind Airport ; -fun YanchenAirport : Ind Airport ; + fun YanjiAirport : Ind Airport ; -fun YandinaRusselIsAirport : Ind Airport ; + fun YantaiAirport : Ind Airport ; -fun YangambiAirport : Ind Airport ; + fun YapInternationalYapIslandAirport : Ind Airport ; -fun YanjiAirport : Ind Airport ; + fun YaquaraAirport : Ind Airport ; -fun YantaiAirport : Ind Airport ; + fun YarmouthNSAirport : Ind Airport ; -fun YapInternationalYapIslandAirport : Ind Airport ; + fun YavarateAirport : Ind Airport ; -fun YaquaraAirport : Ind Airport ; + fun YavizaAirport : Ind Airport ; -fun YarmouthNSAirport : Ind Airport ; + fun YeAirport : Ind Airport ; -fun YavarateAirport : Ind Airport ; + fun YechonAirport : Ind Airport ; -fun YavizaAirport : Ind Airport ; + fun YegepaAirport : Ind Airport ; -fun YeAirport : Ind Airport ; + fun YekaterinburgEkaterinburgSverdlovskAirport : Ind Airport ; -fun YechonAirport : Ind Airport ; + fun YellowknifeNTAirport : Ind Airport ; -fun YegepaAirport : Ind Airport ; + fun YellowstoneMTAirport : Ind Airport ; -fun YekaterinburgEkaterinburgSverdlovskAirport : Ind Airport ; + fun YengemaAirport : Ind Airport ; -fun YellowknifeNTAirport : Ind Airport ; + fun YenkisAirport : Ind Airport ; -fun YellowstoneMTAirport : Ind Airport ; + fun YeoviltonAirport : Ind Airport ; -fun YengemaAirport : Ind Airport ; + fun YesBayLodgeSeaplaneBaseAKAirport : Ind Airport ; -fun YenkisAirport : Ind Airport ; + fun YevaAirport : Ind Airport ; -fun YeoviltonAirport : Ind Airport ; + fun YibinSichuanAirport : Ind Airport ; -fun YesBayLodgeSeaplaneBaseAKAirport : Ind Airport ; + fun YichangAirport : Ind Airport ; -fun YevaAirport : Ind Airport ; + fun YilanAirport : Ind Airport ; -fun YibinSichuanAirport : Ind Airport ; + fun YiningAirport : Ind Airport ; -fun YichangAirport : Ind Airport ; + fun YiwuAirport : Ind Airport ; -fun YilanAirport : Ind Airport ; + fun YokohamaAirport : Ind Airport ; -fun YiningAirport : Ind Airport ; + fun YokotaAirForceBaseYokotaAirport : Ind Airport ; -fun YiwuAirport : Ind Airport ; + fun YolaAirport : Ind Airport ; -fun YokohamaAirport : Ind Airport ; + fun YonagoAirport : Ind Airport ; -fun YokotaAirForceBaseYokotaAirport : Ind Airport ; + fun YonaguniJimaAirport : Ind Airport ; -fun YolaAirport : Ind Airport ; + fun YorkLandingMBAirport : Ind Airport ; -fun YonagoAirport : Ind Airport ; + fun YorkPAAirport : Ind Airport ; -fun YonaguniJimaAirport : Ind Airport ; + fun YorkeIslandsQueenslandAirport : Ind Airport ; -fun YorkLandingMBAirport : Ind Airport ; + fun YorketownSouthAustraliaAirport : Ind Airport ; -fun YorkPAAirport : Ind Airport ; + fun YorktonSKAirport : Ind Airport ; -fun YorkeIslandsQueenslandAirport : Ind Airport ; + fun YoroAirport : Ind Airport ; -fun YorketownSouthAustraliaAirport : Ind Airport ; + fun YoronJimaAirport : Ind Airport ; -fun YorktonSKAirport : Ind Airport ; + fun YosemiteParkCAAirport : Ind Airport ; -fun YoroAirport : Ind Airport ; + fun YosuAirport : Ind Airport ; -fun YoronJimaAirport : Ind Airport ; + fun YoungNewSouthWalesAirport : Ind Airport ; -fun YosemiteParkCAAirport : Ind Airport ; + fun YoungsfieldCapeTownAirport : Ind Airport ; -fun YosuAirport : Ind Airport ; + fun YoungstownMunicipalOHAirport : Ind Airport ; -fun YoungNewSouthWalesAirport : Ind Airport ; + fun YubaCountyCAAirport : Ind Airport ; -fun YoungsfieldCapeTownAirport : Ind Airport ; + fun YuccaFlatsNVAirport : Ind Airport ; -fun YoungstownMunicipalOHAirport : Ind Airport ; + fun YuendumuNorthernTerritoryAirport : Ind Airport ; -fun YubaCountyCAAirport : Ind Airport ; + fun YuleIslandAirport : Ind Airport ; -fun YuccaFlatsNVAirport : Ind Airport ; + fun YulemisteTallinnAirport : Ind Airport ; -fun YuendumuNorthernTerritoryAirport : Ind Airport ; + fun YulinAirport : Ind Airport ; -fun YuleIslandAirport : Ind Airport ; + fun YumaMarinaCorpsAirStationAZAirport : Ind Airport ; -fun YulemisteTallinnAirport : Ind Airport ; + fun YumaMarineCorpsAirStationYumaInternationalAZAirport : Ind Airport ; -fun YulinAirport : Ind Airport ; + fun YurimaguasAirport : Ind Airport ; -fun YumaMarinaCorpsAirStationAZAirport : Ind Airport ; + fun YuzhnoSakhalinskSakhalinAirport : Ind Airport ; -fun YumaMarineCorpsAirStationYumaInternationalAZAirport : Ind Airport ; + fun YuzhnyTashkentAirport : Ind Airport ; -fun YurimaguasAirport : Ind Airport ; + fun ZabljakAirport : Ind Airport ; -fun YuzhnoSakhalinskSakhalinAirport : Ind Airport ; + fun ZabreAirport : Ind Airport ; -fun YuzhnyTashkentAirport : Ind Airport ; + fun ZabrehAirport : Ind Airport ; -fun ZabljakAirport : Ind Airport ; + fun ZadarAirport : Ind Airport ; -fun ZabreAirport : Ind Airport ; + fun ZahedanAirport : Ind Airport ; -fun ZabrehAirport : Ind Airport ; + fun ZakynthosAirport : Ind Airport ; -fun ZadarAirport : Ind Airport ; + fun ZamboangaInternationalZamboangaAirport : Ind Airport ; -fun ZahedanAirport : Ind Airport ; + fun ZamoraAirport : Ind Airport ; -fun ZakynthosAirport : Ind Airport ; + fun ZanzibarIslandAirport : Ind Airport ; -fun ZamboangaInternationalZamboangaAirport : Ind Airport ; + fun ZaporizhzhyaZaporizhzhyaAirport : Ind Airport ; -fun ZamoraAirport : Ind Airport ; + fun ZaragozaAirport : Ind Airport ; -fun ZanzibarIslandAirport : Ind Airport ; + fun ZaranjAirport : Ind Airport ; -fun ZaporizhzhyaZaporizhzhyaAirport : Ind Airport ; + fun ZariaAirport : Ind Airport ; -fun ZaragozaAirport : Ind Airport ; + fun ZarkaAirport : Ind Airport ; -fun ZaranjAirport : Ind Airport ; + fun ZenataTlemcenTilimsenAirport : Ind Airport ; -fun ZariaAirport : Ind Airport ; + fun ZephyrhillsMunicipalFLAirport : Ind Airport ; -fun ZarkaAirport : Ind Airport ; + fun ZeroAirport : Ind Airport ; -fun ZenataTlemcenTilimsenAirport : Ind Airport ; + fun ZhangguizhuangTianjinAirport : Ind Airport ; -fun ZephyrhillsMunicipalFLAirport : Ind Airport ; + fun ZhanjiangAirport : Ind Airport ; -fun ZeroAirport : Ind Airport ; + fun ZhaotongAirport : Ind Airport ; -fun ZhangguizhuangTianjinAirport : Ind Airport ; + fun ZhenzhenShenzhenAirport : Ind Airport ; -fun ZhanjiangAirport : Ind Airport ; + fun ZhobAirport : Ind Airport ; -fun ZhaotongAirport : Ind Airport ; + fun ZhongchuanLanzhouAirport : Ind Airport ; -fun ZhenzhenShenzhenAirport : Ind Airport ; + fun ZhuhaiAirport : Ind Airport ; -fun ZhobAirport : Ind Airport ; + fun ZhytomyrZhitomirZhytomyrAirport : Ind Airport ; -fun ZhongchuanLanzhouAirport : Ind Airport ; + fun ZiguinchorAirport : Ind Airport ; -fun ZhuhaiAirport : Ind Airport ; + fun ZilfiAirport : Ind Airport ; -fun ZhytomyrZhitomirZhytomyrAirport : Ind Airport ; + fun ZimValenciaCaraboboValenciaAirport : Ind Airport ; -fun ZiguinchorAirport : Ind Airport ; + fun ZinderAirport : Ind Airport ; -fun ZilfiAirport : Ind Airport ; + fun ZorgenHoopParamariboAirport : Ind Airport ; -fun ZimValenciaCaraboboValenciaAirport : Ind Airport ; + fun ZouerateAirport : Ind Airport ; -fun ZinderAirport : Ind Airport ; + fun ZuidLimburgMaastrichtAirport : Ind Airport ; -fun ZorgenHoopParamariboAirport : Ind Airport ; + fun ZurichKlotenZurichAirport : Ind Airport ; -fun ZouerateAirport : Ind Airport ; + fun wethersfieldRAFStationEnglandAirport : Ind Airport ; -fun ZuidLimburgMaastrichtAirport : Ind Airport ; - -fun ZurichKlotenZurichAirport : Ind Airport ; - -fun wethersfieldRAFStationEnglandAirport : Ind Airport ; -} \ No newline at end of file +} diff --git a/examples/SUMO/elements.gf b/examples/SUMO/elements.gf deleted file mode 100644 index 5a4d70510..000000000 --- a/examples/SUMO/elements.gf +++ /dev/null @@ -1,931 +0,0 @@ -abstract elements = open Merge in { - - - - --- Silvery radioactive metallic element, belongs to --- group 3 of the periodic table. The most stable isotope, Ac_227, has a --- half_life of 217 years. Ac_228 (half_life of 6.13 hours) also occurs in --- nature. There are 22 other artificial isotopes, all radioactive and --- having very short half_lives. Chemistry similar to lanthanum. Used as a --- source of alpha particles. Discovered by A. Debierne in 1899. -fun Actinium : Class ; -fun Actinium_Class : SubClass Actinium ElementalSubstance ; - --- Silvery_white lustrous metallic element of group --- 3 of the periodic table. Highly reactive but protected by a thin --- transparent layer of the oxide which quickly forms in air. There are many --- alloys of aluminum, as well as a good number of industrial uses. Makes up --- 8.1 percent of the Earth's crust, by weight. Isolated in 1825 by H.C. --- Oersted. -fun Aluminum : Class ; -fun Aluminum_Class : SubClass Aluminum ElementalSubstance ; - --- Radioactive metallic transuranic element, --- belongs to the actinoids. Ten known isotopes. Am_243 is the most stable --- isotope, with a half_life of 7.95*10^3 years. Discovered by Glenn T. --- Seaborg and associates in 1945, it was obtained by bombarding --- {uranium}_238 with alpha particles. -fun Americium : Class ; -fun Americium_Class : SubClass Americium ElementalSubstance ; - --- Element of group 15. Multiple allotropic forms. --- The stable form of antimony is a blue_white metal. Yellow and black --- antimony are unstable non_metals. Used in flame_proofing, paints, --- ceramics, enamels, and rubber. Attacked by oxidizing acids and halogens. --- First reported by Tholden in 1450. -fun Antimony : Class ; -fun Antimony_Class : SubClass Antimony ElementalSubstance ; - --- Monatomic noble gas. Makes up 0.93 percent of the --- air. Colourless, odorless. Is inert and has no true compounds. Lord --- Rayleigh and Sir william Ramsey identified argon in 1894. -fun Argon : Class ; -fun Argon_Class : SubClass Argon ElementalSubstance ; - --- Metalloid element of group 15. There are three --- allotropes, yellow, black, and grey. Reacts with halogens, concentrated --- oxidizing acids and hot alkalis. Albertus Magnus is believed to have been --- the first to isolate the element in 1250. -fun Arsenic : Class ; -fun Arsenic_Class : SubClass Arsenic ElementalSubstance ; - --- Radioactive halogen element. Occurs naturally --- from uranium and thorium decay. At least 20 known isotopes. At_210, the --- most stable, has a half_life of 8.3 hours. Synthesized by nuclear --- bombardment in 1940 by D.R. Corson, K.R. MacKenzie and E. Segre at the --- University of California. -fun Astatine : Class ; -fun Astatine_Class : SubClass Astatine ElementalSubstance ; - --- Silvery_white reactive element, belonging to group --- 2 of the periodic table. Soluble barium compounds are extremely --- poisonous. Identified in 1774 by Karl Scheele and extracted in 1808 by --- Humphry Davy. -fun Barium : Class ; -fun Barium_Class : SubClass Barium ElementalSubstance ; - --- Radioactive metallic transuranic element. --- Belongs to actinoid series. Eight known isotopes, the most common Bk_247, --- has a half_life of 1.4*10^3 years. First produced by Glenn T. Seaborg --- and associates in 1949 by bombarding americium_241 with alpha --- particles. -fun Berkelium : Class ; -fun Berkelium_Class : SubClass Berkelium ElementalSubstance ; - --- Grey metallic element of group 2 of the periodic --- table. Is toxic and can cause severe lung diseases and dermatitis. Shows --- high covalent character. It was isolated independently by F. Wohler and --- A.A. Bussy in 1828. -fun Beryllium : Class ; -fun Beryllium_Class : SubClass Beryllium ElementalSubstance ; - --- White crystalline metal with a pink tinge, belongs --- to group 15. Most diamagnetic of all metals and has the lowest thermal --- conductivity of all the elements except mercury. Lead_free bismuth --- compounds are used in cosmetics and medical procedures. Burns in the air --- and produces a blue flame. In 1753, C.G. Junine first demonstrated that --- it was different from lead. -fun Bismuth : Class ; -fun Bismuth_Class : SubClass Bismuth ElementalSubstance ; - --- An element of group 13 of the periodic table. There --- are two allotropes, amorphous boron is a brown power, but metallic boron --- is black. The metallic form is hard (9.3 on Mohs' scale) and a bad --- conductor in room temperatures. It is never found free in nature. --- Boron_10 is used in nuclear reactor control rods and shields. It was --- discovered in 1808 by Sir Humphry Davy and by J.L. Gay_Lussac and L.J. --- Thenard. -fun Boron : Class ; -fun Boron_Class : SubClass Boron ElementalSubstance ; - --- Halogen element. Red volatile liquid at room --- temperature. Its reactivity is somewhere between chlorine and iodine. --- Harmful to human tissue in a liquid state, the vapour irritates eyes and --- throat. Discovered in 1826 by Antoine Balard. -fun Bromine : Class ; -fun Bromine_Class : SubClass Bromine ElementalSubstance ; - --- Soft bluish metal belonging to group 12 of the --- periodic table. Extremely toxic even in low concentrations. Chemically --- similar to zinc, but lends itself to more complex compounds. Discovered --- in 1817 by F. Stromeyer. -fun Cadmium : Class ; -fun Cadmium_Class : SubClass Cadmium ElementalSubstance ; - --- Soft silvery_white metallic element belonging to --- group 1 of the periodic table. One of the three metals which are liquid --- at room temperature. Cs_133 is the natural, and only stable, isotope. --- Fifteen other radioisotopes exist. Caesium reacts explosively with cold --- water, and ice at temperatures above 157K. Caesium hydroxide is the --- strongest base known. Caesium is the most electropositive, most alkaline --- and has the least ionization potential of all the elements. Known uses --- include the basis of atomic clocks, catalyst for the hydrogenation of some --- organic compounds, and in photoelectric cells. Caesium was discovered by --- Gustav Kirchoff and Robert Bunsen in Germany in 1860 spectroscopically. --- Its identification was based upon the bright blue lines in its spectrum. --- The name comes from the latin word caesius, which means sky blue. Caesium --- should be considered highly toxic. Some of the radioisotopes are even --- more toxic. -fun Caesium : Class ; -fun Caesium_Class : SubClass Caesium ElementalSubstance ; - --- Soft grey metallic element belonging to group 2 of --- the periodic table. Used a reducing agent in the extraction of thorium, --- zirconium and uranium. Essential element for living organisms. -fun Calcium : Class ; -fun Calcium_Class : SubClass Calcium ElementalSubstance ; - --- Radioactive metallic transuranic element. --- Belongs to actinoid series. Cf_251 has a half life of about 700 years. --- Nine isotopes are known. Cf_252 is an intense {neutron} source, which --- makes it an intense {neutron} source and gives it a use in {neutron} --- activation analysis and a possible use as a radiation source in medicine. --- First produced by Glenn T. Seaborg and associates in 1950. -fun Californium : Class ; -fun Californium_Class : SubClass Californium ElementalSubstance ; - --- Carbon is a member of group 14 of the periodic --- table. It has three allotropic forms of it, diamonds, graphite and --- fullerite. Carbon_14 is commonly used in radioactive dating. Carbon --- occurs in all organic life and is the basis of organic chemistry. Carbon --- has the interesting chemical property of being able to bond with itself, --- and a wide variety of other elements. -fun Carbon : Class ; -fun Carbon_Class : SubClass Carbon ElementalSubstance ; - --- Silvery metallic element, belongs to the --- lanthanoids. Four natural isotopes exist, and fifteen radioactive --- isotopes have been identified. Used in some rare_earth alloys. The --- oxidized form is used in the glass industry. Discovered by Martin .H. --- Klaproth in 1803. -fun Cerium : Class ; -fun Cerium_Class : SubClass Cerium ElementalSubstance ; - --- Halogen element. Poisonous greenish_yellow gas. --- Occurs widely in nature as sodium chloride in seawater. Reacts directly --- with many elements and compounds, strong oxidizing agent. Discovered by --- Karl Scheele in 1774. Humphrey David confirmed it as an element in --- 1810. -fun Chlorine : Class ; -fun Chlorine_Class : SubClass Chlorine ElementalSubstance ; - --- Hard silvery transition element. Used in --- decorative electroplating. Discovered in 1797 by Vauquelin. -fun Chromium : Class ; -fun Chromium_Class : SubClass Chromium ElementalSubstance ; - --- Light grey transition element. Some meteorites --- contain small amounts of metallic cobalt. Generally alloyed for use. --- Mammals require small amounts of cobalt salts. Cobalt_60, an artificially --- produced radioactive isotope of Cobalt is an important radioactive tracer --- and cancer_treatment agent. Discovered by G. Brandt in 1737. -fun Cobalt : Class ; -fun Cobalt_Class : SubClass Cobalt ElementalSubstance ; - --- Red_brown transition element. Known by the Romans --- as 'cuprum.' Extracted and used for thousands of years. Malleable, --- ductile and an excellent conductor of heat and electricity. When in moist --- conditions, a greenish layer forms on the outside. -fun Copper : Class ; -fun Copper_Class : SubClass Copper ElementalSubstance ; - --- Radioactive metallic transuranic element. Belongs --- to actinoid series. Nine known isotopes, Cm_247 has a half_life of --- 1.64*10^7 years. First identified by Glenn T. Seaborg and associates in --- 1944, first produced by L.B. Werner and I. Perlman in 1947 by bombarding --- americium_241 with {neutron}s. Named for Marie Curie. -fun Curium : Class ; -fun Curium_Class : SubClass Curium ElementalSubstance ; - --- Metallic with a bright silvery_white lustre. --- Dysprosium belongs to the lanthanoids. It is relatively stable in air at --- room temperatures, it will however dissolve in mineral acids, evolving --- hydrogen. It is found in from rare_earth minerals. There are seven --- natural isotopes of dysprosium, and eight radioisotopes, Dy_154 being the --- most stable with a half_life of 3*10^6 years. Dysprosium is used as a --- neutron absorber in nuclear fission reactions, and in compact disks. It --- was discovered by Paul Emile Lecoq de Boisbaudran in 1886 in France. Its --- name comes from the Greek word dysprositos, which means hard to obtain. -fun Dysprosium : Class ; -fun Dysprosium_Class : SubClass Dysprosium ElementalSubstance ; - --- Appearance is unknown, however it is most --- probably metallic and silver or gray in color. Radioactive metallic --- transuranic element belonging to the actinoids. Es_254 has the longest --- half_life of the eleven known isotopes at 270 days. First identified by --- Albert Ghiorso and associates in the debris of the 1952 hydrogen bomb --- explosion. In 1961 the first microgram quantities of Es_232 were --- separated. While einsteinium never exists naturally, if a sufficient --- amount was assembled, it would pose a radiation hazard. -fun Einsteinium : Class ; -fun Einsteinium_Class : SubClass Einsteinium ElementalSubstance ; - --- Soft silvery metallic element which belongs to the --- lanthanoids. Six natural isotopes that are stable. Twelve artificial --- isotopes are known. Used in nuclear technology as a neutron absorber. It --- is being investigated for other possible uses. Discovered by Carl G. --- Mosander in 1843. -fun Erbium : Class ; -fun Erbium_Class : SubClass Erbium ElementalSubstance ; - --- Soft silvery metallic element belonging to the --- lanthanoids. Eu_151 and Eu_153 are the only two stable isotopes, both of --- which are {neutron} absorbers. Discovered in 1889 by Sir William --- Crookes. -fun Europium : Class ; -fun Europium_Class : SubClass Europium ElementalSubstance ; - --- Radioactive metallic transuranic element, belongs --- to the actinoids. Ten known isotopes, most stable is Fm_257 with a --- half_life of 10 days. First identified by Albert Ghiorso and associates --- in the debris of the first hydrogen_bomb explosion in 1952. -fun Fermium : Class ; -fun Fermium_Class : SubClass Fermium ElementalSubstance ; - --- A poisonous pale yellow gaseous element belonging --- to group 17 of the periodic table (The halogens). It is the most --- chemically reactive and electronegative element. It is highly dangerous, --- causing severe chemical burns on contact with flesh. Fluorine was --- identified by Scheele in 1771 and first isolated by Moissan in 1886. -fun Fluorine : Class ; -fun Fluorine_Class : SubClass Fluorine ElementalSubstance ; - --- Radioactive element, belongs to group 1 of the --- periodic table. Found in uranium and thorium ores. The 22 known isotopes --- are all radioactive, with the most stable being Fr_223. Its existence was --- confirmed in 1939 by Marguerite Perey. -fun Francium : Class ; -fun Francium_Class : SubClass Francium ElementalSubstance ; - --- Soft silvery metallic element belonging to the --- lanthanoids. Seven natural, stable isotopes are known in addition to --- eleven artificial isotopes. Gd_155 and Gd_157 and the best neutron --- absorbers of all elements. Gadolinium compounds are used in electronics. --- Discovered by J.C.G Marignac in 1880. -fun Gadolinium : Class ; -fun Gadolinium_Class : SubClass Gadolinium ElementalSubstance ; - --- Soft silvery metallic element, belongs to group 13 --- of the periodic table. The two stable isotopes are Ga_69 and Ga_71. --- Eight radioactive isotopes are known, all having short half_lives. --- Gallium Arsenide is used as a semiconductor. Corrodes most other metals --- by diffusing into their lattice. First identified by Francois Lecoq de --- Boisbaudran in 1875. -fun Gallium : Class ; -fun Gallium_Class : SubClass Gallium ElementalSubstance ; - --- Lustrous hard metalloid element, belongs to --- group 14 of the periodic table. Forms a large number of organometallic --- compounds. Predicted by Mendeleev in 1871, it was actually found in 1886 --- by Winkler. -fun Germanium : Class ; -fun Germanium_Class : SubClass Germanium ElementalSubstance ; - --- Gold is gold colored. It is the most malleable and --- ductile metal known. There is only one stable isotope of gold, and five --- radioisotopes of gold, Au_195 being the most stable with a half_life of --- 186 days. Gold is used as a monetary standard, in jewelry, dentistry, --- electronics. Au_198 is used in treating cancer and some other medical --- conditions. Gold has been known to exist as far back as 2600 BC. Gold --- comes from the Anglo_Saxon word gold. Its symbol, Au, comes from the --- Latin word aurum, which means gold. Gold is not particularly toxic, --- however it is known to cause damage to the liver and kidneys in some. -fun Gold : Class ; -fun Gold_Class : SubClass Gold ElementalSubstance ; - --- Silvery lustrous metallic transition element. --- Used in tungsten alloys in filaments and electrodes, also acts as a --- neutron absorber. First reported by Urbain in 1911, existence was finally --- established in 1923 by D. Coster, G.C. de Hevesy in 1923. -fun Hafnium : Class ; -fun Hafnium_Class : SubClass Hafnium ElementalSubstance ; - --- Colourless, odourless gaseous nonmetallic element. --- Belongs to group 18 of the periodic table. Lowest boiling point of all --- elements and can only be solidified under pressure. Chemically inert, no --- known compounds. Discovered in the solar spectrum in 1868 by Lockyer. -fun Helium : Class ; -fun Helium_Class : SubClass Helium ElementalSubstance ; - --- Relatively soft and malleable silvery_white --- metallic element, which is stable in dry air at room temperature. It --- oxidizes in moist air and at high temperatures. It belongs to the --- lanthanoids. A rare_earth metal, it is found in the minerals monazite and --- gadolinite. It possesses unusual magnetic properties. One natural --- isotope, Ho_165 exists, six radioisotopes exist, the most stable being --- Ho_163 with a half_life of 4570 years. Holmium is used in some metal --- alloys, it is also said to stimulate the metabolism. Discovered by Per --- Theodor Cleve and J.L. Soret in Switzerland in 1879. The name homium --- comes from the Greek word Holmia which means Sweden. While all holmium --- compounds should be considered highly toxic, initial evidence seems to --- indicate that they do not pose much danger. The metal's dust however, is --- a fire hazard. -fun Holmium : Class ; -fun Holmium_Class : SubClass Holmium ElementalSubstance ; - --- Colourless, odourless gaseous chemical element. --- Lightest and most abundant element in the universe. Present in water and --- in all organic compounds. Chemically reacts with most elements. --- Discovered by Henry Cavendish in 1776. -fun Hydrogen : Class ; -fun Hydrogen_Class : SubClass Hydrogen ElementalSubstance ; - --- Soft silvery element belonging to group 13 of the --- periodic table. The most common natural isotope is In_115, which has a --- half_life of 6*10^4 years. Five other radioisotopes exist. Discovered in --- 1863 by Reich and Richter. -fun Indium : Class ; -fun Indium_Class : SubClass Indium ElementalSubstance ; - --- Dark violet nonmetallic element, belongs to group --- 17 of the periodic table. Insoluble in water. Required as a trace --- element for living organisms. One stable isotope, I_127 exists, in --- addition to fourteen radioactive isotopes. Chemically the least reactive --- of the halogens, and the most electropositive metallic halogen. --- Discovered in 1812 by Courtois. -fun Iodine : Class ; -fun Iodine_Class : SubClass Iodine ElementalSubstance ; - --- Very hard and brittle, silvery metallic transition --- element. It has a yellowish cast to it. Salts of iridium are highly --- colored. It is the most corrosion resistant metal known, not attacked by --- any acid, but is attacked by molten salts. There are two natural isotopes --- of iridium, and 4 radioisotopes, the most stable being Ir_192 with a --- half_life of 73.83 days. Ir_192 decays into {platinum}, while the other --- radioisotopes decay into {osmium}. Iridium is used in high temperature --- apparatus, electrical contacts, and as a hardening agent for platinum. --- Discovered in 1803 by Smithson Tennant in England. The name comes from --- the Greek word iris, which means rainbow. Iridium metal is generally --- non_toxic due to its relative unreactivity, but iridium compounds should --- be considered highly toxic. -fun Iridium : Class ; -fun Iridium_Class : SubClass Iridium ElementalSubstance ; - --- Silvery malleable and ductile metallic transition --- element. Has nine isotopes and is the fourth most abundant element in the --- earth's crust. Required by living organisms as a trace element (used in --- hemoglobin in humans.) Quite reactive, oxidizes in moist air, displaces --- hydrogen from dilute acids and combines with nonmetallic elements. -fun Iron : Class ; -fun Iron_Class : SubClass Iron ElementalSubstance ; - --- Colorless gaseous element, belongs to the noble --- gases. Occurs in the air, 0.0001 percent by volume. It can be extracted --- from liquid air by fractional distillation. Generally not isolated, but --- used with other inert gases in fluorescent lamps. Five natural isotopes, --- and five radioactive isotopes. Kr_85, the most stable radioactive --- isotope, has a half_life of 10.76 years and is produced in fission --- reactors. Practically inert, though known to form compounds with --- {fluorine}. -fun Krypton : Class ; -fun Krypton_Class : SubClass Krypton ElementalSubstance ; - --- (From the Greek word lanthanein, to line hidden) --- Silvery metallic element belonging to group 3 of the periodic table and --- oft considered to be one of the lanthanoids. Found in some rare_earth --- minerals. Twenty_five natural isotopes exist. La_139 which is stable, --- and La_138 which has a half_life of 10^10 to 10^15 years. The other --- twenty_three isotopes are radioactive. It resembles the lanthanoids --- chemically. Lanthanum has a low to moderate level of toxicity, and should --- be handled with care. Discovered in 1839 by C.G. Mosander. -fun Lanthanum : Class ; -fun Lanthanum_Class : SubClass Lanthanum ElementalSubstance ; - --- Appearance unknown, however it is most likely --- silvery_white or grey and metallic. Lawrencium is a synthetic rare_earth --- metal. There are eight known radioisotopes, the most stable being Lr_262 --- with a half_life of 3.6 hours. Due to the short half_life of lawrencium, --- and its radioactivity, there are no known uses for it. Identified by --- Albert Ghiorso in 1961 at Berkeley. It was produced by bombarding --- californium with boron ions. The name is temporary {IUPAC} nomenclature, --- the origin of the name comes from Ernest O. Lawrence, the inventor of the --- cyclotron. If sufficient amounts of lawrencium were produced, it would --- pose a radiation hazard. -fun Lawrencium : Class ; -fun Lawrencium_Class : SubClass Lawrencium ElementalSubstance ; - --- Heavy dull grey ductile metallic element, belongs to --- group 14. Used in building construction, lead_place accumulators, bullets --- and shot, and is part of solder, pewter, bearing metals, type metals and --- fusible alloys. -fun Lead : Class ; -fun Lead_Class : SubClass Lead ElementalSubstance ; - --- Socket silvery metal. First member of group 1 of --- the periodic table. Lithium salts are used in psychomedicine. -fun Lithium : Class ; -fun Lithium_Class : SubClass Lithium ElementalSubstance ; - --- Silvery_white rare_earth metal which is --- relatively stable in air. It happens to be the most expensive rare_earth --- metal. Its found with almost all rare_earth metals, but is very difficult --- to separate from other elements. Least abundant of all natural elements. --- Used in metal alloys, and as a catalyst in various processes. There are --- two natural, stable isotopes, and seven radioisotopes, the most stable --- being Lu_174 with a half_life of 3.3 years. The separation of lutetium --- from {ytterbium} was described by Georges Urbain in 1907. It was --- discovered at approximately the same time by Carl Auer von Welsbach. The --- name comes from the Greek word lutetia which means Paris. -fun Lutetium : Class ; -fun Lutetium_Class : SubClass Lutetium ElementalSubstance ; - --- Silvery metallic element belonging to group 2 of --- the periodic table (alkaline_earth metals). It is essential for living --- organisms, and is used in a number of light alloys. Chemically very --- reactive, it forms a protective oxide coating when exposed to air and --- burns with an intense white flame. It also reacts with sulphur, nitrogen --- and the halogens. First isolated by Bussy in 1828. -fun Magnesium : Class ; -fun Magnesium_Class : SubClass Magnesium ElementalSubstance ; - --- Grey brittle metallic transition element. --- Rather electropositive, combines with some non_metals when heated. --- Discovered in 1774 by Scheele. -fun Manganese : Class ; -fun Manganese_Class : SubClass Manganese ElementalSubstance ; - --- Half_life of approximately 5ms. The creation --- of this element demonstrated that fusion techniques could indeed be used --- to make new, heavy nuclei. Made and identified by physicists of the Heavy --- Ion Research Laboratory, Darmstadt, West Germany in 1982. Named in honor --- of Lise Meitner the Austrian physicist. -fun Meitnerium : Class ; -fun Meitnerium_Class : SubClass Meitnerium ElementalSubstance ; - --- Radioactive metallic transuranic element. --- Belongs to the actinoid series. Only known isotope, Md_256 has a --- half_life of 1.3 hours. First identified by Glenn T. Seaborg, Albert --- Ghiorso and associates in 1955. Alternative name {unnilunium} has been --- proposed. Named after the 'inventor' of the periodic table, Dmitri --- Mendeleev. -fun Mendelevium : Class ; -fun Mendelevium_Class : SubClass Mendelevium ElementalSubstance ; - --- Heavy silvery liquid metallic element, belongs to --- the zinc group. Used in thermometers, barometers and other scientific --- apparatus. Less reactive than zinc and cadmium, does not displace --- hydrogen from acids. Forms a number of complexes and organomercury --- compounds. -fun Mercury : Class ; -fun Mercury_Class : SubClass Mercury ElementalSubstance ; - --- Silvery_white, hard metallic transition --- element. It is chemically unreactive and is not affected by most acids. --- It oxidizes at high temperatures. There are seven natural isotopes, and --- four radioisotopes, Mo_93 being the most stable with a half_life of 3500 --- years. Molybdenum is used in almost all high_strength steels, it has --- nuclear applications, and is a catalyst in petroleum refining. Discovered --- in 1778 by Carl Welhelm Scheele of Sweden. Impure metal was prepared in --- 1782 by Peter Jacob Hjelm. The name comes from the Greek word molybdos --- which means lead. Trace amounts of molybdenum are required for all known --- forms of life. All molybdenum compounds should be considered highly --- toxic, and will also cause severe birth defects. -fun Molybdenum : Class ; -fun Molybdenum_Class : SubClass Molybdenum ElementalSubstance ; - --- Soft bright silvery metallic element, belongs to --- the lanthanoids. Seven natural isotopes, Nd_144 being the only --- radioactive one with a half_life of 10^10 to 10^15 years. Six artificial --- radioisotopes have been produced. The metal is used in glass works to --- color class a shade of violet_purple and make it dichroic. One of the --- more reactive rare_earth metals, quickly reacts with air. Used in some --- rare_earth alloys. Neodymium is used to color the glass used in welder's --- glasses. Neodymium is also used in very powerful, permanent magnets --- (Nd2Fe14B). Discovered by Carl F. Auer von Welsbach in Austria in 1885 --- by separating didymium into its elemental components {praseodymium} and --- neodymium. The name comes from the Greek words 'neos didymos' which means --- 'new twin'. Neodymium should be considered highly toxic, however evidence --- would seem to show that it acts as little more than a skin and eye --- irritant. The dust however, presents a fire and explosion hazard. -fun Neodymium : Class ; -fun Neodymium_Class : SubClass Neodymium ElementalSubstance ; - --- Colourless gaseous element of group 18 on the --- periodic table (noble gases). Neon occurs in the atmosphere, and --- comprises 0.0018 percent of the volume of the atmosphere. It has a --- distinct reddish glow when used in discharge tubes and neon based lamps. --- It forms almost no chemical compounds. Neon was discovered in 1898 by Sir --- William Ramsey and M.W. Travers. -fun Neon : Class ; -fun Neon_Class : SubClass Neon ElementalSubstance ; - --- Radioactive metallic transuranic element, --- belongs to the actinoids. Np_237, the most stable isotope, has a --- half_life of 2.2*10^6 years and is a by product of nuclear reactors. The --- other known isotopes have mass numbers 229 through 236, and 238 through --- 241. Np_236 has a half_life of 5*10^3 years. First produced by Edwin M. --- McMillan and P.H. Abelson in 1940. -fun Neptunium : Class ; -fun Neptunium_Class : SubClass Neptunium ElementalSubstance ; - --- Malleable ductile silvery metallic transition --- element. Discovered by A.F. Cronstedt in 1751. -fun Nickel : Class ; -fun Nickel_Class : SubClass Nickel ElementalSubstance ; - --- Soft, ductile grey_blue metallic transition --- element. Used in special steels and in welded joints to increase --- strength. Combines with halogens and oxidizes in air at 200 degrees --- celsius. Discovered by Charles Hatchett in 1801 and isolated by --- Blomstrand in 1864. Called {columbium} originally. -fun Niobium : Class ; -fun Niobium_Class : SubClass Niobium ElementalSubstance ; - --- Colourless, gaseous element which belongs to --- group 15 of the periodic table. Constitutes ~78 percent of the atmosphere --- and is an essential part of the ecosystem. Nitrogen for industrial --- purposes is acquired by the fractional distillation of liquid air. --- Chemically inactive, reactive generally only at high temperatures or in --- electrical discharges. It was discovered in 1772 by D. Rutherford. -fun Nitrogen : Class ; -fun Nitrogen_Class : SubClass Nitrogen ElementalSubstance ; - --- Radioactive metallic transuranic element, belongs --- to the actinoids. Seven known isotopes exist, the most stable being --- No_254 with a half_life of 255 seconds. First identified with certainty --- by Albert Ghiorso and Glenn T. Seaborg in 1966. {Unnilbium} has been --- proposed as an alternative name. -fun Nobelium : Class ; -fun Nobelium_Class : SubClass Nobelium ElementalSubstance ; - --- Hard blue_white metallic transition element. Found --- with platinum and used in some alloys with platinum and iridium. -fun Osmium : Class ; -fun Osmium_Class : SubClass Osmium ElementalSubstance ; - --- A colourless, odourless gaseous element belonging --- to group 16 of the periodic table. It is the most abundant element --- present in the earth's crust. It also makes up 20.8 percent of the --- Earth's atmosphere. For industrial purposes, it is separated from liquid --- air by fractional distillation. It is used in high temperature welding, --- and in breathing. It commonly comes in the form of Oxygen, but is found --- as Ozone in the upper atmosphere. It was discovered by Priestley in --- 1774. -fun Oxygen : Class ; -fun Oxygen_Class : SubClass Oxygen ElementalSubstance ; - --- Soft white ductile transition element. Found --- with some copper and nickel ores. Does not react with oxygen at normal --- temperatures. Dissolves slowly in hydrochloric acid. Discovered in 1803 --- by W.H. Wollaston. -fun Palladium : Class ; -fun Palladium_Class : SubClass Palladium ElementalSubstance ; - --- Non_metallic element belonging to group 15 of --- the periodic table. Has a multiple allotropic forms. Essential element --- for living organisms. It was discovered by Brandt in 1669. -fun Phosphorus : Class ; -fun Phosphorus_Class : SubClass Phosphorus ElementalSubstance ; - --- Attractive greyish_white metal. When pure, it is --- malleable and ductile. Does not oxidize in air, insoluble in hydrochloric --- and nitric acid. Corroded by halogens, cyandies, sulphur and alkalis. --- {Hydrogen} and {oxygen} react explosively in the presence of platinum. --- There are six stable isotopes and three radioisotopes, the most stable --- being Pt_193 with a half_life of 60 years. Platinum is used in jewelry, --- laboratory equipment, electrical contacts, dentistry, and anti_pollution --- devices in cars. PtCl2(NH3)2 is used to treat some forms of cancer. --- Platinum_{cobalt} alloys have magnetic properties. It is also used in the --- definition of the Standard Hydrogen Electrode. Discovered by Antonio de --- Ulloa in South America in 1735. The name comes from the Spanish word --- platina which means silver. Platinum metal is generally not a health --- concern due to its unreactivity, however platinum compounds should be --- considered highly toxic. -fun Platinum : Class ; -fun Platinum_Class : SubClass Platinum ElementalSubstance ; - --- Dense silvery radioactive metallic transuranic --- element, belongs to the actinoids. Pu_244 is the most stable isotope with --- a half_life of 7.6*10^7 years. Thirteen isotopes are known. Pu_239 is --- the most important, it undergoes nuclear fission with slow neutrons and is --- hence important to nuclear weapons and reactors. Plutonium production is --- monitored down to the gram to prevent military misuse. First produced by --- Gleen T. Seaborg, Edwin M. McMillan, J.W. Kennedy and A.C. Wahl in --- 1940. -fun Plutonium : Class ; -fun Plutonium_Class : SubClass Plutonium ElementalSubstance ; - --- Rare radioactive metallic element, belongs to --- group 16 of the periodic table. Over 30 known isotopes exist, the most of --- all elements. Po_209 has a half_life of 103 years. Possible uses in --- heating spacecraft. Discovered by Marie Curie in 1898 in a sample of --- pitchblende. -fun Polonium : Class ; -fun Polonium_Class : SubClass Polonium ElementalSubstance ; - --- Soft silvery metallic element belonging to group --- 1 of the periodic table (alkali metals). Occurs naturally in seawater and --- a many minerals. Highly reactive, chemically, it resembles sodium in its --- behavior and compounds. Discovered by Sir Humphry Davy in 1807. -fun Potassium : Class ; -fun Potassium_Class : SubClass Potassium ElementalSubstance ; - --- Soft silvery metallic element, belongs to the --- lanthanoids. Only natural isotope is Pr_141 which is not radioactive. --- Fourteen radioactive isotopes have been artificially produced. Used in --- rare_earth alloys. Discovered in 1885 by C.A. von Welsbach. -fun Praseodymium : Class ; -fun Praseodymium_Class : SubClass Praseodymium ElementalSubstance ; - --- Soft silvery metallic element, belongs to the --- lanthanoids. Pm_147, the only natural isotope, is radioactive and has a --- half_life of 252 years. Eighteen radioisotopes have been produced, but --- all have very short half_lives. Found only in nuclear decay waste. --- Pm_147 is of interest as a beta_decay source, however Pm_146 and Pm_148 --- have to be removed from it first, as they generate gamma radiation. --- Discovered by J.A. Marinsky, L.E. Glendenin and C.D. Coryell in --- 1947. -fun Promethium : Class ; -fun Promethium_Class : SubClass Promethium ElementalSubstance ; - --- Radioactive metallic element, belongs to the --- actinoids. The most stable isotope, Pa_231 has a half_life of 2.43*10^4 --- years. At least 10 other radioactive isotopes are known. No practical --- applications are known. Discovered in 1917 by Lise Meitner and Otto --- Hahn. -fun Protactinium : Class ; -fun Protactinium_Class : SubClass Protactinium ElementalSubstance ; - --- Radioactive metallic transuranic element, belongs --- to group 2 of the periodic table. Most stable isotope, Ra_226 has a --- half_life of 1602 years, which decays into radon. Isolated from --- pitchblende in 1898 Marie and Pierre Curie. -fun Radium : Class ; -fun Radium_Class : SubClass Radium ElementalSubstance ; - --- Colorless radioactive gaseous element, belongs to --- the noble gases. Of the twenty known isotopes, the most stable is Rn_222 --- with a half_life of 3.8 days. Formed by the radioactive decay of --- {Radium}_226. Radon itself decays into {polonium}. Used in radiotherapy. --- As a noble gas, it is effectively inert, though radon fluoride has been --- synthesized. First isolated in 1908 by Ramsey and Gray. -fun Radon : Class ; -fun Radon_Class : SubClass Radon ElementalSubstance ; - --- Silvery_white metallic transition element. --- Obtained as a by_product of molybdenum refinement. Rhenium_molybdenum --- alloys are superconducting. -fun Rhenium : Class ; -fun Rhenium_Class : SubClass Rhenium ElementalSubstance ; - --- Silvery white metallic transition element. Found --- with platinum and used in some platinum alloys. Not attacked by acids, --- dissolves only in aqua regia. Discovered in 1803 by W.H. Wollaston. -fun Rhodium : Class ; -fun Rhodium_Class : SubClass Rhodium ElementalSubstance ; - --- Soft silvery metallic element, belongs to group 1 --- of the periodic table. Rb_97, the naturally occurring isotope, is --- radioactive. It is highly reactive, with properties similar to other --- elements in group 1, like igniting spontaneously in air. Discovered --- spectroscopically in 1861 by W. Bunsen and G.R. Kirchoff. -fun Rubidium : Class ; -fun Rubidium_Class : SubClass Rubidium ElementalSubstance ; - --- Hard white metallic transition element. Found --- with platinum, used as a catalyst in some platinum alloys. Dissolves in --- fused alkalis, and is not attacked by acids. Reacts with halogens and --- oxygen at high temperatures. Isolated in 1844 by K.K. Klaus. -fun Ruthenium : Class ; -fun Ruthenium_Class : SubClass Ruthenium ElementalSubstance ; - --- Soft silvery metallic element, belongs to the --- lanthanoids. Seven natural isotopes, Sm_147 is the only radioisotope, and --- has a half_life of 2.5*10^11 years. Used for making special alloys needed --- in the production of nuclear reactors. Also used as a neutron absorber. --- Small quantities of samarium oxide is used in special optical glasses. --- The largest use of the element is its ferromagnetic alloy which produces --- permanent magnets that are five times stronger than magnets produced by --- any other material. Discovered by Francois Lecoq de Boisbaudran in --- 1879. -fun Samarium : Class ; -fun Samarium_Class : SubClass Samarium ElementalSubstance ; - --- Rare soft silvery metallic element belonging to --- group 3 of the periodic table. There are ten isotopes, nine of which are --- radioactive and have short half_lives. Predicted in 1869 by Mendeleev, --- isolated by Nilson in 1879. -fun Scandium : Class ; -fun Scandium_Class : SubClass Scandium ElementalSubstance ; - --- Metalloid element, belongs to group 16 of the --- periodic table. Multiple allotropic forms exist. Chemically resembles --- sulphur. Discovered in 1817 by Jons J. Berzelius. -fun Selenium : Class ; -fun Selenium_Class : SubClass Selenium ElementalSubstance ; - --- Metalloid element belonging to group 14 of the --- periodic table. It is the second most abundant element in the Earth's --- crust, making up 25.7 percent of it by weight. Chemically less reactive --- than carbon. First identified by Lavoisier in 1787 and first isolated in --- 1823 by Berzelius. -fun Silicon : Class ; -fun Silicon_Class : SubClass Silicon ElementalSubstance ; - --- White lustrous soft metallic transition element. --- Found in both its elemental form and in minerals. Used in jewellery, --- tableware and so on. Less reactive than silver, chemically. -fun Silver : Class ; -fun Silver_Class : SubClass Silver ElementalSubstance ; - --- Soft silvery reactive element belonging to group 1 --- of the periodic table (alkali metals). It is highly reactive, oxidizing --- in air and reacting violently with water, forcing it to be kept under oil. --- It was first isolated by Humphrey Davy in 1807. -fun Sodium : Class ; -fun Sodium_Class : SubClass Sodium ElementalSubstance ; - --- Soft yellowish metallic element, belongs to --- group 2 of the periodic table. Highly reactive chemically. Sr_90 is --- present in radioactive fallout and has a half_life of 28 years. --- Discovered in 1798 by Klaproth and Hope, isolated in 1808 by Humphry --- Davy. -fun Strontium : Class ; -fun Strontium_Class : SubClass Strontium ElementalSubstance ; - --- Yellow, nonmetallic element belonging to group 16 --- of the periodic table. It is an essential element in living organisms, --- needed in the amino acids cysteine and methionine, and hence in many --- proteins. Absorbed by plants from the soil as sulphate ion. -fun Sulphur : Class ; -fun Sulphur_Class : SubClass Sulphur ElementalSubstance ; - --- Heavy blue_grey metallic transition element. --- Ta_181 is a stable isotope, and Ta_180 is a radioactive isotope, with a --- half_life in excess of 10^7 years. Used in surgery as it is unreactive. --- Forms a passive oxide layer in air. Identified in 1802 by Ekeberg and --- isolated in 1820 by Jons J. Berzelius. -fun Tantalum : Class ; -fun Tantalum_Class : SubClass Tantalum ElementalSubstance ; - --- Radioactive metallic transition element. Can --- be detected in some stars and the fission products of uranium. First made --- by Perrier and Segre by bombarding molybdenum with deutrons, giving them --- Tc_97. Tc_99 is the most stable isotope with a half_life of 2.6*10^6 --- years. Sixteen isotopes are known. Organic technetium compounds are used --- in bone imaging. Chemical properties are intermediate between rhenium and --- manganese. -fun Technetium : Class ; -fun Technetium_Class : SubClass Technetium ElementalSubstance ; - --- Silvery metalloid element of group 16. Eight --- natural isotopes, nine radioactive isotopes. Used in semiconductors and --- to a degree in some steels. Chemistry is similar to {sulphur}. --- Discovered in 1782 by Franz Miller. -fun Tellurium : Class ; -fun Tellurium_Class : SubClass Tellurium ElementalSubstance ; - --- Silvery metallic element belonging to the --- lanthanoids. Tb_159 is the only stable isotope, there are seventeen --- artificial isotopes. Discovered by G.G. Mosander in 1843. -fun Terbium : Class ; -fun Terbium_Class : SubClass Terbium ElementalSubstance ; - --- Pure, unreacted thallium appears silvery_white --- and exhibits a metallic lustre. Upon reacting with air, it begins to turn --- bluish_grey and looks like lead. It is very malleable, and can be cut --- with a knife. There are two stable isotopes, and four radioisotopes, --- Tl_204 being the most stable with a half_life of 3.78 years. Thallium --- sulphate was used as a rodenticide. Thallium sulphine's conductivity --- changes with exposure to infrared light, this gives it a use in infrared --- detectors. Discovered by Sir William Crookes via spectroscopy. Its name --- comes from the Greek word thallos, which means green twig. Thallium and --- its compounds are toxic and can cause cancer. -fun Thallium : Class ; -fun Thallium_Class : SubClass Thallium ElementalSubstance ; - --- Grey radioactive metallic element. Belongs to --- actinoids. Found in monazite sand in Brazil, India and the US. --- Thorium_232 has a half_life of 1.39x10^10 years. Can be used as a nuclear --- fuel for breeder reactors. Thorium_232 captures slow {neutron}s and --- breeds uranium_233. Discovered by Jons J. Berzelius in 1829. -fun Thorium : Class ; -fun Thorium_Class : SubClass Thorium ElementalSubstance ; - --- Soft grey metallic element that belongs to the --- lanthanoids. One natural isotope exists, Tm_169, and seventeen artificial --- isotopes have been produced. No known uses for the element. Discovered --- in 1879 by Per Theodor Cleve. -fun Thulium : Class ; -fun Thulium_Class : SubClass Thulium ElementalSubstance ; - --- Silvery malleable metallic element belonging to group --- 14 of the periodic table. Twenty_six isotopes are known, five of which --- are radioactive. Chemically reactive. Combines directly with chlorine --- and oxygen and displaces hydrogen from dilute acids. -fun Tin : Class ; -fun Tin_Class : SubClass Tin ElementalSubstance ; - --- White metallic transition element. Occurs in --- numerous minerals. Used in strong, light corrosion_resistant alloys. --- Forms a passive oxide coating when exposed to air. First discovered by --- Gregor in 1789. -fun Titanium : Class ; -fun Titanium_Class : SubClass Titanium ElementalSubstance ; - --- White or grey metallic transition element, --- formerly called {wolfram}. Forms a protective oxide in air and can be --- oxidized at high temperature. First isolated by Jose and Fausto de --- Elhuyer in 1783. -fun Tungsten : Class ; -fun Tungsten_Class : SubClass Tungsten ElementalSubstance ; - --- Half_life of approximately 10ms. Reported in --- 1994 by German researchers at Darmstadt, Germany. -fun Unnildecium : Class ; -fun Unnildecium_Class : SubClass Unnildecium ElementalSubstance ; - --- Half_life of 0.9 +/_ 0.2 s. Discovered by the --- Joint Institute for Nuclear Research at Dubna (U.S.S.R.) in June of 1974. --- Its existence was confirmed by the Lawrence Berkeley Laboratory and --- Livermore National Laboratory in September of 1974. -fun Unnilhexium : Class ; -fun Unnilhexium_Class : SubClass Unnilhexium ElementalSubstance ; - --- Radioactive transition metal. -fun Unniloctium : Class ; -fun Unniloctium_Class : SubClass Unniloctium ElementalSubstance ; - --- Radioactive transactinide element. Half_life --- of 1.6s. Discovered in 1970 by Berkeley researchers. So far, seven --- isotopes have been discovered. -fun Unnilpentium : Class ; -fun Unnilpentium_Class : SubClass Unnilpentium ElementalSubstance ; - --- Radioactive transactinide element. Expected --- to have similar chemical properties to those displayed by hafnium. Rf_260 --- was discovered by the Joint Nuclear Research Institute at Dubna (U.S.S.R.) --- in 1964. Researchers at Berkeley discovered Unq_257 and Unq_258 in --- 1964. -fun Unnilquadium : Class ; -fun Unnilquadium_Class : SubClass Unnilquadium ElementalSubstance ; - --- Radioactive transition metal. Half_life of --- approximately 1/500 s. Discovered by the Joint Institute for Nuclear --- Research at Dubna (U.S.S.R.) in 1976. Confirmed by West German physicists --- at the Heavy Ion Research Laboratory at Darmstadt. -fun Unnilseptium : Class ; -fun Unnilseptium_Class : SubClass Unnilseptium ElementalSubstance ; - --- White radioactive metallic element belonging to --- the actinoids. Three natural isotopes, U_238, U_235 and U_234. --- Uranium_235 is used as the fuel for nuclear reactors and weapons. --- Discovered by Martin H. Klaproth in 1789. -fun Uranium : Class ; -fun Uranium_Class : SubClass Uranium ElementalSubstance ; - --- Soft and ductile, bright white metal. Good --- resistance to corrosion by alkalis, sulphuric and hydrochloric acid. It --- oxidizes readily about 933K. There are two naturally occurring isotopes --- of vanadium, and 5 radioisotopes, V_49 having the longest half_life at 337 --- days. Vanadium has nuclear applications, the foil is used in cladding --- titanium to steel, and vanadium_gallium tape is used to produce a --- superconductive magnet. Originally discovered by Andres Manuel del Rio of --- Mexico City in 1801. His discovery went unheeded, however, and in 1820, --- Nils Gabriel Sefstron of Sweden rediscovered it. Metallic vanadium was --- isolated by Henry Enfield Roscoe in 1867. The name vanadium comes from --- {Vanadis}, a goddess of Scandinavian mythology. Silvery_white metallic --- transition element. Vanadium is essential to {ascidian}s. Rats and --- chickens are also known to require it. Metal powder is a fire hazard, and --- vanadium compounds should be considered highly toxic. May cause lung --- cancer if inhaled. -fun Vanadium : Class ; -fun Vanadium_Class : SubClass Vanadium ElementalSubstance ; - --- Colourless, odourless gas belonging to group 18 on --- the periodic table (the noble gases.) Nine natural isotopes and seven --- radioactive isotopes are known. Xenon was part of the first noble_gas --- compound synthesized. Several others involving Xenon have been found --- since then. Xenon was discovered by Ramsey and Travers in 1898. -fun Xenon : Class ; -fun Xenon_Class : SubClass Xenon ElementalSubstance ; - --- Silvery metallic element of the lanthanoids. --- Seven natural isotopes and ten artificial isotopes are known. Used in --- certain steels. Discovered by J.D.G. Marignac in 1878. -fun Ytterbium : Class ; -fun Ytterbium_Class : SubClass Ytterbium ElementalSubstance ; - --- Silvery_grey metallic element of group 3 on the --- periodic table. Found in uranium ores. The only natural isotope is Y_89, --- there are 14 other artificial isotopes. Chemically resembles the --- lanthanoids. Stable in the air below 400 degrees, celsius. Discovered in --- 1828 by Friedrich Wohler. -fun Yttrium : Class ; -fun Yttrium_Class : SubClass Yttrium ElementalSubstance ; - --- Blue_white metallic element. Occurs in multiple --- compounds naturally. Five stable isotopes are six radioactive isotopes --- have been found. Chemically a reactive metal, combines with oxygen and --- other non_metals, reacts with dilute acids to release hydrogen. -fun Zinc : Class ; -fun Zinc_Class : SubClass Zinc ElementalSubstance ; - --- Grey_white metallic transition element. Five --- natural isotopes and six radioactive isotopes are known. Used in nuclear --- reactors for a {neutron} absorber. Discovered in 1789 by Martin Klaproth, --- isolated in 1824 by Berzelius. -fun Zirconium : Class ; -fun Zirconium_Class : SubClass Zirconium ElementalSubstance ; -} \ No newline at end of file diff --git a/examples/SUMO/elementsEng.gf b/examples/SUMO/elementsEng.gf deleted file mode 100644 index 3d0a09f73..000000000 --- a/examples/SUMO/elementsEng.gf +++ /dev/null @@ -1,117 +0,0 @@ ---# -path=.:englishExtended -concrete elementsEng of elements = BasicEng ** open ParadigmsEng,NounEng in { - -lin - -Hydrogen = UseN (mkN "Hydrogen") ; -Helium = UseN (mkN "Helium") ; -Lithium = UseN (mkN "Lithium") ; -Beryllium = UseN (mkN "Beryllium") ; -Boron = UseN (mkN "Boron") ; -Carbon = UseN (mkN "Carbon") ; -Nitrogen = UseN (mkN "Nitrogen") ; -Oxygen = UseN (mkN "Oxygen") ; -Fluorine = UseN (mkN "Fluorine") ; -Neon = UseN (mkN "Neon") ; -Sodium = UseN (mkN "Sodium") ; -Magnesium = UseN (mkN "Magnesium") ; -Aluminum = UseN (mkN "Aluminum") ; -Silicon = UseN (mkN "Silicon") ; -Phosphorus = UseN (mkN "Phosphorus") ; -Sulphur = UseN (mkN "Sulphur") ; -Chlorine = UseN (mkN "Chlorine") ; -Argon = UseN (mkN "Argon") ; -Potassium = UseN (mkN "Potassium") ; -Calcium = UseN (mkN "Calcium") ; -Scandium = UseN (mkN "Scandium") ; -Titanium = UseN (mkN "Titanium") ; -Vanadium = UseN (mkN "Vanadium") ; -Chromium = UseN (mkN "Chromium") ; -Manganese = UseN (mkN "Manganese") ; -Iron = UseN (mkN "Iron") ; -Cobalt = UseN (mkN "Cobalt") ; -Nickel = UseN (mkN "Nickel") ; -Copper = UseN (mkN "Copper") ; -Zinc = UseN (mkN "Zinc") ; -Gallium = UseN (mkN "Gallium") ; -Germanium = UseN (mkN "Germanium") ; -Arsenic = UseN (mkN "Arsenic") ; -Selenium = UseN (mkN "Selenium") ; -Bromine = UseN (mkN "Bromine") ; -Krypton = UseN (mkN "Krypton") ; -Rubidium = UseN (mkN "Rubidium") ; -Strontium = UseN (mkN "Strontium") ; -Yttrium = UseN (mkN "Yttrium") ; -Zirconium = UseN (mkN "Zirconium") ; -Niobium = UseN (mkN "Niobium") ; -Molybdenum = UseN (mkN "Molybdenum") ; -Technetium = UseN (mkN "Technetium") ; -Ruthenium = UseN (mkN "Ruthenium") ; -Rhodium = UseN (mkN "Rhodium") ; -Palladium = UseN (mkN "Palladium") ; -Silver = UseN (mkN "Silver") ; -Cadmium = UseN (mkN "Cadmium") ; -Indium = UseN (mkN "Indium") ; -Tin = UseN (mkN "Tin") ; -Antimony = UseN (mkN "Antimony") ; -Tellurium = UseN (mkN "Tellurium") ; -Iodine = UseN (mkN "Iodine") ; -Xenon = UseN (mkN "Xenon") ; -Caesium = UseN (mkN "Caesium") ; -Barium = UseN (mkN "Barium") ; -Lanthanum = UseN (mkN "Lanthanum") ; -Cerium = UseN (mkN "Cerium") ; -Praseodymium = UseN (mkN "Praseodymium") ; -Neodymium = UseN (mkN "Neodymium") ; -Promethium = UseN (mkN "Promethium") ; -Samarium = UseN (mkN "Samarium") ; -Europium = UseN (mkN "Europium") ; -Gadolinium = UseN (mkN "Gadolinium") ; -Terbium = UseN (mkN "Terbium") ; -Dysprosium = UseN (mkN "Dysprosium") ; -Holmium = UseN (mkN "Holmium") ; -Erbium = UseN (mkN "Erbium") ; -Thulium = UseN (mkN "Thulium") ; -Ytterbium = UseN (mkN "Ytterbium") ; -Lutetium = UseN (mkN "Lutetium") ; -Hafnium = UseN (mkN "Hafnium") ; -Tantalum = UseN (mkN "Tantalum") ; -Tungsten = UseN (mkN "Tungsten") ; -Rhenium = UseN (mkN "Rhenium") ; -Osmium = UseN (mkN "Osmium") ; -Iridium = UseN (mkN "Iridium") ; -Platinum = UseN (mkN "Platinum") ; -Gold = UseN (mkN "Gold") ; -Mercury = UseN (mkN "Mercury") ; -Thallium = UseN (mkN "Thallium") ; -Lead = UseN (mkN "Lead") ; -Bismuth = UseN (mkN "Bismuth") ; -Polonium = UseN (mkN "Polonium") ; -Astatine = UseN (mkN "Astatine") ; -Radon = UseN (mkN "Radon") ; -Francium = UseN (mkN "Francium") ; -Radium = UseN (mkN "Radium") ; -Actinium = UseN (mkN "Actinium") ; -Thorium = UseN (mkN "Thorium") ; -Protactinium = UseN (mkN "Protactinium") ; -Uranium = UseN (mkN "Uranium") ; -Neptunium = UseN (mkN "Neptunium") ; -Plutonium = UseN (mkN "Plutonium") ; -Americium = UseN (mkN "Americium") ; -Curium = UseN (mkN "Curium") ; -Berkelium = UseN (mkN "Berkelium") ; -Californium = UseN (mkN "Californium") ; -Einsteinium = UseN (mkN "Einsteinium") ; -Fermium = UseN (mkN "Fermium") ; -Mendelevium = UseN (mkN "Mendelevium") ; -Nobelium = UseN (mkN "Nobelium") ; -Lawrencium = UseN (mkN "Lawrencium") ; -Unnilquadium = UseN (mkN "Unnilquadium") ; -Unnilpentium = UseN (mkN "Unnilpentium") ; -Unnilhexium = UseN (mkN "Unnilhexium") ; -Unnilseptium = UseN (mkN "Unnilseptium") ; -Unniloctium = UseN (mkN "Unniloctium") ; -Meitnerium = UseN (mkN "Meitnerium") ; -Unnildecium = UseN (mkN "Unnildecium") ; - -}; \ No newline at end of file diff --git a/examples/SUMO/engineering.gf b/examples/SUMO/engineering.gf deleted file mode 100644 index dea6afda6..000000000 --- a/examples/SUMO/engineering.gf +++ /dev/null @@ -1,1082 +0,0 @@ -abstract engineering = open Merge, Mid_level_ontology in { - - - - --- A PureTwopole that accumulates across variable. -fun AcrossVariableAccumulator : Class ; -fun AcrossVariableAccumulator_Class : SubClass AcrossVariableAccumulator PureTwopole ; - --- A Source that models a generator of across variable. -fun AcrossVariableSource : Class ; -fun AcrossVariableSource_Class : SubClass AcrossVariableSource Source ; - --- algebraic equation or set of equations -fun AlgebraicAttribute : Ind EquationAttribute ; - - --- An Equation that is not --- a DifferentialEquation -fun AlgebraicEquation : Class ; -fun AlgebraicEquation_Class : SubClass AlgebraicEquation Equation ; - --- Set of both differential and algebraic equations -fun AlgebroDifferentialAttribute : Ind InternalAttribute ; - - --- Electronic equipment that increases strength of --- signals passing through it, it can be modeled using a controlled --- source, or an operational amplifier. -fun Amplifier : Class ; -fun Amplifier_Class : SubClass Amplifier ElectricalCircuit ; - --- PhysicalDimension of angular velocity, [s^_1]. -fun AngularVelocity : Ind PhysicalDimension ; - - --- set of application domains (medicine, physics, etc) -fun ApplicationDomain : Class ; -fun ApplicationDomain_Class : SubClass ApplicationDomain InternalAttribute ; - --- article -fun ArticleCategory : Ind DocumentCategory ; - - --- astronomy -fun AstronomyDomain : Class ; -fun AstronomyDomain_Class : SubClass AstronomyDomain PhysicsDomain ; - --- For given class and for given attribute, return --- a subclass of the class of object having the attribute -fun AttrFn : Class -> El Attribute -> Class ; - - --- autonomous -fun Autonomous : Class ; -fun Autonomous_Class : SubClass Autonomous InternalAttribute ; - --- With no backlash. -fun Backlashless : Class ; -fun Backlashless_Class : SubClass Backlashless InternalAttribute ; - --- the part of a transistor that separates the emitter --- from the collector -fun Base : Class ; -fun Base_Class : SubClass Base Terminal ; - -fun Battery_DCPowerSource : SubClass Battery DCPowerSource ; - --- Bessel's equation -fun BesselsEquation : Class ; -fun BesselsEquation_Class : SubClass BesselsEquation (both NonlinearEquation OrdinaryDifferentialEquation) ; - - --- Bipolar transistor -fun BjtTransistor : Class ; -fun BjtTransistor_Class : SubClass BjtTransistor Transistor ; - --- A SinglePhaseRectifier of --- that exploits both polarities of the input power source. -fun BridgeSinglePhaseRectifier : Class ; -fun BridgeSinglePhaseRectifier_Class : SubClass BridgeSinglePhaseRectifier SinglePhaseRectifier ; - --- With no brushes (of electrical motors) -fun Brushless : Class ; -fun Brushless_Class : SubClass Brushless InternalAttribute ; - --- An ElectricalComponent characterized by its --- capacitance. -fun Capacitor : Class ; -fun Capacitor_Class : SubClass Capacitor ElectricalComponent ; - --- An AcrossVariableAccumulator from electrical energy domain. -fun CapacitorElement : Class ; -fun CapacitorElement_Class : SubClass CapacitorElement ElectricDevice ; - --- 4_wheeled motor vehicle, usually propelled by --- an internal combustion engine -fun Car : Class ; -fun Car_Class : SubClass Car Vehicle ; - --- circuit theory -fun CircuitTheoryDomain : Class ; -fun CircuitTheoryDomain_Class : SubClass CircuitTheoryDomain (both ElectricalEngineeringDomain PhysicsDomain) ; - - --- the electrode in a transistor through which a --- primary flow of carriers leaves the inter_electrode region -fun Collector : Class ; -fun Collector_Class : SubClass Collector Terminal ; - --- The ability of material to stretch or bend. -fun Compliance : Ind PhysicalAttribute ; - - --- A collection of bytes stored as an --- individual entity. All data on disk is stored as a file with an --- assigned file name that is unique within the folder (directory) --- it resides in. ComputerFile file systems contain only files and folders -fun ComputerFile : Class ; -fun ComputerFile_Class : SubClass ComputerFile ContentBearingObject ; - -fun ComputerProgram_ITAgent : SubClass ComputerProgram ITAgent ; - --- the ability of a material to lead current -fun Conductivity : Ind PhysicalAttribute ; - - --- A Substance that readily conducts --- electricity. -fun ConductorSubstance : Class ; -fun ConductorSubstance_Class : SubClass ConductorSubstance Substance ; - --- A class of control design method -fun ControlDesignMethod : Class ; -fun ControlDesignMethod_Class : SubClass ControlDesignMethod Method ; - --- control -fun ControlDomain : Class ; -fun ControlDomain_Class : SubClass ControlDomain EngineeringDomain ; - --- a mechanism that controls the operation of some --- device -fun Controller : Class ; -fun Controller_Class : SubClass Controller UnknownDomainDevice ; - --- PhysicalDimension of electrical current, [A]. -fun Current : Ind PhysicalDimension ; - - --- A direct_current PowerSource. -fun DCPowerSource : Class ; -fun DCPowerSource_Class : SubClass DCPowerSource PowerSource ; - --- A Dissipator from translatory energy domain. -fun DamperElement : Class ; -fun DamperElement_Class : SubClass DamperElement (both Dissipator TranslatoryTwopole) ; - - --- A direct_current electrical motor. -fun DcMotor : Class ; -fun DcMotor_Class : SubClass DcMotor ElectricalMotor ; - --- differential equation or set of equations -fun DifferentialAttribute : Ind EquationAttribute ; - - --- An Equation containing differentials --- of a function -fun DifferentialEquation : Class ; -fun DifferentialEquation_Class : SubClass DifferentialEquation Equation ; - --- Dimensionless PhysicalDimension. -fun Dimensionless : Ind PhysicalDimension ; - - --- A semiconductor device that consists of a p_n --- junction, it is used e.g. in rectifiers or demodulators. -fun Diode : Class ; -fun Diode_Class : SubClass Diode SemiconductorComponent ; - --- Valve that controls the direction --- of flow of a fluid -fun DirectionalControlValve : Class ; -fun DirectionalControlValve_Class : SubClass DirectionalControlValve Valve ; - --- A method of converting continuous problem --- to a discrete one, loaded by some discretization error. -fun Discretization : Class ; -fun Discretization_Class : SubClass Discretization MathematicalMethod ; - --- A PureTwopole that models a dissipation of energy. -fun Dissipator : Class ; -fun Dissipator_Class : SubClass Dissipator PureTwopole ; - --- document category -fun DocumentCategory : Class ; -fun DocumentCategory_Class : SubClass DocumentCategory WebDocumentAttribute ; - --- A SinglePhaseRectifier of --- that exploits both polarities of the input power source. -fun DoublerSinglePhaseRectifier : Class ; -fun DoublerSinglePhaseRectifier_Class : SubClass DoublerSinglePhaseRectifier SinglePhaseRectifier ; - --- Asserts that the constitutive relation of --- a multipole does depend on time. -fun DynamicMultipole : Ind MultipoleAttribute ; - - --- Electrical energetic interaction -fun Electrical : Ind PhysicalDomain ; - - --- A complex ElectricDevice consisting --- of several mutually interconnected electrical components. -fun ElectricalCircuit : Class ; -fun ElectricalCircuit_Class : SubClass ElectricalCircuit ElectricDevice ; - --- A discrete ElectricDevice for --- general usage, such as resistors, capacitors, diodes, transistors etc. -fun ElectricalComponent : Class ; -fun ElectricalComponent_Class : SubClass ElectricalComponent ElectricDevice ; - --- An ElectricalComponent designed to --- transmit electricity -fun ElectricalConductor : Class ; -fun ElectricalConductor_Class : SubClass ElectricalConductor ElectricalComponent ; - --- electrical drives (motors) -fun ElectricalDrivesDomain : Class ; -fun ElectricalDrivesDomain_Class : SubClass ElectricalDrivesDomain ElectroMechanicalDevicesDomain ; - --- domain involving electrical engineering -fun ElectricalEngineeringDomain : Class ; -fun ElectricalEngineeringDomain_Class : SubClass ElectricalEngineeringDomain EngineeringDomain ; - --- A Method used in electrical --- engineering for designing and constructing electrical devices. -fun ElectricalEngineeringMethod : Class ; -fun ElectricalEngineeringMethod_Class : SubClass ElectricalEngineeringMethod Method ; - --- An electrical motor. -fun ElectricalMotor : Class ; -fun ElectricalMotor_Class : SubClass ElectricalMotor (both ElectricDevice Motor) ; - - --- A MultipoleModel containing only --- electrical multipoles. -fun ElectricalMultipoleModel : Class ; -fun ElectricalMultipoleModel_Class : SubClass ElectricalMultipoleModel MultipoleModel ; - --- A Process in which electrical --- interactions take place -fun ElectricalProcess : Class ; -fun ElectricalProcess_Class : SubClass ElectricalProcess NaturalProcess ; - --- a resonance of electrical energy. -fun ElectricalResonance : Class ; -fun ElectricalResonance_Class : SubClass ElectricalResonance (both ElectricalProcess Resonance) ; - - --- A PureTwopole from electrical energy domain. -fun ElectricalTwopole : Class ; -fun ElectricalTwopole_Class : SubClass ElectricalTwopole PureTwopole ; - --- electrical drives (motors) -fun ElectroMechanicalDevicesDomain : Class ; -fun ElectroMechanicalDevicesDomain_Class : SubClass ElectroMechanicalDevicesDomain (both ElectricalEngineeringDomain MechanicalEngineeringDomain) ; - - --- electronic circuits _ electrical circuits --- containing complex semiconductor components -fun ElectronicsDomain : Class ; -fun ElectronicsDomain_Class : SubClass ElectronicsDomain ElectricalEngineeringDomain ; - --- the electrode in a transistor where electrons originate -fun Emitter : Class ; -fun Emitter_Class : SubClass Emitter Terminal ; - --- engineering (mechanical, electrical) -fun EngineeringDomain : Class ; -fun EngineeringDomain_Class : SubClass EngineeringDomain ScienceDomain ; - --- a process of designing, manufacturing and --- operating of an engineering system involving all stages of the life cycle. -fun EngineersProcess : Class ; -fun EngineersProcess_Class : SubClass EngineersProcess EngineersSubprocess ; - --- a class of subprocesses that are needed to --- design and operate an engineering system -fun EngineersSubprocess : Class ; -fun EngineersSubprocess_Class : SubClass EngineersSubprocess IntentionalProcess ; - --- a mathematical statement that two expressions are --- equal. -fun Equation : Class ; -fun Equation_Class : SubClass Equation Proposition ; - --- an attribute that applies to an equation --- or to a set of equations -fun EquationAttribute : Class ; -fun EquationAttribute_Class : SubClass EquationAttribute InternalAttribute ; - --- Field_effect transistor. -fun FetTransistor : Class ; -fun FetTransistor_Class : SubClass FetTransistor Transistor ; - --- file system -fun FileSystem : Class ; -fun FileSystem_Class : SubClass FileSystem Group ; - --- A DifferentialEquation --- where variables are differentiated only once. -fun FirstOrderDifferentialEquation : Class ; -fun FirstOrderDifferentialEquation_Class : SubClass FirstOrderDifferentialEquation DifferentialEquation ; - --- A FluidPowerDevice designed to transform --- fluid_power energy into mechanical translatory energy. -fun FluidCylinder : Class ; -fun FluidCylinder_Class : SubClass FluidCylinder (both FluidPowerDevice MechanicalDevice) ; - - --- Fluid power energetic interaction -fun FluidPower : Ind PhysicalDomain ; - - --- An EngineeringComponent in function of --- which play role fluid_power energetical interactions. -fun FluidPowerDevice : Class ; -fun FluidPowerDevice_Class : SubClass FluidPowerDevice EngineeringComponent ; - --- fluid power (hydraulic) systems -fun FluidPowerDomain : Class ; -fun FluidPowerDomain_Class : SubClass FluidPowerDomain MechanicalEngineeringDomain ; - --- PhysicalDimension of force, [N]. -fun Force : Ind PhysicalDimension ; - - --- Computing a Fourier series for given --- periodic function -fun FourierAnalysis : Class ; -fun FourierAnalysis_Class : SubClass FourierAnalysis MathematicalMethod ; - --- Reconstruction of a periodic function --- from its Fourier series representation. -fun FourierSynthesis : Class ; -fun FourierSynthesis_Class : SubClass FourierSynthesis MathematicalMethod ; - --- A Multipole with exactly four poles. -fun Fourpole : Class ; -fun Fourpole_Class : SubClass Fourpole Multipole ; - --- Alters the frequency spectrum of signals --- passing through it -fun FrequencyFilter : Class ; -fun FrequencyFilter_Class : SubClass FrequencyFilter ElectricalCircuit ; - --- A MechanicalProcess in which mechanical --- energy is converted into a heat -fun Friction : Class ; -fun Friction_Class : SubClass Friction MechanicalProcess ; - --- a toothed wheel that engages another toothed --- mechanism in order to change the speed or direction of transmitted motion. -fun Gear : Class ; -fun Gear_Class : SubClass Gear MechanicalDevice ; - --- a pair of gears that are used to change speed or --- direction of an angular motion, ideal gear train can be modeled using --- a transformer. -fun GearTrain : Class ; -fun GearTrain_Class : SubClass GearTrain MechanicalDevice ; - --- A device composed of several gear_trains used --- to change speed and torque of transmitted motion. -fun Gearbox : Class ; -fun Gearbox_Class : SubClass Gearbox MechanicalDevice ; - --- A Transducer for which the ratio of --- across variable on one side and through variable on the --- other side is equal to the ratio of the remaining two variables. -fun Gyrator : Class ; -fun Gyrator_Class : SubClass Gyrator Transducer ; - --- A SinglePhaseRectifier of --- that exploits only one polarity of the input power source. -fun HalfWaveSinglePhaseRectifier : Class ; -fun HalfWaveSinglePhaseRectifier_Class : SubClass HalfWaveSinglePhaseRectifier SinglePhaseRectifier ; - --- A DifferentialEquation --- where variables are differentiated more than once. -fun HigherOrderDifferentialEquation : Class ; -fun HigherOrderDifferentialEquation_Class : SubClass HigherOrderDifferentialEquation DifferentialEquation ; - -fun Human_ITAgent : SubClass Human ITAgent ; - --- agent capable of performing ITProcess -fun ITAgent : Class ; -fun ITAgent_Class : SubClass ITAgent Agent ; - --- A process performed on a computer by a human --- operator. -fun ITProcess : Class ; -fun ITProcess_Class : SubClass ITProcess IntentionalProcess ; - --- A Fourpole modeling an --- OperationalAmplifier with ideal properties. -fun IdealOperationalAmplifier : Class ; -fun IdealOperationalAmplifier_Class : SubClass IdealOperationalAmplifier Fourpole ; - --- A PureTwopole that models an ideal switch. -fun IdealSwitch : Class ; -fun IdealSwitch_Class : SubClass IdealSwitch PureTwopole ; - --- A PureTwopole that is linear. -fun IdealTwopole : Class ; -fun IdealTwopole_Class : SubClass IdealTwopole PureTwopole ; - --- Asserts that a constitutive relation --- of a multipole does not refer to other variables than terminal or --- inner. -fun IndependentMultipole : Ind MultipoleAttribute ; - - --- A property of an electric circuit by which an --- electromotive force is induced in it by a variation of current. -fun Inductance : Class ; -- subattribute PhysicalAttribute - - --- An electrical motor powered by a --- three_phase power suply. -fun InductionMotor : Class ; -fun InductionMotor_Class : SubClass InductionMotor ElectricalMotor ; - --- An ElectricalComponent that introduces inductance --- into a circuit. -fun Inductor : Class ; -fun Inductor_Class : SubClass Inductor ElectricalComponent ; - --- A ThroughVariableAccumulator from electrical energy domain. -fun InductorElement : Class ; -fun InductorElement_Class : SubClass InductorElement ElectricDevice ; - --- An AcrossVariableAccumulator from translatory energy domain. -fun Inertor : Class ; -fun Inertor_Class : SubClass Inertor (both AcrossVariableAccumulator TranslatoryTwopole) ; - - --- The process of deploying an application --- on a computer. -fun Installation : Class ; -fun Installation_Class : SubClass Installation ITProcess ; - --- a Substance such as glass or --- porcelain with negligible electrical conductivity. -fun InsulatorSubstance : Class ; -fun InsulatorSubstance_Class : SubClass InsulatorSubstance Substance ; - --- An Amplifier that changes the polarity --- of the input signal. -fun InvertingAmplifier : Class ; -fun InvertingAmplifier_Class : SubClass InvertingAmplifier Amplifier ; - --- Junction field_effect transistor. -fun JfetTransistor : Class ; -fun JfetTransistor_Class : SubClass JfetTransistor FetTransistor ; - --- light emitted at a p_n junction is proportional --- to the bias current, color depends on the material used -fun LED : Class ; -fun LED_Class : SubClass LED Diode ; - --- PhysicalDimension of length, [m]. -fun Length : Ind PhysicalDimension ; - - --- adjective -fun LexAdjective : Ind LexiconCategory ; - - --- adverb -fun LexAdverb : Ind LexiconCategory ; - - --- noun -fun LexNoun : Ind LexiconCategory ; - - --- verb -fun LexVerb : Ind LexiconCategory ; - - --- WordNet category: noun, verb, adjective or adverb -fun LexiconCategory : Class ; -fun LexiconCategory_Class : SubClass LexiconCategory InternalAttribute ; - --- library model -fun LibraryModelCategory : Ind DocumentCategory ; - - --- A polynomial Equation of the first degree. -fun LinearEquation : Class ; -fun LinearEquation_Class : SubClass LinearEquation Equation ; - --- Asserts that the constitutive relation of --- a multipole is linear. -fun LinearMultipole : Ind MultipoleAttribute ; - - --- A Method that involves using --- mathematical aparatus. -fun MathematicalMethod : Class ; -fun MathematicalMethod_Class : SubClass MathematicalMethod Method ; - --- A model that uses the mathematical --- aparatus -fun MathematicalModel : Class ; -fun MathematicalModel_Class : SubClass MathematicalModel Model ; - --- A model of a Pendulum consisting --- of a mass hanged on a stiff string. -fun MathematicalPendulum : Class ; -fun MathematicalPendulum_Class : SubClass MathematicalPendulum MathematicalModel ; - --- mathematics -fun MathematicsDomain : Class ; -fun MathematicsDomain_Class : SubClass MathematicsDomain NaturalSciencesDomain ; - --- An EngineeringComponent in function of --- which play role mechanical energetical interactions. -fun MechanicalDevice : Class ; -fun MechanicalDevice_Class : SubClass MechanicalDevice EngineeringComponent ; - --- domain involving mechanical engineering -fun MechanicalEngineeringDomain : Class ; -fun MechanicalEngineeringDomain_Class : SubClass MechanicalEngineeringDomain EngineeringDomain ; - --- A Process in which mechanical --- interactions take place -fun MechanicalProcess : Class ; -fun MechanicalProcess_Class : SubClass MechanicalProcess NaturalProcess ; - --- a resonance of mechanical energy. -fun MechanicalResonance : Class ; -fun MechanicalResonance_Class : SubClass MechanicalResonance (both MechanicalProcess Resonance) ; - - --- basic (theoretic) mechanics -fun MechanicsDomain : Class ; -fun MechanicsDomain_Class : SubClass MechanicsDomain PhysicsDomain ; - --- a way of doing something, esp. a systematic one; --- implies an orderly logical arrangement (usually in steps). -fun Method : Class ; -fun Method_Class : SubClass Method Procedure ; - --- An abstract object that models certain aspect of a --- physical object, is subject to abstraction and idealization. -fun Model : Class ; -fun Model_Class : SubClass Model Abstract ; - --- A creative process of creating a model. -fun Modeling : Class ; -fun Modeling_Class : SubClass Modeling IntentionalProcess ; - --- Metal_oxyde semiconductor field_effect --- transistor. -fun MosfetTransistor : Class ; -fun MosfetTransistor_Class : SubClass MosfetTransistor FetTransistor ; - --- An actuator intended to deliver mechanical power -fun Motor : Class ; -fun Motor_Class : SubClass Motor MechanicalDevice ; - --- Basic element of a multipole diagram, a --- multipole is a model of a component of a dynamic system, it can model a --- real separable component, such as a motor of a vehicle, or just an --- attribute of the system, such as inertia or friction, multipole interacts --- with other multipoles through its poles. Multipole Each multipole must have at least one section. -fun Multipole : Class ; -fun Multipole_Class : SubClass Multipole Model ; - --- a set of tags that can be associated --- with multipoles -fun MultipoleAttribute : Class ; -fun MultipoleAttribute_Class : SubClass MultipoleAttribute InternalAttribute ; - --- Graphical representation of a --- MultipoleModel. -fun MultipoleDiagram : Class ; -fun MultipoleDiagram_Class : SubClass MultipoleDiagram ContentBearingObject ; - --- Model of a physical system consisting of --- mutually interconnected multipoles. -fun MultipoleModel : Class ; -fun MultipoleModel_Class : SubClass MultipoleModel Model ; - --- modeling of a dynamic system by means of --- its representation by a multipole diagram. -fun MultipoleModeling : Class ; -fun MultipoleModeling_Class : SubClass MultipoleModeling Modeling ; - --- A part of multipole pole that models --- a single energetical interaction. If a pole belongs to a multipole, it also belongs to --- one of its sections. -fun MultipolePole : Class ; -fun MultipolePole_Class : SubClass MultipolePole Model ; - --- MultipoleSection that contains exactly two --- poles. MultipolePort Ports do not have three distinct poles. -fun MultipolePort : Class ; -fun MultipolePort_Class : SubClass MultipolePort MultipoleSection ; - --- One of the postulates of the multipole --- modeling theory. -fun MultipolePostulate : Class ; - - --- a multipole variable that have physical --- dimension and meaning. -fun MultipoleQuantity : Class ; -fun MultipoleQuantity_Class : SubClass MultipoleQuantity Quantity ; - --- A set of poles that is subject to --- the postulate of continuity. A multipole may consist of one or --- more sections. Sections of a single multipole do not overlap --- and cover all its poles. MultipoleSection Each section must have at least two distinct poles. -fun MultipoleSection : Class ; -fun MultipoleSection_Class : SubClass MultipoleSection Model ; - --- a variable that describes energetical --- interactions between multipoles. -fun MultipoleVariable : Class ; -fun MultipoleVariable_Class : SubClass MultipoleVariable Number ; - --- Property whereby an electromotive force is --- induced in a circuit by variation of current in a neighboring circuit. -fun MutualInductance : Class ; -fun MutualInductance_Class : SubClass MutualInductance Inductance ; - --- natural sciences (mathematics, physics) -fun NaturalSciencesDomain : Class ; -fun NaturalSciencesDomain_Class : SubClass NaturalSciencesDomain ScienceDomain ; - --- A body remains at rest or in motion with --- a constant velocity unless acted upon by an external force -fun NewtonsFirstLaw : Class ; -fun NewtonsFirstLaw_Class : SubClass NewtonsFirstLaw NewtonsLaw ; - --- One of three basic laws of classical mechanics. -fun NewtonsLaw : Class ; -fun NewtonsLaw_Class : SubClass NewtonsLaw ScientificLaw ; - --- The rate of change of momentum is --- proportional to the imposed force and goes in the direction of --- the force -fun NewtonsSecondLaw : Class ; -fun NewtonsSecondLaw_Class : SubClass NewtonsSecondLaw NewtonsLaw ; - --- Action and reaction are equal and opposite. -fun NewtonsThirdLaw : Class ; -fun NewtonsThirdLaw_Class : SubClass NewtonsThirdLaw NewtonsLaw ; - --- An Amplifier that does not change the polarity --- of the input signal. -fun NoninvertingAmplifier : Class ; -fun NoninvertingAmplifier_Class : SubClass NoninvertingAmplifier Amplifier ; - --- The description of the entity (e.g. a Model) --- involves nonlinear functions. -fun Nonlinear : Class ; -fun Nonlinear_Class : SubClass Nonlinear InternalAttribute ; - --- An ElectricalMultipoleModel containing --- nonlinear multipoles. -fun NonlinearCircuit : Class ; -fun NonlinearCircuit_Class : SubClass NonlinearCircuit ElectricalMultipoleModel ; - --- An Equation that is not --- a LinearEquation. -fun NonlinearEquation : Class ; -fun NonlinearEquation_Class : SubClass NonlinearEquation Equation ; - --- A BjtTransistor with N_P_N junctions. -fun NpnTransistor : Class ; -fun NpnTransistor_Class : SubClass NpnTransistor BjtTransistor ; - --- A complex semiconductor device with --- behaviour similar to the IdealOperationalAmplifier. -fun OperationalAmplifier : Class ; -fun OperationalAmplifier_Class : SubClass OperationalAmplifier ElectricalCircuit ; - --- A DifferentialEquation --- that is not a PartialDifferentialEquation. -fun OrdinaryDifferentialEquation : Class ; -fun OrdinaryDifferentialEquation_Class : SubClass OrdinaryDifferentialEquation DifferentialEquation ; - --- Resonance taking place in a series RLC --- circuit, i.e. in a circuit where its elements are connected in_series. -fun ParallelResonance : Class ; -fun ParallelResonance_Class : SubClass ParallelResonance ElectricalResonance ; - --- A DifferentialEquation --- involving a functions of more than one variable. -fun PartialDifferentialEquation : Class ; -fun PartialDifferentialEquation_Class : SubClass PartialDifferentialEquation DifferentialEquation ; - --- A MechanicalDevice of an object mounted so that --- it swings freely under the influence of gravity. -fun Pendulum : Class ; -fun Pendulum_Class : SubClass Pendulum MechanicalDevice ; - --- A DC motor in which the auxiliary --- magnetic field is provided by a permanent magnet. -fun PermanentMagnetDcMotor : Class ; -fun PermanentMagnetDcMotor_Class : SubClass PermanentMagnetDcMotor DcMotor ; - --- A physical dimension such as --- length, mass, force etc. -fun PhysicalDimension : Class ; -fun PhysicalDimension_Class : SubClass PhysicalDimension Quantity ; - --- An attribute of a multipole pole describing --- the kind of physical interaction the pole models. -fun PhysicalDomain : Class ; -fun PhysicalDomain_Class : SubClass PhysicalDomain InternalAttribute ; - --- physics -fun PhysicsDomain : Class ; -fun PhysicsDomain_Class : SubClass PhysicsDomain NaturalSciencesDomain ; - --- A BjtTransistor with P_N_P junctions. -fun PnpTransistor : Class ; -fun PnpTransistor_Class : SubClass PnpTransistor BjtTransistor ; - --- The sum of through variables of --- poles of multipole section is equal to zero. -fun PostulateOfContinuity : Class ; -fun PostulateOfContinuity_Class : SubClass PostulateOfContinuity MultipolePostulate ; - --- PhysicalDimension of power, [W]. -fun Power : Ind PhysicalDimension ; - - --- power electronic circuits (power supplies etc.) -fun PowerElectronicsDomain : Class ; -fun PowerElectronicsDomain_Class : SubClass PowerElectronicsDomain ElectronicsDomain ; - -fun PowerSource_Device : SubClass PowerSource Device ; - --- PhysicalDimension of pressure, [Pa],[N.m^_2]. -fun Pressure : Ind PhysicalDimension ; - - --- valve that controls the pressure in --- a fluid -fun PressureControlValve : Class ; -fun PressureControlValve_Class : SubClass PressureControlValve Valve ; - --- A Twopole that models single physical --- phenomenon, its constitutive relation has special structure. -fun PureTwopole : Class ; -fun PureTwopole_Class : SubClass PureTwopole Twopole ; - --- Pulse_width modulation technique -fun Pwm : Class ; -fun Pwm_Class : SubClass Pwm ElectricalEngineeringMethod ; - --- An ElectricalMultipoleModel containing --- a ResistorElement and a CapacitorElement. -fun RCCircuit : Class ; -fun RCCircuit_Class : SubClass RCCircuit ElectricalMultipoleModel ; - --- An ElectricalMultipoleModel containing --- a ResistorElement, an InductorElement and a CapacitorElement. -fun RLCCircuit : Class ; -fun RLCCircuit_Class : SubClass RLCCircuit ElectricalMultipoleModel ; - --- An ElectricalMultipoleModel containing --- a ResistorElement and an InductorElement. -fun RLCircuit : Class ; -fun RLCircuit_Class : SubClass RLCircuit ElectricalMultipoleModel ; - --- electrical device that transforms alternating --- into direct current. -fun Rectifier : Class ; -fun Rectifier_Class : SubClass Rectifier ElectricalCircuit ; - --- an electro_mechanical device used as a controlled switch -fun Relay : Class ; -fun Relay_Class : SubClass Relay (both ElectricalComponent MechanicalDevice) ; - - --- relays -fun RelaysDomain : Class ; -fun RelaysDomain_Class : SubClass RelaysDomain ElectroMechanicalDevicesDomain ; - --- Most common type of a presure control valve; --- it consists of a piston that is retained on its seat by a spring -fun ReliefValve : Class ; -fun ReliefValve_Class : SubClass ReliefValve PressureControlValve ; - --- A material's opposition to the flow of --- electric current. -fun Resistivity : Ind PhysicalAttribute ; - - --- An ElectricalComponent that resists the flow of --- electrical current. A Dissipator from electrical energy domain. -fun ResistorElement : Class ; -fun ResistorElement_Class : SubClass ResistorElement (both ElectricDevice ElectricalComponent) ; - - --- a vibration of large amplitude produced by --- a relatively small vibration near the same frequency of vibration --- as the natural frequency of the resonating system. -fun Resonance : Class ; -fun Resonance_Class : SubClass Resonance NaturalProcess ; - --- Root_locus control design method -fun RootLocus : Class ; -fun RootLocus_Class : SubClass RootLocus ControlDesignMethod ; - --- Mechanic rotary energetic interaction -fun Rotary : Ind PhysicalDomain ; - - -fun Rotor_ElectricDevice : SubClass Rotor ElectricDevice ; - -fun Rotor_MechanicalDevice : SubClass Rotor MechanicalDevice ; - --- science (natural sciences, engineering, medicine...) -fun ScienceDomain : Class ; -fun ScienceDomain_Class : SubClass ScienceDomain ApplicationDomain ; - --- A generalization based on recurring facts or events --- (in science or mathematics etc) -fun ScientificLaw : Class ; -fun ScientificLaw_Class : SubClass ScientificLaw Proposition ; - --- An electrical device that exploits --- properties of semiconductors. -fun SemiconductorComponent : Class ; -fun SemiconductorComponent_Class : SubClass SemiconductorComponent ElectricalComponent ; - --- A DC motor in which the auxiliary --- magnetic field is provided an active circuit. -fun SeparatelyExcitedDcMotor : Class ; -fun SeparatelyExcitedDcMotor_Class : SubClass SeparatelyExcitedDcMotor DcMotor ; - --- Resonance taking place in a parallel RLC --- circuit, i.e. in a circuit where its elements are connected in_parallel. -fun SeriesResonance : Class ; -fun SeriesResonance_Class : SubClass SeriesResonance ElectricalResonance ; - --- A Set of equations -fun SetOfEquations : Class ; -fun SetOfEquations_Class : SubClass SetOfEquations Set ; - --- A revolving rod that transmits power or motion. -fun Shaft : Class ; -fun Shaft_Class : SubClass Shaft MechanicalDevice ; - --- A PowerSource of single phase --- alternating current. -fun SinglePhasePowerSource : Class ; -fun SinglePhasePowerSource_Class : SubClass SinglePhasePowerSource PowerSource ; - --- A Rectifier of single phase AC --- voltage. -fun SinglePhaseRectifier : Class ; -fun SinglePhaseRectifier_Class : SubClass SinglePhaseRectifier Rectifier ; - --- solved example -fun SolvedExampleCategory : Ind DocumentCategory ; - - --- A PureTwopole that models a generator of either across or through variable. -fun Source : Class ; -fun Source_Class : SubClass Source PureTwopole ; - --- a directional control valve that uses a spool --- to control the direction of flow -fun SpoolValve : Class ; -fun SpoolValve_Class : SubClass SpoolValve DirectionalControlValve ; - --- a metal device that returns to its shape or --- position when pushed or pulled or pressed -fun Spring : Class ; -fun Spring_Class : SubClass Spring MechanicalDevice ; - --- A ThroughVariableAccumulator from translatory energy domain. -fun SpringElement : Class ; -fun SpringElement_Class : SubClass SpringElement (both ThroughVariableAccumulator TranslatoryTwopole) ; - - --- Stationary part of a motor or generator in or --- around which the rotor revolves. -fun Stator : Class ; -fun Stator_Class : SubClass Stator (both ElectricDevice MechanicalDevice) ; - - --- The physical property of being inflexible --- and hard to stretch. -fun Stiffness : Ind PhysicalAttribute ; - - --- a process of designing an engineering system -fun SystemDesign : Class ; -fun SystemDesign_Class : SubClass SystemDesign EngineersSubprocess ; - --- a process of specifying requirements --- on a system -fun SystemSpecification : Class ; -fun SystemSpecification_Class : SubClass SystemSpecification EngineersSubprocess ; - --- A practical Method or art applied to some --- particular task -fun Technique : Class ; -fun Technique_Class : SubClass Technique Method ; - --- a point on an electrical device (such as a --- battery) at which electric current enters or leaves -fun Terminal : Class ; -- meronym ElectricalComponent - - --- A PowerSource of three phase --- alternating current. -fun ThreePhasePowerSource : Class ; -fun ThreePhasePowerSource_Class : SubClass ThreePhasePowerSource PowerSource ; - --- A Rectifier of single phase AC --- voltage. -fun ThreePhaseRectifier : Class ; -fun ThreePhaseRectifier_Class : SubClass ThreePhaseRectifier Rectifier ; - --- A PureTwopole that accumulates through variable. -fun ThroughVariableAccumulator : Class ; -fun ThroughVariableAccumulator_Class : SubClass ThroughVariableAccumulator PureTwopole ; - --- A Source that models a generator of through variable. -fun ThroughVariableSource : Class ; -fun ThroughVariableSource_Class : SubClass ThroughVariableSource Source ; - --- a SemiconductorComponent that consists of three --- p_n junctions, it is used e.g. in controlled rectifiers. -fun Thyristor : Class ; -fun Thyristor_Class : SubClass Thyristor SemiconductorComponent ; - --- PhysicalDimension of torque, [N/m]. -fun Torque : Ind PhysicalDimension ; - - --- A Transducer for which the ratio of --- across variables and through variables respectively is equal. -fun Transformer : Class ; -fun Transformer_Class : SubClass Transformer Transducer ; - --- An ElectricalDevice by which alternating --- current of one voltage is changed to another voltage. -fun TransformerDevice : Class ; -fun TransformerDevice_Class : SubClass TransformerDevice ElectricDevice ; - --- A semiconductor device capable of amplification --- or switching. -fun Transistor : Class ; -fun Transistor_Class : SubClass Transistor SemiconductorComponent ; - --- Mechanic translatory energetic interaction -fun Translatory : Ind PhysicalDomain ; - - --- A PureTwopole from translatory energy domain. -fun TranslatoryTwopole : Class ; -fun TranslatoryTwopole_Class : SubClass TranslatoryTwopole PureTwopole ; - -fun Truck_Car : SubClass Truck Car ; - --- tutorial -fun TutorialCategory : Ind DocumentCategory ; - - --- A Multipole with exactly two poles. Twopole Twopole has exactly one port. -fun Twopole : Class ; -fun Twopole_Class : SubClass Twopole Multipole ; - --- A Multipole with exactly two sections. -fun Twoport : Class ; -fun Twoport_Class : SubClass Twoport Fourpole ; - --- The process of removing of an installed --- application from a computer. -fun UnInstallation : Class ; -fun UnInstallation_Class : SubClass UnInstallation ITProcess ; - --- An EngineeringComponent for which --- the principal physical domain is not specified. -fun UnknownDomainDevice : Class ; -fun UnknownDomainDevice_Class : SubClass UnknownDomainDevice EngineeringComponent ; - --- A hydraulic valve. -fun Valve : Class ; -fun Valve_Class : SubClass Valve (both FluidPowerDevice MechanicalDevice) ; - - --- Bessel's equation -fun VanderpolsEquation : Class ; -fun VanderpolsEquation_Class : SubClass VanderpolsEquation (both NonlinearEquation OrdinaryDifferentialEquation) ; - - --- PhysicalDimension of velocity, [m/s]. -fun Velocity : Ind PhysicalDimension ; - - --- PhysicalDimension of voltage, [V]. -fun Voltage : Ind PhysicalDimension ; - - --- valve that controls the flow rate of --- a fluid -fun VolumeControlValve : Class ; -fun VolumeControlValve_Class : SubClass VolumeControlValve Valve ; - --- PhysicalDimension of volume flow, [m^_3]. -fun VolumeFlow : Ind PhysicalDimension ; - - --- knowledge base document _ a document in natural language --- representing one piece of knowledge in the knowledge base -fun WebDocument : Class ; -fun WebDocument_Class : SubClass WebDocument ContentBearingObject ; - --- knowledge base document attribute -fun WebDocumentAttribute : Class ; -fun WebDocumentAttribute_Class : SubClass WebDocumentAttribute InternalAttribute ; - --- -fun ZenerDiode : Class ; -fun ZenerDiode_Class : SubClass ZenerDiode Diode ; - --- A meronymy relation similar to part, but --- for abstract rather than physical things. -fun abstractPart : El Abstract -> El Abstract -> Formula; - - --- multipole pole has across variable -fun hasAcrossVariable : El MultipolePole -> El MultipoleVariable -> Formula ; - - --- multipole quantity has certain dimension -fun hasDimension : El MultipoleQuantity -> El PhysicalDimension -> Formula ; - - --- multipole pole has through variable -fun hasThroughVariable : El MultipolePole -> El MultipoleVariable -> Formula ; - - --- multipole quantity has certain variable -fun hasVariable : El MultipoleQuantity -> El MultipoleVariable -> Formula ; - - --- associates a SUMO concept with a lexicon word -fun lexicon : El SetOrClass -> El LexiconCategory -> El SymbolicString -> Formula ; - - --- A relation similar to WordNet meronymy relation. --- If class A is a meronym of class B, it means that instances of A --- typically are parts of instances of B. -fun meronym : Desc Object -> Desc Object -> Formula ; - - --- A relation signaling that certain model is --- convenient for modeling of certain class of devices. -fun models : El Model -> El EngineeringComponent -> Formula ; - - --- Relation that holds for pairs of physical --- dimensions that multiply up into a physical dimension of Power. --- The first is considered for across variable, the second for through --- variable. -fun physicalDomain : El PhysicalDimension -> El PhysicalDimension -> El PhysicalDomain -> Formula ; -} diff --git a/examples/SUMO/mondial.gf b/examples/SUMO/mondial.gf deleted file mode 100644 index 11f8bf938..000000000 --- a/examples/SUMO/mondial.gf +++ /dev/null @@ -1,11117 +0,0 @@ -abstract mondial = open Merge, Mid_level_ontology, Geography, Government in { - - - - -fun Afghanistan : Ind (both Country Nation); - -fun Albania : Ind (both Country Nation); - -fun Algeria : Ind (both Country Nation); - -fun Andorra : Ind (both Country EuropeanNation); - -fun Angola : Ind (both Country Nation); - -fun AntiguaAndBarbuda : Ind (both Country Nation); - -fun Argentina : Ind (both Country Nation); - -fun Armenia : Ind (both Country Nation); - -fun Australia : Ind (both Country Nation); - -fun Austria : Ind (both Country Nation); - -fun Azerbaijan : Ind (both Country Nation); - -fun Bahamas : Ind Country ; - -fun Bahrain : Ind (both Country Nation); - -fun Bangladesh : Ind (both Country Nation); - -fun Barbados : Ind (both Country Nation); - -fun Belarus : Ind (both Country Nation); - -fun Belgium : Ind (both Country EuropeanNation); - -fun Belize : Ind (both Country Nation); - -fun Benin : Ind (both Country Nation); - -fun Bhutan : Ind (both Country Nation); - -fun Bolivia : Ind (both Country Nation); - -fun BosniaAndHerzegovina : Ind (both Country Nation); - -fun Botswana : Ind (both Country Nation); - -fun Brazil : Ind (both Country Nation); - -fun Brunei : Ind (both Country Nation); - -fun Bulgaria : Ind (both Country Nation); - -fun BurkinaFaso : Ind (both Country Nation); - -fun Burma : Ind Country ; - -fun Burundi : Ind (both Country Nation); - -fun Cambodia : Ind (both Country Nation); - -fun Cameroon : Ind (both Country Nation); - -fun Canada : Ind (both Country Nation); - -fun CapeVerde : Ind (both Country Nation); - -fun CentralAfricanRepublic : Ind (both Country Nation); - -fun Chad : Ind (both Country Nation); - -fun Chile : Ind (both Country Nation); - -fun China : Ind (both Country Nation); - -fun Colombia : Ind (both Country Nation); - -fun Comoros : Ind (both Country Nation); - -fun Congo : Ind Country ; - -fun Continents_Africa : Ind Continent ; - -fun Continents_America : Ind Continent ; - -fun Continents_Asia : Ind Continent ; - -fun Continents_Australia_Oceania : Ind Continent ; - -fun Continents_Europe : Ind Continent ; - -fun CostaRica : Ind (both Country Nation); - -fun CoteDIvoire : Ind (both Country Nation); - -fun Countries_AFG_cities_Kabul : Ind City ; - -fun Countries_AG_cities_SaintJohns : Ind City ; - -fun Countries_AL_cities_Durres : Ind City ; - -fun Countries_AL_cities_Elbasan : Ind City ; - -fun Countries_AL_cities_Korce : Ind City ; - -fun Countries_AL_cities_Shkoder : Ind City ; - -fun Countries_AL_cities_Tirane : Ind City ; - -fun Countries_AL_cities_Vlore : Ind City ; - -fun Countries_AND_cities_AndorralaVella : Ind City ; - -fun Countries_ANG_provinces_Bengo : Ind Province ; - -fun Countries_ANG_provinces_Bengo_cities_Caxito : Ind City ; - -fun Countries_ANG_provinces_Benguela : Ind Province ; - -fun Countries_ANG_provinces_Benguela_cities_Benguela : Ind City ; - -fun Countries_ANG_provinces_Bie : Ind Province ; - -fun Countries_ANG_provinces_Bie_cities_Bie : Ind City ; - -fun Countries_ANG_provinces_Cabinda : Ind Province ; - -fun Countries_ANG_provinces_Cabinda_cities_Cabinda : Ind City ; - -fun Countries_ANG_provinces_CuandoCubango : Ind Province ; - -fun Countries_ANG_provinces_CuandoCubango_cities_Menongue : Ind City ; - -fun Countries_ANG_provinces_CuanzaNorte : Ind Province ; - -fun Countries_ANG_provinces_CuanzaNorte_cities_Ndalatando : Ind City ; - -fun Countries_ANG_provinces_CuanzaSul : Ind Province ; - -fun Countries_ANG_provinces_CuanzaSul_cities_Sumbe : Ind City ; - -fun Countries_ANG_provinces_Cunene : Ind Province ; - -fun Countries_ANG_provinces_Cunene_cities_Ngiva : Ind City ; - -fun Countries_ANG_provinces_Huambo : Ind Province ; - -fun Countries_ANG_provinces_Huambo_cities_Huambo : Ind City ; - -fun Countries_ANG_provinces_Huila : Ind Province ; - -fun Countries_ANG_provinces_Huila_cities_Lubango : Ind City ; - -fun Countries_ANG_provinces_Luanda : Ind Province ; - -fun Countries_ANG_provinces_Luanda_cities_Luanda : Ind City ; - -fun Countries_ANG_provinces_LundaNorte : Ind Province ; - -fun Countries_ANG_provinces_LundaNorte_cities_Lucapa : Ind City ; - -fun Countries_ANG_provinces_LundaSul : Ind Province ; - -fun Countries_ANG_provinces_LundaSul_cities_Saurimo : Ind City ; - -fun Countries_ANG_provinces_Malanje : Ind Province ; - -fun Countries_ANG_provinces_Malanje_cities_Malanje : Ind City ; - -fun Countries_ANG_provinces_Moxico : Ind Province ; - -fun Countries_ANG_provinces_Moxico_cities_Luena : Ind City ; - -fun Countries_ANG_provinces_Namibe : Ind Province ; - -fun Countries_ANG_provinces_Namibe_cities_Namibe : Ind City ; - -fun Countries_ANG_provinces_Uige : Ind Province ; - -fun Countries_ANG_provinces_Uige_cities_Uige : Ind City ; - -fun Countries_ANG_provinces_Zaire : Ind Province ; - -fun Countries_ANG_provinces_Zaire_cities_MbanzaCongo : Ind City ; - -fun Countries_ARM_cities_Yerevan : Ind City ; - -fun Countries_AUS_provinces_AustraliaCapitalTerritory : Ind Province ; - -fun Countries_AUS_provinces_AustraliaCapitalTerritory_cities_Canberra : Ind City ; - -fun Countries_AUS_provinces_CocosIslands : Ind Province ; - -fun Countries_AUS_provinces_CocosIslands_cities_BantamVillage : Ind City ; - -fun Countries_AUS_provinces_Kirimati : Ind Province ; - -fun Countries_AUS_provinces_Kirimati_cities_FlyingFishCove : Ind City ; - -fun Countries_AUS_provinces_NewSouthWales : Ind Province ; - -fun Countries_AUS_provinces_NewSouthWales_cities_Geelong : Ind City ; - -fun Countries_AUS_provinces_NewSouthWales_cities_Newcastle : Ind City ; - -fun Countries_AUS_provinces_NewSouthWales_cities_SunshineCoast : Ind City ; - -fun Countries_AUS_provinces_NewSouthWales_cities_Sydney : Ind City ; - -fun Countries_AUS_provinces_NewSouthWales_cities_Wollongong : Ind City ; - -fun Countries_AUS_provinces_NorfolkIsland : Ind Province ; - -fun Countries_AUS_provinces_NorfolkIsland_cities_Kingston : Ind City ; - -fun Countries_AUS_provinces_NorthernTerritory : Ind Province ; - -fun Countries_AUS_provinces_NorthernTerritory_cities_Darwin : Ind City ; - -fun Countries_AUS_provinces_Queensland : Ind Province ; - -fun Countries_AUS_provinces_Queensland_cities_Brisbane : Ind City ; - -fun Countries_AUS_provinces_Queensland_cities_GoldCoast : Ind City ; - -fun Countries_AUS_provinces_Queensland_cities_Townsville : Ind City ; - -fun Countries_AUS_provinces_SouthAustralia : Ind Province ; - -fun Countries_AUS_provinces_SouthAustralia_cities_Adelaide : Ind City ; - -fun Countries_AUS_provinces_Tasmania : Ind Province ; - -fun Countries_AUS_provinces_Tasmania_cities_Hobart : Ind City ; - -fun Countries_AUS_provinces_Victoria : Ind Province ; - -fun Countries_AUS_provinces_Victoria_cities_Melbourne : Ind City ; - -fun Countries_AUS_provinces_WesternAustralia : Ind Province ; - -fun Countries_AUS_provinces_WesternAustralia_cities_Albany : Ind City ; - -fun Countries_AUS_provinces_WesternAustralia_cities_Perth : Ind City ; - -fun Countries_AZ_cities_Baku : Ind City ; - -fun Countries_A_provinces_Burgenland : Ind Province ; - -fun Countries_A_provinces_Burgenland_cities_Eisenstadt : Ind City ; - -fun Countries_A_provinces_Carinthia : Ind Province ; - -fun Countries_A_provinces_Carinthia_cities_Klagenfurt : Ind City ; - -fun Countries_A_provinces_LowerAustria : Ind Province ; - -fun Countries_A_provinces_LowerAustria_cities_St_Polten : Ind City ; - -fun Countries_A_provinces_Salzburg : Ind Province ; - -fun Countries_A_provinces_Salzburg_cities_Salzburg : Ind City ; - -fun Countries_A_provinces_Styria : Ind Province ; - -fun Countries_A_provinces_Styria_cities_Graz : Ind City ; - -fun Countries_A_provinces_Tyrol : Ind Province ; - -fun Countries_A_provinces_Tyrol_cities_Innsbruck : Ind City ; - -fun Countries_A_provinces_UpperAustria : Ind Province ; - -fun Countries_A_provinces_UpperAustria_cities_Linz : Ind City ; - -fun Countries_A_provinces_Vienna : Ind Province ; - -fun Countries_A_provinces_Vienna_cities_Vienna : Ind City ; - -fun Countries_A_provinces_Vorarlberg : Ind Province ; - -fun Countries_A_provinces_Vorarlberg_cities_Bregenz : Ind City ; - -fun Countries_BDS_cities_Bridgetown : Ind City ; - -fun Countries_BD_cities_Barisal : Ind City ; - -fun Countries_BD_cities_Bogra : Ind City ; - -fun Countries_BD_cities_Brahmanbaria : Ind City ; - -fun Countries_BD_cities_Chittagong : Ind City ; - -fun Countries_BD_cities_Comilla : Ind City ; - -fun Countries_BD_cities_Dhaka : Ind City ; - -fun Countries_BD_cities_Dinajpur : Ind City ; - -fun Countries_BD_cities_Gazipur : Ind City ; - -fun Countries_BD_cities_Jamalpur : Ind City ; - -fun Countries_BD_cities_Jessore : Ind City ; - -fun Countries_BD_cities_Khulna : Ind City ; - -fun Countries_BD_cities_Mymensingh : Ind City ; - -fun Countries_BD_cities_Naogaon : Ind City ; - -fun Countries_BD_cities_Narayanganj : Ind City ; - -fun Countries_BD_cities_Narsinghdi : Ind City ; - -fun Countries_BD_cities_Nawabganj : Ind City ; - -fun Countries_BD_cities_Pabna : Ind City ; - -fun Countries_BD_cities_Rajshahi : Ind City ; - -fun Countries_BD_cities_Rangpur : Ind City ; - -fun Countries_BD_cities_Saidpur : Ind City ; - -fun Countries_BD_cities_Savar : Ind City ; - -fun Countries_BD_cities_Sirajganj : Ind City ; - -fun Countries_BD_cities_Sylhet : Ind City ; - -fun Countries_BD_cities_Tangail : Ind City ; - -fun Countries_BD_cities_Tongi : Ind City ; - -fun Countries_BEN_cities_Porto_Novo : Ind City ; - -fun Countries_BF_cities_Ouagadougou : Ind City ; - -fun Countries_BG_cities_Sofia : Ind City ; - -fun Countries_BHT_cities_Thimphu : Ind City ; - -fun Countries_BIH_cities_Sarajevo : Ind City ; - -fun Countries_BI_cities_Bujumbura : Ind City ; - -fun Countries_BOL_cities_Cochabamba : Ind City ; - -fun Countries_BOL_cities_LaPaz : Ind City ; - -fun Countries_BOL_cities_Sucre : Ind City ; - -fun Countries_BRN_cities_Manama : Ind City ; - -fun Countries_BRU_cities_BandarSeriBegawan : Ind City ; - -fun Countries_BR_cities_Abaetetuba : Ind City ; - -fun Countries_BR_cities_Alvorada : Ind City ; - -fun Countries_BR_cities_Betim : Ind City ; - -fun Countries_BR_cities_CabodeSantoAgostinho : Ind City ; - -fun Countries_BR_cities_CamposdosGoytacazes : Ind City ; - -fun Countries_BR_cities_Contagem : Ind City ; - -fun Countries_BR_cities_Hortolandia : Ind City ; - -fun Countries_BR_cities_Ibirite : Ind City ; - -fun Countries_BR_cities_NossaSenhoradoSocorro : Ind City ; - -fun Countries_BR_cities_RibeiraodasNeves : Ind City ; - -fun Countries_BR_cities_SantaBarbaradOeste : Ind City ; - -fun Countries_BR_cities_SaoJosedosPinhais : Ind City ; - -fun Countries_BR_cities_SapucaiadoSul : Ind City ; - -fun Countries_BR_cities_Sumare : Ind City ; - -fun Countries_BR_provinces_Acre : Ind Province ; - -fun Countries_BR_provinces_Acre_cities_RioBranco : Ind City ; - -fun Countries_BR_provinces_Alagoas : Ind Province ; - -fun Countries_BR_provinces_Alagoas_cities_Maceio : Ind City ; - -fun Countries_BR_provinces_Amapa : Ind Province ; - -fun Countries_BR_provinces_Amapa_cities_Macapa : Ind City ; - -fun Countries_BR_provinces_Amazonas : Ind Province ; - -fun Countries_BR_provinces_Amazonas_cities_Manaus : Ind City ; - -fun Countries_BR_provinces_Bahia : Ind Province ; - -fun Countries_BR_provinces_Bahia_cities_Alagoinhas : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Barreiras : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Camacari : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_FeiradeSantana : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Ilheus : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Itabuna : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Jequie : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Juazeiro : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_Salvador : Ind City ; - -fun Countries_BR_provinces_Bahia_cities_VitoriadaConquista : Ind City ; - -fun Countries_BR_provinces_Ceara : Ind Province ; - -fun Countries_BR_provinces_Ceara_cities_Caucaia : Ind City ; - -fun Countries_BR_provinces_Ceara_cities_Fortaleza : Ind City ; - -fun Countries_BR_provinces_Ceara_cities_JuazeirodoNorte : Ind City ; - -fun Countries_BR_provinces_Ceara_cities_Maracanau : Ind City ; - -fun Countries_BR_provinces_Ceara_cities_Sobral : Ind City ; - -fun Countries_BR_provinces_DistritoFederal : Ind Province ; - -fun Countries_BR_provinces_DistritoFederal_cities_Brasilia : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto : Ind Province ; - -fun Countries_BR_provinces_EspiritoSanto_cities_CachoeirodeItapemirim : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto_cities_Cariacica : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto_cities_Colatina : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto_cities_Linhares : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto_cities_Serra : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto_cities_VilaVelha : Ind City ; - -fun Countries_BR_provinces_EspiritoSanto_cities_Vitoria : Ind City ; - -fun Countries_BR_provinces_Goias : Ind Province ; - -fun Countries_BR_provinces_Goias_cities_Anapolis : Ind City ; - -fun Countries_BR_provinces_Goias_cities_Araguaina : Ind City ; - -fun Countries_BR_provinces_Goias_cities_Goiania : Ind City ; - -fun Countries_BR_provinces_Goias_cities_Luziania : Ind City ; - -fun Countries_BR_provinces_Goias_cities_RioVerde : Ind City ; - -fun Countries_BR_provinces_Maranhao : Ind Province ; - -fun Countries_BR_provinces_Maranhao_cities_Caxias : Ind City ; - -fun Countries_BR_provinces_Maranhao_cities_Codo : Ind City ; - -fun Countries_BR_provinces_Maranhao_cities_Imperatriz : Ind City ; - -fun Countries_BR_provinces_Maranhao_cities_SaoLuis : Ind City ; - -fun Countries_BR_provinces_Maranhao_cities_Timon : Ind City ; - -fun Countries_BR_provinces_MatoGrosso : Ind Province ; - -fun Countries_BR_provinces_MatoGrosso_cities_Cuiaba : Ind City ; - -fun Countries_BR_provinces_MatoGrosso_cities_Rondonopolis : Ind City ; - -fun Countries_BR_provinces_MatoGrosso_cities_VarzeaGrande : Ind City ; - -fun Countries_BR_provinces_MatoGrossodoSul : Ind Province ; - -fun Countries_BR_provinces_MatoGrossodoSul_cities_CampoGrande : Ind City ; - -fun Countries_BR_provinces_MatoGrossodoSul_cities_Dourados : Ind City ; - -fun Countries_BR_provinces_MatoGrossodoSul_cities_Parnaiba : Ind City ; - -fun Countries_BR_provinces_MinasGerais : Ind Province ; - -fun Countries_BR_provinces_MinasGerais_cities_Barbacena : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_BeloHorizonte : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_Divinopolis : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_GovernadorValadares : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_Ipatinga : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_ItapecericadaSerra : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_JuizdeFora : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_MontesClaros : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_PatosdeMinas : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_PocosdeCaldas : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_Sabara : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_SeteLagoas : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_TeofiloOtoni : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_Uberaba : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_Uberlandia : Ind City ; - -fun Countries_BR_provinces_MinasGerais_cities_Varginha : Ind City ; - -fun Countries_BR_provinces_Para : Ind Province ; - -fun Countries_BR_provinces_Para_cities_Ananindeua : Ind City ; - -fun Countries_BR_provinces_Para_cities_Belem : Ind City ; - -fun Countries_BR_provinces_Para_cities_Castanhal : Ind City ; - -fun Countries_BR_provinces_Para_cities_Itaituba : Ind City ; - -fun Countries_BR_provinces_Para_cities_Maraba : Ind City ; - -fun Countries_BR_provinces_Para_cities_Santarem : Ind City ; - -fun Countries_BR_provinces_Paraiba : Ind Province ; - -fun Countries_BR_provinces_Paraiba_cities_CampinaGrande : Ind City ; - -fun Countries_BR_provinces_Paraiba_cities_JoaoPessoa : Ind City ; - -fun Countries_BR_provinces_Paraiba_cities_SantaLuzia : Ind City ; - -fun Countries_BR_provinces_Paraiba_cities_SantaRita : Ind City ; - -fun Countries_BR_provinces_Parana : Ind Province ; - -fun Countries_BR_provinces_Parana_cities_Apucarana : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Cascavel : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Colombo : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Curitiba : Ind City ; - -fun Countries_BR_provinces_Parana_cities_FozdoIguacu : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Guarapuava : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Londrina : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Maringa : Ind City ; - -fun Countries_BR_provinces_Parana_cities_Paranagua : Ind City ; - -fun Countries_BR_provinces_Parana_cities_PontaGrossa : Ind City ; - -fun Countries_BR_provinces_Pernambuco : Ind Province ; - -fun Countries_BR_provinces_Pernambuco_cities_Camaragibe : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_Caruaru : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_Garanhuns : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_Gravatai : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_JaboataodosGuararapes : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_Paulista : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_Petrolina : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_Recife : Ind City ; - -fun Countries_BR_provinces_Pernambuco_cities_VitoriadeSantoAntao : Ind City ; - -fun Countries_BR_provinces_Piaui : Ind Province ; - -fun Countries_BR_provinces_Piaui_cities_Teresina : Ind City ; - -fun Countries_BR_provinces_RioGrandedoNorte : Ind Province ; - -fun Countries_BR_provinces_RioGrandedoNorte_cities_Mossoro : Ind City ; - -fun Countries_BR_provinces_RioGrandedoNorte_cities_Natal : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul : Ind Province ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_Bage : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_Canoas : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_CaxiasdoSul : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_NovoHamburgo : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_PassoFundo : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_Pelotas : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_PortoAlegre : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_RioGrande : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_SantaCruzdoSul : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_SantaMaria : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_SaoLeopoldo : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_Uruguaiana : Ind City ; - -fun Countries_BR_provinces_RioGrandedoSul_cities_Viamao : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro : Ind Province ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_BarraMansa : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_BelfortRoxo : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_CaboFrio : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_DuquedeCaxias : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Itaborai : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Macae : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Mage : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Nilopolis : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Niteroi : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_NovaFriburgo : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_NovoIguacu : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Olinda : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Petropolis : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Queimados : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_RiodeJaneiro : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_SaoGoncalo : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_SaoJoaodeMeriti : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_Teresopolis : Ind City ; - -fun Countries_BR_provinces_RiodeJaneiro_cities_VoltaRedonda : Ind City ; - -fun Countries_BR_provinces_Rondonia : Ind Province ; - -fun Countries_BR_provinces_Rondonia_cities_PortoVelho : Ind City ; - -fun Countries_BR_provinces_Roraima : Ind Province ; - -fun Countries_BR_provinces_Roraima_cities_BoaVista : Ind City ; - -fun Countries_BR_provinces_SantaCatarina : Ind Province ; - -fun Countries_BR_provinces_SantaCatarina_cities_Blumenau : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_Chapeco : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_Criciuma : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_Florianopolis : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_Itajai : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_Joinvile : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_Lages : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_PraiaGrande : Ind City ; - -fun Countries_BR_provinces_SantaCatarina_cities_SaoJose : Ind City ; - -fun Countries_BR_provinces_SaoPaulo : Ind Province ; - -fun Countries_BR_provinces_SaoPaulo_cities_Americana : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_AparecidadeGoiania : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Aracatuba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Araraquara : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Barretos : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Barueri : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Bauru : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Botucatu : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_BragancaPaulista : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Campinas : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Carapicuiba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Catanduva : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Cotia : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Diadema : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Embu : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_FerrazdeVasconcelos : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Franca : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_FranciscoMorato : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Guaruja : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Guarulhos : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Indaiatuba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Itapetininga : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Itapevi : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Itaquaquecetuba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Itu : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Jacarei : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Jau : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Jundiai : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Limeira : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Marilia : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Maua : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_MojiGuacu : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_MojidasCruzes : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Osasco : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Pindamonhangaba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Piracicaba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_PresidentePrudente : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_RibeiraoPires : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_RibeiraoPreto : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_RioClaro : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SantoAndre : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Santos : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoBernardodoCampo : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoCaetanodoSul : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoCarlos : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoJosedoRioPreto : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoJosedosCampos : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoPaulo : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_SaoVicente : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Sorocaba : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Suzano : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_TaboaodaSerra : Ind City ; - -fun Countries_BR_provinces_SaoPaulo_cities_Taubate : Ind City ; - -fun Countries_BR_provinces_Sergipe : Ind Province ; - -fun Countries_BR_provinces_Sergipe_cities_Aracaju : Ind City ; - -fun Countries_BR_provinces_Sergipe_cities_Arapiraca : Ind City ; - -fun Countries_BR_provinces_Tocantins : Ind Province ; - -fun Countries_BR_provinces_Tocantins_cities_Palmas : Ind City ; - -fun Countries_BS_cities_Nassau : Ind City ; - -fun Countries_BY_cities_Minsk : Ind City ; - -fun Countries_BZ_cities_Belmopan : Ind City ; - -fun Countries_B_provinces_Antwerp : Ind Province ; - -fun Countries_B_provinces_Antwerp_cities_Antwerp : Ind City ; - -fun Countries_B_provinces_Brabant : Ind Province ; - -fun Countries_B_provinces_Brabant_cities_Brussels : Ind City ; - -fun Countries_B_provinces_EastFlanders : Ind Province ; - -fun Countries_B_provinces_EastFlanders_cities_Ghent : Ind City ; - -fun Countries_B_provinces_Hainaut : Ind Province ; - -fun Countries_B_provinces_Hainaut_cities_Charleroi : Ind City ; - -fun Countries_B_provinces_Hainaut_cities_Mons : Ind City ; - -fun Countries_B_provinces_Liege : Ind Province ; - -fun Countries_B_provinces_Liege_cities_Liege : Ind City ; - -fun Countries_B_provinces_Limburg : Ind Province ; - -fun Countries_B_provinces_Limburg_cities_Hasselt : Ind City ; - -fun Countries_B_provinces_Luxembourg : Ind Province ; - -fun Countries_B_provinces_Luxembourg_cities_Arlon : Ind City ; - -fun Countries_B_provinces_Namur : Ind Province ; - -fun Countries_B_provinces_Namur_cities_Namur : Ind City ; - -fun Countries_B_provinces_WestFlanders : Ind Province ; - -fun Countries_B_provinces_WestFlanders_cities_Brugge : Ind City ; - -fun Countries_CAM_provinces_Adamaoua : Ind Province ; - -fun Countries_CAM_provinces_Adamaoua_cities_Ngaoundere : Ind City ; - -fun Countries_CAM_provinces_Centre : Ind Province ; - -fun Countries_CAM_provinces_Centre_cities_Yaounde : Ind City ; - -fun Countries_CAM_provinces_Cote : Ind Province ; - -fun Countries_CAM_provinces_Cote_cities_Douala : Ind City ; - -fun Countries_CAM_provinces_Est : Ind Province ; - -fun Countries_CAM_provinces_Est_cities_Bertoua : Ind City ; - -fun Countries_CAM_provinces_Nord : Ind Province ; - -fun Countries_CAM_provinces_Nord_cities_Garoua : Ind City ; - -fun Countries_CAM_provinces_Nordextreme : Ind Province ; - -fun Countries_CAM_provinces_Nordextreme_cities_Maroua : Ind City ; - -fun Countries_CAM_provinces_Nordoueste : Ind Province ; - -fun Countries_CAM_provinces_Nordoueste_cities_Bamenda : Ind City ; - -fun Countries_CAM_provinces_Ouest : Ind Province ; - -fun Countries_CAM_provinces_Ouest_cities_Bafoussam : Ind City ; - -fun Countries_CAM_provinces_Sud : Ind Province ; - -fun Countries_CAM_provinces_Sud_cities_Ebolowa : Ind City ; - -fun Countries_CAM_provinces_Sudoueste : Ind Province ; - -fun Countries_CAM_provinces_Sudoueste_cities_Buea : Ind City ; - -fun Countries_CDN_cities_Surrey : Ind City ; - -fun Countries_CDN_provinces_Alberta : Ind Province ; - -fun Countries_CDN_provinces_Alberta_cities_Calgary : Ind City ; - -fun Countries_CDN_provinces_Alberta_cities_Edmonton : Ind City ; - -fun Countries_CDN_provinces_BritishColumbia : Ind Province ; - -fun Countries_CDN_provinces_BritishColumbia_cities_Burnaby : Ind City ; - -fun Countries_CDN_provinces_BritishColumbia_cities_Vancouver : Ind City ; - -fun Countries_CDN_provinces_BritishColumbia_cities_Victoria : Ind City ; - -fun Countries_CDN_provinces_Manitoba : Ind Province ; - -fun Countries_CDN_provinces_Manitoba_cities_Winnipeg : Ind City ; - -fun Countries_CDN_provinces_NewBrunswick : Ind Province ; - -fun Countries_CDN_provinces_NewBrunswick_cities_Fredericton : Ind City ; - -fun Countries_CDN_provinces_Newfoundland : Ind Province ; - -fun Countries_CDN_provinces_Newfoundland_cities_SaintJohns : Ind City ; - -fun Countries_CDN_provinces_NorthwestTerritories : Ind Province ; - -fun Countries_CDN_provinces_NorthwestTerritories_cities_Yellowknife : Ind City ; - -fun Countries_CDN_provinces_NovaScotia : Ind Province ; - -fun Countries_CDN_provinces_NovaScotia_cities_Halifax : Ind City ; - -fun Countries_CDN_provinces_Ontario : Ind Province ; - -fun Countries_CDN_provinces_Ontario_cities_Brampton : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Burlington : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_EastYork : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Etobicoke : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Glouchester : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Hamilton : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Kitchener : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_London : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Markham : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Mississauga : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Nepean : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_NorthYork : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Oshawa : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Ottawa : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_SaintCatharines : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Scarborough : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_ThunderBay : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Toronto : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Vaughan : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_Windsor : Ind City ; - -fun Countries_CDN_provinces_Ontario_cities_York : Ind City ; - -fun Countries_CDN_provinces_PrinceEdwardIsland : Ind Province ; - -fun Countries_CDN_provinces_PrinceEdwardIsland_cities_Charlottetown : Ind City ; - -fun Countries_CDN_provinces_Quebec : Ind Province ; - -fun Countries_CDN_provinces_Quebec_cities_Laval : Ind City ; - -fun Countries_CDN_provinces_Quebec_cities_Longueuil : Ind City ; - -fun Countries_CDN_provinces_Quebec_cities_Montreal : Ind City ; - -fun Countries_CDN_provinces_Quebec_cities_Quebec : Ind City ; - -fun Countries_CDN_provinces_Quebec_cities_Richmond : Ind City ; - -fun Countries_CDN_provinces_Saskatchewan : Ind Province ; - -fun Countries_CDN_provinces_Saskatchewan_cities_Regina : Ind City ; - -fun Countries_CDN_provinces_Saskatchewan_cities_Saskatoon : Ind City ; - -fun Countries_CDN_provinces_YukonTerritory : Ind Province ; - -fun Countries_CDN_provinces_YukonTerritory_cities_Whitehorse : Ind City ; - -fun Countries_CH_provinces_AG : Ind Province ; - -fun Countries_CH_provinces_AG_cities_Aarau : Ind City ; - -fun Countries_CH_provinces_AI : Ind Province ; - -fun Countries_CH_provinces_AI_cities_Appenzell : Ind City ; - -fun Countries_CH_provinces_AR : Ind Province ; - -fun Countries_CH_provinces_AR_cities_Herisau : Ind City ; - -fun Countries_CH_provinces_BE : Ind Province ; - -fun Countries_CH_provinces_BE_cities_Bern : Ind City ; - -fun Countries_CH_provinces_BE_cities_Biel : Ind City ; - -fun Countries_CH_provinces_BL : Ind Province ; - -fun Countries_CH_provinces_BL_cities_Liestal : Ind City ; - -fun Countries_CH_provinces_BS : Ind Province ; - -fun Countries_CH_provinces_BS_cities_Basel : Ind City ; - -fun Countries_CH_provinces_FR : Ind Province ; - -fun Countries_CH_provinces_FR_cities_Fribourg : Ind City ; - -fun Countries_CH_provinces_GE : Ind Province ; - -fun Countries_CH_provinces_GE_cities_Geneva : Ind City ; - -fun Countries_CH_provinces_GL : Ind Province ; - -fun Countries_CH_provinces_GL_cities_Glarus : Ind City ; - -fun Countries_CH_provinces_GR : Ind Province ; - -fun Countries_CH_provinces_GR_cities_Chur : Ind City ; - -fun Countries_CH_provinces_JU : Ind Province ; - -fun Countries_CH_provinces_JU_cities_Delemont : Ind City ; - -fun Countries_CH_provinces_LU : Ind Province ; - -fun Countries_CH_provinces_LU_cities_Luzern : Ind City ; - -fun Countries_CH_provinces_NE : Ind Province ; - -fun Countries_CH_provinces_NE_cities_Neuchatel : Ind City ; - -fun Countries_CH_provinces_NW : Ind Province ; - -fun Countries_CH_provinces_NW_cities_Stans : Ind City ; - -fun Countries_CH_provinces_OW : Ind Province ; - -fun Countries_CH_provinces_OW_cities_Sarnen : Ind City ; - -fun Countries_CH_provinces_SG : Ind Province ; - -fun Countries_CH_provinces_SG_cities_SanktGallen : Ind City ; - -fun Countries_CH_provinces_SH : Ind Province ; - -fun Countries_CH_provinces_SH_cities_Schaffhausen : Ind City ; - -fun Countries_CH_provinces_SO : Ind Province ; - -fun Countries_CH_provinces_SO_cities_Solothurn : Ind City ; - -fun Countries_CH_provinces_SZ : Ind Province ; - -fun Countries_CH_provinces_SZ_cities_Schwyz : Ind City ; - -fun Countries_CH_provinces_TG : Ind Province ; - -fun Countries_CH_provinces_TG_cities_Frauenfeld : Ind City ; - -fun Countries_CH_provinces_TI : Ind Province ; - -fun Countries_CH_provinces_TI_cities_Bellinzona : Ind City ; - -fun Countries_CH_provinces_UR : Ind Province ; - -fun Countries_CH_provinces_UR_cities_Altdorf : Ind City ; - -fun Countries_CH_provinces_VD : Ind Province ; - -fun Countries_CH_provinces_VD_cities_Lausanne : Ind City ; - -fun Countries_CH_provinces_VS : Ind Province ; - -fun Countries_CH_provinces_VS_cities_Sion : Ind City ; - -fun Countries_CH_provinces_ZG : Ind Province ; - -fun Countries_CH_provinces_ZG_cities_Zug : Ind City ; - -fun Countries_CH_provinces_ZH : Ind Province ; - -fun Countries_CH_provinces_ZH_cities_Winterthur : Ind City ; - -fun Countries_CH_provinces_ZH_cities_Zurich : Ind City ; - -fun Countries_CI_cities_Abidjan : Ind City ; - -fun Countries_CI_cities_Yamoussoukro : Ind City ; - -fun Countries_CL_cities_Colombo : Ind City ; - -fun Countries_COM_cities_Moroni : Ind City ; - -fun Countries_CO_provinces_Amazonas : Ind Province ; - -fun Countries_CO_provinces_Amazonas_cities_Leticia : Ind City ; - -fun Countries_CO_provinces_Antioquia : Ind Province ; - -fun Countries_CO_provinces_Antioquia_cities_Bello : Ind City ; - -fun Countries_CO_provinces_Antioquia_cities_Envigado : Ind City ; - -fun Countries_CO_provinces_Antioquia_cities_Itagui : Ind City ; - -fun Countries_CO_provinces_Antioquia_cities_Medellin : Ind City ; - -fun Countries_CO_provinces_Antioquia_cities_Turbo : Ind City ; - -fun Countries_CO_provinces_Arauca : Ind Province ; - -fun Countries_CO_provinces_Arauca_cities_Arauca : Ind City ; - -fun Countries_CO_provinces_Atlantico : Ind Province ; - -fun Countries_CO_provinces_Atlantico_cities_Barranquilla : Ind City ; - -fun Countries_CO_provinces_Atlantico_cities_Malambo : Ind City ; - -fun Countries_CO_provinces_Atlantico_cities_Soledad : Ind City ; - -fun Countries_CO_provinces_Bolivar : Ind Province ; - -fun Countries_CO_provinces_Bolivar_cities_Cartagena : Ind City ; - -fun Countries_CO_provinces_Bolivar_cities_Mangangue : Ind City ; - -fun Countries_CO_provinces_Boyaca : Ind Province ; - -fun Countries_CO_provinces_Boyaca_cities_Tunja : Ind City ; - -fun Countries_CO_provinces_Caldas : Ind Province ; - -fun Countries_CO_provinces_Caldas_cities_Manizales : Ind City ; - -fun Countries_CO_provinces_Caqueta : Ind Province ; - -fun Countries_CO_provinces_Caqueta_cities_Florencia : Ind City ; - -fun Countries_CO_provinces_Casanare : Ind Province ; - -fun Countries_CO_provinces_Casanare_cities_Yopal : Ind City ; - -fun Countries_CO_provinces_Cauca : Ind Province ; - -fun Countries_CO_provinces_Cauca_cities_Popayan : Ind City ; - -fun Countries_CO_provinces_Cesar : Ind Province ; - -fun Countries_CO_provinces_Cesar_cities_Valledupar : Ind City ; - -fun Countries_CO_provinces_Choco : Ind Province ; - -fun Countries_CO_provinces_Choco_cities_Quibdo : Ind City ; - -fun Countries_CO_provinces_Cordoba : Ind Province ; - -fun Countries_CO_provinces_Cordoba_cities_Monteria : Ind City ; - -fun Countries_CO_provinces_Cundinamarca : Ind Province ; - -fun Countries_CO_provinces_Cundinamarca_cities_Soacha : Ind City ; - -fun Countries_CO_provinces_Guainia : Ind Province ; - -fun Countries_CO_provinces_Guainia_cities_PuertoInirida : Ind City ; - -fun Countries_CO_provinces_Guajira_La : Ind Province ; - -fun Countries_CO_provinces_Guajira_La_cities_Cienaga : Ind City ; - -fun Countries_CO_provinces_Guajira_La_cities_Riohacha : Ind City ; - -fun Countries_CO_provinces_Guaviare : Ind Province ; - -fun Countries_CO_provinces_Guaviare_cities_SanJosedelGuaviare : Ind City ; - -fun Countries_CO_provinces_Huila : Ind Province ; - -fun Countries_CO_provinces_Huila_cities_Neiva : Ind City ; - -fun Countries_CO_provinces_Magdalena : Ind Province ; - -fun Countries_CO_provinces_Magdalena_cities_SantaMarta : Ind City ; - -fun Countries_CO_provinces_Meta : Ind Province ; - -fun Countries_CO_provinces_Meta_cities_Villavicencio : Ind City ; - -fun Countries_CO_provinces_Narino : Ind Province ; - -fun Countries_CO_provinces_Narino_cities_Pasto : Ind City ; - -fun Countries_CO_provinces_Narino_cities_Tumaco : Ind City ; - -fun Countries_CO_provinces_NortedeSantander : Ind Province ; - -fun Countries_CO_provinces_NortedeSantander_cities_Cucuta : Ind City ; - -fun Countries_CO_provinces_Putumayo : Ind Province ; - -fun Countries_CO_provinces_Putumayo_cities_Mocoa : Ind City ; - -fun Countries_CO_provinces_Quindio : Ind Province ; - -fun Countries_CO_provinces_Quindio_cities_Armenia : Ind City ; - -fun Countries_CO_provinces_Risaralda : Ind Province ; - -fun Countries_CO_provinces_Risaralda_cities_Dosquebradas : Ind City ; - -fun Countries_CO_provinces_Risaralda_cities_Pereira : Ind City ; - -fun Countries_CO_provinces_SanAndresyProvidencia : Ind Province ; - -fun Countries_CO_provinces_SanAndresyProvidencia_cities_SanAndres : Ind City ; - -fun Countries_CO_provinces_SantaFedeBogota_DC : Ind Province ; - -fun Countries_CO_provinces_SantaFedeBogota_DC_cities_Bogota : Ind City ; - -fun Countries_CO_provinces_SantanderdelSur : Ind Province ; - -fun Countries_CO_provinces_SantanderdelSur_cities_Barrancabermeja : Ind City ; - -fun Countries_CO_provinces_SantanderdelSur_cities_Bucaramanga : Ind City ; - -fun Countries_CO_provinces_SantanderdelSur_cities_Floridablanca : Ind City ; - -fun Countries_CO_provinces_Sucre : Ind Province ; - -fun Countries_CO_provinces_Sucre_cities_Sincelejo : Ind City ; - -fun Countries_CO_provinces_Tolima : Ind Province ; - -fun Countries_CO_provinces_Tolima_cities_Ibague : Ind City ; - -fun Countries_CO_provinces_ValledeCauca : Ind Province ; - -fun Countries_CO_provinces_ValledeCauca_cities_Buenaventura : Ind City ; - -fun Countries_CO_provinces_ValledeCauca_cities_Cali : Ind City ; - -fun Countries_CO_provinces_ValledeCauca_cities_Cartago : Ind City ; - -fun Countries_CO_provinces_ValledeCauca_cities_Palmira : Ind City ; - -fun Countries_CO_provinces_ValledeCauca_cities_Tulua : Ind City ; - -fun Countries_CO_provinces_Vaupes : Ind Province ; - -fun Countries_CO_provinces_Vaupes_cities_Mitu : Ind City ; - -fun Countries_CO_provinces_Vichada : Ind Province ; - -fun Countries_CO_provinces_Vichada_cities_PuertoCarreno : Ind City ; - -fun Countries_CR_provinces_Alajuela : Ind Province ; - -fun Countries_CR_provinces_Alajuela_cities_Alajuela : Ind City ; - -fun Countries_CR_provinces_Cartago : Ind Province ; - -fun Countries_CR_provinces_Cartago_cities_Cartago : Ind City ; - -fun Countries_CR_provinces_Guanacaste : Ind Province ; - -fun Countries_CR_provinces_Guanacaste_cities_Liberia : Ind City ; - -fun Countries_CR_provinces_Heredia : Ind Province ; - -fun Countries_CR_provinces_Heredia_cities_Heredia : Ind City ; - -fun Countries_CR_provinces_Limon : Ind Province ; - -fun Countries_CR_provinces_Limon_cities_Limon : Ind City ; - -fun Countries_CR_provinces_Punarenas : Ind Province ; - -fun Countries_CR_provinces_Punarenas_cities_Puntarenas : Ind City ; - -fun Countries_CR_provinces_SanJose : Ind Province ; - -fun Countries_CR_provinces_SanJose_cities_SanJose : Ind City ; - -fun Countries_CV_cities_Praia : Ind City ; - -fun Countries_CY_cities_Nicosia : Ind City ; - -fun Countries_CZ_provinces_Jihocesky : Ind Province ; - -fun Countries_CZ_provinces_Jihocesky_cities_CeskeBudejovice : Ind City ; - -fun Countries_CZ_provinces_Jihomoravsky : Ind Province ; - -fun Countries_CZ_provinces_Jihomoravsky_cities_Brno : Ind City ; - -fun Countries_CZ_provinces_Jihomoravsky_cities_Zlin : Ind City ; - -fun Countries_CZ_provinces_Praha : Ind Province ; - -fun Countries_CZ_provinces_Praha_cities_Prague : Ind City ; - -fun Countries_CZ_provinces_Severocesky : Ind Province ; - -fun Countries_CZ_provinces_Severocesky_cities_Liberec : Ind City ; - -fun Countries_CZ_provinces_Severocesky_cities_UstinadLabem : Ind City ; - -fun Countries_CZ_provinces_Severomoravsky : Ind Province ; - -fun Countries_CZ_provinces_Severomoravsky_cities_Olomouc : Ind City ; - -fun Countries_CZ_provinces_Severomoravsky_cities_Ostrava : Ind City ; - -fun Countries_CZ_provinces_Vychodocesky : Ind Province ; - -fun Countries_CZ_provinces_Vychodocesky_cities_HradecKralove : Ind City ; - -fun Countries_CZ_provinces_Vychodocesky_cities_Pardubice : Ind City ; - -fun Countries_CZ_provinces_Zapadocesky : Ind Province ; - -fun Countries_CZ_provinces_Zapadocesky_cities_Plzen : Ind City ; - -fun Countries_C_provinces_Camaguey : Ind Province ; - -fun Countries_C_provinces_Camaguey_cities_Camaguey : Ind City ; - -fun Countries_C_provinces_CiegodeAvila : Ind Province ; - -fun Countries_C_provinces_CiegodeAvila_cities_CiegodeAvila : Ind City ; - -fun Countries_C_provinces_Cienfuegos : Ind Province ; - -fun Countries_C_provinces_Cienfuegos_cities_Cienfuegos : Ind City ; - -fun Countries_C_provinces_CiudaddelaHabana : Ind Province ; - -fun Countries_C_provinces_CiudaddelaHabana_cities_Havana : Ind City ; - -fun Countries_C_provinces_Granma : Ind Province ; - -fun Countries_C_provinces_Granma_cities_Bayamo : Ind City ; - -fun Countries_C_provinces_Granma_cities_Manzanillo : Ind City ; - -fun Countries_C_provinces_Guantanamo : Ind Province ; - -fun Countries_C_provinces_Guantanamo_cities_Guantanamo : Ind City ; - -fun Countries_C_provinces_Holguin : Ind Province ; - -fun Countries_C_provinces_Holguin_cities_Holguin : Ind City ; - -fun Countries_C_provinces_IsladelaJuventud : Ind Province ; - -fun Countries_C_provinces_IsladelaJuventud_cities_NuevaGerona : Ind City ; - -fun Countries_C_provinces_LaHabana : Ind Province ; - -fun Countries_C_provinces_LasTunas : Ind Province ; - -fun Countries_C_provinces_LasTunas_cities_VictoriadelasTunas : Ind City ; - -fun Countries_C_provinces_Matanzas : Ind Province ; - -fun Countries_C_provinces_Matanzas_cities_Matanzas : Ind City ; - -fun Countries_C_provinces_PinardelRio : Ind Province ; - -fun Countries_C_provinces_PinardelRio_cities_PinardelRio : Ind City ; - -fun Countries_C_provinces_SanctiSpiritus : Ind Province ; - -fun Countries_C_provinces_SanctiSpiritus_cities_SanctiSpiritus : Ind City ; - -fun Countries_C_provinces_SantiagodeCuba : Ind Province ; - -fun Countries_C_provinces_SantiagodeCuba_cities_SantiagodeCuba : Ind City ; - -fun Countries_C_provinces_VillaClara : Ind Province ; - -fun Countries_C_provinces_VillaClara_cities_SantaClara : Ind City ; - -fun Countries_DJI_cities_Djibouti : Ind City ; - -fun Countries_DK_cities_Aalborg : Ind City ; - -fun Countries_DK_cities_Aarhus : Ind City ; - -fun Countries_DK_cities_Copenhagen : Ind City ; - -fun Countries_DK_cities_Esbjerg : Ind City ; - -fun Countries_DK_cities_Odense : Ind City ; - -fun Countries_DK_cities_Randers : Ind City ; - -fun Countries_DOM_cities_SantoDomingo : Ind City ; - -fun Countries_DZ_cities_Algiers : Ind City ; - -fun Countries_DZ_cities_Annaba : Ind City ; - -fun Countries_DZ_cities_Batna : Ind City ; - -fun Countries_DZ_cities_Bechar : Ind City ; - -fun Countries_DZ_cities_Bejaia : Ind City ; - -fun Countries_DZ_cities_Blida : Ind City ; - -fun Countries_DZ_cities_Constantine : Ind City ; - -fun Countries_DZ_cities_Mostaganem : Ind City ; - -fun Countries_DZ_cities_Oran : Ind City ; - -fun Countries_DZ_cities_Setif : Ind City ; - -fun Countries_DZ_cities_SidibelAbbes : Ind City ; - -fun Countries_DZ_cities_Skikda : Ind City ; - -fun Countries_DZ_cities_Tebessa : Ind City ; - -fun Countries_DZ_cities_Tlemcen : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg : Ind Province ; - -fun Countries_D_provinces_BadenWurttemberg_cities_FreiburgimBreisgau : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Heidelberg : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Heilbronn : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Karlsruhe : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Mannheim : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Pforzheim : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Reutlingen : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Stuttgart : Ind City ; - -fun Countries_D_provinces_BadenWurttemberg_cities_Ulm : Ind City ; - -fun Countries_D_provinces_Bayern : Ind Province ; - -fun Countries_D_provinces_Bayern_cities_Augsburg : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Erlangen : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Furth : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Ingolstadt : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Munich : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Nurnberg : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Regensburg : Ind City ; - -fun Countries_D_provinces_Bayern_cities_Wurzburg : Ind City ; - -fun Countries_D_provinces_Berlin : Ind Province ; - -fun Countries_D_provinces_Berlin_cities_Berlin : Ind City ; - -fun Countries_D_provinces_Brandenburg : Ind Province ; - -fun Countries_D_provinces_Brandenburg_cities_Cottbus : Ind City ; - -fun Countries_D_provinces_Brandenburg_cities_Potsdam : Ind City ; - -fun Countries_D_provinces_Bremen : Ind Province ; - -fun Countries_D_provinces_Bremen_cities_Bremen : Ind City ; - -fun Countries_D_provinces_Bremen_cities_Bremerhaven : Ind City ; - -fun Countries_D_provinces_Hamburg : Ind Province ; - -fun Countries_D_provinces_Hamburg_cities_Hamburg : Ind City ; - -fun Countries_D_provinces_Hessen : Ind Province ; - -fun Countries_D_provinces_Hessen_cities_Darmstadt : Ind City ; - -fun Countries_D_provinces_Hessen_cities_FrankfurtamMain : Ind City ; - -fun Countries_D_provinces_Hessen_cities_Kassel : Ind City ; - -fun Countries_D_provinces_Hessen_cities_OffenbachamMain : Ind City ; - -fun Countries_D_provinces_Hessen_cities_Wiesbaden : Ind City ; - -fun Countries_D_provinces_MecklenburgVorpommern : Ind Province ; - -fun Countries_D_provinces_MecklenburgVorpommern_cities_Rostock : Ind City ; - -fun Countries_D_provinces_MecklenburgVorpommern_cities_Schwerin : Ind City ; - -fun Countries_D_provinces_Niedersachsen : Ind Province ; - -fun Countries_D_provinces_Niedersachsen_cities_Braunschweig : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Gottingen : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Hannover : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Hildesheim : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Oldenburg : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Osnabruck : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Salzgitter : Ind City ; - -fun Countries_D_provinces_Niedersachsen_cities_Wolfsburg : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen : Ind Province ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Aachen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_BergischGladbach : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Bielefeld : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Bochum : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Bonn : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Bottrop : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Dortmund : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Duisburg : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Dusseldorf : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Essen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Gelsenkirchen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Hagen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Hamm : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Herne : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Koln : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Krefeld : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Leverkusen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Moers : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Monchengladbach : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_MulheimanderRuhr : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Munster : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Neuss : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Oberhausen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Paderborn : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Recklinghausen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Remscheid : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Siegen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Solingen : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Witten : Ind City ; - -fun Countries_D_provinces_NordrheinWestfalen_cities_Wuppertal : Ind City ; - -fun Countries_D_provinces_RheinlandPfalz : Ind Province ; - -fun Countries_D_provinces_RheinlandPfalz_cities_Kaiserslautern : Ind City ; - -fun Countries_D_provinces_RheinlandPfalz_cities_Koblenz : Ind City ; - -fun Countries_D_provinces_RheinlandPfalz_cities_Ludwigshafen : Ind City ; - -fun Countries_D_provinces_RheinlandPfalz_cities_Mainz : Ind City ; - -fun Countries_D_provinces_Saarland : Ind Province ; - -fun Countries_D_provinces_Saarland_cities_Saarbrucken : Ind City ; - -fun Countries_D_provinces_Sachsen : Ind Province ; - -fun Countries_D_provinces_SachsenAnhalt : Ind Province ; - -fun Countries_D_provinces_SachsenAnhalt_cities_Halle : Ind City ; - -fun Countries_D_provinces_SachsenAnhalt_cities_Magdeburg : Ind City ; - -fun Countries_D_provinces_Sachsen_cities_Chemnitz : Ind City ; - -fun Countries_D_provinces_Sachsen_cities_Dresden : Ind City ; - -fun Countries_D_provinces_Sachsen_cities_Leipzig : Ind City ; - -fun Countries_D_provinces_Sachsen_cities_Zwickau : Ind City ; - -fun Countries_D_provinces_SchleswigHolstein : Ind Province ; - -fun Countries_D_provinces_SchleswigHolstein_cities_Kiel : Ind City ; - -fun Countries_D_provinces_SchleswigHolstein_cities_Lubeck : Ind City ; - -fun Countries_D_provinces_Thuringen : Ind Province ; - -fun Countries_D_provinces_Thuringen_cities_Erfurt : Ind City ; - -fun Countries_D_provinces_Thuringen_cities_Gera : Ind City ; - -fun Countries_D_provinces_Thuringen_cities_Jena : Ind City ; - -fun Countries_EAK_provinces_Central : Ind Province ; - -fun Countries_EAK_provinces_Central_cities_Nyeri : Ind City ; - -fun Countries_EAK_provinces_Central_cities_Thika : Ind City ; - -fun Countries_EAK_provinces_Coast : Ind Province ; - -fun Countries_EAK_provinces_Coast_cities_Malindi : Ind City ; - -fun Countries_EAK_provinces_Coast_cities_Mombasa : Ind City ; - -fun Countries_EAK_provinces_Eastern : Ind Province ; - -fun Countries_EAK_provinces_Eastern_cities_Embu : Ind City ; - -fun Countries_EAK_provinces_Eastern_cities_Machakos : Ind City ; - -fun Countries_EAK_provinces_Eastern_cities_Meru : Ind City ; - -fun Countries_EAK_provinces_Nairobi : Ind Province ; - -fun Countries_EAK_provinces_Nairobi_cities_Nairobi : Ind City ; - -fun Countries_EAK_provinces_NorthEastern : Ind Province ; - -fun Countries_EAK_provinces_NorthEastern_cities_Garissa : Ind City ; - -fun Countries_EAK_provinces_Nyanza : Ind Province ; - -fun Countries_EAK_provinces_Nyanza_cities_Kisii : Ind City ; - -fun Countries_EAK_provinces_Nyanza_cities_Kisumu : Ind City ; - -fun Countries_EAK_provinces_RiftValley : Ind Province ; - -fun Countries_EAK_provinces_RiftValley_cities_Eldoret : Ind City ; - -fun Countries_EAK_provinces_RiftValley_cities_Kericho : Ind City ; - -fun Countries_EAK_provinces_RiftValley_cities_Kitale : Ind City ; - -fun Countries_EAK_provinces_RiftValley_cities_Nakuru : Ind City ; - -fun Countries_EAK_provinces_Western : Ind Province ; - -fun Countries_EAK_provinces_Western_cities_Kakamega : Ind City ; - -fun Countries_EAT_provinces_Arusha : Ind Province ; - -fun Countries_EAT_provinces_Arusha_cities_Arusha : Ind City ; - -fun Countries_EAT_provinces_Daressalam : Ind Province ; - -fun Countries_EAT_provinces_Daressalam_cities_DaresSalaam : Ind City ; - -fun Countries_EAT_provinces_Dodoma : Ind Province ; - -fun Countries_EAT_provinces_Dodoma_cities_Dodoma : Ind City ; - -fun Countries_EAT_provinces_Iringa : Ind Province ; - -fun Countries_EAT_provinces_Iringa_cities_Iringa : Ind City ; - -fun Countries_EAT_provinces_Kagera : Ind Province ; - -fun Countries_EAT_provinces_Kagera_cities_Bukoba : Ind City ; - -fun Countries_EAT_provinces_KaskaziniPemba : Ind Province ; - -fun Countries_EAT_provinces_KaskaziniPemba_cities_Wete : Ind City ; - -fun Countries_EAT_provinces_KaskaziniUjunga : Ind Province ; - -fun Countries_EAT_provinces_KaskaziniUjunga_cities_Mkokotoni : Ind City ; - -fun Countries_EAT_provinces_Kigoma : Ind Province ; - -fun Countries_EAT_provinces_Kigoma_cities_KigomaUjiji : Ind City ; - -fun Countries_EAT_provinces_Kilimanjaro : Ind Province ; - -fun Countries_EAT_provinces_Kilimanjaro_cities_Moshi : Ind City ; - -fun Countries_EAT_provinces_KusiniPemba : Ind Province ; - -fun Countries_EAT_provinces_KusiniPemba_cities_ChakeCahke : Ind City ; - -fun Countries_EAT_provinces_KusiniUjunga : Ind Province ; - -fun Countries_EAT_provinces_KusiniUjunga_cities_Koani : Ind City ; - -fun Countries_EAT_provinces_Lindi : Ind Province ; - -fun Countries_EAT_provinces_Lindi_cities_Lindi : Ind City ; - -fun Countries_EAT_provinces_Mara : Ind Province ; - -fun Countries_EAT_provinces_Mara_cities_Musoma : Ind City ; - -fun Countries_EAT_provinces_Mbeya : Ind Province ; - -fun Countries_EAT_provinces_Mbeya_cities_Mbeya : Ind City ; - -fun Countries_EAT_provinces_MjiniMagharibi : Ind Province ; - -fun Countries_EAT_provinces_MjiniMagharibi_cities_Zanzibar : Ind City ; - -fun Countries_EAT_provinces_Morogoro : Ind Province ; - -fun Countries_EAT_provinces_Morogoro_cities_Morogoro : Ind City ; - -fun Countries_EAT_provinces_Mtwara : Ind Province ; - -fun Countries_EAT_provinces_Mtwara_cities_MtwaraMikandani : Ind City ; - -fun Countries_EAT_provinces_Mwanza : Ind Province ; - -fun Countries_EAT_provinces_Mwanza_cities_Mwanza : Ind City ; - -fun Countries_EAT_provinces_Pwani : Ind Province ; - -fun Countries_EAT_provinces_Rukwa : Ind Province ; - -fun Countries_EAT_provinces_Rukwa_cities_Sumbawanga : Ind City ; - -fun Countries_EAT_provinces_Ruvuma : Ind Province ; - -fun Countries_EAT_provinces_Ruvuma_cities_Songea : Ind City ; - -fun Countries_EAT_provinces_Shinyanga : Ind Province ; - -fun Countries_EAT_provinces_Shinyanga_cities_Shinyanga : Ind City ; - -fun Countries_EAT_provinces_Singida : Ind Province ; - -fun Countries_EAT_provinces_Singida_cities_Singida : Ind City ; - -fun Countries_EAT_provinces_Tabora : Ind Province ; - -fun Countries_EAT_provinces_Tabora_cities_Tabora : Ind City ; - -fun Countries_EAT_provinces_Tanga : Ind Province ; - -fun Countries_EAT_provinces_Tanga_cities_Tanga : Ind City ; - -fun Countries_EAU_cities_Kampala : Ind City ; - -fun Countries_EC_cities_Guayaquil : Ind City ; - -fun Countries_EC_cities_Quito : Ind City ; - -fun Countries_ER_cities_Asmara : Ind City ; - -fun Countries_ES_cities_Apopa : Ind City ; - -fun Countries_ES_cities_Delgado : Ind City ; - -fun Countries_ES_cities_Mejicanos : Ind City ; - -fun Countries_ES_cities_Soyapango : Ind City ; - -fun Countries_ES_provinces_Ahuachapan : Ind Province ; - -fun Countries_ES_provinces_Ahuachapan_cities_Ahuachapan : Ind City ; - -fun Countries_ES_provinces_Cabanas : Ind Province ; - -fun Countries_ES_provinces_Cabanas_cities_Sensuntepeque : Ind City ; - -fun Countries_ES_provinces_Chalatenango : Ind Province ; - -fun Countries_ES_provinces_Chalatenango_cities_Chalatenango : Ind City ; - -fun Countries_ES_provinces_Cuscatlan : Ind Province ; - -fun Countries_ES_provinces_Cuscatlan_cities_Cojutepeque : Ind City ; - -fun Countries_ES_provinces_LaLibertad : Ind Province ; - -fun Countries_ES_provinces_LaLibertad_cities_NuevaSanSalvador : Ind City ; - -fun Countries_ES_provinces_LaPaz : Ind Province ; - -fun Countries_ES_provinces_LaPaz_cities_Zacatecoluca : Ind City ; - -fun Countries_ES_provinces_LaUnion : Ind Province ; - -fun Countries_ES_provinces_LaUnion_cities_LaUnion : Ind City ; - -fun Countries_ES_provinces_Morazan : Ind Province ; - -fun Countries_ES_provinces_Morazan_cities_SanFranciscoGotera : Ind City ; - -fun Countries_ES_provinces_SanMiguel : Ind Province ; - -fun Countries_ES_provinces_SanMiguel_cities_SanMiguel : Ind City ; - -fun Countries_ES_provinces_SanSalvador : Ind Province ; - -fun Countries_ES_provinces_SanSalvador_cities_SanSalvador : Ind City ; - -fun Countries_ES_provinces_SanVicente : Ind Province ; - -fun Countries_ES_provinces_SanVicente_cities_SanVicente : Ind City ; - -fun Countries_ES_provinces_SantaAna : Ind Province ; - -fun Countries_ES_provinces_SantaAna_cities_SantaAna : Ind City ; - -fun Countries_ES_provinces_Sonsonate : Ind Province ; - -fun Countries_ES_provinces_Sonsonate_cities_Sonsonate : Ind City ; - -fun Countries_ES_provinces_Usulutan : Ind Province ; - -fun Countries_ES_provinces_Usulutan_cities_Usulutan : Ind City ; - -fun Countries_ETH_cities_AddisAbaba : Ind City ; - -fun Countries_ETH_cities_BahirDar : Ind City ; - -fun Countries_ETH_cities_Debrezit : Ind City ; - -fun Countries_ETH_cities_Dese : Ind City ; - -fun Countries_ETH_cities_DireDawa : Ind City ; - -fun Countries_ETH_cities_Gonder : Ind City ; - -fun Countries_ETH_cities_Harer : Ind City ; - -fun Countries_ETH_cities_Jima : Ind City ; - -fun Countries_ETH_cities_Mekele : Ind City ; - -fun Countries_ETH_cities_Nazret : Ind City ; - -fun Countries_ET_provinces_Aswan : Ind Province ; - -fun Countries_ET_provinces_Aswan_cities_Aswan : Ind City ; - -fun Countries_ET_provinces_Asyut : Ind Province ; - -fun Countries_ET_provinces_Asyut_cities_Asyut : Ind City ; - -fun Countries_ET_provinces_BeniSuef : Ind Province ; - -fun Countries_ET_provinces_BeniSuef_cities_BeniSuef : Ind City ; - -fun Countries_ET_provinces_BurSaid_munic : Ind Province ; - -fun Countries_ET_provinces_BurSaid_munic_cities_BurSaid : Ind City ; - -fun Countries_ET_provinces_BurSaid_munic_cities_PortSaid : Ind City ; - -fun Countries_ET_provinces_Dumyat : Ind Province ; - -fun Countries_ET_provinces_Dumyat_cities_Dumyat : Ind City ; - -fun Countries_ET_provinces_ElBahrelAhmar : Ind Province ; - -fun Countries_ET_provinces_ElBahrelAhmar_cities_Hurghada : Ind City ; - -fun Countries_ET_provinces_ElBuhayra : Ind Province ; - -fun Countries_ET_provinces_ElBuhayra_cities_Damanhur : Ind City ; - -fun Countries_ET_provinces_ElBuhayra_cities_KafrelDauwar : Ind City ; - -fun Countries_ET_provinces_ElDaqahliya : Ind Province ; - -fun Countries_ET_provinces_ElDaqahliya_cities_ElMansura : Ind City ; - -fun Countries_ET_provinces_ElFaiyum : Ind Province ; - -fun Countries_ET_provinces_ElFaiyum_cities_ElFaiyum : Ind City ; - -fun Countries_ET_provinces_ElGharbiya : Ind Province ; - -fun Countries_ET_provinces_ElGharbiya_cities_ElMahallaelKubra : Ind City ; - -fun Countries_ET_provinces_ElGharbiya_cities_Tanta : Ind City ; - -fun Countries_ET_provinces_ElGiza : Ind Province ; - -fun Countries_ET_provinces_ElGiza_cities_ElGiza : Ind City ; - -fun Countries_ET_provinces_ElIskandariya_munic : Ind Province ; - -fun Countries_ET_provinces_ElIskandariya_munic_cities_Alexandria : Ind City ; - -fun Countries_ET_provinces_ElIskandariya_munic_cities_ElIskandariya : Ind City ; - -fun Countries_ET_provinces_ElMinufiya : Ind Province ; - -fun Countries_ET_provinces_ElMinufiya_cities_ShibinelKom : Ind City ; - -fun Countries_ET_provinces_ElMinya : Ind Province ; - -fun Countries_ET_provinces_ElMinya_cities_ElMinya : Ind City ; - -fun Countries_ET_provinces_ElQahira_munic : Ind Province ; - -fun Countries_ET_provinces_ElQahira_munic_cities_Cairo : Ind City ; - -fun Countries_ET_provinces_ElQahira_munic_cities_ElQahira : Ind City ; - -fun Countries_ET_provinces_ElQahira_munic_cities_Helwan : Ind City ; - -fun Countries_ET_provinces_ElQalubiya : Ind Province ; - -fun Countries_ET_provinces_ElQalubiya_cities_Benha : Ind City ; - -fun Countries_ET_provinces_ElQalubiya_cities_ShubraelKheima : Ind City ; - -fun Countries_ET_provinces_ElSuweiz_munic : Ind Province ; - -fun Countries_ET_provinces_ElSuweiz_munic_cities_ElSuweiz : Ind City ; - -fun Countries_ET_provinces_ElSuweiz_munic_cities_Suez : Ind City ; - -fun Countries_ET_provinces_ElWadielJadid : Ind Province ; - -fun Countries_ET_provinces_ElWadielJadid_cities_ElKharga : Ind City ; - -fun Countries_ET_provinces_Ismailiya : Ind Province ; - -fun Countries_ET_provinces_Ismailiya_cities_Ismailiya : Ind City ; - -fun Countries_ET_provinces_KafrelSheikh : Ind Province ; - -fun Countries_ET_provinces_KafrelSheikh_cities_KafrelSheikh : Ind City ; - -fun Countries_ET_provinces_Matruh : Ind Province ; - -fun Countries_ET_provinces_Matruh_cities_MarsaMatruh : Ind City ; - -fun Countries_ET_provinces_Qena : Ind Province ; - -fun Countries_ET_provinces_Qena_cities_ElUqsur : Ind City ; - -fun Countries_ET_provinces_Qena_cities_Qena : Ind City ; - -fun Countries_ET_provinces_Sharqiya : Ind Province ; - -fun Countries_ET_provinces_Sharqiya_cities_Zagazig : Ind City ; - -fun Countries_ET_provinces_SinaalJanubiyah : Ind Province ; - -fun Countries_ET_provinces_SinaalJanubiyah_cities_ElTur : Ind City ; - -fun Countries_ET_provinces_SinaashShamaliyah : Ind Province ; - -fun Countries_ET_provinces_SinaashShamaliyah_cities_ElArish : Ind City ; - -fun Countries_ET_provinces_Sohag : Ind Province ; - -fun Countries_ET_provinces_Sohag_cities_Sohag : Ind City ; - -fun Countries_EW_cities_Tallinn : Ind City ; - -fun Countries_E_provinces_Andalusia : Ind Province ; - -fun Countries_E_provinces_Andalusia_cities_Algeciras : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Almeria : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Cadiz : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Cordoba : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Granada : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Huelva : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Jaen : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_JerezdelaFrontera : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Malaga : Ind City ; - -fun Countries_E_provinces_Andalusia_cities_Sevilla : Ind City ; - -fun Countries_E_provinces_Aragon : Ind Province ; - -fun Countries_E_provinces_Aragon_cities_Zaragoza : Ind City ; - -fun Countries_E_provinces_Asturias : Ind Province ; - -fun Countries_E_provinces_Asturias_cities_Gijon : Ind City ; - -fun Countries_E_provinces_Asturias_cities_Oviedo : Ind City ; - -fun Countries_E_provinces_BalearicIslands : Ind Province ; - -fun Countries_E_provinces_BalearicIslands_cities_PalmadeMallorca : Ind City ; - -fun Countries_E_provinces_BasqueCountry : Ind Province ; - -fun Countries_E_provinces_BasqueCountry_cities_Bilbao : Ind City ; - -fun Countries_E_provinces_BasqueCountry_cities_Donostia : Ind City ; - -fun Countries_E_provinces_BasqueCountry_cities_VitoriaGasteiz : Ind City ; - -fun Countries_E_provinces_CanaryIslands : Ind Province ; - -fun Countries_E_provinces_CanaryIslands_cities_LaLaguna : Ind City ; - -fun Countries_E_provinces_CanaryIslands_cities_LasPalmasdeGranCanaria : Ind City ; - -fun Countries_E_provinces_CanaryIslands_cities_SantaCruzdeTenerife : Ind City ; - -fun Countries_E_provinces_Cantabria : Ind Province ; - -fun Countries_E_provinces_Cantabria_cities_Santander : Ind City ; - -fun Countries_E_provinces_CastileLaMancha : Ind Province ; - -fun Countries_E_provinces_CastileLaMancha_cities_Toledo : Ind City ; - -fun Countries_E_provinces_CastileandLeon : Ind Province ; - -fun Countries_E_provinces_CastileandLeon_cities_Albacete : Ind City ; - -fun Countries_E_provinces_CastileandLeon_cities_Burgos : Ind City ; - -fun Countries_E_provinces_CastileandLeon_cities_Leon : Ind City ; - -fun Countries_E_provinces_CastileandLeon_cities_Salamanca : Ind City ; - -fun Countries_E_provinces_CastileandLeon_cities_Valladolid : Ind City ; - -fun Countries_E_provinces_Catalonia : Ind Province ; - -fun Countries_E_provinces_Catalonia_cities_Badalona : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Baracaldo : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Barcelona : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_HospitaletdeLlobregat : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Lleida : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Mataro : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Sabadell : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_SantaColomadeGramanet : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Tarragona : Ind City ; - -fun Countries_E_provinces_Catalonia_cities_Terrassa : Ind City ; - -fun Countries_E_provinces_Estremadura : Ind Province ; - -fun Countries_E_provinces_Estremadura_cities_Badajoz : Ind City ; - -fun Countries_E_provinces_Estremadura_cities_Merida : Ind City ; - -fun Countries_E_provinces_Galicia : Ind Province ; - -fun Countries_E_provinces_Galicia_cities_LaCoruna : Ind City ; - -fun Countries_E_provinces_Galicia_cities_Orense : Ind City ; - -fun Countries_E_provinces_Galicia_cities_SantiagodeCompostella : Ind City ; - -fun Countries_E_provinces_Galicia_cities_Vigo : Ind City ; - -fun Countries_E_provinces_Madrid : Ind Province ; - -fun Countries_E_provinces_Madrid_cities_AlcaladeHenares : Ind City ; - -fun Countries_E_provinces_Madrid_cities_Alcorcon : Ind City ; - -fun Countries_E_provinces_Madrid_cities_Fuenlabrada : Ind City ; - -fun Countries_E_provinces_Madrid_cities_Getafe : Ind City ; - -fun Countries_E_provinces_Madrid_cities_Leganes : Ind City ; - -fun Countries_E_provinces_Madrid_cities_Madrid : Ind City ; - -fun Countries_E_provinces_Madrid_cities_Mostoles : Ind City ; - -fun Countries_E_provinces_Murcia : Ind Province ; - -fun Countries_E_provinces_Murcia_cities_Cartagena : Ind City ; - -fun Countries_E_provinces_Murcia_cities_Murcia : Ind City ; - -fun Countries_E_provinces_Navarre : Ind Province ; - -fun Countries_E_provinces_Navarre_cities_Pamplona : Ind City ; - -fun Countries_E_provinces_Rioja : Ind Province ; - -fun Countries_E_provinces_Rioja_cities_Logrono : Ind City ; - -fun Countries_E_provinces_Valencia : Ind Province ; - -fun Countries_E_provinces_Valencia_cities_Alacant : Ind City ; - -fun Countries_E_provinces_Valencia_cities_CastellondelaPlana : Ind City ; - -fun Countries_E_provinces_Valencia_cities_Elx : Ind City ; - -fun Countries_E_provinces_Valencia_cities_Valencia : Ind City ; - -fun Countries_FGU_cities_Cayenne : Ind City ; - -fun Countries_FJI_cities_Suva : Ind City ; - -fun Countries_FL_cities_Vaduz : Ind City ; - -fun Countries_FSM_cities_Kolonia : Ind City ; - -fun Countries_F_provinces_Alsace : Ind Province ; - -fun Countries_F_provinces_Alsace_cities_Mulhouse : Ind City ; - -fun Countries_F_provinces_Alsace_cities_Strasbourg : Ind City ; - -fun Countries_F_provinces_Aquitaine : Ind Province ; - -fun Countries_F_provinces_Aquitaine_cities_Bordeaux : Ind City ; - -fun Countries_F_provinces_Auvergne : Ind Province ; - -fun Countries_F_provinces_Auvergne_cities_ClermontFerrand : Ind City ; - -fun Countries_F_provinces_BasseNormandie : Ind Province ; - -fun Countries_F_provinces_BasseNormandie_cities_Caen : Ind City ; - -fun Countries_F_provinces_Bourgogne : Ind Province ; - -fun Countries_F_provinces_Bourgogne_cities_Dijon : Ind City ; - -fun Countries_F_provinces_Bretagne : Ind Province ; - -fun Countries_F_provinces_Bretagne_cities_Brest : Ind City ; - -fun Countries_F_provinces_Bretagne_cities_Rennes : Ind City ; - -fun Countries_F_provinces_Centre : Ind Province ; - -fun Countries_F_provinces_Centre_cities_Orleans : Ind City ; - -fun Countries_F_provinces_Centre_cities_Tours : Ind City ; - -fun Countries_F_provinces_ChampagneArdenne : Ind Province ; - -fun Countries_F_provinces_ChampagneArdenne_cities_ChalonssurMarne : Ind City ; - -fun Countries_F_provinces_ChampagneArdenne_cities_Reims : Ind City ; - -fun Countries_F_provinces_Corse : Ind Province ; - -fun Countries_F_provinces_Corse_cities_Ajaccio : Ind City ; - -fun Countries_F_provinces_FrancheComte : Ind Province ; - -fun Countries_F_provinces_FrancheComte_cities_Besancon : Ind City ; - -fun Countries_F_provinces_HauteNormandie : Ind Province ; - -fun Countries_F_provinces_HauteNormandie_cities_LeHavre : Ind City ; - -fun Countries_F_provinces_HauteNormandie_cities_Rouen : Ind City ; - -fun Countries_F_provinces_IledeFrance : Ind Province ; - -fun Countries_F_provinces_IledeFrance_cities_BoulogneBillancourt : Ind City ; - -fun Countries_F_provinces_IledeFrance_cities_Paris : Ind City ; - -fun Countries_F_provinces_LanguedocRousillon : Ind Province ; - -fun Countries_F_provinces_LanguedocRousillon_cities_Montpellier : Ind City ; - -fun Countries_F_provinces_LanguedocRousillon_cities_Nimes : Ind City ; - -fun Countries_F_provinces_LanguedocRousillon_cities_Perpignan : Ind City ; - -fun Countries_F_provinces_Limousin : Ind Province ; - -fun Countries_F_provinces_Limousin_cities_Limoges : Ind City ; - -fun Countries_F_provinces_Lorraine : Ind Province ; - -fun Countries_F_provinces_Lorraine_cities_Metz : Ind City ; - -fun Countries_F_provinces_Lorraine_cities_Nancy : Ind City ; - -fun Countries_F_provinces_MidiPyrenees : Ind Province ; - -fun Countries_F_provinces_MidiPyrenees_cities_Toulouse : Ind City ; - -fun Countries_F_provinces_NordPasdeCalais : Ind Province ; - -fun Countries_F_provinces_NordPasdeCalais_cities_Lille : Ind City ; - -fun Countries_F_provinces_PaysdelaLoire : Ind Province ; - -fun Countries_F_provinces_PaysdelaLoire_cities_Angers : Ind City ; - -fun Countries_F_provinces_PaysdelaLoire_cities_LeMans : Ind City ; - -fun Countries_F_provinces_PaysdelaLoire_cities_Nantes : Ind City ; - -fun Countries_F_provinces_Picardie : Ind Province ; - -fun Countries_F_provinces_Picardie_cities_Amiens : Ind City ; - -fun Countries_F_provinces_PoitouCharentes : Ind Province ; - -fun Countries_F_provinces_PoitouCharentes_cities_Poitiers : Ind City ; - -fun Countries_F_provinces_ProvenceCotedAzur : Ind Province ; - -fun Countries_F_provinces_ProvenceCotedAzur_cities_AixenProvence : Ind City ; - -fun Countries_F_provinces_ProvenceCotedAzur_cities_Marseille : Ind City ; - -fun Countries_F_provinces_ProvenceCotedAzur_cities_Nice : Ind City ; - -fun Countries_F_provinces_ProvenceCotedAzur_cities_Toulon : Ind City ; - -fun Countries_F_provinces_RhoneAlpes : Ind Province ; - -fun Countries_F_provinces_RhoneAlpes_cities_Grenoble : Ind City ; - -fun Countries_F_provinces_RhoneAlpes_cities_Lyon : Ind City ; - -fun Countries_F_provinces_RhoneAlpes_cities_SaintEtienne : Ind City ; - -fun Countries_F_provinces_RhoneAlpes_cities_Villeurbanne : Ind City ; - -fun Countries_GB_cities_Sandwell : Ind City ; - -fun Countries_GB_cities_WrexhamMaelor : Ind City ; - -fun Countries_GB_provinces_AberconwyandColwyn : Ind Province ; - -fun Countries_GB_provinces_AberconwyandColwyn_cities_ColwynBay : Ind City ; - -fun Countries_GB_provinces_Anglesey : Ind Province ; - -fun Countries_GB_provinces_Anglesey_cities_Llangefni : Ind City ; - -fun Countries_GB_provinces_Avon : Ind Province ; - -fun Countries_GB_provinces_Avon_cities_Bristol : Ind City ; - -fun Countries_GB_provinces_Bedfordshire : Ind Province ; - -fun Countries_GB_provinces_Bedfordshire_cities_Bedford : Ind City ; - -fun Countries_GB_provinces_Bedfordshire_cities_Luton : Ind City ; - -fun Countries_GB_provinces_Berkshire : Ind Province ; - -fun Countries_GB_provinces_Berkshire_cities_Bracknell : Ind City ; - -fun Countries_GB_provinces_Berkshire_cities_Newbury : Ind City ; - -fun Countries_GB_provinces_Berkshire_cities_Reading : Ind City ; - -fun Countries_GB_provinces_Berkshire_cities_Slough : Ind City ; - -fun Countries_GB_provinces_Berkshire_cities_Windsor : Ind City ; - -fun Countries_GB_provinces_Berkshire_cities_Wokingham : Ind City ; - -fun Countries_GB_provinces_BlaenauGwent : Ind Province ; - -fun Countries_GB_provinces_BlaenauGwent_cities_EbbwVale : Ind City ; - -fun Countries_GB_provinces_Borders : Ind Province ; - -fun Countries_GB_provinces_Borders_cities_NewtownSt_Boswells : Ind City ; - -fun Countries_GB_provinces_Bridgend : Ind Province ; - -fun Countries_GB_provinces_Bridgend_cities_Bridgend : Ind City ; - -fun Countries_GB_provinces_Buckinghamshire : Ind Province ; - -fun Countries_GB_provinces_Buckinghamshire_cities_Aylesbury : Ind City ; - -fun Countries_GB_provinces_Buckinghamshire_cities_MiltonKeynes : Ind City ; - -fun Countries_GB_provinces_Buckinghamshire_cities_Wycombe : Ind City ; - -fun Countries_GB_provinces_Caerphilly : Ind Province ; - -fun Countries_GB_provinces_Caerphilly_cities_YstradFawr : Ind City ; - -fun Countries_GB_provinces_Cambridgeshire : Ind Province ; - -fun Countries_GB_provinces_Cambridgeshire_cities_Cambridge : Ind City ; - -fun Countries_GB_provinces_Cambridgeshire_cities_Huntingdon : Ind City ; - -fun Countries_GB_provinces_Cambridgeshire_cities_Peterborough : Ind City ; - -fun Countries_GB_provinces_Cardiff : Ind Province ; - -fun Countries_GB_provinces_Cardiff_cities_Cardiff : Ind City ; - -fun Countries_GB_provinces_Carmarthenshire : Ind Province ; - -fun Countries_GB_provinces_Carmarthenshire_cities_Carmarthen : Ind City ; - -fun Countries_GB_provinces_Central : Ind Province ; - -fun Countries_GB_provinces_Central_cities_Stirling : Ind City ; - -fun Countries_GB_provinces_Ceredigion : Ind Province ; - -fun Countries_GB_provinces_Ceredigion_cities_Aberystwyth : Ind City ; - -fun Countries_GB_provinces_Cheshire : Ind Province ; - -fun Countries_GB_provinces_Cheshire_cities_Chester : Ind City ; - -fun Countries_GB_provinces_Cheshire_cities_Crewe : Ind City ; - -fun Countries_GB_provinces_Cheshire_cities_Macclesfield : Ind City ; - -fun Countries_GB_provinces_Cheshire_cities_Warrington : Ind City ; - -fun Countries_GB_provinces_Cleveland : Ind Province ; - -fun Countries_GB_provinces_Cleveland_cities_Middlesbrough : Ind City ; - -fun Countries_GB_provinces_Cleveland_cities_StocktononTees : Ind City ; - -fun Countries_GB_provinces_Cornwall_IslesofScilly : Ind Province ; - -fun Countries_GB_provinces_Cornwall_IslesofScilly_cities_Truro : Ind City ; - -fun Countries_GB_provinces_Cumbria : Ind Province ; - -fun Countries_GB_provinces_Cumbria_cities_Carlisle : Ind City ; - -fun Countries_GB_provinces_Denbighshire : Ind Province ; - -fun Countries_GB_provinces_Denbighshire_cities_Ruthin : Ind City ; - -fun Countries_GB_provinces_Derbyshire : Ind Province ; - -fun Countries_GB_provinces_Derbyshire_cities_Chesterfield : Ind City ; - -fun Countries_GB_provinces_Derbyshire_cities_Derby : Ind City ; - -fun Countries_GB_provinces_Derbyshire_cities_Matlock : Ind City ; - -fun Countries_GB_provinces_Derbyshire_cities_SuttoninAshfield : Ind City ; - -fun Countries_GB_provinces_Devon : Ind Province ; - -fun Countries_GB_provinces_Devon_cities_Exeter : Ind City ; - -fun Countries_GB_provinces_Devon_cities_Plymouth : Ind City ; - -fun Countries_GB_provinces_Dorset : Ind Province ; - -fun Countries_GB_provinces_Dorset_cities_Bournemouth : Ind City ; - -fun Countries_GB_provinces_Dorset_cities_Dorchester : Ind City ; - -fun Countries_GB_provinces_Dorset_cities_Poole : Ind City ; - -fun Countries_GB_provinces_DumfriesandGalloway : Ind Province ; - -fun Countries_GB_provinces_DumfriesandGalloway_cities_Dumfries : Ind City ; - -fun Countries_GB_provinces_Durham : Ind Province ; - -fun Countries_GB_provinces_Durham_cities_Darlington : Ind City ; - -fun Countries_GB_provinces_Durham_cities_Durham : Ind City ; - -fun Countries_GB_provinces_EastSussex : Ind Province ; - -fun Countries_GB_provinces_EastSussex_cities_Brighton : Ind City ; - -fun Countries_GB_provinces_EastSussex_cities_Lewes : Ind City ; - -fun Countries_GB_provinces_Essex : Ind Province ; - -fun Countries_GB_provinces_Essex_cities_Basildon : Ind City ; - -fun Countries_GB_provinces_Essex_cities_Braintree : Ind City ; - -fun Countries_GB_provinces_Essex_cities_Chelmsford : Ind City ; - -fun Countries_GB_provinces_Essex_cities_Colchester : Ind City ; - -fun Countries_GB_provinces_Essex_cities_EppingForest : Ind City ; - -fun Countries_GB_provinces_Essex_cities_SouthendonSea : Ind City ; - -fun Countries_GB_provinces_Fife : Ind Province ; - -fun Countries_GB_provinces_Fife_cities_Glenrothes : Ind City ; - -fun Countries_GB_provinces_Flintshire : Ind Province ; - -fun Countries_GB_provinces_Flintshire_cities_Mold : Ind City ; - -fun Countries_GB_provinces_Gloucestershire : Ind Province ; - -fun Countries_GB_provinces_Gloucestershire_cities_Cheltenham : Ind City ; - -fun Countries_GB_provinces_Gloucestershire_cities_Gloucester : Ind City ; - -fun Countries_GB_provinces_Gloucestershire_cities_Glouchester : Ind City ; - -fun Countries_GB_provinces_Gloucestershire_cities_Stroud : Ind City ; - -fun Countries_GB_provinces_Grampian : Ind Province ; - -fun Countries_GB_provinces_Grampian_cities_Aberdeen : Ind City ; - -fun Countries_GB_provinces_GreaterLondon : Ind Province ; - -fun Countries_GB_provinces_GreaterLondon_cities_London : Ind City ; - -fun Countries_GB_provinces_GreaterManchester : Ind Province ; - -fun Countries_GB_provinces_GreaterManchester_cities_Bolton : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Bury : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Manchester : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Oldham : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Rochdale : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Salford : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Stockport : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Tameside : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Trafford : Ind City ; - -fun Countries_GB_provinces_GreaterManchester_cities_Wigan : Ind City ; - -fun Countries_GB_provinces_Gwynedd : Ind Province ; - -fun Countries_GB_provinces_Gwynedd_cities_Caernarfon : Ind City ; - -fun Countries_GB_provinces_Hampshire : Ind Province ; - -fun Countries_GB_provinces_Hampshire_cities_Basingstoke : Ind City ; - -fun Countries_GB_provinces_Hampshire_cities_Eastleigh : Ind City ; - -fun Countries_GB_provinces_Hampshire_cities_Fareham : Ind City ; - -fun Countries_GB_provinces_Hampshire_cities_Havant : Ind City ; - -fun Countries_GB_provinces_Hampshire_cities_Portsmouth : Ind City ; - -fun Countries_GB_provinces_Hampshire_cities_Southampton : Ind City ; - -fun Countries_GB_provinces_Hampshire_cities_Winchester : Ind City ; - -fun Countries_GB_provinces_HerefordandWorcester : Ind Province ; - -fun Countries_GB_provinces_HerefordandWorcester_cities_Worcester : Ind City ; - -fun Countries_GB_provinces_Hertfordshire : Ind Province ; - -fun Countries_GB_provinces_Hertfordshire_cities_Hertford : Ind City ; - -fun Countries_GB_provinces_Hertfordshire_cities_SaintAlbans : Ind City ; - -fun Countries_GB_provinces_Highland : Ind Province ; - -fun Countries_GB_provinces_Highland_cities_Inverness : Ind City ; - -fun Countries_GB_provinces_Humberside : Ind Province ; - -fun Countries_GB_provinces_Humberside_cities_Beverley : Ind City ; - -fun Countries_GB_provinces_Humberside_cities_Hull : Ind City ; - -fun Countries_GB_provinces_Humberside_cities_KingstonuponHull : Ind City ; - -fun Countries_GB_provinces_IslandAreas_munic : Ind Province ; - -fun Countries_GB_provinces_IslandAreas_munic_cities_IslandAreas : Ind City ; - -fun Countries_GB_provinces_IsleofWight : Ind Province ; - -fun Countries_GB_provinces_Kent : Ind Province ; - -fun Countries_GB_provinces_Kent_cities_Canterbury : Ind City ; - -fun Countries_GB_provinces_Kent_cities_Dover : Ind City ; - -fun Countries_GB_provinces_Kent_cities_Maidstone : Ind City ; - -fun Countries_GB_provinces_Kent_cities_RochesteruponMedway : Ind City ; - -fun Countries_GB_provinces_Kent_cities_Sevenoaks : Ind City ; - -fun Countries_GB_provinces_Kent_cities_Swale : Ind City ; - -fun Countries_GB_provinces_Kent_cities_Tonbridge : Ind City ; - -fun Countries_GB_provinces_Kent_cities_TunbridgeWells : Ind City ; - -fun Countries_GB_provinces_Lancashire : Ind Province ; - -fun Countries_GB_provinces_Lancashire_cities_Blackburn : Ind City ; - -fun Countries_GB_provinces_Lancashire_cities_Blackpool : Ind City ; - -fun Countries_GB_provinces_Lancashire_cities_Lancaster : Ind City ; - -fun Countries_GB_provinces_Lancashire_cities_Preston : Ind City ; - -fun Countries_GB_provinces_Leicestershire : Ind Province ; - -fun Countries_GB_provinces_Leicestershire_cities_Leicester : Ind City ; - -fun Countries_GB_provinces_Leicestershire_cities_Leichester : Ind City ; - -fun Countries_GB_provinces_Lincolnshire : Ind Province ; - -fun Countries_GB_provinces_Lincolnshire_cities_Lincoln : Ind City ; - -fun Countries_GB_provinces_Lothian : Ind Province ; - -fun Countries_GB_provinces_Lothian_cities_Edinburgh : Ind City ; - -fun Countries_GB_provinces_Merseyside : Ind Province ; - -fun Countries_GB_provinces_Merseyside_cities_Knowsley : Ind City ; - -fun Countries_GB_provinces_Merseyside_cities_Liverpool : Ind City ; - -fun Countries_GB_provinces_Merseyside_cities_SaintHelens : Ind City ; - -fun Countries_GB_provinces_Merseyside_cities_Sefton : Ind City ; - -fun Countries_GB_provinces_Merseyside_cities_Wiral : Ind City ; - -fun Countries_GB_provinces_MerthyrTydfil : Ind Province ; - -fun Countries_GB_provinces_MerthyrTydfil_cities_MerthyrTydfil : Ind City ; - -fun Countries_GB_provinces_Monmouthshire : Ind Province ; - -fun Countries_GB_provinces_Monmouthshire_cities_Cwmbran : Ind City ; - -fun Countries_GB_provinces_NeathandPortTalbot : Ind Province ; - -fun Countries_GB_provinces_NeathandPortTalbot_cities_PortTalbot : Ind City ; - -fun Countries_GB_provinces_Newport : Ind Province ; - -fun Countries_GB_provinces_Newport_cities_Newport : Ind City ; - -fun Countries_GB_provinces_Norfolk : Ind Province ; - -fun Countries_GB_provinces_Norfolk_cities_KingsLynn : Ind City ; - -fun Countries_GB_provinces_Norfolk_cities_Norwich : Ind City ; - -fun Countries_GB_provinces_NorthYorkshire : Ind Province ; - -fun Countries_GB_provinces_NorthYorkshire_cities_Harrogate : Ind City ; - -fun Countries_GB_provinces_NorthYorkshire_cities_Northallerton : Ind City ; - -fun Countries_GB_provinces_NorthYorkshire_cities_Scarborough : Ind City ; - -fun Countries_GB_provinces_NorthYorkshire_cities_York : Ind City ; - -fun Countries_GB_provinces_Northamptonshire : Ind Province ; - -fun Countries_GB_provinces_Northamptonshire_cities_Northampton : Ind City ; - -fun Countries_GB_provinces_NorthernIreland : Ind Province ; - -fun Countries_GB_provinces_NorthernIreland_cities_Belfast : Ind City ; - -fun Countries_GB_provinces_Northumberland : Ind Province ; - -fun Countries_GB_provinces_Nottinghamshire : Ind Province ; - -fun Countries_GB_provinces_Nottinghamshire_cities_Mansfield : Ind City ; - -fun Countries_GB_provinces_Nottinghamshire_cities_NewarkonTrent : Ind City ; - -fun Countries_GB_provinces_Nottinghamshire_cities_Nottingham : Ind City ; - -fun Countries_GB_provinces_Oxfordshire : Ind Province ; - -fun Countries_GB_provinces_Oxfordshire_cities_Oxford : Ind City ; - -fun Countries_GB_provinces_Pembrokeshire : Ind Province ; - -fun Countries_GB_provinces_Pembrokeshire_cities_Haverfordwest : Ind City ; - -fun Countries_GB_provinces_Powys : Ind Province ; - -fun Countries_GB_provinces_Powys_cities_LlandrindodWells : Ind City ; - -fun Countries_GB_provinces_RhonddaCynonTaff : Ind Province ; - -fun Countries_GB_provinces_RhonddaCynonTaff_cities_Rhondda : Ind City ; - -fun Countries_GB_provinces_Shropshire : Ind Province ; - -fun Countries_GB_provinces_Shropshire_cities_Shrewsbury : Ind City ; - -fun Countries_GB_provinces_Somerset : Ind Province ; - -fun Countries_GB_provinces_Somerset_cities_Taunton : Ind City ; - -fun Countries_GB_provinces_SouthYorkshire : Ind Province ; - -fun Countries_GB_provinces_SouthYorkshire_cities_Barnsley : Ind City ; - -fun Countries_GB_provinces_SouthYorkshire_cities_Doncaster : Ind City ; - -fun Countries_GB_provinces_SouthYorkshire_cities_Rotherham : Ind City ; - -fun Countries_GB_provinces_SouthYorkshire_cities_Sheffield : Ind City ; - -fun Countries_GB_provinces_Staffordshire : Ind Province ; - -fun Countries_GB_provinces_Staffordshire_cities_NewcastleunderLyme : Ind City ; - -fun Countries_GB_provinces_Staffordshire_cities_Stafford : Ind City ; - -fun Countries_GB_provinces_Staffordshire_cities_StokeonTrent : Ind City ; - -fun Countries_GB_provinces_Strathclyde : Ind Province ; - -fun Countries_GB_provinces_Strathclyde_cities_Glasgow : Ind City ; - -fun Countries_GB_provinces_Strathclyde_cities_Renfrew : Ind City ; - -fun Countries_GB_provinces_Suffolk : Ind Province ; - -fun Countries_GB_provinces_Suffolk_cities_Ipswich : Ind City ; - -fun Countries_GB_provinces_Surrey : Ind Province ; - -fun Countries_GB_provinces_Surrey_cities_Elmbridge : Ind City ; - -fun Countries_GB_provinces_Surrey_cities_Guildford : Ind City ; - -fun Countries_GB_provinces_Surrey_cities_Kingston : Ind City ; - -fun Countries_GB_provinces_Surrey_cities_Reigate : Ind City ; - -fun Countries_GB_provinces_Swansea : Ind Province ; - -fun Countries_GB_provinces_Swansea_cities_Swansea : Ind City ; - -fun Countries_GB_provinces_Tayside : Ind Province ; - -fun Countries_GB_provinces_Tayside_cities_Dundee : Ind City ; - -fun Countries_GB_provinces_Torfaen : Ind Province ; - -fun Countries_GB_provinces_Torfaen_cities_Pontypool : Ind City ; - -fun Countries_GB_provinces_TyneandWear : Ind Province ; - -fun Countries_GB_provinces_TyneandWear_cities_Gateshead : Ind City ; - -fun Countries_GB_provinces_TyneandWear_cities_Newcastle : Ind City ; - -fun Countries_GB_provinces_TyneandWear_cities_NewcastleuponTyne : Ind City ; - -fun Countries_GB_provinces_TyneandWear_cities_Sunderland : Ind City ; - -fun Countries_GB_provinces_ValeofGlamorgan : Ind Province ; - -fun Countries_GB_provinces_ValeofGlamorgan_cities_Barry : Ind City ; - -fun Countries_GB_provinces_ValeofGlamorgan_cities_RhymneyValley : Ind City ; - -fun Countries_GB_provinces_Warwickshire : Ind Province ; - -fun Countries_GB_provinces_Warwickshire_cities_Nuneaton : Ind City ; - -fun Countries_GB_provinces_Warwickshire_cities_StratfordonAvon : Ind City ; - -fun Countries_GB_provinces_Warwickshire_cities_Warwick : Ind City ; - -fun Countries_GB_provinces_WestMidlands : Ind Province ; - -fun Countries_GB_provinces_WestMidlands_cities_Birmingham : Ind City ; - -fun Countries_GB_provinces_WestMidlands_cities_Coventry : Ind City ; - -fun Countries_GB_provinces_WestMidlands_cities_Dudley : Ind City ; - -fun Countries_GB_provinces_WestMidlands_cities_Solihull : Ind City ; - -fun Countries_GB_provinces_WestMidlands_cities_Walsall : Ind City ; - -fun Countries_GB_provinces_WestMidlands_cities_WestBromwich : Ind City ; - -fun Countries_GB_provinces_WestMidlands_cities_Wolverhampton : Ind City ; - -fun Countries_GB_provinces_WestSussex : Ind Province ; - -fun Countries_GB_provinces_WestSussex_cities_Chichester : Ind City ; - -fun Countries_GB_provinces_WestSussex_cities_Horsham : Ind City ; - -fun Countries_GB_provinces_WestYorkshire : Ind Province ; - -fun Countries_GB_provinces_WestYorkshire_cities_Bradford : Ind City ; - -fun Countries_GB_provinces_WestYorkshire_cities_Huddersfield : Ind City ; - -fun Countries_GB_provinces_WestYorkshire_cities_Kirklees : Ind City ; - -fun Countries_GB_provinces_WestYorkshire_cities_Leeds : Ind City ; - -fun Countries_GB_provinces_WestYorkshire_cities_Wakefield : Ind City ; - -fun Countries_GB_provinces_Wiltshire : Ind Province ; - -fun Countries_GB_provinces_Wiltshire_cities_Salisbury : Ind City ; - -fun Countries_GB_provinces_Wiltshire_cities_Trowbridge : Ind City ; - -fun Countries_GB_provinces_Wrexham : Ind Province ; - -fun Countries_GB_provinces_Wrexham_cities_Wrexham : Ind City ; - -fun Countries_GCA_cities_GuatemalaCity : Ind City ; - -fun Countries_GCA_cities_Mixco : Ind City ; - -fun Countries_GCA_cities_VillaNueva : Ind City ; - -fun Countries_GE_cities_Tbilisi : Ind City ; - -fun Countries_GH_cities_Accra : Ind City ; - -fun Countries_GH_cities_CapeCoast : Ind City ; - -fun Countries_GH_cities_Kumasi : Ind City ; - -fun Countries_GH_cities_Sekondi : Ind City ; - -fun Countries_GH_cities_Takoradi : Ind City ; - -fun Countries_GH_cities_Tamale : Ind City ; - -fun Countries_GH_cities_Tema : Ind City ; - -fun Countries_GNB_cities_Bissau : Ind City ; - -fun Countries_GQ_cities_Malabo : Ind City ; - -fun Countries_GQ_cities_Sta_Isabel : Ind City ; - -fun Countries_GR_cities_Iraklion : Ind City ; - -fun Countries_GR_cities_Kavalla : Ind City ; - -fun Countries_GR_cities_Larisa : Ind City ; - -fun Countries_GR_cities_Patrai : Ind City ; - -fun Countries_GR_cities_Piraeus : Ind City ; - -fun Countries_GR_cities_Thessaloniki : Ind City ; - -fun Countries_GR_cities_Volos : Ind City ; - -fun Countries_GR_provinces_AnatolikiMakedhoniakaiThraki : Ind Province ; - -fun Countries_GR_provinces_Attiki : Ind Province ; - -fun Countries_GR_provinces_Attiki_cities_Athens : Ind City ; - -fun Countries_GR_provinces_DhytikiEllas : Ind Province ; - -fun Countries_GR_provinces_DhytikiMakedhonia : Ind Province ; - -fun Countries_GR_provinces_IonioiNisoi : Ind Province ; - -fun Countries_GR_provinces_Ipiros : Ind Province ; - -fun Countries_GR_provinces_KedrikiMakedhonia : Ind Province ; - -fun Countries_GR_provinces_Kriti : Ind Province ; - -fun Countries_GR_provinces_NotionAiyaion : Ind Province ; - -fun Countries_GR_provinces_Peloponnisos : Ind Province ; - -fun Countries_GR_provinces_StereaEllas : Ind Province ; - -fun Countries_GR_provinces_Thessalia : Ind Province ; - -fun Countries_GR_provinces_VoreionAiyaion : Ind Province ; - -fun Countries_GUY_cities_Georgetown : Ind City ; - -fun Countries_G_cities_Libreville : Ind City ; - -fun Countries_HCA_provinces_Atlantida : Ind Province ; - -fun Countries_HCA_provinces_Atlantida_cities_LaCeiba : Ind City ; - -fun Countries_HCA_provinces_Atlantida_cities_Tela : Ind City ; - -fun Countries_HCA_provinces_Choluteca : Ind Province ; - -fun Countries_HCA_provinces_Choluteca_cities_Choluteca : Ind City ; - -fun Countries_HCA_provinces_Colon : Ind Province ; - -fun Countries_HCA_provinces_Colon_cities_Trujillo : Ind City ; - -fun Countries_HCA_provinces_Comayagua : Ind Province ; - -fun Countries_HCA_provinces_Comayagua_cities_Comayagua : Ind City ; - -fun Countries_HCA_provinces_Copan : Ind Province ; - -fun Countries_HCA_provinces_Copan_cities_SantaRosadeCopan : Ind City ; - -fun Countries_HCA_provinces_Cortes : Ind Province ; - -fun Countries_HCA_provinces_Cortes_cities_PuertoCortes : Ind City ; - -fun Countries_HCA_provinces_Cortes_cities_SanPedroSula : Ind City ; - -fun Countries_HCA_provinces_ElParaiso : Ind Province ; - -fun Countries_HCA_provinces_ElParaiso_cities_Danli : Ind City ; - -fun Countries_HCA_provinces_ElParaiso_cities_Yuscaran : Ind City ; - -fun Countries_HCA_provinces_FranciscoMorazan : Ind Province ; - -fun Countries_HCA_provinces_FranciscoMorazan_cities_Siguatepeque : Ind City ; - -fun Countries_HCA_provinces_FranciscoMorazan_cities_Tegucigalpa : Ind City ; - -fun Countries_HCA_provinces_GraciasaDios : Ind Province ; - -fun Countries_HCA_provinces_GraciasaDios_cities_PuertoLempira : Ind City ; - -fun Countries_HCA_provinces_Intibuca : Ind Province ; - -fun Countries_HCA_provinces_Intibuca_cities_LaEsperanza : Ind City ; - -fun Countries_HCA_provinces_IslasdelaBahia : Ind Province ; - -fun Countries_HCA_provinces_IslasdelaBahia_cities_Roatan : Ind City ; - -fun Countries_HCA_provinces_LaPaz : Ind Province ; - -fun Countries_HCA_provinces_LaPaz_cities_LaPaz : Ind City ; - -fun Countries_HCA_provinces_Lempira : Ind Province ; - -fun Countries_HCA_provinces_Lempira_cities_Gracias : Ind City ; - -fun Countries_HCA_provinces_Ocotepeque : Ind Province ; - -fun Countries_HCA_provinces_Ocotepeque_cities_Ocotepeque : Ind City ; - -fun Countries_HCA_provinces_Olancho : Ind Province ; - -fun Countries_HCA_provinces_Olancho_cities_Jutigalpa : Ind City ; - -fun Countries_HCA_provinces_SantaBarbara : Ind Province ; - -fun Countries_HCA_provinces_SantaBarbara_cities_SantaBarbara : Ind City ; - -fun Countries_HCA_provinces_Valle : Ind Province ; - -fun Countries_HCA_provinces_Valle_cities_Nacaome : Ind City ; - -fun Countries_HCA_provinces_Yoro : Ind Province ; - -fun Countries_HCA_provinces_Yoro_cities_ElProgreso : Ind City ; - -fun Countries_HCA_provinces_Yoro_cities_Olanchito : Ind City ; - -fun Countries_HCA_provinces_Yoro_cities_Yoro : Ind City ; - -fun Countries_HR_cities_Zagreb : Ind City ; - -fun Countries_H_provinces_BacsKiskun : Ind Province ; - -fun Countries_H_provinces_BacsKiskun_cities_Kecskemet : Ind City ; - -fun Countries_H_provinces_Baranya : Ind Province ; - -fun Countries_H_provinces_Bekes : Ind Province ; - -fun Countries_H_provinces_Bekes_cities_Bekescaba : Ind City ; - -fun Countries_H_provinces_BorsodAbaujZemplen : Ind Province ; - -fun Countries_H_provinces_Budapest_munic : Ind Province ; - -fun Countries_H_provinces_Budapest_munic_cities_Budapest : Ind City ; - -fun Countries_H_provinces_Csongrad : Ind Province ; - -fun Countries_H_provinces_Csongrad_cities_Hodmezovasarhely : Ind City ; - -fun Countries_H_provinces_Debrecen_munic : Ind Province ; - -fun Countries_H_provinces_Debrecen_munic_cities_Debrecen : Ind City ; - -fun Countries_H_provinces_Fejer : Ind Province ; - -fun Countries_H_provinces_Fejer_cities_Szekesfehervar : Ind City ; - -fun Countries_H_provinces_GyorSopron : Ind Province ; - -fun Countries_H_provinces_Gyor_munic : Ind Province ; - -fun Countries_H_provinces_Gyor_munic_cities_Gyor : Ind City ; - -fun Countries_H_provinces_HajduBihar : Ind Province ; - -fun Countries_H_provinces_Heves : Ind Province ; - -fun Countries_H_provinces_Heves_cities_Eger : Ind City ; - -fun Countries_H_provinces_KomaromEsztergom : Ind Province ; - -fun Countries_H_provinces_KomaromEsztergom_cities_Tatabanya : Ind City ; - -fun Countries_H_provinces_Miskolc_munic : Ind Province ; - -fun Countries_H_provinces_Miskolc_munic_cities_Miskolc : Ind City ; - -fun Countries_H_provinces_Nograd : Ind Province ; - -fun Countries_H_provinces_Nograd_cities_Salgotarjan : Ind City ; - -fun Countries_H_provinces_Pecs_munic : Ind Province ; - -fun Countries_H_provinces_Pecs_munic_cities_Pecs : Ind City ; - -fun Countries_H_provinces_Pest : Ind Province ; - -fun Countries_H_provinces_Somogy : Ind Province ; - -fun Countries_H_provinces_Somogy_cities_Kaposvar : Ind City ; - -fun Countries_H_provinces_SzabolcsSzatmar : Ind Province ; - -fun Countries_H_provinces_SzabolcsSzatmar_cities_Nyiregyhaza : Ind City ; - -fun Countries_H_provinces_Szeged_munic : Ind Province ; - -fun Countries_H_provinces_Szeged_munic_cities_Szeged : Ind City ; - -fun Countries_H_provinces_Szolnok : Ind Province ; - -fun Countries_H_provinces_Szolnok_cities_Szolnok : Ind City ; - -fun Countries_H_provinces_Tolna : Ind Province ; - -fun Countries_H_provinces_Tolna_cities_Szekszard : Ind City ; - -fun Countries_H_provinces_Vas : Ind Province ; - -fun Countries_H_provinces_Vas_cities_Szombathely : Ind City ; - -fun Countries_H_provinces_Veszprem : Ind Province ; - -fun Countries_H_provinces_Veszprem_cities_Veszprem : Ind City ; - -fun Countries_H_provinces_Zala : Ind Province ; - -fun Countries_H_provinces_Zala_cities_Zalaegerszeg : Ind City ; - -fun Countries_IL_provinces_Central : Ind Province ; - -fun Countries_IL_provinces_Central_cities_Jerusalem : Ind City ; - -fun Countries_IL_provinces_Central_cities_Ramla : Ind City ; - -fun Countries_IL_provinces_Haifa : Ind Province ; - -fun Countries_IL_provinces_Haifa_cities_Haifa : Ind City ; - -fun Countries_IL_provinces_North : Ind Province ; - -fun Countries_IL_provinces_North_cities_Nazareth : Ind City ; - -fun Countries_IL_provinces_South : Ind Province ; - -fun Countries_IL_provinces_South_cities_BeerSheva : Ind City ; - -fun Countries_IL_provinces_TelAviv : Ind Province ; - -fun Countries_IL_provinces_TelAviv_cities_TelAviv : Ind City ; - -fun Countries_IND_cities_PimpriChinchwad : Ind City ; - -fun Countries_IND_provinces_AndamanandNicobarIs_ : Ind Province ; - -fun Countries_IND_provinces_AndamanandNicobarIs__cities_PortBlair : Ind City ; - -fun Countries_IND_provinces_AndhraPradesh : Ind Province ; - -fun Countries_IND_provinces_AndhraPradesh_cities_Guntur : Ind City ; - -fun Countries_IND_provinces_AndhraPradesh_cities_Hyderabad : Ind City ; - -fun Countries_IND_provinces_AndhraPradesh_cities_Rajahmundry : Ind City ; - -fun Countries_IND_provinces_AndhraPradesh_cities_Vijayawada : Ind City ; - -fun Countries_IND_provinces_AndhraPradesh_cities_Vishakhapatnam : Ind City ; - -fun Countries_IND_provinces_AndhraPradesh_cities_Warangal : Ind City ; - -fun Countries_IND_provinces_ArunachalPradesh : Ind Province ; - -fun Countries_IND_provinces_ArunachalPradesh_cities_Itanagar : Ind City ; - -fun Countries_IND_provinces_Assam : Ind Province ; - -fun Countries_IND_provinces_Assam_cities_Dispur : Ind City ; - -fun Countries_IND_provinces_Assam_cities_Gauhati : Ind City ; - -fun Countries_IND_provinces_Bihar : Ind Province ; - -fun Countries_IND_provinces_Bihar_cities_BokaraSteelCity : Ind City ; - -fun Countries_IND_provinces_Bihar_cities_Jamshedpur : Ind City ; - -fun Countries_IND_provinces_Bihar_cities_Patna : Ind City ; - -fun Countries_IND_provinces_Bihar_cities_Ranchi : Ind City ; - -fun Countries_IND_provinces_Chandigarh : Ind Province ; - -fun Countries_IND_provinces_Chandigarh_cities_Chandigarh : Ind City ; - -fun Countries_IND_provinces_DadraandNagarHaveli : Ind Province ; - -fun Countries_IND_provinces_DadraandNagarHaveli_cities_Silvassa : Ind City ; - -fun Countries_IND_provinces_DamanandDiu : Ind Province ; - -fun Countries_IND_provinces_DamanandDiu_cities_Daman : Ind City ; - -fun Countries_IND_provinces_Delhi : Ind Province ; - -fun Countries_IND_provinces_Delhi_cities_Ghaziabad : Ind City ; - -fun Countries_IND_provinces_Delhi_cities_NewDelhi : Ind City ; - -fun Countries_IND_provinces_Goa : Ind Province ; - -fun Countries_IND_provinces_Goa_cities_Panaji : Ind City ; - -fun Countries_IND_provinces_Gujarat : Ind Province ; - -fun Countries_IND_provinces_Gujarat_cities_Ahmadabad : Ind City ; - -fun Countries_IND_provinces_Gujarat_cities_Bhavnagar : Ind City ; - -fun Countries_IND_provinces_Gujarat_cities_Gandhinagar : Ind City ; - -fun Countries_IND_provinces_Gujarat_cities_Jamnagar : Ind City ; - -fun Countries_IND_provinces_Gujarat_cities_Rajkot : Ind City ; - -fun Countries_IND_provinces_Gujarat_cities_Surat : Ind City ; - -fun Countries_IND_provinces_Gujarat_cities_Vadodara : Ind City ; - -fun Countries_IND_provinces_Haryana : Ind Province ; - -fun Countries_IND_provinces_HimachalPradesh : Ind Province ; - -fun Countries_IND_provinces_HimachalPradesh_cities_Simla : Ind City ; - -fun Countries_IND_provinces_JammuandKashmir : Ind Province ; - -fun Countries_IND_provinces_JammuandKashmir_cities_Jammu : Ind City ; - -fun Countries_IND_provinces_JammuandKashmir_cities_Srinagar : Ind City ; - -fun Countries_IND_provinces_Karnataka : Ind Province ; - -fun Countries_IND_provinces_Karnataka_cities_Bangalore : Ind City ; - -fun Countries_IND_provinces_Karnataka_cities_Hubli : Ind City ; - -fun Countries_IND_provinces_Karnataka_cities_Mysore : Ind City ; - -fun Countries_IND_provinces_Kerala : Ind Province ; - -fun Countries_IND_provinces_Kerala_cities_Cochin : Ind City ; - -fun Countries_IND_provinces_Kerala_cities_Kozhikode : Ind City ; - -fun Countries_IND_provinces_Kerala_cities_Trivandrum : Ind City ; - -fun Countries_IND_provinces_LakshadweepIs_ : Ind Province ; - -fun Countries_IND_provinces_LakshadweepIs__cities_Kavaratti : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh : Ind Province ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Bhatpara : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Bhilai : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Bhopal : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Gwalior : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Indore : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Jabalpur : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Raipur : Ind City ; - -fun Countries_IND_provinces_MadhyaPradesh_cities_Ujjain : Ind City ; - -fun Countries_IND_provinces_Maharashtra : Ind Province ; - -fun Countries_IND_provinces_Maharashtra_cities_Amravati : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Aurangabad : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Bhiwandi : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Bombay : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Kalyan : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Kolhapur : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Mumbai : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Nagpur : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Nasik : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_NewBombay : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Pune : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Sholapur : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Thane : Ind City ; - -fun Countries_IND_provinces_Maharashtra_cities_Ulhasnagar : Ind City ; - -fun Countries_IND_provinces_Manipur : Ind Province ; - -fun Countries_IND_provinces_Manipur_cities_Imphal : Ind City ; - -fun Countries_IND_provinces_Meghalaya : Ind Province ; - -fun Countries_IND_provinces_Meghalaya_cities_Shillong : Ind City ; - -fun Countries_IND_provinces_Mizoram : Ind Province ; - -fun Countries_IND_provinces_Mizoram_cities_Aijal : Ind City ; - -fun Countries_IND_provinces_Nagaland : Ind Province ; - -fun Countries_IND_provinces_Nagaland_cities_Kohima : Ind City ; - -fun Countries_IND_provinces_Orissa : Ind Province ; - -fun Countries_IND_provinces_Orissa_cities_Bhubaneswar : Ind City ; - -fun Countries_IND_provinces_Orissa_cities_Cuttack : Ind City ; - -fun Countries_IND_provinces_Pondicherry : Ind Province ; - -fun Countries_IND_provinces_Pondicherry_cities_Pondicherry : Ind City ; - -fun Countries_IND_provinces_Punjab : Ind Province ; - -fun Countries_IND_provinces_Punjab_cities_Amritsar : Ind City ; - -fun Countries_IND_provinces_Punjab_cities_Jalandhar : Ind City ; - -fun Countries_IND_provinces_Punjab_cities_Ludhiana : Ind City ; - -fun Countries_IND_provinces_Rajasthan : Ind Province ; - -fun Countries_IND_provinces_Rajasthan_cities_Ajmer : Ind City ; - -fun Countries_IND_provinces_Rajasthan_cities_Bikaner : Ind City ; - -fun Countries_IND_provinces_Rajasthan_cities_Jaipur : Ind City ; - -fun Countries_IND_provinces_Rajasthan_cities_Jodhpur : Ind City ; - -fun Countries_IND_provinces_Rajasthan_cities_Kota : Ind City ; - -fun Countries_IND_provinces_Sikkim : Ind Province ; - -fun Countries_IND_provinces_Sikkim_cities_Gangtok : Ind City ; - -fun Countries_IND_provinces_TamilNadu : Ind Province ; - -fun Countries_IND_provinces_TamilNadu_cities_Coimbatore : Ind City ; - -fun Countries_IND_provinces_TamilNadu_cities_Madras : Ind City ; - -fun Countries_IND_provinces_TamilNadu_cities_Madurai : Ind City ; - -fun Countries_IND_provinces_TamilNadu_cities_Salem : Ind City ; - -fun Countries_IND_provinces_TamilNadu_cities_Tiruchchirappalli : Ind City ; - -fun Countries_IND_provinces_Tripura : Ind Province ; - -fun Countries_IND_provinces_Tripura_cities_Agartala : Ind City ; - -fun Countries_IND_provinces_UttarPradesh : Ind Province ; - -fun Countries_IND_provinces_UttarPradesh_cities_Agra : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Aligarh : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Allahabad : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Bareilly : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Faridabad : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Gorakhpur : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Jhansi : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Kanpur : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Lucknow : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Meerut : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Moradabad : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Saharanpur : Ind City ; - -fun Countries_IND_provinces_UttarPradesh_cities_Varanasi : Ind City ; - -fun Countries_IND_provinces_WestBengal : Ind Province ; - -fun Countries_IND_provinces_WestBengal_cities_Calcutta : Ind City ; - -fun Countries_IND_provinces_WestBengal_cities_Durgapur : Ind City ; - -fun Countries_IND_provinces_WestBengal_cities_Haora : Ind City ; - -fun Countries_IRL_cities_Dublin : Ind City ; - -fun Countries_IRQ_provinces_AdTamim : Ind Province ; - -fun Countries_IRQ_provinces_AdTamim_cities_Kirkuk : Ind City ; - -fun Countries_IRQ_provinces_AlAnbar : Ind Province ; - -fun Countries_IRQ_provinces_AlAnbar_cities_ArRamadi : Ind City ; - -fun Countries_IRQ_provinces_AlBasrah : Ind Province ; - -fun Countries_IRQ_provinces_AlBasrah_cities_AlBasrah : Ind City ; - -fun Countries_IRQ_provinces_AlMuthanna : Ind Province ; - -fun Countries_IRQ_provinces_AlMuthanna_cities_AsSamawah : Ind City ; - -fun Countries_IRQ_provinces_AlQadisiyah : Ind Province ; - -fun Countries_IRQ_provinces_AlQadisiyah_cities_AdDiwaniyah : Ind City ; - -fun Countries_IRQ_provinces_AlQadisiyah_cities_Diwaniyah : Ind City ; - -fun Countries_IRQ_provinces_AnNajaf : Ind Province ; - -fun Countries_IRQ_provinces_AnNajaf_cities_AnNajaf : Ind City ; - -fun Countries_IRQ_provinces_AsSulaymaniyah : Ind Province ; - -fun Countries_IRQ_provinces_AsSulaymaniyah_cities_AsSulaymaniyah : Ind City ; - -fun Countries_IRQ_provinces_Babil : Ind Province ; - -fun Countries_IRQ_provinces_Babil_cities_AlHillah : Ind City ; - -fun Countries_IRQ_provinces_Baghdad : Ind Province ; - -fun Countries_IRQ_provinces_Baghdad_cities_Baghdad : Ind City ; - -fun Countries_IRQ_provinces_Dahuk : Ind Province ; - -fun Countries_IRQ_provinces_Dahuk_cities_Dahuk : Ind City ; - -fun Countries_IRQ_provinces_DhiQar : Ind Province ; - -fun Countries_IRQ_provinces_DhiQar_cities_AnNasiriyah : Ind City ; - -fun Countries_IRQ_provinces_Diyala : Ind Province ; - -fun Countries_IRQ_provinces_Diyala_cities_Baqubah : Ind City ; - -fun Countries_IRQ_provinces_Irbil : Ind Province ; - -fun Countries_IRQ_provinces_Irbil_cities_Irbil : Ind City ; - -fun Countries_IRQ_provinces_Karbala : Ind Province ; - -fun Countries_IRQ_provinces_Karbala_cities_Karbala : Ind City ; - -fun Countries_IRQ_provinces_Maysan : Ind Province ; - -fun Countries_IRQ_provinces_Maysan_cities_AlAmarah : Ind City ; - -fun Countries_IRQ_provinces_Ninawa : Ind Province ; - -fun Countries_IRQ_provinces_Ninawa_cities_AlMawsil : Ind City ; - -fun Countries_IRQ_provinces_Ninawa_cities_Mosul : Ind City ; - -fun Countries_IRQ_provinces_SalahadDin : Ind Province ; - -fun Countries_IRQ_provinces_SalahadDin_cities_Samarra : Ind City ; - -fun Countries_IRQ_provinces_Wasit : Ind Province ; - -fun Countries_IRQ_provinces_Wasit_cities_AlKut : Ind City ; - -fun Countries_IR_cities_Islamshahr : Ind City ; - -fun Countries_IR_cities_Mehrshahr : Ind City ; - -fun Countries_IR_cities_Rajaishahr : Ind City ; - -fun Countries_IR_provinces_AzarbayianeGharbt : Ind Province ; - -fun Countries_IR_provinces_AzarbayianeGharbt_cities_Khvoy : Ind City ; - -fun Countries_IR_provinces_AzarbayianeGharbt_cities_Maragheh : Ind City ; - -fun Countries_IR_provinces_AzarbayianeGharbt_cities_Orumiyeh : Ind City ; - -fun Countries_IR_provinces_AzarbayianeSharqi : Ind Province ; - -fun Countries_IR_provinces_AzarbayianeSharqi_cities_Ardabil : Ind City ; - -fun Countries_IR_provinces_AzarbayianeSharqi_cities_Tabriz : Ind City ; - -fun Countries_IR_provinces_Bakhtaran : Ind Province ; - -fun Countries_IR_provinces_Bakhtaran_cities_Bakhtaran : Ind City ; - -fun Countries_IR_provinces_BoyerAhmadeKohkiluyeh : Ind Province ; - -fun Countries_IR_provinces_BoyerAhmadeKohkiluyeh_cities_Yasuj : Ind City ; - -fun Countries_IR_provinces_Bushehr : Ind Province ; - -fun Countries_IR_provinces_Bushehr_cities_BandareBushehr : Ind City ; - -fun Countries_IR_provinces_Bushehr_cities_Bushehr : Ind City ; - -fun Countries_IR_provinces_ChaharMahaleBakhtiari : Ind Province ; - -fun Countries_IR_provinces_ChaharMahaleBakhtiari_cities_ShahreKord : Ind City ; - -fun Countries_IR_provinces_Esfahan : Ind Province ; - -fun Countries_IR_provinces_Esfahan_cities_Esfahan : Ind City ; - -fun Countries_IR_provinces_Esfahan_cities_Khomeynishahr : Ind City ; - -fun Countries_IR_provinces_Esfahan_cities_Najafabad : Ind City ; - -fun Countries_IR_provinces_Fars : Ind Province ; - -fun Countries_IR_provinces_Fars_cities_Shiraz : Ind City ; - -fun Countries_IR_provinces_Gilan : Ind Province ; - -fun Countries_IR_provinces_Gilan_cities_Rasht : Ind City ; - -fun Countries_IR_provinces_Hamadan : Ind Province ; - -fun Countries_IR_provinces_Hamadan_cities_Hamadan : Ind City ; - -fun Countries_IR_provinces_Hamadan_cities_Malayer : Ind City ; - -fun Countries_IR_provinces_Hormozgan : Ind Province ; - -fun Countries_IR_provinces_Hormozgan_cities_BandarAbbas : Ind City ; - -fun Countries_IR_provinces_Ilam : Ind Province ; - -fun Countries_IR_provinces_Ilam_cities_Ilam : Ind City ; - -fun Countries_IR_provinces_Kerman : Ind Province ; - -fun Countries_IR_provinces_Kerman_cities_Kerman : Ind City ; - -fun Countries_IR_provinces_Kerman_cities_Sirjan : Ind City ; - -fun Countries_IR_provinces_Khorasan : Ind Province ; - -fun Countries_IR_provinces_Khorasan_cities_Birjand : Ind City ; - -fun Countries_IR_provinces_Khorasan_cities_Bojnurd : Ind City ; - -fun Countries_IR_provinces_Khorasan_cities_Mashhad : Ind City ; - -fun Countries_IR_provinces_Khorasan_cities_Neyshabur : Ind City ; - -fun Countries_IR_provinces_Khorasan_cities_Sabzevar : Ind City ; - -fun Countries_IR_provinces_Khuzestan : Ind Province ; - -fun Countries_IR_provinces_Khuzestan_cities_Ahvaz : Ind City ; - -fun Countries_IR_provinces_Khuzestan_cities_Dezful : Ind City ; - -fun Countries_IR_provinces_Khuzestan_cities_Khorramshahr : Ind City ; - -fun Countries_IR_provinces_Khuzestan_cities_MasjedeSoleyman : Ind City ; - -fun Countries_IR_provinces_Kordestan : Ind Province ; - -fun Countries_IR_provinces_Kordestan_cities_Sanandaj : Ind City ; - -fun Countries_IR_provinces_Lorestan : Ind Province ; - -fun Countries_IR_provinces_Lorestan_cities_Borujerd : Ind City ; - -fun Countries_IR_provinces_Lorestan_cities_Khorramabad : Ind City ; - -fun Countries_IR_provinces_Markazi : Ind Province ; - -fun Countries_IR_provinces_Markazi_cities_Arak : Ind City ; - -fun Countries_IR_provinces_Mazandaran : Ind Province ; - -fun Countries_IR_provinces_Mazandaran_cities_Amol : Ind City ; - -fun Countries_IR_provinces_Mazandaran_cities_Babol : Ind City ; - -fun Countries_IR_provinces_Mazandaran_cities_GonbadeKavus : Ind City ; - -fun Countries_IR_provinces_Mazandaran_cities_Gorgan : Ind City ; - -fun Countries_IR_provinces_Mazandaran_cities_Qaemshahr : Ind City ; - -fun Countries_IR_provinces_Mazandaran_cities_Sari : Ind City ; - -fun Countries_IR_provinces_Semnan : Ind Province ; - -fun Countries_IR_provinces_Semnan_cities_Semnan : Ind City ; - -fun Countries_IR_provinces_SistaneBaluchestan : Ind Province ; - -fun Countries_IR_provinces_SistaneBaluchestan_cities_Zahedan : Ind City ; - -fun Countries_IR_provinces_Tehran : Ind Province ; - -fun Countries_IR_provinces_Tehran_cities_Karaj : Ind City ; - -fun Countries_IR_provinces_Tehran_cities_Kashan : Ind City ; - -fun Countries_IR_provinces_Tehran_cities_Qazvin : Ind City ; - -fun Countries_IR_provinces_Tehran_cities_Qom : Ind City ; - -fun Countries_IR_provinces_Tehran_cities_Tehran : Ind City ; - -fun Countries_IR_provinces_Yazd : Ind Province ; - -fun Countries_IR_provinces_Yazd_cities_Yazd : Ind City ; - -fun Countries_IR_provinces_Zanjan : Ind Province ; - -fun Countries_IR_provinces_Zanjan_cities_Zanjan : Ind City ; - -fun Countries_IS_cities_Akureyri : Ind City ; - -fun Countries_IS_cities_Hafnarfjoerdur : Ind City ; - -fun Countries_IS_cities_Keflavik : Ind City ; - -fun Countries_IS_cities_Reykjavik : Ind City ; - -fun Countries_I_cities_Forli : Ind City ; - -fun Countries_I_provinces_Abruzzo : Ind Province ; - -fun Countries_I_provinces_Abruzzo_cities_LAquila : Ind City ; - -fun Countries_I_provinces_Abruzzo_cities_Pescara : Ind City ; - -fun Countries_I_provinces_Basilicata : Ind Province ; - -fun Countries_I_provinces_Basilicata_cities_Potenza : Ind City ; - -fun Countries_I_provinces_Calabria : Ind Province ; - -fun Countries_I_provinces_Calabria_cities_Catanzaro : Ind City ; - -fun Countries_I_provinces_Calabria_cities_Cosenza : Ind City ; - -fun Countries_I_provinces_Calabria_cities_Messina : Ind City ; - -fun Countries_I_provinces_Calabria_cities_ReggiodiCalabria : Ind City ; - -fun Countries_I_provinces_Campania : Ind Province ; - -fun Countries_I_provinces_Campania_cities_Napoli : Ind City ; - -fun Countries_I_provinces_Campania_cities_Salerno : Ind City ; - -fun Countries_I_provinces_Campania_cities_TorredelGreco : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna : Ind Province ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Bologna : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Ferrara : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Modena : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Parma : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Piacenza : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Ravenna : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_ReggionellEmilia : Ind City ; - -fun Countries_I_provinces_EmiliaRomagna_cities_Rimini : Ind City ; - -fun Countries_I_provinces_FriuliVeneziaGiulia : Ind Province ; - -fun Countries_I_provinces_FriuliVeneziaGiulia_cities_Trieste : Ind City ; - -fun Countries_I_provinces_Lazio : Ind Province ; - -fun Countries_I_provinces_Lazio_cities_Latina : Ind City ; - -fun Countries_I_provinces_Lazio_cities_Rome : Ind City ; - -fun Countries_I_provinces_Liguria : Ind Province ; - -fun Countries_I_provinces_Liguria_cities_Genua : Ind City ; - -fun Countries_I_provinces_Liguria_cities_LaSpezia : Ind City ; - -fun Countries_I_provinces_Lombardia : Ind Province ; - -fun Countries_I_provinces_Lombardia_cities_Bergamo : Ind City ; - -fun Countries_I_provinces_Lombardia_cities_Brescia : Ind City ; - -fun Countries_I_provinces_Lombardia_cities_Milan : Ind City ; - -fun Countries_I_provinces_Lombardia_cities_Monza : Ind City ; - -fun Countries_I_provinces_Marche : Ind Province ; - -fun Countries_I_provinces_Marche_cities_Ancona : Ind City ; - -fun Countries_I_provinces_Molise : Ind Province ; - -fun Countries_I_provinces_Molise_cities_Campobasso : Ind City ; - -fun Countries_I_provinces_Piemonte : Ind Province ; - -fun Countries_I_provinces_Piemonte_cities_Novara : Ind City ; - -fun Countries_I_provinces_Piemonte_cities_Turin : Ind City ; - -fun Countries_I_provinces_Puglia : Ind Province ; - -fun Countries_I_provinces_Puglia_cities_Bari : Ind City ; - -fun Countries_I_provinces_Puglia_cities_Foggia : Ind City ; - -fun Countries_I_provinces_Puglia_cities_Lecce : Ind City ; - -fun Countries_I_provinces_Puglia_cities_Taranto : Ind City ; - -fun Countries_I_provinces_Sardegna : Ind Province ; - -fun Countries_I_provinces_Sardegna_cities_Cagliari : Ind City ; - -fun Countries_I_provinces_Sardegna_cities_Sassari : Ind City ; - -fun Countries_I_provinces_Sicilia : Ind Province ; - -fun Countries_I_provinces_Sicilia_cities_Catania : Ind City ; - -fun Countries_I_provinces_Sicilia_cities_Palermo : Ind City ; - -fun Countries_I_provinces_Sicilia_cities_Siracusa : Ind City ; - -fun Countries_I_provinces_Toscana : Ind Province ; - -fun Countries_I_provinces_Toscana_cities_Firenze : Ind City ; - -fun Countries_I_provinces_Toscana_cities_Livorno : Ind City ; - -fun Countries_I_provinces_Toscana_cities_Pisa : Ind City ; - -fun Countries_I_provinces_Toscana_cities_Prato : Ind City ; - -fun Countries_I_provinces_TrentinoAltoAdige : Ind Province ; - -fun Countries_I_provinces_TrentinoAltoAdige_cities_Bolzano : Ind City ; - -fun Countries_I_provinces_TrentinoAltoAdige_cities_Trento : Ind City ; - -fun Countries_I_provinces_Umbria : Ind Province ; - -fun Countries_I_provinces_Umbria_cities_Perugia : Ind City ; - -fun Countries_I_provinces_Umbria_cities_Terni : Ind City ; - -fun Countries_I_provinces_ValledAosta : Ind Province ; - -fun Countries_I_provinces_ValledAosta_cities_Aosta : Ind City ; - -fun Countries_I_provinces_Veneto : Ind Province ; - -fun Countries_I_provinces_Veneto_cities_Padova : Ind City ; - -fun Countries_I_provinces_Veneto_cities_Venice : Ind City ; - -fun Countries_I_provinces_Veneto_cities_Verona : Ind City ; - -fun Countries_I_provinces_Veneto_cities_Vicenza : Ind City ; - -fun Countries_JA_cities_Kingston : Ind City ; - -fun Countries_JOR_cities_Amman : Ind City ; - -fun Countries_J_provinces_Aichi : Ind Province ; - -fun Countries_J_provinces_Aichi_cities_Nagoya : Ind City ; - -fun Countries_J_provinces_Akita : Ind Province ; - -fun Countries_J_provinces_Akita_cities_Akita : Ind City ; - -fun Countries_J_provinces_Aomori : Ind Province ; - -fun Countries_J_provinces_Aomori_cities_Aomori : Ind City ; - -fun Countries_J_provinces_Chiba : Ind Province ; - -fun Countries_J_provinces_Chiba_cities_Chiba : Ind City ; - -fun Countries_J_provinces_Ehime : Ind Province ; - -fun Countries_J_provinces_Ehime_cities_Matsuyama : Ind City ; - -fun Countries_J_provinces_Fukui : Ind Province ; - -fun Countries_J_provinces_Fukui_cities_Fukui : Ind City ; - -fun Countries_J_provinces_Fukuoka : Ind Province ; - -fun Countries_J_provinces_Fukuoka_cities_Fukuoka : Ind City ; - -fun Countries_J_provinces_Fukuoka_cities_Kitakyushu : Ind City ; - -fun Countries_J_provinces_Fukushima : Ind Province ; - -fun Countries_J_provinces_Fukushima_cities_Fukushima : Ind City ; - -fun Countries_J_provinces_Gifu : Ind Province ; - -fun Countries_J_provinces_Gifu_cities_Gifu : Ind City ; - -fun Countries_J_provinces_Gumma : Ind Province ; - -fun Countries_J_provinces_Gumma_cities_Maebashi : Ind City ; - -fun Countries_J_provinces_Hiroshima : Ind Province ; - -fun Countries_J_provinces_Hiroshima_cities_Hiroshima : Ind City ; - -fun Countries_J_provinces_Hokkaido : Ind Province ; - -fun Countries_J_provinces_Hokkaido_cities_Sapporo : Ind City ; - -fun Countries_J_provinces_Hyogo : Ind Province ; - -fun Countries_J_provinces_Hyogo_cities_Kobe : Ind City ; - -fun Countries_J_provinces_Ibaraki : Ind Province ; - -fun Countries_J_provinces_Ibaraki_cities_Mito : Ind City ; - -fun Countries_J_provinces_Ishikawa : Ind Province ; - -fun Countries_J_provinces_Ishikawa_cities_Kanazawa : Ind City ; - -fun Countries_J_provinces_Iwate : Ind Province ; - -fun Countries_J_provinces_Iwate_cities_Morioka : Ind City ; - -fun Countries_J_provinces_Kagawa : Ind Province ; - -fun Countries_J_provinces_Kagawa_cities_Takamatsu : Ind City ; - -fun Countries_J_provinces_Kagoshima : Ind Province ; - -fun Countries_J_provinces_Kagoshima_cities_Kagoshima : Ind City ; - -fun Countries_J_provinces_Kanagawa : Ind Province ; - -fun Countries_J_provinces_Kanagawa_cities_Kawasaki : Ind City ; - -fun Countries_J_provinces_Kanagawa_cities_Yokohama : Ind City ; - -fun Countries_J_provinces_Kochi : Ind Province ; - -fun Countries_J_provinces_Kochi_cities_Kochi : Ind City ; - -fun Countries_J_provinces_Kumamoto : Ind Province ; - -fun Countries_J_provinces_Kumamoto_cities_Kumamoto : Ind City ; - -fun Countries_J_provinces_Kyoto : Ind Province ; - -fun Countries_J_provinces_Kyoto_cities_Kyoto : Ind City ; - -fun Countries_J_provinces_Mie : Ind Province ; - -fun Countries_J_provinces_Mie_cities_Tsu : Ind City ; - -fun Countries_J_provinces_Miyagi : Ind Province ; - -fun Countries_J_provinces_Miyagi_cities_Sendai : Ind City ; - -fun Countries_J_provinces_Miyazaki : Ind Province ; - -fun Countries_J_provinces_Miyazaki_cities_Miyazaki : Ind City ; - -fun Countries_J_provinces_Nagano : Ind Province ; - -fun Countries_J_provinces_Nagano_cities_Nagano : Ind City ; - -fun Countries_J_provinces_Nagasaki : Ind Province ; - -fun Countries_J_provinces_Nagasaki_cities_Nagasaki : Ind City ; - -fun Countries_J_provinces_Nara : Ind Province ; - -fun Countries_J_provinces_Nara_cities_Nara : Ind City ; - -fun Countries_J_provinces_Niigata : Ind Province ; - -fun Countries_J_provinces_Niigata_cities_Niigata : Ind City ; - -fun Countries_J_provinces_Oita : Ind Province ; - -fun Countries_J_provinces_Oita_cities_Oita : Ind City ; - -fun Countries_J_provinces_Okayama : Ind Province ; - -fun Countries_J_provinces_Okayama_cities_Okayama : Ind City ; - -fun Countries_J_provinces_Okinawa : Ind Province ; - -fun Countries_J_provinces_Okinawa_cities_Naha : Ind City ; - -fun Countries_J_provinces_Osaka : Ind Province ; - -fun Countries_J_provinces_Osaka_cities_Osaka : Ind City ; - -fun Countries_J_provinces_Saga : Ind Province ; - -fun Countries_J_provinces_Saga_cities_Saga : Ind City ; - -fun Countries_J_provinces_Saitama : Ind Province ; - -fun Countries_J_provinces_Saitama_cities_Urawa : Ind City ; - -fun Countries_J_provinces_Shiga : Ind Province ; - -fun Countries_J_provinces_Shiga_cities_Otsu : Ind City ; - -fun Countries_J_provinces_Shimane : Ind Province ; - -fun Countries_J_provinces_Shimane_cities_Matsue : Ind City ; - -fun Countries_J_provinces_Shizuoka : Ind Province ; - -fun Countries_J_provinces_Shizuoka_cities_Shizuoka : Ind City ; - -fun Countries_J_provinces_Tochigi : Ind Province ; - -fun Countries_J_provinces_Tochigi_cities_Utsonomiya : Ind City ; - -fun Countries_J_provinces_Tokushima : Ind Province ; - -fun Countries_J_provinces_Tokushima_cities_Tokushima : Ind City ; - -fun Countries_J_provinces_Tokyo : Ind Province ; - -fun Countries_J_provinces_Tokyo_cities_Tokyo : Ind City ; - -fun Countries_J_provinces_Tottori : Ind Province ; - -fun Countries_J_provinces_Tottori_cities_Tottori : Ind City ; - -fun Countries_J_provinces_Toyama : Ind Province ; - -fun Countries_J_provinces_Toyama_cities_Toyama : Ind City ; - -fun Countries_J_provinces_Wakayama : Ind Province ; - -fun Countries_J_provinces_Wakayama_cities_Wakayama : Ind City ; - -fun Countries_J_provinces_Yamagata : Ind Province ; - -fun Countries_J_provinces_Yamagata_cities_Yamagata : Ind City ; - -fun Countries_J_provinces_Yamaguchi : Ind Province ; - -fun Countries_J_provinces_Yamaguchi_cities_Yamaguchi : Ind City ; - -fun Countries_J_provinces_Yamanashi : Ind Province ; - -fun Countries_J_provinces_Yamanashi_cities_Kofu : Ind City ; - -fun Countries_KAZ_provinces_Almaty : Ind Province ; - -fun Countries_KAZ_provinces_Almaty_munic : Ind Province ; - -fun Countries_KAZ_provinces_Almaty_munic_cities_Almaty : Ind City ; - -fun Countries_KAZ_provinces_Aqmola : Ind Province ; - -fun Countries_KAZ_provinces_Aqmola_cities_Aqmola : Ind City ; - -fun Countries_KAZ_provinces_Aqtobe : Ind Province ; - -fun Countries_KAZ_provinces_Aqtobe_cities_Aqtobe : Ind City ; - -fun Countries_KAZ_provinces_Atyrau : Ind Province ; - -fun Countries_KAZ_provinces_Atyrau_cities_Atyrau : Ind City ; - -fun Countries_KAZ_provinces_BatysQazaqstan : Ind Province ; - -fun Countries_KAZ_provinces_BatysQazaqstan_cities_Oral : Ind City ; - -fun Countries_KAZ_provinces_Kokchetau : Ind Province ; - -fun Countries_KAZ_provinces_Kokchetau_cities_Kokchetau : Ind City ; - -fun Countries_KAZ_provinces_Leninsk_munic : Ind Province ; - -fun Countries_KAZ_provinces_Leninsk_munic_cities_Leninsk : Ind City ; - -fun Countries_KAZ_provinces_Mangghystau : Ind Province ; - -fun Countries_KAZ_provinces_Mangghystau_cities_Aqtau : Ind City ; - -fun Countries_KAZ_provinces_OngtustikQazaqstan : Ind Province ; - -fun Countries_KAZ_provinces_OngtustikQazaqstan_cities_Shymkent : Ind City ; - -fun Countries_KAZ_provinces_Pavlodar : Ind Province ; - -fun Countries_KAZ_provinces_Pavlodar_cities_Ekibastuz : Ind City ; - -fun Countries_KAZ_provinces_Pavlodar_cities_Pavlodar : Ind City ; - -fun Countries_KAZ_provinces_Qaraghandy : Ind Province ; - -fun Countries_KAZ_provinces_Qaraghandy_cities_Karaganda : Ind City ; - -fun Countries_KAZ_provinces_Qaraghandy_cities_Temirtau : Ind City ; - -fun Countries_KAZ_provinces_Qostanay : Ind Province ; - -fun Countries_KAZ_provinces_Qostanay_cities_Qostanay : Ind City ; - -fun Countries_KAZ_provinces_Qostanay_cities_Rudny : Ind City ; - -fun Countries_KAZ_provinces_Qyzylorda : Ind Province ; - -fun Countries_KAZ_provinces_Qyzylorda_cities_Qyzylorda : Ind City ; - -fun Countries_KAZ_provinces_Semey : Ind Province ; - -fun Countries_KAZ_provinces_Semey_cities_Semey : Ind City ; - -fun Countries_KAZ_provinces_ShyghysQazaqstan : Ind Province ; - -fun Countries_KAZ_provinces_ShyghysQazaqstan_cities_Oskemen : Ind City ; - -fun Countries_KAZ_provinces_SoltustikQazaqstan : Ind Province ; - -fun Countries_KAZ_provinces_SoltustikQazaqstan_cities_Petropavl : Ind City ; - -fun Countries_KAZ_provinces_Taldyqorghan : Ind Province ; - -fun Countries_KAZ_provinces_Taldyqorghan_cities_Taldyqorghan : Ind City ; - -fun Countries_KAZ_provinces_Torghay : Ind Province ; - -fun Countries_KAZ_provinces_Torghay_cities_Arqalyq : Ind City ; - -fun Countries_KAZ_provinces_Zhambyl : Ind Province ; - -fun Countries_KAZ_provinces_Zhambyl_cities_Dzhambul : Ind City ; - -fun Countries_KAZ_provinces_Zhambyl_cities_Zhambyl : Ind City ; - -fun Countries_KAZ_provinces_Zhezkazghan : Ind Province ; - -fun Countries_KAZ_provinces_Zhezkazghan_cities_Zhezkazghan : Ind City ; - -fun Countries_KAZ_provinces_Zhezkazghan_cities_Zhezqazghan : Ind City ; - -fun Countries_KGZ_cities_Bishkek : Ind City ; - -fun Countries_KIR_cities_Tarawa : Ind City ; - -fun Countries_KN_cities_Basseterre : Ind City ; - -fun Countries_KWT_cities_Kuwait : Ind City ; - -fun Countries_K_cities_PhnomPenh : Ind City ; - -fun Countries_LAO_cities_Vientiane : Ind City ; - -fun Countries_LAR_cities_Bengasi : Ind City ; - -fun Countries_LAR_cities_Tripoli : Ind City ; - -fun Countries_LB_cities_Monrovia : Ind City ; - -fun Countries_LS_cities_Maseru : Ind City ; - -fun Countries_LT_cities_Vilnius : Ind City ; - -fun Countries_LV_cities_Riga : Ind City ; - -fun Countries_L_cities_Luxembourg : Ind City ; - -fun Countries_MAL_cities_SeloyangBaru : Ind City ; - -fun Countries_MAL_provinces_Fed_Terr_ofKualaLumpur : Ind Province ; - -fun Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_KualaLumpur : Ind City ; - -fun Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_PetalingJaya : Ind City ; - -fun Countries_MAL_provinces_Fed_Terr_ofLabuan : Ind Province ; - -fun Countries_MAL_provinces_Fed_Terr_ofLabuan_cities_Labuan : Ind City ; - -fun Countries_MAL_provinces_Johor : Ind Province ; - -fun Countries_MAL_provinces_Johor_cities_JohorBaharu : Ind City ; - -fun Countries_MAL_provinces_Kedah : Ind Province ; - -fun Countries_MAL_provinces_Kedah_cities_AlorSetar : Ind City ; - -fun Countries_MAL_provinces_Kelantan : Ind Province ; - -fun Countries_MAL_provinces_Kelantan_cities_KotaBaharu : Ind City ; - -fun Countries_MAL_provinces_Melaka : Ind Province ; - -fun Countries_MAL_provinces_Melaka_cities_Melaka : Ind City ; - -fun Countries_MAL_provinces_NegeriSembilan : Ind Province ; - -fun Countries_MAL_provinces_NegeriSembilan_cities_Seremban : Ind City ; - -fun Countries_MAL_provinces_Pahang : Ind Province ; - -fun Countries_MAL_provinces_Pahang_cities_Kuantan : Ind City ; - -fun Countries_MAL_provinces_Perak : Ind Province ; - -fun Countries_MAL_provinces_Perak_cities_Ipoh : Ind City ; - -fun Countries_MAL_provinces_Perak_cities_Taiping : Ind City ; - -fun Countries_MAL_provinces_Perlis : Ind Province ; - -fun Countries_MAL_provinces_Perlis_cities_Kangar : Ind City ; - -fun Countries_MAL_provinces_PulauPinang : Ind Province ; - -fun Countries_MAL_provinces_PulauPinang_cities_GeorgeTown : Ind City ; - -fun Countries_MAL_provinces_Sabah : Ind Province ; - -fun Countries_MAL_provinces_Sabah_cities_KotaKinabalu : Ind City ; - -fun Countries_MAL_provinces_Sabah_cities_Sandakan : Ind City ; - -fun Countries_MAL_provinces_Sabah_cities_Tawai : Ind City ; - -fun Countries_MAL_provinces_Sarawak : Ind Province ; - -fun Countries_MAL_provinces_Sarawak_cities_Kuching : Ind City ; - -fun Countries_MAL_provinces_Sarawak_cities_Sibu : Ind City ; - -fun Countries_MAL_provinces_Selangor : Ind Province ; - -fun Countries_MAL_provinces_Selangor_cities_Kelang : Ind City ; - -fun Countries_MAL_provinces_Selangor_cities_ShahAlam : Ind City ; - -fun Countries_MAL_provinces_Terengganu : Ind Province ; - -fun Countries_MAL_provinces_Terengganu_cities_KualaTerengganu : Ind City ; - -fun Countries_MA_cities_Agadir : Ind City ; - -fun Countries_MA_cities_BeniMellal : Ind City ; - -fun Countries_MA_cities_Casablanca : Ind City ; - -fun Countries_MA_cities_Fes : Ind City ; - -fun Countries_MA_cities_Kenitra : Ind City ; - -fun Countries_MA_cities_Khouribga : Ind City ; - -fun Countries_MA_cities_Marrakech : Ind City ; - -fun Countries_MA_cities_Meknes : Ind City ; - -fun Countries_MA_cities_Oujda : Ind City ; - -fun Countries_MA_cities_Rabat : Ind City ; - -fun Countries_MA_cities_Safi : Ind City ; - -fun Countries_MA_cities_Tanger : Ind City ; - -fun Countries_MA_cities_Tetouan : Ind City ; - -fun Countries_MA_provinces_Centre : Ind Province ; - -fun Countries_MA_provinces_CentreNord : Ind Province ; - -fun Countries_MA_provinces_CentreSud : Ind Province ; - -fun Countries_MA_provinces_NordOuest : Ind Province ; - -fun Countries_MA_provinces_Oriental : Ind Province ; - -fun Countries_MA_provinces_Tensift : Ind Province ; - -fun Countries_MC_cities_Monaco : Ind City ; - -fun Countries_MD_cities_Chisinau : Ind City ; - -fun Countries_MEX_cities_AtizapandeZaragoza : Ind City ; - -fun Countries_MEX_cities_CiudadApodaca : Ind City ; - -fun Countries_MEX_cities_Llave : Ind City ; - -fun Countries_MEX_cities_SanPedroGarzaGarcia : Ind City ; - -fun Countries_MEX_cities_SoledaddeGracianoSanchez : Ind City ; - -fun Countries_MEX_provinces_Aguascalientes : Ind Province ; - -fun Countries_MEX_provinces_Aguascalientes_cities_Aguascalientes : Ind City ; - -fun Countries_MEX_provinces_BajaCalifornia : Ind Province ; - -fun Countries_MEX_provinces_BajaCaliforniaSur : Ind Province ; - -fun Countries_MEX_provinces_BajaCaliforniaSur_cities_LaPaz : Ind City ; - -fun Countries_MEX_provinces_BajaCalifornia_cities_Ensenada : Ind City ; - -fun Countries_MEX_provinces_BajaCalifornia_cities_Mexicali : Ind City ; - -fun Countries_MEX_provinces_BajaCalifornia_cities_Tijuana : Ind City ; - -fun Countries_MEX_provinces_Campeche : Ind Province ; - -fun Countries_MEX_provinces_Campeche_cities_Campeche : Ind City ; - -fun Countries_MEX_provinces_Chiapas : Ind Province ; - -fun Countries_MEX_provinces_Chiapas_cities_Nezahualcoyotl : Ind City ; - -fun Countries_MEX_provinces_Chiapas_cities_Tapachula : Ind City ; - -fun Countries_MEX_provinces_Chiapas_cities_Tonala : Ind City ; - -fun Countries_MEX_provinces_Chiapas_cities_TuxtlaGutierrez : Ind City ; - -fun Countries_MEX_provinces_Chihuahua : Ind Province ; - -fun Countries_MEX_provinces_Chihuahua_cities_Chihuahua : Ind City ; - -fun Countries_MEX_provinces_Chihuahua_cities_Juarez : Ind City ; - -fun Countries_MEX_provinces_Coahuila : Ind Province ; - -fun Countries_MEX_provinces_Coahuila_cities_Monclova : Ind City ; - -fun Countries_MEX_provinces_Coahuila_cities_Saltillo : Ind City ; - -fun Countries_MEX_provinces_Coahuila_cities_Torreon : Ind City ; - -fun Countries_MEX_provinces_Colima : Ind Province ; - -fun Countries_MEX_provinces_Colima_cities_Colima : Ind City ; - -fun Countries_MEX_provinces_DistritoFederal : Ind Province ; - -fun Countries_MEX_provinces_DistritoFederal_cities_MexicoCity : Ind City ; - -fun Countries_MEX_provinces_Durango : Ind Province ; - -fun Countries_MEX_provinces_Durango_cities_Durango : Ind City ; - -fun Countries_MEX_provinces_Durango_cities_GomezPalacio : Ind City ; - -fun Countries_MEX_provinces_Durango_cities_VictoriadeDurango : Ind City ; - -fun Countries_MEX_provinces_Guanajuato : Ind Province ; - -fun Countries_MEX_provinces_Guanajuato_cities_Celaya : Ind City ; - -fun Countries_MEX_provinces_Guanajuato_cities_Guanajuato : Ind City ; - -fun Countries_MEX_provinces_Guanajuato_cities_Irapuato : Ind City ; - -fun Countries_MEX_provinces_Guanajuato_cities_Leon : Ind City ; - -fun Countries_MEX_provinces_Guanajuato_cities_Salamanca : Ind City ; - -fun Countries_MEX_provinces_Guerrero : Ind Province ; - -fun Countries_MEX_provinces_Guerrero_cities_Acapulco : Ind City ; - -fun Countries_MEX_provinces_Guerrero_cities_Chilpancingo : Ind City ; - -fun Countries_MEX_provinces_Hidalgo : Ind Province ; - -fun Countries_MEX_provinces_Hidalgo_cities_Pachuca : Ind City ; - -fun Countries_MEX_provinces_Hidalgo_cities_PachucadeSoto : Ind City ; - -fun Countries_MEX_provinces_Jalisco : Ind Province ; - -fun Countries_MEX_provinces_Jalisco_cities_Cuautla : Ind City ; - -fun Countries_MEX_provinces_Jalisco_cities_Guadalajara : Ind City ; - -fun Countries_MEX_provinces_Jalisco_cities_Tlaquepaque : Ind City ; - -fun Countries_MEX_provinces_Jalisco_cities_Zapopan : Ind City ; - -fun Countries_MEX_provinces_Mexico_Estadode : Ind Province ; - -fun Countries_MEX_provinces_Mexico_Estadode_cities_Toluca : Ind City ; - -fun Countries_MEX_provinces_Mexico_Estadode_cities_TolucadeLerdo : Ind City ; - -fun Countries_MEX_provinces_Michoacan : Ind Province ; - -fun Countries_MEX_provinces_Michoacan_cities_Morelia : Ind City ; - -fun Countries_MEX_provinces_Michoacan_cities_Uruapan : Ind City ; - -fun Countries_MEX_provinces_Michoacan_cities_Zamora : Ind City ; - -fun Countries_MEX_provinces_Morelos : Ind Province ; - -fun Countries_MEX_provinces_Morelos_cities_Cuernavaca : Ind City ; - -fun Countries_MEX_provinces_Nayarit : Ind Province ; - -fun Countries_MEX_provinces_Nayarit_cities_Tepic : Ind City ; - -fun Countries_MEX_provinces_NuevoLeon : Ind Province ; - -fun Countries_MEX_provinces_NuevoLeon_cities_CiudadSantaCatarina : Ind City ; - -fun Countries_MEX_provinces_NuevoLeon_cities_Guadalupe : Ind City ; - -fun Countries_MEX_provinces_NuevoLeon_cities_Monterrey : Ind City ; - -fun Countries_MEX_provinces_NuevoLeon_cities_SanNicolasdelosGarza : Ind City ; - -fun Countries_MEX_provinces_Oaxaca : Ind Province ; - -fun Countries_MEX_provinces_Oaxaca_cities_Oaxaca : Ind City ; - -fun Countries_MEX_provinces_Puebla : Ind Province ; - -fun Countries_MEX_provinces_Puebla_cities_Puebla : Ind City ; - -fun Countries_MEX_provinces_Puebla_cities_Tehuacan : Ind City ; - -fun Countries_MEX_provinces_Queretaro : Ind Province ; - -fun Countries_MEX_provinces_Queretaro_cities_Queretaro : Ind City ; - -fun Countries_MEX_provinces_QuintanaRoo : Ind Province ; - -fun Countries_MEX_provinces_QuintanaRoo_cities_Cancun : Ind City ; - -fun Countries_MEX_provinces_QuintanaRoo_cities_Chetumal : Ind City ; - -fun Countries_MEX_provinces_SanLuisPotosi : Ind Province ; - -fun Countries_MEX_provinces_SanLuisPotosi_cities_SanLuisPotosi : Ind City ; - -fun Countries_MEX_provinces_Sinaloa : Ind Province ; - -fun Countries_MEX_provinces_Sinaloa_cities_Culiacan : Ind City ; - -fun Countries_MEX_provinces_Sinaloa_cities_LosMochis : Ind City ; - -fun Countries_MEX_provinces_Sinaloa_cities_Mazatlan : Ind City ; - -fun Countries_MEX_provinces_Sonora : Ind Province ; - -fun Countries_MEX_provinces_Sonora_cities_CiudadObregon : Ind City ; - -fun Countries_MEX_provinces_Sonora_cities_Hermosillo : Ind City ; - -fun Countries_MEX_provinces_Sonora_cities_HeroicaNogales : Ind City ; - -fun Countries_MEX_provinces_Tabasco : Ind Province ; - -fun Countries_MEX_provinces_Tabasco_cities_Villahermosa : Ind City ; - -fun Countries_MEX_provinces_Tamaulipas : Ind Province ; - -fun Countries_MEX_provinces_Tamaulipas_cities_CiudadMadero : Ind City ; - -fun Countries_MEX_provinces_Tamaulipas_cities_CiudadVictoria : Ind City ; - -fun Countries_MEX_provinces_Tamaulipas_cities_Matamoros : Ind City ; - -fun Countries_MEX_provinces_Tamaulipas_cities_NuevoLaredo : Ind City ; - -fun Countries_MEX_provinces_Tamaulipas_cities_Reynosa : Ind City ; - -fun Countries_MEX_provinces_Tamaulipas_cities_Tampico : Ind City ; - -fun Countries_MEX_provinces_Tlaxcala : Ind Province ; - -fun Countries_MEX_provinces_Tlaxcala_cities_Tlaxcala : Ind City ; - -fun Countries_MEX_provinces_Veracruz : Ind Province ; - -fun Countries_MEX_provinces_Veracruz_cities_Coatzacoalcos : Ind City ; - -fun Countries_MEX_provinces_Veracruz_cities_Cordoba : Ind City ; - -fun Countries_MEX_provinces_Veracruz_cities_Jalapa : Ind City ; - -fun Countries_MEX_provinces_Veracruz_cities_Minatitlan : Ind City ; - -fun Countries_MEX_provinces_Veracruz_cities_Orizaba : Ind City ; - -fun Countries_MEX_provinces_Veracruz_cities_PozaRica : Ind City ; - -fun Countries_MEX_provinces_Veracruz_cities_XalapaEnriquez : Ind City ; - -fun Countries_MEX_provinces_Yucatan : Ind Province ; - -fun Countries_MEX_provinces_Yucatan_cities_Merida : Ind City ; - -fun Countries_MEX_provinces_Zacatecas : Ind Province ; - -fun Countries_MEX_provinces_Zacatecas_cities_Zacatecas : Ind City ; - -fun Countries_MH_cities_Majuro : Ind City ; - -fun Countries_MK_cities_Skopje : Ind City ; - -fun Countries_MNG_cities_Ulaanbaatar : Ind City ; - -fun Countries_MOC_cities_Matala : Ind City ; - -fun Countries_MOC_provinces_CaboDelgado : Ind Province ; - -fun Countries_MOC_provinces_CaboDelgado_cities_Pemba : Ind City ; - -fun Countries_MOC_provinces_Gaza : Ind Province ; - -fun Countries_MOC_provinces_Gaza_cities_XaiXai : Ind City ; - -fun Countries_MOC_provinces_Inhambane : Ind Province ; - -fun Countries_MOC_provinces_Inhambane_cities_Inhambane : Ind City ; - -fun Countries_MOC_provinces_Manica : Ind Province ; - -fun Countries_MOC_provinces_Manica_cities_Chimoio : Ind City ; - -fun Countries_MOC_provinces_Maputo : Ind Province ; - -fun Countries_MOC_provinces_Maputo_cities_Nacala : Ind City ; - -fun Countries_MOC_provinces_Maputo_munic : Ind Province ; - -fun Countries_MOC_provinces_Maputo_munic_cities_Maputo : Ind City ; - -fun Countries_MOC_provinces_Nampula : Ind Province ; - -fun Countries_MOC_provinces_Nampula_cities_Nampula : Ind City ; - -fun Countries_MOC_provinces_Niassa : Ind Province ; - -fun Countries_MOC_provinces_Niassa_cities_Lichinga : Ind City ; - -fun Countries_MOC_provinces_Sofala : Ind Province ; - -fun Countries_MOC_provinces_Sofala_cities_Beira : Ind City ; - -fun Countries_MOC_provinces_Tete : Ind Province ; - -fun Countries_MOC_provinces_Tete_cities_Tete : Ind City ; - -fun Countries_MOC_provinces_Zambezia : Ind Province ; - -fun Countries_MOC_provinces_Zambezia_cities_Quelimane : Ind City ; - -fun Countries_MS_cities_PortLouis : Ind City ; - -fun Countries_MV_cities_Male : Ind City ; - -fun Countries_MW_cities_Lilongwe : Ind City ; - -fun Countries_MYA_provinces_Ayeyarwady : Ind Province ; - -fun Countries_MYA_provinces_Ayeyarwady_cities_Pathein : Ind City ; - -fun Countries_MYA_provinces_Bago : Ind Province ; - -fun Countries_MYA_provinces_Bago_cities_Bago : Ind City ; - -fun Countries_MYA_provinces_Chin : Ind Province ; - -fun Countries_MYA_provinces_Chin_cities_Hakha : Ind City ; - -fun Countries_MYA_provinces_Kachin : Ind Province ; - -fun Countries_MYA_provinces_Kachin_cities_Myitkyina : Ind City ; - -fun Countries_MYA_provinces_Kayah : Ind Province ; - -fun Countries_MYA_provinces_Kayah_cities_Loikaw : Ind City ; - -fun Countries_MYA_provinces_Kayin : Ind Province ; - -fun Countries_MYA_provinces_Kayin_cities_Hpaan : Ind City ; - -fun Countries_MYA_provinces_Magway : Ind Province ; - -fun Countries_MYA_provinces_Magway_cities_Magway : Ind City ; - -fun Countries_MYA_provinces_Mandalay : Ind Province ; - -fun Countries_MYA_provinces_Mandalay_cities_Mandalay : Ind City ; - -fun Countries_MYA_provinces_Mon : Ind Province ; - -fun Countries_MYA_provinces_Mon_cities_Moulmein : Ind City ; - -fun Countries_MYA_provinces_Rakhine : Ind Province ; - -fun Countries_MYA_provinces_Rakhine_cities_Akyab : Ind City ; - -fun Countries_MYA_provinces_Sagaing : Ind Province ; - -fun Countries_MYA_provinces_Sagaing_cities_Monywa : Ind City ; - -fun Countries_MYA_provinces_Sagaing_cities_Sagaing : Ind City ; - -fun Countries_MYA_provinces_Shan : Ind Province ; - -fun Countries_MYA_provinces_Shan_cities_Taunggyi : Ind City ; - -fun Countries_MYA_provinces_Tanintharyi : Ind Province ; - -fun Countries_MYA_provinces_Tanintharyi_cities_Tavoy : Ind City ; - -fun Countries_MYA_provinces_Yangon : Ind Province ; - -fun Countries_MYA_provinces_Yangon_cities_Rangoon : Ind City ; - -fun Countries_M_cities_Valletta : Ind City ; - -fun Countries_NAM_cities_Windhoek : Ind City ; - -fun Countries_NAU_cities_Yaren : Ind City ; - -fun Countries_NCA_cities_Noumea : Ind City ; - -fun Countries_NEP_cities_Kathmandu : Ind City ; - -fun Countries_NIC_cities_Chinandega : Ind City ; - -fun Countries_NIC_cities_Leon : Ind City ; - -fun Countries_NIC_cities_Managua : Ind City ; - -fun Countries_NIC_cities_Masaya : Ind City ; - -fun Countries_NL_provinces_Drenthe : Ind Province ; - -fun Countries_NL_provinces_Drenthe_cities_Assen : Ind City ; - -fun Countries_NL_provinces_Flevoland : Ind Province ; - -fun Countries_NL_provinces_Flevoland_cities_Lelystad : Ind City ; - -fun Countries_NL_provinces_Friesland : Ind Province ; - -fun Countries_NL_provinces_Friesland_cities_Leeuwarden : Ind City ; - -fun Countries_NL_provinces_Gelderland : Ind Province ; - -fun Countries_NL_provinces_Gelderland_cities_Arnhem : Ind City ; - -fun Countries_NL_provinces_Gelderland_cities_Nijmegen : Ind City ; - -fun Countries_NL_provinces_Groningen : Ind Province ; - -fun Countries_NL_provinces_Groningen_cities_Groningen : Ind City ; - -fun Countries_NL_provinces_Limburg : Ind Province ; - -fun Countries_NL_provinces_Limburg_cities_Geleen : Ind City ; - -fun Countries_NL_provinces_Limburg_cities_Heerlen : Ind City ; - -fun Countries_NL_provinces_Limburg_cities_Maastricht : Ind City ; - -fun Countries_NL_provinces_NoordBrabant : Ind Province ; - -fun Countries_NL_provinces_NoordBrabant_cities_Breda : Ind City ; - -fun Countries_NL_provinces_NoordBrabant_cities_Eindhoven : Ind City ; - -fun Countries_NL_provinces_NoordBrabant_cities_Tilburg : Ind City ; - -fun Countries_NL_provinces_NoordBrabant_cities_sHertogenbosch : Ind City ; - -fun Countries_NL_provinces_NoordHolland : Ind Province ; - -fun Countries_NL_provinces_NoordHolland_cities_Amsterdam : Ind City ; - -fun Countries_NL_provinces_NoordHolland_cities_Haarlem : Ind City ; - -fun Countries_NL_provinces_NoordHolland_cities_Hilversum : Ind City ; - -fun Countries_NL_provinces_NoordHolland_cities_Velsen : Ind City ; - -fun Countries_NL_provinces_NoordHolland_cities_Zaanstreek : Ind City ; - -fun Countries_NL_provinces_Overijssel : Ind Province ; - -fun Countries_NL_provinces_Overijssel_cities_Enschede : Ind City ; - -fun Countries_NL_provinces_Overijssel_cities_Zwolle : Ind City ; - -fun Countries_NL_provinces_Utrecht : Ind Province ; - -fun Countries_NL_provinces_Utrecht_cities_Utrecht : Ind City ; - -fun Countries_NL_provinces_Zeeland : Ind Province ; - -fun Countries_NL_provinces_Zeeland_cities_Middelburg : Ind City ; - -fun Countries_NL_provinces_ZuidHolland : Ind Province ; - -fun Countries_NL_provinces_ZuidHolland_cities_Dordrecht : Ind City ; - -fun Countries_NL_provinces_ZuidHolland_cities_Leiden : Ind City ; - -fun Countries_NL_provinces_ZuidHolland_cities_Rotterdam : Ind City ; - -fun Countries_NL_provinces_ZuidHolland_cities_sGravenhage : Ind City ; - -fun Countries_NOK_cities_Anju : Ind City ; - -fun Countries_NOK_cities_Chongjin : Ind City ; - -fun Countries_NOK_cities_Haeju : Ind City ; - -fun Countries_NOK_cities_HamhungHungnam : Ind City ; - -fun Countries_NOK_cities_Huichon : Ind City ; - -fun Countries_NOK_cities_Kaesong : Ind City ; - -fun Countries_NOK_cities_Kanggye : Ind City ; - -fun Countries_NOK_cities_Kusong : Ind City ; - -fun Countries_NOK_cities_Nampo : Ind City ; - -fun Countries_NOK_cities_Pyongyang : Ind City ; - -fun Countries_NOK_cities_Sinpo : Ind City ; - -fun Countries_NOK_cities_Sinuiju : Ind City ; - -fun Countries_NOK_cities_Songjin : Ind City ; - -fun Countries_NOK_cities_Sunchon : Ind City ; - -fun Countries_NOK_cities_Tanchon : Ind City ; - -fun Countries_NOK_cities_Tokchon : Ind City ; - -fun Countries_NOK_cities_Wonsan : Ind City ; - -fun Countries_NZ_cities_Auckland : Ind City ; - -fun Countries_NZ_cities_Wellington : Ind City ; - -fun Countries_N_provinces_Akershus : Ind Province ; - -fun Countries_N_provinces_AustAgder : Ind Province ; - -fun Countries_N_provinces_AustAgder_cities_Arendal : Ind City ; - -fun Countries_N_provinces_Buskerud : Ind Province ; - -fun Countries_N_provinces_Buskerud_cities_Drammen : Ind City ; - -fun Countries_N_provinces_Finnmark : Ind Province ; - -fun Countries_N_provinces_Finnmark_cities_Hammerfest : Ind City ; - -fun Countries_N_provinces_Finnmark_cities_Vadsoe : Ind City ; - -fun Countries_N_provinces_Hedmark : Ind Province ; - -fun Countries_N_provinces_Hedmark_cities_Hamar : Ind City ; - -fun Countries_N_provinces_Hordaland : Ind Province ; - -fun Countries_N_provinces_Hordaland_cities_Bergen : Ind City ; - -fun Countries_N_provinces_MoereogRomsdal : Ind Province ; - -fun Countries_N_provinces_MoereogRomsdal_cities_Molde : Ind City ; - -fun Countries_N_provinces_NordTrondelag : Ind Province ; - -fun Countries_N_provinces_NordTrondelag_cities_Steinkjer : Ind City ; - -fun Countries_N_provinces_Nordland : Ind Province ; - -fun Countries_N_provinces_Nordland_cities_Bodoe : Ind City ; - -fun Countries_N_provinces_Nordland_cities_Narvik : Ind City ; - -fun Countries_N_provinces_Nordland_cities_Svolvaer : Ind City ; - -fun Countries_N_provinces_Oestfold : Ind Province ; - -fun Countries_N_provinces_Oestfold_cities_Moss : Ind City ; - -fun Countries_N_provinces_Oppland : Ind Province ; - -fun Countries_N_provinces_Oppland_cities_Lillehammer : Ind City ; - -fun Countries_N_provinces_Oslo : Ind Province ; - -fun Countries_N_provinces_Oslo_cities_Oslo : Ind City ; - -fun Countries_N_provinces_Rogaland : Ind Province ; - -fun Countries_N_provinces_Rogaland_cities_Stavanger : Ind City ; - -fun Countries_N_provinces_SoerTrondelag : Ind Province ; - -fun Countries_N_provinces_SoerTrondelag_cities_Trondheim : Ind City ; - -fun Countries_N_provinces_SognogFjordane : Ind Province ; - -fun Countries_N_provinces_SognogFjordane_cities_Hermannsverk : Ind City ; - -fun Countries_N_provinces_Telemark : Ind Province ; - -fun Countries_N_provinces_Telemark_cities_Skien : Ind City ; - -fun Countries_N_provinces_Troms : Ind Province ; - -fun Countries_N_provinces_Troms_cities_Tromsoe : Ind City ; - -fun Countries_N_provinces_VestAgder : Ind Province ; - -fun Countries_N_provinces_VestAgder_cities_Kristiansand : Ind City ; - -fun Countries_N_provinces_Vestfold : Ind Province ; - -fun Countries_N_provinces_Vestfold_cities_Toensberg : Ind City ; - -fun Countries_OM_cities_Muscat : Ind City ; - -fun Countries_PAL_cities_Koror : Ind City ; - -fun Countries_PA_provinces_BocasdelToro : Ind Province ; - -fun Countries_PA_provinces_BocasdelToro_cities_BocasdelToro : Ind City ; - -fun Countries_PA_provinces_Chiriqui : Ind Province ; - -fun Countries_PA_provinces_Chiriqui_cities_David : Ind City ; - -fun Countries_PA_provinces_Cocle : Ind Province ; - -fun Countries_PA_provinces_Cocle_cities_Penonome : Ind City ; - -fun Countries_PA_provinces_Colon : Ind Province ; - -fun Countries_PA_provinces_Colon_cities_Colon : Ind City ; - -fun Countries_PA_provinces_ComarcadeSanBlas : Ind Province ; - -fun Countries_PA_provinces_ComarcadeSanBlas_cities_ElPorvenir : Ind City ; - -fun Countries_PA_provinces_Darien : Ind Province ; - -fun Countries_PA_provinces_Darien_cities_LaPalma : Ind City ; - -fun Countries_PA_provinces_Herrera : Ind Province ; - -fun Countries_PA_provinces_Herrera_cities_Chitre : Ind City ; - -fun Countries_PA_provinces_LosSantos : Ind Province ; - -fun Countries_PA_provinces_LosSantos_cities_LasTablas : Ind City ; - -fun Countries_PA_provinces_Panama : Ind Province ; - -fun Countries_PA_provinces_Panama_cities_PanamaCity : Ind City ; - -fun Countries_PA_provinces_Panama_cities_SanMiguelito : Ind City ; - -fun Countries_PA_provinces_Veraguas : Ind Province ; - -fun Countries_PA_provinces_Veraguas_cities_Santiago : Ind City ; - -fun Countries_PE_provinces_Amazonas : Ind Province ; - -fun Countries_PE_provinces_Amazonas_cities_Chachapoyas : Ind City ; - -fun Countries_PE_provinces_Ancash : Ind Province ; - -fun Countries_PE_provinces_Ancash_cities_Chimbote : Ind City ; - -fun Countries_PE_provinces_Ancash_cities_Huaraz : Ind City ; - -fun Countries_PE_provinces_Apurimac : Ind Province ; - -fun Countries_PE_provinces_Apurimac_cities_Abancay : Ind City ; - -fun Countries_PE_provinces_Arequipa : Ind Province ; - -fun Countries_PE_provinces_Arequipa_cities_Arequipa : Ind City ; - -fun Countries_PE_provinces_Ayacucho : Ind Province ; - -fun Countries_PE_provinces_Ayacucho_cities_Ayacucho : Ind City ; - -fun Countries_PE_provinces_Cajamarca : Ind Province ; - -fun Countries_PE_provinces_Cajamarca_cities_Cajamarca : Ind City ; - -fun Countries_PE_provinces_Callao : Ind Province ; - -fun Countries_PE_provinces_Callao_cities_Callao : Ind City ; - -fun Countries_PE_provinces_Cuzco : Ind Province ; - -fun Countries_PE_provinces_Cuzco_cities_Cuzco : Ind City ; - -fun Countries_PE_provinces_Huancavelica : Ind Province ; - -fun Countries_PE_provinces_Huancavelica_cities_Huancavelica : Ind City ; - -fun Countries_PE_provinces_Huanuco : Ind Province ; - -fun Countries_PE_provinces_Huanuco_cities_Huanuco : Ind City ; - -fun Countries_PE_provinces_Ica : Ind Province ; - -fun Countries_PE_provinces_Ica_cities_ChinchaAlta : Ind City ; - -fun Countries_PE_provinces_Ica_cities_Ica : Ind City ; - -fun Countries_PE_provinces_Junin : Ind Province ; - -fun Countries_PE_provinces_Junin_cities_Huancayo : Ind City ; - -fun Countries_PE_provinces_LaLibertad : Ind Province ; - -fun Countries_PE_provinces_LaLibertad_cities_Trujillo : Ind City ; - -fun Countries_PE_provinces_Lambayeque : Ind Province ; - -fun Countries_PE_provinces_Lambayeque_cities_Chiclayo : Ind City ; - -fun Countries_PE_provinces_Lima : Ind Province ; - -fun Countries_PE_provinces_Lima_cities_Lima : Ind City ; - -fun Countries_PE_provinces_Loreto : Ind Province ; - -fun Countries_PE_provinces_Loreto_cities_Iquitos : Ind City ; - -fun Countries_PE_provinces_MadredeDios : Ind Province ; - -fun Countries_PE_provinces_MadredeDios_cities_PuertoMaldonado : Ind City ; - -fun Countries_PE_provinces_Moquegua : Ind Province ; - -fun Countries_PE_provinces_Moquegua_cities_Moquegua : Ind City ; - -fun Countries_PE_provinces_Pasco : Ind Province ; - -fun Countries_PE_provinces_Pasco_cities_CerrodePasco : Ind City ; - -fun Countries_PE_provinces_Piura : Ind Province ; - -fun Countries_PE_provinces_Piura_cities_Piura : Ind City ; - -fun Countries_PE_provinces_Piura_cities_Sullana : Ind City ; - -fun Countries_PE_provinces_Piura_cities_Talara : Ind City ; - -fun Countries_PE_provinces_Puno : Ind Province ; - -fun Countries_PE_provinces_Puno_cities_Juliaca : Ind City ; - -fun Countries_PE_provinces_Puno_cities_Puno : Ind City ; - -fun Countries_PE_provinces_SanMartin : Ind Province ; - -fun Countries_PE_provinces_SanMartin_cities_Moyobamba : Ind City ; - -fun Countries_PE_provinces_Tacna : Ind Province ; - -fun Countries_PE_provinces_Tacna_cities_Tacna : Ind City ; - -fun Countries_PE_provinces_Tumbes : Ind Province ; - -fun Countries_PE_provinces_Tumbes_cities_Tumbes : Ind City ; - -fun Countries_PE_provinces_Ucayali : Ind Province ; - -fun Countries_PE_provinces_Ucayali_cities_Pucallpa : Ind City ; - -fun Countries_PK_cities_Bahawalpur : Ind City ; - -fun Countries_PK_cities_Chiniot : Ind City ; - -fun Countries_PK_cities_DeraGhaziKhan : Ind City ; - -fun Countries_PK_cities_Gujranwala : Ind City ; - -fun Countries_PK_cities_Gujrat : Ind City ; - -fun Countries_PK_cities_Hyderabad : Ind City ; - -fun Countries_PK_cities_Islamabad : Ind City ; - -fun Countries_PK_cities_Jhang : Ind City ; - -fun Countries_PK_cities_Jhelum : Ind City ; - -fun Countries_PK_cities_Karachi : Ind City ; - -fun Countries_PK_cities_Kasur : Ind City ; - -fun Countries_PK_cities_Lahore : Ind City ; - -fun Countries_PK_cities_LahoreCantonment : Ind City ; - -fun Countries_PK_cities_Larkana : Ind City ; - -fun Countries_PK_cities_Lyallpur : Ind City ; - -fun Countries_PK_cities_Mardan : Ind City ; - -fun Countries_PK_cities_MirpurKhas : Ind City ; - -fun Countries_PK_cities_Multan : Ind City ; - -fun Countries_PK_cities_Nawabshah : Ind City ; - -fun Countries_PK_cities_Okara : Ind City ; - -fun Countries_PK_cities_Peshawar : Ind City ; - -fun Countries_PK_cities_Quetta : Ind City ; - -fun Countries_PK_cities_RahimYarKhan : Ind City ; - -fun Countries_PK_cities_Rawalpindi : Ind City ; - -fun Countries_PK_cities_Sahiwal : Ind City ; - -fun Countries_PK_cities_Sargodha : Ind City ; - -fun Countries_PK_cities_Sheikhupura : Ind City ; - -fun Countries_PK_cities_Sialkot : Ind City ; - -fun Countries_PK_cities_Sukkur : Ind City ; - -fun Countries_PK_cities_WahCantonment : Ind City ; - -fun Countries_PL_cities_DabrowaGornicza : Ind City ; - -fun Countries_PL_cities_JastrzebieZdroj : Ind City ; - -fun Countries_PL_provinces_Bialostockie : Ind Province ; - -fun Countries_PL_provinces_Bialostockie_cities_Bialystok : Ind City ; - -fun Countries_PL_provinces_Bialskopodlaskie : Ind Province ; - -fun Countries_PL_provinces_Bialskopodlaskie_cities_BialaPodlaska : Ind City ; - -fun Countries_PL_provinces_Bielskie : Ind Province ; - -fun Countries_PL_provinces_Bielskie_cities_BielskoBiala : Ind City ; - -fun Countries_PL_provinces_Bydgoskie : Ind Province ; - -fun Countries_PL_provinces_Bydgoskie_cities_Bydgoszcz : Ind City ; - -fun Countries_PL_provinces_Chelmskie : Ind Province ; - -fun Countries_PL_provinces_Chelmskie_cities_Chelm : Ind City ; - -fun Countries_PL_provinces_Ciechanowskie : Ind Province ; - -fun Countries_PL_provinces_Ciechanowskie_cities_Ciechanow : Ind City ; - -fun Countries_PL_provinces_Czestochowskie : Ind Province ; - -fun Countries_PL_provinces_Czestochowskie_cities_Czestochowa : Ind City ; - -fun Countries_PL_provinces_Elblaskie : Ind Province ; - -fun Countries_PL_provinces_Elblaskie_cities_Elblag : Ind City ; - -fun Countries_PL_provinces_Gdanskie : Ind Province ; - -fun Countries_PL_provinces_Gdanskie_cities_Gdansk : Ind City ; - -fun Countries_PL_provinces_Gdanskie_cities_Gdynia : Ind City ; - -fun Countries_PL_provinces_Gorzowskie : Ind Province ; - -fun Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolski : Ind City ; - -fun Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolskie : Ind City ; - -fun Countries_PL_provinces_Jeleniogorskie : Ind Province ; - -fun Countries_PL_provinces_Jeleniogorskie_cities_JeleniaGora : Ind City ; - -fun Countries_PL_provinces_Kaliskie : Ind Province ; - -fun Countries_PL_provinces_Kaliskie_cities_Kalisz : Ind City ; - -fun Countries_PL_provinces_Katowickie : Ind Province ; - -fun Countries_PL_provinces_Katowickie_cities_Bytom : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Chorzow : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Gliwice : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Katowice : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_RudaSlaska : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Rybnik : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Sosnowiec : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Tychy : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_WodzilawSlaski : Ind City ; - -fun Countries_PL_provinces_Katowickie_cities_Zabrze : Ind City ; - -fun Countries_PL_provinces_Kieleckie : Ind Province ; - -fun Countries_PL_provinces_Kieleckie_cities_Kielce : Ind City ; - -fun Countries_PL_provinces_Koninskie : Ind Province ; - -fun Countries_PL_provinces_Koninskie_cities_Konin : Ind City ; - -fun Countries_PL_provinces_Koszalinskie : Ind Province ; - -fun Countries_PL_provinces_Koszalinskie_cities_Koszalin : Ind City ; - -fun Countries_PL_provinces_Krakowskie : Ind Province ; - -fun Countries_PL_provinces_Krakowskie_cities_Krakow : Ind City ; - -fun Countries_PL_provinces_Krosnienskie : Ind Province ; - -fun Countries_PL_provinces_Krosnienskie_cities_Krosno : Ind City ; - -fun Countries_PL_provinces_Legnickie : Ind Province ; - -fun Countries_PL_provinces_Legnickie_cities_Legnica : Ind City ; - -fun Countries_PL_provinces_Leszczynskie : Ind Province ; - -fun Countries_PL_provinces_Leszczynskie_cities_Leszno : Ind City ; - -fun Countries_PL_provinces_Lodzkie : Ind Province ; - -fun Countries_PL_provinces_Lodzkie_cities_Lodz : Ind City ; - -fun Countries_PL_provinces_Lomzynskie : Ind Province ; - -fun Countries_PL_provinces_Lomzynskie_cities_Lomza : Ind City ; - -fun Countries_PL_provinces_Lubelskie : Ind Province ; - -fun Countries_PL_provinces_Lubelskie_cities_Lublin : Ind City ; - -fun Countries_PL_provinces_Nowosadeckie : Ind Province ; - -fun Countries_PL_provinces_Nowosadeckie_cities_NowySacz : Ind City ; - -fun Countries_PL_provinces_Olsztynskie : Ind Province ; - -fun Countries_PL_provinces_Olsztynskie_cities_Olsztyn : Ind City ; - -fun Countries_PL_provinces_Opolskie : Ind Province ; - -fun Countries_PL_provinces_Opolskie_cities_Opole : Ind City ; - -fun Countries_PL_provinces_Ostroleckie : Ind Province ; - -fun Countries_PL_provinces_Ostroleckie_cities_Ostroleka : Ind City ; - -fun Countries_PL_provinces_Pilskie : Ind Province ; - -fun Countries_PL_provinces_Pilskie_cities_Pila : Ind City ; - -fun Countries_PL_provinces_Piotrkowskie : Ind Province ; - -fun Countries_PL_provinces_Piotrkowskie_cities_PiottrkowTrybunalski : Ind City ; - -fun Countries_PL_provinces_Plockie : Ind Province ; - -fun Countries_PL_provinces_Plockie_cities_Plock : Ind City ; - -fun Countries_PL_provinces_Poznanskie : Ind Province ; - -fun Countries_PL_provinces_Poznanskie_cities_Poznan : Ind City ; - -fun Countries_PL_provinces_Przemyskie : Ind Province ; - -fun Countries_PL_provinces_Przemyskie_cities_Przemysl : Ind City ; - -fun Countries_PL_provinces_Radomskie : Ind Province ; - -fun Countries_PL_provinces_Radomskie_cities_Radom : Ind City ; - -fun Countries_PL_provinces_Rzeszowskie : Ind Province ; - -fun Countries_PL_provinces_Rzeszowskie_cities_Rzeszow : Ind City ; - -fun Countries_PL_provinces_Siedleckie : Ind Province ; - -fun Countries_PL_provinces_Siedleckie_cities_Siedlce : Ind City ; - -fun Countries_PL_provinces_Sieradzkie : Ind Province ; - -fun Countries_PL_provinces_Sieradzkie_cities_Sieradz : Ind City ; - -fun Countries_PL_provinces_Skierniewickie : Ind Province ; - -fun Countries_PL_provinces_Skierniewickie_cities_Skierniewice : Ind City ; - -fun Countries_PL_provinces_Slupskie : Ind Province ; - -fun Countries_PL_provinces_Slupskie_cities_Slupsk : Ind City ; - -fun Countries_PL_provinces_Suwalskie : Ind Province ; - -fun Countries_PL_provinces_Suwalskie_cities_Suwalki : Ind City ; - -fun Countries_PL_provinces_Szczecinskie : Ind Province ; - -fun Countries_PL_provinces_Szczecinskie_cities_Szczecin : Ind City ; - -fun Countries_PL_provinces_Tarnobrzeskie : Ind Province ; - -fun Countries_PL_provinces_Tarnobrzeskie_cities_Tarnobrzeg : Ind City ; - -fun Countries_PL_provinces_Tarnowskie : Ind Province ; - -fun Countries_PL_provinces_Tarnowskie_cities_Tarnow : Ind City ; - -fun Countries_PL_provinces_Torunskie : Ind Province ; - -fun Countries_PL_provinces_Torunskie_cities_Grudziadz : Ind City ; - -fun Countries_PL_provinces_Torunskie_cities_Torun : Ind City ; - -fun Countries_PL_provinces_Walbrzyskie : Ind Province ; - -fun Countries_PL_provinces_Walbrzyskie_cities_Walbrzych : Ind City ; - -fun Countries_PL_provinces_Warszwaskie : Ind Province ; - -fun Countries_PL_provinces_Warszwaskie_cities_Warsaw : Ind City ; - -fun Countries_PL_provinces_Wloclawskie : Ind Province ; - -fun Countries_PL_provinces_Wloclawskie_cities_Wloclawek : Ind City ; - -fun Countries_PL_provinces_Wroclawskie : Ind Province ; - -fun Countries_PL_provinces_Wroclawskie_cities_Wroclaw : Ind City ; - -fun Countries_PL_provinces_Zamojskie : Ind Province ; - -fun Countries_PL_provinces_Zamojskie_cities_Zamosc : Ind City ; - -fun Countries_PL_provinces_Zielonogorskie : Ind Province ; - -fun Countries_PL_provinces_Zielonogorskie_cities_ZielonaGora : Ind City ; - -fun Countries_PNG_cities_PortMoresby : Ind City ; - -fun Countries_PY_cities_Asuncion : Ind City ; - -fun Countries_P_provinces_Aveiro : Ind Province ; - -fun Countries_P_provinces_Azores_The : Ind Province ; - -fun Countries_P_provinces_Beja : Ind Province ; - -fun Countries_P_provinces_Braga : Ind Province ; - -fun Countries_P_provinces_Braga_cities_Braga : Ind City ; - -fun Countries_P_provinces_Braganca : Ind Province ; - -fun Countries_P_provinces_CasteloBranco : Ind Province ; - -fun Countries_P_provinces_Coimbra : Ind Province ; - -fun Countries_P_provinces_Coimbra_cities_Coimbra : Ind City ; - -fun Countries_P_provinces_Evora : Ind Province ; - -fun Countries_P_provinces_Faro : Ind Province ; - -fun Countries_P_provinces_Guarda : Ind Province ; - -fun Countries_P_provinces_Leiria : Ind Province ; - -fun Countries_P_provinces_Lisbon : Ind Province ; - -fun Countries_P_provinces_Lisbon_cities_Almada : Ind City ; - -fun Countries_P_provinces_Lisbon_cities_Amadora : Ind City ; - -fun Countries_P_provinces_Lisbon_cities_Barreiro : Ind City ; - -fun Countries_P_provinces_Lisbon_cities_Lisbon : Ind City ; - -fun Countries_P_provinces_Madeira : Ind Province ; - -fun Countries_P_provinces_Madeira_cities_Funchal : Ind City ; - -fun Countries_P_provinces_Portalegre : Ind Province ; - -fun Countries_P_provinces_Porto : Ind Province ; - -fun Countries_P_provinces_Porto_cities_Porto : Ind City ; - -fun Countries_P_provinces_Porto_cities_VilaNovadeGaia : Ind City ; - -fun Countries_P_provinces_Santarem : Ind Province ; - -fun Countries_P_provinces_Setubal : Ind Province ; - -fun Countries_P_provinces_Setubal_cities_Setubal : Ind City ; - -fun Countries_P_provinces_VianadoCastelo : Ind Province ; - -fun Countries_P_provinces_VilaReal : Ind Province ; - -fun Countries_P_provinces_Viseu : Ind Province ; - -fun Countries_Q_cities_Doha : Ind City ; - -fun Countries_Q_cities_Rayyan : Ind City ; - -fun Countries_Q_cities_Wakrah : Ind City ; - -fun Countries_RA_provinces_BuenosAires : Ind Province ; - -fun Countries_RA_provinces_BuenosAires_cities_Avellaneda : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_BahiaBlanca : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_GeneralSanMartin : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_LaMatanza : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_LaPlata : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_Lanus : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_LomasdeZamoras : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_MardelPlata : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_Moron : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_Quilmes : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_SanIsidro : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_SanNicolasdelosArroyos : Ind City ; - -fun Countries_RA_provinces_BuenosAires_cities_VicenteLopez : Ind City ; - -fun Countries_RA_provinces_Catamarca : Ind Province ; - -fun Countries_RA_provinces_Catamarca_cities_SanFernando : Ind City ; - -fun Countries_RA_provinces_Catamarca_cities_SanFernandodelValledeCatamarca : Ind City ; - -fun Countries_RA_provinces_Chaco : Ind Province ; - -fun Countries_RA_provinces_Chaco_cities_Resistencia : Ind City ; - -fun Countries_RA_provinces_Chubut : Ind Province ; - -fun Countries_RA_provinces_Chubut_cities_ComodoroRivadavia : Ind City ; - -fun Countries_RA_provinces_Chubut_cities_Rawson : Ind City ; - -fun Countries_RA_provinces_Cordoba : Ind Province ; - -fun Countries_RA_provinces_Cordoba_cities_Cordoba : Ind City ; - -fun Countries_RA_provinces_Cordoba_cities_RioCuarto : Ind City ; - -fun Countries_RA_provinces_Corrientes : Ind Province ; - -fun Countries_RA_provinces_Corrientes_cities_Corrientes : Ind City ; - -fun Countries_RA_provinces_DistritoFederal : Ind Province ; - -fun Countries_RA_provinces_DistritoFederal_cities_BuenosAires : Ind City ; - -fun Countries_RA_provinces_EntreRios : Ind Province ; - -fun Countries_RA_provinces_EntreRios_cities_Concordia : Ind City ; - -fun Countries_RA_provinces_EntreRios_cities_Parana : Ind City ; - -fun Countries_RA_provinces_Formosa : Ind Province ; - -fun Countries_RA_provinces_Formosa_cities_Formosa : Ind City ; - -fun Countries_RA_provinces_Jujuy : Ind Province ; - -fun Countries_RA_provinces_Jujuy_cities_SanSalvadordeJujuy : Ind City ; - -fun Countries_RA_provinces_LaPampa : Ind Province ; - -fun Countries_RA_provinces_LaPampa_cities_SantaRosa : Ind City ; - -fun Countries_RA_provinces_LaRioja : Ind Province ; - -fun Countries_RA_provinces_LaRioja_cities_LaRioja : Ind City ; - -fun Countries_RA_provinces_Mendoza : Ind Province ; - -fun Countries_RA_provinces_Mendoza_cities_Mendoza : Ind City ; - -fun Countries_RA_provinces_Misiones : Ind Province ; - -fun Countries_RA_provinces_Misiones_cities_Posadas : Ind City ; - -fun Countries_RA_provinces_Neuquen : Ind Province ; - -fun Countries_RA_provinces_Neuquen_cities_Neuquen : Ind City ; - -fun Countries_RA_provinces_RioNegro : Ind Province ; - -fun Countries_RA_provinces_RioNegro_cities_Viedma : Ind City ; - -fun Countries_RA_provinces_Salta : Ind Province ; - -fun Countries_RA_provinces_Salta_cities_Salta : Ind City ; - -fun Countries_RA_provinces_SanJuan : Ind Province ; - -fun Countries_RA_provinces_SanJuan_cities_SanJuan : Ind City ; - -fun Countries_RA_provinces_SanLuis : Ind Province ; - -fun Countries_RA_provinces_SanLuis_cities_SanLuis : Ind City ; - -fun Countries_RA_provinces_SantaCruz : Ind Province ; - -fun Countries_RA_provinces_SantaCruz_cities_RioGallegos : Ind City ; - -fun Countries_RA_provinces_SantaFe : Ind Province ; - -fun Countries_RA_provinces_SantaFe_cities_Rosario : Ind City ; - -fun Countries_RA_provinces_SantaFe_cities_SantaFe : Ind City ; - -fun Countries_RA_provinces_SantiagodeEstero : Ind Province ; - -fun Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEstero : Ind City ; - -fun Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEsteroLaBanda : Ind City ; - -fun Countries_RA_provinces_TierradelFuego : Ind Province ; - -fun Countries_RA_provinces_TierradelFuego_cities_Ushuaia : Ind City ; - -fun Countries_RA_provinces_Tucuman : Ind Province ; - -fun Countries_RA_provinces_Tucuman_cities_SanMigueldeTucuman : Ind City ; - -fun Countries_RB_cities_Gaborone : Ind City ; - -fun Countries_RCA_cities_Bangui : Ind City ; - -fun Countries_RCB_cities_Brazzaville : Ind City ; - -fun Countries_RCH_cities_Santiago : Ind City ; - -fun Countries_RCH_cities_Valparaiso : Ind City ; - -fun Countries_RC_cities_Chungho : Ind City ; - -fun Countries_RC_cities_Chungli : Ind City ; - -fun Countries_RC_cities_Hsinchuang : Ind City ; - -fun Countries_RC_cities_Hsintien : Ind City ; - -fun Countries_RC_cities_Sanchuung : Ind City ; - -fun Countries_RC_cities_Yungho : Ind City ; - -fun Countries_RC_provinces_Changhua : Ind Province ; - -fun Countries_RC_provinces_Changhua_cities_Changhua : Ind City ; - -fun Countries_RC_provinces_Chiai : Ind Province ; - -fun Countries_RC_provinces_Chiai_munic : Ind Province ; - -fun Countries_RC_provinces_Chiai_munic_cities_Chiai : Ind City ; - -fun Countries_RC_provinces_Chilung_munic : Ind Province ; - -fun Countries_RC_provinces_Chilung_munic_cities_Chilung : Ind City ; - -fun Countries_RC_provinces_Hsinchu : Ind Province ; - -fun Countries_RC_provinces_Hsinchu_munic : Ind Province ; - -fun Countries_RC_provinces_Hsinchu_munic_cities_Hsinchu : Ind City ; - -fun Countries_RC_provinces_Hualien : Ind Province ; - -fun Countries_RC_provinces_Hualien_cities_Hualien : Ind City ; - -fun Countries_RC_provinces_Ilan : Ind Province ; - -fun Countries_RC_provinces_Ilan_cities_Ilan : Ind City ; - -fun Countries_RC_provinces_Kaohsiung : Ind Province ; - -fun Countries_RC_provinces_Kaohsiung_cities_Fengshan : Ind City ; - -fun Countries_RC_provinces_Kaohsiung_munic : Ind Province ; - -fun Countries_RC_provinces_Kaohsiung_munic_cities_Kaohsiung : Ind City ; - -fun Countries_RC_provinces_Miaoli : Ind Province ; - -fun Countries_RC_provinces_Miaoli_cities_Miaoli : Ind City ; - -fun Countries_RC_provinces_Nantou : Ind Province ; - -fun Countries_RC_provinces_Nantou_cities_Nantou : Ind City ; - -fun Countries_RC_provinces_Penghu : Ind Province ; - -fun Countries_RC_provinces_Penghu_cities_Makung : Ind City ; - -fun Countries_RC_provinces_Pingtung : Ind Province ; - -fun Countries_RC_provinces_Pingtung_cities_Pingtung : Ind City ; - -fun Countries_RC_provinces_Taichung : Ind Province ; - -fun Countries_RC_provinces_Taichung_cities_Fengyuan : Ind City ; - -fun Countries_RC_provinces_Taichung_munic : Ind Province ; - -fun Countries_RC_provinces_Taichung_munic_cities_Taichung : Ind City ; - -fun Countries_RC_provinces_Tainan : Ind Province ; - -fun Countries_RC_provinces_Tainan_cities_Hsinying : Ind City ; - -fun Countries_RC_provinces_Tainan_munic : Ind Province ; - -fun Countries_RC_provinces_Tainan_munic_cities_Tainan : Ind City ; - -fun Countries_RC_provinces_Taipei : Ind Province ; - -fun Countries_RC_provinces_Taipei_cities_Panchiao : Ind City ; - -fun Countries_RC_provinces_Taipei_munic : Ind Province ; - -fun Countries_RC_provinces_Taipei_munic_cities_Taipei : Ind City ; - -fun Countries_RC_provinces_Taitung : Ind Province ; - -fun Countries_RC_provinces_Taitung_cities_Taitung : Ind City ; - -fun Countries_RC_provinces_Taoyuan : Ind Province ; - -fun Countries_RC_provinces_Taoyuan_cities_Taoyuan : Ind City ; - -fun Countries_RC_provinces_Yunlin : Ind Province ; - -fun Countries_RC_provinces_Yunlin_cities_Touliu : Ind City ; - -fun Countries_RG_cities_Conakry : Ind City ; - -fun Countries_RH_cities_Port_au_Prince : Ind City ; - -fun Countries_RIM_cities_Nouakchott : Ind City ; - -fun Countries_RI_cities_Ambon : Ind City ; - -fun Countries_RI_cities_Balikpapan : Ind City ; - -fun Countries_RI_cities_BandaAceh : Ind City ; - -fun Countries_RI_cities_BandarLampung : Ind City ; - -fun Countries_RI_cities_Bandung : Ind City ; - -fun Countries_RI_cities_Banjarmasin : Ind City ; - -fun Countries_RI_cities_Batam : Ind City ; - -fun Countries_RI_cities_Bengkulu : Ind City ; - -fun Countries_RI_cities_Binjai : Ind City ; - -fun Countries_RI_cities_Blitar : Ind City ; - -fun Countries_RI_cities_Bogor : Ind City ; - -fun Countries_RI_cities_Cirebon : Ind City ; - -fun Countries_RI_cities_Gorontalo : Ind City ; - -fun Countries_RI_cities_Jakarta : Ind City ; - -fun Countries_RI_cities_Jambi : Ind City ; - -fun Countries_RI_cities_Kediri : Ind City ; - -fun Countries_RI_cities_Madiun : Ind City ; - -fun Countries_RI_cities_Magelang : Ind City ; - -fun Countries_RI_cities_Malang : Ind City ; - -fun Countries_RI_cities_Manado : Ind City ; - -fun Countries_RI_cities_Medan : Ind City ; - -fun Countries_RI_cities_Padang : Ind City ; - -fun Countries_RI_cities_Palangkaraya : Ind City ; - -fun Countries_RI_cities_Palembang : Ind City ; - -fun Countries_RI_cities_PangkalPinang : Ind City ; - -fun Countries_RI_cities_ParePare : Ind City ; - -fun Countries_RI_cities_Pasuruan : Ind City ; - -fun Countries_RI_cities_Pekalongan : Ind City ; - -fun Countries_RI_cities_PekanBaru : Ind City ; - -fun Countries_RI_cities_PematangSiantar : Ind City ; - -fun Countries_RI_cities_Pontianak : Ind City ; - -fun Countries_RI_cities_Probolinggo : Ind City ; - -fun Countries_RI_cities_Samarinda : Ind City ; - -fun Countries_RI_cities_Semarang : Ind City ; - -fun Countries_RI_cities_Sukabumi : Ind City ; - -fun Countries_RI_cities_Surabaya : Ind City ; - -fun Countries_RI_cities_Surakarta : Ind City ; - -fun Countries_RI_cities_TanjungBalai : Ind City ; - -fun Countries_RI_cities_TebingTinggi : Ind City ; - -fun Countries_RI_cities_Tegal : Ind City ; - -fun Countries_RI_cities_UjungPandang : Ind City ; - -fun Countries_RI_cities_Yogyakarta : Ind City ; - -fun Countries_RL_cities_Beirut : Ind City ; - -fun Countries_RMM_cities_Bamako : Ind City ; - -fun Countries_RM_provinces_Antananarivo : Ind Province ; - -fun Countries_RM_provinces_Antananarivo_cities_Antananarivo : Ind City ; - -fun Countries_RM_provinces_Antananarivo_cities_Antsirabe : Ind City ; - -fun Countries_RM_provinces_Antsiranana : Ind Province ; - -fun Countries_RM_provinces_Antsiranana_cities_Antsiranana : Ind City ; - -fun Countries_RM_provinces_Fianarantsoa : Ind Province ; - -fun Countries_RM_provinces_Fianarantsoa_cities_Fianarantsoa : Ind City ; - -fun Countries_RM_provinces_Mahajanga : Ind Province ; - -fun Countries_RM_provinces_Mahajanga_cities_Majunga : Ind City ; - -fun Countries_RM_provinces_Toamasina : Ind Province ; - -fun Countries_RM_provinces_Toamasina_cities_Tamatave : Ind City ; - -fun Countries_RM_provinces_Toliary : Ind Province ; - -fun Countries_RM_provinces_Toliary_cities_Toliary : Ind City ; - -fun Countries_RN_cities_Niamey : Ind City ; - -fun Countries_ROK_cities_Cheju : Ind City ; - -fun Countries_ROK_cities_Chinju : Ind City ; - -fun Countries_ROK_cities_Chongju : Ind City ; - -fun Countries_ROK_cities_Chonju : Ind City ; - -fun Countries_ROK_cities_Chunchon : Ind City ; - -fun Countries_ROK_cities_Inchon : Ind City ; - -fun Countries_ROK_cities_Kunsan : Ind City ; - -fun Countries_ROK_cities_Kwangju : Ind City ; - -fun Countries_ROK_cities_Masan : Ind City ; - -fun Countries_ROK_cities_Mokpo : Ind City ; - -fun Countries_ROK_cities_Pusan : Ind City ; - -fun Countries_ROK_cities_Seoul : Ind City ; - -fun Countries_ROK_cities_Songnam : Ind City ; - -fun Countries_ROK_cities_Suwon : Ind City ; - -fun Countries_ROK_cities_Taegu : Ind City ; - -fun Countries_ROK_cities_Taejon : Ind City ; - -fun Countries_ROK_cities_Ulsan : Ind City ; - -fun Countries_ROK_cities_Yosu : Ind City ; - -fun Countries_ROU_cities_Montevideo : Ind City ; - -fun Countries_RO_provinces_Alba : Ind Province ; - -fun Countries_RO_provinces_Alba_cities_AlbaIulia : Ind City ; - -fun Countries_RO_provinces_Arad : Ind Province ; - -fun Countries_RO_provinces_Arad_cities_Arad : Ind City ; - -fun Countries_RO_provinces_Arges : Ind Province ; - -fun Countries_RO_provinces_Arges_cities_Pitesti : Ind City ; - -fun Countries_RO_provinces_Bacau : Ind Province ; - -fun Countries_RO_provinces_Bacau_cities_Bacau : Ind City ; - -fun Countries_RO_provinces_Bihor : Ind Province ; - -fun Countries_RO_provinces_Bihor_cities_Oradea : Ind City ; - -fun Countries_RO_provinces_BistritaNasaud : Ind Province ; - -fun Countries_RO_provinces_BistritaNasaud_cities_Bistrita : Ind City ; - -fun Countries_RO_provinces_Botosani : Ind Province ; - -fun Countries_RO_provinces_Botosani_cities_Botosani : Ind City ; - -fun Countries_RO_provinces_Braila : Ind Province ; - -fun Countries_RO_provinces_Braila_cities_Braila : Ind City ; - -fun Countries_RO_provinces_Brasov : Ind Province ; - -fun Countries_RO_provinces_Brasov_cities_Brasov : Ind City ; - -fun Countries_RO_provinces_Bucuresti : Ind Province ; - -fun Countries_RO_provinces_Bucuresti_cities_Bucharest : Ind City ; - -fun Countries_RO_provinces_Buzau : Ind Province ; - -fun Countries_RO_provinces_Buzau_cities_Buzau : Ind City ; - -fun Countries_RO_provinces_Calarasi : Ind Province ; - -fun Countries_RO_provinces_Calarasi_cities_Calarasi : Ind City ; - -fun Countries_RO_provinces_CarasSeverin : Ind Province ; - -fun Countries_RO_provinces_CarasSeverin_cities_Resita : Ind City ; - -fun Countries_RO_provinces_Cluj : Ind Province ; - -fun Countries_RO_provinces_Cluj_cities_ClujNapoca : Ind City ; - -fun Countries_RO_provinces_Constanta : Ind Province ; - -fun Countries_RO_provinces_Constanta_cities_Constanta : Ind City ; - -fun Countries_RO_provinces_Covasha : Ind Province ; - -fun Countries_RO_provinces_Covasha_cities_SfintuGheorghe : Ind City ; - -fun Countries_RO_provinces_Dimbovita : Ind Province ; - -fun Countries_RO_provinces_Dimbovita_cities_Tirgoviste : Ind City ; - -fun Countries_RO_provinces_Dolj : Ind Province ; - -fun Countries_RO_provinces_Dolj_cities_Craiova : Ind City ; - -fun Countries_RO_provinces_Galati : Ind Province ; - -fun Countries_RO_provinces_Galati_cities_Galati : Ind City ; - -fun Countries_RO_provinces_Giurgiu : Ind Province ; - -fun Countries_RO_provinces_Giurgiu_cities_Giurgiu : Ind City ; - -fun Countries_RO_provinces_Gorj : Ind Province ; - -fun Countries_RO_provinces_Gorj_cities_TirguJiu : Ind City ; - -fun Countries_RO_provinces_Harghita : Ind Province ; - -fun Countries_RO_provinces_Harghita_cities_MiercureaCiuc : Ind City ; - -fun Countries_RO_provinces_Hunedoara : Ind Province ; - -fun Countries_RO_provinces_Hunedoara_cities_Deva : Ind City ; - -fun Countries_RO_provinces_Ialomita : Ind Province ; - -fun Countries_RO_provinces_Ialomita_cities_Slobozia : Ind City ; - -fun Countries_RO_provinces_Iasi : Ind Province ; - -fun Countries_RO_provinces_Iasi_cities_Iasi : Ind City ; - -fun Countries_RO_provinces_Maramures : Ind Province ; - -fun Countries_RO_provinces_Maramures_cities_BaiaMare : Ind City ; - -fun Countries_RO_provinces_Mehedinti : Ind Province ; - -fun Countries_RO_provinces_Mehedinti_cities_DrobetaTurnuSeverin : Ind City ; - -fun Countries_RO_provinces_Mures : Ind Province ; - -fun Countries_RO_provinces_Mures_cities_TirguMures : Ind City ; - -fun Countries_RO_provinces_Neamt : Ind Province ; - -fun Countries_RO_provinces_Neamt_cities_PiatraNeamt : Ind City ; - -fun Countries_RO_provinces_Olt : Ind Province ; - -fun Countries_RO_provinces_Olt_cities_Slatina : Ind City ; - -fun Countries_RO_provinces_Prahova : Ind Province ; - -fun Countries_RO_provinces_Prahova_cities_Ploiesti : Ind City ; - -fun Countries_RO_provinces_Salaj : Ind Province ; - -fun Countries_RO_provinces_Salaj_cities_Zalau : Ind City ; - -fun Countries_RO_provinces_SatuMare : Ind Province ; - -fun Countries_RO_provinces_SatuMare_cities_SatuMare : Ind City ; - -fun Countries_RO_provinces_Sibiu : Ind Province ; - -fun Countries_RO_provinces_Sibiu_cities_Sibiu : Ind City ; - -fun Countries_RO_provinces_Suceava : Ind Province ; - -fun Countries_RO_provinces_Suceava_cities_Suceava : Ind City ; - -fun Countries_RO_provinces_Teleorman : Ind Province ; - -fun Countries_RO_provinces_Teleorman_cities_Alexandria : Ind City ; - -fun Countries_RO_provinces_Timis : Ind Province ; - -fun Countries_RO_provinces_Timis_cities_Timisoara : Ind City ; - -fun Countries_RO_provinces_Tulcea : Ind Province ; - -fun Countries_RO_provinces_Tulcea_cities_Tulcea : Ind City ; - -fun Countries_RO_provinces_Vaslui : Ind Province ; - -fun Countries_RO_provinces_Vaslui_cities_Vaslui : Ind City ; - -fun Countries_RO_provinces_Vilcea : Ind Province ; - -fun Countries_RO_provinces_Vilcea_cities_RimnicuVilcea : Ind City ; - -fun Countries_RO_provinces_Vrancea : Ind Province ; - -fun Countries_RO_provinces_Vrancea_cities_Focsani : Ind City ; - -fun Countries_RP_cities_CagayandeOro : Ind City ; - -fun Countries_RP_cities_Cebu : Ind City ; - -fun Countries_RP_cities_Davao : Ind City ; - -fun Countries_RP_cities_Kalookan : Ind City ; - -fun Countries_RP_cities_Makati : Ind City ; - -fun Countries_RP_cities_Manila : Ind City ; - -fun Countries_RP_cities_Pasay : Ind City ; - -fun Countries_RP_cities_Pasig : Ind City ; - -fun Countries_RP_cities_Quezon : Ind City ; - -fun Countries_RP_cities_Zamboanga : Ind City ; - -fun Countries_RSA_cities_Alexandra : Ind City ; - -fun Countries_RSA_cities_Benoni : Ind City ; - -fun Countries_RSA_cities_Boksburg : Ind City ; - -fun Countries_RSA_cities_Carletonville : Ind City ; - -fun Countries_RSA_cities_Daveyton : Ind City ; - -fun Countries_RSA_cities_Diepmeadow : Ind City ; - -fun Countries_RSA_cities_Evaton : Ind City ; - -fun Countries_RSA_cities_Germiston : Ind City ; - -fun Countries_RSA_cities_Ibhayi : Ind City ; - -fun Countries_RSA_cities_Katlehong : Ind City ; - -fun Countries_RSA_cities_KemptonPark : Ind City ; - -fun Countries_RSA_cities_Khayalitsha : Ind City ; - -fun Countries_RSA_cities_Lekoa : Ind City ; - -fun Countries_RSA_cities_Mamelodi : Ind City ; - -fun Countries_RSA_cities_Mangaung : Ind City ; - -fun Countries_RSA_cities_Roodepoort : Ind City ; - -fun Countries_RSA_cities_Sandton : Ind City ; - -fun Countries_RSA_cities_Soshanguve : Ind City ; - -fun Countries_RSA_cities_Tembisa : Ind City ; - -fun Countries_RSA_provinces_EasternCape : Ind Province ; - -fun Countries_RSA_provinces_EasternCape_cities_EastLondon : Ind City ; - -fun Countries_RSA_provinces_EasternCape_cities_KingWilliamsTown : Ind City ; - -fun Countries_RSA_provinces_EasternCape_cities_PortElizabeth : Ind City ; - -fun Countries_RSA_provinces_FreeState : Ind Province ; - -fun Countries_RSA_provinces_FreeState_cities_Bloemfontein : Ind City ; - -fun Countries_RSA_provinces_Gauteng : Ind Province ; - -fun Countries_RSA_provinces_Gauteng_cities_Johannesburg : Ind City ; - -fun Countries_RSA_provinces_Gauteng_cities_Pretoria : Ind City ; - -fun Countries_RSA_provinces_Gauteng_cities_Soweto : Ind City ; - -fun Countries_RSA_provinces_KwazuluNatal : Ind Province ; - -fun Countries_RSA_provinces_KwazuluNatal_cities_Durban : Ind City ; - -fun Countries_RSA_provinces_KwazuluNatal_cities_Pietermaritzburg : Ind City ; - -fun Countries_RSA_provinces_Mpumalanga : Ind Province ; - -fun Countries_RSA_provinces_Mpumalanga_cities_Nelspruit : Ind City ; - -fun Countries_RSA_provinces_NorthWest : Ind Province ; - -fun Countries_RSA_provinces_NorthWest_cities_Mmabatho : Ind City ; - -fun Countries_RSA_provinces_NorthernCape : Ind Province ; - -fun Countries_RSA_provinces_NorthernCape_cities_Kimberley : Ind City ; - -fun Countries_RSA_provinces_NorthernProvince : Ind Province ; - -fun Countries_RSA_provinces_NorthernProvince_cities_Pietersburg : Ind City ; - -fun Countries_RSA_provinces_WesternCape : Ind Province ; - -fun Countries_RSA_provinces_WesternCape_cities_CapeTown : Ind City ; - -fun Countries_RSM_cities_SanMarino : Ind City ; - -fun Countries_RT_cities_Lome : Ind City ; - -fun Countries_RWA_cities_Kigali : Ind City ; - -fun Countries_R_cities_Seversk : Ind City ; - -fun Countries_R_cities_Zagorsk : Ind City ; - -fun Countries_R_provinces_Altayskiykray : Ind Province ; - -fun Countries_R_provinces_Altayskiykray_cities_Barnaul : Ind City ; - -fun Countries_R_provinces_Altayskiykray_cities_Biysk : Ind City ; - -fun Countries_R_provinces_Altayskiykray_cities_Rubtsovsk : Ind City ; - -fun Countries_R_provinces_Amurskayaoblast : Ind Province ; - -fun Countries_R_provinces_Amurskayaoblast_cities_Blagoveshchensk : Ind City ; - -fun Countries_R_provinces_Arkhangelskayaoblast : Ind Province ; - -fun Countries_R_provinces_Arkhangelskayaoblast_cities_Arkhangelsk : Ind City ; - -fun Countries_R_provinces_Arkhangelskayaoblast_cities_Severodvinsk : Ind City ; - -fun Countries_R_provinces_Astrakhanskayaoblast : Ind Province ; - -fun Countries_R_provinces_Astrakhanskayaoblast_cities_Astrakhan : Ind City ; - -fun Countries_R_provinces_Belgorodskayaoblast : Ind Province ; - -fun Countries_R_provinces_Belgorodskayaoblast_cities_Belgorod : Ind City ; - -fun Countries_R_provinces_Belgorodskayaoblast_cities_StaryOskol : Ind City ; - -fun Countries_R_provinces_Bryanskayaoblast : Ind Province ; - -fun Countries_R_provinces_Bryanskayaoblast_cities_Bryansk : Ind City ; - -fun Countries_R_provinces_ChechenRep_ : Ind Province ; - -fun Countries_R_provinces_ChechenRep__cities_Grozny : Ind City ; - -fun Countries_R_provinces_Chelyabinskayaoblast : Ind Province ; - -fun Countries_R_provinces_Chelyabinskayaoblast_cities_Chelyabinsk : Ind City ; - -fun Countries_R_provinces_Chelyabinskayaoblast_cities_Magnitogorsk : Ind City ; - -fun Countries_R_provinces_Chelyabinskayaoblast_cities_Miass : Ind City ; - -fun Countries_R_provinces_Chelyabinskayaoblast_cities_Zlatoust : Ind City ; - -fun Countries_R_provinces_Chitinskayaoblast : Ind Province ; - -fun Countries_R_provinces_Chitinskayaoblast_cities_Chita : Ind City ; - -fun Countries_R_provinces_Chukotskyao : Ind Province ; - -fun Countries_R_provinces_Chukotskyao_cities_Anadyr : Ind City ; - -fun Countries_R_provinces_ChuvashRepublic : Ind Province ; - -fun Countries_R_provinces_ChuvashRepublic_cities_Cheboksary : Ind City ; - -fun Countries_R_provinces_ChuvashRepublic_cities_Novocheboksarsk : Ind City ; - -fun Countries_R_provinces_Irkutskayaoblast : Ind Province ; - -fun Countries_R_provinces_Irkutskayaoblast_cities_Angarsk : Ind City ; - -fun Countries_R_provinces_Irkutskayaoblast_cities_Bratsk : Ind City ; - -fun Countries_R_provinces_Irkutskayaoblast_cities_Irkutsk : Ind City ; - -fun Countries_R_provinces_Irkutskayaoblast_cities_UsolyeSibirskoye : Ind City ; - -fun Countries_R_provinces_Irkutskayaoblast_cities_UstIlimsk : Ind City ; - -fun Countries_R_provinces_Ivanovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Ivanovskayaoblast_cities_Ivanovo : Ind City ; - -fun Countries_R_provinces_Ivanovskayaoblast_cities_Kineshma : Ind City ; - -fun Countries_R_provinces_KabardinoBalkarRep_ : Ind Province ; - -fun Countries_R_provinces_KabardinoBalkarRep__cities_Nalchik : Ind City ; - -fun Countries_R_provinces_Kaliningradskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kaliningradskayaoblast_cities_Kaliningrad : Ind City ; - -fun Countries_R_provinces_Kaluzhskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kaluzhskayaoblast_cities_Kaluga : Ind City ; - -fun Countries_R_provinces_Kaluzhskayaoblast_cities_Obninsk : Ind City ; - -fun Countries_R_provinces_Kamchatskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kamchatskayaoblast_cities_PetropavlovskKamchatsky : Ind City ; - -fun Countries_R_provinces_KarachayevoCherkesskRep_ : Ind Province ; - -fun Countries_R_provinces_KarachayevoCherkesskRep__cities_Cherkessk : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_AnzheroSudzhensk : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_Kemerovo : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_Kiselyovsk : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_LeninskKuznetskiy : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_Mezhdurechensk : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_Novokuznetsk : Ind City ; - -fun Countries_R_provinces_Kemerovskayaoblast_cities_Prokopyevsk : Ind City ; - -fun Countries_R_provinces_Khabarovskiykray : Ind Province ; - -fun Countries_R_provinces_Khabarovskiykray_cities_Khabarovsk : Ind City ; - -fun Countries_R_provinces_Khabarovskiykray_cities_KomsomolsknaAmure : Ind City ; - -fun Countries_R_provinces_Kirovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kirovskayaoblast_cities_Kirov : Ind City ; - -fun Countries_R_provinces_Kostromskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kostromskayaoblast_cities_Kostroma : Ind City ; - -fun Countries_R_provinces_Krasnodarskykray : Ind Province ; - -fun Countries_R_provinces_Krasnodarskykray_cities_Armavir : Ind City ; - -fun Countries_R_provinces_Krasnodarskykray_cities_Krasnodar : Ind City ; - -fun Countries_R_provinces_Krasnodarskykray_cities_Novorossiysk : Ind City ; - -fun Countries_R_provinces_Krasnodarskykray_cities_Sochi : Ind City ; - -fun Countries_R_provinces_Krasnoyarskiykray : Ind Province ; - -fun Countries_R_provinces_Krasnoyarskiykray_cities_Achinsk : Ind City ; - -fun Countries_R_provinces_Krasnoyarskiykray_cities_Kansk : Ind City ; - -fun Countries_R_provinces_Krasnoyarskiykray_cities_Krasnoyarsk : Ind City ; - -fun Countries_R_provinces_Krasnoyarskiykray_cities_Norilsk : Ind City ; - -fun Countries_R_provinces_Kurganskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kurganskayaoblast_cities_Kurgan : Ind City ; - -fun Countries_R_provinces_Kurskayaoblast : Ind Province ; - -fun Countries_R_provinces_Kurskayaoblast_cities_Kursk : Ind City ; - -fun Countries_R_provinces_Leningradskayaoblast : Ind Province ; - -fun Countries_R_provinces_Leningradskayaoblast_cities_Kolpino : Ind City ; - -fun Countries_R_provinces_Lipetskayaoblast : Ind Province ; - -fun Countries_R_provinces_Lipetskayaoblast_cities_Lipetsk : Ind City ; - -fun Countries_R_provinces_Lipetskayaoblast_cities_Yelets : Ind City ; - -fun Countries_R_provinces_Magadanskayaoblast : Ind Province ; - -fun Countries_R_provinces_Magadanskayaoblast_cities_Magadan : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Balashikha : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Elektrostal : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Khimki : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Kolomna : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Lyubertsy : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Mytishchi : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Noginsk : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Odintsovo : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_OrekhovoZuyevo : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Podolsk : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Serpukhov : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Shchyolkovo : Ind City ; - -fun Countries_R_provinces_Moskovskayaoblast_cities_Zelenograd : Ind City ; - -fun Countries_R_provinces_Moskva : Ind Province ; - -fun Countries_R_provinces_Moskva_cities_Moscow : Ind City ; - -fun Countries_R_provinces_Murmanskayaoblast : Ind Province ; - -fun Countries_R_provinces_Murmanskayaoblast_cities_Murmansk : Ind City ; - -fun Countries_R_provinces_Nizhegorodskayaoblast : Ind Province ; - -fun Countries_R_provinces_Nizhegorodskayaoblast_cities_Arzamas : Ind City ; - -fun Countries_R_provinces_Nizhegorodskayaoblast_cities_Dzerzhinsk : Ind City ; - -fun Countries_R_provinces_Nizhegorodskayaoblast_cities_NizhniyNovgorod : Ind City ; - -fun Countries_R_provinces_Novgorodskayaoblast : Ind Province ; - -fun Countries_R_provinces_Novgorodskayaoblast_cities_Novgorod : Ind City ; - -fun Countries_R_provinces_Novosibirskayaoblast : Ind Province ; - -fun Countries_R_provinces_Novosibirskayaoblast_cities_Novosibirsk : Ind City ; - -fun Countries_R_provinces_Omskayaoblast : Ind Province ; - -fun Countries_R_provinces_Omskayaoblast_cities_Omsk : Ind City ; - -fun Countries_R_provinces_Orenburgskayaoblast : Ind Province ; - -fun Countries_R_provinces_Orenburgskayaoblast_cities_Novotroitsk : Ind City ; - -fun Countries_R_provinces_Orenburgskayaoblast_cities_Orenburg : Ind City ; - -fun Countries_R_provinces_Orenburgskayaoblast_cities_Orsk : Ind City ; - -fun Countries_R_provinces_Orlovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Orlovskayaoblast_cities_Orel : Ind City ; - -fun Countries_R_provinces_Penzenskayaoblast : Ind Province ; - -fun Countries_R_provinces_Penzenskayaoblast_cities_Kuznetsk : Ind City ; - -fun Countries_R_provinces_Penzenskayaoblast_cities_Penza : Ind City ; - -fun Countries_R_provinces_Permskayaoblast : Ind Province ; - -fun Countries_R_provinces_Permskayaoblast_cities_Berezniki : Ind City ; - -fun Countries_R_provinces_Permskayaoblast_cities_Perm : Ind City ; - -fun Countries_R_provinces_Permskayaoblast_cities_Solikamsk : Ind City ; - -fun Countries_R_provinces_Primorskykray : Ind Province ; - -fun Countries_R_provinces_Primorskykray_cities_Nakhodka : Ind City ; - -fun Countries_R_provinces_Primorskykray_cities_Ussuriysk : Ind City ; - -fun Countries_R_provinces_Primorskykray_cities_Vladivostok : Ind City ; - -fun Countries_R_provinces_Pskovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Pskovskayaoblast_cities_Pskov : Ind City ; - -fun Countries_R_provinces_Pskovskayaoblast_cities_VelikiyeLuki : Ind City ; - -fun Countries_R_provinces_Rep_ofAdygeya : Ind Province ; - -fun Countries_R_provinces_Rep_ofAdygeya_cities_Maykop : Ind City ; - -fun Countries_R_provinces_Rep_ofAltay : Ind Province ; - -fun Countries_R_provinces_Rep_ofAltay_cities_GornoAltaysk : Ind City ; - -fun Countries_R_provinces_Rep_ofBashkortostan : Ind Province ; - -fun Countries_R_provinces_Rep_ofBashkortostan_cities_Oktyabrsky : Ind City ; - -fun Countries_R_provinces_Rep_ofBashkortostan_cities_Salavat : Ind City ; - -fun Countries_R_provinces_Rep_ofBashkortostan_cities_Sterlitamak : Ind City ; - -fun Countries_R_provinces_Rep_ofBashkortostan_cities_Ufa : Ind City ; - -fun Countries_R_provinces_Rep_ofBuryatiya : Ind Province ; - -fun Countries_R_provinces_Rep_ofBuryatiya_cities_UlanUde : Ind City ; - -fun Countries_R_provinces_Rep_ofDagestan : Ind Province ; - -fun Countries_R_provinces_Rep_ofDagestan_cities_Makhachkala : Ind City ; - -fun Countries_R_provinces_Rep_ofIngushetiya : Ind Province ; - -fun Countries_R_provinces_Rep_ofIngushetiya_cities_Nazran : Ind City ; - -fun Countries_R_provinces_Rep_ofKalmykiya : Ind Province ; - -fun Countries_R_provinces_Rep_ofKalmykiya_cities_Elista : Ind City ; - -fun Countries_R_provinces_Rep_ofKarelia : Ind Province ; - -fun Countries_R_provinces_Rep_ofKarelia_cities_Petrozavodsk : Ind City ; - -fun Countries_R_provinces_Rep_ofKhakassiya : Ind Province ; - -fun Countries_R_provinces_Rep_ofKhakassiya_cities_Abakan : Ind City ; - -fun Countries_R_provinces_Rep_ofKomi : Ind Province ; - -fun Countries_R_provinces_Rep_ofKomi_cities_Syktyvkar : Ind City ; - -fun Countries_R_provinces_Rep_ofKomi_cities_Ukhta : Ind City ; - -fun Countries_R_provinces_Rep_ofKomi_cities_Vorkuta : Ind City ; - -fun Countries_R_provinces_Rep_ofMariyEl : Ind Province ; - -fun Countries_R_provinces_Rep_ofMariyEl_cities_YoshkarOla : Ind City ; - -fun Countries_R_provinces_Rep_ofMordovia : Ind Province ; - -fun Countries_R_provinces_Rep_ofMordovia_cities_Saransk : Ind City ; - -fun Countries_R_provinces_Rep_ofNorthOssetiya : Ind Province ; - -fun Countries_R_provinces_Rep_ofNorthOssetiya_cities_Vladikavkaz : Ind City ; - -fun Countries_R_provinces_Rep_ofSakha : Ind Province ; - -fun Countries_R_provinces_Rep_ofSakha_cities_Yakutsk : Ind City ; - -fun Countries_R_provinces_Rep_ofTatarstan : Ind Province ; - -fun Countries_R_provinces_Rep_ofTatarstan_cities_Almetyevsk : Ind City ; - -fun Countries_R_provinces_Rep_ofTatarstan_cities_Kazan : Ind City ; - -fun Countries_R_provinces_Rep_ofTatarstan_cities_NaberezhnyeChelny : Ind City ; - -fun Countries_R_provinces_Rep_ofTatarstan_cities_Nizhnekamsk : Ind City ; - -fun Countries_R_provinces_Rep_ofTatarstan_cities_Zelenodolysk : Ind City ; - -fun Countries_R_provinces_Rep_ofTyva : Ind Province ; - -fun Countries_R_provinces_Rep_ofTyva_cities_Kyzyl : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_Novocherkassk : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_Novoshakhtinsk : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_RostovnaDonu : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_RostovnoDonu : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_Shakhty : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_Taganrog : Ind City ; - -fun Countries_R_provinces_Rostovskayaoblast_cities_Volgodonsk : Ind City ; - -fun Countries_R_provinces_Ryazanskayaoblast : Ind Province ; - -fun Countries_R_provinces_Ryazanskayaoblast_cities_Ryazan : Ind City ; - -fun Countries_R_provinces_Sakhalinskayaoblast : Ind Province ; - -fun Countries_R_provinces_Sakhalinskayaoblast_cities_YuzhnoSakhalinsk : Ind City ; - -fun Countries_R_provinces_Samarskayaoblast : Ind Province ; - -fun Countries_R_provinces_Samarskayaoblast_cities_Novokuybyshevsk : Ind City ; - -fun Countries_R_provinces_Samarskayaoblast_cities_Samara : Ind City ; - -fun Countries_R_provinces_Samarskayaoblast_cities_Syzran : Ind City ; - -fun Countries_R_provinces_Samarskayaoblast_cities_Tolyatti : Ind City ; - -fun Countries_R_provinces_SanktPeterburg : Ind Province ; - -fun Countries_R_provinces_SanktPeterburg_cities_SanktPeterburg : Ind City ; - -fun Countries_R_provinces_Saratovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Saratovskayaoblast_cities_Balakovo : Ind City ; - -fun Countries_R_provinces_Saratovskayaoblast_cities_Engels : Ind City ; - -fun Countries_R_provinces_Saratovskayaoblast_cities_Saratov : Ind City ; - -fun Countries_R_provinces_Smolenskayaoblast : Ind Province ; - -fun Countries_R_provinces_Smolenskayaoblast_cities_Smolensk : Ind City ; - -fun Countries_R_provinces_Stavropolskykray : Ind Province ; - -fun Countries_R_provinces_Stavropolskykray_cities_Kislovodsk : Ind City ; - -fun Countries_R_provinces_Stavropolskykray_cities_Neftekamsk : Ind City ; - -fun Countries_R_provinces_Stavropolskykray_cities_Nevinnomyssk : Ind City ; - -fun Countries_R_provinces_Stavropolskykray_cities_Pyatigorsk : Ind City ; - -fun Countries_R_provinces_Stavropolskykray_cities_Stavropol : Ind City ; - -fun Countries_R_provinces_Sverdlovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Sverdlovskayaoblast_cities_KamenskUralskiy : Ind City ; - -fun Countries_R_provinces_Sverdlovskayaoblast_cities_NizhniyTagil : Ind City ; - -fun Countries_R_provinces_Sverdlovskayaoblast_cities_Pervouralsk : Ind City ; - -fun Countries_R_provinces_Sverdlovskayaoblast_cities_Serov : Ind City ; - -fun Countries_R_provinces_Sverdlovskayaoblast_cities_Yekaterinburg : Ind City ; - -fun Countries_R_provinces_Tambovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Tambovskayaoblast_cities_Michurinsk : Ind City ; - -fun Countries_R_provinces_Tambovskayaoblast_cities_Tambov : Ind City ; - -fun Countries_R_provinces_Tomskayaoblast : Ind Province ; - -fun Countries_R_provinces_Tomskayaoblast_cities_Tomsk : Ind City ; - -fun Countries_R_provinces_Tulskayaoblast : Ind Province ; - -fun Countries_R_provinces_Tulskayaoblast_cities_Novomoskovsk : Ind City ; - -fun Countries_R_provinces_Tulskayaoblast_cities_Tula : Ind City ; - -fun Countries_R_provinces_Tverskayaoblast : Ind Province ; - -fun Countries_R_provinces_Tverskayaoblast_cities_Tver : Ind City ; - -fun Countries_R_provinces_Tyumenskayaoblast : Ind Province ; - -fun Countries_R_provinces_Tyumenskayaoblast_cities_Nizhnevartovsk : Ind City ; - -fun Countries_R_provinces_Tyumenskayaoblast_cities_Surgut : Ind City ; - -fun Countries_R_provinces_Tyumenskayaoblast_cities_Tyumen : Ind City ; - -fun Countries_R_provinces_UdmurtRepublic : Ind Province ; - -fun Countries_R_provinces_UdmurtRepublic_cities_Glazov : Ind City ; - -fun Countries_R_provinces_UdmurtRepublic_cities_Izhevsk : Ind City ; - -fun Countries_R_provinces_UdmurtRepublic_cities_Sarapul : Ind City ; - -fun Countries_R_provinces_UdmurtRepublic_cities_Votkinsk : Ind City ; - -fun Countries_R_provinces_Ulyanovskayaoblast : Ind Province ; - -fun Countries_R_provinces_Ulyanovskayaoblast_cities_Dimitrovgrad : Ind City ; - -fun Countries_R_provinces_Ulyanovskayaoblast_cities_Simbirsk : Ind City ; - -fun Countries_R_provinces_Vladimirskayaoblast : Ind Province ; - -fun Countries_R_provinces_Vladimirskayaoblast_cities_Kovrov : Ind City ; - -fun Countries_R_provinces_Vladimirskayaoblast_cities_Murom : Ind City ; - -fun Countries_R_provinces_Vladimirskayaoblast_cities_Vladimir : Ind City ; - -fun Countries_R_provinces_Volgogradskayaoblast : Ind Province ; - -fun Countries_R_provinces_Volgogradskayaoblast_cities_Kamyshin : Ind City ; - -fun Countries_R_provinces_Volgogradskayaoblast_cities_Volgograd : Ind City ; - -fun Countries_R_provinces_Volgogradskayaoblast_cities_Volzhsky : Ind City ; - -fun Countries_R_provinces_Vologodskayaoblast : Ind Province ; - -fun Countries_R_provinces_Vologodskayaoblast_cities_Cherepovets : Ind City ; - -fun Countries_R_provinces_Vologodskayaoblast_cities_Vologda : Ind City ; - -fun Countries_R_provinces_Voronezhskayaoblast : Ind Province ; - -fun Countries_R_provinces_Voronezhskayaoblast_cities_Voronezh : Ind City ; - -fun Countries_R_provinces_Yaroslavskayaoblast : Ind Province ; - -fun Countries_R_provinces_Yaroslavskayaoblast_cities_Rybinsk : Ind City ; - -fun Countries_R_provinces_Yaroslavskayaoblast_cities_Yaroslavl : Ind City ; - -fun Countries_R_provinces_Yevreyskayaavt_oblast : Ind Province ; - -fun Countries_R_provinces_Yevreyskayaavt_oblast_cities_Birobidzhan : Ind City ; - -fun Countries_SA_cities_Jeddah : Ind City ; - -fun Countries_SA_cities_Riyadh : Ind City ; - -fun Countries_SD_cities_Mbabane : Ind City ; - -fun Countries_SF_provinces_Aland : Ind Province ; - -fun Countries_SF_provinces_Aland_cities_Mariehamn : Ind City ; - -fun Countries_SF_provinces_Haeme : Ind Province ; - -fun Countries_SF_provinces_Haeme_cities_Haemeenlinna : Ind City ; - -fun Countries_SF_provinces_Haeme_cities_Lahti : Ind City ; - -fun Countries_SF_provinces_Haeme_cities_Tampere : Ind City ; - -fun Countries_SF_provinces_Kuopio : Ind Province ; - -fun Countries_SF_provinces_Kuopio_cities_Kuopio : Ind City ; - -fun Countries_SF_provinces_Kymi : Ind Province ; - -fun Countries_SF_provinces_Kymi_cities_Kotka : Ind City ; - -fun Countries_SF_provinces_Kymi_cities_Lappeenrenta : Ind City ; - -fun Countries_SF_provinces_Lappia : Ind Province ; - -fun Countries_SF_provinces_Lappia_cities_Rovaniemi : Ind City ; - -fun Countries_SF_provinces_Mikkeli : Ind Province ; - -fun Countries_SF_provinces_Mikkeli_cities_Mikkeli : Ind City ; - -fun Countries_SF_provinces_Oulu : Ind Province ; - -fun Countries_SF_provinces_Oulu_cities_Oulu : Ind City ; - -fun Countries_SF_provinces_Pohjols_Karjala : Ind Province ; - -fun Countries_SF_provinces_Pohjols_Karjala_cities_Joensuu : Ind City ; - -fun Countries_SF_provinces_Suomi : Ind Province ; - -fun Countries_SF_provinces_Suomi_cities_Jyvaeskylae : Ind City ; - -fun Countries_SF_provinces_Turku_Pori : Ind Province ; - -fun Countries_SF_provinces_Turku_Pori_cities_Pori : Ind City ; - -fun Countries_SF_provinces_Turku_Pori_cities_Turku : Ind City ; - -fun Countries_SF_provinces_Uusimaa : Ind Province ; - -fun Countries_SF_provinces_Uusimaa_cities_Espoo : Ind City ; - -fun Countries_SF_provinces_Uusimaa_cities_Helsinki : Ind City ; - -fun Countries_SF_provinces_Vaasa : Ind Province ; - -fun Countries_SF_provinces_Vaasa_cities_Vaasa : Ind City ; - -fun Countries_SGP_cities_Singapore : Ind City ; - -fun Countries_SK_cities_Bratislava : Ind City ; - -fun Countries_SLB_cities_Honiara : Ind City ; - -fun Countries_SLO_cities_Ljubljana : Ind City ; - -fun Countries_SME_cities_Paramaribo : Ind City ; - -fun Countries_SN_provinces_Dakar : Ind Province ; - -fun Countries_SN_provinces_Dakar_cities_Dakar : Ind City ; - -fun Countries_SN_provinces_Diourbel : Ind Province ; - -fun Countries_SN_provinces_Diourbel_cities_Diourbel : Ind City ; - -fun Countries_SN_provinces_Fatick : Ind Province ; - -fun Countries_SN_provinces_Fatick_cities_Fatick : Ind City ; - -fun Countries_SN_provinces_Kaolack : Ind Province ; - -fun Countries_SN_provinces_Kaolack_cities_Kaolack : Ind City ; - -fun Countries_SN_provinces_Kolda : Ind Province ; - -fun Countries_SN_provinces_Kolda_cities_Kolda : Ind City ; - -fun Countries_SN_provinces_Louga : Ind Province ; - -fun Countries_SN_provinces_Louga_cities_Louga : Ind City ; - -fun Countries_SN_provinces_SaintLouis : Ind Province ; - -fun Countries_SN_provinces_SaintLouis_cities_SaintLouis : Ind City ; - -fun Countries_SN_provinces_Tambacounda : Ind Province ; - -fun Countries_SN_provinces_Tambacounda_cities_Tambacounda : Ind City ; - -fun Countries_SN_provinces_Thies : Ind Province ; - -fun Countries_SN_provinces_Thies_cities_Thies : Ind City ; - -fun Countries_SN_provinces_Ziguinchor : Ind Province ; - -fun Countries_SN_provinces_Ziguinchor_cities_Ziguinchor : Ind City ; - -fun Countries_SP_cities_Mogadishu : Ind City ; - -fun Countries_STP_cities_SaoTome : Ind City ; - -fun Countries_SUD_provinces_AalianNil : Ind Province ; - -fun Countries_SUD_provinces_AalianNil_cities_Malakal : Ind City ; - -fun Countries_SUD_provinces_BahralGhazal : Ind Province ; - -fun Countries_SUD_provinces_BahralGhazal_cities_Waw : Ind City ; - -fun Countries_SUD_provinces_Darfur : Ind Province ; - -fun Countries_SUD_provinces_Darfur_cities_Nyala : Ind City ; - -fun Countries_SUD_provinces_Darfur_cities_alFasher : Ind City ; - -fun Countries_SUD_provinces_Kurdufan : Ind Province ; - -fun Countries_SUD_provinces_Kurdufan_cities_alUbayyid : Ind City ; - -fun Countries_SUD_provinces_alIstiwaiyah : Ind Province ; - -fun Countries_SUD_provinces_alIstiwaiyah_cities_Juba : Ind City ; - -fun Countries_SUD_provinces_alKhartum : Ind Province ; - -fun Countries_SUD_provinces_alKhartum_cities_Khartoum : Ind City ; - -fun Countries_SUD_provinces_alKhartum_cities_KhartoumNorth : Ind City ; - -fun Countries_SUD_provinces_alKhartum_cities_Omdurman : Ind City ; - -fun Countries_SUD_provinces_alWusta : Ind Province ; - -fun Countries_SUD_provinces_alWusta_cities_WadMadani : Ind City ; - -fun Countries_SUD_provinces_ashShamaliyah : Ind Province ; - -fun Countries_SUD_provinces_ashShamaliyah_cities_adDamir : Ind City ; - -fun Countries_SUD_provinces_ashSharqiyah : Ind Province ; - -fun Countries_SUD_provinces_ashSharqiyah_cities_Kassala : Ind City ; - -fun Countries_SUD_provinces_ashSharqiyah_cities_PortSudan : Ind City ; - -fun Countries_SUD_provinces_ashSharqiyah_cities_alQadarif : Ind City ; - -fun Countries_SYR_cities_Aleppo : Ind City ; - -fun Countries_SYR_cities_Damascus : Ind City ; - -fun Countries_SYR_cities_Homs : Ind City ; - -fun Countries_SY_cities_Victoria : Ind City ; - -fun Countries_S_provinces_Alvsborg : Ind Province ; - -fun Countries_S_provinces_Alvsborg_cities_Vanersborg : Ind City ; - -fun Countries_S_provinces_Blekinge : Ind Province ; - -fun Countries_S_provinces_Blekinge_cities_Karlskrona : Ind City ; - -fun Countries_S_provinces_Gavleborg : Ind Province ; - -fun Countries_S_provinces_Gavleborg_cities_Gavle : Ind City ; - -fun Countries_S_provinces_GoteborgochBohus : Ind Province ; - -fun Countries_S_provinces_GoteborgochBohus_cities_Goteborg : Ind City ; - -fun Countries_S_provinces_Gotland : Ind Province ; - -fun Countries_S_provinces_Gotland_cities_Visby : Ind City ; - -fun Countries_S_provinces_Halland : Ind Province ; - -fun Countries_S_provinces_Halland_cities_Halmstad : Ind City ; - -fun Countries_S_provinces_Jamtland : Ind Province ; - -fun Countries_S_provinces_Jamtland_cities_Ostersund : Ind City ; - -fun Countries_S_provinces_Jonkoping : Ind Province ; - -fun Countries_S_provinces_Jonkoping_cities_Jonkoping : Ind City ; - -fun Countries_S_provinces_Kalmar : Ind Province ; - -fun Countries_S_provinces_Kalmar_cities_Kalmar : Ind City ; - -fun Countries_S_provinces_Kopparberg : Ind Province ; - -fun Countries_S_provinces_Kopparberg_cities_Falun : Ind City ; - -fun Countries_S_provinces_Kristianstad : Ind Province ; - -fun Countries_S_provinces_Kristianstad_cities_Kristianstad : Ind City ; - -fun Countries_S_provinces_Kronoberg : Ind Province ; - -fun Countries_S_provinces_Kronoberg_cities_Vaxjo : Ind City ; - -fun Countries_S_provinces_Malmohus : Ind Province ; - -fun Countries_S_provinces_Malmohus_cities_Helsingborg : Ind City ; - -fun Countries_S_provinces_Malmohus_cities_Malmo : Ind City ; - -fun Countries_S_provinces_Norrbotten : Ind Province ; - -fun Countries_S_provinces_Norrbotten_cities_Jokkmokk : Ind City ; - -fun Countries_S_provinces_Norrbotten_cities_Lulea : Ind City ; - -fun Countries_S_provinces_Orebro : Ind Province ; - -fun Countries_S_provinces_Orebro_cities_Orebro : Ind City ; - -fun Countries_S_provinces_Ostergotland : Ind Province ; - -fun Countries_S_provinces_Ostergotland_cities_Linkoping : Ind City ; - -fun Countries_S_provinces_Ostergotland_cities_Norrkoping : Ind City ; - -fun Countries_S_provinces_Skaraborg : Ind Province ; - -fun Countries_S_provinces_Skaraborg_cities_Mariestad : Ind City ; - -fun Countries_S_provinces_Sodermanland : Ind Province ; - -fun Countries_S_provinces_Sodermanland_cities_Nykoping : Ind City ; - -fun Countries_S_provinces_Stockholm : Ind Province ; - -fun Countries_S_provinces_Stockholm_cities_Stockholm : Ind City ; - -fun Countries_S_provinces_Uppsala : Ind Province ; - -fun Countries_S_provinces_Uppsala_cities_Uppsala : Ind City ; - -fun Countries_S_provinces_Varmland : Ind Province ; - -fun Countries_S_provinces_Varmland_cities_Karlstad : Ind City ; - -fun Countries_S_provinces_Vasterbotten : Ind Province ; - -fun Countries_S_provinces_Vasterbotten_cities_Umea : Ind City ; - -fun Countries_S_provinces_Vasternorrland : Ind Province ; - -fun Countries_S_provinces_Vasternorrland_cities_Harnosand : Ind City ; - -fun Countries_S_provinces_Vastmanland : Ind Province ; - -fun Countries_S_provinces_Vastmanland_cities_Vasteras : Ind City ; - -fun Countries_TAD_provinces_BadakhshoniKuni : Ind Province ; - -fun Countries_TAD_provinces_BadakhshoniKuni_cities_Khorugh : Ind City ; - -fun Countries_TAD_provinces_Dushanbe_munic : Ind Province ; - -fun Countries_TAD_provinces_Dushanbe_munic_cities_Dushanbe : Ind City ; - -fun Countries_TAD_provinces_Khatlon : Ind Province ; - -fun Countries_TAD_provinces_Khatlon_cities_Qurghonteppa : Ind City ; - -fun Countries_TAD_provinces_Kulob : Ind Province ; - -fun Countries_TAD_provinces_Kulob_cities_Kulob : Ind City ; - -fun Countries_TAD_provinces_Leninobod : Ind Province ; - -fun Countries_TAD_provinces_Leninobod_cities_Khujand : Ind City ; - -fun Countries_TCH_cities_NDjamena : Ind City ; - -fun Countries_THA_provinces_AmnatCharoen : Ind Province ; - -fun Countries_THA_provinces_AngThong : Ind Province ; - -fun Countries_THA_provinces_BangkokMetropolis : Ind Province ; - -fun Countries_THA_provinces_BangkokMetropolis_cities_Bangkok : Ind City ; - -fun Countries_THA_provinces_BuriRam : Ind Province ; - -fun Countries_THA_provinces_CentralRegion : Ind Province ; - -fun Countries_THA_provinces_Chachoengsao : Ind Province ; - -fun Countries_THA_provinces_ChaiNat : Ind Province ; - -fun Countries_THA_provinces_Chaiyaphum : Ind Province ; - -fun Countries_THA_provinces_Chanthaburi : Ind Province ; - -fun Countries_THA_provinces_ChiangMai : Ind Province ; - -fun Countries_THA_provinces_ChiangMai_cities_ChiangMai : Ind City ; - -fun Countries_THA_provinces_ChiangRai : Ind Province ; - -fun Countries_THA_provinces_ChonBuri : Ind Province ; - -fun Countries_THA_provinces_Chumphon : Ind Province ; - -fun Countries_THA_provinces_Kalasin : Ind Province ; - -fun Countries_THA_provinces_KamphaengPhet : Ind Province ; - -fun Countries_THA_provinces_Kanchanaburi : Ind Province ; - -fun Countries_THA_provinces_KhonKaen : Ind Province ; - -fun Countries_THA_provinces_KhonKaen_cities_KhonKaen : Ind City ; - -fun Countries_THA_provinces_Krabi : Ind Province ; - -fun Countries_THA_provinces_Lampang : Ind Province ; - -fun Countries_THA_provinces_Lamphun : Ind Province ; - -fun Countries_THA_provinces_Loei : Ind Province ; - -fun Countries_THA_provinces_LopBuri : Ind Province ; - -fun Countries_THA_provinces_MaeHongSon : Ind Province ; - -fun Countries_THA_provinces_MahaSarakham : Ind Province ; - -fun Countries_THA_provinces_Mukdahan : Ind Province ; - -fun Countries_THA_provinces_NakhonNayok : Ind Province ; - -fun Countries_THA_provinces_NakhonPathom : Ind Province ; - -fun Countries_THA_provinces_NakhonPhanom : Ind Province ; - -fun Countries_THA_provinces_NakhonRatchasima : Ind Province ; - -fun Countries_THA_provinces_NakhonRatchasima_cities_NakhonRatchasima : Ind City ; - -fun Countries_THA_provinces_NakhonSawan : Ind Province ; - -fun Countries_THA_provinces_NakhonSawan_cities_NakhonSawan : Ind City ; - -fun Countries_THA_provinces_NakhonSiThammarat : Ind Province ; - -fun Countries_THA_provinces_NakhonSiThammarat_cities_NakhonsiThammarat : Ind City ; - -fun Countries_THA_provinces_Nan : Ind Province ; - -fun Countries_THA_provinces_Narathiwat : Ind Province ; - -fun Countries_THA_provinces_NongBuaLamPhu : Ind Province ; - -fun Countries_THA_provinces_NongKhai : Ind Province ; - -fun Countries_THA_provinces_Nonthaburi : Ind Province ; - -fun Countries_THA_provinces_Nonthaburi_cities_Nonthaburi : Ind City ; - -fun Countries_THA_provinces_NortheasternRegion : Ind Province ; - -fun Countries_THA_provinces_NorthernRegion : Ind Province ; - -fun Countries_THA_provinces_PathumThani : Ind Province ; - -fun Countries_THA_provinces_Pattani : Ind Province ; - -fun Countries_THA_provinces_Petchanbun : Ind Province ; - -fun Countries_THA_provinces_Phangnga : Ind Province ; - -fun Countries_THA_provinces_Phatthalung : Ind Province ; - -fun Countries_THA_provinces_Phayao : Ind Province ; - -fun Countries_THA_provinces_Phetchaburi : Ind Province ; - -fun Countries_THA_provinces_Phichit : Ind Province ; - -fun Countries_THA_provinces_Phitsanulok : Ind Province ; - -fun Countries_THA_provinces_PhraNakhonSiAyutthaya : Ind Province ; - -fun Countries_THA_provinces_Phrae : Ind Province ; - -fun Countries_THA_provinces_Phuket : Ind Province ; - -fun Countries_THA_provinces_PrachinBuri : Ind Province ; - -fun Countries_THA_provinces_PrachuapKhiriKhan : Ind Province ; - -fun Countries_THA_provinces_Ranong : Ind Province ; - -fun Countries_THA_provinces_Ratchaburi : Ind Province ; - -fun Countries_THA_provinces_Rayong : Ind Province ; - -fun Countries_THA_provinces_RoiEt : Ind Province ; - -fun Countries_THA_provinces_SaKaeo : Ind Province ; - -fun Countries_THA_provinces_SakonNakhon : Ind Province ; - -fun Countries_THA_provinces_SamutPrakan : Ind Province ; - -fun Countries_THA_provinces_SamutSakhon : Ind Province ; - -fun Countries_THA_provinces_SamutSongkhram : Ind Province ; - -fun Countries_THA_provinces_Saraburi : Ind Province ; - -fun Countries_THA_provinces_Saraburi_cities_Saraburi : Ind City ; - -fun Countries_THA_provinces_Satun : Ind Province ; - -fun Countries_THA_provinces_SiSaKet : Ind Province ; - -fun Countries_THA_provinces_SingBuri : Ind Province ; - -fun Countries_THA_provinces_Songkhla : Ind Province ; - -fun Countries_THA_provinces_Songkhla_cities_Songkhla : Ind City ; - -fun Countries_THA_provinces_SouthernRegion : Ind Province ; - -fun Countries_THA_provinces_Sukhothai : Ind Province ; - -fun Countries_THA_provinces_SuphanBuri : Ind Province ; - -fun Countries_THA_provinces_SuratThani : Ind Province ; - -fun Countries_THA_provinces_Surin : Ind Province ; - -fun Countries_THA_provinces_Tak : Ind Province ; - -fun Countries_THA_provinces_Trang : Ind Province ; - -fun Countries_THA_provinces_Trat : Ind Province ; - -fun Countries_THA_provinces_UbonRatchathani : Ind Province ; - -fun Countries_THA_provinces_UbonRatchathani_cities_UbonRatchathani : Ind City ; - -fun Countries_THA_provinces_UdonThani : Ind Province ; - -fun Countries_THA_provinces_UthaiThani : Ind Province ; - -fun Countries_THA_provinces_Uttaradit : Ind Province ; - -fun Countries_THA_provinces_Yala : Ind Province ; - -fun Countries_THA_provinces_Yasothon : Ind Province ; - -fun Countries_TJ_cities_HongKong : Ind City ; - -fun Countries_TJ_cities_Macau : Ind City ; - -fun Countries_TJ_provinces_Anhui : Ind Province ; - -fun Countries_TJ_provinces_Anhui_cities_Anqing : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Bengbu : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Chaoxian : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Chuxian : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Fuyang : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Hefei : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Huaibei : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Huainan : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Luan : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Maanshan : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Suzhou : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Tongling : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Wuhu : Ind City ; - -fun Countries_TJ_provinces_Anhui_cities_Xuancheng : Ind City ; - -fun Countries_TJ_provinces_Beijing_munic : Ind Province ; - -fun Countries_TJ_provinces_Beijing_munic_cities_Beijing : Ind City ; - -fun Countries_TJ_provinces_Fujian : Ind Province ; - -fun Countries_TJ_provinces_Fujian_cities_Fuzhou : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Longyan : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Nanping : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Quanzhou : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Sanming : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Xiamen : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Yongan : Ind City ; - -fun Countries_TJ_provinces_Fujian_cities_Zhangzhou : Ind City ; - -fun Countries_TJ_provinces_Gansu : Ind Province ; - -fun Countries_TJ_provinces_Gansu_cities_Baiyin : Ind City ; - -fun Countries_TJ_provinces_Gansu_cities_Lanzhou : Ind City ; - -fun Countries_TJ_provinces_Gansu_cities_Tianshui : Ind City ; - -fun Countries_TJ_provinces_Gansu_cities_Wuwei : Ind City ; - -fun Countries_TJ_provinces_Gansu_cities_Yumen : Ind City ; - -fun Countries_TJ_provinces_Guangdong : Ind Province ; - -fun Countries_TJ_provinces_Guangdong_cities_Chaozhou : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Dongguan : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Foshan : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Guangzhou : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Heyuan : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Huizhou : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Jiangmen : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Maoming : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Meixian : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Shantou : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Shanwei : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Shaoguan : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Shenzhen : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Yangjiang : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Zhanjiang : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Zhaoqing : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Zhongshan : Ind City ; - -fun Countries_TJ_provinces_Guangdong_cities_Zhuhai : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu : Ind Province ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Beihai : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Guilin : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Guixian : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Liuzhou : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Nanning : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Qinzhou : Ind City ; - -fun Countries_TJ_provinces_GuangxiZhuangzu_cities_Wuzhou : Ind City ; - -fun Countries_TJ_provinces_Guizhou : Ind Province ; - -fun Countries_TJ_provinces_Guizhou_cities_Anshun : Ind City ; - -fun Countries_TJ_provinces_Guizhou_cities_Duyun : Ind City ; - -fun Countries_TJ_provinces_Guizhou_cities_Guiyang : Ind City ; - -fun Countries_TJ_provinces_Guizhou_cities_Kaili : Ind City ; - -fun Countries_TJ_provinces_Guizhou_cities_Liupanshui : Ind City ; - -fun Countries_TJ_provinces_Guizhou_cities_Zunyi : Ind City ; - -fun Countries_TJ_provinces_Hainan : Ind Province ; - -fun Countries_TJ_provinces_Hainan_cities_Haikou : Ind City ; - -fun Countries_TJ_provinces_Hainan_cities_Sanya : Ind City ; - -fun Countries_TJ_provinces_Hebei : Ind Province ; - -fun Countries_TJ_provinces_Hebei_cities_Baoding : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Chengde : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Handan : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Hengshui : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Qinhuangdao : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Quzhou : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Renqiu : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Shijiazhuang : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Tangshan : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Xingtai : Ind City ; - -fun Countries_TJ_provinces_Hebei_cities_Zhangjiakou : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang : Ind Province ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Acheng : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Anda : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Beian : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Daqing : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Fuling : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Harbin : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Hegang : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Jiamusi : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Jixi : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Mishan : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Mudanjiang : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Qiqihar : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Qitaihe : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Shangzhi : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Shuangcheng : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Shuangyashan : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Suihua : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Yichun : Ind City ; - -fun Countries_TJ_provinces_Heilongjiang_cities_Zhaodong : Ind City ; - -fun Countries_TJ_provinces_Henan : Ind Province ; - -fun Countries_TJ_provinces_Henan_cities_Anyang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Hebi : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Jiaozuo : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Kaifeng : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Luohe : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Luoyang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Nanyang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Pingdingshan : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Puyang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Sanmenxia : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Shangqiu : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Xinxiang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Xinyang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Xuchang : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Zhengzhou : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Zhoukou : Ind City ; - -fun Countries_TJ_provinces_Henan_cities_Zhumadian : Ind City ; - -fun Countries_TJ_provinces_Hubei : Ind Province ; - -fun Countries_TJ_provinces_Hubei_cities_Cangzhou : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Echeng : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Guangshui : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Honghu : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Huangshi : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Laohekou : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Puqi : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Shashi : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Shishou : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Shiyan : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Tianmen : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Wuhan : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Xiangfan : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Xianning : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Xiaogan : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Yichang : Ind City ; - -fun Countries_TJ_provinces_Hubei_cities_Zaoyang : Ind City ; - -fun Countries_TJ_provinces_Hunan : Ind Province ; - -fun Countries_TJ_provinces_Hunan_cities_Changde : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Changsha : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Hengyang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Huaihua : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Leiyang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Lengshuijiang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Liling : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Loudi : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Shaoyang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Xiangtan : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Yiyang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Yuanjiang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Yueyang : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Zhuzhou : Ind City ; - -fun Countries_TJ_provinces_Hunan_cities_Zixing : Ind City ; - -fun Countries_TJ_provinces_Jiangsu : Ind Province ; - -fun Countries_TJ_provinces_Jiangsu_cities_Changshu : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Changzhou : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Danyang : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Dongtai : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Huaian : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Huaiyin : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Jiangyin : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Kunshan : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Lianyungang : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Liyang : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Nanjing : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Nantong : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Suqian : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Suzhou : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Taizhou : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Wuxi : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Xinghua : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Xuzhou : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Yancheng : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Yangzhou : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Yixing : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Yizheng : Ind City ; - -fun Countries_TJ_provinces_Jiangsu_cities_Zhenjiang : Ind City ; - -fun Countries_TJ_provinces_Jiangxi : Ind Province ; - -fun Countries_TJ_provinces_Jiangxi_cities_Fuzhou : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Ganzhou : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Jingdezhen : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Jiujiang : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Nanchang : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Pingxiang : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Shangrao : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Xinyu : Ind City ; - -fun Countries_TJ_provinces_Jiangxi_cities_Yichun : Ind City ; - -fun Countries_TJ_provinces_Jilin : Ind Province ; - -fun Countries_TJ_provinces_Jilin_cities_Baicheng : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Changchun : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Daan : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Dunhua : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Fuyu : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Gongzhuling : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Huadian : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Hunjiang : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Jilin : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Jiutai : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Liaoyuan : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Longjing : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Meihekou : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Siping : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Tonghua : Ind City ; - -fun Countries_TJ_provinces_Jilin_cities_Yanji : Ind City ; - -fun Countries_TJ_provinces_Liaoning : Ind Province ; - -fun Countries_TJ_provinces_Liaoning_cities_Anshan : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Beipiao : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Benxi : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Chaoyang : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Dalian : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Dandong : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Fengcheng : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Fushun : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Fuxin : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Haicheng : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Jinxi : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Jinzhou : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Liaoyang : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Panshan : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Shenyang : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Tieling : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Wafangdian : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Xingcheng : Ind City ; - -fun Countries_TJ_provinces_Liaoning_cities_Yingkou : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol : Ind Province ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Baotou : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Chifeng : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Hailar : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Hohhot : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Jining : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Linhe : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Manzhouli : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Tongliao : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Ulanhot : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Wuhai : Ind City ; - -fun Countries_TJ_provinces_NeiMonggol_cities_Yakeshi : Ind City ; - -fun Countries_TJ_provinces_NingxiaHuizu : Ind Province ; - -fun Countries_TJ_provinces_NingxiaHuizu_cities_Shizuishan : Ind City ; - -fun Countries_TJ_provinces_NingxiaHuizu_cities_Yinchuan : Ind City ; - -fun Countries_TJ_provinces_Qinghai : Ind Province ; - -fun Countries_TJ_provinces_Qinghai_cities_Xining : Ind City ; - -fun Countries_TJ_provinces_Qinghai_cities_Yushu : Ind City ; - -fun Countries_TJ_provinces_Shaanxi : Ind Province ; - -fun Countries_TJ_provinces_Shaanxi_cities_Ankang : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Baoji : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Hanzhong : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Tongchuan : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Weinan : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Xi : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Xian : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Xianyang : Ind City ; - -fun Countries_TJ_provinces_Shaanxi_cities_Yanan : Ind City ; - -fun Countries_TJ_provinces_Shandong : Ind Province ; - -fun Countries_TJ_provinces_Shandong_cities_Dezhou : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Dongying : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Heze : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Jiaonan : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Jiaoxian : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Jinan : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Jining : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Laiwu : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Laiyang : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Liancheng : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Liaocheng : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Linqing : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Linyi : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Longkou : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Pingdu : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Qingdao : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Rizhao : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Taian : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Tengxian : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Weifang : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Weihai : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Wendeng : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Xintai : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Yantai : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Zaozhuang : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Zhucheng : Ind City ; - -fun Countries_TJ_provinces_Shandong_cities_Zibo : Ind City ; - -fun Countries_TJ_provinces_Shanghai_munic : Ind Province ; - -fun Countries_TJ_provinces_Shanghai_munic_cities_Shanghai : Ind City ; - -fun Countries_TJ_provinces_Shanxi : Ind Province ; - -fun Countries_TJ_provinces_Shanxi_cities_Changzhi : Ind City ; - -fun Countries_TJ_provinces_Shanxi_cities_Datong : Ind City ; - -fun Countries_TJ_provinces_Shanxi_cities_Jincheng : Ind City ; - -fun Countries_TJ_provinces_Shanxi_cities_Linfen : Ind City ; - -fun Countries_TJ_provinces_Shanxi_cities_Taiyuan : Ind City ; - -fun Countries_TJ_provinces_Shanxi_cities_Yangquan : Ind City ; - -fun Countries_TJ_provinces_Shanxi_cities_Yuci : Ind City ; - -fun Countries_TJ_provinces_Sichuan : Ind Province ; - -fun Countries_TJ_provinces_Sichuan_cities_Chengdu : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Chongqing : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Daxian : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Deyang : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Dukou : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Guangyuan : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Jiangyou : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Leshan : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Luzhou : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Mianyang : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Nanchong : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Neijiang : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Qianjiang : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Wanxian : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Xichang : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Yibin : Ind City ; - -fun Countries_TJ_provinces_Sichuan_cities_Zigong : Ind City ; - -fun Countries_TJ_provinces_Tianjin_munic : Ind Province ; - -fun Countries_TJ_provinces_Tianjin_munic_cities_Tianjin : Ind City ; - -fun Countries_TJ_provinces_Tibet : Ind Province ; - -fun Countries_TJ_provinces_Tibet_cities_Lhasa : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur : Ind Province ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Aksu : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Hami : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Karamay : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Kashi : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Korla : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Shihezi : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Urumqi : Ind City ; - -fun Countries_TJ_provinces_XinjiangUygur_cities_Yining : Ind City ; - -fun Countries_TJ_provinces_Yunnan : Ind Province ; - -fun Countries_TJ_provinces_Yunnan_cities_Gejiu : Ind City ; - -fun Countries_TJ_provinces_Yunnan_cities_Kunming : Ind City ; - -fun Countries_TJ_provinces_Yunnan_cities_Qujing : Ind City ; - -fun Countries_TJ_provinces_Zhejiang : Ind Province ; - -fun Countries_TJ_provinces_Zhejiang_cities_Cixi : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Haining : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Hangzhou : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Huzhou : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Jiaxing : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Jinhua : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Ningbo : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Ruian : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Shaoxing : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Wenzhou : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Xiaoshan : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Yuyao : Ind City ; - -fun Countries_TJ_provinces_Zhejiang_cities_Zhoushan : Ind City ; - -fun Countries_TM_provinces_Ahal : Ind Province ; - -fun Countries_TM_provinces_Ahal_cities_Ashgabat : Ind City ; - -fun Countries_TM_provinces_Balkan : Ind Province ; - -fun Countries_TM_provinces_Balkan_cities_Nebitdag : Ind City ; - -fun Countries_TM_provinces_Dashhowuz : Ind Province ; - -fun Countries_TM_provinces_Dashhowuz_cities_Tashauz : Ind City ; - -fun Countries_TM_provinces_Leban : Ind Province ; - -fun Countries_TM_provinces_Leban_cities_Charjew : Ind City ; - -fun Countries_TM_provinces_Mary : Ind Province ; - -fun Countries_TM_provinces_Mary_cities_Mary : Ind City ; - -fun Countries_TN_cities_Tunis : Ind City ; - -fun Countries_TO_cities_Nukualofa : Ind City ; - -fun Countries_TR_cities_Hatay : Ind City ; - -fun Countries_TR_cities_Icel : Ind City ; - -fun Countries_TR_provinces_Adana : Ind Province ; - -fun Countries_TR_provinces_Adana_cities_Adana : Ind City ; - -fun Countries_TR_provinces_Adana_cities_Osmaniye : Ind City ; - -fun Countries_TR_provinces_Adiyaman : Ind Province ; - -fun Countries_TR_provinces_Adiyaman_cities_Adiyaman : Ind City ; - -fun Countries_TR_provinces_Afyon : Ind Province ; - -fun Countries_TR_provinces_Afyon_cities_Afyon : Ind City ; - -fun Countries_TR_provinces_Agri : Ind Province ; - -fun Countries_TR_provinces_Agri_cities_Agri : Ind City ; - -fun Countries_TR_provinces_Aksaray : Ind Province ; - -fun Countries_TR_provinces_Aksaray_cities_Aksaray : Ind City ; - -fun Countries_TR_provinces_Amasya : Ind Province ; - -fun Countries_TR_provinces_Amasya_cities_Amasya : Ind City ; - -fun Countries_TR_provinces_Ankara : Ind Province ; - -fun Countries_TR_provinces_Ankara_cities_Ankara : Ind City ; - -fun Countries_TR_provinces_Antalya : Ind Province ; - -fun Countries_TR_provinces_Antalya_cities_Antalya : Ind City ; - -fun Countries_TR_provinces_Artvin : Ind Province ; - -fun Countries_TR_provinces_Artvin_cities_Artvin : Ind City ; - -fun Countries_TR_provinces_Aydin : Ind Province ; - -fun Countries_TR_provinces_Aydin_cities_Aydin : Ind City ; - -fun Countries_TR_provinces_Balikesir : Ind Province ; - -fun Countries_TR_provinces_Balikesir_cities_Balikesir : Ind City ; - -fun Countries_TR_provinces_Batman : Ind Province ; - -fun Countries_TR_provinces_Batman_cities_Batman : Ind City ; - -fun Countries_TR_provinces_Bayburt : Ind Province ; - -fun Countries_TR_provinces_Bayburt_cities_Bayburt : Ind City ; - -fun Countries_TR_provinces_Bilecik : Ind Province ; - -fun Countries_TR_provinces_Bilecik_cities_Bilecik : Ind City ; - -fun Countries_TR_provinces_Bingol : Ind Province ; - -fun Countries_TR_provinces_Bingol_cities_Bingol : Ind City ; - -fun Countries_TR_provinces_Bitlis : Ind Province ; - -fun Countries_TR_provinces_Bitlis_cities_Bitlis : Ind City ; - -fun Countries_TR_provinces_Bolu : Ind Province ; - -fun Countries_TR_provinces_Bolu_cities_Bolu : Ind City ; - -fun Countries_TR_provinces_Burdur : Ind Province ; - -fun Countries_TR_provinces_Burdur_cities_Burdur : Ind City ; - -fun Countries_TR_provinces_Bursa : Ind Province ; - -fun Countries_TR_provinces_Bursa_cities_Bursa : Ind City ; - -fun Countries_TR_provinces_Canakkale : Ind Province ; - -fun Countries_TR_provinces_Canakkale_cities_Canakkale : Ind City ; - -fun Countries_TR_provinces_Cankiri : Ind Province ; - -fun Countries_TR_provinces_Cankiri_cities_Cankiri : Ind City ; - -fun Countries_TR_provinces_Corum : Ind Province ; - -fun Countries_TR_provinces_Corum_cities_Corum : Ind City ; - -fun Countries_TR_provinces_Denizli : Ind Province ; - -fun Countries_TR_provinces_Denizli_cities_Denizli : Ind City ; - -fun Countries_TR_provinces_Diyarbakir : Ind Province ; - -fun Countries_TR_provinces_Diyarbakir_cities_Diyarbakir : Ind City ; - -fun Countries_TR_provinces_Edirne : Ind Province ; - -fun Countries_TR_provinces_Edirne_cities_Edirne : Ind City ; - -fun Countries_TR_provinces_Elazig : Ind Province ; - -fun Countries_TR_provinces_Elazig_cities_Elazig : Ind City ; - -fun Countries_TR_provinces_Erzincan : Ind Province ; - -fun Countries_TR_provinces_Erzincan_cities_Erzincan : Ind City ; - -fun Countries_TR_provinces_Erzurum : Ind Province ; - -fun Countries_TR_provinces_Erzurum_cities_Erzurum : Ind City ; - -fun Countries_TR_provinces_Eskisehir : Ind Province ; - -fun Countries_TR_provinces_Eskisehir_cities_Eskisehir : Ind City ; - -fun Countries_TR_provinces_Gaziantep : Ind Province ; - -fun Countries_TR_provinces_Gaziantep_cities_Gaziantep : Ind City ; - -fun Countries_TR_provinces_Giresun : Ind Province ; - -fun Countries_TR_provinces_Giresun_cities_Giresun : Ind City ; - -fun Countries_TR_provinces_Gumushane : Ind Province ; - -fun Countries_TR_provinces_Gumushane_cities_Gumushane : Ind City ; - -fun Countries_TR_provinces_Hakkari : Ind Province ; - -fun Countries_TR_provinces_Hakkari_cities_Hakkari : Ind City ; - -fun Countries_TR_provinces_Hatay : Ind Province ; - -fun Countries_TR_provinces_Hatay_cities_Antakya : Ind City ; - -fun Countries_TR_provinces_Hatay_cities_Iskenderun : Ind City ; - -fun Countries_TR_provinces_Icel : Ind Province ; - -fun Countries_TR_provinces_Icel_cities_Mersin : Ind City ; - -fun Countries_TR_provinces_Icel_cities_Tarsus : Ind City ; - -fun Countries_TR_provinces_Isparta : Ind Province ; - -fun Countries_TR_provinces_Isparta_cities_Isparta : Ind City ; - -fun Countries_TR_provinces_Istanbul : Ind Province ; - -fun Countries_TR_provinces_Istanbul_cities_Istanbul : Ind City ; - -fun Countries_TR_provinces_Izmir : Ind Province ; - -fun Countries_TR_provinces_Izmir_cities_Izmir : Ind City ; - -fun Countries_TR_provinces_Karaman : Ind Province ; - -fun Countries_TR_provinces_Karaman_cities_Karaman : Ind City ; - -fun Countries_TR_provinces_Karamanmaras : Ind Province ; - -fun Countries_TR_provinces_Karamanmaras_cities_KaramanMaras : Ind City ; - -fun Countries_TR_provinces_Kars : Ind Province ; - -fun Countries_TR_provinces_Kars_cities_Kars : Ind City ; - -fun Countries_TR_provinces_Kastamonu : Ind Province ; - -fun Countries_TR_provinces_Kastamonu_cities_Kastamonu : Ind City ; - -fun Countries_TR_provinces_Kayseri : Ind Province ; - -fun Countries_TR_provinces_Kayseri_cities_Kayseri : Ind City ; - -fun Countries_TR_provinces_Kirikkale : Ind Province ; - -fun Countries_TR_provinces_Kirikkale_cities_Kirikkale : Ind City ; - -fun Countries_TR_provinces_Kirklareli : Ind Province ; - -fun Countries_TR_provinces_Kirklareli_cities_Kirklareli : Ind City ; - -fun Countries_TR_provinces_Kirsehir : Ind Province ; - -fun Countries_TR_provinces_Kirsehir_cities_Kirsehir : Ind City ; - -fun Countries_TR_provinces_Kocaeli : Ind Province ; - -fun Countries_TR_provinces_Kocaeli_cities_Adapazari : Ind City ; - -fun Countries_TR_provinces_Kocaeli_cities_Gebze : Ind City ; - -fun Countries_TR_provinces_Kocaeli_cities_Izmit : Ind City ; - -fun Countries_TR_provinces_Kocaeli_cities_Kocaeli : Ind City ; - -fun Countries_TR_provinces_Konya : Ind Province ; - -fun Countries_TR_provinces_Konya_cities_Konya : Ind City ; - -fun Countries_TR_provinces_Kutahya : Ind Province ; - -fun Countries_TR_provinces_Kutahya_cities_Kutahya : Ind City ; - -fun Countries_TR_provinces_Malatya : Ind Province ; - -fun Countries_TR_provinces_Malatya_cities_Malatya : Ind City ; - -fun Countries_TR_provinces_Manisa : Ind Province ; - -fun Countries_TR_provinces_Manisa_cities_Manisa : Ind City ; - -fun Countries_TR_provinces_Mardin : Ind Province ; - -fun Countries_TR_provinces_Mardin_cities_Mardin : Ind City ; - -fun Countries_TR_provinces_Mugla : Ind Province ; - -fun Countries_TR_provinces_Mugla_cities_Mugla : Ind City ; - -fun Countries_TR_provinces_Mus : Ind Province ; - -fun Countries_TR_provinces_Mus_cities_Mus : Ind City ; - -fun Countries_TR_provinces_Nevsehir : Ind Province ; - -fun Countries_TR_provinces_Nevsehir_cities_Nevsehir : Ind City ; - -fun Countries_TR_provinces_Nigde : Ind Province ; - -fun Countries_TR_provinces_Nigde_cities_Nigde : Ind City ; - -fun Countries_TR_provinces_Ordu : Ind Province ; - -fun Countries_TR_provinces_Ordu_cities_Ordu : Ind City ; - -fun Countries_TR_provinces_Rize : Ind Province ; - -fun Countries_TR_provinces_Rize_cities_Rize : Ind City ; - -fun Countries_TR_provinces_Sakarya : Ind Province ; - -fun Countries_TR_provinces_Sakarya_cities_Sakarya : Ind City ; - -fun Countries_TR_provinces_Samsun : Ind Province ; - -fun Countries_TR_provinces_Samsun_cities_Samsun : Ind City ; - -fun Countries_TR_provinces_Sanliurfa : Ind Province ; - -fun Countries_TR_provinces_Sanliurfa_cities_Urfa : Ind City ; - -fun Countries_TR_provinces_Siirt : Ind Province ; - -fun Countries_TR_provinces_Siirt_cities_Siirt : Ind City ; - -fun Countries_TR_provinces_Sinop : Ind Province ; - -fun Countries_TR_provinces_Sinop_cities_Sinop : Ind City ; - -fun Countries_TR_provinces_Sirnak : Ind Province ; - -fun Countries_TR_provinces_Sirnak_cities_Sirnak : Ind City ; - -fun Countries_TR_provinces_Sivas : Ind Province ; - -fun Countries_TR_provinces_Sivas_cities_Sivas : Ind City ; - -fun Countries_TR_provinces_Tekirdag : Ind Province ; - -fun Countries_TR_provinces_Tekirdag_cities_Tekirdag : Ind City ; - -fun Countries_TR_provinces_Tokat : Ind Province ; - -fun Countries_TR_provinces_Tokat_cities_Tokat : Ind City ; - -fun Countries_TR_provinces_Trabzon : Ind Province ; - -fun Countries_TR_provinces_Trabzon_cities_Trabzon : Ind City ; - -fun Countries_TR_provinces_Tunceli : Ind Province ; - -fun Countries_TR_provinces_Tunceli_cities_Tunceli : Ind City ; - -fun Countries_TR_provinces_Usak : Ind Province ; - -fun Countries_TR_provinces_Usak_cities_Usak : Ind City ; - -fun Countries_TR_provinces_Van : Ind Province ; - -fun Countries_TR_provinces_Van_cities_Van : Ind City ; - -fun Countries_TR_provinces_Yozgat : Ind Province ; - -fun Countries_TR_provinces_Yozgat_cities_Yozgat : Ind City ; - -fun Countries_TR_provinces_Zonguldak : Ind Province ; - -fun Countries_TR_provinces_Zonguldak_cities_Karabuk : Ind City ; - -fun Countries_TR_provinces_Zonguldak_cities_Zonguldak : Ind City ; - -fun Countries_TT_cities_Port_of_Spain : Ind City ; - -fun Countries_TUV_cities_Funafuti : Ind City ; - -fun Countries_UAE_cities_AbuDhabi : Ind City ; - -fun Countries_UAE_cities_AlAyn : Ind City ; - -fun Countries_UAE_cities_Dubai : Ind City ; - -fun Countries_UAE_cities_Sharjah : Ind City ; - -fun Countries_UAE_provinces_AbuDhabi : Ind Province ; - -fun Countries_UAE_provinces_Ajman : Ind Province ; - -fun Countries_UAE_provinces_AlFujayrah : Ind Province ; - -fun Countries_UAE_provinces_AshShariqah : Ind Province ; - -fun Countries_UAE_provinces_Dubayy : Ind Province ; - -fun Countries_UAE_provinces_RasalKhaymah : Ind Province ; - -fun Countries_UAE_provinces_UmmalQaywayn : Ind Province ; - -fun Countries_UA_provinces_Cherkaska : Ind Province ; - -fun Countries_UA_provinces_Cherkaska_cities_Cherkasy : Ind City ; - -fun Countries_UA_provinces_Chernihivska : Ind Province ; - -fun Countries_UA_provinces_Chernihivska_cities_Chernihiv : Ind City ; - -fun Countries_UA_provinces_Chernivetska : Ind Province ; - -fun Countries_UA_provinces_Chernivetska_cities_Chernivtsi : Ind City ; - -fun Countries_UA_provinces_Dnipropetrovska : Ind Province ; - -fun Countries_UA_provinces_Dnipropetrovska_cities_Dniprodzerzhynsk : Ind City ; - -fun Countries_UA_provinces_Dnipropetrovska_cities_Dnipropetrovsk : Ind City ; - -fun Countries_UA_provinces_Dnipropetrovska_cities_KryvyyRih : Ind City ; - -fun Countries_UA_provinces_Donetska : Ind Province ; - -fun Countries_UA_provinces_Donetska_cities_Donetsk : Ind City ; - -fun Countries_UA_provinces_Donetska_cities_Horlivka : Ind City ; - -fun Countries_UA_provinces_Donetska_cities_Makiyivka : Ind City ; - -fun Countries_UA_provinces_Donetska_cities_Mariupol : Ind City ; - -fun Countries_UA_provinces_IvanoFrankivska : Ind Province ; - -fun Countries_UA_provinces_IvanoFrankivska_cities_IvanoFrankivsk : Ind City ; - -fun Countries_UA_provinces_Kharkivska : Ind Province ; - -fun Countries_UA_provinces_Kharkivska_cities_Kharkiv : Ind City ; - -fun Countries_UA_provinces_Khersonska : Ind Province ; - -fun Countries_UA_provinces_Khersonska_cities_Kherson : Ind City ; - -fun Countries_UA_provinces_Khmelnytska : Ind Province ; - -fun Countries_UA_provinces_Khmelnytska_cities_Khmelnytskyy : Ind City ; - -fun Countries_UA_provinces_Kirovohradska : Ind Province ; - -fun Countries_UA_provinces_Kirovohradska_cities_Kirovohrad : Ind City ; - -fun Countries_UA_provinces_Krym : Ind Province ; - -fun Countries_UA_provinces_Krym_cities_Sevastopol : Ind City ; - -fun Countries_UA_provinces_Krym_cities_Simferopol : Ind City ; - -fun Countries_UA_provinces_Kyyivska : Ind Province ; - -fun Countries_UA_provinces_Kyyivska_cities_Kiev : Ind City ; - -fun Countries_UA_provinces_Luhanska : Ind Province ; - -fun Countries_UA_provinces_Luhanska_cities_Luhansk : Ind City ; - -fun Countries_UA_provinces_Lvivska : Ind Province ; - -fun Countries_UA_provinces_Lvivska_cities_Lviv : Ind City ; - -fun Countries_UA_provinces_Mykolayivska : Ind Province ; - -fun Countries_UA_provinces_Mykolayivska_cities_Mykolayiv : Ind City ; - -fun Countries_UA_provinces_Odeska : Ind Province ; - -fun Countries_UA_provinces_Odeska_cities_Odesa : Ind City ; - -fun Countries_UA_provinces_Poltavska_cities_Kremenchuk : Ind City ; - -fun Countries_UA_provinces_Poltavska_cities_Poltava : Ind City ; - -fun Countries_UA_provinces_Rivnenska : Ind Province ; - -fun Countries_UA_provinces_Rivnenska_cities_Rivne : Ind City ; - -fun Countries_UA_provinces_Sumska : Ind Province ; - -fun Countries_UA_provinces_Sumska_cities_Sumy : Ind City ; - -fun Countries_UA_provinces_Ternopilska : Ind Province ; - -fun Countries_UA_provinces_Ternopilska_cities_Ternopil : Ind City ; - -fun Countries_UA_provinces_Vinnytska : Ind Province ; - -fun Countries_UA_provinces_Vinnytska_cities_Vinnytsya : Ind City ; - -fun Countries_UA_provinces_Volynska : Ind Province ; - -fun Countries_UA_provinces_Volynska_cities_Lutsk : Ind City ; - -fun Countries_UA_provinces_Zakarpatska : Ind Province ; - -fun Countries_UA_provinces_Zakarpatska_cities_Uzhhorod : Ind City ; - -fun Countries_UA_provinces_Zaporizka : Ind Province ; - -fun Countries_UA_provinces_Zaporizka_cities_Zaporizhzhya : Ind City ; - -fun Countries_UA_provinces_Zhytomyrska : Ind Province ; - -fun Countries_UA_provinces_Zhytomyrska_cities_Zhytomyr : Ind City ; - -fun Countries_USA_provinces_Alabama : Ind Province ; - -fun Countries_USA_provinces_Alabama_cities_Birmingham : Ind City ; - -fun Countries_USA_provinces_Alabama_cities_Huntsville : Ind City ; - -fun Countries_USA_provinces_Alabama_cities_Mobile : Ind City ; - -fun Countries_USA_provinces_Alabama_cities_Montgomery : Ind City ; - -fun Countries_USA_provinces_Alaska : Ind Province ; - -fun Countries_USA_provinces_Alaska_cities_Anchorage : Ind City ; - -fun Countries_USA_provinces_Alaska_cities_Juneau : Ind City ; - -fun Countries_USA_provinces_Arizona : Ind Province ; - -fun Countries_USA_provinces_Arizona_cities_Chandler : Ind City ; - -fun Countries_USA_provinces_Arizona_cities_Glendale : Ind City ; - -fun Countries_USA_provinces_Arizona_cities_Mesa : Ind City ; - -fun Countries_USA_provinces_Arizona_cities_Phoenix : Ind City ; - -fun Countries_USA_provinces_Arizona_cities_Scottsdale : Ind City ; - -fun Countries_USA_provinces_Arizona_cities_Tempe : Ind City ; - -fun Countries_USA_provinces_Arizona_cities_Tucson : Ind City ; - -fun Countries_USA_provinces_Arkansas : Ind Province ; - -fun Countries_USA_provinces_Arkansas_cities_LittleRock : Ind City ; - -fun Countries_USA_provinces_California : Ind Province ; - -fun Countries_USA_provinces_California_cities_Anaheim : Ind City ; - -fun Countries_USA_provinces_California_cities_Bakersfield : Ind City ; - -fun Countries_USA_provinces_California_cities_Berkeley : Ind City ; - -fun Countries_USA_provinces_California_cities_ChulaVista : Ind City ; - -fun Countries_USA_provinces_California_cities_Concord : Ind City ; - -fun Countries_USA_provinces_California_cities_Corona : Ind City ; - -fun Countries_USA_provinces_California_cities_CostaMesa : Ind City ; - -fun Countries_USA_provinces_California_cities_ElMonte : Ind City ; - -fun Countries_USA_provinces_California_cities_Escondido : Ind City ; - -fun Countries_USA_provinces_California_cities_Fontana : Ind City ; - -fun Countries_USA_provinces_California_cities_Fremont : Ind City ; - -fun Countries_USA_provinces_California_cities_Fresno : Ind City ; - -fun Countries_USA_provinces_California_cities_Fullerton : Ind City ; - -fun Countries_USA_provinces_California_cities_GardenGrove : Ind City ; - -fun Countries_USA_provinces_California_cities_Glendale : Ind City ; - -fun Countries_USA_provinces_California_cities_Hayward : Ind City ; - -fun Countries_USA_provinces_California_cities_HuntingtonBeach : Ind City ; - -fun Countries_USA_provinces_California_cities_Inglewood : Ind City ; - -fun Countries_USA_provinces_California_cities_Irvine : Ind City ; - -fun Countries_USA_provinces_California_cities_Lancaster : Ind City ; - -fun Countries_USA_provinces_California_cities_LongBeach : Ind City ; - -fun Countries_USA_provinces_California_cities_LosAngeles : Ind City ; - -fun Countries_USA_provinces_California_cities_Modesto : Ind City ; - -fun Countries_USA_provinces_California_cities_MorenoValley : Ind City ; - -fun Countries_USA_provinces_California_cities_Norwalk : Ind City ; - -fun Countries_USA_provinces_California_cities_Oakland : Ind City ; - -fun Countries_USA_provinces_California_cities_Oceanside : Ind City ; - -fun Countries_USA_provinces_California_cities_Ontario : Ind City ; - -fun Countries_USA_provinces_California_cities_Orange : Ind City ; - -fun Countries_USA_provinces_California_cities_Oxnard : Ind City ; - -fun Countries_USA_provinces_California_cities_Palmdale : Ind City ; - -fun Countries_USA_provinces_California_cities_Pasadena : Ind City ; - -fun Countries_USA_provinces_California_cities_Pomona : Ind City ; - -fun Countries_USA_provinces_California_cities_RanchoCucamonga : Ind City ; - -fun Countries_USA_provinces_California_cities_Riverside : Ind City ; - -fun Countries_USA_provinces_California_cities_Sacramento : Ind City ; - -fun Countries_USA_provinces_California_cities_Salinas : Ind City ; - -fun Countries_USA_provinces_California_cities_SanBernardino : Ind City ; - -fun Countries_USA_provinces_California_cities_SanDiego : Ind City ; - -fun Countries_USA_provinces_California_cities_SanFrancisco : Ind City ; - -fun Countries_USA_provinces_California_cities_SanJose : Ind City ; - -fun Countries_USA_provinces_California_cities_SantaAna : Ind City ; - -fun Countries_USA_provinces_California_cities_SantaClarita : Ind City ; - -fun Countries_USA_provinces_California_cities_SantaRosa : Ind City ; - -fun Countries_USA_provinces_California_cities_SimiValley : Ind City ; - -fun Countries_USA_provinces_California_cities_Stockton : Ind City ; - -fun Countries_USA_provinces_California_cities_Sunnyvale : Ind City ; - -fun Countries_USA_provinces_California_cities_ThousandOaks : Ind City ; - -fun Countries_USA_provinces_California_cities_Torrance : Ind City ; - -fun Countries_USA_provinces_California_cities_Vallejo : Ind City ; - -fun Countries_USA_provinces_California_cities_WestCovina : Ind City ; - -fun Countries_USA_provinces_Colorado : Ind Province ; - -fun Countries_USA_provinces_Colorado_cities_Aurora : Ind City ; - -fun Countries_USA_provinces_Colorado_cities_ColoradoSprings : Ind City ; - -fun Countries_USA_provinces_Colorado_cities_Denver : Ind City ; - -fun Countries_USA_provinces_Colorado_cities_FortCollins : Ind City ; - -fun Countries_USA_provinces_Colorado_cities_Lakewood : Ind City ; - -fun Countries_USA_provinces_Connecticut : Ind Province ; - -fun Countries_USA_provinces_Connecticut_cities_Bridgeport : Ind City ; - -fun Countries_USA_provinces_Connecticut_cities_Hartford : Ind City ; - -fun Countries_USA_provinces_Connecticut_cities_NewHaven : Ind City ; - -fun Countries_USA_provinces_Connecticut_cities_Stamford : Ind City ; - -fun Countries_USA_provinces_Connecticut_cities_Waterbury : Ind City ; - -fun Countries_USA_provinces_Delaware : Ind Province ; - -fun Countries_USA_provinces_Delaware_cities_Dover : Ind City ; - -fun Countries_USA_provinces_Distr_Columbia : Ind Province ; - -fun Countries_USA_provinces_Distr_Columbia_cities_Washington : Ind City ; - -fun Countries_USA_provinces_Florida : Ind Province ; - -fun Countries_USA_provinces_Florida_cities_Clearwater : Ind City ; - -fun Countries_USA_provinces_Florida_cities_CoralSprings : Ind City ; - -fun Countries_USA_provinces_Florida_cities_FortLauderdale : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Hialeah : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Hollywood : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Jacksonville : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Miami : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Orlando : Ind City ; - -fun Countries_USA_provinces_Florida_cities_PembrokePines : Ind City ; - -fun Countries_USA_provinces_Florida_cities_St_Petersburg : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Tallahassee : Ind City ; - -fun Countries_USA_provinces_Florida_cities_Tampa : Ind City ; - -fun Countries_USA_provinces_Georgia : Ind Province ; - -fun Countries_USA_provinces_Georgia_cities_Atlanta : Ind City ; - -fun Countries_USA_provinces_Georgia_cities_Columbus : Ind City ; - -fun Countries_USA_provinces_Georgia_cities_Macon : Ind City ; - -fun Countries_USA_provinces_Georgia_cities_Savannah : Ind City ; - -fun Countries_USA_provinces_Hawaii : Ind Province ; - -fun Countries_USA_provinces_Hawaii_cities_Hilo : Ind City ; - -fun Countries_USA_provinces_Hawaii_cities_Honolulu : Ind City ; - -fun Countries_USA_provinces_Idaho : Ind Province ; - -fun Countries_USA_provinces_Idaho_cities_Boise : Ind City ; - -fun Countries_USA_provinces_Illinois : Ind Province ; - -fun Countries_USA_provinces_Illinois_cities_Aurora : Ind City ; - -fun Countries_USA_provinces_Illinois_cities_Chicago : Ind City ; - -fun Countries_USA_provinces_Illinois_cities_Naperville : Ind City ; - -fun Countries_USA_provinces_Illinois_cities_Peoria : Ind City ; - -fun Countries_USA_provinces_Illinois_cities_Rockford : Ind City ; - -fun Countries_USA_provinces_Illinois_cities_Springfield : Ind City ; - -fun Countries_USA_provinces_Indiana : Ind Province ; - -fun Countries_USA_provinces_Indiana_cities_Evansville : Ind City ; - -fun Countries_USA_provinces_Indiana_cities_FortWayne : Ind City ; - -fun Countries_USA_provinces_Indiana_cities_Gary : Ind City ; - -fun Countries_USA_provinces_Indiana_cities_Indianapolis : Ind City ; - -fun Countries_USA_provinces_Indiana_cities_SouthBend : Ind City ; - -fun Countries_USA_provinces_Iowa : Ind Province ; - -fun Countries_USA_provinces_Iowa_cities_CedarRapids : Ind City ; - -fun Countries_USA_provinces_Iowa_cities_DesMoines : Ind City ; - -fun Countries_USA_provinces_Kansas : Ind Province ; - -fun Countries_USA_provinces_Kansas_cities_KansasCity : Ind City ; - -fun Countries_USA_provinces_Kansas_cities_OverlandPark : Ind City ; - -fun Countries_USA_provinces_Kansas_cities_Topeka : Ind City ; - -fun Countries_USA_provinces_Kansas_cities_Wichita : Ind City ; - -fun Countries_USA_provinces_Kentucky : Ind Province ; - -fun Countries_USA_provinces_Kentucky_cities_Frankfort : Ind City ; - -fun Countries_USA_provinces_Kentucky_cities_LexingtonFayette : Ind City ; - -fun Countries_USA_provinces_Kentucky_cities_Louisville : Ind City ; - -fun Countries_USA_provinces_Louisiana : Ind Province ; - -fun Countries_USA_provinces_Louisiana_cities_BatonRouge : Ind City ; - -fun Countries_USA_provinces_Louisiana_cities_Lafayette : Ind City ; - -fun Countries_USA_provinces_Louisiana_cities_NewOrleans : Ind City ; - -fun Countries_USA_provinces_Louisiana_cities_Shreveport : Ind City ; - -fun Countries_USA_provinces_Maine : Ind Province ; - -fun Countries_USA_provinces_Maine_cities_Augusta : Ind City ; - -fun Countries_USA_provinces_Maryland : Ind Province ; - -fun Countries_USA_provinces_Maryland_cities_Annapolis : Ind City ; - -fun Countries_USA_provinces_Maryland_cities_Baltimore : Ind City ; - -fun Countries_USA_provinces_Massachusetts : Ind Province ; - -fun Countries_USA_provinces_Massachusetts_cities_Boston : Ind City ; - -fun Countries_USA_provinces_Massachusetts_cities_Lowell : Ind City ; - -fun Countries_USA_provinces_Massachusetts_cities_Springfield : Ind City ; - -fun Countries_USA_provinces_Massachusetts_cities_Worcester : Ind City ; - -fun Countries_USA_provinces_Michigan : Ind Province ; - -fun Countries_USA_provinces_Michigan_cities_AnnArbor : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_Detroit : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_Flint : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_GrandRapids : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_Lansing : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_Livonia : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_SterlingHeights : Ind City ; - -fun Countries_USA_provinces_Michigan_cities_Warren : Ind City ; - -fun Countries_USA_provinces_Minnesota : Ind Province ; - -fun Countries_USA_provinces_Minnesota_cities_Minneapolis : Ind City ; - -fun Countries_USA_provinces_Minnesota_cities_St_Paul : Ind City ; - -fun Countries_USA_provinces_Mississippi : Ind Province ; - -fun Countries_USA_provinces_Mississippi_cities_Jackson : Ind City ; - -fun Countries_USA_provinces_Missouri : Ind Province ; - -fun Countries_USA_provinces_Missouri_cities_Independence : Ind City ; - -fun Countries_USA_provinces_Missouri_cities_JeffersonCity : Ind City ; - -fun Countries_USA_provinces_Missouri_cities_KansasCity : Ind City ; - -fun Countries_USA_provinces_Missouri_cities_Springfield : Ind City ; - -fun Countries_USA_provinces_Missouri_cities_St_Louis : Ind City ; - -fun Countries_USA_provinces_Montana : Ind Province ; - -fun Countries_USA_provinces_Montana_cities_Helena : Ind City ; - -fun Countries_USA_provinces_Nebraska : Ind Province ; - -fun Countries_USA_provinces_Nebraska_cities_Lincoln : Ind City ; - -fun Countries_USA_provinces_Nebraska_cities_Omaha : Ind City ; - -fun Countries_USA_provinces_Nevada : Ind Province ; - -fun Countries_USA_provinces_Nevada_cities_CarsonCity : Ind City ; - -fun Countries_USA_provinces_Nevada_cities_Henderson : Ind City ; - -fun Countries_USA_provinces_Nevada_cities_LasVegas : Ind City ; - -fun Countries_USA_provinces_Nevada_cities_Reno : Ind City ; - -fun Countries_USA_provinces_NewHampshire : Ind Province ; - -fun Countries_USA_provinces_NewHampshire_cities_Concord : Ind City ; - -fun Countries_USA_provinces_NewHampshire_cities_Manchester : Ind City ; - -fun Countries_USA_provinces_NewJersey : Ind Province ; - -fun Countries_USA_provinces_NewJersey_cities_Elizabeth : Ind City ; - -fun Countries_USA_provinces_NewJersey_cities_JerseyCity : Ind City ; - -fun Countries_USA_provinces_NewJersey_cities_Newark : Ind City ; - -fun Countries_USA_provinces_NewJersey_cities_Paterson : Ind City ; - -fun Countries_USA_provinces_NewJersey_cities_Trenton : Ind City ; - -fun Countries_USA_provinces_NewMexico : Ind Province ; - -fun Countries_USA_provinces_NewMexico_cities_Albuquerque : Ind City ; - -fun Countries_USA_provinces_NewMexico_cities_SantaFe : Ind City ; - -fun Countries_USA_provinces_NewYork : Ind Province ; - -fun Countries_USA_provinces_NewYork_cities_Albany : Ind City ; - -fun Countries_USA_provinces_NewYork_cities_Buffalo : Ind City ; - -fun Countries_USA_provinces_NewYork_cities_NewYork : Ind City ; - -fun Countries_USA_provinces_NewYork_cities_Rochester : Ind City ; - -fun Countries_USA_provinces_NewYork_cities_Syracuse : Ind City ; - -fun Countries_USA_provinces_NewYork_cities_Yonkers : Ind City ; - -fun Countries_USA_provinces_NorthCarolina : Ind Province ; - -fun Countries_USA_provinces_NorthCarolina_cities_Charlotte : Ind City ; - -fun Countries_USA_provinces_NorthCarolina_cities_Durham : Ind City ; - -fun Countries_USA_provinces_NorthCarolina_cities_Greensboro : Ind City ; - -fun Countries_USA_provinces_NorthCarolina_cities_Raleigh : Ind City ; - -fun Countries_USA_provinces_NorthCarolina_cities_WinstonSalem : Ind City ; - -fun Countries_USA_provinces_NorthDakota : Ind Province ; - -fun Countries_USA_provinces_NorthDakota_cities_Bismarck : Ind City ; - -fun Countries_USA_provinces_Ohio : Ind Province ; - -fun Countries_USA_provinces_Ohio_cities_Akron : Ind City ; - -fun Countries_USA_provinces_Ohio_cities_Cincinnati : Ind City ; - -fun Countries_USA_provinces_Ohio_cities_Cleveland : Ind City ; - -fun Countries_USA_provinces_Ohio_cities_Columbus : Ind City ; - -fun Countries_USA_provinces_Ohio_cities_Dayton : Ind City ; - -fun Countries_USA_provinces_Ohio_cities_Toledo : Ind City ; - -fun Countries_USA_provinces_Oklahoma : Ind Province ; - -fun Countries_USA_provinces_Oklahoma_cities_OklahomaCity : Ind City ; - -fun Countries_USA_provinces_Oklahoma_cities_Tulsa : Ind City ; - -fun Countries_USA_provinces_Oregon : Ind Province ; - -fun Countries_USA_provinces_Oregon_cities_Eugene : Ind City ; - -fun Countries_USA_provinces_Oregon_cities_Portland : Ind City ; - -fun Countries_USA_provinces_Oregon_cities_Salem : Ind City ; - -fun Countries_USA_provinces_Pennsylvania : Ind Province ; - -fun Countries_USA_provinces_Pennsylvania_cities_Allentown : Ind City ; - -fun Countries_USA_provinces_Pennsylvania_cities_Erie : Ind City ; - -fun Countries_USA_provinces_Pennsylvania_cities_Harrisburg : Ind City ; - -fun Countries_USA_provinces_Pennsylvania_cities_Philadelphia : Ind City ; - -fun Countries_USA_provinces_Pennsylvania_cities_Pittsburgh : Ind City ; - -fun Countries_USA_provinces_RhodeIsland : Ind Province ; - -fun Countries_USA_provinces_RhodeIsland_cities_Providence : Ind City ; - -fun Countries_USA_provinces_SouthCarolina : Ind Province ; - -fun Countries_USA_provinces_SouthCarolina_cities_Columbia : Ind City ; - -fun Countries_USA_provinces_SouthDakota : Ind Province ; - -fun Countries_USA_provinces_SouthDakota_cities_Pierre : Ind City ; - -fun Countries_USA_provinces_SouthDakota_cities_SiouxFalls : Ind City ; - -fun Countries_USA_provinces_Tennessee : Ind Province ; - -fun Countries_USA_provinces_Tennessee_cities_Chattanooga : Ind City ; - -fun Countries_USA_provinces_Tennessee_cities_Knoxville : Ind City ; - -fun Countries_USA_provinces_Tennessee_cities_Memphis : Ind City ; - -fun Countries_USA_provinces_Tennessee_cities_Nashville : Ind City ; - -fun Countries_USA_provinces_Tennessee_cities_NashvilleDavidson : Ind City ; - -fun Countries_USA_provinces_Texas : Ind Province ; - -fun Countries_USA_provinces_Texas_cities_Abilene : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Amarillo : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Arlington : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Austin : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Beaumont : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Brownsville : Ind City ; - -fun Countries_USA_provinces_Texas_cities_CorpusChristi : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Dallas : Ind City ; - -fun Countries_USA_provinces_Texas_cities_ElPaso : Ind City ; - -fun Countries_USA_provinces_Texas_cities_FortWorth : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Garland : Ind City ; - -fun Countries_USA_provinces_Texas_cities_GrandPrairie : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Houston : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Irving : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Laredo : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Lubbock : Ind City ; - -fun Countries_USA_provinces_Texas_cities_McAllen : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Mesquite : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Pasadena : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Plano : Ind City ; - -fun Countries_USA_provinces_Texas_cities_SanAntonio : Ind City ; - -fun Countries_USA_provinces_Texas_cities_Waco : Ind City ; - -fun Countries_USA_provinces_Texas_cities_WichitaFalls : Ind City ; - -fun Countries_USA_provinces_Utah : Ind Province ; - -fun Countries_USA_provinces_Utah_cities_SaltLakeCity : Ind City ; - -fun Countries_USA_provinces_Vermont : Ind Province ; - -fun Countries_USA_provinces_Vermont_cities_Montpelier : Ind City ; - -fun Countries_USA_provinces_Virginia : Ind Province ; - -fun Countries_USA_provinces_Virginia_cities_Alexandria : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_Arlington : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_Chesapeake : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_Hampton : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_NewportNews : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_Norfolk : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_Portsmouth : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_Richmond : Ind City ; - -fun Countries_USA_provinces_Virginia_cities_VirginiaBeach : Ind City ; - -fun Countries_USA_provinces_Washington : Ind Province ; - -fun Countries_USA_provinces_Washington_cities_Olympia : Ind City ; - -fun Countries_USA_provinces_Washington_cities_Seattle : Ind City ; - -fun Countries_USA_provinces_Washington_cities_Spokane : Ind City ; - -fun Countries_USA_provinces_Washington_cities_Tacoma : Ind City ; - -fun Countries_USA_provinces_WestVirginia : Ind Province ; - -fun Countries_USA_provinces_WestVirginia_cities_Charleston : Ind City ; - -fun Countries_USA_provinces_Wisconsin : Ind Province ; - -fun Countries_USA_provinces_Wisconsin_cities_GreenBay : Ind City ; - -fun Countries_USA_provinces_Wisconsin_cities_Madison : Ind City ; - -fun Countries_USA_provinces_Wisconsin_cities_Milwaukee : Ind City ; - -fun Countries_USA_provinces_Wyoming : Ind Province ; - -fun Countries_USA_provinces_Wyoming_cities_Cheyenne : Ind City ; - -fun Countries_UZB_provinces_Andijon : Ind Province ; - -fun Countries_UZB_provinces_Andijon_cities_Andijon : Ind City ; - -fun Countries_UZB_provinces_Bukhoro : Ind Province ; - -fun Countries_UZB_provinces_Bukhoro_cities_Bukhoro : Ind City ; - -fun Countries_UZB_provinces_Farghona : Ind Province ; - -fun Countries_UZB_provinces_Farghona_cities_Farghona : Ind City ; - -fun Countries_UZB_provinces_Farghona_cities_Marghilon : Ind City ; - -fun Countries_UZB_provinces_Farghona_cities_Quqon : Ind City ; - -fun Countries_UZB_provinces_Jizzakh : Ind Province ; - -fun Countries_UZB_provinces_Jizzakh_cities_Jizzakh : Ind City ; - -fun Countries_UZB_provinces_Khorazm : Ind Province ; - -fun Countries_UZB_provinces_Khorazm_cities_Urganch : Ind City ; - -fun Countries_UZB_provinces_Namangan : Ind Province ; - -fun Countries_UZB_provinces_Namangan_cities_Namangan : Ind City ; - -fun Countries_UZB_provinces_Nawoiy : Ind Province ; - -fun Countries_UZB_provinces_Nawoiy_cities_Nawoiy : Ind City ; - -fun Countries_UZB_provinces_Qasqadare : Ind Province ; - -fun Countries_UZB_provinces_Qasqadare_cities_Qarshi : Ind City ; - -fun Countries_UZB_provinces_Qoraqalpoghiston : Ind Province ; - -fun Countries_UZB_provinces_Qoraqalpoghiston_cities_Nukus : Ind City ; - -fun Countries_UZB_provinces_Samarqand : Ind Province ; - -fun Countries_UZB_provinces_Samarqand_cities_Samarqand : Ind City ; - -fun Countries_UZB_provinces_Sirdare : Ind Province ; - -fun Countries_UZB_provinces_Sirdare_cities_Guliston : Ind City ; - -fun Countries_UZB_provinces_Surkhondare : Ind Province ; - -fun Countries_UZB_provinces_Surkhondare_cities_Termiz : Ind City ; - -fun Countries_UZB_provinces_Toshkent : Ind Province ; - -fun Countries_UZB_provinces_Toshkent_cities_Angren : Ind City ; - -fun Countries_UZB_provinces_Toshkent_cities_Chirchiq : Ind City ; - -fun Countries_UZB_provinces_Toshkent_cities_Olmaliq : Ind City ; - -fun Countries_UZB_provinces_Toshkent_cities_Tashkent : Ind City ; - -fun Countries_VN_cities_CamPha : Ind City ; - -fun Countries_VN_cities_CanTho : Ind City ; - -fun Countries_VN_cities_DaNang : Ind City ; - -fun Countries_VN_cities_Haiphong : Ind City ; - -fun Countries_VN_cities_Hanoi : Ind City ; - -fun Countries_VN_cities_HongGai : Ind City ; - -fun Countries_VN_cities_Hue : Ind City ; - -fun Countries_VN_cities_LongXuyen : Ind City ; - -fun Countries_VN_cities_NamDinh : Ind City ; - -fun Countries_VN_cities_NhaTrang : Ind City ; - -fun Countries_VN_cities_QuiNhon : Ind City ; - -fun Countries_VN_cities_Saigon : Ind City ; - -fun Countries_VN_cities_ThaiNguyen : Ind City ; - -fun Countries_VN_cities_VietTri : Ind City ; - -fun Countries_VN_cities_VungTau : Ind City ; - -fun Countries_VN_provinces_AnGiang : Ind Province ; - -fun Countries_VN_provinces_BaRiaVungTau : Ind Province ; - -fun Countries_VN_provinces_BacThai : Ind Province ; - -fun Countries_VN_provinces_BenTre : Ind Province ; - -fun Countries_VN_provinces_BinhDinh : Ind Province ; - -fun Countries_VN_provinces_BinhThuan : Ind Province ; - -fun Countries_VN_provinces_CanTho : Ind Province ; - -fun Countries_VN_provinces_CaoBang : Ind Province ; - -fun Countries_VN_provinces_CentralHighlands : Ind Province ; - -fun Countries_VN_provinces_DacLac : Ind Province ; - -fun Countries_VN_provinces_DongNai : Ind Province ; - -fun Countries_VN_provinces_DongThap : Ind Province ; - -fun Countries_VN_provinces_GiaLai : Ind Province ; - -fun Countries_VN_provinces_HaBac : Ind Province ; - -fun Countries_VN_provinces_HaGiang : Ind Province ; - -fun Countries_VN_provinces_HaTay : Ind Province ; - -fun Countries_VN_provinces_HaTinh : Ind Province ; - -fun Countries_VN_provinces_HaiHung : Ind Province ; - -fun Countries_VN_provinces_Haiphong : Ind Province ; - -fun Countries_VN_provinces_Hanoi : Ind Province ; - -fun Countries_VN_provinces_HoChiMinhCity : Ind Province ; - -fun Countries_VN_provinces_HoaBinh : Ind Province ; - -fun Countries_VN_provinces_KhanhHoa : Ind Province ; - -fun Countries_VN_provinces_KienGiang : Ind Province ; - -fun Countries_VN_provinces_KonTum : Ind Province ; - -fun Countries_VN_provinces_LaiChau : Ind Province ; - -fun Countries_VN_provinces_LamDong : Ind Province ; - -fun Countries_VN_provinces_LangSon : Ind Province ; - -fun Countries_VN_provinces_LaoCai : Ind Province ; - -fun Countries_VN_provinces_LongAn : Ind Province ; - -fun Countries_VN_provinces_MekongRiverDelta : Ind Province ; - -fun Countries_VN_provinces_MinhHai : Ind Province ; - -fun Countries_VN_provinces_NamHa : Ind Province ; - -fun Countries_VN_provinces_NgheAn : Ind Province ; - -fun Countries_VN_provinces_NinhBinh : Ind Province ; - -fun Countries_VN_provinces_NinhThuan : Ind Province ; - -fun Countries_VN_provinces_NorthCentralCoast : Ind Province ; - -fun Countries_VN_provinces_NorthEastSouth : Ind Province ; - -fun Countries_VN_provinces_NorthMountainandMidlands : Ind Province ; - -fun Countries_VN_provinces_PhuYen : Ind Province ; - -fun Countries_VN_provinces_QuangBinh : Ind Province ; - -fun Countries_VN_provinces_QuangNamDaNang : Ind Province ; - -fun Countries_VN_provinces_QuangNgai : Ind Province ; - -fun Countries_VN_provinces_QuangNinh : Ind Province ; - -fun Countries_VN_provinces_QuangTri : Ind Province ; - -fun Countries_VN_provinces_RedRiverDelta : Ind Province ; - -fun Countries_VN_provinces_SocTrang : Ind Province ; - -fun Countries_VN_provinces_SonLa : Ind Province ; - -fun Countries_VN_provinces_SongBe : Ind Province ; - -fun Countries_VN_provinces_SouthCentralCoast : Ind Province ; - -fun Countries_VN_provinces_TayNinh : Ind Province ; - -fun Countries_VN_provinces_ThaiBinh : Ind Province ; - -fun Countries_VN_provinces_ThanhHoa : Ind Province ; - -fun Countries_VN_provinces_ThuaThienHue : Ind Province ; - -fun Countries_VN_provinces_TienGiang : Ind Province ; - -fun Countries_VN_provinces_TraVinh : Ind Province ; - -fun Countries_VN_provinces_TuyenQuang : Ind Province ; - -fun Countries_VN_provinces_VinhLong : Ind Province ; - -fun Countries_VN_provinces_VinhPhu : Ind Province ; - -fun Countries_VN_provinces_YenBai : Ind Province ; - -fun Countries_VU_cities_Port_Vila : Ind City ; - -fun Countries_V_cities_VaticanCity : Ind City ; - -fun Countries_WAG_cities_Banjul : Ind City ; - -fun Countries_WAL_cities_Freetown : Ind City ; - -fun Countries_WAN_cities_Aarri : Ind City ; - -fun Countries_WAN_cities_Aba : Ind City ; - -fun Countries_WAN_cities_Abeokuta : Ind City ; - -fun Countries_WAN_cities_Abuja : Ind City ; - -fun Countries_WAN_cities_AdoEkiti : Ind City ; - -fun Countries_WAN_cities_Akure : Ind City ; - -fun Countries_WAN_cities_BeninCity : Ind City ; - -fun Countries_WAN_cities_Bida : Ind City ; - -fun Countries_WAN_cities_Calabar : Ind City ; - -fun Countries_WAN_cities_DebaHabe : Ind City ; - -fun Countries_WAN_cities_Ede : Ind City ; - -fun Countries_WAN_cities_EffonAlaiye : Ind City ; - -fun Countries_WAN_cities_Enugu : Ind City ; - -fun Countries_WAN_cities_Gusau : Ind City ; - -fun Countries_WAN_cities_Ibadan : Ind City ; - -fun Countries_WAN_cities_Ife : Ind City ; - -fun Countries_WAN_cities_IjebuOde : Ind City ; - -fun Countries_WAN_cities_Ikare : Ind City ; - -fun Countries_WAN_cities_Ikerre : Ind City ; - -fun Countries_WAN_cities_Ikire : Ind City ; - -fun Countries_WAN_cities_Ikirun : Ind City ; - -fun Countries_WAN_cities_Ikorodu : Ind City ; - -fun Countries_WAN_cities_Ila : Ind City ; - -fun Countries_WAN_cities_IlaweEkiti : Ind City ; - -fun Countries_WAN_cities_Ilesha : Ind City ; - -fun Countries_WAN_cities_Ilobu : Ind City ; - -fun Countries_WAN_cities_Ilorin : Ind City ; - -fun Countries_WAN_cities_Inisa : Ind City ; - -fun Countries_WAN_cities_Iseyin : Ind City ; - -fun Countries_WAN_cities_Iwo : Ind City ; - -fun Countries_WAN_cities_Jos : Ind City ; - -fun Countries_WAN_cities_Kaduna : Ind City ; - -fun Countries_WAN_cities_Kano : Ind City ; - -fun Countries_WAN_cities_Katsina : Ind City ; - -fun Countries_WAN_cities_Kumo : Ind City ; - -fun Countries_WAN_cities_Lafia : Ind City ; - -fun Countries_WAN_cities_Lagos : Ind City ; - -fun Countries_WAN_cities_Maiduguri : Ind City ; - -fun Countries_WAN_cities_Makurdi : Ind City ; - -fun Countries_WAN_cities_Minna : Ind City ; - -fun Countries_WAN_cities_Mushin : Ind City ; - -fun Countries_WAN_cities_Offa : Ind City ; - -fun Countries_WAN_cities_Ogbomosho : Ind City ; - -fun Countries_WAN_cities_Oka : Ind City ; - -fun Countries_WAN_cities_Ondo : Ind City ; - -fun Countries_WAN_cities_Onitsha : Ind City ; - -fun Countries_WAN_cities_Oshogbo : Ind City ; - -fun Countries_WAN_cities_Owo : Ind City ; - -fun Countries_WAN_cities_Oyo : Ind City ; - -fun Countries_WAN_cities_PortHarcourt : Ind City ; - -fun Countries_WAN_cities_Sapele : Ind City ; - -fun Countries_WAN_cities_Shagamu : Ind City ; - -fun Countries_WAN_cities_Shaki : Ind City ; - -fun Countries_WAN_cities_Shomolu : Ind City ; - -fun Countries_WAN_cities_Sokoto : Ind City ; - -fun Countries_WAN_cities_Zaria : Ind City ; - -fun Countries_WD_cities_Roseau : Ind City ; - -fun Countries_WG_cities_SaintGeorges : Ind City ; - -fun Countries_WL_cities_Castries : Ind City ; - -fun Countries_WSA_cities_ElAlaiun : Ind City ; - -fun Countries_WS_cities_Apia : Ind City ; - -fun Countries_WV_cities_Kingstown : Ind City ; - -fun Countries_YE_cities_Sanaa : Ind City ; - -fun Countries_YU_cities_Belgrade : Ind City ; - -fun Countries_YV_cities_SantaAnadeCoro : Ind City ; - -fun Countries_YV_cities_Turmero : Ind City ; - -fun Countries_YV_provinces_Amazonas : Ind Province ; - -fun Countries_YV_provinces_Amazonas_cities_PuertoAyacucho : Ind City ; - -fun Countries_YV_provinces_Anzoategui : Ind Province ; - -fun Countries_YV_provinces_Anzoategui_cities_Barcelona : Ind City ; - -fun Countries_YV_provinces_Anzoategui_cities_PuertoLaCruz : Ind City ; - -fun Countries_YV_provinces_Apure : Ind Province ; - -fun Countries_YV_provinces_Apure_cities_SanFernando : Ind City ; - -fun Countries_YV_provinces_Aragua : Ind Province ; - -fun Countries_YV_provinces_Aragua_cities_Maracay : Ind City ; - -fun Countries_YV_provinces_Barinas : Ind Province ; - -fun Countries_YV_provinces_Barinas_cities_Barinas : Ind City ; - -fun Countries_YV_provinces_Bolivar : Ind Province ; - -fun Countries_YV_provinces_Bolivar_cities_CiudadBolivar : Ind City ; - -fun Countries_YV_provinces_Bolivar_cities_CiudadGuayana : Ind City ; - -fun Countries_YV_provinces_Carabobo : Ind Province ; - -fun Countries_YV_provinces_Carabobo_cities_Guacara : Ind City ; - -fun Countries_YV_provinces_Carabobo_cities_PuertoCabello : Ind City ; - -fun Countries_YV_provinces_Carabobo_cities_Valencia : Ind City ; - -fun Countries_YV_provinces_Cojedes : Ind Province ; - -fun Countries_YV_provinces_Cojedes_cities_SanCarlos : Ind City ; - -fun Countries_YV_provinces_DeltaAmacuro : Ind Province ; - -fun Countries_YV_provinces_DeltaAmacuro_cities_Tucupita : Ind City ; - -fun Countries_YV_provinces_DistritoFederal : Ind Province ; - -fun Countries_YV_provinces_DistritoFederal_cities_Caracas : Ind City ; - -fun Countries_YV_provinces_DistritoFederal_cities_CatiaLaMar : Ind City ; - -fun Countries_YV_provinces_Falcon : Ind Province ; - -fun Countries_YV_provinces_Falcon_cities_Coro : Ind City ; - -fun Countries_YV_provinces_Guarico : Ind Province ; - -fun Countries_YV_provinces_Guarico_cities_SanJuan : Ind City ; - -fun Countries_YV_provinces_Lara : Ind Province ; - -fun Countries_YV_provinces_Lara_cities_Barquisimeto : Ind City ; - -fun Countries_YV_provinces_Merida : Ind Province ; - -fun Countries_YV_provinces_Merida_cities_Merida : Ind City ; - -fun Countries_YV_provinces_Miranda : Ind Province ; - -fun Countries_YV_provinces_Miranda_cities_Baruta : Ind City ; - -fun Countries_YV_provinces_Miranda_cities_Guarenas : Ind City ; - -fun Countries_YV_provinces_Miranda_cities_LosTeques : Ind City ; - -fun Countries_YV_provinces_Miranda_cities_Petare : Ind City ; - -fun Countries_YV_provinces_Monagas : Ind Province ; - -fun Countries_YV_provinces_Monagas_cities_Maturin : Ind City ; - -fun Countries_YV_provinces_NuevaEsparta : Ind Province ; - -fun Countries_YV_provinces_NuevaEsparta_cities_LaAscuncion : Ind City ; - -fun Countries_YV_provinces_Portuguesa : Ind Province ; - -fun Countries_YV_provinces_Portuguesa_cities_Acarigua : Ind City ; - -fun Countries_YV_provinces_Portuguesa_cities_Guanare : Ind City ; - -fun Countries_YV_provinces_Sucre : Ind Province ; - -fun Countries_YV_provinces_Sucre_cities_Cumana : Ind City ; - -fun Countries_YV_provinces_Tachira : Ind Province ; - -fun Countries_YV_provinces_Tachira_cities_SanCristobal : Ind City ; - -fun Countries_YV_provinces_Trujillo : Ind Province ; - -fun Countries_YV_provinces_Trujillo_cities_Trujillo : Ind City ; - -fun Countries_YV_provinces_Yaracuy : Ind Province ; - -fun Countries_YV_provinces_Yaracuy_cities_SanFelipe : Ind City ; - -fun Countries_YV_provinces_Zulia : Ind Province ; - -fun Countries_YV_provinces_Zulia_cities_Cabimas : Ind City ; - -fun Countries_YV_provinces_Zulia_cities_Maracaibo : Ind City ; - -fun Countries_ZRE_provinces_Bandundu : Ind Province ; - -fun Countries_ZRE_provinces_Bandundu_cities_Bandundu : Ind City ; - -fun Countries_ZRE_provinces_Bandundu_cities_Kikwit : Ind City ; - -fun Countries_ZRE_provinces_BasZaire : Ind Province ; - -fun Countries_ZRE_provinces_BasZaire_cities_Boma : Ind City ; - -fun Countries_ZRE_provinces_BasZaire_cities_Matadi : Ind City ; - -fun Countries_ZRE_provinces_Equateur : Ind Province ; - -fun Countries_ZRE_provinces_Equateur_cities_Mbandaka : Ind City ; - -fun Countries_ZRE_provinces_HautZaire : Ind Province ; - -fun Countries_ZRE_provinces_HautZaire_cities_Kisangani : Ind City ; - -fun Countries_ZRE_provinces_KasaiOccidental : Ind Province ; - -fun Countries_ZRE_provinces_KasaiOccidental_cities_Kananga : Ind City ; - -fun Countries_ZRE_provinces_KasaiOccidental_cities_Tshikapa : Ind City ; - -fun Countries_ZRE_provinces_KasaiOriental : Ind Province ; - -fun Countries_ZRE_provinces_KasaiOriental_cities_Kalemi : Ind City ; - -fun Countries_ZRE_provinces_KasaiOriental_cities_MbujiMayi : Ind City ; - -fun Countries_ZRE_provinces_KasaiOriental_cities_MweneDitu : Ind City ; - -fun Countries_ZRE_provinces_Kinshasa : Ind Province ; - -fun Countries_ZRE_provinces_Kinshasa_cities_Kinshasa : Ind City ; - -fun Countries_ZRE_provinces_Kivu : Ind Province ; - -fun Countries_ZRE_provinces_Kivu_cities_Bukavu : Ind City ; - -fun Countries_ZRE_provinces_Kivu_cities_Butembo : Ind City ; - -fun Countries_ZRE_provinces_Kivu_cities_Goma : Ind City ; - -fun Countries_ZRE_provinces_Kivu_cities_Uvira : Ind City ; - -fun Countries_ZRE_provinces_Shaba : Ind Province ; - -fun Countries_ZRE_provinces_Shaba_cities_Kolwezi : Ind City ; - -fun Countries_ZRE_provinces_Shaba_cities_Likasi : Ind City ; - -fun Countries_ZRE_provinces_Shaba_cities_Lubumbashi : Ind City ; - -fun Countries_ZW_cities_Harare : Ind City ; - -fun Countries_Z_provinces_Central : Ind Province ; - -fun Countries_Z_provinces_Central_cities_Kabwe : Ind City ; - -fun Countries_Z_provinces_Copperbelt : Ind Province ; - -fun Countries_Z_provinces_Copperbelt_cities_Chingola : Ind City ; - -fun Countries_Z_provinces_Copperbelt_cities_Kitwe : Ind City ; - -fun Countries_Z_provinces_Copperbelt_cities_Luanshya : Ind City ; - -fun Countries_Z_provinces_Copperbelt_cities_Mufulira : Ind City ; - -fun Countries_Z_provinces_Copperbelt_cities_Ndola : Ind City ; - -fun Countries_Z_provinces_Eastern : Ind Province ; - -fun Countries_Z_provinces_Eastern_cities_Chipata : Ind City ; - -fun Countries_Z_provinces_Luapula : Ind Province ; - -fun Countries_Z_provinces_Luapula_cities_Mansa : Ind City ; - -fun Countries_Z_provinces_Lusaka : Ind Province ; - -fun Countries_Z_provinces_Lusaka_cities_Lusaka : Ind City ; - -fun Countries_Z_provinces_Northern : Ind Province ; - -fun Countries_Z_provinces_Northern_cities_Kasama : Ind City ; - -fun Countries_Z_provinces_Northwestern : Ind Province ; - -fun Countries_Z_provinces_Northwestern_cities_Solwezi : Ind City ; - -fun Countries_Z_provinces_Southern : Ind Province ; - -fun Countries_Z_provinces_Southern_cities_Livingstone : Ind City ; - -fun Countries_Z_provinces_Western : Ind Province ; - -fun Countries_Z_provinces_Western_cities_Mongu : Ind City ; - -fun Countries_cid_cia_American_Samoa : Ind Country ; - -fun Countries_cid_cia_American_Samoa_cities_PagoPago : Ind City ; - -fun Countries_cid_cia_Anguilla : Ind Country ; - -fun Countries_cid_cia_Anguilla_cities_TheValley : Ind City ; - -fun Countries_cid_cia_Aruba : Ind Country ; - -fun Countries_cid_cia_Aruba_cities_Oranjestad : Ind City ; - -fun Countries_cid_cia_Ashmore_and_Cartier_Islands : Ind Country ; - -fun Countries_cid_cia_Baker_Island : Ind Country ; - -fun Countries_cid_cia_Bassas_da_India : Ind Country ; - -fun Countries_cid_cia_Bermuda : Ind Country ; - -fun Countries_cid_cia_Bermuda_cities_Hamilton : Ind City ; - -fun Countries_cid_cia_Bouvet_Island : Ind Country ; - -fun Countries_cid_cia_British_Indian_Ocean_Territory : Ind Country ; - -fun Countries_cid_cia_British_Virgin_Islands : Ind Country ; - -fun Countries_cid_cia_British_Virgin_Islands_cities_RoadTown : Ind City ; - -fun Countries_cid_cia_Cayman_Islands : Ind Country ; - -fun Countries_cid_cia_Cayman_Islands_cities_GeorgeTown : Ind City ; - -fun Countries_cid_cia_Christmas_Island : Ind Country ; - -fun Countries_cid_cia_Christmas_Island_cities_TheSettlement : Ind City ; - -fun Countries_cid_cia_Clipperton_Island : Ind Country ; - -fun Countries_cid_cia_Cocos_Islands : Ind Country ; - -fun Countries_cid_cia_Cocos_Islands_cities_WestIsland : Ind City ; - -fun Countries_cid_cia_Cook_Islands : Ind Country ; - -fun Countries_cid_cia_Cook_Islands_cities_Avarua : Ind City ; - -fun Countries_cid_cia_Coral_Sea_Islands : Ind Country ; - -fun Countries_cid_cia_Europa_Island : Ind Country ; - -fun Countries_cid_cia_Falkland_Islands : Ind Country ; - -fun Countries_cid_cia_Falkland_Islands_cities_Stanley : Ind City ; - -fun Countries_cid_cia_Faroe_Islands : Ind Country ; - -fun Countries_cid_cia_Faroe_Islands_cities_Torshavn : Ind City ; - -fun Countries_cid_cia_French_Polynesia : Ind Country ; - -fun Countries_cid_cia_French_Polynesia_cities_Papeete : Ind City ; - -fun Countries_cid_cia_French_Southern_and_Antarctic_Lands : Ind Country ; - -fun Countries_cid_cia_Gaza_Strip : Ind Country ; - -fun Countries_cid_cia_Gibraltar : Ind Country ; - -fun Countries_cid_cia_Gibraltar_cities_Gibraltar : Ind City ; - -fun Countries_cid_cia_Glorioso_Islands : Ind Country ; - -fun Countries_cid_cia_Greenland : Ind Country ; - -fun Countries_cid_cia_Greenland_cities_Nuuk : Ind City ; - -fun Countries_cid_cia_Guadeloupe : Ind Country ; - -fun Countries_cid_cia_Guadeloupe_cities_Basse_Terre : Ind City ; - -fun Countries_cid_cia_Guam : Ind Country ; - -fun Countries_cid_cia_Guam_cities_Agana : Ind City ; - -fun Countries_cid_cia_Guernsey : Ind Country ; - -fun Countries_cid_cia_Guernsey_cities_SaintPeterPort : Ind City ; - -fun Countries_cid_cia_Heard_Island_and_McDonald_Islands : Ind Country ; - -fun Countries_cid_cia_Hong_Kong : Ind Country ; - -fun Countries_cid_cia_Howland_Island : Ind Country ; - -fun Countries_cid_cia_Jan_Mayen : Ind Country ; - -fun Countries_cid_cia_Jarvis_Island : Ind Country ; - -fun Countries_cid_cia_Jersey : Ind Country ; - -fun Countries_cid_cia_Jersey_cities_SaintHelier : Ind City ; - -fun Countries_cid_cia_Johnston_Atoll : Ind Country ; - -fun Countries_cid_cia_Juan_de_Nova_Island : Ind Country ; - -fun Countries_cid_cia_Kingman_Reef : Ind Country ; - -fun Countries_cid_cia_Macau : Ind Country ; - -fun Countries_cid_cia_Macau_cities_Macau : Ind City ; - -fun Countries_cid_cia_Man : Ind Country ; - -fun Countries_cid_cia_Man_cities_Douglas : Ind City ; - -fun Countries_cid_cia_Martinique : Ind Country ; - -fun Countries_cid_cia_Martinique_cities_Fort_de_France : Ind City ; - -fun Countries_cid_cia_Mayotte : Ind Country ; - -fun Countries_cid_cia_Mayotte_cities_Mamoutzou : Ind City ; - -fun Countries_cid_cia_Midway_Islands : Ind Country ; - -fun Countries_cid_cia_Montserrat : Ind Country ; - -fun Countries_cid_cia_Montserrat_cities_Plymouth : Ind City ; - -fun Countries_cid_cia_Navassa_Island : Ind Country ; - -fun Countries_cid_cia_Netherlands_Antilles : Ind Country ; - -fun Countries_cid_cia_Netherlands_Antilles_cities_Willemstad : Ind City ; - -fun Countries_cid_cia_Niue : Ind Country ; - -fun Countries_cid_cia_Niue_cities_Alofi : Ind City ; - -fun Countries_cid_cia_Norfolk_Island : Ind Country ; - -fun Countries_cid_cia_Norfolk_Island_cities_Kingston : Ind City ; - -fun Countries_cid_cia_Northern_Mariana_Islands : Ind Country ; - -fun Countries_cid_cia_Northern_Mariana_Islands_cities_Saipan : Ind City ; - -fun Countries_cid_cia_Palmyra_Atoll : Ind Country ; - -fun Countries_cid_cia_Paracel_Islands : Ind Country ; - -fun Countries_cid_cia_Pitcairn_Islands : Ind Country ; - -fun Countries_cid_cia_Pitcairn_Islands_cities_Adamstown : Ind City ; - -fun Countries_cid_cia_Puerto_Rico : Ind Country ; - -fun Countries_cid_cia_Puerto_Rico_cities_SanJuan : Ind City ; - -fun Countries_cid_cia_Reunion : Ind Country ; - -fun Countries_cid_cia_Reunion_cities_Saint_Denis : Ind City ; - -fun Countries_cid_cia_Saint_Helena : Ind Country ; - -fun Countries_cid_cia_Saint_Helena_cities_Jamestown : Ind City ; - -fun Countries_cid_cia_Saint_Pierre_and_Miquelon : Ind Country ; - -fun Countries_cid_cia_Saint_Pierre_and_Miquelon_cities_Saint_Pierre : Ind City ; - -fun Countries_cid_cia_South_Georgia_and_the_South_Sandwich_Islands : Ind Country ; - -fun Countries_cid_cia_Spratly_Islands : Ind Country ; - -fun Countries_cid_cia_Svalbard : Ind Country ; - -fun Countries_cid_cia_Svalbard_cities_Longyearbyen : Ind City ; - -fun Countries_cid_cia_Tokelau : Ind Country ; - -fun Countries_cid_cia_Tromelin_Island : Ind Country ; - -fun Countries_cid_cia_Turks_and_Caicos_Islands : Ind Country ; - -fun Countries_cid_cia_Turks_and_Caicos_Islands_cities_GrandTurk : Ind City ; - -fun Countries_cid_cia_Virgin_Islands : Ind Country ; - -fun Countries_cid_cia_Virgin_Islands_cities_CharlotteAmalie : Ind City ; - -fun Countries_cid_cia_Wake_Island : Ind Country ; - -fun Countries_cid_cia_Wallis_and_Futuna : Ind Country ; - -fun Countries_cid_cia_Wallis_and_Futuna_cities_Mata_Utu : Ind City ; - -fun Countries_cid_cia_West_Bank : Ind Country ; - -fun Country : Class ; - -fun Croatia : Ind (both Country Nation); - -fun Cuba : Ind (both Country (both Nation Island)) ; - -fun Cyprus : Ind (both Country Nation); - -fun CzechRepublic : Ind (both Country Nation); - -fun Denmark : Ind (both Country EuropeanNation); - -fun Deserts_ArabianDesert : Ind Desert ; - -fun Deserts_Asauad : Ind Desert ; - -fun Deserts_Atacama : Ind Desert ; - -fun Deserts_Dschurab : Ind Desert ; - -fun Deserts_ErgIgidi : Ind Desert ; - -fun Deserts_ErgRebiana : Ind Desert ; - -fun Deserts_ErgSchesch : Ind Desert ; - -fun Deserts_ErgdeBilma : Ind Desert ; - -fun Deserts_Fesan : Ind Desert ; - -fun Deserts_GibsonDesert : Ind Desert ; - -fun Deserts_GrandErgEst : Ind Desert ; - -fun Deserts_GrandErgOuest : Ind Desert ; - -fun Deserts_GrandSandDesert : Ind Desert ; - -fun Deserts_GrandVictoriaDesert : Ind Desert ; - -fun Deserts_HamadaduDraa : Ind Desert ; - -fun Deserts_Hamadael_Hamra : Ind Desert ; - -fun Deserts_Kalahari : Ind Desert ; - -fun Deserts_Karakum : Ind Desert ; - -fun Deserts_Kysylkum : Ind Desert ; - -fun Deserts_LibyanDesert : Ind Desert ; - -fun Deserts_Makteir : Ind Desert ; - -fun Deserts_Mujunkum : Ind Desert ; - -fun Deserts_NubianDesert : Ind Desert ; - -fun Deserts_Sagiael_Hamra : Ind Desert ; - -fun Deserts_SimpsonDesert : Ind Desert ; - -fun Deserts_Tanami : Ind Desert ; - -fun Deserts_Tanesruft : Ind Desert ; - -fun Deserts_Tenere : Ind Desert ; - -fun Deserts_Trarza : Ind Desert ; - -fun Deserts_Uaran : Ind Desert ; - -fun Djibouti : Ind (both Country Nation); - -fun Dominica : Ind (both Country Nation); - -fun DominicanRepublic : Ind (both Country Nation); - -fun Ecuador : Ind (both Country Nation); - -fun Egypt : Ind (both Country Nation); - -fun ElSalvador : Ind (both Country Nation); - -fun EquatorialGuinea : Ind (both Country Nation); - -fun Eritrea : Ind (both Country Nation); - -fun Estonia : Ind (both Country Nation); - -fun Ethiopia : Ind (both Country Nation); - -fun Fiji : Ind (both Country Nation); - -fun Finland : Ind (both Country EuropeanNation); - -fun France : Ind (both Country EuropeanNation); - -fun FrenchGuiana : Ind (both Country (both LandArea DependencyOrSpecialSovereigntyArea)) ; - -fun Gabon : Ind (both Country Nation); - -fun Gambia : Ind (both Country Nation); - -fun Georgia : Ind (both Country Nation); - -fun Germany : Ind (both Country EuropeanNation); - -fun Ghana : Ind (both Country Nation); - -fun Greece : Ind (both Country EuropeanNation); - -fun Grenada : Ind (both Country Nation); - -fun Guatemala : Ind (both Country Nation); - -fun Guinea : Ind (both Country Nation); - -fun Guinea_Bissau : Ind Country ; - -fun Guyana : Ind (both Country Nation); - -fun Haiti : Ind (both Country Nation); - -fun HolySee : Ind (both Country EuropeanNation); - -fun Honduras : Ind (both Country Nation); - -fun Hungary : Ind (both Country Nation); - -fun Iceland : Ind (both Country (both EuropeanNation Island)) ; - -fun India : Ind (both Country Nation); - -fun Indonesia : Ind (both Country Nation); - -fun Iran : Ind (both Country Nation); - -fun Iraq : Ind (both Country Nation); - -fun Ireland : Ind (both Country EuropeanNation); - -fun Islands_Aland : Ind Island ; - -fun Islands_Alderney : Ind Island ; - -fun Islands_Alicudi : Ind Island ; - -fun Islands_Anglesey : Ind Island ; - -fun Islands_Anguilla : Ind Island ; - -fun Islands_Anjouan : Ind Island ; - -fun Islands_Antigua : Ind Island ; - -fun Islands_Arran : Ind Island ; - -fun Islands_Ascension : Ind Island ; - -fun Islands_Aust_Vagoey : Ind Island ; - -fun Islands_BaffinIsland : Ind Island ; - -fun Islands_Bahamas : Ind Island ; - -fun Islands_Bali : Ind Island ; - -fun Islands_BanksIsland : Ind Island ; - -fun Islands_Barbados : Ind Island ; - -fun Islands_Barbuda : Ind Island ; - -fun Islands_Barra : Ind Island ; - -fun Islands_Benbecula : Ind Island ; - -fun Islands_Bermuda : Ind Island ; - -fun Islands_BishopRock : Ind Island ; - -fun Islands_Bohol : Ind Island ; - -fun Islands_Bornholm : Ind Island ; - -fun Islands_CangarooIsland : Ind Island ; - -fun Islands_Cayman : Ind Island ; - -fun Islands_CaymanBrac : Ind Island ; - -fun Islands_Chios : Ind Island ; - -fun Islands_Coll : Ind Island ; - -fun Islands_Colonsay : Ind Island ; - -fun Islands_Cuba : Ind Island ; - -fun Islands_Dagoe : Ind Island ; - -fun Islands_Dominica : Ind Island ; - -fun Islands_EastCaicos : Ind Island ; - -fun Islands_Falster : Ind Island ; - -fun Islands_FernandoPoo : Ind Island ; - -fun Islands_Fidschi : Ind Island ; - -fun Islands_Flores : Ind Island ; - -fun Islands_Formentera : Ind Island ; - -fun Islands_Fuenen : Ind Island ; - -fun Islands_Fuerteventura : Ind Island ; - -fun Islands_Gheschm : Ind Island ; - -fun Islands_Gomera : Ind Island ; - -fun Islands_Gotland : Ind Island ; - -fun Islands_GrKomoro : Ind Island ; - -fun Islands_GranCanaria : Ind Island ; - -fun Islands_GrandCaicos : Ind Island ; - -fun Islands_Grenada : Ind Island ; - -fun Islands_Guadeloupe : Ind Island ; - -fun Islands_Guernsey : Ind Island ; - -fun Islands_Harris : Ind Island ; - -fun Islands_Hawaii : Ind Island ; - -fun Islands_Hierro : Ind Island ; - -fun Islands_Hispaniola : Ind Island ; - -fun Islands_Hokkaido : Ind Island ; - -fun Islands_Honshu : Ind Island ; - -fun Islands_Hoy : Ind Island ; - -fun Islands_Ibiza : Ind Island ; - -fun Islands_Iceland : Ind Island ; - -fun Islands_Ikaria : Ind Island ; - -fun Islands_Iona : Ind Island ; - -fun Islands_Isabela : Ind Island ; - -fun Islands_Islay : Ind Island ; - -fun Islands_IsleofMan : Ind Island ; - -fun Islands_Jamaica : Ind Island ; - -fun Islands_JanMayen : Ind Island ; - -fun Islands_Jersey : Ind Island ; - -fun Islands_Jura : Ind Island ; - -fun Islands_Kauai : Ind Island ; - -fun Islands_Kefallinia : Ind Island ; - -fun Islands_Khark : Ind Island ; - -fun Islands_Kiribati : Ind Island ; - -fun Islands_Korfu : Ind Island ; - -fun Islands_Kos : Ind Island ; - -fun Islands_Kotelnyisland : Ind Island ; - -fun Islands_Kreta : Ind Island ; - -fun Islands_Kyushu : Ind Island ; - -fun Islands_LaPalma : Ind Island ; - -fun Islands_Lampedusa : Ind Island ; - -fun Islands_Lanai : Ind Island ; - -fun Islands_Langeland : Ind Island ; - -fun Islands_Lanzarote : Ind Island ; - -fun Islands_Lavan : Ind Island ; - -fun Islands_Lefkas : Ind Island ; - -fun Islands_Lewis : Ind Island ; - -fun Islands_Leyte : Ind Island ; - -fun Islands_Linosa : Ind Island ; - -fun Islands_Lipari : Ind Island ; - -fun Islands_LittleCayman : Ind Island ; - -fun Islands_Lolland : Ind Island ; - -fun Islands_Lundy : Ind Island ; - -fun Islands_Luzon : Ind Island ; - -fun Islands_Madagaskar : Ind Island ; - -fun Islands_Madeira : Ind Island ; - -fun Islands_Mainland : Ind Island ; - -fun Islands_Mallorca : Ind Island ; - -fun Islands_Malta : Ind Island ; - -fun Islands_MarthasVineyard : Ind Island ; - -fun Islands_Martinique : Ind Island ; - -fun Islands_Maui : Ind Island ; - -fun Islands_Mauritius : Ind Island ; - -fun Islands_Mayotta : Ind Island ; - -fun Islands_MelvilleIsland : Ind Island ; - -fun Islands_Menorca : Ind Island ; - -fun Islands_Mindanao : Ind Island ; - -fun Islands_Mindoro : Ind Island ; - -fun Islands_Mohilla : Ind Island ; - -fun Islands_Molokai : Ind Island ; - -fun Islands_Montserrat : Ind Island ; - -fun Islands_Mull : Ind Island ; - -fun Islands_Nantucket : Ind Island ; - -fun Islands_Nauru : Ind Island ; - -fun Islands_Negros : Ind Island ; - -fun Islands_Nevis : Ind Island ; - -fun Islands_NewCaledonia : Ind Island ; - -fun Islands_NorthCaicos : Ind Island ; - -fun Islands_NorthUlist : Ind Island ; - -fun Islands_Oahu : Ind Island ; - -fun Islands_Oeland : Ind Island ; - -fun Islands_Oesel : Ind Island ; - -fun Islands_Palau : Ind Island ; - -fun Islands_Palawan : Ind Island ; - -fun Islands_Panarea : Ind Island ; - -fun Islands_Panay : Ind Island ; - -fun Islands_Paramuschir : Ind Island ; - -fun Islands_Patmos : Ind Island ; - -fun Islands_PortoSanto : Ind Island ; - -fun Islands_PrinceCharlesIsland : Ind Island ; - -fun Islands_PrinceEdwardIsland : Ind Island ; - -fun Islands_PrinceofWalesIsland : Ind Island ; - -fun Islands_Providenciales : Ind Island ; - -fun Islands_Rhodos : Ind Island ; - -fun Islands_Rhum : Ind Island ; - -fun Islands_Sachalin : Ind Island ; - -fun Islands_SaintKitts : Ind Island ; - -fun Islands_SaintLucia : Ind Island ; - -fun Islands_SaintVincent : Ind Island ; - -fun Islands_Salina : Ind Island ; - -fun Islands_Samar : Ind Island ; - -fun Islands_Samos : Ind Island ; - -fun Islands_SanClementeIsland : Ind Island ; - -fun Islands_SanMiguelIsland : Ind Island ; - -fun Islands_Sanday : Ind Island ; - -fun Islands_SantaCatalinaIsland : Ind Island ; - -fun Islands_SantaCruzIsland : Ind Island ; - -fun Islands_SantaMaria : Ind Island ; - -fun Islands_SantaRosaIsland : Ind Island ; - -fun Islands_SaoMiguel : Ind Island ; - -fun Islands_SaoTomeandPrincipe : Ind Island ; - -fun Islands_Seeland : Ind Island ; - -fun Islands_Shikoku : Ind Island ; - -fun Islands_Skye : Ind Island ; - -fun Islands_SouthRonaldson : Ind Island ; - -fun Islands_SouthUlist : Ind Island ; - -fun Islands_SouthamptonIsland : Ind Island ; - -fun Islands_SriLanka : Ind Island ; - -fun Islands_St_Helena : Ind Island ; - -fun Islands_Staffa : Ind Island ; - -fun Islands_Stromboli : Ind Island ; - -fun Islands_Sumatra : Ind Island ; - -fun Islands_Taiwan : Ind Island ; - -fun Islands_Tasmania : Ind Island ; - -fun Islands_Teneriffa : Ind Island ; - -fun Islands_Tilos : Ind Island ; - -fun Islands_Tiree : Ind Island ; - -fun Islands_Tobago : Ind Island ; - -fun Islands_Tonga : Ind Island ; - -fun Islands_Trinidad : Ind Island ; - -fun Islands_Tuvalu : Ind Island ; - -fun Islands_VancouverIsland : Ind Island ; - -fun Islands_Vanuatu : Ind Island ; - -fun Islands_VictoriaIsland : Ind Island ; - -fun Islands_Vulcano : Ind Island ; - -fun Islands_Westray : Ind Island ; - -fun Islands_Westsamoa : Ind Island ; - -fun Islands_Zakinthos : Ind Island ; - -fun Israel : Ind (both Country Nation); - -fun Italy : Ind (both Country EuropeanNation); - -fun Jamaica : Ind (both Country Nation); - -fun Japan : Ind (both Country (both Nation Island)) ; - -fun Jordan : Ind (both Country Nation); - -fun Kazakstan : Ind Country ; - -fun Kenya : Ind (both Country Nation); - -fun Kiribati : Ind (both Country Nation); - -fun Kuwait : Ind (both Country Nation); - -fun Kyrgyzstan : Ind (both Country Nation); - -fun Lakes_Arresee : Ind Lake ; - -fun Lakes_BarragedeMbakaou : Ind Lake ; - -fun Lakes_Bodensee : Ind Lake ; - -fun Lakes_CaspianSea : Ind Lake ; - -fun Lakes_ChicamaugaLake : Ind Lake ; - -fun Lakes_DaryachehyeNamak : Ind Lake ; - -fun Lakes_Disappointment_Lake : Ind Lake ; - -fun Lakes_F_D_R_Lake : Ind Lake ; - -fun Lakes_GreatBearLake : Ind Lake ; - -fun Lakes_GreatSaltLake : Ind Lake ; - -fun Lakes_GreatSlaveLake : Ind Lake ; - -fun Lakes_HamuneJazMurian : Ind Lake ; - -fun Lakes_Inari : Ind Lake ; - -fun Lakes_Issyk_Kul : Ind Lake ; - -fun Lakes_KentuckyLake : Ind Lake ; - -fun Lakes_LacLeman : Ind Lake ; - -fun Lakes_LagoMaggiore : Ind Lake ; - -fun Lakes_LagodeChapala : Ind Lake ; - -fun Lakes_LagodiComo : Ind Lake ; - -fun Lakes_LagodiGarda : Ind Lake ; - -fun Lakes_LakeAbaya : Ind Lake ; - -fun Lakes_LakeAlbert : Ind Lake ; - -fun Lakes_LakeAmadeus : Ind Lake ; - -fun Lakes_LakeAssale : Ind Lake ; - -fun Lakes_LakeBangweulu : Ind Lake ; - -fun Lakes_LakeCabora_Bassa : Ind Lake ; - -fun Lakes_LakeChilwa : Ind Lake ; - -fun Lakes_LakeEduard : Ind Lake ; - -fun Lakes_LakeErie : Ind Lake ; - -fun Lakes_LakeEtoscha : Ind Lake ; - -fun Lakes_LakeEyasi : Ind Lake ; - -fun Lakes_LakeEyre : Ind Lake ; - -fun Lakes_LakeHuron : Ind Lake ; - -fun Lakes_LakeKainji : Ind Lake ; - -fun Lakes_LakeKalla : Ind Lake ; - -fun Lakes_LakeKariba : Ind Lake ; - -fun Lakes_LakeKioga : Ind Lake ; - -fun Lakes_LakeKivu : Ind Lake ; - -fun Lakes_LakeLeopold_II : Ind Lake ; - -fun Lakes_LakeMackay : Ind Lake ; - -fun Lakes_LakeMakarikari : Ind Lake ; - -fun Lakes_LakeMaracaibo : Ind Lake ; - -fun Lakes_LakeMeade : Ind Lake ; - -fun Lakes_LakeMichigan : Ind Lake ; - -fun Lakes_LakeMweru : Ind Lake ; - -fun Lakes_LakeNaesi : Ind Lake ; - -fun Lakes_LakeNasser : Ind Lake ; - -fun Lakes_LakeNatron : Ind Lake ; - -fun Lakes_LakeNgami : Ind Lake ; - -fun Lakes_LakeNicaragua : Ind Lake ; - -fun Lakes_LakeNipigon : Ind Lake ; - -fun Lakes_LakeNyasa : Ind Lake ; - -fun Lakes_LakeOhrid : Ind Lake ; - -fun Lakes_LakeOkeechobee : Ind Lake ; - -fun Lakes_LakeOntario : Ind Lake ; - -fun Lakes_LakeOri : Ind Lake ; - -fun Lakes_LakePowell : Ind Lake ; - -fun Lakes_LakePrespa : Ind Lake ; - -fun Lakes_LakeRudolph : Ind Lake ; - -fun Lakes_LakeRukwa : Ind Lake ; - -fun Lakes_LakeSaima : Ind Lake ; - -fun Lakes_LakeSkutari : Ind Lake ; - -fun Lakes_LakeStephanie : Ind Lake ; - -fun Lakes_LakeSuat : Ind Lake ; - -fun Lakes_LakeSuperior : Ind Lake ; - -fun Lakes_LakeTahoe : Ind Lake ; - -fun Lakes_LakeTana : Ind Lake ; - -fun Lakes_LakeTanganjika : Ind Lake ; - -fun Lakes_LakeTiticaca : Ind Lake ; - -fun Lakes_LakeTorren : Ind Lake ; - -fun Lakes_LakeTumba : Ind Lake ; - -fun Lakes_LakeUrumiyeh : Ind Lake ; - -fun Lakes_LakeVictoria : Ind Lake ; - -fun Lakes_LakeVolta : Ind Lake ; - -fun Lakes_LakeWilliston : Ind Lake ; - -fun Lakes_LakeWinnipeg : Ind Lake ; - -fun Lakes_LakeWinnipesaukee : Ind Lake ; - -fun Lakes_Maelaren : Ind Lake ; - -fun Lakes_Mjoesen : Ind Lake ; - -fun Lakes_OzeroAral : Ind Lake ; - -fun Lakes_OzeroBaikal : Ind Lake ; - -fun Lakes_OzeroBalchash : Ind Lake ; - -fun Lakes_OzeroChanka : Ind Lake ; - -fun Lakes_OzeroLadoga : Ind Lake ; - -fun Lakes_OzeroOnega : Ind Lake ; - -fun Lakes_OzeroPskovskoje : Ind Lake ; - -fun Lakes_OzeroTaimyr : Ind Lake ; - -fun Lakes_OzeroTschany : Ind Lake ; - -fun Lakes_Paeijaenne : Ind Lake ; - -fun Lakes_Tschadsee : Ind Lake ; - -fun Lakes_Vaenern : Ind Lake ; - -fun Lakes_Vaettern : Ind Lake ; - -fun Laos : Ind (both Country Nation); - -fun Latvia : Ind (both Country Nation); - -fun Lebanon : Ind (both Country Nation); - -fun Lesotho : Ind (both Country Nation); - -fun Liberia : Ind (both Country Nation); - -fun Libya : Ind (both Country Nation); - -fun Liechtenstein : Ind (both Country Nation); - -fun Lithuania : Ind (both Country Nation); - -fun Luxembourg : Ind (both Country Nation); - -fun Macedonia : Ind (both Country Nation); - -fun Madagascar : Ind (both Country Nation); - -fun Malawi : Ind (both Country Nation); - -fun Malaysia : Ind (both Country Nation); - -fun Maldives : Ind (both Country Nation); - -fun Mali : Ind (both Country Nation); - -fun Malta : Ind (both Country EuropeanNation); - -fun MarshallIslands : Ind (both Country Nation); - -fun Mauritania : Ind (both Country Nation); - -fun Mauritius : Ind (both Country Nation); - -fun Mexico : Ind (both Country Nation); - -fun Micronesia : Ind (both Country Nation); - -fun Moldova : Ind (both Country Nation); - -fun Monaco : Ind (both Country EuropeanNation); - -fun Mongolia : Ind (both Country Nation); - -fun Morocco : Ind (both Country Nation); - -fun Mountains_Aconcagua : Ind Mountain ; - -fun Mountains_Bjelucha : Ind Mountain ; - -fun Mountains_BlueMountainPeak : Ind Mountain ; - -fun Mountains_BorahPeak : Ind Mountain ; - -fun Mountains_BoundaryPeak : Ind Mountain ; - -fun Mountains_CathkinPeak : Ind Mountain ; - -fun Mountains_Chimborazo : Ind Mountain ; - -fun Mountains_Citlaltepetl : Ind Mountain ; - -fun Mountains_ClingmansDome : Ind Mountain ; - -fun Mountains_Damavand : Ind Mountain ; - -fun Mountains_DjebelAures : Ind Mountain ; - -fun Mountains_Elbrus : Ind Mountain ; - -fun Mountains_EmiKussi : Ind Mountain ; - -fun Mountains_Fako : Ind Mountain ; - -fun Mountains_Feldberg : Ind Mountain ; - -fun Mountains_Fuji_Yama : Ind Mountain ; - -fun Mountains_Galdhoeppig : Ind Mountain ; - -fun Mountains_GannettPeak : Ind Mountain ; - -fun Mountains_Glittertind : Ind Mountain ; - -fun Mountains_GranitePeak : Ind Mountain ; - -fun Mountains_GrosserArber : Ind Mountain ; - -fun Mountains_Grossglockner : Ind Mountain ; - -fun Mountains_GuadalupePeak : Ind Mountain ; - -fun Mountains_Haltiatunturi : Ind Mountain ; - -fun Mountains_HarneyPeak : Ind Mountain ; - -fun Mountains_Hotaka_Dake : Ind Mountain ; - -fun Mountains_Huascaran : Ind Mountain ; - -fun Mountains_HumphreysPeak : Ind Mountain ; - -fun Mountains_Illampu : Ind Mountain ; - -fun Mountains_JabalMarra : Ind Mountain ; - -fun Mountains_Jezerce : Ind Mountain ; - -fun Mountains_Joekul : Ind Mountain ; - -fun Mountains_Jostedalsbre : Ind Mountain ; - -fun Mountains_Kasbek : Ind Mountain ; - -fun Mountains_Kebnekaise : Ind Mountain ; - -fun Mountains_Kenia : Ind Mountain ; - -fun Mountains_Kilimanjaro : Ind Mountain ; - -fun Mountains_Kinabalu : Ind Mountain ; - -fun Mountains_KingsPeak : Ind Mountain ; - -fun Mountains_Korab : Ind Mountain ; - -fun Mountains_Leuser : Ind Mountain ; - -fun Mountains_Llullaillaco : Ind Mountain ; - -fun Mountains_MaunaKea : Ind Mountain ; - -fun Mountains_Meru : Ind Mountain ; - -fun Mountains_Montblanc : Ind Mountain ; - -fun Mountains_MountEverest : Ind Mountain ; - -fun Mountains_MountGodwinAusten : Ind Mountain ; - -fun Mountains_MountMorrison : Ind Mountain ; - -fun Mountains_Mpika : Ind Mountain ; - -fun Mountains_MtAylmer : Ind Mountain ; - -fun Mountains_MtElbert : Ind Mountain ; - -fun Mountains_MtHood : Ind Mountain ; - -fun Mountains_MtMcKinley : Ind Mountain ; - -fun Mountains_MtMitchell : Ind Mountain ; - -fun Mountains_MtRainier : Ind Mountain ; - -fun Mountains_MtRobson : Ind Mountain ; - -fun Mountains_MtWashington : Ind Mountain ; - -fun Mountains_MtWhitney : Ind Mountain ; - -fun Mountains_Mt_Bogong : Ind Mountain ; - -fun Mountains_Mt_Grebun : Ind Mountain ; - -fun Mountains_Mt_Kosciuszko : Ind Mountain ; - -fun Mountains_NevadodeColima : Ind Mountain ; - -fun Mountains_NevadodeToluca : Ind Mountain ; - -fun Mountains_Oeraefajoekull : Ind Mountain ; - -fun Mountains_PicoDuarte : Ind Mountain ; - -fun Mountains_PikChan_Tengri : Ind Mountain ; - -fun Mountains_PikKarl_Marx : Ind Mountain ; - -fun Mountains_PikKommunizma : Ind Mountain ; - -fun Mountains_PikLenina : Ind Mountain ; - -fun Mountains_PikMoskva : Ind Mountain ; - -fun Mountains_PikPobeda : Ind Mountain ; - -fun Mountains_PikRevoluzija : Ind Mountain ; - -fun Mountains_Popocatepetl : Ind Mountain ; - -fun Mountains_Portefjaellen : Ind Mountain ; - -fun Mountains_Pulog : Ind Mountain ; - -fun Mountains_RasDaschan : Ind Mountain ; - -fun Mountains_Sabalan : Ind Mountain ; - -fun Mountains_Sarektjokko : Ind Mountain ; - -fun Mountains_Semeru : Ind Mountain ; - -fun Mountains_Snoefell : Ind Mountain ; - -fun Mountains_Snoehetta : Ind Mountain ; - -fun Mountains_Sulitjelma : Ind Mountain ; - -fun Mountains_Tahan : Ind Mountain ; - -fun Mountains_Tahat : Ind Mountain ; - -fun Mountains_Tamgak : Ind Mountain ; - -fun Mountains_Tarrekaise : Ind Mountain ; - -fun Mountains_Tubhal : Ind Mountain ; - -fun Mountains_Zugspitze : Ind Mountain ; - -fun Mozambique : Ind (both Country Nation); - -fun Namibia : Ind (both Country Nation); - -fun Nauru : Ind (both Country Nation); - -fun Nepal : Ind (both Country Nation); - -fun Netherlands : Ind (both Country EuropeanNation); - -fun NewCaledonia : Ind (both Country (both LandArea DependencyOrSpecialSovereigntyArea)) ; - -fun NewZealand : Ind (both Country Nation); - -fun Nicaragua : Ind (both Country Nation); - -fun Niger : Ind (both Country Nation); - -fun Nigeria : Ind (both Country Nation); - -fun NorthKorea : Ind (both Country Nation); - -fun Norway : Ind (both Country EuropeanNation); - -fun Oman : Ind (both Country Nation); - -fun Organizations_ABEDA : Ind Organization ; - -fun Organizations_ACC : Ind Organization ; - -fun Organizations_ACCT : Ind Organization ; - -fun Organizations_ACP : Ind Organization ; - -fun Organizations_AFESD : Ind Organization ; - -fun Organizations_AG : Ind Organization ; - -fun Organizations_AL : Ind Organization ; - -fun Organizations_AMF : Ind Organization ; - -fun Organizations_AMU : Ind Organization ; - -fun Organizations_ANC : Ind Organization ; - -fun Organizations_ANZUS : Ind Organization ; - -fun Organizations_APEC : Ind Organization ; - -fun Organizations_ASEAN : Ind Organization ; - -fun Organizations_AfDB : Ind Organization ; - -fun Organizations_AsDB : Ind Organization ; - -fun Organizations_BCIE : Ind Organization ; - -fun Organizations_BDEAC : Ind Organization ; - -fun Organizations_BIS : Ind Organization ; - -fun Organizations_BSEC : Ind Organization ; - -fun Organizations_Benelux : Ind Organization ; - -fun Organizations_C : Ind Organization ; - -fun Organizations_CACM : Ind Organization ; - -fun Organizations_CAEU : Ind Organization ; - -fun Organizations_CBSS : Ind Organization ; - -fun Organizations_CCC : Ind Organization ; - -fun Organizations_CDB : Ind Organization ; - -fun Organizations_CE : Ind Organization ; - -fun Organizations_CEAO : Ind Organization ; - -fun Organizations_CEEAC : Ind Organization ; - -fun Organizations_CEI : Ind Organization ; - -fun Organizations_CEMA : Ind Organization ; - -fun Organizations_CEPGL : Ind Organization ; - -fun Organizations_CERN : Ind Organization ; - -fun Organizations_CIS : Ind Organization ; - -fun Organizations_CP : Ind Organization ; - -fun Organizations_Caricom : Ind Organization ; - -fun Organizations_EADB : Ind Organization ; - -fun Organizations_EBRD : Ind Organization ; - -fun Organizations_ECA : Ind Organization ; - -fun Organizations_ECE : Ind Organization ; - -fun Organizations_ECLAC : Ind Organization ; - -fun Organizations_ECO : Ind Organization ; - -fun Organizations_ECOSOC : Ind Organization ; - -fun Organizations_ECOWAS : Ind Organization ; - -fun Organizations_EFTA : Ind Organization ; - -fun Organizations_EIB : Ind Organization ; - -fun Organizations_EN : Ind Organization ; - -fun Organizations_ESA : Ind Organization ; - -fun Organizations_ESCAP : Ind Organization ; - -fun Organizations_ESCWA : Ind Organization ; - -fun Organizations_EU : Ind Organization ; - -fun Organizations_Entente : Ind Organization ; - -fun Organizations_FAO : Ind Organization ; - -fun Organizations_FZ : Ind Organization ; - -fun Organizations_GCC : Ind Organization ; - -fun Organizations_G_10 : Ind Organization ; - -fun Organizations_G_11 : Ind Organization ; - -fun Organizations_G_15 : Ind Organization ; - -fun Organizations_G_19 : Ind Organization ; - -fun Organizations_G_2 : Ind Organization ; - -fun Organizations_G_24 : Ind Organization ; - -fun Organizations_G_3 : Ind Organization ; - -fun Organizations_G_30 : Ind Organization ; - -fun Organizations_G_33 : Ind Organization ; - -fun Organizations_G_5 : Ind Organization ; - -fun Organizations_G_6 : Ind Organization ; - -fun Organizations_G_7 : Ind Organization ; - -fun Organizations_G_77 : Ind Organization ; - -fun Organizations_G_8 : Ind Organization ; - -fun Organizations_G_9 : Ind Organization ; - -fun Organizations_IADB : Ind Organization ; - -fun Organizations_IAEA : Ind Organization ; - -fun Organizations_IBRD : Ind Organization ; - -fun Organizations_ICAO : Ind Organization ; - -fun Organizations_ICC : Ind Organization ; - -fun Organizations_ICFTU : Ind Organization ; - -fun Organizations_ICJ : Ind Organization ; - -fun Organizations_ICRC : Ind Organization ; - -fun Organizations_ICRM : Ind Organization ; - -fun Organizations_IDA : Ind Organization ; - -fun Organizations_IDB : Ind Organization ; - -fun Organizations_IEA : Ind Organization ; - -fun Organizations_IFAD : Ind Organization ; - -fun Organizations_IFC : Ind Organization ; - -fun Organizations_IFRCS : Ind Organization ; - -fun Organizations_IGADD : Ind Organization ; - -fun Organizations_ILO : Ind Organization ; - -fun Organizations_IMF : Ind Organization ; - -fun Organizations_IMO : Ind Organization ; - -fun Organizations_IOC : Ind Organization ; - -fun Organizations_IOM : Ind Organization ; - -fun Organizations_ISO : Ind Organization ; - -fun Organizations_ITU : Ind Organization ; - -fun Organizations_Inmarsat : Ind Organization ; - -fun Organizations_Intelsat : Ind Organization ; - -fun Organizations_Interpol : Ind Organization ; - -fun Organizations_LAES : Ind Organization ; - -fun Organizations_LAIA : Ind Organization ; - -fun Organizations_MINURSO : Ind Organization ; - -fun Organizations_MTCR : Ind Organization ; - -fun Organizations_MekongGroup : Ind Organization ; - -fun Organizations_Mercosur : Ind Organization ; - -fun Organizations_NAM : Ind Organization ; - -fun Organizations_NATO : Ind Organization ; - -fun Organizations_NC : Ind Organization ; - -fun Organizations_NIB : Ind Organization ; - -fun Organizations_NSG : Ind Organization ; - -fun Organizations_OAPEC : Ind Organization ; - -fun Organizations_OAS : Ind Organization ; - -fun Organizations_OAU : Ind Organization ; - -fun Organizations_OECD : Ind Organization ; - -fun Organizations_OECS : Ind Organization ; - -fun Organizations_OIC : Ind Organization ; - -fun Organizations_OPANAL : Ind Organization ; - -fun Organizations_OPEC : Ind Organization ; - -fun Organizations_OSCE : Ind Organization ; - -fun Organizations_PCA : Ind Organization ; - -fun Organizations_PFP : Ind Organization ; - -fun Organizations_RG : Ind Organization ; - -fun Organizations_SAARC : Ind Organization ; - -fun Organizations_SACU : Ind Organization ; - -fun Organizations_SADC : Ind Organization ; - -fun Organizations_SELA : Ind Organization ; - -fun Organizations_SPC : Ind Organization ; - -fun Organizations_SPF : Ind Organization ; - -fun Organizations_Sparteca : Ind Organization ; - -fun Organizations_UDEAC : Ind Organization ; - -fun Organizations_UN : Ind Organization ; - -fun Organizations_UNAMIR : Ind Organization ; - -fun Organizations_UNAVEMIII : Ind Organization ; - -fun Organizations_UNCRO : Ind Organization ; - -fun Organizations_UNCTAD : Ind Organization ; - -fun Organizations_UNDOF : Ind Organization ; - -fun Organizations_UNDP : Ind Organization ; - -fun Organizations_UNEP : Ind Organization ; - -fun Organizations_UNESCO : Ind Organization ; - -fun Organizations_UNFICYP : Ind Organization ; - -fun Organizations_UNFPA : Ind Organization ; - -fun Organizations_UNHCR : Ind Organization ; - -fun Organizations_UNICEF : Ind Organization ; - -fun Organizations_UNIDO : Ind Organization ; - -fun Organizations_UNIFIL : Ind Organization ; - -fun Organizations_UNIKOM : Ind Organization ; - -fun Organizations_UNITAR : Ind Organization ; - -fun Organizations_UNMIH : Ind Organization ; - -fun Organizations_UNMOGIP : Ind Organization ; - -fun Organizations_UNMOT : Ind Organization ; - -fun Organizations_UNOMIG : Ind Organization ; - -fun Organizations_UNOMIL : Ind Organization ; - -fun Organizations_UNPREDEP : Ind Organization ; - -fun Organizations_UNPROFOR : Ind Organization ; - -fun Organizations_UNRISD : Ind Organization ; - -fun Organizations_UNRWA : Ind Organization ; - -fun Organizations_UNTSO : Ind Organization ; - -fun Organizations_UNU : Ind Organization ; - -fun Organizations_UPU : Ind Organization ; - -fun Organizations_WADB : Ind Organization ; - -fun Organizations_WCL : Ind Organization ; - -fun Organizations_WEU : Ind Organization ; - -fun Organizations_WFC : Ind Organization ; - -fun Organizations_WFP : Ind Organization ; - -fun Organizations_WFTU : Ind Organization ; - -fun Organizations_WHO : Ind Organization ; - -fun Organizations_WIPO : Ind Organization ; - -fun Organizations_WMO : Ind Organization ; - -fun Organizations_WToO : Ind Organization ; - -fun Organizations_WTrO : Ind Organization ; - -fun Organizations_ZC : Ind Organization ; - -fun Pakistan : Ind (both Country Nation); - -fun Palau : Ind (both Country Nation); - -fun Panama : Ind (both Country Nation); - -fun PapuaNewGuinea : Ind (both Country Nation); - -fun Paraguay : Ind (both Country Nation); - -fun Peru : Ind (both Country Nation); - -fun Philippines : Ind (both Country Nation); - -fun Poland : Ind (both Country EuropeanNation); - -fun Portugal : Ind (both Country EuropeanNation); - -fun Province : Class ; - -fun Qatar : Ind (both Country Nation); - -fun Rivers_Ajan_Jurjach : Ind River ; - -fun Rivers_Amazonas : Ind River ; - -fun Rivers_Amudarja : Ind River ; - -fun Rivers_Amur : Ind River ; - -fun Rivers_Anuwimi : Ind River ; - -fun Rivers_Argun : Ind River ; - -fun Rivers_Arkansas : Ind River ; - -fun Rivers_Atbara : Ind River ; - -fun Rivers_Bahrel_Djebel : Ind River ; - -fun Rivers_Bahrel_Gasal : Ind River ; - -fun Rivers_Bani : Ind River ; - -fun Rivers_Baro : Ind River ; - -fun Rivers_Benue : Ind River ; - -fun Rivers_Bija : Ind River ; - -fun Rivers_BlackDrin : Ind River ; - -fun Rivers_BlackIrtysch : Ind River ; - -fun Rivers_BlueNile : Ind River ; - -fun Rivers_Bomu : Ind River ; - -fun Rivers_Busira : Ind River ; - -fun Rivers_Casai : Ind River ; - -fun Rivers_Chatanga : Ind River ; - -fun Rivers_Chire : Ind River ; - -fun Rivers_Colorado : Ind River ; - -fun Rivers_ColumbiaRiver : Ind River ; - -fun Rivers_ConnecticutRiver : Ind River ; - -fun Rivers_Cuango : Ind River ; - -fun Rivers_Cuanza : Ind River ; - -fun Rivers_Cuilo : Ind River ; - -fun Rivers_Cunene : Ind River ; - -fun Rivers_Dalaelv : Ind River ; - -fun Rivers_Djuba : Ind River ; - -fun Rivers_Dnepr : Ind River ; - -fun Rivers_Don : Ind River ; - -fun Rivers_Donau : Ind River ; - -fun Rivers_Drin : Ind River ; - -fun Rivers_Elbe : Ind River ; - -fun Rivers_Fulda : Ind River ; - -fun Rivers_Gambia : Ind River ; - -fun Rivers_Garonne : Ind River ; - -fun Rivers_Gloma : Ind River ; - -fun Rivers_Goetaaelv : Ind River ; - -fun Rivers_GrosserJenissej : Ind River ; - -fun Rivers_Han : Ind River ; - -fun Rivers_HudsonRiver : Ind River ; - -fun Rivers_Hwangho : Ind River ; - -fun Rivers_Ingoda : Ind River ; - -fun Rivers_Irtysch : Ind River ; - -fun Rivers_Ischim : Ind River ; - -fun Rivers_Jangtse_Kiang : Ind River ; - -fun Rivers_Jenissej : Ind River ; - -fun Rivers_JoekulsaaFjoellum : Ind River ; - -fun Rivers_Jug : Ind River ; - -fun Rivers_Kafue : Ind River ; - -fun Rivers_Karun : Ind River ; - -fun Rivers_Katun : Ind River ; - -fun Rivers_Kemijoki : Ind River ; - -fun Rivers_Kitakami : Ind River ; - -fun Rivers_Klaraelv : Ind River ; - -fun Rivers_KleinerJenissej : Ind River ; - -fun Rivers_Kokemaeenjoki : Ind River ; - -fun Rivers_Kolyma : Ind River ; - -fun Rivers_Kulu : Ind River ; - -fun Rivers_Kura : Ind River ; - -fun Rivers_Kwa : Ind River ; - -fun Rivers_Lena : Ind River ; - -fun Rivers_Limpopo : Ind River ; - -fun Rivers_Loire : Ind River ; - -fun Rivers_Lomami : Ind River ; - -fun Rivers_Luangwa : Ind River ; - -fun Rivers_Lukuga : Ind River ; - -fun Rivers_Luvua : Ind River ; - -fun Rivers_Mekong : Ind River ; - -fun Rivers_Mississippi : Ind River ; - -fun Rivers_Missouri : Ind River ; - -fun Rivers_Moldau : Ind River ; - -fun Rivers_Neva : Ind River ; - -fun Rivers_Niger : Ind River ; - -fun Rivers_Nile : Ind River ; - -fun Rivers_NorthernDwina : Ind River ; - -fun Rivers_Ob : Ind River ; - -fun Rivers_Oesterdalaelv : Ind River ; - -fun Rivers_Oka : Ind River ; - -fun Rivers_Onon : Ind River ; - -fun Rivers_Oranje : Ind River ; - -fun Rivers_Orinoco : Ind River ; - -fun Rivers_Oulujoki : Ind River ; - -fun Rivers_Ounasjoki : Ind River ; - -fun Rivers_Paraguay : Ind River ; - -fun Rivers_Parana : Ind River ; - -fun Rivers_Petschora : Ind River ; - -fun Rivers_Pibor : Ind River ; - -fun Rivers_Pjandsh : Ind River ; - -fun Rivers_Rhein : Ind River ; - -fun Rivers_Rhone : Ind River ; - -fun Rivers_RioBalsas : Ind River ; - -fun Rivers_RioGrande : Ind River ; - -fun Rivers_RiodelaPlata : Ind River ; - -fun Rivers_Rufiji : Ind River ; - -fun Rivers_Ruki : Ind River ; - -fun Rivers_Ruvuma : Ind River ; - -fun Rivers_Sanaga : Ind River ; - -fun Rivers_Sanga : Ind River ; - -fun Rivers_Save : Ind River ; - -fun Rivers_Schari : Ind River ; - -fun Rivers_Schilka : Ind River ; - -fun Rivers_Seine : Ind River ; - -fun Rivers_Senegal : Ind River ; - -fun Rivers_Sobat : Ind River ; - -fun Rivers_St_Lorenzstrom : Ind River ; - -fun Rivers_Suchona : Ind River ; - -fun Rivers_Syrdarja : Ind River ; - -fun Rivers_Tana : Ind River ; - -fun Rivers_Thames : Ind River ; - -fun Rivers_Thjorsa : Ind River ; - -fun Rivers_Tobol : Ind River ; - -fun Rivers_Torneaelv : Ind River ; - -fun Rivers_Tshuapa : Ind River ; - -fun Rivers_Ubangi : Ind River ; - -fun Rivers_Uelle : Ind River ; - -fun Rivers_Umeaelv : Ind River ; - -fun Rivers_Ural : Ind River ; - -fun Rivers_Uruguay : Ind River ; - -fun Rivers_Vaal : Ind River ; - -fun Rivers_Vaesterdalaelv : Ind River ; - -fun Rivers_Volga : Ind River ; - -fun Rivers_Volta : Ind River ; - -fun Rivers_WebiSchebeli : Ind River ; - -fun Rivers_Weichsel : Ind River ; - -fun Rivers_Werra : Ind River ; - -fun Rivers_Weser : Ind River ; - -fun Rivers_WesternDwina : Ind River ; - -fun Rivers_WhiteDrin : Ind River ; - -fun Rivers_WhiteNile : Ind River ; - -fun Rivers_Zaire : Ind River ; - -fun Rivers_Zambezi : Ind River ; - -fun Romania : Ind (both Country Nation); - -fun Russia : Ind (both Country Nation); - -fun Rwanda : Ind (both Country Nation); - -fun SaintKittsAndNevis : Ind (both Country Nation); - -fun SaintLucia : Ind (both Country Nation); - -fun SaintVincentAndTheGrenadines : Ind (both Country Nation); - -fun SanMarino : Ind (both Country EuropeanNation); - -fun SaoTomeAndPrincipe : Ind (both Country Nation); - -fun SaudiArabia : Ind (both Country Nation); - -fun Seas_ArabianSea : Ind Sea ; - -fun Seas_ArcticOcean : Ind Sea ; - -fun Seas_AtlanticOcean : Ind Sea ; - -fun Seas_BalticSea : Ind Sea ; - -fun Seas_BlackSea : Ind Sea ; - -fun Seas_CaribbeanSea : Ind Sea ; - -fun Seas_EastChinaSea : Ind Sea ; - -fun Seas_GulfofAden : Ind Sea ; - -fun Seas_GulfofMexico : Ind Sea ; - -fun Seas_IndianOcean : Ind Sea ; - -fun Seas_IrishSea : Ind Sea ; - -fun Seas_MediterraneanSea : Ind Sea ; - -fun Seas_NorthSea : Ind Sea ; - -fun Seas_NorwegianSea : Ind Sea ; - -fun Seas_PacificOcean : Ind Sea ; - -fun Seas_PersianGulf : Ind Sea ; - -fun Seas_RedSea : Ind Sea ; - -fun Seas_SeaofAzov : Ind Sea ; - -fun Seas_SeaofJapan : Ind Sea ; - -fun Seas_SouthChinaSea : Ind Sea ; - -fun Seas_SundaSea : Ind Sea ; - -fun Seas_YellowSea : Ind Sea ; - -fun Senegal : Ind (both Country Nation); - -fun SerbiaAndMontenegro : Ind (both Country Nation); - -fun Seychelles : Ind (both Country Nation); - -fun SierraLeone : Ind (both Country Nation); - -fun Singapore : Ind (both Country Nation); - -fun Slovakia : Ind (both Country Nation); - -fun Slovenia : Ind (both Country Nation); - -fun SolomonIslands : Ind (both Country Nation); - -fun Somalia : Ind (both Country Nation); - -fun SouthAfrica : Ind (both Country Nation); - -fun SouthKorea : Ind (both Country Nation); - -fun Spain : Ind (both Country EuropeanNation); - -fun SriLanka : Ind (both Country Nation); - -fun Sudan : Ind (both Country Nation); - -fun Suriname : Ind (both Country Nation); - -fun Swaziland : Ind (both Country Nation); - -fun Sweden : Ind (both Country EuropeanNation); - -fun Switzerland : Ind (both Country EuropeanNation); - -fun Syria : Ind (both Country Nation); - -fun Taiwan : Ind (both Country Nation); - -fun Tajikistan : Ind (both Country Nation); - -fun Tanzania : Ind (both Country Nation); - -fun Thailand : Ind (both Country Nation); - -fun Togo : Ind (both Country Nation); - -fun Tonga : Ind (both Country Nation); - -fun TrinidadAndTobago : Ind (both Country Nation); - -fun Tunisia : Ind (both Country Nation); - -fun Turkey : Ind (both Country Nation); - -fun Turkmenistan : Ind (both Country Nation); - -fun Tuvalu : Ind (both Country Nation); - -fun Uganda : Ind (both Country Nation); - -fun Ukraine : Ind (both Country Nation); - -fun UnitedArabEmirates : Ind (both Country EuropeanNation); - -fun UnitedKingdom : Ind (both Country Nation); - -fun UnitedStates : Ind (both Country Nation); - -fun Uruguay : Ind (both Country Nation); - -fun Uzbekistan : Ind (both Country Nation); - -fun Vanuatu : Ind (both Country Nation); - -fun Venezuela : Ind (both Country Nation); - -fun Vietnam : Ind (both Country Nation); - -fun WesternSahara : Ind (both Country (both Nation GeopoliticalArea)) ; - -fun WesternSamoa : Ind Country ; - -fun Yemen : Ind (both Country Nation); - -fun Zaire : Ind Country ; - -fun Zambia : Ind (both Country Nation); - -fun flowsInto : El River -> El Sea -> Formula ; - -fun geographicalSubregion : El City -> El Province -> Formula ; - -fun hasHeadq : El Organization -> El City -> Formula ; -} \ No newline at end of file diff --git a/examples/SUMO/mondialEng.gf b/examples/SUMO/mondialEng.gf deleted file mode 100644 index bf673f73c..000000000 --- a/examples/SUMO/mondialEng.gf +++ /dev/null @@ -1,5558 +0,0 @@ ---# -path=.:englishExtended -concrete mondialEng of mondial = BasicEng ** open ParadigmsEng,NounEng in { - -lin - -Countries_H_provinces_Pest = UsePN (mkPN "Pest") ; -Countries_THA_provinces_KamphaengPhet = UsePN (mkPN "Kamphaeng Phet") ; -CapeVerde = UsePN (mkPN "Cape Verde") ; -Countries_USA_provinces_Illinois_cities_Naperville = UsePN (mkPN "Naperville") ; -Countries_USA_provinces_NorthCarolina_cities_Greensboro = UsePN (mkPN "Greensboro") ; -Countries_EAK_provinces_RiftValley_cities_Nakuru = UsePN (mkPN "Nakuru") ; -Countries_TJ_provinces_Guangdong_cities_Shenzhen = UsePN (mkPN "Shenzhen") ; -Islands_St_Helena = UsePN (mkPN "St. Helena") ; -Countries_F_provinces_IledeFrance_cities_BoulogneBillancourt = UsePN (mkPN "Boulogne Billancourt") ; -Countries_ETH_cities_Nazret = UsePN (mkPN "Nazret") ; -Countries_IR_provinces_AzarbayianeGharbt_cities_Khvoy = UsePN (mkPN "Khvoy") ; -Countries_TJ_provinces_Jilin_cities_Jilin = UsePN (mkPN "Jilin") ; -Countries_ES_provinces_Sonsonate_cities_Sonsonate = UsePN (mkPN "Sonsonate") ; -Countries_H_provinces_Heves = UsePN (mkPN "Heves") ; -Countries_UA_provinces_Odeska = UsePN (mkPN "Odeska") ; -Countries_BR_provinces_SaoPaulo_cities_Guarulhos = UsePN (mkPN "Guarulhos") ; -Countries_TJ_provinces_NeiMonggol_cities_Yakeshi = UsePN (mkPN "Yakeshi") ; -Countries_THA_provinces_SaKaeo = UsePN (mkPN "Sa Kaeo") ; -Countries_YV_provinces_Trujillo = UsePN (mkPN "Trujillo") ; -Countries_N_provinces_Hordaland_cities_Bergen = UsePN (mkPN "Bergen") ; -Countries_RO_provinces_Suceava = UsePN (mkPN "Suceava") ; -Countries_TJ_provinces_Hubei_cities_Puqi = UsePN (mkPN "Puqi") ; -Countries_RSA_provinces_Gauteng_cities_Soweto = UsePN (mkPN "Soweto") ; -Countries_TR_provinces_Giresun_cities_Giresun = UsePN (mkPN "Giresun") ; -Islands_Anguilla = UsePN (mkPN "Anguilla") ; -Countries_J_provinces_Fukushima = UsePN (mkPN "Fukushima") ; -Islands_SaintLucia = UsePN (mkPN "Saint Lucia") ; -Zaire = UsePN (mkPN "Zaire") ; -Countries_NOK_cities_Sunchon = UsePN (mkPN "Sunchon") ; -Countries_RI_cities_Binjai = UsePN (mkPN "Binjai") ; -Countries_S_provinces_Sodermanland_cities_Nykoping = UsePN (mkPN "Nykoping") ; -Countries_cid_cia_Aruba = UsePN (mkPN "Aruba") ; -Countries_HCA_provinces_Atlantida_cities_LaCeiba = UsePN (mkPN "La Ceiba") ; -Countries_C_provinces_IsladelaJuventud_cities_NuevaGerona = UsePN (mkPN "Nueva Gerona") ; -Countries_TR_provinces_Mugla_cities_Mugla = UsePN (mkPN "Mugla") ; -Countries_IND_provinces_HimachalPradesh_cities_Simla = UsePN (mkPN "Simla") ; -Countries_BR_provinces_SantaCatarina_cities_Blumenau = UsePN (mkPN "Blumenau") ; -Countries_D_provinces_Hessen_cities_Wiesbaden = UsePN (mkPN "Wiesbaden") ; -Countries_BD_cities_Saidpur = UsePN (mkPN "Saidpur") ; -Islands_PortoSanto = UsePN (mkPN "Porto Santo") ; -Countries_TJ_provinces_Jiangsu_cities_Huaian = UsePN (mkPN "Huaian") ; -Countries_RO_provinces_Tulcea_cities_Tulcea = UsePN (mkPN "Tulcea") ; -Countries_HCA_provinces_Copan = UsePN (mkPN "Copan") ; -Countries_PK_cities_Sheikhupura = UsePN (mkPN "Sheikhupura") ; -Countries_IRQ_provinces_Ninawa_cities_Mosul = UsePN (mkPN "Mosul") ; -Countries_CZ_provinces_Jihocesky_cities_CeskeBudejovice = UsePN (mkPN "Ceske Budejovice") ; -Countries_PL_provinces_Lodzkie_cities_Lodz = UsePN (mkPN "Lodz") ; -Countries_MS_cities_PortLouis = UsePN (mkPN "Port Louis") ; -Organizations_G_5 = UsePN (mkPN "Group of 5") ; -Countries_R_provinces_Rep_ofBashkortostan_cities_Oktyabrsky = UsePN (mkPN "Oktyabrsky") ; -Countries_D_provinces_Hessen_cities_FrankfurtamMain = UsePN (mkPN "Frankfurt am Main") ; -Countries_CDN_provinces_NewBrunswick = UsePN (mkPN "New Brunswick") ; -Countries_IS_cities_Reykjavik = UsePN (mkPN "Reykjavik") ; -Countries_GB_provinces_Swansea = UsePN (mkPN "Swansea") ; -Countries_GB_provinces_Flintshire_cities_Mold = UsePN (mkPN "Mold") ; -Countries_USA_provinces_Indiana_cities_FortWayne = UsePN (mkPN "Fort Wayne") ; -Countries_IND_provinces_WestBengal_cities_Calcutta = UsePN (mkPN "Calcutta") ; -Countries_ET_provinces_BurSaid_munic = UsePN (mkPN "Bur Said (munic.)") ; -Countries_RP_cities_Makati = UsePN (mkPN "Makati") ; -Countries_I_provinces_Puglia_cities_Taranto = UsePN (mkPN "Taranto") ; -Countries_I_provinces_ValledAosta_cities_Aosta = UsePN (mkPN "Aosta") ; -Countries_I_provinces_FriuliVeneziaGiulia = UsePN (mkPN "Friuli Venezia Giulia") ; -Countries_UZB_provinces_Toshkent = UsePN (mkPN "Toshkent") ; -Countries_BG_cities_Sofia = UsePN (mkPN "Sofia") ; -Countries_BR_provinces_MatoGrosso_cities_Cuiaba = UsePN (mkPN "Cuiaba") ; -Countries_YV_cities_SantaAnadeCoro = UsePN (mkPN "Santa Ana de Coro") ; -Countries_USA_provinces_Michigan_cities_GrandRapids = UsePN (mkPN "Grand Rapids") ; -Countries_PA_provinces_Panama_cities_PanamaCity = UsePN (mkPN "Panama City") ; -Countries_GB_provinces_Wiltshire = UsePN (mkPN "Wiltshire") ; -Countries_R_provinces_Rep_ofAltay_cities_GornoAltaysk = UsePN (mkPN "Gorno Altaysk") ; -Countries_TAD_provinces_Khatlon_cities_Qurghonteppa = UsePN (mkPN "Qurghonteppa") ; -Countries_IR_provinces_AzarbayianeGharbt_cities_Orumiyeh = UsePN (mkPN "Orumiyeh") ; -Countries_TR_provinces_Aksaray_cities_Aksaray = UsePN (mkPN "Aksaray") ; -Countries_KAZ_provinces_Qostanay_cities_Rudny = UsePN (mkPN "Rudny") ; -Countries_CO_provinces_Caldas = UsePN (mkPN "Caldas") ; -Countries_ET_provinces_Aswan = UsePN (mkPN "Aswan") ; -Gambia = UsePN (mkPN "Gambia") ; -Countries_EAT_provinces_Arusha = UsePN (mkPN "Arusha") ; -Countries_UA_provinces_Dnipropetrovska = UsePN (mkPN "Dnipropetrovska") ; -Countries_ET_provinces_Ismailiya_cities_Ismailiya = UsePN (mkPN "Ismailiya") ; -Countries_RO_provinces_Arad_cities_Arad = UsePN (mkPN "Arad") ; -Islands_NewCaledonia = UsePN (mkPN "New Caledonia") ; -Countries_cid_cia_Pitcairn_Islands_cities_Adamstown = UsePN (mkPN "Adamstown") ; -Countries_TR_provinces_Sinop_cities_Sinop = UsePN (mkPN "Sinop") ; -Organizations_ICRC = UsePN (mkPN "International Committee of the Red Cross") ; -Countries_IND_provinces_UttarPradesh_cities_Lucknow = UsePN (mkPN "Lucknow") ; -Islands_Barbuda = UsePN (mkPN "Barbuda") ; -Countries_RO_provinces_Cluj = UsePN (mkPN "Cluj") ; -Countries_N_provinces_VestAgder = UsePN (mkPN "Vest Agder") ; -Countries_AUS_provinces_AustraliaCapitalTerritory_cities_Canberra = UsePN (mkPN "Canberra") ; -Countries_GB_provinces_Hampshire = UsePN (mkPN "Hampshire") ; -Countries_VN_cities_HongGai = UsePN (mkPN "Hong Gai") ; -Countries_RA_provinces_Chaco = UsePN (mkPN "Chaco") ; -Rivers_Colorado = UsePN (mkPN "Colorado") ; -Countries_PA_provinces_Cocle_cities_Penonome = UsePN (mkPN "Penonome") ; -Countries_R_provinces_ChechenRep__cities_Grozny = UsePN (mkPN "Grozny") ; -Countries_USA_provinces_Pennsylvania_cities_Erie = UsePN (mkPN "Erie") ; -Countries_NL_provinces_Limburg = UsePN (mkPN "Limburg") ; -Countries_UA_provinces_Volynska = UsePN (mkPN "Volynska") ; -Countries_R_provinces_Ulyanovskayaoblast = UsePN (mkPN "Ulyanovskaya oblast") ; -Countries_GB_provinces_GreaterManchester_cities_Stockport = UsePN (mkPN "Stockport") ; -Countries_MYA_provinces_Kachin = UsePN (mkPN "Kachin") ; -Countries_D_provinces_NordrheinWestfalen_cities_Munster = UsePN (mkPN "Munster") ; -Countries_VN_provinces_NgheAn = UsePN (mkPN "Nghe An") ; -Countries_TR_provinces_Kayseri = UsePN (mkPN "Kayseri") ; -Countries_TJ_provinces_Jilin_cities_Jiutai = UsePN (mkPN "Jiutai") ; -Countries_J_provinces_Yamanashi = UsePN (mkPN "Yamanashi") ; -Countries_RC_provinces_Tainan = UsePN (mkPN "Tainan") ; -Countries_C_provinces_VillaClara = UsePN (mkPN "Villa Clara") ; -Countries_BR_cities_Hortolandia = UsePN (mkPN "Hortolandia") ; -Congo = UsePN (mkPN "Congo") ; -Countries_USA_provinces_NewYork_cities_Syracuse = UsePN (mkPN "Syracuse") ; -Mountains_Haltiatunturi = UsePN (mkPN "Haltiatunturi") ; -Seas_IndianOcean = UsePN (mkPN "Indian Ocean") ; -Islands_Gotland = UsePN (mkPN "Gotland") ; -Countries_J_provinces_Kagawa_cities_Takamatsu = UsePN (mkPN "Takamatsu") ; -Countries_TR_provinces_Kutahya = UsePN (mkPN "Kutahya") ; -Countries_BR_provinces_Parana_cities_Guarapuava = UsePN (mkPN "Guarapuava") ; -Organizations_PCA = UsePN (mkPN "Permanent Court of Arbitration") ; -Rivers_Jangtse_Kiang = UsePN (mkPN "Jangtse-Kiang") ; -Countries_CAM_provinces_Ouest = UsePN (mkPN "Ouest") ; -Countries_ROK_cities_Kunsan = UsePN (mkPN "Kunsan") ; -Organizations_ASEAN = UsePN (mkPN "Association of Southeast Asian Nations") ; -Islands_Islay = UsePN (mkPN "Islay") ; -Deserts_GrandErgOuest = UsePN (mkPN "Grand Erg Ouest") ; -Countries_MA_cities_Rabat = UsePN (mkPN "Rabat") ; -Countries_ES_provinces_SanSalvador_cities_SanSalvador = UsePN (mkPN "San Salvador") ; -Countries_IR_provinces_Gilan = UsePN (mkPN "Gilan") ; -Countries_E_provinces_Galicia_cities_SantiagodeCompostella = UsePN (mkPN "Santiago de Compostella") ; -Countries_SF_provinces_Aland = UsePN (mkPN "Aland") ; -Countries_HCA_provinces_Comayagua_cities_Comayagua = UsePN (mkPN "Comayagua") ; -Countries_RSA_cities_Benoni = UsePN (mkPN "Benoni") ; -Countries_TJ_provinces_Jiangsu_cities_Wuxi = UsePN (mkPN "Wuxi") ; -Countries_WAN_cities_Ogbomosho = UsePN (mkPN "Ogbomosho") ; -Countries_MEX_provinces_Chihuahua_cities_Juarez = UsePN (mkPN "Juarez") ; -Countries_cid_cia_Saint_Helena = UsePN (mkPN "Saint Helena") ; -Countries_TJ_provinces_Shaanxi_cities_Xian = UsePN (mkPN "Xian") ; -Countries_TJ_provinces_NeiMonggol = UsePN (mkPN "Nei Monggol") ; -Countries_SF_provinces_Uusimaa = UsePN (mkPN "Uusimaa") ; -Countries_D_provinces_Hessen_cities_OffenbachamMain = UsePN (mkPN "Offenbach am Main") ; -Countries_TJ_provinces_Fujian_cities_Longyan = UsePN (mkPN "Longyan") ; -Countries_CH_provinces_BE_cities_Biel = UsePN (mkPN "Biel") ; -Countries_KAZ_provinces_Aqtobe = UsePN (mkPN "Aqtobe") ; -Countries_WAN_cities_Ikirun = UsePN (mkPN "Ikirun") ; -Countries_TJ_provinces_Jiangsu_cities_Yancheng = UsePN (mkPN "Yancheng") ; -Countries_UA_provinces_IvanoFrankivska_cities_IvanoFrankivsk = UsePN (mkPN "Ivano Frankivsk") ; -Countries_GB_provinces_Bedfordshire = UsePN (mkPN "Bedfordshire") ; -Countries_P_provinces_Braga_cities_Braga = UsePN (mkPN "Braga") ; -Countries_BR_provinces_Rondonia = UsePN (mkPN "Rondonia") ; -Countries_RSA_provinces_NorthernProvince_cities_Pietersburg = UsePN (mkPN "Pietersburg") ; -Countries_CH_provinces_SZ_cities_Schwyz = UsePN (mkPN "Schwyz") ; -Countries_PE_provinces_Ica = UsePN (mkPN "Ica") ; -Countries_IND_provinces_Rajasthan_cities_Ajmer = UsePN (mkPN "Ajmer") ; -Countries_F_provinces_ProvenceCotedAzur_cities_AixenProvence = UsePN (mkPN "Aix en Provence") ; -Lakes_LakeNasser = UsePN (mkPN "Lake Nasser") ; -Countries_TJ_provinces_Shandong_cities_Laiwu = UsePN (mkPN "Laiwu") ; -Countries_GB_provinces_Surrey_cities_Guildford = UsePN (mkPN "Guildford") ; -Countries_WAN_cities_Ife = UsePN (mkPN "Ife") ; -Countries_E_provinces_Andalusia_cities_JerezdelaFrontera = UsePN (mkPN "Jerez de la Frontera") ; -Mountains_Jostedalsbre = UsePN (mkPN "Jostedalsbre") ; -Rivers_Mississippi = UsePN (mkPN "Mississippi") ; -Countries_R_provinces_Sverdlovskayaoblast = UsePN (mkPN "Sverdlovskaya oblast") ; -Countries_YU_cities_Belgrade = UsePN (mkPN "Belgrade") ; -Countries_ET_provinces_ElBuhayra_cities_Damanhur = UsePN (mkPN "Damanhur") ; -Countries_MEX_provinces_Hidalgo_cities_PachucadeSoto = UsePN (mkPN "Pachuca de Soto") ; -Countries_TJ_provinces_Guangdong_cities_Chaozhou = UsePN (mkPN "Chaozhou") ; -Countries_H_provinces_Szeged_munic = UsePN (mkPN "Szeged (munic.)") ; -Countries_MEX_provinces_Oaxaca = UsePN (mkPN "Oaxaca") ; -Countries_USA_provinces_Oregon = UsePN (mkPN "Oregon") ; -Countries_SF_provinces_Kymi = UsePN (mkPN "Kymi") ; -Countries_KAZ_provinces_Aqmola = UsePN (mkPN "Aqmola") ; -Countries_R_provinces_Penzenskayaoblast = UsePN (mkPN "Penzenskaya oblast") ; -Countries_USA_provinces_Oregon_cities_Salem = UsePN (mkPN "Salem") ; -Countries_USA_provinces_Connecticut_cities_NewHaven = UsePN (mkPN "New Haven") ; -Countries_R_provinces_Arkhangelskayaoblast_cities_Severodvinsk = UsePN (mkPN "Severodvinsk") ; -Countries_I_provinces_EmiliaRomagna_cities_Parma = UsePN (mkPN "Parma") ; -Countries_TJ_provinces_Hubei_cities_Echeng = UsePN (mkPN "Echeng") ; -Countries_PL_provinces_Torunskie_cities_Grudziadz = UsePN (mkPN "Grudziadz") ; -Ireland = UsePN (mkPN "Ireland") ; -Countries_USA_provinces_Florida_cities_Orlando = UsePN (mkPN "Orlando") ; -Countries_YV_provinces_Zulia_cities_Cabimas = UsePN (mkPN "Cabimas") ; -Countries_GB_provinces_Lancashire_cities_Blackpool = UsePN (mkPN "Blackpool") ; -Countries_S_provinces_Kopparberg_cities_Falun = UsePN (mkPN "Falun") ; -Countries_TJ_provinces_Henan_cities_Puyang = UsePN (mkPN "Puyang") ; -Countries_R_provinces_Kemerovskayaoblast_cities_Prokopyevsk = UsePN (mkPN "Prokopyevsk") ; -Countries_D_provinces_Sachsen_cities_Dresden = UsePN (mkPN "Dresden") ; -Lakes_LakeAmadeus = UsePN (mkPN "Lake Amadeus") ; -Islands_Maui = UsePN (mkPN "Maui") ; -Countries_F_provinces_LanguedocRousillon_cities_Montpellier = UsePN (mkPN "Montpellier") ; -Countries_PL_provinces_Olsztynskie = UsePN (mkPN "Olsztynskie") ; -Countries_UZB_provinces_Samarqand_cities_Samarqand = UsePN (mkPN "Samarqand") ; -Countries_USA_provinces_California_cities_CostaMesa = UsePN (mkPN "Costa Mesa") ; -Countries_IRQ_provinces_Baghdad = UsePN (mkPN "Baghdad") ; -Countries_THA_provinces_ChiangRai = UsePN (mkPN "Chiang Rai") ; -Countries_IND_provinces_UttarPradesh = UsePN (mkPN "Uttar Pradesh") ; -Countries_TR_provinces_Bayburt = UsePN (mkPN "Bayburt") ; -Countries_F_provinces_ProvenceCotedAzur_cities_Toulon = UsePN (mkPN "Toulon") ; -Countries_TJ_provinces_Jilin_cities_Dunhua = UsePN (mkPN "Dunhua") ; -Countries_TR_provinces_Icel_cities_Tarsus = UsePN (mkPN "Tarsus") ; -Countries_TR_provinces_Antalya = UsePN (mkPN "Antalya") ; -Countries_USA_provinces_Virginia_cities_Portsmouth = UsePN (mkPN "Portsmouth") ; -Countries_I_provinces_Puglia_cities_Foggia = UsePN (mkPN "Foggia") ; -Countries_P_provinces_Lisbon_cities_Amadora = UsePN (mkPN "Amadora") ; -Countries_BR_provinces_SaoPaulo_cities_RibeiraoPires = UsePN (mkPN "Ribeirao Pires") ; -Countries_USA_provinces_Indiana = UsePN (mkPN "Indiana") ; -Islands_Jura = UsePN (mkPN "Jura") ; -Countries_S_provinces_Gotland_cities_Visby = UsePN (mkPN "Visby") ; -Countries_UA_provinces_Lvivska = UsePN (mkPN "Lvivska") ; -Countries_PL_provinces_Wloclawskie_cities_Wloclawek = UsePN (mkPN "Wloclawek") ; -Countries_USA_provinces_Michigan_cities_Warren = UsePN (mkPN "Warren") ; -Organizations_IFC = UsePN (mkPN "International Finance Corporation") ; -DominicanRepublic = UsePN (mkPN "Dominican Republic") ; -Countries_TJ_provinces_Guangdong_cities_Meixian = UsePN (mkPN "Meixian") ; -Countries_GB_provinces_IsleofWight = UsePN (mkPN "Isle of Wight") ; -Countries_USA_provinces_NewYork_cities_Buffalo = UsePN (mkPN "Buffalo") ; -Countries_PE_provinces_Huancavelica = UsePN (mkPN "Huancavelica") ; -Countries_VN_provinces_KonTum = UsePN (mkPN "Kon Tum") ; -Islands_Negros = UsePN (mkPN "Negros") ; -Deserts_ErgSchesch = UsePN (mkPN "Erg Schesch") ; -Countries_TJ_provinces_Fujian_cities_Quanzhou = UsePN (mkPN "Quanzhou") ; -Countries_UAE_cities_Sharjah = UsePN (mkPN "Sharjah") ; -Countries_IND_provinces_MadhyaPradesh_cities_Jabalpur = UsePN (mkPN "Jabalpur") ; -Countries_ES_provinces_Cuscatlan = UsePN (mkPN "Cuscatlan") ; -Countries_cid_cia_Jersey_cities_SaintHelier = UsePN (mkPN "Saint Helier") ; -Mountains_MaunaKea = UsePN (mkPN "Mauna Kea") ; -Countries_TJ_provinces_Shanxi_cities_Yangquan = UsePN (mkPN "Yangquan") ; -Countries_cid_cia_Wallis_and_Futuna = UsePN (mkPN "Wallis and Futuna") ; -Countries_BR_provinces_RiodeJaneiro_cities_CaboFrio = UsePN (mkPN "Cabo Frio") ; -Rivers_Atbara = UsePN (mkPN "Atbara") ; -Countries_BR_provinces_RioGrandedoSul_cities_SaoLeopoldo = UsePN (mkPN "Sao Leopoldo") ; -Countries_IND_provinces_DadraandNagarHaveli = UsePN (mkPN "Dadra and Nagar Haveli") ; -Countries_RA_provinces_BuenosAires_cities_GeneralSanMartin = UsePN (mkPN "General San Martin") ; -Countries_UA_provinces_Khmelnytska = UsePN (mkPN "Khmelnytska") ; -Countries_F_provinces_Centre_cities_Orleans = UsePN (mkPN "Orleans") ; -Countries_BR_provinces_SaoPaulo_cities_Itaquaquecetuba = UsePN (mkPN "Itaquaquecetuba") ; -Rivers_Kulu = UsePN (mkPN "Kulu") ; -Countries_MEX_provinces_Sonora_cities_CiudadObregon = UsePN (mkPN "Ciudad Obregon") ; -Countries_TJ_provinces_NeiMonggol_cities_Hailar = UsePN (mkPN "Hailar") ; -Countries_AG_cities_SaintJohns = UsePN (mkPN "Saint Johns") ; -Countries_FJI_cities_Suva = UsePN (mkPN "Suva") ; -Countries_ANG_provinces_LundaSul_cities_Saurimo = UsePN (mkPN "Saurimo") ; -Countries_PE_provinces_Loreto_cities_Iquitos = UsePN (mkPN "Iquitos") ; -Countries_SUD_provinces_alKhartum_cities_Omdurman = UsePN (mkPN "Omdurman") ; -Countries_KAZ_provinces_Mangghystau = UsePN (mkPN "Mangghystau") ; -Mountains_Tahat = UsePN (mkPN "Tahat") ; -Organizations_UNU = UsePN (mkPN "United Nations University") ; -Countries_EAK_provinces_NorthEastern = UsePN (mkPN "North Eastern") ; -Countries_WAN_cities_Maiduguri = UsePN (mkPN "Maiduguri") ; -Countries_NL_provinces_Overijssel_cities_Enschede = UsePN (mkPN "Enschede") ; -Countries_GQ_cities_Malabo = UsePN (mkPN "Malabo") ; -Countries_TJ_provinces_Shaanxi_cities_Baoji = UsePN (mkPN "Baoji") ; -Countries_H_provinces_Fejer = UsePN (mkPN "Fejer") ; -Mountains_KingsPeak = UsePN (mkPN "Kings Peak") ; -Countries_PL_provinces_Bialskopodlaskie_cities_BialaPodlaska = UsePN (mkPN "Biala Podlaska") ; -Countries_IL_provinces_Central_cities_Ramla = UsePN (mkPN "Ramla") ; -Countries_TR_provinces_Sirnak_cities_Sirnak = UsePN (mkPN "Sirnak") ; -Countries_J_provinces_Nagasaki = UsePN (mkPN "Nagasaki") ; -Countries_EAT_provinces_Mtwara_cities_MtwaraMikandani = UsePN (mkPN "Mtwara Mikandani") ; -Countries_RO_provinces_Botosani_cities_Botosani = UsePN (mkPN "Botosani") ; -Countries_TR_provinces_Gaziantep_cities_Gaziantep = UsePN (mkPN "Gaziantep") ; -Countries_EAT_provinces_Mara = UsePN (mkPN "Mara") ; -Countries_BRN_cities_Manama = UsePN (mkPN "Manama") ; -Lakes_Bodensee = UsePN (mkPN "Bodensee") ; -Countries_NAU_cities_Yaren = UsePN (mkPN "Yaren") ; -Countries_NOK_cities_Chongjin = UsePN (mkPN "Chongjin") ; -Countries_E_provinces_Aragon_cities_Zaragoza = UsePN (mkPN "Zaragoza") ; -Countries_GB_provinces_Nottinghamshire_cities_Mansfield = UsePN (mkPN "Mansfield") ; -Countries_USA_provinces_Kentucky_cities_LexingtonFayette = UsePN (mkPN "Lexington Fayette") ; -Countries_PE_provinces_Lambayeque = UsePN (mkPN "Lambayeque") ; -Countries_Z_provinces_Western_cities_Mongu = UsePN (mkPN "Mongu") ; -Countries_R_provinces_Ulyanovskayaoblast_cities_Simbirsk = UsePN (mkPN "Simbirsk") ; -Countries_ANG_provinces_LundaSul = UsePN (mkPN "Lunda Sul") ; -Rivers_Ruvuma = UsePN (mkPN "Ruvuma") ; -Countries_TJ_provinces_Shandong_cities_Zhucheng = UsePN (mkPN "Zhucheng") ; -Countries_BR_provinces_Pernambuco_cities_Paulista = UsePN (mkPN "Paulista") ; -Djibouti = UsePN (mkPN "Djibouti") ; -Countries_RI_cities_Semarang = UsePN (mkPN "Semarang") ; -Countries_IRQ_provinces_Karbala = UsePN (mkPN "Karbala") ; -Countries_PL_provinces_Jeleniogorskie_cities_JeleniaGora = UsePN (mkPN "Jelenia Gora") ; -Brunei = UsePN (mkPN "Brunei") ; -Countries_TR_provinces_Bayburt_cities_Bayburt = UsePN (mkPN "Bayburt") ; -Countries_IND_provinces_Orissa_cities_Bhubaneswar = UsePN (mkPN "Bhubaneswar") ; -Mountains_PikMoskva = UsePN (mkPN "Pik Moskva") ; -Countries_D_provinces_NordrheinWestfalen_cities_Recklinghausen = UsePN (mkPN "Recklinghausen") ; -Countries_IRQ_provinces_AnNajaf_cities_AnNajaf = UsePN (mkPN "An Najaf") ; -Countries_TR_provinces_Hakkari_cities_Hakkari = UsePN (mkPN "Hakkari") ; -Countries_BR_provinces_MinasGerais_cities_Varginha = UsePN (mkPN "Varginha") ; -Countries_H_provinces_Debrecen_munic_cities_Debrecen = UsePN (mkPN "Debrecen") ; -Rivers_Benue = UsePN (mkPN "Benue") ; -Countries_TJ_provinces_Hubei_cities_Xianning = UsePN (mkPN "Xianning") ; -Organizations_Interpol = UsePN (mkPN "International Criminal Police Organization") ; -Countries_USA_provinces_Iowa_cities_DesMoines = UsePN (mkPN "Des Moines") ; -Countries_TJ_provinces_Jiangsu_cities_Yangzhou = UsePN (mkPN "Yangzhou") ; -Islands_Molokai = UsePN (mkPN "Molokai") ; -Organizations_EFTA = UsePN (mkPN "European Free Trade Association") ; -Organizations_SELA = UsePN (mkPN "Sistema Economico Latinoamericana") ; -Countries_E_provinces_Murcia_cities_Cartagena = UsePN (mkPN "Cartagena") ; -Countries_USA_provinces_Nevada_cities_Reno = UsePN (mkPN "Reno") ; -Countries_PL_provinces_Krosnienskie = UsePN (mkPN "Krosnienskie") ; -Countries_S_provinces_Malmohus = UsePN (mkPN "Malmohus") ; -Countries_ES_cities_Mejicanos = UsePN (mkPN "Mejicanos") ; -Countries_IRQ_provinces_Diyala_cities_Baqubah = UsePN (mkPN "Baqubah") ; -Islands_Lampedusa = UsePN (mkPN "Lampedusa") ; -Countries_CH_provinces_NW = UsePN (mkPN "NW") ; -Islands_Panay = UsePN (mkPN "Panay") ; -Seas_GulfofAden = UsePN (mkPN "Gulf of Aden") ; -Countries_J_provinces_Tottori = UsePN (mkPN "Tottori") ; -Countries_N_provinces_Nordland_cities_Bodoe = UsePN (mkPN "Bodoe") ; -Countries_MYA_provinces_Sagaing_cities_Sagaing = UsePN (mkPN "Sagaing") ; -Countries_J_provinces_Wakayama_cities_Wakayama = UsePN (mkPN "Wakayama") ; -Countries_TR_provinces_Kocaeli_cities_Kocaeli = UsePN (mkPN "Kocaeli") ; -Countries_NL_provinces_NoordBrabant_cities_Tilburg = UsePN (mkPN "Tilburg") ; -Countries_HCA_provinces_Valle_cities_Nacaome = UsePN (mkPN "Nacaome") ; -Countries_P_provinces_Madeira = UsePN (mkPN "Madeira") ; -Countries_PL_provinces_Elblaskie = UsePN (mkPN "Elblaskie") ; -Countries_USA_provinces_Kansas_cities_Topeka = UsePN (mkPN "Topeka") ; -Countries_N_provinces_Oslo_cities_Oslo = UsePN (mkPN "Oslo") ; -Countries_IND_provinces_AndamanandNicobarIs_ = UsePN (mkPN "Andaman and Nicobar Is.") ; -Countries_GB_provinces_BlaenauGwent_cities_EbbwVale = UsePN (mkPN "Ebbw Vale") ; -Countries_THA_provinces_Phatthalung = UsePN (mkPN "Phatthalung") ; -Countries_GB_provinces_Lothian_cities_Edinburgh = UsePN (mkPN "Edinburgh") ; -Countries_USA_provinces_Texas_cities_McAllen = UsePN (mkPN "McAllen") ; -Countries_MEX_provinces_Tamaulipas_cities_Matamoros = UsePN (mkPN "Matamoros") ; -Countries_RI_cities_Padang = UsePN (mkPN "Padang") ; -Countries_GB_provinces_NorthYorkshire_cities_York = UsePN (mkPN "York") ; -Countries_R_provinces_Moskovskayaoblast_cities_Odintsovo = UsePN (mkPN "Odintsovo") ; -Countries_GB_provinces_WestYorkshire_cities_Leeds = UsePN (mkPN "Leeds") ; -Organizations_UNRISD = UsePN (mkPN "United Nations Research Institute for Social Development") ; -Countries_IND_provinces_MadhyaPradesh_cities_Bhatpara = UsePN (mkPN "Bhatpara") ; -Countries_SUD_provinces_Kurdufan_cities_alUbayyid = UsePN (mkPN "al Ubayyid") ; -Countries_UAE_provinces_Ajman = UsePN (mkPN "Ajman") ; -Countries_RC_provinces_Taichung_cities_Fengyuan = UsePN (mkPN "Fengyuan") ; -Countries_TR_provinces_Isparta = UsePN (mkPN "Isparta") ; -Countries_BD_cities_Jessore = UsePN (mkPN "Jessore") ; -Countries_R_provinces_Saratovskayaoblast_cities_Engels = UsePN (mkPN "Engels") ; -Countries_TR_provinces_Mus_cities_Mus = UsePN (mkPN "Mus") ; -Countries_Q_cities_Wakrah = UsePN (mkPN "Wakrah") ; -Seas_EastChinaSea = UsePN (mkPN "East China Sea") ; -Organizations_ECOSOC = UsePN (mkPN "Economic and Social Council") ; -Countries_TR_provinces_Rize_cities_Rize = UsePN (mkPN "Rize") ; -Countries_EAT_provinces_Daressalam = UsePN (mkPN "Daressalam") ; -Countries_GB_provinces_WestYorkshire = UsePN (mkPN "West Yorkshire") ; -Islands_SouthamptonIsland = UsePN (mkPN "Southampton Island") ; -Countries_C_provinces_Holguin_cities_Holguin = UsePN (mkPN "Holguin") ; -Countries_cid_cia_Pitcairn_Islands = UsePN (mkPN "Pitcairn Islands") ; -Countries_cid_cia_Baker_Island = UsePN (mkPN "Baker Island") ; -Mountains_Grossglockner = UsePN (mkPN "Grossglockner") ; -Countries_P_provinces_Viseu = UsePN (mkPN "Viseu") ; -Countries_VN_cities_CamPha = UsePN (mkPN "Cam Pha") ; -Countries_TM_provinces_Mary_cities_Mary = UsePN (mkPN "Mary") ; -Countries_R_provinces_Ivanovskayaoblast_cities_Ivanovo = UsePN (mkPN "Ivanovo") ; -Countries_D_provinces_Bayern_cities_Ingolstadt = UsePN (mkPN "Ingolstadt") ; -Countries_MYA_provinces_Shan_cities_Taunggyi = UsePN (mkPN "Taunggyi") ; -Organizations_ECA = UsePN (mkPN "Economic Commission for Africa") ; -Countries_USA_provinces_Nevada_cities_CarsonCity = UsePN (mkPN "Carson City") ; -Countries_PL_provinces_Ciechanowskie_cities_Ciechanow = UsePN (mkPN "Ciechanow") ; -Countries_B_provinces_Liege = UsePN (mkPN "Liege") ; -Countries_F_provinces_Bretagne = UsePN (mkPN "Bretagne") ; -Countries_USA_provinces_Georgia_cities_Atlanta = UsePN (mkPN "Atlanta") ; -Lakes_LakeTahoe = UsePN (mkPN "Lake Tahoe") ; -Countries_EAT_provinces_Singida_cities_Singida = UsePN (mkPN "Singida") ; -Countries_TJ_provinces_Jiangsu_cities_Zhenjiang = UsePN (mkPN "Zhenjiang") ; -Countries_FL_cities_Vaduz = UsePN (mkPN "Vaduz") ; -Countries_ANG_provinces_Bie_cities_Bie = UsePN (mkPN "Bie") ; -Countries_TJ_provinces_Shandong_cities_Wendeng = UsePN (mkPN "Wendeng") ; -Countries_USA_provinces_Alaska_cities_Juneau = UsePN (mkPN "Juneau") ; -Countries_MEX_provinces_Tamaulipas_cities_CiudadMadero = UsePN (mkPN "Ciudad Madero") ; -Countries_R_provinces_Rep_ofNorthOssetiya_cities_Vladikavkaz = UsePN (mkPN "Vladikavkaz") ; -Countries_MYA_provinces_Bago = UsePN (mkPN "Bago") ; -Countries_USA_provinces_Louisiana = UsePN (mkPN "Louisiana") ; -Countries_RC_provinces_Taitung_cities_Taitung = UsePN (mkPN "Taitung") ; -Countries_RO_provinces_Vaslui = UsePN (mkPN "Vaslui") ; -Countries_HCA_provinces_SantaBarbara = UsePN (mkPN "Santa Barbara") ; -Countries_THA_provinces_Chaiyaphum = UsePN (mkPN "Chaiyaphum") ; -Countries_USA_provinces_California_cities_Berkeley = UsePN (mkPN "Berkeley") ; -Countries_BR_provinces_RiodeJaneiro_cities_Itaborai = UsePN (mkPN "Itaborai") ; -Organizations_UNOMIL = UsePN (mkPN "United Nations Observer Mission in Liberia") ; -Countries_ANG_provinces_Huila_cities_Lubango = UsePN (mkPN "Lubango") ; -Countries_EAK_provinces_Central_cities_Thika = UsePN (mkPN "Thika") ; -Countries_IR_provinces_Mazandaran_cities_Babol = UsePN (mkPN "Babol") ; -Countries_TJ_provinces_Guangdong_cities_Jiangmen = UsePN (mkPN "Jiangmen") ; -Kyrgyzstan = UsePN (mkPN "Kyrgyzstan") ; -Countries_RO_provinces_Mures = UsePN (mkPN "Mures") ; -Countries_CO_provinces_Tolima_cities_Ibague = UsePN (mkPN "Ibague") ; -Countries_IR_provinces_Bakhtaran_cities_Bakhtaran = UsePN (mkPN "Bakhtaran") ; -Countries_USA_provinces_Idaho = UsePN (mkPN "Idaho") ; -Tuvalu = UsePN (mkPN "Tuvalu") ; -Countries_B_provinces_Hainaut = UsePN (mkPN "Hainaut") ; -Lakes_OzeroTaimyr = UsePN (mkPN "Ozero Taimyr") ; -Countries_BR_provinces_SaoPaulo_cities_Itapevi = UsePN (mkPN "Itapevi") ; -Countries_DZ_cities_Tlemcen = UsePN (mkPN "Tlemcen") ; -Countries_BR_provinces_RiodeJaneiro_cities_NovoIguacu = UsePN (mkPN "Novo Iguacu") ; -Countries_F_provinces_Alsace_cities_Mulhouse = UsePN (mkPN "Mulhouse") ; -Islands_Fuenen = UsePN (mkPN "Fuenen") ; -Countries_NL_provinces_Flevoland_cities_Lelystad = UsePN (mkPN "Lelystad") ; -Countries_YV_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; -Countries_PE_provinces_MadredeDios = UsePN (mkPN "Madre de Dios") ; -Countries_N_provinces_Vestfold = UsePN (mkPN "Vestfold") ; -Countries_TJ_provinces_Shandong_cities_Taian = UsePN (mkPN "Taian") ; -Countries_GB_provinces_Cheshire_cities_Macclesfield = UsePN (mkPN "Macclesfield") ; -Countries_BR_provinces_Paraiba = UsePN (mkPN "Paraiba") ; -Countries_YV_provinces_Miranda_cities_Guarenas = UsePN (mkPN "Guarenas") ; -Countries_D_provinces_Hessen_cities_Kassel = UsePN (mkPN "Kassel") ; -Countries_BD_cities_Gazipur = UsePN (mkPN "Gazipur") ; -Countries_J_provinces_Tokushima = UsePN (mkPN "Tokushima") ; -Countries_GB_provinces_Kent = UsePN (mkPN "Kent") ; -Countries_USA_provinces_Texas_cities_Austin = UsePN (mkPN "Austin") ; -Countries_EAT_provinces_Daressalam_cities_DaresSalaam = UsePN (mkPN "Dar es Salaam") ; -Countries_IR_provinces_AzarbayianeSharqi_cities_Tabriz = UsePN (mkPN "Tabriz") ; -Countries_HCA_provinces_Valle = UsePN (mkPN "Valle") ; -Countries_THA_provinces_Lamphun = UsePN (mkPN "Lamphun") ; -Countries_N_provinces_SoerTrondelag_cities_Trondheim = UsePN (mkPN "Trondheim") ; -Islands_FernandoPoo = UsePN (mkPN "Fernando Poo") ; -Mountains_Kinabalu = UsePN (mkPN "Kinabalu") ; -Countries_TR_provinces_Sivas_cities_Sivas = UsePN (mkPN "Sivas") ; -Countries_TJ_provinces_Jiangxi_cities_Jingdezhen = UsePN (mkPN "Jingdezhen") ; -Countries_CI_cities_Yamoussoukro = UsePN (mkPN "Yamoussoukro") ; -Organizations_G_7 = UsePN (mkPN "Group of 7") ; -Countries_ZRE_provinces_KasaiOriental = UsePN (mkPN "Kasai Oriental") ; -Countries_GB_provinces_Surrey = UsePN (mkPN "Surrey") ; -Countries_EAT_provinces_KaskaziniUjunga_cities_Mkokotoni = UsePN (mkPN "Mkokotoni") ; -PapuaNewGuinea = UsePN (mkPN "Papua New Guinea") ; -Countries_I_provinces_Piemonte_cities_Turin = UsePN (mkPN "Turin") ; -Countries_RH_cities_Port_au_Prince = UsePN (mkPN "Port-au-Prince") ; -Morocco = UsePN (mkPN "Morocco") ; -Countries_SF_provinces_Aland_cities_Mariehamn = UsePN (mkPN "Mariehamn") ; -Countries_ES_provinces_Usulutan_cities_Usulutan = UsePN (mkPN "Usulutan") ; -Countries_UA_provinces_Donetska_cities_Donetsk = UsePN (mkPN "Donetsk") ; -Countries_BR_provinces_MinasGerais_cities_Sabara = UsePN (mkPN "Sabara") ; -Countries_I_provinces_Lombardia_cities_Bergamo = UsePN (mkPN "Bergamo") ; -Countries_IND_provinces_Gujarat = UsePN (mkPN "Gujarat") ; -Countries_S_provinces_Blekinge_cities_Karlskrona = UsePN (mkPN "Karlskrona") ; -Honduras = UsePN (mkPN "Honduras") ; -Countries_USA_provinces_Alabama = UsePN (mkPN "Alabama") ; -Countries_cid_cia_Christmas_Island = UsePN (mkPN "Christmas Island") ; -Countries_IND_provinces_Kerala_cities_Trivandrum = UsePN (mkPN "Trivandrum") ; -Countries_cid_cia_Christmas_Island_cities_TheSettlement = UsePN (mkPN "The Settlement") ; -Countries_RO_provinces_Bucuresti_cities_Bucharest = UsePN (mkPN "Bucharest") ; -Countries_BY_cities_Minsk = UsePN (mkPN "Minsk") ; -Countries_TJ_provinces_Sichuan_cities_Wanxian = UsePN (mkPN "Wanxian") ; -Countries_N_provinces_Hedmark_cities_Hamar = UsePN (mkPN "Hamar") ; -Countries_E_provinces_Andalusia = UsePN (mkPN "Andalusia") ; -Mountains_Bjelucha = UsePN (mkPN "Bjelucha") ; -Countries_TJ_provinces_Jiangxi_cities_Jiujiang = UsePN (mkPN "Jiujiang") ; -Countries_PE_provinces_Huanuco = UsePN (mkPN "Huanuco") ; -Countries_RO_provinces_Hunedoara = UsePN (mkPN "Hunedoara") ; -Countries_R_provinces_Samarskayaoblast_cities_Syzran = UsePN (mkPN "Syzran") ; -Organizations_G_3 = UsePN (mkPN "Group of 3") ; -Countries_BR_provinces_Para_cities_Maraba = UsePN (mkPN "Maraba") ; -Countries_DZ_cities_Algiers = UsePN (mkPN "Algiers") ; -Countries_RA_provinces_Tucuman = UsePN (mkPN "Tucuman") ; -Countries_TJ_provinces_Guizhou_cities_Liupanshui = UsePN (mkPN "Liupanshui") ; -Islands_Mayotta = UsePN (mkPN "Mayotta") ; -Countries_I_provinces_EmiliaRomagna_cities_Ferrara = UsePN (mkPN "Ferrara") ; -Lakes_LakeOhrid = UsePN (mkPN "Lake Ohrid") ; -Countries_GB_provinces_Buckinghamshire_cities_Aylesbury = UsePN (mkPN "Aylesbury") ; -Countries_GB_provinces_GreaterManchester_cities_Oldham = UsePN (mkPN "Oldham") ; -Countries_IR_provinces_Khorasan_cities_Birjand = UsePN (mkPN "Birjand") ; -Countries_CH_provinces_GL = UsePN (mkPN "GL") ; -Hungary = UsePN (mkPN "Hungary") ; -Countries_S_provinces_Kalmar_cities_Kalmar = UsePN (mkPN "Kalmar") ; -Mountains_PikKarl_Marx = UsePN (mkPN "Pik Karl-Marx") ; -Countries_DZ_cities_SidibelAbbes = UsePN (mkPN "Sidi bel Abbes") ; -Countries_CO_provinces_Narino_cities_Tumaco = UsePN (mkPN "Tumaco") ; -Countries_ET_provinces_Ismailiya = UsePN (mkPN "Ismailiya") ; -Countries_RO_provinces_Iasi_cities_Iasi = UsePN (mkPN "Iasi") ; -Rivers_Senegal = UsePN (mkPN "Senegal") ; -Deserts_ErgdeBilma = UsePN (mkPN "Erg de Bilma") ; -Mountains_Mt_Grebun = UsePN (mkPN "Mt-Grebun") ; -Countries_BR_provinces_SaoPaulo_cities_Jau = UsePN (mkPN "Jau") ; -Countries_TJ_provinces_Liaoning_cities_Haicheng = UsePN (mkPN "Haicheng") ; -Countries_BR_provinces_RioGrandedoSul_cities_Uruguaiana = UsePN (mkPN "Uruguaiana") ; -Countries_D_provinces_BadenWurttemberg_cities_Heilbronn = UsePN (mkPN "Heilbronn") ; -Countries_cid_cia_Saint_Helena_cities_Jamestown = UsePN (mkPN "Jamestown") ; -Organizations_CERN = UsePN (mkPN "European Organization for Nuclear Research") ; -Countries_GB_provinces_Cardiff = UsePN (mkPN "Cardiff") ; -Countries_TJ_provinces_Hubei_cities_Tianmen = UsePN (mkPN "Tianmen") ; -Countries_BR_provinces_MinasGerais = UsePN (mkPN "Minas Gerais") ; -Countries_R_provinces_Tyumenskayaoblast = UsePN (mkPN "Tyumenskaya oblast") ; -Countries_IND_provinces_UttarPradesh_cities_Saharanpur = UsePN (mkPN "Saharanpur") ; -Countries_R_provinces_ChuvashRepublic_cities_Novocheboksarsk = UsePN (mkPN "Novocheboksarsk") ; -Organizations_CEPGL = UsePN (mkPN "Economic Community of the Great Lakes Countries") ; -Countries_YV_provinces_Apure_cities_SanFernando = UsePN (mkPN "San Fernando") ; -Countries_USA_provinces_California_cities_Modesto = UsePN (mkPN "Modesto") ; -Countries_J_provinces_Shimane_cities_Matsue = UsePN (mkPN "Matsue") ; -Countries_BZ_cities_Belmopan = UsePN (mkPN "Belmopan") ; -Rivers_BlackDrin = UsePN (mkPN "Black Drin") ; -Countries_TO_cities_Nukualofa = UsePN (mkPN "Nukualofa") ; -Countries_TJ_provinces_Jiangxi_cities_Ganzhou = UsePN (mkPN "Ganzhou") ; -Countries_NIC_cities_Managua = UsePN (mkPN "Managua") ; -Countries_BD_cities_Rangpur = UsePN (mkPN "Rangpur") ; -Countries_N_provinces_AustAgder = UsePN (mkPN "Aust Agder") ; -Countries_USA_provinces_Hawaii = UsePN (mkPN "Hawaii") ; -Lakes_OzeroTschany = UsePN (mkPN "Ozero Tschany") ; -Countries_SF_provinces_Lappia_cities_Rovaniemi = UsePN (mkPN "Rovaniemi") ; -Organizations_G_15 = UsePN (mkPN "Group of 15") ; -Countries_USA_provinces_NewJersey = UsePN (mkPN "New Jersey") ; -Countries_GB_provinces_Monmouthshire = UsePN (mkPN "Monmouthshire") ; -Countries_TJ_provinces_Gansu_cities_Lanzhou = UsePN (mkPN "Lanzhou") ; -Countries_IND_provinces_Sikkim = UsePN (mkPN "Sikkim") ; -Countries_AL_cities_Shkoder = UsePN (mkPN "Shkoder") ; -Islands_SaoTomeandPrincipe = UsePN (mkPN "Sao Tome and Principe") ; -Countries_C_provinces_PinardelRio = UsePN (mkPN "Pinar del Rio") ; -Countries_USA_provinces_California_cities_RanchoCucamonga = UsePN (mkPN "Rancho Cucamonga") ; -Countries_TT_cities_Port_of_Spain = UsePN (mkPN "Port-of-Spain") ; -Countries_R_provinces_Murmanskayaoblast_cities_Murmansk = UsePN (mkPN "Murmansk") ; -Seas_PacificOcean = UsePN (mkPN "Pacific Ocean") ; -Countries_AND_cities_AndorralaVella = UsePN (mkPN "Andorra la Vella") ; -Countries_USA_provinces_Washington_cities_Olympia = UsePN (mkPN "Olympia") ; -Countries_AUS_provinces_Tasmania_cities_Hobart = UsePN (mkPN "Hobart") ; -Countries_IR_provinces_Mazandaran = UsePN (mkPN "Mazandaran") ; -Islands_Lundy = UsePN (mkPN "Lundy") ; -Countries_MEX_provinces_Colima = UsePN (mkPN "Colima") ; -Tajikistan = UsePN (mkPN "Tajikistan") ; -Countries_D_provinces_BadenWurttemberg_cities_Reutlingen = UsePN (mkPN "Reutlingen") ; -Ecuador = UsePN (mkPN "Ecuador") ; -Countries_USA_provinces_Oklahoma_cities_OklahomaCity = UsePN (mkPN "Oklahoma City") ; -Countries_CDN_provinces_Ontario_cities_Hamilton = UsePN (mkPN "Hamilton") ; -Countries_I_provinces_Campania = UsePN (mkPN "Campania") ; -Countries_E_provinces_BasqueCountry_cities_VitoriaGasteiz = UsePN (mkPN "Vitoria Gasteiz") ; -Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolski = UsePN (mkPN "Gorzow Wielkopolski") ; -Countries_RI_cities_BandaAceh = UsePN (mkPN "Banda Aceh") ; -Islands_SantaMaria = UsePN (mkPN "Santa Maria") ; -Peru = UsePN (mkPN "Peru") ; -Countries_KAZ_provinces_Almaty_munic = UsePN (mkPN "Almaty (munic.)") ; -Countries_KN_cities_Basseterre = UsePN (mkPN "Basseterre") ; -Countries_EAK_provinces_NorthEastern_cities_Garissa = UsePN (mkPN "Garissa") ; -Countries_IND_provinces_Rajasthan_cities_Bikaner = UsePN (mkPN "Bikaner") ; -Countries_TJ_provinces_Jilin_cities_Baicheng = UsePN (mkPN "Baicheng") ; -Dominica = UsePN (mkPN "Dominica") ; -Countries_GB_provinces_Lincolnshire = UsePN (mkPN "Lincolnshire") ; -Countries_CH_provinces_BS_cities_Basel = UsePN (mkPN "Basel") ; -Countries_MEX_provinces_BajaCaliforniaSur_cities_LaPaz = UsePN (mkPN "La Paz") ; -Countries_R_provinces_Kemerovskayaoblast_cities_Novokuznetsk = UsePN (mkPN "Novokuznetsk") ; -Countries_BR_provinces_Bahia_cities_Jequie = UsePN (mkPN "Jequie") ; -Countries_USA_provinces_Florida_cities_Clearwater = UsePN (mkPN "Clearwater") ; -Countries_GB_provinces_Bridgend_cities_Bridgend = UsePN (mkPN "Bridgend") ; -Countries_KAZ_provinces_OngtustikQazaqstan_cities_Shymkent = UsePN (mkPN "Shymkent") ; -Countries_MAL_provinces_Pahang_cities_Kuantan = UsePN (mkPN "Kuantan") ; -Countries_KAZ_provinces_Torghay = UsePN (mkPN "Torghay") ; -Countries_UA_provinces_Krym_cities_Sevastopol = UsePN (mkPN "Sevastopol") ; -Countries_USA_provinces_Florida_cities_Tampa = UsePN (mkPN "Tampa") ; -Deserts_Karakum = UsePN (mkPN "Karakum") ; -Islands_BaffinIsland = UsePN (mkPN "Baffin Island") ; -Countries_R_provinces_Moskovskayaoblast = UsePN (mkPN "Moskovskaya oblast") ; -Mountains_Citlaltepetl = UsePN (mkPN "Citlaltepetl") ; -Countries_RSA_provinces_NorthWest_cities_Mmabatho = UsePN (mkPN "Mmabatho") ; -Countries_KAZ_provinces_Qyzylorda_cities_Qyzylorda = UsePN (mkPN "Qyzylorda") ; -Countries_PL_provinces_Lomzynskie = UsePN (mkPN "Lomzynskie") ; -Countries_CH_provinces_GL_cities_Glarus = UsePN (mkPN "Glarus") ; -Organizations_EADB = UsePN (mkPN "East African Development Bank") ; -Countries_cid_cia_Juan_de_Nova_Island = UsePN (mkPN "Juan de Nova Island") ; -Countries_S_provinces_Jonkoping = UsePN (mkPN "Jonkoping") ; -Countries_RC_provinces_Yunlin = UsePN (mkPN "Yunlin") ; -Countries_PL_provinces_Torunskie = UsePN (mkPN "Torunskie") ; -Countries_H_provinces_Miskolc_munic = UsePN (mkPN "Miskolc (munic.)") ; -Countries_USA_provinces_Texas_cities_Garland = UsePN (mkPN "Garland") ; -Countries_IRQ_provinces_AdTamim_cities_Kirkuk = UsePN (mkPN "Kirkuk") ; -Rivers_Onon = UsePN (mkPN "Onon") ; -Countries_SLO_cities_Ljubljana = UsePN (mkPN "Ljubljana") ; -Countries_BD_cities_Barisal = UsePN (mkPN "Barisal") ; -Countries_USA_provinces_Texas_cities_Dallas = UsePN (mkPN "Dallas") ; -Countries_FSM_cities_Kolonia = UsePN (mkPN "Kolonia") ; -Countries_I_provinces_Veneto_cities_Vicenza = UsePN (mkPN "Vicenza") ; -Countries_YV_provinces_Barinas_cities_Barinas = UsePN (mkPN "Barinas") ; -Rivers_Zaire = UsePN (mkPN "Zaire") ; -Countries_R_provinces_Arkhangelskayaoblast_cities_Arkhangelsk = UsePN (mkPN "Arkhangelsk") ; -Countries_NL_provinces_Friesland_cities_Leeuwarden = UsePN (mkPN "Leeuwarden") ; -Rivers_Djuba = UsePN (mkPN "Djuba") ; -Benin = UsePN (mkPN "Benin") ; -Countries_USA_provinces_California_cities_Corona = UsePN (mkPN "Corona") ; -Countries_SF_provinces_Vaasa = UsePN (mkPN "Vaasa") ; -Countries_CO_provinces_Vaupes_cities_Mitu = UsePN (mkPN "Mitu") ; -Countries_PK_cities_Sialkot = UsePN (mkPN "Sialkot") ; -Lakes_LakeAlbert = UsePN (mkPN "Lake Albert") ; -Countries_TR_provinces_Bursa = UsePN (mkPN "Bursa") ; -Countries_S_provinces_Vastmanland_cities_Vasteras = UsePN (mkPN "Vasteras") ; -Countries_R_provinces_Rep_ofAdygeya_cities_Maykop = UsePN (mkPN "Maykop") ; -Countries_R_provinces_Lipetskayaoblast_cities_Lipetsk = UsePN (mkPN "Lipetsk") ; -Countries_USA_provinces_RhodeIsland_cities_Providence = UsePN (mkPN "Providence") ; -Countries_PE_provinces_Piura_cities_Piura = UsePN (mkPN "Piura") ; -Countries_TJ_provinces_Sichuan_cities_Chongqing = UsePN (mkPN "Chongqing") ; -Countries_CH_provinces_GR = UsePN (mkPN "GR") ; -Countries_IRQ_provinces_AlBasrah = UsePN (mkPN "Al Basrah") ; -Countries_CH_provinces_JU = UsePN (mkPN "JU") ; -Countries_CH_provinces_VS = UsePN (mkPN "VS") ; -Countries_IRQ_provinces_Irbil = UsePN (mkPN "Irbil") ; -Countries_WAN_cities_Iwo = UsePN (mkPN "Iwo") ; -Countries_VN_provinces_NorthCentralCoast = UsePN (mkPN "North Central Coast") ; -Countries_D_provinces_NordrheinWestfalen_cities_Oberhausen = UsePN (mkPN "Oberhausen") ; -Countries_TM_provinces_Mary = UsePN (mkPN "Mary") ; -Countries_BD_cities_Jamalpur = UsePN (mkPN "Jamalpur") ; -Countries_TJ_provinces_XinjiangUygur_cities_Shihezi = UsePN (mkPN "Shihezi") ; -Countries_MOC_provinces_Zambezia = UsePN (mkPN "Zambezia") ; -Countries_BR_provinces_SaoPaulo_cities_PresidentePrudente = UsePN (mkPN "Presidente Prudente") ; -Countries_TJ_provinces_Jiangxi_cities_Pingxiang = UsePN (mkPN "Pingxiang") ; -Countries_R_provinces_Rostovskayaoblast_cities_RostovnoDonu = UsePN (mkPN "Rostov no Donu") ; -Countries_BR_provinces_RioGrandedoSul = UsePN (mkPN "Rio Grande do Sul") ; -Countries_USA_provinces_California_cities_Anaheim = UsePN (mkPN "Anaheim") ; -Countries_ET_provinces_ElQalubiya_cities_ShubraelKheima = UsePN (mkPN "Shubra el Kheima") ; -Countries_SF_provinces_Pohjols_Karjala_cities_Joensuu = UsePN (mkPN "Joensuu") ; -Countries_R_provinces_Krasnoyarskiykray = UsePN (mkPN "Krasnoyarskiy kray") ; -Countries_USA_provinces_Maine_cities_Augusta = UsePN (mkPN "Augusta") ; -Countries_BR_provinces_Para = UsePN (mkPN "Para") ; -Countries_BR_provinces_SaoPaulo_cities_AparecidadeGoiania = UsePN (mkPN "Aparecida de Goiania") ; -Countries_SK_cities_Bratislava = UsePN (mkPN "Bratislava") ; -Countries_TJ_provinces_Heilongjiang_cities_Beian = UsePN (mkPN "Beian") ; -Organizations_ESA = UsePN (mkPN "European Space Agency") ; -Countries_cid_cia_Faroe_Islands = UsePN (mkPN "Faroe Islands") ; -Countries_CH_provinces_AG_cities_Aarau = UsePN (mkPN "Aarau") ; -Organizations_MekongGroup = UsePN (mkPN "ASEAN-Mekong Basin Development Group") ; -Countries_IR_provinces_Fars_cities_Shiraz = UsePN (mkPN "Shiraz") ; -Islands_Fuerteventura = UsePN (mkPN "Fuerteventura") ; -Countries_TJ_provinces_Heilongjiang_cities_Qiqihar = UsePN (mkPN "Qiqihar") ; -Countries_cid_cia_Macau = UsePN (mkPN "Macau") ; -Countries_MEX_provinces_SanLuisPotosi_cities_SanLuisPotosi = UsePN (mkPN "San Luis Potosi") ; -Countries_J_provinces_Ishikawa_cities_Kanazawa = UsePN (mkPN "Kanazawa") ; -Countries_cid_cia_Wake_Island = UsePN (mkPN "Wake Island") ; -Countries_SA_cities_Riyadh = UsePN (mkPN "Riyadh") ; -Organizations_UN = UsePN (mkPN "United Nations") ; -Countries_E_provinces_Catalonia_cities_Baracaldo = UsePN (mkPN "Baracaldo") ; -Countries_RSA_provinces_KwazuluNatal = UsePN (mkPN "Kwazulu Natal") ; -Countries_ETH_cities_BahirDar = UsePN (mkPN "Bahir Dar") ; -Countries_CDN_provinces_Ontario_cities_NorthYork = UsePN (mkPN "North York") ; -Countries_MEX_provinces_Guanajuato_cities_Salamanca = UsePN (mkPN "Salamanca") ; -Lakes_LakeAbaya = UsePN (mkPN "Lake Abaya") ; -Countries_RO_provinces_Alba = UsePN (mkPN "Alba") ; -Countries_Z_provinces_Luapula_cities_Mansa = UsePN (mkPN "Mansa") ; -Countries_TJ_provinces_Jiangsu_cities_Lianyungang = UsePN (mkPN "Lianyungang") ; -Countries_KAZ_provinces_Qostanay = UsePN (mkPN "Qostanay") ; -Countries_RO_provinces_Bacau_cities_Bacau = UsePN (mkPN "Bacau") ; -Countries_CDN_provinces_NovaScotia = UsePN (mkPN "Nova Scotia") ; -CentralAfricanRepublic = UsePN (mkPN "Central African Republic") ; -Countries_D_provinces_NordrheinWestfalen_cities_Bielefeld = UsePN (mkPN "Bielefeld") ; -Countries_CDN_provinces_Ontario_cities_Nepean = UsePN (mkPN "Nepean") ; -Islands_Kiribati = UsePN (mkPN "Kiribati") ; -Countries_N_provinces_Oppland = UsePN (mkPN "Oppland") ; -Organizations_NC = UsePN (mkPN "Nordic Council") ; -Countries_USA_provinces_California_cities_SanBernardino = UsePN (mkPN "San Bernardino") ; -Countries_IR_provinces_Khuzestan = UsePN (mkPN "Khuzestan") ; -Rivers_Pjandsh = UsePN (mkPN "Pjandsh") ; -Countries_A_provinces_LowerAustria_cities_St_Polten = UsePN (mkPN "St. Polten") ; -Countries_CH_provinces_SH_cities_Schaffhausen = UsePN (mkPN "Schaffhausen") ; -Countries_E_provinces_Asturias = UsePN (mkPN "Asturias") ; -Countries_KWT_cities_Kuwait = UsePN (mkPN "Kuwait") ; -Countries_PL_provinces_Nowosadeckie = UsePN (mkPN "Nowosadeckie") ; -Countries_ET_provinces_ElMinufiya_cities_ShibinelKom = UsePN (mkPN "Shibin el Kom") ; -Countries_J_provinces_Fukui_cities_Fukui = UsePN (mkPN "Fukui") ; -Countries_EAK_provinces_Eastern_cities_Machakos = UsePN (mkPN "Machakos") ; -Countries_GB_provinces_Tayside = UsePN (mkPN "Tayside") ; -Countries_USA_provinces_Iowa_cities_CedarRapids = UsePN (mkPN "Cedar Rapids") ; -Countries_RO_provinces_Alba_cities_AlbaIulia = UsePN (mkPN "Alba Iulia") ; -Countries_TJ_provinces_Heilongjiang_cities_Mudanjiang = UsePN (mkPN "Mudanjiang") ; -Countries_ANG_provinces_CuanzaSul = UsePN (mkPN "Cuanza Sul") ; -Countries_J_provinces_Fukuoka = UsePN (mkPN "Fukuoka") ; -Countries_MEX_provinces_Coahuila_cities_Saltillo = UsePN (mkPN "Saltillo") ; -Rivers_Don = UsePN (mkPN "Don") ; -Countries_N_provinces_Oslo = UsePN (mkPN "Oslo") ; -Countries_CR_provinces_Alajuela = UsePN (mkPN "Alajuela") ; -Countries_R_provinces_Rep_ofKarelia_cities_Petrozavodsk = UsePN (mkPN "Petrozavodsk") ; -Countries_BR_provinces_SaoPaulo_cities_Itu = UsePN (mkPN "Itu") ; -Countries_WAN_cities_Oka = UsePN (mkPN "Oka") ; -Countries_PL_provinces_Krosnienskie_cities_Krosno = UsePN (mkPN "Krosno") ; -Countries_USA_provinces_Maryland = UsePN (mkPN "Maryland") ; -Countries_GB_provinces_Essex_cities_Chelmsford = UsePN (mkPN "Chelmsford") ; -Countries_ZRE_provinces_Kinshasa = UsePN (mkPN "Kinshasa") ; -Countries_ZRE_provinces_Equateur = UsePN (mkPN "Equateur") ; -Countries_TR_provinces_Canakkale_cities_Canakkale = UsePN (mkPN "Canakkale") ; -Deserts_ErgRebiana = UsePN (mkPN "Erg Rebiana") ; -Countries_IND_provinces_JammuandKashmir_cities_Jammu = UsePN (mkPN "Jammu") ; -Countries_S_provinces_Jamtland = UsePN (mkPN "Jamtland") ; -Countries_TJ_provinces_Shaanxi_cities_Yanan = UsePN (mkPN "Yanan") ; -Countries_E_provinces_CastileLaMancha_cities_Toledo = UsePN (mkPN "Toledo") ; -Countries_RO_provinces_Brasov = UsePN (mkPN "Brasov") ; -Countries_TJ_provinces_Hunan_cities_Changde = UsePN (mkPN "Changde") ; -Islands_Jersey = UsePN (mkPN "Jersey") ; -Countries_GH_cities_Tamale = UsePN (mkPN "Tamale") ; -Countries_ET_provinces_Matruh = UsePN (mkPN "Matruh") ; -Countries_D_provinces_NordrheinWestfalen_cities_BergischGladbach = UsePN (mkPN "Bergisch Gladbach") ; -Countries_WAN_cities_Ilorin = UsePN (mkPN "Ilorin") ; -Countries_BR_provinces_Bahia_cities_Salvador = UsePN (mkPN "Salvador") ; -Seas_IrishSea = UsePN (mkPN "Irish Sea") ; -Countries_ES_cities_Soyapango = UsePN (mkPN "Soyapango") ; -Countries_R_provinces_Permskayaoblast_cities_Perm = UsePN (mkPN "Perm") ; -Organizations_IOM = UsePN (mkPN "International Organization for Migration") ; -Organizations_G_30 = UsePN (mkPN "Group of 30") ; -Countries_IRQ_provinces_Karbala_cities_Karbala = UsePN (mkPN "Karbala") ; -Countries_RC_provinces_Tainan_munic = UsePN (mkPN "Tainan (munic.)") ; -Islands_Gomera = UsePN (mkPN "Gomera") ; -Countries_GB_provinces_Bedfordshire_cities_Luton = UsePN (mkPN "Luton") ; -Continents_Africa = UsePN (mkPN "Africa") ; -Countries_MOC_provinces_Tete_cities_Tete = UsePN (mkPN "Tete") ; -Countries_PE_provinces_Ucayali_cities_Pucallpa = UsePN (mkPN "Pucallpa") ; -Countries_USA_provinces_California_cities_Oxnard = UsePN (mkPN "Oxnard") ; -Countries_CO_provinces_Amazonas = UsePN (mkPN "Amazonas") ; -Countries_IND_provinces_Maharashtra_cities_Amravati = UsePN (mkPN "Amravati") ; -Countries_SN_provinces_Tambacounda_cities_Tambacounda = UsePN (mkPN "Tambacounda") ; -Vietnam = UsePN (mkPN "Vietnam") ; -Countries_B_provinces_Hainaut_cities_Charleroi = UsePN (mkPN "Charleroi") ; -Countries_GB_provinces_Kent_cities_RochesteruponMedway = UsePN (mkPN "Rochester upon Medway") ; -Countries_WAN_cities_Abuja = UsePN (mkPN "Abuja") ; -Countries_USA_provinces_Arizona_cities_Phoenix = UsePN (mkPN "Phoenix") ; -Countries_USA_provinces_NewYork_cities_Albany = UsePN (mkPN "Albany") ; -Countries_TAD_provinces_Dushanbe_munic_cities_Dushanbe = UsePN (mkPN "Dushanbe") ; -Countries_BR_provinces_MinasGerais_cities_Barbacena = UsePN (mkPN "Barbacena") ; -Countries_CO_provinces_Cauca = UsePN (mkPN "Cauca") ; -Countries_GB_provinces_Kent_cities_TunbridgeWells = UsePN (mkPN "Tunbridge Wells") ; -Countries_NOK_cities_Kusong = UsePN (mkPN "Kusong") ; -Countries_TR_provinces_Amasya = UsePN (mkPN "Amasya") ; -Countries_BR_provinces_MinasGerais_cities_BeloHorizonte = UsePN (mkPN "Belo Horizonte") ; -Countries_MH_cities_Majuro = UsePN (mkPN "Majuro") ; -Countries_TJ_provinces_Hebei_cities_Tangshan = UsePN (mkPN "Tangshan") ; -Countries_BR_provinces_Pernambuco_cities_VitoriadeSantoAntao = UsePN (mkPN "Vitoria de Santo Antao") ; -Countries_PL_provinces_Skierniewickie_cities_Skierniewice = UsePN (mkPN "Skierniewice") ; -Countries_UA_provinces_Donetska = UsePN (mkPN "Donetska") ; -Countries_ES_provinces_LaLibertad_cities_NuevaSanSalvador = UsePN (mkPN "Nueva San Salvador") ; -Countries_GB_provinces_Central = UsePN (mkPN "Central") ; -Countries_SF_provinces_Mikkeli = UsePN (mkPN "Mikkeli") ; -Azerbaijan = UsePN (mkPN "Azerbaijan") ; -Countries_TR_provinces_Samsun_cities_Samsun = UsePN (mkPN "Samsun") ; -Countries_UAE_provinces_AlFujayrah = UsePN (mkPN "Al Fujayrah") ; -Countries_GB_provinces_HerefordandWorcester_cities_Worcester = UsePN (mkPN "Worcester") ; -Countries_cid_cia_Gibraltar_cities_Gibraltar = UsePN (mkPN "Gibraltar") ; -Countries_PE_provinces_Piura_cities_Talara = UsePN (mkPN "Talara") ; -Countries_GB_provinces_Surrey_cities_Reigate = UsePN (mkPN "Reigate") ; -Countries_MOC_provinces_Maputo_cities_Nacala = UsePN (mkPN "Nacala") ; -Organizations_OSCE = UsePN (mkPN "Organization for Security and Cooperation in Europe") ; -Countries_J_provinces_Kyoto = UsePN (mkPN "Kyoto") ; -Countries_HCA_provinces_Choluteca = UsePN (mkPN "Choluteca") ; -Countries_RA_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; -Countries_YV_provinces_Anzoategui = UsePN (mkPN "Anzoategui") ; -Countries_GB_provinces_Wiltshire_cities_Trowbridge = UsePN (mkPN "Trowbridge") ; -Countries_D_provinces_Berlin_cities_Berlin = UsePN (mkPN "Berlin") ; -Countries_TR_provinces_Bursa_cities_Bursa = UsePN (mkPN "Bursa") ; -Lakes_LakePowell = UsePN (mkPN "Lake Powell") ; -SolomonIslands = UsePN (mkPN "Solomon Islands") ; -Countries_PE_provinces_Moquegua_cities_Moquegua = UsePN (mkPN "Moquegua") ; -Canada = UsePN (mkPN "Canada") ; -Countries_USA_provinces_California_cities_LongBeach = UsePN (mkPN "Long Beach") ; -Countries_MEX_provinces_Michoacan_cities_Zamora = UsePN (mkPN "Zamora") ; -Countries_BR_provinces_SaoPaulo_cities_Barretos = UsePN (mkPN "Barretos") ; -Countries_UZB_provinces_Samarqand = UsePN (mkPN "Samarqand") ; -Countries_MYA_provinces_Kachin_cities_Myitkyina = UsePN (mkPN "Myitkyina") ; -Countries_TR_cities_Icel = UsePN (mkPN "Icel") ; -Countries_J_provinces_Oita = UsePN (mkPN "Oita") ; -Countries_D_provinces_Niedersachsen_cities_Salzgitter = UsePN (mkPN "Salzgitter") ; -Countries_KAZ_provinces_Zhambyl_cities_Zhambyl = UsePN (mkPN "Zhambyl") ; -Countries_TR_provinces_Aydin = UsePN (mkPN "Aydin") ; -Countries_N_provinces_Hedmark = UsePN (mkPN "Hedmark") ; -Countries_GB_provinces_Staffordshire_cities_Stafford = UsePN (mkPN "Stafford") ; -Countries_USA_provinces_California_cities_ThousandOaks = UsePN (mkPN "Thousand Oaks") ; -Countries_TJ_provinces_Shandong_cities_Weifang = UsePN (mkPN "Weifang") ; -Countries_EAT_provinces_Tanga = UsePN (mkPN "Tanga") ; -Countries_ANG_provinces_Cabinda = UsePN (mkPN "Cabinda") ; -Lakes_LakeHuron = UsePN (mkPN "Lake Huron") ; -Countries_NL_provinces_NoordHolland_cities_Hilversum = UsePN (mkPN "Hilversum") ; -Countries_IND_provinces_JammuandKashmir_cities_Srinagar = UsePN (mkPN "Srinagar") ; -Rivers_WebiSchebeli = UsePN (mkPN "Webi Schebeli") ; -Organizations_GCC = UsePN (mkPN "Gulf Cooperation Council") ; -Countries_MEX_cities_SoledaddeGracianoSanchez = UsePN (mkPN "Soledad de Graciano Sanchez") ; -Countries_BR_provinces_Paraiba_cities_JoaoPessoa = UsePN (mkPN "Joao Pessoa") ; -Countries_J_provinces_Tokyo_cities_Tokyo = UsePN (mkPN "Tokyo") ; -Countries_UA_provinces_Rivnenska_cities_Rivne = UsePN (mkPN "Rivne") ; -Countries_TJ_provinces_XinjiangUygur_cities_Urumqi = UsePN (mkPN "Urumqi") ; -Countries_TR_provinces_Kutahya_cities_Kutahya = UsePN (mkPN "Kutahya") ; -Countries_THA_provinces_Trat = UsePN (mkPN "Trat") ; -Countries_COM_cities_Moroni = UsePN (mkPN "Moroni") ; -Countries_R_provinces_Moskovskayaoblast_cities_Noginsk = UsePN (mkPN "Noginsk") ; -Countries_WAN_cities_Ondo = UsePN (mkPN "Ondo") ; -Countries_USA_provinces_Montana = UsePN (mkPN "Montana") ; -Countries_J_provinces_Hyogo = UsePN (mkPN "Hyogo") ; -Countries_E_provinces_Valencia_cities_Valencia = UsePN (mkPN "Valencia") ; -Countries_IRQ_provinces_DhiQar = UsePN (mkPN "Dhi Qar") ; -Countries_TJ_provinces_Guizhou_cities_Anshun = UsePN (mkPN "Anshun") ; -Countries_cid_cia_Norfolk_Island_cities_Kingston = UsePN (mkPN "Kingston") ; -Countries_CH_provinces_ZH = UsePN (mkPN "ZH") ; -Islands_LaPalma = UsePN (mkPN "La Palma") ; -Countries_VN_cities_LongXuyen = UsePN (mkPN "Long Xuyen") ; -Countries_RC_provinces_Kaohsiung = UsePN (mkPN "Kaohsiung") ; -Countries_E_provinces_Madrid_cities_Leganes = UsePN (mkPN "Leganes") ; -Countries_PE_provinces_Loreto = UsePN (mkPN "Loreto") ; -Countries_UA_provinces_Chernihivska = UsePN (mkPN "Chernihivska") ; -Tonga = UsePN (mkPN "Tonga") ; -Countries_RC_provinces_Tainan_munic_cities_Tainan = UsePN (mkPN "Tainan") ; -Countries_GB_provinces_Highland_cities_Inverness = UsePN (mkPN "Inverness") ; -Mountains_Pulog = UsePN (mkPN "Pulog") ; -Countries_R_provinces_Rep_ofMariyEl = UsePN (mkPN "Rep. of Mariy El") ; -Countries_TR_provinces_Karaman_cities_Karaman = UsePN (mkPN "Karaman") ; -Countries_TR_provinces_Afyon = UsePN (mkPN "Afyon") ; -Countries_R_provinces_Ryazanskayaoblast = UsePN (mkPN "Ryazanskaya oblast") ; -Islands_IsleofMan = UsePN (mkPN "Isle of Man") ; -Countries_J_provinces_Ehime = UsePN (mkPN "Ehime") ; -Countries_GQ_cities_Sta_Isabel = UsePN (mkPN "Sta. Isabel") ; -Countries_CH_provinces_ZG_cities_Zug = UsePN (mkPN "Zug") ; -Countries_PL_provinces_Zielonogorskie = UsePN (mkPN "Zielonogorskie") ; -Countries_A_provinces_Salzburg_cities_Salzburg = UsePN (mkPN "Salzburg") ; -Countries_MA_provinces_CentreSud = UsePN (mkPN "Centre Sud") ; -Countries_VN_cities_CanTho = UsePN (mkPN "Can Tho") ; -Countries_CH_provinces_LU_cities_Luzern = UsePN (mkPN "Luzern") ; -Countries_IND_provinces_AndhraPradesh = UsePN (mkPN "Andhra Pradesh") ; -Countries_NL_provinces_NoordBrabant_cities_sHertogenbosch = UsePN (mkPN "s Hertogenbosch") ; -Countries_TJ_provinces_XinjiangUygur_cities_Kashi = UsePN (mkPN "Kashi") ; -Countries_CO_provinces_Cesar_cities_Valledupar = UsePN (mkPN "Valledupar") ; -Countries_IND_provinces_Punjab_cities_Amritsar = UsePN (mkPN "Amritsar") ; -Countries_UA_provinces_Cherkaska = UsePN (mkPN "Cherkaska") ; -Countries_R_provinces_Rep_ofMordovia_cities_Saransk = UsePN (mkPN "Saransk") ; -Countries_ET_provinces_ElQahira_munic_cities_Helwan = UsePN (mkPN "Helwan") ; -Countries_C_provinces_SantiagodeCuba = UsePN (mkPN "Santiago de Cuba") ; -Deserts_ErgIgidi = UsePN (mkPN "Erg Igidi") ; -Countries_GB_provinces_Grampian = UsePN (mkPN "Grampian") ; -Countries_GR_provinces_Kriti = UsePN (mkPN "Kriti") ; -Countries_GB_provinces_Gloucestershire = UsePN (mkPN "Gloucestershire") ; -Countries_S_provinces_Stockholm_cities_Stockholm = UsePN (mkPN "Stockholm") ; -Islands_Vulcano = UsePN (mkPN "Vulcano") ; -Countries_PL_provinces_Zamojskie = UsePN (mkPN "Zamojskie") ; -Countries_BR_provinces_EspiritoSanto = UsePN (mkPN "Espirito Santo") ; -Countries_J_provinces_Yamagata = UsePN (mkPN "Yamagata") ; -Countries_F_provinces_Bourgogne_cities_Dijon = UsePN (mkPN "Dijon") ; -Countries_PA_provinces_ComarcadeSanBlas = UsePN (mkPN "Comarca de San Blas") ; -Countries_EAT_provinces_Kilimanjaro = UsePN (mkPN "Kilimanjaro") ; -Countries_D_provinces_NordrheinWestfalen_cities_Duisburg = UsePN (mkPN "Duisburg") ; -Organizations_IMO = UsePN (mkPN "International Maritime Organization") ; -Countries_TR_provinces_Batman_cities_Batman = UsePN (mkPN "Batman") ; -Organizations_CCC = UsePN (mkPN "Customs Cooperation Council") ; -Countries_UA_provinces_Mykolayivska = UsePN (mkPN "Mykolayivska") ; -Countries_NOK_cities_Kaesong = UsePN (mkPN "Kaesong") ; -Countries_MEX_provinces_Aguascalientes_cities_Aguascalientes = UsePN (mkPN "Aguascalientes") ; -Countries_J_provinces_Gifu_cities_Gifu = UsePN (mkPN "Gifu") ; -Organizations_UNEP = UsePN (mkPN "United Nations Environment Program") ; -Countries_cid_cia_Bermuda_cities_Hamilton = UsePN (mkPN "Hamilton") ; -Countries_EAK_provinces_Nairobi = UsePN (mkPN "Nairobi") ; -Countries_VN_provinces_LongAn = UsePN (mkPN "Long An") ; -Countries_PL_provinces_Suwalskie = UsePN (mkPN "Suwalskie") ; -Countries_E_provinces_BasqueCountry_cities_Bilbao = UsePN (mkPN "Bilbao") ; -Countries_PL_cities_JastrzebieZdroj = UsePN (mkPN "Jastrzebie Zdroj") ; -Countries_MEX_cities_Llave = UsePN (mkPN "Llave") ; -Countries_CDN_provinces_Alberta_cities_Calgary = UsePN (mkPN "Calgary") ; -Countries_R_provinces_Bryanskayaoblast = UsePN (mkPN "Bryanskaya oblast") ; -Countries_USA_provinces_Kansas_cities_OverlandPark = UsePN (mkPN "Overland Park") ; -Countries_ANG_provinces_Benguela = UsePN (mkPN "Benguela") ; -Countries_MEX_provinces_Guanajuato = UsePN (mkPN "Guanajuato") ; -Countries_cid_cia_Greenland_cities_Nuuk = UsePN (mkPN "Nuuk") ; -Islands_Lewis = UsePN (mkPN "Lewis") ; -Countries_J_provinces_Kagawa = UsePN (mkPN "Kagawa") ; -Countries_E_provinces_Cantabria = UsePN (mkPN "Cantabria") ; -Countries_J_provinces_Fukuoka_cities_Fukuoka = UsePN (mkPN "Fukuoka") ; -Countries_TR_provinces_Zonguldak_cities_Karabuk = UsePN (mkPN "Karabuk") ; -Islands_Skye = UsePN (mkPN "Skye") ; -Countries_BR_provinces_Roraima = UsePN (mkPN "Roraima") ; -Countries_THA_provinces_ChiangMai = UsePN (mkPN "Chiang Mai") ; -Countries_BD_cities_Savar = UsePN (mkPN "Savar") ; -Countries_CO_provinces_ValledeCauca_cities_Buenaventura = UsePN (mkPN "Buenaventura") ; -Countries_BD_cities_Dhaka = UsePN (mkPN "Dhaka") ; -Seychelles = UsePN (mkPN "Seychelles") ; -Countries_CH_provinces_GE_cities_Geneva = UsePN (mkPN "Geneva") ; -Countries_IR_provinces_Semnan = UsePN (mkPN "Semnan") ; -Countries_PE_provinces_Ayacucho = UsePN (mkPN "Ayacucho") ; -Countries_TJ_provinces_Heilongjiang_cities_Hegang = UsePN (mkPN "Hegang") ; -Countries_I_provinces_Abruzzo_cities_LAquila = UsePN (mkPN "LAquila") ; -Rivers_Drin = UsePN (mkPN "Drin") ; -Countries_RO_provinces_Buzau_cities_Buzau = UsePN (mkPN "Buzau") ; -Countries_YV_provinces_Miranda_cities_Petare = UsePN (mkPN "Petare") ; -Countries_NZ_cities_Auckland = UsePN (mkPN "Auckland") ; -Countries_THA_provinces_Pattani = UsePN (mkPN "Pattani") ; -Countries_RSA_provinces_Gauteng_cities_Johannesburg = UsePN (mkPN "Johannesburg") ; -Countries_ZW_cities_Harare = UsePN (mkPN "Harare") ; -Countries_VN_cities_NhaTrang = UsePN (mkPN "Nha Trang") ; -Countries_IR_provinces_Markazi_cities_Arak = UsePN (mkPN "Arak") ; -Countries_GB_provinces_Anglesey_cities_Llangefni = UsePN (mkPN "Llangefni") ; -Countries_PL_provinces_Rzeszowskie_cities_Rzeszow = UsePN (mkPN "Rzeszow") ; -Countries_F_provinces_LanguedocRousillon_cities_Perpignan = UsePN (mkPN "Perpignan") ; -Countries_R_provinces_Smolenskayaoblast = UsePN (mkPN "Smolenskaya oblast") ; -Countries_NCA_cities_Noumea = UsePN (mkPN "Noumea") ; -Countries_CDN_provinces_Quebec_cities_Quebec = UsePN (mkPN "Quebec") ; -Countries_UZB_provinces_Surkhondare = UsePN (mkPN "Surkhondare") ; -Countries_GB_provinces_Suffolk = UsePN (mkPN "Suffolk") ; -Countries_THA_provinces_UbonRatchathani = UsePN (mkPN "Ubon Ratchathani") ; -Countries_RA_provinces_SantaCruz = UsePN (mkPN "Santa Cruz") ; -Countries_BR_provinces_SaoPaulo_cities_Indaiatuba = UsePN (mkPN "Indaiatuba") ; -Countries_TR_provinces_Trabzon_cities_Trabzon = UsePN (mkPN "Trabzon") ; -Countries_S_provinces_Ostergotland_cities_Linkoping = UsePN (mkPN "Linkoping") ; -Kuwait = UsePN (mkPN "Kuwait") ; -Countries_NL_provinces_ZuidHolland_cities_Rotterdam = UsePN (mkPN "Rotterdam") ; -Countries_J_provinces_Fukuoka_cities_Kitakyushu = UsePN (mkPN "Kita kyushu") ; -Countries_IND_provinces_Maharashtra_cities_Mumbai = UsePN (mkPN "Mumbai") ; -Countries_UA_provinces_Volynska_cities_Lutsk = UsePN (mkPN "Lutsk") ; -Countries_CH_provinces_NE_cities_Neuchatel = UsePN (mkPN "Neuchatel") ; -Countries_USA_provinces_Tennessee_cities_Knoxville = UsePN (mkPN "Knoxville") ; -Countries_cid_cia_Anguilla = UsePN (mkPN "Anguilla") ; -Countries_RI_cities_Pekalongan = UsePN (mkPN "Pekalongan") ; -Countries_PK_cities_Larkana = UsePN (mkPN "Larkana") ; -Countries_GB_provinces_Derbyshire_cities_Derby = UsePN (mkPN "Derby") ; -Countries_THA_provinces_SakonNakhon = UsePN (mkPN "Sakon Nakhon") ; -Lakes_LakeUrumiyeh = UsePN (mkPN "Lake Urumiyeh") ; -Countries_GB_provinces_TyneandWear_cities_NewcastleuponTyne = UsePN (mkPN "Newcastle upon Tyne") ; -Qatar = UsePN (mkPN "Qatar") ; -Countries_R_provinces_Stavropolskykray_cities_Neftekamsk = UsePN (mkPN "Neftekamsk") ; -Countries_NL_provinces_Flevoland = UsePN (mkPN "Flevoland") ; -Countries_TJ_provinces_Jiangsu_cities_Yizheng = UsePN (mkPN "Yizheng") ; -Countries_BR_provinces_RiodeJaneiro_cities_Niteroi = UsePN (mkPN "Niteroi") ; -Countries_IND_provinces_Karnataka_cities_Bangalore = UsePN (mkPN "Bangalore") ; -Countries_R_provinces_Chelyabinskayaoblast_cities_Zlatoust = UsePN (mkPN "Zlatoust") ; -Countries_I_provinces_Lombardia_cities_Milan = UsePN (mkPN "Milan") ; -Islands_Patmos = UsePN (mkPN "Patmos") ; -Lakes_LakeWinnipeg = UsePN (mkPN "Lake Winnipeg") ; -Countries_RC_provinces_Chilung_munic_cities_Chilung = UsePN (mkPN "Chilung") ; -Countries_H_provinces_KomaromEsztergom = UsePN (mkPN "Komarom Esztergom") ; -Countries_IND_provinces_Mizoram_cities_Aijal = UsePN (mkPN "Aijal") ; -Countries_HR_cities_Zagreb = UsePN (mkPN "Zagreb") ; -Macedonia = UsePN (mkPN "Macedonia") ; -Countries_MEX_provinces_NuevoLeon = UsePN (mkPN "Nuevo Leon") ; -Countries_GB_provinces_Swansea_cities_Swansea = UsePN (mkPN "Swansea") ; -Countries_RC_provinces_Ilan = UsePN (mkPN "Ilan") ; -Lakes_LakeTanganjika = UsePN (mkPN "Lake Tanganjika") ; -Countries_MEX_provinces_NuevoLeon_cities_SanNicolasdelosGarza = UsePN (mkPN "San Nicolas de los Garza") ; -Countries_D_provinces_Brandenburg_cities_Cottbus = UsePN (mkPN "Cottbus") ; -Countries_TR_provinces_Kastamonu = UsePN (mkPN "Kastamonu") ; -Mountains_PicoDuarte = UsePN (mkPN "Pico Duarte") ; -Countries_RA_provinces_SanLuis_cities_SanLuis = UsePN (mkPN "San Luis") ; -Countries_RC_provinces_Yunlin_cities_Touliu = UsePN (mkPN "Touliu") ; -Countries_GB_provinces_ValeofGlamorgan = UsePN (mkPN "Vale of Glamorgan") ; -Countries_WAL_cities_Freetown = UsePN (mkPN "Freetown") ; -Countries_SF_provinces_Haeme_cities_Haemeenlinna = UsePN (mkPN "Haemeenlinna") ; -Countries_R_provinces_Altayskiykray_cities_Barnaul = UsePN (mkPN "Barnaul") ; -Countries_VN_provinces_SocTrang = UsePN (mkPN "Soc Trang") ; -Countries_ANG_provinces_LundaNorte_cities_Lucapa = UsePN (mkPN "Lucapa") ; -Countries_R_provinces_Volgogradskayaoblast_cities_Kamyshin = UsePN (mkPN "Kamyshin") ; -Islands_Kotelnyisland = UsePN (mkPN "Kotelny island") ; -Rivers_Seine = UsePN (mkPN "Seine") ; -Countries_MAL_provinces_Sarawak_cities_Sibu = UsePN (mkPN "Sibu") ; -Organizations_ESCAP = UsePN (mkPN "Economic and Social Commission for Asia and the Pacific") ; -Countries_CR_provinces_Alajuela_cities_Alajuela = UsePN (mkPN "Alajuela") ; -Countries_TJ_provinces_Tibet = UsePN (mkPN "Tibet") ; -Countries_GR_provinces_AnatolikiMakedhoniakaiThraki = UsePN (mkPN "Anatoliki Makedhonia kai Thraki") ; -Countries_TR_provinces_Samsun = UsePN (mkPN "Samsun") ; -Countries_RSA_cities_Sandton = UsePN (mkPN "Sandton") ; -Rivers_Kura = UsePN (mkPN "Kura") ; -Countries_MAL_provinces_Selangor_cities_ShahAlam = UsePN (mkPN "Shah Alam") ; -Countries_RI_cities_Surabaya = UsePN (mkPN "Surabaya") ; -Countries_PA_provinces_Panama_cities_SanMiguelito = UsePN (mkPN "San Miguelito") ; -Countries_VN_provinces_LangSon = UsePN (mkPN "Lang Son") ; -Countries_TJ_provinces_Hubei_cities_Cangzhou = UsePN (mkPN "Cangzhou") ; -Countries_GB_provinces_Essex_cities_SouthendonSea = UsePN (mkPN "Southend on Sea") ; -Countries_BR_provinces_Amazonas_cities_Manaus = UsePN (mkPN "Manaus") ; -Islands_Palawan = UsePN (mkPN "Palawan") ; -Countries_SN_provinces_Thies_cities_Thies = UsePN (mkPN "Thies") ; -Countries_MA_provinces_NordOuest = UsePN (mkPN "Nord Ouest") ; -Countries_UA_provinces_Chernihivska_cities_Chernihiv = UsePN (mkPN "Chernihiv") ; -Countries_TJ_provinces_Zhejiang_cities_Cixi = UsePN (mkPN "Cixi") ; -Countries_S_provinces_Kronoberg = UsePN (mkPN "Kronoberg") ; -Countries_SUD_provinces_alKhartum_cities_KhartoumNorth = UsePN (mkPN "Khartoum North") ; -Countries_TJ_provinces_GuangxiZhuangzu = UsePN (mkPN "Guangxi Zhuangzu") ; -Countries_PK_cities_DeraGhaziKhan = UsePN (mkPN "Dera Ghazi Khan") ; -Organizations_UNIDO = UsePN (mkPN "United Nations Industrial Development Organization") ; -Countries_IL_provinces_Haifa = UsePN (mkPN "Haifa") ; -Countries_EAT_provinces_Kagera_cities_Bukoba = UsePN (mkPN "Bukoba") ; -Countries_RO_provinces_Covasha = UsePN (mkPN "Covasha") ; -Countries_CZ_provinces_Jihomoravsky = UsePN (mkPN "Jihomoravsky") ; -Countries_MAL_provinces_NegeriSembilan = UsePN (mkPN "Negeri Sembilan") ; -Organizations_CE = UsePN (mkPN "Council of Europe") ; -Countries_SF_provinces_Turku_Pori = UsePN (mkPN "Turku-Pori") ; -Countries_MA_provinces_Oriental = UsePN (mkPN "Oriental") ; -Countries_TR_provinces_Bitlis_cities_Bitlis = UsePN (mkPN "Bitlis") ; -Countries_TJ_provinces_Hebei_cities_Zhangjiakou = UsePN (mkPN "Zhangjiakou") ; -Countries_B_provinces_Namur_cities_Namur = UsePN (mkPN "Namur") ; -Countries_GB_provinces_Berkshire_cities_Bracknell = UsePN (mkPN "Bracknell") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Liuzhou = UsePN (mkPN "Liuzhou") ; -Countries_AUS_provinces_WesternAustralia_cities_Albany = UsePN (mkPN "Albany") ; -Countries_BR_provinces_RiodeJaneiro_cities_Macae = UsePN (mkPN "Macae") ; -Countries_H_provinces_Veszprem_cities_Veszprem = UsePN (mkPN "Veszprem") ; -Deserts_Trarza = UsePN (mkPN "Trarza") ; -Countries_RO_provinces_Neamt = UsePN (mkPN "Neamt") ; -Countries_YV_provinces_Lara_cities_Barquisimeto = UsePN (mkPN "Barquisimeto") ; -Countries_IL_provinces_TelAviv_cities_TelAviv = UsePN (mkPN "Tel Aviv") ; -Countries_MAL_provinces_Selangor_cities_Kelang = UsePN (mkPN "Kelang") ; -Countries_CO_provinces_Vaupes = UsePN (mkPN "Vaupes") ; -Countries_RO_provinces_Olt_cities_Slatina = UsePN (mkPN "Slatina") ; -Netherlands = UsePN (mkPN "Netherlands") ; -Countries_MAL_provinces_Johor = UsePN (mkPN "Johor") ; -Deserts_Kysylkum = UsePN (mkPN "Kysylkum") ; -Countries_MEX_provinces_Puebla_cities_Puebla = UsePN (mkPN "Puebla") ; -Countries_RO_provinces_Bihor_cities_Oradea = UsePN (mkPN "Oradea") ; -Countries_IR_provinces_ChaharMahaleBakhtiari = UsePN (mkPN "Chahar Mahal e Bakhtiari") ; -Organizations_IDB = UsePN (mkPN "Islamic Development Bank") ; -Countries_RO_provinces_Timis = UsePN (mkPN "Timis") ; -Countries_CO_provinces_Bolivar_cities_Cartagena = UsePN (mkPN "Cartagena") ; -Countries_C_provinces_LasTunas = UsePN (mkPN "Las Tunas") ; -Countries_ANG_provinces_CuandoCubango = UsePN (mkPN "Cuando Cubango") ; -Countries_GB_provinces_Cleveland_cities_Middlesbrough = UsePN (mkPN "Middlesbrough") ; -Countries_CO_provinces_SantanderdelSur = UsePN (mkPN "Santander del Sur") ; -Countries_R_provinces_Tulskayaoblast = UsePN (mkPN "Tulskaya oblast") ; -Countries_CO_provinces_Cesar = UsePN (mkPN "Cesar") ; -Countries_D_provinces_NordrheinWestfalen_cities_Krefeld = UsePN (mkPN "Krefeld") ; -Countries_cid_cia_Howland_Island = UsePN (mkPN "Howland Island") ; -Uruguay = UsePN (mkPN "Uruguay") ; -Countries_J_provinces_Saga = UsePN (mkPN "Saga") ; -Islands_Alicudi = UsePN (mkPN "Alicudi") ; -Lakes_LakeNgami = UsePN (mkPN "Lake Ngami") ; -Countries_GB_provinces_Merseyside = UsePN (mkPN "Merseyside") ; -Countries_YV_provinces_Miranda = UsePN (mkPN "Miranda") ; -Countries_B_provinces_Namur = UsePN (mkPN "Namur") ; -Countries_UZB_provinces_Nawoiy = UsePN (mkPN "Nawoiy") ; -Countries_USA_provinces_Arizona_cities_Glendale = UsePN (mkPN "Glendale") ; -Countries_BD_cities_Rajshahi = UsePN (mkPN "Rajshahi") ; -Countries_GB_provinces_Durham = UsePN (mkPN "Durham") ; -Countries_USA_provinces_Arizona_cities_Chandler = UsePN (mkPN "Chandler") ; -Countries_IND_provinces_Kerala_cities_Kozhikode = UsePN (mkPN "Kozhikode") ; -Chile = UsePN (mkPN "Chile") ; -Countries_PK_cities_Okara = UsePN (mkPN "Okara") ; -Countries_RO_provinces_BistritaNasaud = UsePN (mkPN "Bistrita Nasaud") ; -Countries_E_provinces_Aragon = UsePN (mkPN "Aragon") ; -Countries_MAL_provinces_Perak_cities_Ipoh = UsePN (mkPN "Ipoh") ; -Countries_GB_provinces_Strathclyde = UsePN (mkPN "Strathclyde") ; -Countries_CAM_provinces_Adamaoua_cities_Ngaoundere = UsePN (mkPN "Ngaoundere") ; -Countries_C_provinces_Holguin = UsePN (mkPN "Holguin") ; -Countries_N_provinces_Oestfold_cities_Moss = UsePN (mkPN "Moss") ; -Countries_E_provinces_Valencia_cities_CastellondelaPlana = UsePN (mkPN "Castellon de la Plana") ; -Countries_RA_provinces_Neuquen = UsePN (mkPN "Neuquen") ; -Countries_IRQ_provinces_AlAnbar = UsePN (mkPN "Al Anbar") ; -Countries_RI_cities_TebingTinggi = UsePN (mkPN "Tebing Tinggi") ; -Swaziland = UsePN (mkPN "Swaziland") ; -Countries_GB_provinces_Merseyside_cities_SaintHelens = UsePN (mkPN "Saint Helens") ; -Deserts_Tanesruft = UsePN (mkPN "Tanesruft") ; -Countries_SUD_provinces_alWusta = UsePN (mkPN "al Wusta") ; -Countries_TJ_provinces_Hebei_cities_Xingtai = UsePN (mkPN "Xingtai") ; -Countries_TJ_provinces_Shaanxi_cities_Hanzhong = UsePN (mkPN "Hanzhong") ; -Countries_TR_provinces_Konya = UsePN (mkPN "Konya") ; -Countries_cid_cia_Paracel_Islands = UsePN (mkPN "Paracel Islands") ; -Countries_Q_cities_Rayyan = UsePN (mkPN "Rayyan") ; -Countries_N_provinces_SoerTrondelag = UsePN (mkPN "Soer Trondelag") ; -Countries_THA_provinces_SuphanBuri = UsePN (mkPN "Suphan Buri") ; -Countries_VN_provinces_TraVinh = UsePN (mkPN "Tra Vinh") ; -Countries_Z_provinces_Copperbelt_cities_Kitwe = UsePN (mkPN "Kitwe") ; -Countries_GB_provinces_Cheshire = UsePN (mkPN "Cheshire") ; -Countries_TJ_provinces_Jiangsu_cities_Changzhou = UsePN (mkPN "Changzhou") ; -Countries_THA_provinces_AngThong = UsePN (mkPN "Ang Thong") ; -Countries_TR_provinces_Kirklareli = UsePN (mkPN "Kirklareli") ; -Countries_HCA_provinces_Cortes_cities_PuertoCortes = UsePN (mkPN "Puerto Cortes") ; -Countries_R_provinces_Rep_ofIngushetiya_cities_Nazran = UsePN (mkPN "Nazran") ; -Countries_F_provinces_PaysdelaLoire_cities_Angers = UsePN (mkPN "Angers") ; -Mountains_HumphreysPeak = UsePN (mkPN "Humphreys Peak") ; -Countries_IND_provinces_Maharashtra_cities_Nasik = UsePN (mkPN "Nasik") ; -Countries_EAT_provinces_MjiniMagharibi = UsePN (mkPN "Mjini Magharibi") ; -Countries_MAL_provinces_Perlis = UsePN (mkPN "Perlis") ; -Countries_CO_provinces_Magdalena_cities_SantaMarta = UsePN (mkPN "Santa Marta") ; -Countries_ROK_cities_Kwangju = UsePN (mkPN "Kwangju") ; -Countries_TJ_provinces_Zhejiang_cities_Huzhou = UsePN (mkPN "Huzhou") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Guilin = UsePN (mkPN "Guilin") ; -Countries_R_provinces_Rep_ofKomi_cities_Ukhta = UsePN (mkPN "Ukhta") ; -Countries_BR_provinces_SaoPaulo_cities_Cotia = UsePN (mkPN "Cotia") ; -Countries_UZB_provinces_Farghona_cities_Marghilon = UsePN (mkPN "Marghilon") ; -Countries_IR_provinces_Mazandaran_cities_Qaemshahr = UsePN (mkPN "Qaemshahr") ; -Countries_IR_provinces_Bushehr_cities_Bushehr = UsePN (mkPN "Bushehr") ; -Countries_UA_provinces_Chernivetska = UsePN (mkPN "Chernivetska") ; -Countries_A_provinces_Salzburg = UsePN (mkPN "Salzburg") ; -NewZealand = UsePN (mkPN "New Zealand") ; -Countries_R_provinces_Rostovskayaoblast_cities_Novoshakhtinsk = UsePN (mkPN "Novoshakhtinsk") ; -Countries_C_provinces_VillaClara_cities_SantaClara = UsePN (mkPN "Santa Clara") ; -Countries_EAT_provinces_Lindi_cities_Lindi = UsePN (mkPN "Lindi") ; -Russia = UsePN (mkPN "Russia") ; -Countries_S_provinces_Gavleborg_cities_Gavle = UsePN (mkPN "Gavle") ; -Countries_E_provinces_CanaryIslands_cities_LaLaguna = UsePN (mkPN "La Laguna") ; -Countries_D_provinces_BadenWurttemberg_cities_FreiburgimBreisgau = UsePN (mkPN "Freiburg im Breisgau") ; -Countries_MEX_provinces_Guanajuato_cities_Guanajuato = UsePN (mkPN "Guanajuato") ; -Countries_IND_provinces_Gujarat_cities_Jamnagar = UsePN (mkPN "Jamnagar") ; -Countries_CDN_provinces_PrinceEdwardIsland_cities_Charlottetown = UsePN (mkPN "Charlottetown") ; -Countries_ET_provinces_ElQalubiya_cities_Benha = UsePN (mkPN "Benha") ; -Countries_IR_provinces_Kerman = UsePN (mkPN "Kerman") ; -Countries_R_provinces_Rep_ofSakha_cities_Yakutsk = UsePN (mkPN "Yakutsk") ; -Countries_RC_cities_Sanchuung = UsePN (mkPN "Sanchuung") ; -Countries_CO_provinces_Casanare_cities_Yopal = UsePN (mkPN "Yopal") ; -Countries_GB_provinces_TyneandWear_cities_Gateshead = UsePN (mkPN "Gateshead") ; -Countries_SN_provinces_Diourbel = UsePN (mkPN "Diourbel") ; -Countries_IRQ_provinces_Ninawa = UsePN (mkPN "Ninawa") ; -Countries_USA_provinces_Texas_cities_Mesquite = UsePN (mkPN "Mesquite") ; -Countries_R_provinces_Amurskayaoblast = UsePN (mkPN "Amurskaya oblast") ; -Countries_GB_provinces_Berkshire_cities_Newbury = UsePN (mkPN "Newbury") ; -Organizations_WMO = UsePN (mkPN "World Meteorological Organization") ; -Countries_CO_provinces_SanAndresyProvidencia = UsePN (mkPN "San Andres y Providencia") ; -Seas_ArabianSea = UsePN (mkPN "Arabian Sea") ; -Countries_TUV_cities_Funafuti = UsePN (mkPN "Funafuti") ; -Countries_USA_provinces_California_cities_SimiValley = UsePN (mkPN "Simi Valley") ; -Countries_C_provinces_SanctiSpiritus_cities_SanctiSpiritus = UsePN (mkPN "Sancti Spiritus") ; -Countries_CDN_provinces_BritishColumbia_cities_Victoria = UsePN (mkPN "Victoria") ; -Countries_BR_provinces_SaoPaulo = UsePN (mkPN "Sao Paulo") ; -Countries_R_provinces_Orlovskayaoblast_cities_Orel = UsePN (mkPN "Orel") ; -Countries_DK_cities_Odense = UsePN (mkPN "Odense") ; -Countries_BD_cities_Comilla = UsePN (mkPN "Comilla") ; -Countries_R_provinces_Krasnoyarskiykray_cities_Kansk = UsePN (mkPN "Kansk") ; -Countries_PL_provinces_Gdanskie_cities_Gdansk = UsePN (mkPN "Gdansk") ; -Countries_BR_cities_SantaBarbaradOeste = UsePN (mkPN "Santa Barbara dOeste") ; -Countries_RC_provinces_Changhua_cities_Changhua = UsePN (mkPN "Changhua") ; -Countries_R_provinces_UdmurtRepublic_cities_Sarapul = UsePN (mkPN "Sarapul") ; -Countries_UAE_cities_Dubai = UsePN (mkPN "Dubai") ; -Countries_P_provinces_Lisbon = UsePN (mkPN "Lisbon") ; -Countries_USA_provinces_Virginia_cities_VirginiaBeach = UsePN (mkPN "Virginia Beach") ; -Countries_cid_cia_Cayman_Islands_cities_GeorgeTown = UsePN (mkPN "George Town") ; -Countries_USA_provinces_California_cities_Stockton = UsePN (mkPN "Stockton") ; -Iran = UsePN (mkPN "Iran") ; -Countries_SF_provinces_Oulu = UsePN (mkPN "Oulu") ; -Countries_RO_provinces_Olt = UsePN (mkPN "Olt") ; -Countries_CDN_provinces_Ontario_cities_Brampton = UsePN (mkPN "Brampton") ; -Countries_TJ_provinces_Jilin_cities_Gongzhuling = UsePN (mkPN "Gongzhuling") ; -Countries_CO_provinces_Meta_cities_Villavicencio = UsePN (mkPN "Villavicencio") ; -Countries_EAT_provinces_Mbeya = UsePN (mkPN "Mbeya") ; -Countries_D_provinces_Thuringen = UsePN (mkPN "Thuringen") ; -Countries_BR_provinces_Bahia_cities_Juazeiro = UsePN (mkPN "Juazeiro") ; -Countries_CH_provinces_TI = UsePN (mkPN "TI") ; -Countries_PL_provinces_Katowickie_cities_Katowice = UsePN (mkPN "Katowice") ; -Countries_BHT_cities_Thimphu = UsePN (mkPN "Thimphu") ; -Countries_MEX_provinces_Coahuila = UsePN (mkPN "Coahuila") ; -Rivers_Kwa = UsePN (mkPN "Kwa") ; -Countries_IR_provinces_Semnan_cities_Semnan = UsePN (mkPN "Semnan") ; -Countries_I_provinces_Veneto_cities_Venice = UsePN (mkPN "Venice") ; -CoteDIvoire = UsePN (mkPN "Cote dIvoire") ; -Lakes_LakeSuat = UsePN (mkPN "Lake Suat") ; -Countries_TJ_provinces_Anhui_cities_Anqing = UsePN (mkPN "Anqing") ; -Countries_J_provinces_Shizuoka = UsePN (mkPN "Shizuoka") ; -MarshallIslands = UsePN (mkPN "Marshall Islands") ; -Countries_S_provinces_Alvsborg_cities_Vanersborg = UsePN (mkPN "Vanersborg") ; -Countries_TJ_provinces_Shaanxi_cities_Weinan = UsePN (mkPN "Weinan") ; -Countries_HCA_provinces_Copan_cities_SantaRosadeCopan = UsePN (mkPN "Santa Rosa de Copan") ; -Countries_BR_provinces_Paraiba_cities_SantaLuzia = UsePN (mkPN "Santa Luzia") ; -Countries_RI_cities_Bengkulu = UsePN (mkPN "Bengkulu") ; -Countries_MEX_provinces_Tabasco = UsePN (mkPN "Tabasco") ; -Countries_SA_cities_Jeddah = UsePN (mkPN "Jeddah") ; -Countries_NL_provinces_NoordBrabant = UsePN (mkPN "Noord Brabant") ; -Countries_TJ_provinces_Tibet_cities_Lhasa = UsePN (mkPN "Lhasa") ; -Countries_TR_provinces_Afyon_cities_Afyon = UsePN (mkPN "Afyon") ; -Countries_IND_provinces_AndhraPradesh_cities_Warangal = UsePN (mkPN "Warangal") ; -Madagascar = UsePN (mkPN "Madagascar") ; -Countries_KAZ_provinces_Almaty = UsePN (mkPN "Almaty") ; -Countries_B_provinces_Antwerp = UsePN (mkPN "Antwerp") ; -Countries_ZRE_provinces_Kivu_cities_Goma = UsePN (mkPN "Goma") ; -Rivers_Ural = UsePN (mkPN "Ural") ; -Islands_Langeland = UsePN (mkPN "Langeland") ; -Countries_GR_provinces_StereaEllas = UsePN (mkPN "Sterea Ellas") ; -Countries_MA_cities_Tanger = UsePN (mkPN "Tanger") ; -Countries_R_provinces_Pskovskayaoblast_cities_Pskov = UsePN (mkPN "Pskov") ; -Venezuela = UsePN (mkPN "Venezuela") ; -Countries_TJ_provinces_Henan_cities_Sanmenxia = UsePN (mkPN "Sanmenxia") ; -Countries_ET_provinces_Asyut_cities_Asyut = UsePN (mkPN "Asyut") ; -Countries_GB_provinces_IslandAreas_munic = UsePN (mkPN "Island Areas (munic.)") ; -Countries_MEX_provinces_Michoacan = UsePN (mkPN "Michoacan") ; -Organizations_UNTSO = UsePN (mkPN "United Nations Truce Supervision Organization") ; -Countries_J_provinces_Gifu = UsePN (mkPN "Gifu") ; -Countries_TR_provinces_Kirikkale_cities_Kirikkale = UsePN (mkPN "Kirikkale") ; -Countries_CZ_provinces_Severomoravsky_cities_Ostrava = UsePN (mkPN "Ostrava") ; -Countries_BR_provinces_Bahia_cities_Ilheus = UsePN (mkPN "Ilheus") ; -Countries_RM_provinces_Antsiranana = UsePN (mkPN "Antsiranana") ; -Countries_NL_provinces_Groningen_cities_Groningen = UsePN (mkPN "Groningen") ; -Countries_BR_provinces_Para_cities_Itaituba = UsePN (mkPN "Itaituba") ; -Countries_UA_provinces_Poltavska_cities_Kremenchuk = UsePN (mkPN "Kremenchuk") ; -Countries_RA_provinces_Cordoba_cities_RioCuarto = UsePN (mkPN "Rio Cuarto") ; -Countries_RI_cities_Bandung = UsePN (mkPN "Bandung") ; -Countries_MEX_provinces_Chihuahua = UsePN (mkPN "Chihuahua") ; -Countries_GB_provinces_Cleveland_cities_StocktononTees = UsePN (mkPN "Stockton on Tees") ; -Countries_Z_provinces_Copperbelt_cities_Chingola = UsePN (mkPN "Chingola") ; -Countries_ES_cities_Delgado = UsePN (mkPN "Delgado") ; -Lakes_LakeSuperior = UsePN (mkPN "Lake Superior") ; -Countries_I_provinces_Toscana_cities_Pisa = UsePN (mkPN "Pisa") ; -Countries_NL_provinces_Zeeland_cities_Middelburg = UsePN (mkPN "Middelburg") ; -Countries_RSA_cities_Daveyton = UsePN (mkPN "Daveyton") ; -Countries_R_provinces_Tulskayaoblast_cities_Tula = UsePN (mkPN "Tula") ; -Countries_IND_provinces_UttarPradesh_cities_Allahabad = UsePN (mkPN "Allahabad") ; -Ukraine = UsePN (mkPN "Ukraine") ; -Countries_RA_provinces_LaPampa_cities_SantaRosa = UsePN (mkPN "Santa Rosa") ; -Countries_RI_cities_Palangkaraya = UsePN (mkPN "Palangkaraya") ; -Lakes_LakeNyasa = UsePN (mkPN "Lake Nyasa") ; -Countries_HCA_provinces_ElParaiso = UsePN (mkPN "El Paraiso") ; -Countries_cid_cia_Reunion_cities_Saint_Denis = UsePN (mkPN "Saint-Denis") ; -Countries_I_provinces_Lombardia_cities_Brescia = UsePN (mkPN "Brescia") ; -Countries_TR_provinces_Kirikkale = UsePN (mkPN "Kirikkale") ; -Countries_UZB_provinces_Toshkent_cities_Tashkent = UsePN (mkPN "Tashkent") ; -Countries_R_provinces_Krasnodarskykray_cities_Armavir = UsePN (mkPN "Armavir") ; -Countries_CO_provinces_Amazonas_cities_Leticia = UsePN (mkPN "Leticia") ; -Countries_TR_provinces_Isparta_cities_Isparta = UsePN (mkPN "Isparta") ; -Countries_GB_provinces_TyneandWear_cities_Newcastle = UsePN (mkPN "Newcastle") ; -Countries_E_provinces_Catalonia_cities_Lleida = UsePN (mkPN "Lleida") ; -Countries_SN_provinces_Kolda_cities_Kolda = UsePN (mkPN "Kolda") ; -Uzbekistan = UsePN (mkPN "Uzbekistan") ; -Countries_WAN_cities_Kano = UsePN (mkPN "Kano") ; -Countries_USA_provinces_Georgia_cities_Columbus = UsePN (mkPN "Columbus") ; -Countries_ET_provinces_BeniSuef_cities_BeniSuef = UsePN (mkPN "Beni Suef") ; -Countries_IS_cities_Akureyri = UsePN (mkPN "Akureyri") ; -Deserts_GrandErgEst = UsePN (mkPN "Grand Erg Est") ; -Countries_J_provinces_Kochi_cities_Kochi = UsePN (mkPN "Kochi") ; -Countries_IND_provinces_AndhraPradesh_cities_Vijayawada = UsePN (mkPN "Vijayawada") ; -Countries_WAN_cities_Inisa = UsePN (mkPN "Inisa") ; -Countries_N_provinces_Oppland_cities_Lillehammer = UsePN (mkPN "Lillehammer") ; -Islands_JanMayen = UsePN (mkPN "Jan Mayen") ; -Countries_SF_provinces_Haeme_cities_Tampere = UsePN (mkPN "Tampere") ; -Countries_GCA_cities_GuatemalaCity = UsePN (mkPN "Guatemala City") ; -Countries_TR_provinces_Tokat = UsePN (mkPN "Tokat") ; -Countries_R_provinces_Smolenskayaoblast_cities_Smolensk = UsePN (mkPN "Smolensk") ; -Mountains_Leuser = UsePN (mkPN "Leuser") ; -Countries_YV_provinces_Anzoategui_cities_PuertoLaCruz = UsePN (mkPN "Puerto La Cruz") ; -Countries_USA_provinces_California_cities_ChulaVista = UsePN (mkPN "Chula Vista") ; -Countries_BD_cities_Nawabganj = UsePN (mkPN "Nawabganj") ; -Countries_CZ_provinces_Zapadocesky_cities_Plzen = UsePN (mkPN "Plzen") ; -Islands_Seeland = UsePN (mkPN "Seeland") ; -Countries_S_provinces_Norrbotten_cities_Lulea = UsePN (mkPN "Lulea") ; -Countries_PL_provinces_Leszczynskie = UsePN (mkPN "Leszczynskie") ; -Countries_R_provinces_Novosibirskayaoblast_cities_Novosibirsk = UsePN (mkPN "Novosibirsk") ; -Countries_PL_provinces_Gorzowskie = UsePN (mkPN "Gorzowskie") ; -Countries_ZRE_provinces_Shaba_cities_Likasi = UsePN (mkPN "Likasi") ; -Rivers_JoekulsaaFjoellum = UsePN (mkPN "Joekulsa a Fjoellum") ; -Organizations_NSG = UsePN (mkPN "Nuclear Suppliers Group") ; -Countries_YV_provinces_Tachira = UsePN (mkPN "Tachira") ; -Countries_THA_provinces_SamutSongkhram = UsePN (mkPN "Samut Songkhram") ; -Countries_LAR_cities_Bengasi = UsePN (mkPN "Bengasi") ; -Countries_B_provinces_Liege_cities_Liege = UsePN (mkPN "Liege") ; -Countries_TJ_provinces_Shandong_cities_Dongying = UsePN (mkPN "Dongying") ; -Countries_TJ_provinces_Jiangxi_cities_Shangrao = UsePN (mkPN "Shangrao") ; -Countries_RI_cities_Batam = UsePN (mkPN "Batam") ; -Rivers_WhiteDrin = UsePN (mkPN "White Drin") ; -Rivers_Oulujoki = UsePN (mkPN "Oulujoki") ; -Countries_TJ_provinces_Hubei_cities_Xiaogan = UsePN (mkPN "Xiaogan") ; -Countries_R_provinces_Tambovskayaoblast_cities_Tambov = UsePN (mkPN "Tambov") ; -Countries_J_provinces_Mie_cities_Tsu = UsePN (mkPN "Tsu") ; -Countries_R_provinces_Belgorodskayaoblast_cities_Belgorod = UsePN (mkPN "Belgorod") ; -Countries_PE_provinces_Ancash = UsePN (mkPN "Ancash") ; -Countries_ROK_cities_Taegu = UsePN (mkPN "Taegu") ; -Countries_RO_provinces_Arges_cities_Pitesti = UsePN (mkPN "Pitesti") ; -Islands_PrinceofWalesIsland = UsePN (mkPN "Prince of Wales Island") ; -Countries_PE_provinces_Ica_cities_ChinchaAlta = UsePN (mkPN "Chincha Alta") ; -Countries_IRQ_provinces_AsSulaymaniyah = UsePN (mkPN "As Sulaymaniyah") ; -Countries_UA_provinces_Luhanska_cities_Luhansk = UsePN (mkPN "Luhansk") ; -Countries_TJ_provinces_Qinghai = UsePN (mkPN "Qinghai") ; -Countries_GB_provinces_Merseyside_cities_Sefton = UsePN (mkPN "Sefton") ; -Countries_cid_cia_Virgin_Islands_cities_CharlotteAmalie = UsePN (mkPN "Charlotte Amalie") ; -Countries_B_provinces_Limburg_cities_Hasselt = UsePN (mkPN "Hasselt") ; -Countries_BR_provinces_RioGrandedoSul_cities_NovoHamburgo = UsePN (mkPN "Novo Hamburgo") ; -Countries_IR_provinces_Tehran_cities_Qom = UsePN (mkPN "Qom") ; -Countries_KAZ_provinces_Zhambyl_cities_Dzhambul = UsePN (mkPN "Dzhambul") ; -Countries_S_provinces_Skaraborg_cities_Mariestad = UsePN (mkPN "Mariestad") ; -Organizations_UNFPA = UsePN (mkPN "United Nations Population Fund") ; -Lakes_LakeBangweulu = UsePN (mkPN "Lake Bangweulu") ; -Lakes_LakeNicaragua = UsePN (mkPN "Lake Nicaragua") ; -Countries_cid_cia_Northern_Mariana_Islands = UsePN (mkPN "Northern Mariana Islands") ; -Countries_R_cities_Seversk = UsePN (mkPN "Seversk") ; -Countries_TJ_provinces_Liaoning_cities_Fushun = UsePN (mkPN "Fushun") ; -Countries_R_provinces_Sakhalinskayaoblast_cities_YuzhnoSakhalinsk = UsePN (mkPN "Yuzhno Sakhalinsk") ; -Countries_MV_cities_Male = UsePN (mkPN "Male") ; -Countries_RP_cities_Davao = UsePN (mkPN "Davao") ; -Lakes_LakeRudolph = UsePN (mkPN "Lake Rudolph") ; -Organizations_G_19 = UsePN (mkPN "Group of 19") ; -Countries_BR_provinces_EspiritoSanto_cities_Colatina = UsePN (mkPN "Colatina") ; -Countries_TJ_provinces_Shandong_cities_Zaozhuang = UsePN (mkPN "Zaozhuang") ; -Countries_J_provinces_Oita_cities_Oita = UsePN (mkPN "Oita") ; -Countries_CR_provinces_Limon = UsePN (mkPN "Limon") ; -Countries_J_provinces_Nagasaki_cities_Nagasaki = UsePN (mkPN "Nagasaki") ; -Organizations_IEA = UsePN (mkPN "International Energy Agency") ; -Seas_CaribbeanSea = UsePN (mkPN "Caribbean Sea") ; -Countries_ANG_provinces_Malanje = UsePN (mkPN "Malanje") ; -Mountains_Glittertind = UsePN (mkPN "Glittertind") ; -Countries_THA_provinces_AmnatCharoen = UsePN (mkPN "Amnat Charoen") ; -Countries_TJ_provinces_Jilin_cities_Liaoyuan = UsePN (mkPN "Liaoyuan") ; -Countries_BR_provinces_Roraima_cities_BoaVista = UsePN (mkPN "Boa Vista") ; -Islands_EastCaicos = UsePN (mkPN "East Caicos") ; -Countries_HCA_provinces_Yoro_cities_Olanchito = UsePN (mkPN "Olanchito") ; -Countries_TR_provinces_Giresun = UsePN (mkPN "Giresun") ; -Countries_RO_provinces_Calarasi_cities_Calarasi = UsePN (mkPN "Calarasi") ; -Countries_RO_provinces_Galati_cities_Galati = UsePN (mkPN "Galati") ; -Countries_D_provinces_Niedersachsen_cities_Hannover = UsePN (mkPN "Hannover") ; -Countries_PL_provinces_Kaliskie_cities_Kalisz = UsePN (mkPN "Kalisz") ; -Countries_USA_provinces_NewHampshire = UsePN (mkPN "New Hampshire") ; -Countries_J_provinces_Okinawa_cities_Naha = UsePN (mkPN "Naha") ; -Countries_WAN_cities_Oyo = UsePN (mkPN "Oyo") ; -Countries_RI_cities_Kediri = UsePN (mkPN "Kediri") ; -Countries_RSA_cities_Tembisa = UsePN (mkPN "Tembisa") ; -Countries_USA_provinces_Utah_cities_SaltLakeCity = UsePN (mkPN "Salt Lake City") ; -Countries_USA_provinces_Texas_cities_Plano = UsePN (mkPN "Plano") ; -Countries_RM_provinces_Antsiranana_cities_Antsiranana = UsePN (mkPN "Antsiranana") ; -Organizations_CACM = UsePN (mkPN "Central American Common Market") ; -Countries_USA_provinces_Montana_cities_Helena = UsePN (mkPN "Helena") ; -Countries_IND_provinces_Gujarat_cities_Bhavnagar = UsePN (mkPN "Bhavnagar") ; -Countries_HCA_provinces_Lempira_cities_Gracias = UsePN (mkPN "Gracias") ; -Countries_P_provinces_Faro = UsePN (mkPN "Faro") ; -Countries_R_provinces_Kemerovskayaoblast = UsePN (mkPN "Kemerovskaya oblast") ; -Countries_CV_cities_Praia = UsePN (mkPN "Praia") ; -Countries_D_provinces_Sachsen_cities_Chemnitz = UsePN (mkPN "Chemnitz") ; -Countries_MAL_provinces_Kelantan_cities_KotaBaharu = UsePN (mkPN "Kota Baharu") ; -Countries_WAN_cities_Owo = UsePN (mkPN "Owo") ; -Countries_BD_cities_Brahmanbaria = UsePN (mkPN "Brahmanbaria") ; -Countries_CAM_provinces_Sudoueste_cities_Buea = UsePN (mkPN "Buea") ; -Countries_MYA_provinces_Ayeyarwady_cities_Pathein = UsePN (mkPN "Pathein") ; -Countries_IND_provinces_UttarPradesh_cities_Aligarh = UsePN (mkPN "Aligarh") ; -Mountains_RasDaschan = UsePN (mkPN "Ras Daschan") ; -Rivers_BlueNile = UsePN (mkPN "Blue Nile") ; -Countries_VN_provinces_QuangNgai = UsePN (mkPN "Quang Ngai") ; -Countries_ET_provinces_ElGharbiya_cities_ElMahallaelKubra = UsePN (mkPN "El Mahalla el Kubra") ; -Countries_USA_provinces_Connecticut_cities_Hartford = UsePN (mkPN "Hartford") ; -Countries_MYA_provinces_Kayin = UsePN (mkPN "Kayin") ; -Lakes_ChicamaugaLake = UsePN (mkPN "Chicamauga Lake") ; -Mountains_Meru = UsePN (mkPN "Meru") ; -Countries_IND_provinces_Nagaland_cities_Kohima = UsePN (mkPN "Kohima") ; -Countries_GB_provinces_Hampshire_cities_Havant = UsePN (mkPN "Havant") ; -Countries_ET_provinces_Qena_cities_ElUqsur = UsePN (mkPN "El Uqsur") ; -Countries_A_provinces_Vienna = UsePN (mkPN "Vienna") ; -Countries_H_provinces_Csongrad_cities_Hodmezovasarhely = UsePN (mkPN "Hodmezovasarhely") ; -Lebanon = UsePN (mkPN "Lebanon") ; -Countries_GB_provinces_Dorset = UsePN (mkPN "Dorset") ; -Countries_USA_provinces_NewJersey_cities_Trenton = UsePN (mkPN "Trenton") ; -Countries_TJ_provinces_Hunan_cities_Yuanjiang = UsePN (mkPN "Yuanjiang") ; -Countries_GB_provinces_Pembrokeshire = UsePN (mkPN "Pembrokeshire") ; -Countries_BR_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; -Countries_R_provinces_Rostovskayaoblast = UsePN (mkPN "Rostovskaya oblast") ; -Countries_GNB_cities_Bissau = UsePN (mkPN "Bissau") ; -Lakes_Vaenern = UsePN (mkPN "Vaenern") ; -Somalia = UsePN (mkPN "Somalia") ; -Countries_LB_cities_Monrovia = UsePN (mkPN "Monrovia") ; -Countries_IND_provinces_MadhyaPradesh_cities_Bhilai = UsePN (mkPN "Bhilai") ; -Countries_PL_provinces_Bydgoskie_cities_Bydgoszcz = UsePN (mkPN "Bydgoszcz") ; -Countries_RA_provinces_BuenosAires_cities_Quilmes = UsePN (mkPN "Quilmes") ; -Countries_GB_provinces_Caerphilly_cities_YstradFawr = UsePN (mkPN "Ystrad Fawr") ; -Countries_AUS_provinces_NorfolkIsland_cities_Kingston = UsePN (mkPN "Kingston") ; -Islands_Rhodos = UsePN (mkPN "Rhodos") ; -Islands_Lanai = UsePN (mkPN "Lanai") ; -Countries_ET_provinces_KafrelSheikh = UsePN (mkPN "Kafr el Sheikh") ; -Countries_IR_provinces_Tehran_cities_Kashan = UsePN (mkPN "Kashan") ; -Countries_GH_cities_Tema = UsePN (mkPN "Tema") ; -Countries_IS_cities_Keflavik = UsePN (mkPN "Keflavik") ; -Countries_PL_provinces_Opolskie = UsePN (mkPN "Opolskie") ; -Countries_GR_cities_Larisa = UsePN (mkPN "Larisa") ; -Mountains_Chimborazo = UsePN (mkPN "Chimborazo") ; -Countries_GCA_cities_Mixco = UsePN (mkPN "Mixco") ; -Niger = UsePN (mkPN "Niger") ; -Countries_Z_provinces_Copperbelt = UsePN (mkPN "Copperbelt") ; -Countries_CDN_provinces_BritishColumbia_cities_Vancouver = UsePN (mkPN "Vancouver") ; -Countries_F_provinces_IledeFrance_cities_Paris = UsePN (mkPN "Paris") ; -Countries_TJ_provinces_Beijing_munic = UsePN (mkPN "Beijing (munic.)") ; -Countries_WAN_cities_Iseyin = UsePN (mkPN "Iseyin") ; -Organizations_ANZUS = UsePN (mkPN "Australia-New Zealand-United States Security Treaty") ; -Countries_CAM_provinces_Cote_cities_Douala = UsePN (mkPN "Douala") ; -Countries_R_provinces_Krasnodarskykray = UsePN (mkPN "Krasnodarsky kray") ; -Countries_USA_provinces_California_cities_Salinas = UsePN (mkPN "Salinas") ; -Countries_A_provinces_Tyrol = UsePN (mkPN "Tyrol") ; -Countries_IR_provinces_Zanjan = UsePN (mkPN "Zanjan") ; -Countries_IL_provinces_TelAviv = UsePN (mkPN "Tel Aviv") ; -Countries_RSA_provinces_Gauteng_cities_Pretoria = UsePN (mkPN "Pretoria") ; -Countries_MOC_provinces_Maputo = UsePN (mkPN "Maputo") ; -Countries_RP_cities_CagayandeOro = UsePN (mkPN "Cagayan de Oro") ; -Deserts_LibyanDesert = UsePN (mkPN "Libyan Desert") ; -Countries_cid_cia_Cook_Islands_cities_Avarua = UsePN (mkPN "Avarua") ; -Countries_MA_provinces_CentreNord = UsePN (mkPN "Centre Nord") ; -Countries_IR_provinces_Lorestan_cities_Borujerd = UsePN (mkPN "Borujerd") ; -Countries_CH_provinces_JU_cities_Delemont = UsePN (mkPN "Delemont") ; -Countries_S_provinces_Vasterbotten = UsePN (mkPN "Vasterbotten") ; -Islands_Mull = UsePN (mkPN "Mull") ; -Countries_USA_provinces_SouthDakota_cities_Pierre = UsePN (mkPN "Pierre") ; -Countries_MEX_provinces_Mexico_Estadode = UsePN (mkPN "Mexico, Estado de") ; -Countries_GB_provinces_Essex = UsePN (mkPN "Essex") ; -Countries_RI_cities_Balikpapan = UsePN (mkPN "Balikpapan") ; -Countries_cid_cia_Man = UsePN (mkPN "Man") ; -Countries_CH_provinces_AR_cities_Herisau = UsePN (mkPN "Herisau") ; -Countries_MAL_provinces_Sabah_cities_KotaKinabalu = UsePN (mkPN "Kota Kinabalu") ; -Countries_HCA_provinces_Ocotepeque = UsePN (mkPN "Ocotepeque") ; -Palau = UsePN (mkPN "Palau") ; -Countries_KAZ_provinces_Qaraghandy_cities_Temirtau = UsePN (mkPN "Temirtau") ; -Seas_RedSea = UsePN (mkPN "Red Sea") ; -Countries_VN_provinces_CentralHighlands = UsePN (mkPN "Central Highlands") ; -Sweden = UsePN (mkPN "Sweden") ; -Countries_TJ_provinces_Jilin_cities_Daan = UsePN (mkPN "Daan") ; -Islands_Kefallinia = UsePN (mkPN "Kefallinia") ; -Countries_ZRE_provinces_BasZaire_cities_Boma = UsePN (mkPN "Boma") ; -Countries_WAN_cities_Makurdi = UsePN (mkPN "Makurdi") ; -Countries_KAZ_provinces_Semey_cities_Semey = UsePN (mkPN "Semey") ; -Lakes_LacLeman = UsePN (mkPN "Lac Leman") ; -Countries_TJ_provinces_Hebei = UsePN (mkPN "Hebei") ; -Countries_R_provinces_Rostovskayaoblast_cities_Taganrog = UsePN (mkPN "Taganrog") ; -Countries_BR_provinces_RiodeJaneiro_cities_DuquedeCaxias = UsePN (mkPN "Duque de Caxias") ; -Countries_D_provinces_NordrheinWestfalen_cities_Neuss = UsePN (mkPN "Neuss") ; -Countries_ANG_provinces_Zaire = UsePN (mkPN "Zaire") ; -Islands_Sumatra = UsePN (mkPN "Sumatra") ; -Lakes_LakeMakarikari = UsePN (mkPN "Lake Makarikari") ; -Countries_P_provinces_Porto = UsePN (mkPN "Porto") ; -Countries_TJ_provinces_Liaoning_cities_Yingkou = UsePN (mkPN "Yingkou") ; -Countries_VN_provinces_SonLa = UsePN (mkPN "Son La") ; -Countries_GB_provinces_Cheshire_cities_Chester = UsePN (mkPN "Chester") ; -Countries_GB_provinces_Denbighshire_cities_Ruthin = UsePN (mkPN "Ruthin") ; -Countries_TJ_provinces_Guangdong = UsePN (mkPN "Guangdong") ; -Countries_Q_cities_Doha = UsePN (mkPN "Doha") ; -Countries_TM_provinces_Leban_cities_Charjew = UsePN (mkPN "Charjew") ; -Countries_BD_cities_Naogaon = UsePN (mkPN "Naogaon") ; -Lakes_OzeroBalchash = UsePN (mkPN "Ozero Balchash") ; -Countries_N_provinces_Buskerud = UsePN (mkPN "Buskerud") ; -Countries_TJ_provinces_Hebei_cities_Baoding = UsePN (mkPN "Baoding") ; -Countries_TJ_provinces_Jiangsu_cities_Nantong = UsePN (mkPN "Nantong") ; -Countries_PL_provinces_Tarnobrzeskie_cities_Tarnobrzeg = UsePN (mkPN "Tarnobrzeg") ; -Countries_USA_provinces_Missouri = UsePN (mkPN "Missouri") ; -Countries_J_provinces_Hyogo_cities_Kobe = UsePN (mkPN "Kobe") ; -Countries_ET_provinces_Qena_cities_Qena = UsePN (mkPN "Qena") ; -Countries_BR_cities_RibeiraodasNeves = UsePN (mkPN "Ribeirao das Neves") ; -Countries_cid_cia_Cayman_Islands = UsePN (mkPN "Cayman Islands") ; -Islands_Teneriffa = UsePN (mkPN "Teneriffa") ; -Belize = UsePN (mkPN "Belize") ; -Countries_PE_provinces_Amazonas = UsePN (mkPN "Amazonas") ; -Countries_AUS_provinces_Tasmania = UsePN (mkPN "Tasmania") ; -Countries_RA_provinces_BuenosAires_cities_Moron = UsePN (mkPN "Moron") ; -Countries_GB_provinces_WestMidlands_cities_Dudley = UsePN (mkPN "Dudley") ; -Countries_H_provinces_Vas_cities_Szombathely = UsePN (mkPN "Szombathely") ; -Countries_IND_provinces_Orissa = UsePN (mkPN "Orissa") ; -Countries_WAN_cities_Lagos = UsePN (mkPN "Lagos") ; -Countries_CZ_provinces_Jihocesky = UsePN (mkPN "Jihocesky") ; -Countries_I_provinces_Basilicata = UsePN (mkPN "Basilicata") ; -Islands_VictoriaIsland = UsePN (mkPN "Victoria Island") ; -Countries_TR_provinces_Eskisehir_cities_Eskisehir = UsePN (mkPN "Eskisehir") ; -Countries_SUD_provinces_Darfur_cities_Nyala = UsePN (mkPN "Nyala") ; -Islands_Leyte = UsePN (mkPN "Leyte") ; -Fiji = UsePN (mkPN "Fiji") ; -Countries_I_provinces_EmiliaRomagna_cities_Modena = UsePN (mkPN "Modena") ; -Countries_USA_provinces_California_cities_SantaAna = UsePN (mkPN "Santa Ana") ; -Countries_NOK_cities_Songjin = UsePN (mkPN "Songjin") ; -Countries_R_provinces_Krasnoyarskiykray_cities_Norilsk = UsePN (mkPN "Norilsk") ; -Islands_GranCanaria = UsePN (mkPN "Gran Canaria") ; -Countries_IR_provinces_Lorestan = UsePN (mkPN "Lorestan") ; -Lakes_LakeStephanie = UsePN (mkPN "Lake Stephanie") ; -Countries_D_provinces_NordrheinWestfalen = UsePN (mkPN "Nordrhein Westfalen") ; -Oman = UsePN (mkPN "Oman") ; -Countries_TJ_provinces_Anhui_cities_Hefei = UsePN (mkPN "Hefei") ; -Countries_SF_provinces_Haeme = UsePN (mkPN "Haeme") ; -Countries_F_provinces_Auvergne = UsePN (mkPN "Auvergne") ; -Countries_cid_cia_Aruba_cities_Oranjestad = UsePN (mkPN "Oranjestad") ; -Islands_Cayman = UsePN (mkPN "Cayman") ; -Countries_CH_provinces_SO_cities_Solothurn = UsePN (mkPN "Solothurn") ; -Countries_R_provinces_Irkutskayaoblast_cities_UstIlimsk = UsePN (mkPN "Ust Ilimsk") ; -Countries_USA_provinces_NewJersey_cities_Elizabeth = UsePN (mkPN "Elizabeth") ; -Singapore = UsePN (mkPN "Singapore") ; -Rivers_Weser = UsePN (mkPN "Weser") ; -Islands_Rhum = UsePN (mkPN "Rhum") ; -Countries_CO_provinces_Guainia_cities_PuertoInirida = UsePN (mkPN "Puerto Inirida") ; -Countries_GB_provinces_IslandAreas_munic_cities_IslandAreas = UsePN (mkPN "Island Areas") ; -Countries_NOK_cities_Kanggye = UsePN (mkPN "Kanggye") ; -Countries_RSA_provinces_Mpumalanga = UsePN (mkPN "Mpumalanga") ; -Countries_D_provinces_SchleswigHolstein = UsePN (mkPN "Schleswig Holstein") ; -Islands_Tobago = UsePN (mkPN "Tobago") ; -Countries_TJ_provinces_Zhejiang_cities_Yuyao = UsePN (mkPN "Yuyao") ; -Countries_TAD_provinces_Leninobod = UsePN (mkPN "Leninobod") ; -Countries_RC_provinces_Taipei_munic_cities_Taipei = UsePN (mkPN "Taipei") ; -Countries_ROK_cities_Chonju = UsePN (mkPN "Chonju") ; -Countries_PL_provinces_Krakowskie = UsePN (mkPN "Krakowskie") ; -Countries_H_provinces_SzabolcsSzatmar = UsePN (mkPN "Szabolcs Szatmar") ; -Countries_YV_provinces_Aragua = UsePN (mkPN "Aragua") ; -Countries_TJ_provinces_Guangdong_cities_Maoming = UsePN (mkPN "Maoming") ; -Countries_BR_provinces_Bahia_cities_Barreiras = UsePN (mkPN "Barreiras") ; -Countries_USA_provinces_Utah = UsePN (mkPN "Utah") ; -Countries_TJ_provinces_Hubei_cities_Shishou = UsePN (mkPN "Shishou") ; -Countries_RSA_cities_Mamelodi = UsePN (mkPN "Mamelodi") ; -Countries_GB_provinces_Devon = UsePN (mkPN "Devon") ; -Countries_VN_provinces_BinhThuan = UsePN (mkPN "Binh Thuan") ; -Organizations_ACC = UsePN (mkPN "Arab Cooperation Council") ; -Rivers_Parana = UsePN (mkPN "Parana") ; -Countries_GB_provinces_Surrey_cities_Elmbridge = UsePN (mkPN "Elmbridge") ; -Countries_BD_cities_Sirajganj = UsePN (mkPN "Sirajganj") ; -Countries_PL_provinces_Przemyskie_cities_Przemysl = UsePN (mkPN "Przemysl") ; -Countries_TJ_provinces_Guangdong_cities_Shaoguan = UsePN (mkPN "Shaoguan") ; -Countries_J_provinces_Saga_cities_Saga = UsePN (mkPN "Saga") ; -Countries_R_provinces_Primorskykray_cities_Ussuriysk = UsePN (mkPN "Ussuriysk") ; -Countries_ET_provinces_Dumyat = UsePN (mkPN "Dumyat") ; -Countries_EAK_provinces_Western = UsePN (mkPN "Western") ; -Countries_BR_provinces_Alagoas = UsePN (mkPN "Alagoas") ; -Countries_TJ_provinces_Shandong_cities_Xintai = UsePN (mkPN "Xintai") ; -Countries_DK_cities_Randers = UsePN (mkPN "Randers") ; -Countries_TR_provinces_Erzincan_cities_Erzincan = UsePN (mkPN "Erzincan") ; -Countries_E_provinces_Murcia = UsePN (mkPN "Murcia") ; -Countries_THA_provinces_BuriRam = UsePN (mkPN "Buri Ram") ; -Countries_USA_provinces_California_cities_SantaClarita = UsePN (mkPN "Santa Clarita") ; -Countries_BR_provinces_Acre = UsePN (mkPN "Acre") ; -Countries_RSA_provinces_EasternCape_cities_KingWilliamsTown = UsePN (mkPN "King Williams Town") ; -Rivers_St_Lorenzstrom = UsePN (mkPN "St. Lorenzstrom") ; -Countries_N_provinces_MoereogRomsdal_cities_Molde = UsePN (mkPN "Molde") ; -Countries_N_provinces_Telemark_cities_Skien = UsePN (mkPN "Skien") ; -Bhutan = UsePN (mkPN "Bhutan") ; -Countries_UZB_provinces_Bukhoro = UsePN (mkPN "Bukhoro") ; -Countries_PA_provinces_Cocle = UsePN (mkPN "Cocle") ; -Countries_cid_cia_Svalbard = UsePN (mkPN "Svalbard") ; -Countries_AUS_provinces_Kirimati = UsePN (mkPN "Kirimati") ; -Countries_cid_cia_Montserrat_cities_Plymouth = UsePN (mkPN "Plymouth") ; -Countries_R_provinces_Altayskiykray_cities_Biysk = UsePN (mkPN "Biysk") ; -Countries_TR_provinces_Ankara = UsePN (mkPN "Ankara") ; -Countries_THA_provinces_NakhonSawan_cities_NakhonSawan = UsePN (mkPN "Nakhon Sawan") ; -Countries_E_provinces_Catalonia_cities_SantaColomadeGramanet = UsePN (mkPN "Santa Coloma de Gramanet") ; -Turkmenistan = UsePN (mkPN "Turkmenistan") ; -Countries_R_provinces_Moskovskayaoblast_cities_Podolsk = UsePN (mkPN "Podolsk") ; -Countries_BR_provinces_SaoPaulo_cities_SaoVicente = UsePN (mkPN "Sao Vicente") ; -Countries_E_provinces_Galicia_cities_Orense = UsePN (mkPN "Orense") ; -Brazil = UsePN (mkPN "Brazil") ; -Countries_PE_provinces_Ayacucho_cities_Ayacucho = UsePN (mkPN "Ayacucho") ; -Islands_Iona = UsePN (mkPN "Iona") ; -Countries_MAL_provinces_Pahang = UsePN (mkPN "Pahang") ; -Countries_TJ_provinces_Liaoning_cities_Wafangdian = UsePN (mkPN "Wafangdian") ; -Rivers_Schari = UsePN (mkPN "Schari") ; -Organizations_CP = UsePN (mkPN "Colombo Plan") ; -Lakes_LakeNaesi = UsePN (mkPN "Lake Naesi") ; -Countries_cid_cia_Macau_cities_Macau = UsePN (mkPN "Macau") ; -Countries_CDN_provinces_Quebec_cities_Montreal = UsePN (mkPN "Montreal") ; -Countries_GH_cities_Kumasi = UsePN (mkPN "Kumasi") ; -Countries_ES_provinces_SanVicente = UsePN (mkPN "San Vicente") ; -Organizations_BCIE = UsePN (mkPN "Central American Bank for Economic Integration") ; -Countries_R_provinces_Rep_ofBashkortostan = UsePN (mkPN "Rep. of Bashkortostan") ; -Organizations_G_11 = UsePN (mkPN "Group of 11") ; -Countries_PL_provinces_Warszwaskie = UsePN (mkPN "Warszwaskie") ; -Countries_cid_cia_Guam_cities_Agana = UsePN (mkPN "Agana") ; -Countries_H_provinces_Debrecen_munic = UsePN (mkPN "Debrecen (munic.)") ; -Countries_EAK_provinces_Nyanza_cities_Kisii = UsePN (mkPN "Kisii") ; -Countries_ANG_provinces_Moxico = UsePN (mkPN "Moxico") ; -Countries_RM_provinces_Mahajanga = UsePN (mkPN "Mahajanga") ; -Countries_PL_provinces_Leszczynskie_cities_Leszno = UsePN (mkPN "Leszno") ; -Countries_VN_provinces_TuyenQuang = UsePN (mkPN "Tuyen Quang") ; -UnitedArabEmirates = UsePN (mkPN "United Arab Emirates") ; -Organizations_OPEC = UsePN (mkPN "Organization of Petroleum Exporting Countries") ; -Lakes_GreatBearLake = UsePN (mkPN "Great Bear Lake") ; -Countries_TJ_provinces_Hunan_cities_Liling = UsePN (mkPN "Liling") ; -Countries_TJ_provinces_Yunnan_cities_Kunming = UsePN (mkPN "Kunming") ; -Countries_MOC_cities_Matala = UsePN (mkPN "Matala") ; -Countries_PE_provinces_SanMartin_cities_Moyobamba = UsePN (mkPN "Moyobamba") ; -Countries_N_provinces_Oestfold = UsePN (mkPN "Oestfold") ; -Countries_GB_provinces_Gloucestershire_cities_Stroud = UsePN (mkPN "Stroud") ; -Countries_A_provinces_Vorarlberg_cities_Bregenz = UsePN (mkPN "Bregenz") ; -Countries_KAZ_provinces_Kokchetau_cities_Kokchetau = UsePN (mkPN "Kokchetau") ; -Countries_THA_provinces_BangkokMetropolis_cities_Bangkok = UsePN (mkPN "Bangkok") ; -Countries_R_provinces_Tambovskayaoblast_cities_Michurinsk = UsePN (mkPN "Michurinsk") ; -Countries_GB_provinces_Cheshire_cities_Crewe = UsePN (mkPN "Crewe") ; -Countries_I_provinces_Molise_cities_Campobasso = UsePN (mkPN "Campobasso") ; -Countries_D_provinces_RheinlandPfalz_cities_Koblenz = UsePN (mkPN "Koblenz") ; -Countries_CO_provinces_Cordoba = UsePN (mkPN "Cordoba") ; -Organizations_OIC = UsePN (mkPN "Organization of the Islamic Conference") ; -Countries_PE_provinces_Tumbes = UsePN (mkPN "Tumbes") ; -Countries_J_provinces_Nara = UsePN (mkPN "Nara") ; -Countries_R_provinces_Yevreyskayaavt_oblast_cities_Birobidzhan = UsePN (mkPN "Birobidzhan") ; -Countries_YV_provinces_Merida_cities_Merida = UsePN (mkPN "Merida") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Guixian = UsePN (mkPN "Guixian") ; -Countries_IRQ_provinces_Irbil_cities_Irbil = UsePN (mkPN "Irbil") ; -Countries_USA_provinces_Massachusetts_cities_Lowell = UsePN (mkPN "Lowell") ; -Countries_C_provinces_Matanzas = UsePN (mkPN "Matanzas") ; -Countries_ET_provinces_ElQahira_munic_cities_Cairo = UsePN (mkPN "Cairo") ; -Countries_E_provinces_Rioja_cities_Logrono = UsePN (mkPN "Logrono") ; -Countries_R_provinces_Stavropolskykray_cities_Nevinnomyssk = UsePN (mkPN "Nevinnomyssk") ; -Countries_KAZ_provinces_ShyghysQazaqstan = UsePN (mkPN "Shyghys Qazaqstan") ; -Countries_IND_provinces_Sikkim_cities_Gangtok = UsePN (mkPN "Gangtok") ; -Countries_WAN_cities_Ilobu = UsePN (mkPN "Ilobu") ; -Rivers_Baro = UsePN (mkPN "Baro") ; -Rivers_WhiteNile = UsePN (mkPN "White Nile") ; -Countries_C_provinces_CiegodeAvila_cities_CiegodeAvila = UsePN (mkPN "Ciego de Avila") ; -Countries_IR_provinces_Esfahan_cities_Esfahan = UsePN (mkPN "Esfahan") ; -Countries_IR_cities_Islamshahr = UsePN (mkPN "Islamshahr") ; -Countries_AL_cities_Elbasan = UsePN (mkPN "Elbasan") ; -UnitedKingdom = UsePN (mkPN "United Kingdom") ; -Countries_GB_provinces_Merseyside_cities_Wiral = UsePN (mkPN "Wiral") ; -Countries_cid_cia_Niue = UsePN (mkPN "Niue") ; -Countries_GH_cities_Sekondi = UsePN (mkPN "Sekondi") ; -Countries_MEX_provinces_Chiapas_cities_Nezahualcoyotl = UsePN (mkPN "Nezahualcoyotl") ; -Countries_PL_provinces_Katowickie_cities_RudaSlaska = UsePN (mkPN "Ruda Slaska") ; -Countries_BR_provinces_MinasGerais_cities_JuizdeFora = UsePN (mkPN "Juiz de Fora") ; -Mountains_EmiKussi = UsePN (mkPN "Emi Kussi") ; -Countries_F_provinces_NordPasdeCalais = UsePN (mkPN "Nord Pas de Calais") ; -Countries_BD_cities_Tangail = UsePN (mkPN "Tangail") ; -Countries_R_provinces_Kaluzhskayaoblast = UsePN (mkPN "Kaluzhskaya oblast") ; -Liechtenstein = UsePN (mkPN "Liechtenstein") ; -Guinea = UsePN (mkPN "Guinea") ; -Countries_TJ_provinces_Henan_cities_Nanyang = UsePN (mkPN "Nanyang") ; -SouthKorea = UsePN (mkPN "South Korea") ; -Countries_J_provinces_Yamanashi_cities_Kofu = UsePN (mkPN "Kofu") ; -Countries_USA_provinces_Ohio_cities_Cleveland = UsePN (mkPN "Cleveland") ; -Countries_BR_provinces_RioGrandedoSul_cities_SantaCruzdoSul = UsePN (mkPN "Santa Cruz do Sul") ; -Rivers_Rhone = UsePN (mkPN "Rhone") ; -Countries_USA_provinces_Alabama_cities_Huntsville = UsePN (mkPN "Huntsville") ; -Countries_GB_provinces_Northamptonshire = UsePN (mkPN "Northamptonshire") ; -Countries_SUD_provinces_BahralGhazal_cities_Waw = UsePN (mkPN "Waw") ; -Countries_WAN_cities_Aba = UsePN (mkPN "Aba") ; -Countries_PA_provinces_LosSantos = UsePN (mkPN "Los Santos") ; -Islands_Anjouan = UsePN (mkPN "Anjouan") ; -Countries_YV_provinces_Cojedes_cities_SanCarlos = UsePN (mkPN "San Carlos") ; -Countries_TJ_provinces_Jilin_cities_Huadian = UsePN (mkPN "Huadian") ; -Countries_USA_provinces_Arizona_cities_Tucson = UsePN (mkPN "Tucson") ; -Countries_USA_provinces_California_cities_Pasadena = UsePN (mkPN "Pasadena") ; -Countries_TJ_provinces_Liaoning_cities_Dandong = UsePN (mkPN "Dandong") ; -Countries_MEX_provinces_DistritoFederal_cities_MexicoCity = UsePN (mkPN "Mexico City") ; -Countries_PL_provinces_Koszalinskie_cities_Koszalin = UsePN (mkPN "Koszalin") ; -Countries_H_provinces_Nograd = UsePN (mkPN "Nograd") ; -Countries_KAZ_provinces_Zhezkazghan_cities_Zhezkazghan = UsePN (mkPN "Zhezkazghan") ; -Countries_PL_provinces_Torunskie_cities_Torun = UsePN (mkPN "Torun") ; -Countries_PE_provinces_Arequipa = UsePN (mkPN "Arequipa") ; -Countries_GB_provinces_Humberside_cities_Beverley = UsePN (mkPN "Beverley") ; -Countries_PK_cities_Peshawar = UsePN (mkPN "Peshawar") ; -Countries_R_provinces_Omskayaoblast = UsePN (mkPN "Omskaya oblast") ; -Countries_CH_provinces_GR_cities_Chur = UsePN (mkPN "Chur") ; -Countries_F_provinces_Corse = UsePN (mkPN "Corse") ; -Countries_TJ_provinces_Zhejiang_cities_Haining = UsePN (mkPN "Haining") ; -Mountains_Snoefell = UsePN (mkPN "Snoefell") ; -Countries_J_provinces_Saitama_cities_Urawa = UsePN (mkPN "Urawa") ; -Countries_D_provinces_Sachsen_cities_Zwickau = UsePN (mkPN "Zwickau") ; -Countries_I_provinces_Sardegna_cities_Cagliari = UsePN (mkPN "Cagliari") ; -Lakes_LakeCabora_Bassa = UsePN (mkPN "Lake Cabora-Bassa") ; -Countries_IND_cities_PimpriChinchwad = UsePN (mkPN "Pimpri Chinchwad") ; -Countries_Z_provinces_Southern = UsePN (mkPN "Southern") ; -Countries_cid_cia_Coral_Sea_Islands = UsePN (mkPN "Coral Sea Islands") ; -Countries_GH_cities_Takoradi = UsePN (mkPN "Takoradi") ; -Countries_CO_provinces_Arauca_cities_Arauca = UsePN (mkPN "Arauca") ; -Countries_CO_provinces_Choco_cities_Quibdo = UsePN (mkPN "Quibdo") ; -Countries_RO_provinces_Brasov_cities_Brasov = UsePN (mkPN "Brasov") ; -Countries_IR_provinces_Fars = UsePN (mkPN "Fars") ; -Lakes_LakeWinnipesaukee = UsePN (mkPN "Lake Winnipesaukee") ; -Countries_IND_provinces_Maharashtra_cities_Ulhasnagar = UsePN (mkPN "Ulhasnagar") ; -Countries_GB_provinces_Warwickshire = UsePN (mkPN "Warwickshire") ; -Countries_MEX_provinces_Chiapas_cities_Tapachula = UsePN (mkPN "Tapachula") ; -Organizations_OAPEC = UsePN (mkPN "Organization of Arab Petroleum Exporting Countries") ; -Countries_USA_provinces_Colorado_cities_Aurora = UsePN (mkPN "Aurora") ; -Countries_BR_provinces_EspiritoSanto_cities_Linhares = UsePN (mkPN "Linhares") ; -Rivers_Irtysch = UsePN (mkPN "Irtysch") ; -Countries_TR_provinces_Artvin_cities_Artvin = UsePN (mkPN "Artvin") ; -Countries_I_provinces_Puglia_cities_Lecce = UsePN (mkPN "Lecce") ; -Belgium = UsePN (mkPN "Belgium") ; -Countries_MYA_provinces_Shan = UsePN (mkPN "Shan") ; -Countries_TJ_provinces_Henan_cities_Pingdingshan = UsePN (mkPN "Pingdingshan") ; -Countries_THA_provinces_CentralRegion = UsePN (mkPN "Central Region") ; -Countries_TJ_provinces_Shanghai_munic_cities_Shanghai = UsePN (mkPN "Shanghai") ; -Countries_UA_provinces_Odeska_cities_Odesa = UsePN (mkPN "Odesa") ; -Countries_ANG_provinces_Zaire_cities_MbanzaCongo = UsePN (mkPN "Mbanza Congo") ; -Countries_RO_provinces_Dimbovita_cities_Tirgoviste = UsePN (mkPN "Tirgoviste") ; -Countries_MEX_provinces_BajaCalifornia = UsePN (mkPN "Baja California") ; -Countries_RI_cities_Malang = UsePN (mkPN "Malang") ; -Lakes_LakeEyasi = UsePN (mkPN "Lake Eyasi") ; -Countries_BR_provinces_SaoPaulo_cities_MojidasCruzes = UsePN (mkPN "Moji das Cruzes") ; -Countries_N_provinces_SognogFjordane = UsePN (mkPN "Sogn og Fjordane") ; -Countries_IND_provinces_AndhraPradesh_cities_Hyderabad = UsePN (mkPN "Hyderabad") ; -Countries_GB_provinces_Hampshire_cities_Fareham = UsePN (mkPN "Fareham") ; -Countries_R_provinces_Tyumenskayaoblast_cities_Nizhnevartovsk = UsePN (mkPN "Nizhnevartovsk") ; -Lakes_LakeMackay = UsePN (mkPN "Lake Mackay") ; -Countries_MEX_provinces_Queretaro = UsePN (mkPN "Queretaro") ; -Countries_E_provinces_Catalonia = UsePN (mkPN "Catalonia") ; -Countries_WV_cities_Kingstown = UsePN (mkPN "Kingstown") ; -Seas_BalticSea = UsePN (mkPN "Baltic Sea") ; -Countries_GB_provinces_Humberside = UsePN (mkPN "Humberside") ; -Countries_TJ_provinces_Qinghai_cities_Yushu = UsePN (mkPN "Yushu") ; -Countries_BR_provinces_RioGrandedoSul_cities_Viamao = UsePN (mkPN "Viamao") ; -Countries_MOC_provinces_Tete = UsePN (mkPN "Tete") ; -Organizations_AMF = UsePN (mkPN "Arab Monetary Fund") ; -Countries_CO_provinces_ValledeCauca_cities_Cartago = UsePN (mkPN "Cartago") ; -Countries_BD_cities_Narsinghdi = UsePN (mkPN "Narsinghdi") ; -Countries_EAT_provinces_KaskaziniPemba_cities_Wete = UsePN (mkPN "Wete") ; -Countries_TR_provinces_Kirklareli_cities_Kirklareli = UsePN (mkPN "Kirklareli") ; -Countries_IND_provinces_UttarPradesh_cities_Gorakhpur = UsePN (mkPN "Gorakhpur") ; -Poland = UsePN (mkPN "Poland") ; -Countries_RA_provinces_TierradelFuego = UsePN (mkPN "Tierra del Fuego") ; -Countries_I_provinces_TrentinoAltoAdige_cities_Trento = UsePN (mkPN "Trento") ; -Rivers_Donau = UsePN (mkPN "Donau") ; -Countries_THA_provinces_Lampang = UsePN (mkPN "Lampang") ; -Bulgaria = UsePN (mkPN "Bulgaria") ; -Countries_B_provinces_Luxembourg = UsePN (mkPN "Luxembourg") ; -Organizations_ECOWAS = UsePN (mkPN "Economic Community of West African States") ; -Countries_R_provinces_Moskva_cities_Moscow = UsePN (mkPN "Moscow") ; -Countries_S_provinces_Sodermanland = UsePN (mkPN "Sodermanland") ; -Countries_IND_provinces_UttarPradesh_cities_Faridabad = UsePN (mkPN "Faridabad") ; -Rivers_Sanaga = UsePN (mkPN "Sanaga") ; -Countries_RO_provinces_Prahova = UsePN (mkPN "Prahova") ; -Burundi = UsePN (mkPN "Burundi") ; -Countries_UZB_provinces_Sirdare = UsePN (mkPN "Sirdare") ; -Countries_TJ_provinces_Guizhou_cities_Zunyi = UsePN (mkPN "Zunyi") ; -Countries_PK_cities_WahCantonment = UsePN (mkPN "Wah Cantonment") ; -Countries_E_provinces_Estremadura_cities_Badajoz = UsePN (mkPN "Badajoz") ; -Countries_R_provinces_Altayskiykray_cities_Rubtsovsk = UsePN (mkPN "Rubtsovsk") ; -Rivers_Ajan_Jurjach = UsePN (mkPN "Ajan-Jurjach") ; -Countries_USA_provinces_Tennessee_cities_Chattanooga = UsePN (mkPN "Chattanooga") ; -Countries_USA_provinces_Kentucky = UsePN (mkPN "Kentucky") ; -Islands_Westsamoa = UsePN (mkPN "Westsamoa") ; -Countries_D_provinces_MecklenburgVorpommern = UsePN (mkPN "Mecklenburg Vorpommern") ; -Countries_THA_provinces_NakhonRatchasima_cities_NakhonRatchasima = UsePN (mkPN "Nakhon Ratchasima") ; -Countries_IS_cities_Hafnarfjoerdur = UsePN (mkPN "Hafnarfjoerdur") ; -Countries_TJ_provinces_Jiangsu_cities_Jiangyin = UsePN (mkPN "Jiangyin") ; -Countries_CR_provinces_Guanacaste_cities_Liberia = UsePN (mkPN "Liberia") ; -Countries_CH_provinces_VD_cities_Lausanne = UsePN (mkPN "Lausanne") ; -Countries_TR_provinces_Ordu_cities_Ordu = UsePN (mkPN "Ordu") ; -Islands_Barra = UsePN (mkPN "Barra") ; -Islands_Nantucket = UsePN (mkPN "Nantucket") ; -Lakes_HamuneJazMurian = UsePN (mkPN "Hamun e Jaz Murian") ; -Countries_CH_provinces_BL_cities_Liestal = UsePN (mkPN "Liestal") ; -Countries_D_provinces_Niedersachsen_cities_Osnabruck = UsePN (mkPN "Osnabruck") ; -Countries_USA_provinces_California_cities_Fontana = UsePN (mkPN "Fontana") ; -Countries_CO_provinces_Guajira_La = UsePN (mkPN "Guajira, La") ; -Islands_SouthUlist = UsePN (mkPN "South Ulist") ; -Islands_Oeland = UsePN (mkPN "Oeland") ; -Countries_TJ_provinces_Tianjin_munic_cities_Tianjin = UsePN (mkPN "Tianjin") ; -Countries_TM_provinces_Ahal = UsePN (mkPN "Ahal") ; -Countries_E_provinces_Navarre_cities_Pamplona = UsePN (mkPN "Pamplona") ; -Countries_cid_cia_Niue_cities_Alofi = UsePN (mkPN "Alofi") ; -Countries_P_provinces_Setubal_cities_Setubal = UsePN (mkPN "Setubal") ; -Organizations_AsDB = UsePN (mkPN "Asian Development Bank") ; -Countries_IND_provinces_Assam_cities_Gauhati = UsePN (mkPN "Gauhati") ; -Islands_Samos = UsePN (mkPN "Samos") ; -Countries_R_provinces_Novosibirskayaoblast = UsePN (mkPN "Novosibirskaya oblast") ; -Countries_VN_cities_QuiNhon = UsePN (mkPN "Qui Nhon") ; -Countries_UA_provinces_Khersonska_cities_Kherson = UsePN (mkPN "Kherson") ; -Countries_YV_provinces_DistritoFederal_cities_Caracas = UsePN (mkPN "Caracas") ; -Countries_IL_provinces_Haifa_cities_Haifa = UsePN (mkPN "Haifa") ; -Countries_F_provinces_Picardie = UsePN (mkPN "Picardie") ; -Countries_YV_provinces_Guarico = UsePN (mkPN "Guarico") ; -Countries_PL_provinces_Katowickie = UsePN (mkPN "Katowickie") ; -Countries_TJ_provinces_Shandong_cities_Dezhou = UsePN (mkPN "Dezhou") ; -Countries_BD_cities_Bogra = UsePN (mkPN "Bogra") ; -Countries_J_provinces_Yamagata_cities_Yamagata = UsePN (mkPN "Yamagata") ; -Countries_TJ_provinces_Liaoning_cities_Fengcheng = UsePN (mkPN "Fengcheng") ; -Countries_TR_provinces_Denizli_cities_Denizli = UsePN (mkPN "Denizli") ; -Mountains_GannettPeak = UsePN (mkPN "Gannett Peak") ; -Countries_S_provinces_Vasternorrland_cities_Harnosand = UsePN (mkPN "Harnosand") ; -Countries_R_provinces_Novgorodskayaoblast = UsePN (mkPN "Novgorodskaya oblast") ; -Countries_IND_provinces_Gujarat_cities_Surat = UsePN (mkPN "Surat") ; -Countries_F_provinces_BasseNormandie = UsePN (mkPN "Basse Normandie") ; -Countries_TJ_provinces_Jilin_cities_Hunjiang = UsePN (mkPN "Hunjiang") ; -Countries_D_provinces_NordrheinWestfalen_cities_Moers = UsePN (mkPN "Moers") ; -Countries_KAZ_provinces_Atyrau_cities_Atyrau = UsePN (mkPN "Atyrau") ; -Countries_TJ_provinces_Jiangsu_cities_Nanjing = UsePN (mkPN "Nanjing") ; -Rivers_Thjorsa = UsePN (mkPN "Thjorsa") ; -Organizations_IGADD = UsePN (mkPN "Inter-Governmental Authority on Drought and Development") ; -Countries_VN_cities_Haiphong = UsePN (mkPN "Haiphong") ; -Islands_Mindanao = UsePN (mkPN "Mindanao") ; -Countries_ZRE_provinces_HautZaire = UsePN (mkPN "Haut Zaire") ; -Countries_TR_provinces_Zonguldak_cities_Zonguldak = UsePN (mkPN "Zonguldak") ; -Countries_EAT_provinces_Mara_cities_Musoma = UsePN (mkPN "Musoma") ; -Islands_Guernsey = UsePN (mkPN "Guernsey") ; -Countries_MAL_provinces_Perlis_cities_Kangar = UsePN (mkPN "Kangar") ; -Countries_KAZ_provinces_Zhezkazghan_cities_Zhezqazghan = UsePN (mkPN "Zhezqazghan") ; -Countries_I_provinces_EmiliaRomagna_cities_Ravenna = UsePN (mkPN "Ravenna") ; -Countries_J_provinces_Niigata = UsePN (mkPN "Niigata") ; -Countries_PL_provinces_Koninskie_cities_Konin = UsePN (mkPN "Konin") ; -Countries_MAL_provinces_Fed_Terr_ofLabuan_cities_Labuan = UsePN (mkPN "Labuan") ; -Countries_H_provinces_Szeged_munic_cities_Szeged = UsePN (mkPN "Szeged") ; -Countries_E_provinces_Andalusia_cities_Granada = UsePN (mkPN "Granada") ; -Countries_SN_provinces_Dakar_cities_Dakar = UsePN (mkPN "Dakar") ; -Countries_TJ_provinces_Guangdong_cities_Yangjiang = UsePN (mkPN "Yangjiang") ; -Countries_H_provinces_Zala_cities_Zalaegerszeg = UsePN (mkPN "Zalaegerszeg") ; -Countries_D_provinces_Bayern_cities_Augsburg = UsePN (mkPN "Augsburg") ; -Countries_cid_cia_Montserrat = UsePN (mkPN "Montserrat") ; -Countries_BR_provinces_SaoPaulo_cities_Suzano = UsePN (mkPN "Suzano") ; -Countries_TJ_provinces_Shandong_cities_Zibo = UsePN (mkPN "Zibo") ; -Countries_BS_cities_Nassau = UsePN (mkPN "Nassau") ; -Countries_MEX_provinces_Veracruz_cities_Orizaba = UsePN (mkPN "Orizaba") ; -Mountains_Tubhal = UsePN (mkPN "Tubhal") ; -Algeria = UsePN (mkPN "Algeria") ; -Countries_ES_provinces_Sonsonate = UsePN (mkPN "Sonsonate") ; -Countries_H_provinces_KomaromEsztergom_cities_Tatabanya = UsePN (mkPN "Tatabanya") ; -Countries_GB_provinces_GreaterLondon_cities_London = UsePN (mkPN "London") ; -Countries_R_provinces_Rep_ofTyva_cities_Kyzyl = UsePN (mkPN "Kyzyl") ; -Countries_J_provinces_Kagoshima_cities_Kagoshima = UsePN (mkPN "Kagoshima") ; -Countries_GH_cities_Accra = UsePN (mkPN "Accra") ; -Countries_IND_provinces_MadhyaPradesh_cities_Ujjain = UsePN (mkPN "Ujjain") ; -Countries_R_provinces_Primorskykray = UsePN (mkPN "Primorsky kray") ; -Countries_HCA_provinces_IslasdelaBahia = UsePN (mkPN "Islas de la Bahia") ; -Lakes_Maelaren = UsePN (mkPN "Maelaren") ; -Countries_R_provinces_Rep_ofKomi_cities_Vorkuta = UsePN (mkPN "Vorkuta") ; -Countries_MEX_provinces_Sonora_cities_Hermosillo = UsePN (mkPN "Hermosillo") ; -Rivers_Cuanza = UsePN (mkPN "Cuanza") ; -Countries_TR_provinces_Manisa_cities_Manisa = UsePN (mkPN "Manisa") ; -Countries_R_provinces_Rep_ofTatarstan = UsePN (mkPN "Rep. of Tatarstan") ; -Countries_IR_provinces_Tehran_cities_Karaj = UsePN (mkPN "Karaj") ; -Countries_BR_provinces_EspiritoSanto_cities_CachoeirodeItapemirim = UsePN (mkPN "Cachoeiro de Itapemirim") ; -Lakes_Tschadsee = UsePN (mkPN "Tschadsee") ; -Countries_RC_provinces_Hsinchu = UsePN (mkPN "Hsinchu") ; -Countries_GB_provinces_ValeofGlamorgan_cities_RhymneyValley = UsePN (mkPN "Rhymney Valley") ; -Countries_I_provinces_FriuliVeneziaGiulia_cities_Trieste = UsePN (mkPN "Trieste") ; -Countries_RA_provinces_Jujuy = UsePN (mkPN "Jujuy") ; -Countries_DZ_cities_Blida = UsePN (mkPN "Blida") ; -Countries_TR_provinces_Gumushane = UsePN (mkPN "Gumushane") ; -SerbiaAndMontenegro = UsePN (mkPN "Serbia and Montenegro") ; -Countries_D_provinces_Sachsen_cities_Leipzig = UsePN (mkPN "Leipzig") ; -Countries_RN_cities_Niamey = UsePN (mkPN "Niamey") ; -Countries_UAE_provinces_RasalKhaymah = UsePN (mkPN "Ras al Khaymah") ; -Portugal = UsePN (mkPN "Portugal") ; -Continents_America = UsePN (mkPN "America") ; -Countries_SUD_provinces_AalianNil = UsePN (mkPN "Aali an Nil") ; -Countries_PA_provinces_Herrera = UsePN (mkPN "Herrera") ; -Countries_WAG_cities_Banjul = UsePN (mkPN "Banjul") ; -Countries_BR_provinces_SantaCatarina_cities_Lages = UsePN (mkPN "Lages") ; -Countries_P_provinces_Evora = UsePN (mkPN "Evora") ; -Countries_ANG_provinces_Luanda_cities_Luanda = UsePN (mkPN "Luanda") ; -Rivers_Luvua = UsePN (mkPN "Luvua") ; -Lesotho = UsePN (mkPN "Lesotho") ; -Countries_cid_cia_Falkland_Islands = UsePN (mkPN "Falkland Islands") ; -Countries_D_provinces_SchleswigHolstein_cities_Lubeck = UsePN (mkPN "Lubeck") ; -Islands_Samar = UsePN (mkPN "Samar") ; -Countries_D_provinces_NordrheinWestfalen_cities_Aachen = UsePN (mkPN "Aachen") ; -Countries_CH_provinces_ZH_cities_Zurich = UsePN (mkPN "Zurich") ; -Countries_THA_provinces_MaeHongSon = UsePN (mkPN "Mae Hong Son") ; -Countries_VN_cities_VungTau = UsePN (mkPN "Vung Tau") ; -Countries_I_provinces_Toscana_cities_Prato = UsePN (mkPN "Prato") ; -Countries_ETH_cities_DireDawa = UsePN (mkPN "Dire Dawa") ; -Lakes_LakeKainji = UsePN (mkPN "Lake Kainji") ; -Countries_YV_provinces_DeltaAmacuro = UsePN (mkPN "Delta Amacuro") ; -Countries_cid_cia_Clipperton_Island = UsePN (mkPN "Clipperton Island") ; -Countries_USA_provinces_NewYork_cities_Yonkers = UsePN (mkPN "Yonkers") ; -Countries_TR_provinces_Bolu_cities_Bolu = UsePN (mkPN "Bolu") ; -Countries_VN_provinces_AnGiang = UsePN (mkPN "An Giang") ; -Countries_IR_provinces_Kerman_cities_Kerman = UsePN (mkPN "Kerman") ; -Countries_CO_provinces_Caldas_cities_Manizales = UsePN (mkPN "Manizales") ; -Organizations_Inmarsat = UsePN (mkPN "International Mobile Satellite Organization") ; -Countries_MA_cities_Casablanca = UsePN (mkPN "Casablanca") ; -Countries_VN_provinces_QuangBinh = UsePN (mkPN "Quang Binh") ; -Countries_CO_provinces_ValledeCauca_cities_Cali = UsePN (mkPN "Cali") ; -Countries_VN_provinces_NinhThuan = UsePN (mkPN "Ninh Thuan") ; -Countries_I_provinces_Umbria = UsePN (mkPN "Umbria") ; -Countries_CO_provinces_Antioquia_cities_Envigado = UsePN (mkPN "Envigado") ; -Countries_J_provinces_Hiroshima_cities_Hiroshima = UsePN (mkPN "Hiroshima") ; -Countries_SUD_provinces_alIstiwaiyah_cities_Juba = UsePN (mkPN "Juba") ; -Countries_TJ_provinces_Jiangsu_cities_Kunshan = UsePN (mkPN "Kunshan") ; -Countries_D_provinces_SachsenAnhalt = UsePN (mkPN "Sachsen Anhalt") ; -Countries_TJ_provinces_XinjiangUygur_cities_Korla = UsePN (mkPN "Korla") ; -Countries_BR_provinces_SaoPaulo_cities_Aracatuba = UsePN (mkPN "Aracatuba") ; -Countries_TJ_provinces_Jilin_cities_Changchun = UsePN (mkPN "Changchun") ; -Countries_I_provinces_Veneto_cities_Verona = UsePN (mkPN "Verona") ; -Countries_USA_provinces_Ohio = UsePN (mkPN "Ohio") ; -Countries_HCA_provinces_Yoro_cities_ElProgreso = UsePN (mkPN "El Progreso") ; -Countries_USA_provinces_Colorado_cities_Lakewood = UsePN (mkPN "Lakewood") ; -Countries_TR_provinces_Karaman = UsePN (mkPN "Karaman") ; -Countries_TR_provinces_Malatya = UsePN (mkPN "Malatya") ; -Countries_R_provinces_UdmurtRepublic = UsePN (mkPN "Udmurt Republic") ; -Countries_MOC_provinces_Inhambane = UsePN (mkPN "Inhambane") ; -Countries_ET_provinces_ElGharbiya = UsePN (mkPN "El Gharbiya") ; -Countries_D_provinces_NordrheinWestfalen_cities_Essen = UsePN (mkPN "Essen") ; -Countries_D_provinces_NordrheinWestfalen_cities_Monchengladbach = UsePN (mkPN "Monchengladbach") ; -Countries_WAN_cities_Gusau = UsePN (mkPN "Gusau") ; -Seas_SeaofAzov = UsePN (mkPN "Sea of Azov") ; -Countries_VN_provinces_HaiHung = UsePN (mkPN "Hai Hung") ; -Countries_NL_provinces_Limburg_cities_Maastricht = UsePN (mkPN "Maastricht") ; -Countries_H_provinces_Somogy = UsePN (mkPN "Somogy") ; -Countries_UA_provinces_Vinnytska = UsePN (mkPN "Vinnytska") ; -Countries_TJ_provinces_Hunan = UsePN (mkPN "Hunan") ; -Countries_TJ_provinces_Hubei_cities_Zaoyang = UsePN (mkPN "Zaoyang") ; -Countries_IL_provinces_South_cities_BeerSheva = UsePN (mkPN "Beer Sheva") ; -Countries_IND_provinces_Karnataka_cities_Mysore = UsePN (mkPN "Mysore") ; -Bahrain = UsePN (mkPN "Bahrain") ; -Countries_I_provinces_Campania_cities_TorredelGreco = UsePN (mkPN "Torre del Greco") ; -Countries_RI_cities_Palembang = UsePN (mkPN "Palembang") ; -Countries_TAD_provinces_Kulob_cities_Kulob = UsePN (mkPN "Kulob") ; -Countries_USA_provinces_Indiana_cities_SouthBend = UsePN (mkPN "South Bend") ; -Countries_ROU_cities_Montevideo = UsePN (mkPN "Montevideo") ; -Countries_RM_provinces_Mahajanga_cities_Majunga = UsePN (mkPN "Majunga") ; -Countries_GB_provinces_Hertfordshire_cities_Hertford = UsePN (mkPN "Hertford") ; -Countries_CAM_provinces_Adamaoua = UsePN (mkPN "Adamaoua") ; -Rivers_Karun = UsePN (mkPN "Karun") ; -Countries_UA_provinces_Kirovohradska_cities_Kirovohrad = UsePN (mkPN "Kirovohrad") ; -Countries_RI_cities_Samarinda = UsePN (mkPN "Samarinda") ; -Islands_SantaCruzIsland = UsePN (mkPN "Santa Cruz Island") ; -Countries_SF_provinces_Lappia = UsePN (mkPN "Lappia") ; -Countries_MAL_provinces_Perak = UsePN (mkPN "Perak") ; -Countries_TJ_provinces_Guizhou_cities_Guiyang = UsePN (mkPN "Guiyang") ; -Countries_ZRE_provinces_Shaba = UsePN (mkPN "Shaba") ; -Countries_RA_provinces_BuenosAires_cities_LaMatanza = UsePN (mkPN "La Matanza") ; -Rivers_Zambezi = UsePN (mkPN "Zambezi") ; -Countries_TJ_provinces_Jiangsu_cities_Suqian = UsePN (mkPN "Suqian") ; -Countries_E_provinces_Rioja = UsePN (mkPN "Rioja") ; -Countries_PK_cities_Mardan = UsePN (mkPN "Mardan") ; -Countries_CAM_provinces_Nordoueste_cities_Bamenda = UsePN (mkPN "Bamenda") ; -Islands_Iceland = UsePN (mkPN "Iceland") ; -Countries_R_cities_Zagorsk = UsePN (mkPN "Zagorsk") ; -Countries_USA_provinces_NewYork = UsePN (mkPN "New York") ; -Countries_Z_provinces_Northern = UsePN (mkPN "Northern") ; -Countries_IR_provinces_Esfahan = UsePN (mkPN "Esfahan") ; -Countries_I_provinces_Toscana_cities_Firenze = UsePN (mkPN "Firenze") ; -Countries_CO_provinces_Guajira_La_cities_Cienaga = UsePN (mkPN "Cienaga") ; -Countries_TJ_provinces_Shandong_cities_Yantai = UsePN (mkPN "Yantai") ; -Countries_NOK_cities_Tanchon = UsePN (mkPN "Tanchon") ; -Countries_GB_provinces_Shropshire_cities_Shrewsbury = UsePN (mkPN "Shrewsbury") ; -Rivers_Loire = UsePN (mkPN "Loire") ; -Countries_PL_provinces_Rzeszowskie = UsePN (mkPN "Rzeszowskie") ; -Countries_TJ_provinces_Zhejiang_cities_Zhoushan = UsePN (mkPN "Zhoushan") ; -Countries_N_provinces_Finnmark_cities_Vadsoe = UsePN (mkPN "Vadsoe") ; -Countries_USA_provinces_Indiana_cities_Indianapolis = UsePN (mkPN "Indianapolis") ; -Countries_GB_provinces_Grampian_cities_Aberdeen = UsePN (mkPN "Aberdeen") ; -Countries_BR_provinces_SantaCatarina_cities_PraiaGrande = UsePN (mkPN "Praia Grande") ; -Countries_PE_provinces_Piura_cities_Sullana = UsePN (mkPN "Sullana") ; -Countries_USA_provinces_Oregon_cities_Eugene = UsePN (mkPN "Eugene") ; -Countries_YV_provinces_Portuguesa_cities_Acarigua = UsePN (mkPN "Acarigua") ; -Countries_GB_provinces_Essex_cities_Colchester = UsePN (mkPN "Colchester") ; -Countries_USA_provinces_California_cities_WestCovina = UsePN (mkPN "West Covina") ; -Countries_USA_provinces_Alaska_cities_Anchorage = UsePN (mkPN "Anchorage") ; -Countries_CO_provinces_Atlantico = UsePN (mkPN "Atlantico") ; -Countries_GB_provinces_Gloucestershire_cities_Gloucester = UsePN (mkPN "Gloucester") ; -Countries_THA_provinces_ChiangMai_cities_ChiangMai = UsePN (mkPN "Chiang Mai") ; -Countries_CH_provinces_SG = UsePN (mkPN "SG") ; -Countries_MEX_provinces_Veracruz_cities_Cordoba = UsePN (mkPN "Cordoba") ; -Countries_TJ_provinces_Heilongjiang_cities_Shangzhi = UsePN (mkPN "Shangzhi") ; -Mountains_Jezerce = UsePN (mkPN "Jezerce") ; -Countries_USA_provinces_Michigan_cities_SterlingHeights = UsePN (mkPN "Sterling Heights") ; -Countries_R_provinces_Kaliningradskayaoblast = UsePN (mkPN "Kaliningradskaya oblast") ; -Rivers_Ingoda = UsePN (mkPN "Ingoda") ; -Countries_UA_provinces_Khmelnytska_cities_Khmelnytskyy = UsePN (mkPN "Khmelnytskyy") ; -Countries_WAN_cities_Akure = UsePN (mkPN "Akure") ; -Countries_THA_provinces_Chachoengsao = UsePN (mkPN "Chachoengsao") ; -Countries_USA_provinces_Arizona_cities_Mesa = UsePN (mkPN "Mesa") ; -Countries_PL_provinces_Radomskie = UsePN (mkPN "Radomskie") ; -Countries_USA_provinces_NewMexico = UsePN (mkPN "New Mexico") ; -Countries_USA_provinces_Texas_cities_Lubbock = UsePN (mkPN "Lubbock") ; -Islands_GrKomoro = UsePN (mkPN "Gr Komoro") ; -Countries_USA_provinces_Massachusetts_cities_Springfield = UsePN (mkPN "Springfield") ; -Countries_RA_provinces_BuenosAires = UsePN (mkPN "Buenos Aires") ; -Countries_GB_provinces_Bridgend = UsePN (mkPN "Bridgend") ; -Monaco = UsePN (mkPN "Monaco") ; -Countries_S_provinces_Alvsborg = UsePN (mkPN "Alvsborg") ; -Countries_S_provinces_Uppsala = UsePN (mkPN "Uppsala") ; -Countries_TJ_provinces_Zhejiang_cities_Jinhua = UsePN (mkPN "Jinhua") ; -Countries_GB_provinces_GreaterManchester_cities_Manchester = UsePN (mkPN "Manchester") ; -Countries_USA_provinces_Alaska = UsePN (mkPN "Alaska") ; -Rivers_Oranje = UsePN (mkPN "Oranje") ; -Countries_R_provinces_Kemerovskayaoblast_cities_LeninskKuznetskiy = UsePN (mkPN "Leninsk Kuznetskiy") ; -Countries_GB_provinces_WestYorkshire_cities_Kirklees = UsePN (mkPN "Kirklees") ; -Countries_R_provinces_Tomskayaoblast_cities_Tomsk = UsePN (mkPN "Tomsk") ; -Countries_S_provinces_Vasterbotten_cities_Umea = UsePN (mkPN "Umea") ; -Countries_TJ_provinces_Sichuan_cities_Xichang = UsePN (mkPN "Xichang") ; -Countries_THA_provinces_Nonthaburi = UsePN (mkPN "Nonthaburi") ; -Countries_BR_provinces_SaoPaulo_cities_Santos = UsePN (mkPN "Santos") ; -Countries_TJ_provinces_Liaoning_cities_Panshan = UsePN (mkPN "Panshan") ; -Countries_USA_provinces_California_cities_SanDiego = UsePN (mkPN "San Diego") ; -Countries_THA_provinces_Sukhothai = UsePN (mkPN "Sukhothai") ; -Countries_SUD_provinces_alWusta_cities_WadMadani = UsePN (mkPN "Wad Madani") ; -HolySee = UsePN (mkPN "Holy See") ; -Countries_RP_cities_Cebu = UsePN (mkPN "Cebu") ; -Countries_CO_provinces_Cundinamarca = UsePN (mkPN "Cundinamarca") ; -Countries_KAZ_provinces_BatysQazaqstan_cities_Oral = UsePN (mkPN "Oral") ; -Countries_cid_cia_Gibraltar = UsePN (mkPN "Gibraltar") ; -Countries_UZB_provinces_Qasqadare = UsePN (mkPN "Qasqadare") ; -Countries_N_provinces_Finnmark = UsePN (mkPN "Finnmark") ; -Countries_GR_provinces_DhytikiMakedhonia = UsePN (mkPN "Dhytiki Makedhonia") ; -Countries_BR_provinces_SaoPaulo_cities_RibeiraoPreto = UsePN (mkPN "Ribeirao Preto") ; -Countries_KAZ_provinces_Pavlodar_cities_Ekibastuz = UsePN (mkPN "Ekibastuz") ; -Countries_D_provinces_Bremen_cities_Bremerhaven = UsePN (mkPN "Bremerhaven") ; -Countries_USA_provinces_California_cities_Vallejo = UsePN (mkPN "Vallejo") ; -Countries_IR_provinces_Mazandaran_cities_GonbadeKavus = UsePN (mkPN "Gonbad e Kavus") ; -Countries_CH_provinces_OW = UsePN (mkPN "OW") ; -Organizations_LAIA = UsePN (mkPN "Latin American Integration Association") ; -Countries_EAT_provinces_Mwanza_cities_Mwanza = UsePN (mkPN "Mwanza") ; -Organizations_WToO = UsePN (mkPN "World Tourism Organization") ; -Countries_TR_provinces_Mardin = UsePN (mkPN "Mardin") ; -Countries_MAL_provinces_Selangor = UsePN (mkPN "Selangor") ; -Countries_PL_provinces_Chelmskie_cities_Chelm = UsePN (mkPN "Chelm") ; -Countries_SN_provinces_Louga_cities_Louga = UsePN (mkPN "Louga") ; -Countries_D_provinces_RheinlandPfalz_cities_Kaiserslautern = UsePN (mkPN "Kaiserslautern") ; -Mountains_ClingmansDome = UsePN (mkPN "Clingmans Dome") ; -Countries_J_provinces_Miyazaki = UsePN (mkPN "Miyazaki") ; -Countries_IND_provinces_Maharashtra_cities_Nagpur = UsePN (mkPN "Nagpur") ; -Countries_J_provinces_Kochi = UsePN (mkPN "Kochi") ; -Countries_USA_provinces_NorthCarolina = UsePN (mkPN "North Carolina") ; -Countries_CO_provinces_NortedeSantander = UsePN (mkPN "Norte de Santander") ; -Countries_CO_provinces_ValledeCauca_cities_Tulua = UsePN (mkPN "Tulua") ; -Countries_RA_provinces_SanJuan = UsePN (mkPN "San Juan") ; -Countries_MAL_provinces_Fed_Terr_ofLabuan = UsePN (mkPN "Fed. Terr. of Labuan") ; -Countries_USA_provinces_Ohio_cities_Cincinnati = UsePN (mkPN "Cincinnati") ; -Countries_HCA_provinces_SantaBarbara_cities_SantaBarbara = UsePN (mkPN "Santa Barbara") ; -Countries_IR_provinces_Kerman_cities_Sirjan = UsePN (mkPN "Sirjan") ; -Countries_EAT_provinces_Ruvuma_cities_Songea = UsePN (mkPN "Songea") ; -Countries_ANG_provinces_Namibe_cities_Namibe = UsePN (mkPN "Namibe") ; -Countries_RO_provinces_Vilcea_cities_RimnicuVilcea = UsePN (mkPN "Rimnicu Vilcea") ; -Countries_HCA_provinces_GraciasaDios = UsePN (mkPN "Gracias a Dios") ; -Countries_USA_provinces_Nevada_cities_Henderson = UsePN (mkPN "Henderson") ; -Countries_WAN_cities_Onitsha = UsePN (mkPN "Onitsha") ; -Countries_PL_provinces_Przemyskie = UsePN (mkPN "Przemyskie") ; -Lakes_OzeroLadoga = UsePN (mkPN "Ozero Ladoga") ; -Countries_CO_provinces_Putumayo_cities_Mocoa = UsePN (mkPN "Mocoa") ; -Countries_TJ_provinces_Shaanxi_cities_Tongchuan = UsePN (mkPN "Tongchuan") ; -Countries_PE_provinces_Junin_cities_Huancayo = UsePN (mkPN "Huancayo") ; -Countries_BR_provinces_Parana_cities_Londrina = UsePN (mkPN "Londrina") ; -Countries_RSA_provinces_Gauteng = UsePN (mkPN "Gauteng") ; -Countries_RO_provinces_SatuMare_cities_SatuMare = UsePN (mkPN "Satu Mare") ; -Countries_USA_provinces_Michigan_cities_Detroit = UsePN (mkPN "Detroit") ; -Countries_USA_provinces_Wisconsin_cities_Madison = UsePN (mkPN "Madison") ; -Countries_S_provinces_Uppsala_cities_Uppsala = UsePN (mkPN "Uppsala") ; -Countries_USA_provinces_Connecticut_cities_Bridgeport = UsePN (mkPN "Bridgeport") ; -Countries_R_provinces_UdmurtRepublic_cities_Izhevsk = UsePN (mkPN "Izhevsk") ; -Countries_THA_provinces_Uttaradit = UsePN (mkPN "Uttaradit") ; -Countries_PE_provinces_Tacna = UsePN (mkPN "Tacna") ; -Countries_E_provinces_Galicia_cities_LaCoruna = UsePN (mkPN "La Coruna") ; -Countries_R_provinces_Voronezhskayaoblast_cities_Voronezh = UsePN (mkPN "Voronezh") ; -Countries_PL_provinces_Bielskie = UsePN (mkPN "Bielskie") ; -Countries_ANG_provinces_Bengo_cities_Caxito = UsePN (mkPN "Caxito") ; -Countries_EAK_provinces_Coast_cities_Malindi = UsePN (mkPN "Malindi") ; -Countries_F_provinces_PaysdelaLoire_cities_LeMans = UsePN (mkPN "Le Mans") ; -Countries_I_provinces_Puglia = UsePN (mkPN "Puglia") ; -Countries_RO_provinces_Arad = UsePN (mkPN "Arad") ; -Countries_RSA_provinces_WesternCape = UsePN (mkPN "Western Cape") ; -Countries_BR_provinces_Ceara = UsePN (mkPN "Ceara") ; -Countries_RO_provinces_Prahova_cities_Ploiesti = UsePN (mkPN "Ploiesti") ; -Countries_GR_provinces_VoreionAiyaion = UsePN (mkPN "Voreion Aiyaion") ; -Countries_N_provinces_Hordaland = UsePN (mkPN "Hordaland") ; -SaoTomeAndPrincipe = UsePN (mkPN "Sao Tome and Principe") ; -Countries_GB_provinces_Powys = UsePN (mkPN "Powys") ; -Countries_TJ_provinces_Anhui = UsePN (mkPN "Anhui") ; -Countries_USA_provinces_Hawaii_cities_Honolulu = UsePN (mkPN "Honolulu") ; -Organizations_IFRCS = UsePN (mkPN "International Federation of Red Cross and Red Crescent Societies") ; -Countries_RO_provinces_Maramures_cities_BaiaMare = UsePN (mkPN "Baia Mare") ; -Countries_IND_provinces_ArunachalPradesh = UsePN (mkPN "Arunachal Pradesh") ; -Countries_F_provinces_LanguedocRousillon = UsePN (mkPN "Languedoc Rousillon") ; -Countries_RC_provinces_Hsinchu_munic_cities_Hsinchu = UsePN (mkPN "Hsinchu") ; -Countries_TJ_provinces_Hunan_cities_Xiangtan = UsePN (mkPN "Xiangtan") ; -SaintVincentAndTheGrenadines = UsePN (mkPN "Saint Vincent and the Grenadines") ; -Countries_RI_cities_BandarLampung = UsePN (mkPN "Bandar Lampung") ; -Countries_IND_provinces_Mizoram = UsePN (mkPN "Mizoram") ; -Islands_SanClementeIsland = UsePN (mkPN "San Clemente Island") ; -Countries_FGU_cities_Cayenne = UsePN (mkPN "Cayenne") ; -Seas_BlackSea = UsePN (mkPN "Black Sea") ; -Countries_HCA_provinces_Intibuca = UsePN (mkPN "Intibuca") ; -Countries_BR_provinces_SaoPaulo_cities_Campinas = UsePN (mkPN "Campinas") ; -Countries_RA_provinces_Mendoza = UsePN (mkPN "Mendoza") ; -Countries_SUD_provinces_Kurdufan = UsePN (mkPN "Kurdufan") ; -Countries_E_provinces_Andalusia_cities_Jaen = UsePN (mkPN "Jaen") ; -Countries_E_provinces_Madrid_cities_Mostoles = UsePN (mkPN "Mostoles") ; -Countries_BR_provinces_Para_cities_Santarem = UsePN (mkPN "Santarem") ; -Countries_R_provinces_Kirovskayaoblast_cities_Kirov = UsePN (mkPN "Kirov") ; -Countries_NL_provinces_Overijssel_cities_Zwolle = UsePN (mkPN "Zwolle") ; -FrenchGuiana = UsePN (mkPN "French Guiana") ; -Islands_Nevis = UsePN (mkPN "Nevis") ; -Islands_Coll = UsePN (mkPN "Coll") ; -Countries_USA_provinces_Florida_cities_Hialeah = UsePN (mkPN "Hialeah") ; -Countries_A_provinces_Styria_cities_Graz = UsePN (mkPN "Graz") ; -Countries_HCA_provinces_IslasdelaBahia_cities_Roatan = UsePN (mkPN "Roatan") ; -Countries_TJ_provinces_Fujian = UsePN (mkPN "Fujian") ; -Countries_RSM_cities_SanMarino = UsePN (mkPN "San Marino") ; -Laos = UsePN (mkPN "Laos") ; -Islands_Honshu = UsePN (mkPN "Honshu") ; -Countries_GB_provinces_Staffordshire = UsePN (mkPN "Staffordshire") ; -Countries_YV_provinces_Monagas_cities_Maturin = UsePN (mkPN "Maturin") ; -Countries_GB_provinces_Essex_cities_Basildon = UsePN (mkPN "Basildon") ; -Countries_ES_provinces_LaUnion = UsePN (mkPN "La Union") ; -Countries_D_provinces_SchleswigHolstein_cities_Kiel = UsePN (mkPN "Kiel") ; -Countries_RSA_cities_Katlehong = UsePN (mkPN "Katlehong") ; -Lakes_LakeTorren = UsePN (mkPN "Lake Torren") ; -Countries_UZB_provinces_Farghona_cities_Quqon = UsePN (mkPN "Quqon") ; -Countries_THA_provinces_Kanchanaburi = UsePN (mkPN "Kanchanaburi") ; -Countries_RP_cities_Manila = UsePN (mkPN "Manila") ; -Lakes_LakeSkutari = UsePN (mkPN "Lake Skutari") ; -Countries_J_provinces_Kyoto_cities_Kyoto = UsePN (mkPN "Kyoto") ; -Countries_YV_provinces_Portuguesa = UsePN (mkPN "Portuguesa") ; -Mountains_NevadodeToluca = UsePN (mkPN "Nevado de Toluca") ; -Mountains_MountEverest = UsePN (mkPN "Mount Everest") ; -Iceland = UsePN (mkPN "Iceland") ; -Countries_VN_provinces_ThaiBinh = UsePN (mkPN "Thai Binh") ; -Countries_RM_provinces_Toliary_cities_Toliary = UsePN (mkPN "Toliary") ; -Islands_VancouverIsland = UsePN (mkPN "Vancouver Island") ; -Lakes_OzeroOnega = UsePN (mkPN "Ozero Onega") ; -Countries_D_provinces_NordrheinWestfalen_cities_Solingen = UsePN (mkPN "Solingen") ; -Countries_USA_provinces_Connecticut = UsePN (mkPN "Connecticut") ; -Countries_C_provinces_Guantanamo = UsePN (mkPN "Guantanamo") ; -Countries_E_provinces_Catalonia_cities_Sabadell = UsePN (mkPN "Sabadell") ; -Countries_RC_provinces_Taipei = UsePN (mkPN "Taipei") ; -Countries_USA_provinces_Washington_cities_Spokane = UsePN (mkPN "Spokane") ; -Countries_AL_cities_Vlore = UsePN (mkPN "Vlore") ; -Countries_PL_provinces_Bielskie_cities_BielskoBiala = UsePN (mkPN "Bielsko Biala") ; -Countries_MEX_provinces_Hidalgo_cities_Pachuca = UsePN (mkPN "Pachuca") ; -Countries_cid_cia_Wallis_and_Futuna_cities_Mata_Utu = UsePN (mkPN "Mata-Utu") ; -Countries_VN_provinces_HoaBinh = UsePN (mkPN "Hoa Binh") ; -Organizations_ECLAC = UsePN (mkPN "Economic Commission for Latin America and the Caribbean") ; -Countries_EAT_provinces_Ruvuma = UsePN (mkPN "Ruvuma") ; -Countries_IND_provinces_Assam = UsePN (mkPN "Assam") ; -Countries_R_provinces_Omskayaoblast_cities_Omsk = UsePN (mkPN "Omsk") ; -Countries_N_provinces_Finnmark_cities_Hammerfest = UsePN (mkPN "Hammerfest") ; -Countries_TJ_provinces_Hunan_cities_Loudi = UsePN (mkPN "Loudi") ; -Countries_THA_provinces_Saraburi_cities_Saraburi = UsePN (mkPN "Saraburi") ; -Haiti = UsePN (mkPN "Haiti") ; -Mountains_MtWashington = UsePN (mkPN "Mt Washington") ; -Organizations_UPU = UsePN (mkPN "Universal Postal Union") ; -Countries_R_provinces_Ryazanskayaoblast_cities_Ryazan = UsePN (mkPN "Ryazan") ; -Countries_NL_provinces_Overijssel = UsePN (mkPN "Overijssel") ; -Countries_cid_cia_Navassa_Island = UsePN (mkPN "Navassa Island") ; -Countries_THA_provinces_Chanthaburi = UsePN (mkPN "Chanthaburi") ; -Countries_KAZ_provinces_Almaty_munic_cities_Almaty = UsePN (mkPN "Almaty") ; -Countries_F_provinces_Corse_cities_Ajaccio = UsePN (mkPN "Ajaccio") ; -Countries_I_provinces_Puglia_cities_Bari = UsePN (mkPN "Bari") ; -Countries_MEX_provinces_Campeche_cities_Campeche = UsePN (mkPN "Campeche") ; -Countries_BR_cities_Alvorada = UsePN (mkPN "Alvorada") ; -Organizations_AfDB = UsePN (mkPN "African Development Bank") ; -Rivers_Kokemaeenjoki = UsePN (mkPN "Kokemaeenjoki") ; -Countries_UA_provinces_Kyyivska = UsePN (mkPN "Kyyivska") ; -Organizations_CAEU = UsePN (mkPN "Council of Arab Economic Unity") ; -Countries_cid_cia_Jan_Mayen = UsePN (mkPN "Jan Mayen") ; -Countries_R_provinces_Leningradskayaoblast = UsePN (mkPN "Leningradskaya oblast") ; -Countries_RCB_cities_Brazzaville = UsePN (mkPN "Brazzaville") ; -Countries_F_provinces_Aquitaine_cities_Bordeaux = UsePN (mkPN "Bordeaux") ; -Countries_BR_provinces_SaoPaulo_cities_Botucatu = UsePN (mkPN "Botucatu") ; -Countries_USA_provinces_Florida_cities_Hollywood = UsePN (mkPN "Hollywood") ; -Countries_S_provinces_Ostergotland_cities_Norrkoping = UsePN (mkPN "Norrkoping") ; -Countries_ES_provinces_LaLibertad = UsePN (mkPN "La Libertad") ; -Countries_USA_provinces_California_cities_Pomona = UsePN (mkPN "Pomona") ; -Countries_BR_cities_Abaetetuba = UsePN (mkPN "Abaetetuba") ; -BurkinaFaso = UsePN (mkPN "Burkina Faso") ; -Countries_WAN_cities_Ikorodu = UsePN (mkPN "Ikorodu") ; -Countries_ET_provinces_SinaashShamaliyah_cities_ElArish = UsePN (mkPN "El Arish") ; -Rivers_Lukuga = UsePN (mkPN "Lukuga") ; -Countries_TJ_provinces_Guangdong_cities_Heyuan = UsePN (mkPN "Heyuan") ; -Countries_KAZ_provinces_Qaraghandy_cities_Karaganda = UsePN (mkPN "Karaganda") ; -Countries_TR_provinces_Tokat_cities_Tokat = UsePN (mkPN "Tokat") ; -Countries_C_provinces_Guantanamo_cities_Guantanamo = UsePN (mkPN "Guantanamo") ; -Islands_Hoy = UsePN (mkPN "Hoy") ; -Countries_BR_cities_Sumare = UsePN (mkPN "Sumare") ; -Mountains_Kenia = UsePN (mkPN "Kenia") ; -Rivers_Bani = UsePN (mkPN "Bani") ; -Countries_RA_provinces_RioNegro = UsePN (mkPN "Rio Negro") ; -Liberia = UsePN (mkPN "Liberia") ; -Countries_WAN_cities_Ila = UsePN (mkPN "Ila") ; -Countries_TJ_provinces_Hunan_cities_Yiyang = UsePN (mkPN "Yiyang") ; -Countries_PL_provinces_Lodzkie = UsePN (mkPN "Lodzkie") ; -Countries_NL_provinces_Friesland = UsePN (mkPN "Friesland") ; -Countries_RP_cities_Pasig = UsePN (mkPN "Pasig") ; -Countries_R_provinces_Pskovskayaoblast_cities_VelikiyeLuki = UsePN (mkPN "Velikiye Luki") ; -Countries_E_provinces_Madrid_cities_AlcaladeHenares = UsePN (mkPN "Alcala de Henares") ; -Countries_cid_cia_Bouvet_Island = UsePN (mkPN "Bouvet Island") ; -Countries_GB_provinces_Oxfordshire = UsePN (mkPN "Oxfordshire") ; -Countries_CO_provinces_NortedeSantander_cities_Cucuta = UsePN (mkPN "Cucuta") ; -Countries_GB_provinces_Lancashire_cities_Lancaster = UsePN (mkPN "Lancaster") ; -Countries_cid_cia_Europa_Island = UsePN (mkPN "Europa Island") ; -Countries_CO_provinces_Bolivar = UsePN (mkPN "Bolivar") ; -Countries_ET_provinces_ElGharbiya_cities_Tanta = UsePN (mkPN "Tanta") ; -Countries_TJ_provinces_Henan = UsePN (mkPN "Henan") ; -Countries_BR_provinces_Para_cities_Castanhal = UsePN (mkPN "Castanhal") ; -Countries_R_provinces_Orlovskayaoblast = UsePN (mkPN "Orlovskaya oblast") ; -Countries_MEX_provinces_Guanajuato_cities_Celaya = UsePN (mkPN "Celaya") ; -Countries_MAL_provinces_Kelantan = UsePN (mkPN "Kelantan") ; -Countries_UA_provinces_Donetska_cities_Makiyivka = UsePN (mkPN "Makiyivka") ; -Countries_WAN_cities_Ikerre = UsePN (mkPN "Ikerre") ; -Countries_cid_cia_Johnston_Atoll = UsePN (mkPN "Johnston Atoll") ; -Countries_RC_cities_Hsinchuang = UsePN (mkPN "Hsinchuang") ; -Countries_I_provinces_Liguria_cities_LaSpezia = UsePN (mkPN "La Spezia") ; -Countries_RM_provinces_Toamasina_cities_Tamatave = UsePN (mkPN "Tamatave") ; -Countries_S_provinces_Kristianstad_cities_Kristianstad = UsePN (mkPN "Kristianstad") ; -Countries_R_provinces_UdmurtRepublic_cities_Glazov = UsePN (mkPN "Glazov") ; -Countries_HCA_provinces_Lempira = UsePN (mkPN "Lempira") ; -Rivers_Vaal = UsePN (mkPN "Vaal") ; -Countries_TJ_provinces_Anhui_cities_Xuancheng = UsePN (mkPN "Xuancheng") ; -Countries_ET_provinces_ElWadielJadid_cities_ElKharga = UsePN (mkPN "El Kharga") ; -Countries_R_provinces_Vladimirskayaoblast_cities_Vladimir = UsePN (mkPN "Vladimir") ; -Mountains_Portefjaellen = UsePN (mkPN "Portefjaellen") ; -Countries_PL_provinces_Warszwaskie_cities_Warsaw = UsePN (mkPN "Warsaw") ; -Countries_IRQ_provinces_Babil = UsePN (mkPN "Babil") ; -Countries_CZ_provinces_Zapadocesky = UsePN (mkPN "Zapadocesky") ; -Organizations_Benelux = UsePN (mkPN "Benelux Economic Union") ; -Countries_TJ_provinces_Sichuan_cities_Chengdu = UsePN (mkPN "Chengdu") ; -Countries_PL_provinces_Lomzynskie_cities_Lomza = UsePN (mkPN "Lomza") ; -Burma = UsePN (mkPN "Burma") ; -Countries_CO_provinces_Risaralda = UsePN (mkPN "Risaralda") ; -Countries_R_provinces_Kostromskayaoblast = UsePN (mkPN "Kostromskaya oblast") ; -Countries_E_provinces_Catalonia_cities_HospitaletdeLlobregat = UsePN (mkPN "Hospitalet de Llobregat") ; -Countries_GR_provinces_Attiki = UsePN (mkPN "Attiki") ; -Countries_D_provinces_Bayern_cities_Nurnberg = UsePN (mkPN "Nurnberg") ; -Countries_USA_provinces_Mississippi_cities_Jackson = UsePN (mkPN "Jackson") ; -Islands_Montserrat = UsePN (mkPN "Montserrat") ; -Countries_R_provinces_Magadanskayaoblast_cities_Magadan = UsePN (mkPN "Magadan") ; -Countries_ES_provinces_Chalatenango_cities_Chalatenango = UsePN (mkPN "Chalatenango") ; -Countries_CO_provinces_Narino = UsePN (mkPN "Narino") ; -Islands_SantaRosaIsland = UsePN (mkPN "Santa Rosa Island") ; -Countries_MEX_provinces_Hidalgo = UsePN (mkPN "Hidalgo") ; -Countries_R_provinces_Ivanovskayaoblast = UsePN (mkPN "Ivanovskaya oblast") ; -Countries_C_provinces_CiegodeAvila = UsePN (mkPN "Ciego de Avila") ; -Countries_R_provinces_Tulskayaoblast_cities_Novomoskovsk = UsePN (mkPN "Novomoskovsk") ; -Countries_GB_provinces_GreaterManchester_cities_Wigan = UsePN (mkPN "Wigan") ; -Countries_GB_provinces_Central_cities_Stirling = UsePN (mkPN "Stirling") ; -Countries_USA_provinces_Texas_cities_Laredo = UsePN (mkPN "Laredo") ; -Rivers_Chire = UsePN (mkPN "Chire") ; -Countries_TJ_provinces_NeiMonggol_cities_Hohhot = UsePN (mkPN "Hohhot") ; -Bangladesh = UsePN (mkPN "Bangladesh") ; -Countries_CZ_provinces_Severocesky_cities_Liberec = UsePN (mkPN "Liberec") ; -Lakes_LakePrespa = UsePN (mkPN "Lake Prespa") ; -Rivers_Cunene = UsePN (mkPN "Cunene") ; -Rivers_Arkansas = UsePN (mkPN "Arkansas") ; -Countries_TJ_provinces_Hunan_cities_Shaoyang = UsePN (mkPN "Shaoyang") ; -Countries_VN_provinces_SongBe = UsePN (mkPN "Song Be") ; -Countries_J_provinces_Okayama = UsePN (mkPN "Okayama") ; -Countries_USA_provinces_Virginia_cities_Chesapeake = UsePN (mkPN "Chesapeake") ; -Mongolia = UsePN (mkPN "Mongolia") ; -Countries_RSA_cities_Ibhayi = UsePN (mkPN "Ibhayi") ; -Countries_CH_provinces_VD = UsePN (mkPN "VD") ; -Lakes_LakeWilliston = UsePN (mkPN "Lake Williston") ; -Islands_Shikoku = UsePN (mkPN "Shikoku") ; -Countries_IR_provinces_Khuzestan_cities_Dezful = UsePN (mkPN "Dezful") ; -Countries_IND_provinces_Bihar = UsePN (mkPN "Bihar") ; -Deserts_Makteir = UsePN (mkPN "Makteir") ; -Countries_EAT_provinces_Mwanza = UsePN (mkPN "Mwanza") ; -Rivers_Weichsel = UsePN (mkPN "Weichsel") ; -Spain = UsePN (mkPN "Spain") ; -Countries_PL_provinces_Poznanskie = UsePN (mkPN "Poznanskie") ; -Countries_GB_provinces_Somerset_cities_Taunton = UsePN (mkPN "Taunton") ; -Countries_RO_provinces_Salaj = UsePN (mkPN "Salaj") ; -Countries_R_provinces_Belgorodskayaoblast = UsePN (mkPN "Belgorodskaya oblast") ; -Countries_CH_provinces_BL = UsePN (mkPN "BL") ; -Countries_RA_provinces_Corrientes_cities_Corrientes = UsePN (mkPN "Corrientes") ; -Countries_TR_provinces_Erzurum_cities_Erzurum = UsePN (mkPN "Erzurum") ; -Countries_CDN_provinces_Ontario_cities_SaintCatharines = UsePN (mkPN "Saint Catharines") ; -Countries_ET_provinces_ElSuweiz_munic = UsePN (mkPN "El Suweiz (munic.)") ; -Countries_BR_provinces_Pernambuco_cities_Petrolina = UsePN (mkPN "Petrolina") ; -Islands_Bornholm = UsePN (mkPN "Bornholm") ; -Countries_USA_provinces_Texas_cities_Amarillo = UsePN (mkPN "Amarillo") ; -Lakes_LakeEduard = UsePN (mkPN "Lake Eduard") ; -Countries_GB_provinces_WestMidlands_cities_Wolverhampton = UsePN (mkPN "Wolverhampton") ; -Countries_GB_provinces_NorthYorkshire_cities_Northallerton = UsePN (mkPN "Northallerton") ; -Seas_PersianGulf = UsePN (mkPN "Persian Gulf") ; -Organizations_BDEAC = UsePN (mkPN "Central African States Development Bank") ; -Countries_J_provinces_Gumma_cities_Maebashi = UsePN (mkPN "Maebashi") ; -Countries_GB_provinces_Dorset_cities_Dorchester = UsePN (mkPN "Dorchester") ; -Countries_IND_provinces_AndhraPradesh_cities_Guntur = UsePN (mkPN "Guntur") ; -Countries_EAK_provinces_Central_cities_Nyeri = UsePN (mkPN "Nyeri") ; -Countries_D_provinces_BadenWurttemberg_cities_Stuttgart = UsePN (mkPN "Stuttgart") ; -Countries_ROK_cities_Chongju = UsePN (mkPN "Chongju") ; -Countries_E_provinces_Catalonia_cities_Mataro = UsePN (mkPN "Mataro") ; -Countries_SN_provinces_SaintLouis_cities_SaintLouis = UsePN (mkPN "Saint Louis") ; -Countries_UZB_provinces_Surkhondare_cities_Termiz = UsePN (mkPN "Termiz") ; -Countries_THA_provinces_Satun = UsePN (mkPN "Satun") ; -Countries_IR_provinces_Mazandaran_cities_Gorgan = UsePN (mkPN "Gorgan") ; -Countries_TJ_provinces_Sichuan_cities_Guangyuan = UsePN (mkPN "Guangyuan") ; -Countries_IRQ_provinces_Wasit = UsePN (mkPN "Wasit") ; -Countries_PL_provinces_Ostroleckie_cities_Ostroleka = UsePN (mkPN "Ostroleka") ; -Countries_TR_provinces_Balikesir_cities_Balikesir = UsePN (mkPN "Balikesir") ; -Countries_D_provinces_NordrheinWestfalen_cities_Dortmund = UsePN (mkPN "Dortmund") ; -Countries_PL_provinces_Plockie = UsePN (mkPN "Plockie") ; -Countries_CZ_provinces_Severomoravsky_cities_Olomouc = UsePN (mkPN "Olomouc") ; -Countries_MEX_provinces_Coahuila_cities_Monclova = UsePN (mkPN "Monclova") ; -Countries_CAM_provinces_Sud_cities_Ebolowa = UsePN (mkPN "Ebolowa") ; -Countries_IND_provinces_TamilNadu_cities_Tiruchchirappalli = UsePN (mkPN "Tiruchchirappalli") ; -Countries_THA_provinces_LopBuri = UsePN (mkPN "Lop Buri") ; -Countries_EAT_provinces_Tabora_cities_Tabora = UsePN (mkPN "Tabora") ; -Countries_TR_provinces_Sanliurfa = UsePN (mkPN "Sanliurfa") ; -Countries_THA_provinces_SuratThani = UsePN (mkPN "Surat Thani") ; -Countries_USA_provinces_SouthDakota_cities_SiouxFalls = UsePN (mkPN "Sioux Falls") ; -Countries_GB_provinces_MerthyrTydfil = UsePN (mkPN "Merthyr Tydfil") ; -Countries_BR_provinces_MatoGrossodoSul = UsePN (mkPN "Mato Grosso do Sul") ; -Countries_YV_provinces_Bolivar_cities_CiudadGuayana = UsePN (mkPN "Ciudad Guayana") ; -Mountains_BoundaryPeak = UsePN (mkPN "Boundary Peak") ; -Countries_GB_provinces_AberconwyandColwyn = UsePN (mkPN "Aberconwy and Colwyn") ; -Countries_UA_provinces_Zakarpatska_cities_Uzhhorod = UsePN (mkPN "Uzhhorod") ; -AntiguaAndBarbuda = UsePN (mkPN "Antigua and Barbuda") ; -Countries_R_provinces_Irkutskayaoblast_cities_Irkutsk = UsePN (mkPN "Irkutsk") ; -Countries_HCA_provinces_Comayagua = UsePN (mkPN "Comayagua") ; -Countries_USA_provinces_NorthCarolina_cities_Durham = UsePN (mkPN "Durham") ; -Countries_HCA_provinces_Colon_cities_Trujillo = UsePN (mkPN "Trujillo") ; -Countries_WAN_cities_Shaki = UsePN (mkPN "Shaki") ; -Countries_SF_provinces_Uusimaa_cities_Helsinki = UsePN (mkPN "Helsinki") ; -Countries_I_provinces_Piemonte = UsePN (mkPN "Piemonte") ; -Comoros = UsePN (mkPN "Comoros") ; -Countries_GR_provinces_KedrikiMakedhonia = UsePN (mkPN "Kedriki Makedhonia") ; -Countries_USA_provinces_Texas_cities_Arlington = UsePN (mkPN "Arlington") ; -Rivers_Casai = UsePN (mkPN "Casai") ; -Lakes_LakeKioga = UsePN (mkPN "Lake Kioga") ; -Countries_H_provinces_Budapest_munic = UsePN (mkPN "Budapest (munic.)") ; -Rivers_Sanga = UsePN (mkPN "Sanga") ; -Countries_USA_provinces_Arizona_cities_Scottsdale = UsePN (mkPN "Scottsdale") ; -Countries_RO_provinces_Teleorman = UsePN (mkPN "Teleorman") ; -Countries_CAM_provinces_Est_cities_Bertoua = UsePN (mkPN "Bertoua") ; -Countries_BR_cities_Betim = UsePN (mkPN "Betim") ; -Countries_GB_provinces_WestMidlands_cities_Solihull = UsePN (mkPN "Solihull") ; -Countries_GB_provinces_RhonddaCynonTaff_cities_Rhondda = UsePN (mkPN "Rhondda") ; -Countries_TR_provinces_Ordu = UsePN (mkPN "Ordu") ; -Countries_J_provinces_Kanagawa_cities_Kawasaki = UsePN (mkPN "Kawasaki") ; -Islands_Tasmania = UsePN (mkPN "Tasmania") ; -Countries_DJI_cities_Djibouti = UsePN (mkPN "Djibouti") ; -Countries_MEX_provinces_NuevoLeon_cities_Monterrey = UsePN (mkPN "Monterrey") ; -Countries_TR_provinces_Hatay_cities_Iskenderun = UsePN (mkPN "Iskenderun") ; -Lakes_GreatSaltLake = UsePN (mkPN "Great Salt Lake") ; -SaintLucia = UsePN (mkPN "Saint Lucia") ; -Countries_WAN_cities_Sapele = UsePN (mkPN "Sapele") ; -Countries_USA_provinces_Tennessee_cities_Nashville = UsePN (mkPN "Nashville") ; -Countries_CH_provinces_UR = UsePN (mkPN "UR") ; -Countries_IR_provinces_AzarbayianeGharbt_cities_Maragheh = UsePN (mkPN "Maragheh") ; -Countries_E_provinces_CanaryIslands_cities_LasPalmasdeGranCanaria = UsePN (mkPN "Las Palmas de Gran Canaria") ; -Countries_CDN_provinces_Ontario = UsePN (mkPN "Ontario") ; -Countries_RO_provinces_Maramures = UsePN (mkPN "Maramures") ; -Countries_RI_cities_Gorontalo = UsePN (mkPN "Gorontalo") ; -Countries_CH_provinces_LU = UsePN (mkPN "LU") ; -Countries_R_provinces_Rep_ofAdygeya = UsePN (mkPN "Rep. of Adygeya") ; -Countries_MEX_provinces_Colima_cities_Colima = UsePN (mkPN "Colima") ; -Countries_RO_provinces_Calarasi = UsePN (mkPN "Calarasi") ; -Countries_S_provinces_Norrbotten = UsePN (mkPN "Norrbotten") ; -Countries_TJ_provinces_Shanxi_cities_Yuci = UsePN (mkPN "Yuci") ; -Countries_AZ_cities_Baku = UsePN (mkPN "Baku") ; -Countries_E_provinces_Catalonia_cities_Tarragona = UsePN (mkPN "Tarragona") ; -Countries_I_provinces_Abruzzo_cities_Pescara = UsePN (mkPN "Pescara") ; -Countries_R_provinces_Kurskayaoblast = UsePN (mkPN "Kurskaya oblast") ; -Countries_RA_provinces_SantaCruz_cities_RioGallegos = UsePN (mkPN "Rio Gallegos") ; -Countries_IR_provinces_Hamadan_cities_Malayer = UsePN (mkPN "Malayer") ; -Countries_J_provinces_Kumamoto = UsePN (mkPN "Kumamoto") ; -Organizations_NAM = UsePN (mkPN "Nonaligned Movement") ; -Countries_TJ_provinces_Liaoning_cities_Benxi = UsePN (mkPN "Benxi") ; -Rivers_ConnecticutRiver = UsePN (mkPN "Connecticut River") ; -Countries_I_provinces_Toscana = UsePN (mkPN "Toscana") ; -Countries_BR_provinces_Pernambuco_cities_Garanhuns = UsePN (mkPN "Garanhuns") ; -Countries_AL_cities_Tirane = UsePN (mkPN "Tirane") ; -Islands_SaintVincent = UsePN (mkPN "Saint Vincent") ; -Countries_GB_provinces_Lothian = UsePN (mkPN "Lothian") ; -Countries_YV_provinces_Carabobo_cities_Valencia = UsePN (mkPN "Valencia") ; -Countries_USA_provinces_NorthCarolina_cities_Raleigh = UsePN (mkPN "Raleigh") ; -Countries_WAN_cities_Enugu = UsePN (mkPN "Enugu") ; -Countries_R_provinces_Khabarovskiykray_cities_Khabarovsk = UsePN (mkPN "Khabarovsk") ; -Countries_IR_provinces_Khorasan_cities_Bojnurd = UsePN (mkPN "Bojnurd") ; -Countries_TM_provinces_Balkan_cities_Nebitdag = UsePN (mkPN "Nebitdag") ; -Rivers_RiodelaPlata = UsePN (mkPN "Rio de la Plata") ; -Rivers_Pibor = UsePN (mkPN "Pibor") ; -Countries_BD_cities_Sylhet = UsePN (mkPN "Sylhet") ; -Countries_D_provinces_NordrheinWestfalen_cities_MulheimanderRuhr = UsePN (mkPN "Mulheim an der Ruhr") ; -Countries_USA_provinces_NewJersey_cities_Paterson = UsePN (mkPN "Paterson") ; -Countries_TJ_provinces_Heilongjiang_cities_Fuling = UsePN (mkPN "Fuling") ; -Countries_TR_provinces_Kocaeli_cities_Adapazari = UsePN (mkPN "Adapazari") ; -Countries_MA_cities_Tetouan = UsePN (mkPN "Tetouan") ; -Countries_S_provinces_Kristianstad = UsePN (mkPN "Kristianstad") ; -Countries_E_provinces_Andalusia_cities_Sevilla = UsePN (mkPN "Sevilla") ; -Countries_S_provinces_Orebro_cities_Orebro = UsePN (mkPN "Orebro") ; -Countries_MYA_provinces_Chin_cities_Hakha = UsePN (mkPN "Hakha") ; -Countries_TJ_provinces_Hubei_cities_Guangshui = UsePN (mkPN "Guangshui") ; -Rivers_Kafue = UsePN (mkPN "Kafue") ; -Countries_cid_cia_French_Polynesia_cities_Papeete = UsePN (mkPN "Papeete") ; -Countries_BR_provinces_Alagoas_cities_Maceio = UsePN (mkPN "Maceio") ; -Countries_TJ_provinces_Henan_cities_Luohe = UsePN (mkPN "Luohe") ; -Countries_GR_cities_Piraeus = UsePN (mkPN "Piraeus") ; -Countries_ET_provinces_Sohag = UsePN (mkPN "Sohag") ; -Countries_GB_provinces_WestMidlands_cities_Coventry = UsePN (mkPN "Coventry") ; -France = UsePN (mkPN "France") ; -Countries_BR_provinces_Bahia_cities_FeiradeSantana = UsePN (mkPN "Feira de Santana") ; -Countries_TR_provinces_Diyarbakir_cities_Diyarbakir = UsePN (mkPN "Diyarbakir") ; -Organizations_UNRWA = UsePN (mkPN "United Nations Relief and Works Agency for Palestine Refugees in the Near East") ; -Germany = UsePN (mkPN "Germany") ; -Countries_WAN_cities_Ibadan = UsePN (mkPN "Ibadan") ; -Countries_PK_cities_Islamabad = UsePN (mkPN "Islamabad") ; -Countries_RSA_cities_Soshanguve = UsePN (mkPN "Soshanguve") ; -Countries_J_provinces_Fukushima_cities_Fukushima = UsePN (mkPN "Fukushima") ; -Countries_RM_provinces_Antananarivo = UsePN (mkPN "Antananarivo") ; -Countries_P_provinces_Braganca = UsePN (mkPN "Braganca") ; -Countries_YV_provinces_Tachira_cities_SanCristobal = UsePN (mkPN "San Cristobal") ; -Countries_MEX_provinces_Veracruz_cities_Coatzacoalcos = UsePN (mkPN "Coatzacoalcos") ; -Countries_CDN_provinces_Ontario_cities_Oshawa = UsePN (mkPN "Oshawa") ; -Countries_RSA_provinces_Mpumalanga_cities_Nelspruit = UsePN (mkPN "Nelspruit") ; -Countries_R_provinces_Irkutskayaoblast = UsePN (mkPN "Irkutskaya oblast") ; -Countries_cid_cia_Greenland = UsePN (mkPN "Greenland") ; -Countries_Z_provinces_Northern_cities_Kasama = UsePN (mkPN "Kasama") ; -Countries_PL_provinces_Ciechanowskie = UsePN (mkPN "Ciechanowskie") ; -Countries_UA_provinces_Kharkivska_cities_Kharkiv = UsePN (mkPN "Kharkiv") ; -Countries_A_provinces_Carinthia_cities_Klagenfurt = UsePN (mkPN "Klagenfurt") ; -Organizations_G_10 = UsePN (mkPN "Group of 10") ; -Countries_CO_provinces_Bolivar_cities_Mangangue = UsePN (mkPN "Mangangue") ; -Countries_RO_provinces_Dimbovita = UsePN (mkPN "Dimbovita") ; -Countries_DZ_cities_Bechar = UsePN (mkPN "Bechar") ; -Countries_PL_provinces_Poznanskie_cities_Poznan = UsePN (mkPN "Poznan") ; -Countries_GB_provinces_SouthYorkshire_cities_Sheffield = UsePN (mkPN "Sheffield") ; -Countries_MYA_provinces_Tanintharyi_cities_Tavoy = UsePN (mkPN "Tavoy") ; -Countries_GB_provinces_Kent_cities_Tonbridge = UsePN (mkPN "Tonbridge") ; -Countries_L_cities_Luxembourg = UsePN (mkPN "Luxembourg") ; -Organizations_OECS = UsePN (mkPN "Organization of Eastern Caribbean States") ; -Countries_D_provinces_Saarland = UsePN (mkPN "Saarland") ; -Countries_CR_provinces_Heredia = UsePN (mkPN "Heredia") ; -Countries_USA_provinces_California_cities_Lancaster = UsePN (mkPN "Lancaster") ; -Countries_TJ_provinces_Jiangsu_cities_Yixing = UsePN (mkPN "Yixing") ; -Countries_BR_provinces_MatoGrosso = UsePN (mkPN "Mato Grosso") ; -Countries_RO_provinces_Gorj = UsePN (mkPN "Gorj") ; -Countries_S_provinces_Stockholm = UsePN (mkPN "Stockholm") ; -Mountains_MtHood = UsePN (mkPN "Mt Hood") ; -Countries_YV_provinces_Cojedes = UsePN (mkPN "Cojedes") ; -Countries_TJ_provinces_Guangdong_cities_Shantou = UsePN (mkPN "Shantou") ; -Countries_J_provinces_Aichi = UsePN (mkPN "Aichi") ; -Countries_WAN_cities_EffonAlaiye = UsePN (mkPN "Effon Alaiye") ; -Mountains_GuadalupePeak = UsePN (mkPN "Guadalupe Peak") ; -Countries_PL_provinces_Tarnobrzeskie = UsePN (mkPN "Tarnobrzeskie") ; -Countries_I_provinces_TrentinoAltoAdige_cities_Bolzano = UsePN (mkPN "Bolzano") ; -Countries_TJ_provinces_Shandong_cities_Liaocheng = UsePN (mkPN "Liaocheng") ; -Countries_USA_provinces_Illinois_cities_Peoria = UsePN (mkPN "Peoria") ; -Countries_MEX_provinces_Veracruz_cities_XalapaEnriquez = UsePN (mkPN "Xalapa Enriquez") ; -Countries_VN_provinces_BacThai = UsePN (mkPN "Bac Thai") ; -Countries_RO_provinces_Dolj_cities_Craiova = UsePN (mkPN "Craiova") ; -WesternSamoa = UsePN (mkPN "Western Samoa") ; -Kazakstan = UsePN (mkPN "Kazakstan") ; -Countries_BF_cities_Ouagadougou = UsePN (mkPN "Ouagadougou") ; -Countries_TJ_provinces_Liaoning_cities_Tieling = UsePN (mkPN "Tieling") ; -Countries_BR_provinces_Para_cities_Ananindeua = UsePN (mkPN "Ananindeua") ; -Georgia = UsePN (mkPN "Georgia") ; -Senegal = UsePN (mkPN "Senegal") ; -Countries_J_provinces_Kagoshima = UsePN (mkPN "Kagoshima") ; -Islands_NorthCaicos = UsePN (mkPN "North Caicos") ; -Countries_WAN_cities_Lafia = UsePN (mkPN "Lafia") ; -Countries_TJ_provinces_Jiangxi_cities_Xinyu = UsePN (mkPN "Xinyu") ; -Countries_THA_provinces_Trang = UsePN (mkPN "Trang") ; -Countries_AUS_provinces_Victoria_cities_Melbourne = UsePN (mkPN "Melbourne") ; -Countries_TR_provinces_Cankiri = UsePN (mkPN "Cankiri") ; -Islands_Trinidad = UsePN (mkPN "Trinidad") ; -Micronesia = UsePN (mkPN "Micronesia") ; -Organizations_ZC = UsePN (mkPN "Zangger Committee") ; -Countries_E_provinces_BalearicIslands = UsePN (mkPN "Balearic Islands") ; -Countries_BR_provinces_RioGrandedoSul_cities_Canoas = UsePN (mkPN "Canoas") ; -Countries_USA_provinces_Texas_cities_Brownsville = UsePN (mkPN "Brownsville") ; -Countries_MOC_provinces_Sofala_cities_Beira = UsePN (mkPN "Beira") ; -Countries_PE_provinces_Huanuco_cities_Huanuco = UsePN (mkPN "Huanuco") ; -Countries_IND_provinces_Maharashtra_cities_Bhiwandi = UsePN (mkPN "Bhiwandi") ; -Countries_USA_provinces_Texas_cities_ElPaso = UsePN (mkPN "El Paso") ; -Countries_R_provinces_Moskovskayaoblast_cities_Elektrostal = UsePN (mkPN "Elektrostal") ; -Countries_USA_provinces_Virginia_cities_Hampton = UsePN (mkPN "Hampton") ; -Countries_IR_cities_Mehrshahr = UsePN (mkPN "Mehrshahr") ; -Countries_THA_provinces_Phetchaburi = UsePN (mkPN "Phetchaburi") ; -Countries_IND_provinces_Manipur = UsePN (mkPN "Manipur") ; -Countries_VN_provinces_PhuYen = UsePN (mkPN "Phu Yen") ; -Countries_F_provinces_Lorraine_cities_Nancy = UsePN (mkPN "Nancy") ; -Countries_C_provinces_CiudaddelaHabana_cities_Havana = UsePN (mkPN "Havana") ; -Countries_RA_provinces_Formosa = UsePN (mkPN "Formosa") ; -Countries_R_provinces_Ulyanovskayaoblast_cities_Dimitrovgrad = UsePN (mkPN "Dimitrovgrad") ; -Countries_TJ_provinces_Heilongjiang_cities_Jixi = UsePN (mkPN "Jixi") ; -Islands_Oahu = UsePN (mkPN "Oahu") ; -Rivers_RioBalsas = UsePN (mkPN "Rio Balsas") ; -Countries_EAT_provinces_Dodoma_cities_Dodoma = UsePN (mkPN "Dodoma") ; -Countries_EAT_provinces_Shinyanga = UsePN (mkPN "Shinyanga") ; -Countries_EAT_provinces_KaskaziniPemba = UsePN (mkPN "Kaskazini Pemba") ; -Countries_S_provinces_Gotland = UsePN (mkPN "Gotland") ; -Deserts_Dschurab = UsePN (mkPN "Dschurab") ; -Countries_TR_provinces_Mugla = UsePN (mkPN "Mugla") ; -Islands_Bahamas = UsePN (mkPN "Bahamas") ; -Countries_TR_provinces_Canakkale = UsePN (mkPN "Canakkale") ; -Countries_P_provinces_Leiria = UsePN (mkPN "Leiria") ; -Countries_TJ_provinces_Zhejiang_cities_Ningbo = UsePN (mkPN "Ningbo") ; -Countries_H_provinces_Pecs_munic_cities_Pecs = UsePN (mkPN "Pecs") ; -Countries_TJ_provinces_Guangdong_cities_Shanwei = UsePN (mkPN "Shanwei") ; -Countries_BR_provinces_Amapa = UsePN (mkPN "Amapa") ; -Countries_RM_provinces_Antananarivo_cities_Antananarivo = UsePN (mkPN "Antananarivo") ; -Countries_D_provinces_BadenWurttemberg = UsePN (mkPN "Baden Wurttemberg") ; -Countries_BR_provinces_SaoPaulo_cities_Franca = UsePN (mkPN "Franca") ; -Countries_F_provinces_MidiPyrenees = UsePN (mkPN "Midi Pyrenees") ; -Organizations_WIPO = UsePN (mkPN "World Intellectual Property Organization") ; -Countries_NL_provinces_NoordHolland = UsePN (mkPN "Noord Holland") ; -Countries_ET_provinces_Dumyat_cities_Dumyat = UsePN (mkPN "Dumyat") ; -Rivers_Klaraelv = UsePN (mkPN "Klaraelv") ; -Countries_THA_provinces_SamutPrakan = UsePN (mkPN "Samut Prakan") ; -Deserts_ArabianDesert = UsePN (mkPN "Arabian Desert") ; -Countries_VN_cities_VietTri = UsePN (mkPN "Viet Tri") ; -Barbados = UsePN (mkPN "Barbados") ; -Countries_RCH_cities_Valparaiso = UsePN (mkPN "Valparaiso") ; -Countries_SUD_provinces_alIstiwaiyah = UsePN (mkPN "al Istiwaiyah") ; -Countries_USA_provinces_Oklahoma_cities_Tulsa = UsePN (mkPN "Tulsa") ; -Countries_RSA_cities_Khayalitsha = UsePN (mkPN "Khayalitsha") ; -Countries_IR_provinces_Khorasan_cities_Mashhad = UsePN (mkPN "Mashhad") ; -Rivers_Rufiji = UsePN (mkPN "Rufiji") ; -Countries_PK_cities_Sahiwal = UsePN (mkPN "Sahiwal") ; -Organizations_WTrO = UsePN (mkPN "World Trade Organization") ; -Countries_I_provinces_Molise = UsePN (mkPN "Molise") ; -Countries_CO_provinces_Cauca_cities_Popayan = UsePN (mkPN "Popayan") ; -Countries_UAE_provinces_Dubayy = UsePN (mkPN "Dubayy") ; -Lithuania = UsePN (mkPN "Lithuania") ; -Countries_ZRE_provinces_KasaiOriental_cities_MweneDitu = UsePN (mkPN "Mwene Ditu") ; -Countries_MAL_provinces_Sabah_cities_Tawai = UsePN (mkPN "Tawai") ; -Countries_BR_provinces_Goias_cities_Goiania = UsePN (mkPN "Goiania") ; -Countries_GB_provinces_WestYorkshire_cities_Bradford = UsePN (mkPN "Bradford") ; -Islands_Fidschi = UsePN (mkPN "Fidschi") ; -Organizations_UNPREDEP = UsePN (mkPN "United Nations Preventive Deployment Force") ; -Countries_TJ_provinces_XinjiangUygur_cities_Karamay = UsePN (mkPN "Karamay") ; -Countries_D_provinces_RheinlandPfalz_cities_Ludwigshafen = UsePN (mkPN "Ludwigshafen") ; -Countries_NOK_cities_Wonsan = UsePN (mkPN "Wonsan") ; -Countries_MEX_provinces_QuintanaRoo = UsePN (mkPN "Quintana Roo") ; -Countries_BR_provinces_Ceara_cities_Fortaleza = UsePN (mkPN "Fortaleza") ; -Countries_GB_provinces_ValeofGlamorgan_cities_Barry = UsePN (mkPN "Barry") ; -Countries_cid_cia_Turks_and_Caicos_Islands_cities_GrandTurk = UsePN (mkPN "Grand Turk") ; -Countries_D_provinces_Bayern_cities_Erlangen = UsePN (mkPN "Erlangen") ; -Countries_D_provinces_NordrheinWestfalen_cities_Koln = UsePN (mkPN "Koln") ; -Countries_BD_cities_Tongi = UsePN (mkPN "Tongi") ; -Countries_MOC_provinces_Niassa_cities_Lichinga = UsePN (mkPN "Lichinga") ; -Countries_CH_provinces_BS = UsePN (mkPN "BS") ; -Countries_F_provinces_Auvergne_cities_ClermontFerrand = UsePN (mkPN "Clermont Ferrand") ; -Countries_RI_cities_Bogor = UsePN (mkPN "Bogor") ; -Countries_EAU_cities_Kampala = UsePN (mkPN "Kampala") ; -Countries_GB_provinces_TyneandWear_cities_Sunderland = UsePN (mkPN "Sunderland") ; -Countries_USA_provinces_California_cities_SantaRosa = UsePN (mkPN "Santa Rosa") ; -Countries_TJ_provinces_Zhejiang_cities_Wenzhou = UsePN (mkPN "Wenzhou") ; -Countries_EAT_provinces_MjiniMagharibi_cities_Zanzibar = UsePN (mkPN "Zanzibar") ; -Countries_TJ_provinces_Shandong_cities_Weihai = UsePN (mkPN "Weihai") ; -Countries_R_provinces_Rep_ofKhakassiya_cities_Abakan = UsePN (mkPN "Abakan") ; -Islands_Palau = UsePN (mkPN "Palau") ; -Islands_Guadeloupe = UsePN (mkPN "Guadeloupe") ; -Countries_THA_provinces_PhraNakhonSiAyutthaya = UsePN (mkPN "Phra Nakhon Si Ayutthaya") ; -Countries_NL_provinces_Gelderland = UsePN (mkPN "Gelderland") ; -Mountains_CathkinPeak = UsePN (mkPN "Cathkin Peak") ; -Countries_MEX_provinces_Morelos = UsePN (mkPN "Morelos") ; -Mountains_MtElbert = UsePN (mkPN "Mt Elbert") ; -Countries_TR_provinces_Adana_cities_Adana = UsePN (mkPN "Adana") ; -Countries_PA_provinces_BocasdelToro_cities_BocasdelToro = UsePN (mkPN "Bocas del Toro") ; -Countries_CO_provinces_Risaralda_cities_Pereira = UsePN (mkPN "Pereira") ; -Countries_BR_provinces_Parana_cities_PontaGrossa = UsePN (mkPN "Ponta Grossa") ; -Countries_GB_provinces_Buckinghamshire = UsePN (mkPN "Buckinghamshire") ; -Countries_PE_provinces_Ica_cities_Ica = UsePN (mkPN "Ica") ; -Countries_USA_provinces_Louisiana_cities_Lafayette = UsePN (mkPN "Lafayette") ; -Countries_VN_provinces_BaRiaVungTau = UsePN (mkPN "Ba Ria Vung Tau") ; -Countries_F_provinces_NordPasdeCalais_cities_Lille = UsePN (mkPN "Lille") ; -Countries_CH_provinces_TI_cities_Bellinzona = UsePN (mkPN "Bellinzona") ; -Countries_RC_provinces_Miaoli = UsePN (mkPN "Miaoli") ; -Countries_F_provinces_PaysdelaLoire = UsePN (mkPN "Pays de la Loire") ; -Countries_TR_provinces_Usak = UsePN (mkPN "Usak") ; -Countries_GB_provinces_Shropshire = UsePN (mkPN "Shropshire") ; -Countries_RA_provinces_Cordoba_cities_Cordoba = UsePN (mkPN "Cordoba") ; -Countries_TR_provinces_Bingol_cities_Bingol = UsePN (mkPN "Bingol") ; -Countries_USA_provinces_California_cities_Palmdale = UsePN (mkPN "Palmdale") ; -Countries_N_provinces_VestAgder_cities_Kristiansand = UsePN (mkPN "Kristiansand") ; -Countries_SLB_cities_Honiara = UsePN (mkPN "Honiara") ; -Countries_VN_provinces_MinhHai = UsePN (mkPN "Minh Hai") ; -Countries_RSA_provinces_FreeState = UsePN (mkPN "Free State") ; -Countries_TJ_provinces_Zhejiang_cities_Hangzhou = UsePN (mkPN "Hangzhou") ; -Countries_VN_provinces_NorthEastSouth = UsePN (mkPN "North East South") ; -Countries_TJ_provinces_Hunan_cities_Yueyang = UsePN (mkPN "Yueyang") ; -Countries_CZ_provinces_Severocesky_cities_UstinadLabem = UsePN (mkPN "Usti nad Labem") ; -Countries_USA_provinces_Tennessee = UsePN (mkPN "Tennessee") ; -Countries_TJ_provinces_Hunan_cities_Zixing = UsePN (mkPN "Zixing") ; -Countries_GB_provinces_Gwynedd = UsePN (mkPN "Gwynedd") ; -Countries_MEX_provinces_Chihuahua_cities_Chihuahua = UsePN (mkPN "Chihuahua") ; -Organizations_AMU = UsePN (mkPN "Arab Maghreb Union") ; -Countries_ROK_cities_Seoul = UsePN (mkPN "Seoul") ; -Organizations_ECE = UsePN (mkPN "Economic Commission for Europe") ; -Countries_NEP_cities_Kathmandu = UsePN (mkPN "Kathmandu") ; -Countries_USA_provinces_Georgia_cities_Macon = UsePN (mkPN "Macon") ; -Countries_PL_provinces_Plockie_cities_Plock = UsePN (mkPN "Plock") ; -Countries_GB_provinces_Norfolk_cities_Norwich = UsePN (mkPN "Norwich") ; -Countries_VN_provinces_ThanhHoa = UsePN (mkPN "Thanh Hoa") ; -Countries_BR_provinces_SaoPaulo_cities_RioClaro = UsePN (mkPN "Rio Claro") ; -Organizations_UNMOT = UsePN (mkPN "United Nations Mission of Observers in Tajikistan") ; -Countries_YV_provinces_Apure = UsePN (mkPN "Apure") ; -Countries_TJ_provinces_Gansu_cities_Tianshui = UsePN (mkPN "Tianshui") ; -Gabon = UsePN (mkPN "Gabon") ; -Countries_GB_provinces_NorthernIreland_cities_Belfast = UsePN (mkPN "Belfast") ; -Nauru = UsePN (mkPN "Nauru") ; -Countries_RM_provinces_Toliary = UsePN (mkPN "Toliary") ; -Countries_cid_cia_Puerto_Rico_cities_SanJuan = UsePN (mkPN "San Juan") ; -Countries_ZRE_provinces_Bandundu_cities_Kikwit = UsePN (mkPN "Kikwit") ; -Countries_HCA_provinces_FranciscoMorazan = UsePN (mkPN "Francisco Morazan") ; -Countries_E_provinces_Galicia = UsePN (mkPN "Galicia") ; -Countries_PA_provinces_Herrera_cities_Chitre = UsePN (mkPN "Chitre") ; -Countries_TJ_provinces_Jilin = UsePN (mkPN "Jilin") ; -Countries_GB_provinces_Ceredigion_cities_Aberystwyth = UsePN (mkPN "Aberystwyth") ; -Countries_R_provinces_Rep_ofBashkortostan_cities_Ufa = UsePN (mkPN "Ufa") ; -Countries_I_provinces_Basilicata_cities_Potenza = UsePN (mkPN "Potenza") ; -Countries_RSA_provinces_KwazuluNatal_cities_Pietermaritzburg = UsePN (mkPN "Pietermaritzburg") ; -Countries_IND_provinces_Maharashtra_cities_Pune = UsePN (mkPN "Pune") ; -Rivers_Ob = UsePN (mkPN "Ob") ; -Organizations_WADB = UsePN (mkPN "West African Development Bank") ; -Countries_EAK_provinces_Eastern_cities_Embu = UsePN (mkPN "Embu") ; -Countries_PL_provinces_Tarnowskie = UsePN (mkPN "Tarnowskie") ; -Countries_UAE_cities_AlAyn = UsePN (mkPN "Al Ayn") ; -Countries_BR_provinces_Sergipe_cities_Aracaju = UsePN (mkPN "Aracaju") ; -Organizations_G_24 = UsePN (mkPN "Group of 24") ; -Countries_BR_provinces_RiodeJaneiro_cities_SaoGoncalo = UsePN (mkPN "Sao Goncalo") ; -Countries_I_provinces_Marche_cities_Ancona = UsePN (mkPN "Ancona") ; -Countries_IND_provinces_Goa_cities_Panaji = UsePN (mkPN "Panaji") ; -Countries_USA_provinces_Michigan = UsePN (mkPN "Michigan") ; -Deserts_Mujunkum = UsePN (mkPN "Mujunkum") ; -Countries_TR_provinces_Tunceli_cities_Tunceli = UsePN (mkPN "Tunceli") ; -Rivers_NorthernDwina = UsePN (mkPN "Northern Dwina") ; -Countries_PL_provinces_Tarnowskie_cities_Tarnow = UsePN (mkPN "Tarnow") ; -Countries_A_provinces_Vorarlberg = UsePN (mkPN "Vorarlberg") ; -Islands_Kauai = UsePN (mkPN "Kauai") ; -Countries_D_provinces_NordrheinWestfalen_cities_Remscheid = UsePN (mkPN "Remscheid") ; -Indonesia = UsePN (mkPN "Indonesia") ; -Countries_RSA_provinces_WesternCape_cities_CapeTown = UsePN (mkPN "Cape Town") ; -Countries_YV_provinces_Falcon_cities_Coro = UsePN (mkPN "Coro") ; -Countries_MEX_provinces_Chiapas = UsePN (mkPN "Chiapas") ; -Islands_Benbecula = UsePN (mkPN "Benbecula") ; -Countries_PL_provinces_Legnickie_cities_Legnica = UsePN (mkPN "Legnica") ; -Countries_THA_provinces_Songkhla_cities_Songkhla = UsePN (mkPN "Songkhla") ; -Countries_RA_provinces_RioNegro_cities_Viedma = UsePN (mkPN "Viedma") ; -Countries_PL_provinces_Lubelskie = UsePN (mkPN "Lubelskie") ; -Greece = UsePN (mkPN "Greece") ; -Countries_IND_provinces_MadhyaPradesh_cities_Bhopal = UsePN (mkPN "Bhopal") ; -Countries_H_provinces_BorsodAbaujZemplen = UsePN (mkPN "Borsod Abauj Zemplen") ; -Countries_PE_provinces_Ancash_cities_Huaraz = UsePN (mkPN "Huaraz") ; -Countries_CO_provinces_SantaFedeBogota_DC = UsePN (mkPN "Santa Fe de Bogota, DC") ; -Countries_IRQ_provinces_AlQadisiyah = UsePN (mkPN "Al Qadisiyah") ; -Countries_TR_provinces_Icel_cities_Mersin = UsePN (mkPN "Mersin") ; -Countries_cid_cia_Anguilla_cities_TheValley = UsePN (mkPN "The Valley") ; -Countries_UA_provinces_Kirovohradska = UsePN (mkPN "Kirovohradska") ; -Malta = UsePN (mkPN "Malta") ; -Countries_RMM_cities_Bamako = UsePN (mkPN "Bamako") ; -Countries_R_provinces_Kirovskayaoblast = UsePN (mkPN "Kirovskaya oblast") ; -Countries_R_provinces_Irkutskayaoblast_cities_Angarsk = UsePN (mkPN "Angarsk") ; -Countries_USA_provinces_Missouri_cities_Springfield = UsePN (mkPN "Springfield") ; -Libya = UsePN (mkPN "Libya") ; -Countries_UZB_provinces_Qasqadare_cities_Qarshi = UsePN (mkPN "Qarshi") ; -Countries_CO_provinces_Choco = UsePN (mkPN "Choco") ; -Countries_NL_provinces_NoordBrabant_cities_Breda = UsePN (mkPN "Breda") ; -Islands_Madagaskar = UsePN (mkPN "Madagaskar") ; -Countries_RI_cities_PekanBaru = UsePN (mkPN "Pekan Baru") ; -Organizations_UNIFIL = UsePN (mkPN "United Nations Interim Force in Lebanon") ; -Countries_NIC_cities_Chinandega = UsePN (mkPN "Chinandega") ; -Countries_YV_provinces_Carabobo_cities_Guacara = UsePN (mkPN "Guacara") ; -Countries_R_provinces_Chelyabinskayaoblast_cities_Chelyabinsk = UsePN (mkPN "Chelyabinsk") ; -Countries_GB_provinces_HerefordandWorcester = UsePN (mkPN "Hereford and Worcester") ; -Countries_MEX_provinces_Veracruz_cities_PozaRica = UsePN (mkPN "Poza Rica") ; -Countries_R_provinces_Rostovskayaoblast_cities_RostovnaDonu = UsePN (mkPN "Rostov na Donu") ; -Countries_M_cities_Valletta = UsePN (mkPN "Valletta") ; -Countries_TJ_provinces_Heilongjiang_cities_Harbin = UsePN (mkPN "Harbin") ; -Countries_GR_provinces_Attiki_cities_Athens = UsePN (mkPN "Athens") ; -Rivers_Bija = UsePN (mkPN "Bija") ; -Vanuatu = UsePN (mkPN "Vanuatu") ; -Mountains_Illampu = UsePN (mkPN "Illampu") ; -Countries_UAE_cities_AbuDhabi = UsePN (mkPN "Abu Dhabi") ; -Countries_TR_provinces_Agri_cities_Agri = UsePN (mkPN "Agri") ; -Countries_TR_provinces_Manisa = UsePN (mkPN "Manisa") ; -Countries_J_provinces_Hiroshima = UsePN (mkPN "Hiroshima") ; -Countries_PL_provinces_Elblaskie_cities_Elblag = UsePN (mkPN "Elblag") ; -Countries_ET_provinces_ElFaiyum = UsePN (mkPN "El Faiyum") ; -Countries_I_provinces_Veneto_cities_Padova = UsePN (mkPN "Padova") ; -Countries_RC_provinces_Hsinchu_munic = UsePN (mkPN "Hsinchu (munic.)") ; -Countries_R_provinces_Samarskayaoblast = UsePN (mkPN "Samarskaya oblast") ; -Countries_ET_provinces_ElBahrelAhmar_cities_Hurghada = UsePN (mkPN "Hurghada") ; -Rivers_Volta = UsePN (mkPN "Volta") ; -Lakes_LakeLeopold_II = UsePN (mkPN "Lake Leopold-II") ; -Countries_UZB_provinces_Namangan_cities_Namangan = UsePN (mkPN "Namangan") ; -Countries_J_provinces_Yamaguchi = UsePN (mkPN "Yamaguchi") ; -Countries_CDN_provinces_Alberta_cities_Edmonton = UsePN (mkPN "Edmonton") ; -Countries_IND_provinces_Maharashtra_cities_Bombay = UsePN (mkPN "Bombay") ; -UnitedStates = UsePN (mkPN "United States") ; -Countries_I_provinces_EmiliaRomagna_cities_Bologna = UsePN (mkPN "Bologna") ; -Countries_I_provinces_Lazio_cities_Latina = UsePN (mkPN "Latina") ; -Countries_UZB_provinces_Toshkent_cities_Angren = UsePN (mkPN "Angren") ; -Rivers_Syrdarja = UsePN (mkPN "Syrdarja") ; -Organizations_WFTU = UsePN (mkPN "World Federation of Trade Unions") ; -Deserts_SimpsonDesert = UsePN (mkPN "Simpson Desert") ; -Countries_MEX_provinces_Jalisco_cities_Tlaquepaque = UsePN (mkPN "Tlaquepaque") ; -Countries_KAZ_provinces_Aqtobe_cities_Aqtobe = UsePN (mkPN "Aqtobe") ; -Countries_UA_provinces_Kyyivska_cities_Kiev = UsePN (mkPN "Kiev") ; -Countries_WD_cities_Roseau = UsePN (mkPN "Roseau") ; -Countries_BR_provinces_RioGrandedoSul_cities_Pelotas = UsePN (mkPN "Pelotas") ; -Countries_MAL_provinces_PulauPinang = UsePN (mkPN "Pulau Pinang") ; -Islands_Tiree = UsePN (mkPN "Tiree") ; -Countries_EAT_provinces_Tanga_cities_Tanga = UsePN (mkPN "Tanga") ; -Countries_IND_provinces_JammuandKashmir = UsePN (mkPN "Jammu and Kashmir") ; -Countries_CDN_provinces_Saskatchewan_cities_Saskatoon = UsePN (mkPN "Saskatoon") ; -Countries_F_provinces_RhoneAlpes_cities_Lyon = UsePN (mkPN "Lyon") ; -Countries_TJ_provinces_Hubei_cities_Huangshi = UsePN (mkPN "Huangshi") ; -Countries_GB_provinces_Cambridgeshire_cities_Huntingdon = UsePN (mkPN "Huntingdon") ; -Countries_USA_provinces_Washington_cities_Tacoma = UsePN (mkPN "Tacoma") ; -Countries_IND_provinces_Goa = UsePN (mkPN "Goa") ; -Countries_F_provinces_ProvenceCotedAzur_cities_Marseille = UsePN (mkPN "Marseille") ; -Countries_MA_cities_Meknes = UsePN (mkPN "Meknes") ; -Countries_USA_provinces_California_cities_Fremont = UsePN (mkPN "Fremont") ; -Countries_R_provinces_Tyumenskayaoblast_cities_Tyumen = UsePN (mkPN "Tyumen") ; -Countries_CO_provinces_Narino_cities_Pasto = UsePN (mkPN "Pasto") ; -Countries_TJ_provinces_Jilin_cities_Siping = UsePN (mkPN "Siping") ; -Countries_IR_provinces_Tehran = UsePN (mkPN "Tehran") ; -Countries_BR_provinces_MinasGerais_cities_SeteLagoas = UsePN (mkPN "Sete Lagoas") ; -Countries_BR_provinces_Bahia = UsePN (mkPN "Bahia") ; -Countries_TR_provinces_Gaziantep = UsePN (mkPN "Gaziantep") ; -Countries_USA_provinces_Delaware = UsePN (mkPN "Delaware") ; -Countries_THA_provinces_SiSaKet = UsePN (mkPN "Si Sa Ket") ; -Countries_cid_cia_Spratly_Islands = UsePN (mkPN "Spratly Islands") ; -Countries_TR_provinces_Diyarbakir = UsePN (mkPN "Diyarbakir") ; -Countries_RA_provinces_SantaFe_cities_SantaFe = UsePN (mkPN "Santa Fe") ; -Countries_UZB_provinces_Nawoiy_cities_Nawoiy = UsePN (mkPN "Nawoiy") ; -Countries_RO_provinces_Vilcea = UsePN (mkPN "Vilcea") ; -Countries_N_provinces_Troms_cities_Tromsoe = UsePN (mkPN "Tromsoe") ; -Countries_CO_provinces_Risaralda_cities_Dosquebradas = UsePN (mkPN "Dosquebradas") ; -Countries_MEX_provinces_Zacatecas = UsePN (mkPN "Zacatecas") ; -Mountains_PikLenina = UsePN (mkPN "Pik Lenina") ; -Countries_EAK_provinces_Eastern_cities_Meru = UsePN (mkPN "Meru") ; -Countries_CDN_provinces_Ontario_cities_EastYork = UsePN (mkPN "East York") ; -SaintKittsAndNevis = UsePN (mkPN "Saint Kitts and Nevis") ; -Countries_S_provinces_Malmohus_cities_Malmo = UsePN (mkPN "Malmo") ; -Countries_CR_provinces_Cartago_cities_Cartago = UsePN (mkPN "Cartago") ; -Countries_WL_cities_Castries = UsePN (mkPN "Castries") ; -Countries_TR_provinces_Bingol = UsePN (mkPN "Bingol") ; -Countries_cid_cia_Virgin_Islands = UsePN (mkPN "Virgin Islands") ; -Countries_ZRE_provinces_Bandundu_cities_Bandundu = UsePN (mkPN "Bandundu") ; -Countries_MEX_provinces_Mexico_Estadode_cities_TolucadeLerdo = UsePN (mkPN "Toluca de Lerdo") ; -Countries_J_provinces_Fukui = UsePN (mkPN "Fukui") ; -Countries_PL_provinces_Katowickie_cities_Chorzow = UsePN (mkPN "Chorzow") ; -Countries_USA_provinces_Texas_cities_CorpusChristi = UsePN (mkPN "Corpus Christi") ; -Rivers_Umeaelv = UsePN (mkPN "Umeaelv") ; -Countries_TJ_provinces_Hainan_cities_Haikou = UsePN (mkPN "Haikou") ; -Countries_D_provinces_Bremen_cities_Bremen = UsePN (mkPN "Bremen") ; -Countries_YV_provinces_NuevaEsparta_cities_LaAscuncion = UsePN (mkPN "La Ascuncion") ; -Mountains_Zugspitze = UsePN (mkPN "Zugspitze") ; -Countries_IND_provinces_Bihar_cities_Ranchi = UsePN (mkPN "Ranchi") ; -Countries_CO_provinces_Sucre = UsePN (mkPN "Sucre") ; -Countries_WAN_cities_Mushin = UsePN (mkPN "Mushin") ; -Lakes_OzeroBaikal = UsePN (mkPN "Ozero Baikal") ; -Countries_CZ_provinces_Vychodocesky = UsePN (mkPN "Vychodocesky") ; -Countries_H_provinces_Fejer_cities_Szekesfehervar = UsePN (mkPN "Szekesfehervar") ; -Countries_WAN_cities_Shomolu = UsePN (mkPN "Shomolu") ; -Countries_IND_provinces_Karnataka = UsePN (mkPN "Karnataka") ; -Organizations_CEI = UsePN (mkPN "Central European Initiative") ; -Countries_D_provinces_Hamburg = UsePN (mkPN "Hamburg") ; -Countries_MEX_provinces_Coahuila_cities_Torreon = UsePN (mkPN "Torreon") ; -Countries_MNG_cities_Ulaanbaatar = UsePN (mkPN "Ulaanbaatar") ; -Countries_R_provinces_Saratovskayaoblast_cities_Saratov = UsePN (mkPN "Saratov") ; -Countries_UZB_provinces_Khorazm_cities_Urganch = UsePN (mkPN "Urganch") ; -Countries_USA_provinces_Washington_cities_Seattle = UsePN (mkPN "Seattle") ; -Countries_RA_provinces_BuenosAires_cities_VicenteLopez = UsePN (mkPN "Vicente Lopez") ; -Countries_Z_provinces_Central = UsePN (mkPN "Central") ; -India = UsePN (mkPN "India") ; -Organizations_UNPROFOR = UsePN (mkPN "United Nations Protection Force") ; -Syria = UsePN (mkPN "Syria") ; -Countries_TR_provinces_Adana_cities_Osmaniye = UsePN (mkPN "Osmaniye") ; -Organizations_Mercosur = UsePN (mkPN "Southern Cone Common Market") ; -Countries_RSA_cities_Evaton = UsePN (mkPN "Evaton") ; -Countries_BR_provinces_RioGrandedoSul_cities_SantaMaria = UsePN (mkPN "Santa Maria") ; -Countries_MEX_provinces_Tamaulipas_cities_CiudadVictoria = UsePN (mkPN "Ciudad Victoria") ; -Organizations_ANC = UsePN (mkPN "North Atlantic Cooperation Council") ; -Countries_EAK_provinces_Central = UsePN (mkPN "Central") ; -Organizations_CEEAC = UsePN (mkPN "Economic Community of Central African States") ; -Countries_UA_provinces_Donetska_cities_Horlivka = UsePN (mkPN "Horlivka") ; -Countries_ES_provinces_Usulutan = UsePN (mkPN "Usulutan") ; -Countries_IR_provinces_Khuzestan_cities_MasjedeSoleyman = UsePN (mkPN "Masjed e Soleyman") ; -Countries_P_provinces_Guarda = UsePN (mkPN "Guarda") ; -Rivers_Bahrel_Djebel = UsePN (mkPN "Bahr el-Djebel") ; -Countries_TJ_provinces_Jilin_cities_Meihekou = UsePN (mkPN "Meihekou") ; -Countries_KIR_cities_Tarawa = UsePN (mkPN "Tarawa") ; -Countries_IND_provinces_Gujarat_cities_Gandhinagar = UsePN (mkPN "Gandhinagar") ; -Countries_SF_provinces_Turku_Pori_cities_Turku = UsePN (mkPN "Turku") ; -Countries_CDN_provinces_Newfoundland = UsePN (mkPN "Newfoundland") ; -Countries_RA_provinces_LaRioja_cities_LaRioja = UsePN (mkPN "La Rioja") ; -Countries_SN_provinces_Ziguinchor_cities_Ziguinchor = UsePN (mkPN "Ziguinchor") ; -Countries_UA_provinces_Luhanska = UsePN (mkPN "Luhanska") ; -Countries_R_provinces_Magadanskayaoblast = UsePN (mkPN "Magadanskaya oblast") ; -Countries_PE_provinces_Moquegua = UsePN (mkPN "Moquegua") ; -Islands_Malta = UsePN (mkPN "Malta") ; -Countries_S_provinces_Vastmanland = UsePN (mkPN "Vastmanland") ; -Countries_D_provinces_NordrheinWestfalen_cities_Bonn = UsePN (mkPN "Bonn") ; -Malaysia = UsePN (mkPN "Malaysia") ; -Countries_USA_provinces_California = UsePN (mkPN "California") ; -Countries_YV_provinces_NuevaEsparta = UsePN (mkPN "Nueva Esparta") ; -Countries_PA_provinces_Darien = UsePN (mkPN "Darien") ; -Countries_USA_provinces_Illinois_cities_Aurora = UsePN (mkPN "Aurora") ; -Countries_F_provinces_ProvenceCotedAzur_cities_Nice = UsePN (mkPN "Nice") ; -Countries_RC_provinces_Taichung_munic = UsePN (mkPN "Taichung (munic.)") ; -Countries_MEX_provinces_Veracruz_cities_Minatitlan = UsePN (mkPN "Minatitlan") ; -Countries_EAT_provinces_Tabora = UsePN (mkPN "Tabora") ; -Countries_GB_provinces_Humberside_cities_Hull = UsePN (mkPN "Hull") ; -Countries_TJ_provinces_Hubei_cities_Wuhan = UsePN (mkPN "Wuhan") ; -Countries_ETH_cities_Harer = UsePN (mkPN "Harer") ; -Countries_USA_provinces_California_cities_Hayward = UsePN (mkPN "Hayward") ; -Lakes_LakeMaracaibo = UsePN (mkPN "Lake Maracaibo") ; -Countries_cid_cia_Northern_Mariana_Islands_cities_Saipan = UsePN (mkPN "Saipan") ; -Countries_R_provinces_Saratovskayaoblast_cities_Balakovo = UsePN (mkPN "Balakovo") ; -Countries_ZRE_provinces_KasaiOccidental_cities_Kananga = UsePN (mkPN "Kananga") ; -Countries_MOC_provinces_Gaza_cities_XaiXai = UsePN (mkPN "Xai Xai") ; -Organizations_SPC = UsePN (mkPN "South Pacific Commission") ; -Countries_USA_provinces_NorthDakota_cities_Bismarck = UsePN (mkPN "Bismarck") ; -Countries_NL_provinces_Utrecht = UsePN (mkPN "Utrecht") ; -Countries_MYA_provinces_Chin = UsePN (mkPN "Chin") ; -Countries_GB_provinces_Avon = UsePN (mkPN "Avon") ; -Countries_I_provinces_EmiliaRomagna_cities_Rimini = UsePN (mkPN "Rimini") ; -Countries_BR_provinces_SantaCatarina_cities_Criciuma = UsePN (mkPN "Criciuma") ; -Countries_ES_provinces_SanSalvador = UsePN (mkPN "San Salvador") ; -Countries_E_provinces_CastileandLeon_cities_Albacete = UsePN (mkPN "Albacete") ; -Countries_H_provinces_Baranya = UsePN (mkPN "Baranya") ; -Countries_VN_provinces_KhanhHoa = UsePN (mkPN "Khanh Hoa") ; -Countries_R_provinces_Yevreyskayaavt_oblast = UsePN (mkPN "Yevreyskaya avt. oblast") ; -Countries_R_provinces_Moskovskayaoblast_cities_Kolomna = UsePN (mkPN "Kolomna") ; -Countries_E_provinces_CastileandLeon = UsePN (mkPN "Castile and Leon") ; -Countries_GB_provinces_Durham_cities_Durham = UsePN (mkPN "Durham") ; -Countries_RO_provinces_Timis_cities_Timisoara = UsePN (mkPN "Timisoara") ; -Countries_cid_cia_British_Indian_Ocean_Territory = UsePN (mkPN "British Indian Ocean Territory") ; -Countries_GB_provinces_Northamptonshire_cities_Northampton = UsePN (mkPN "Northampton") ; -Islands_Menorca = UsePN (mkPN "Menorca") ; -Countries_IRQ_provinces_Ninawa_cities_AlMawsil = UsePN (mkPN "Al Mawsil") ; -Countries_TJ_provinces_XinjiangUygur_cities_Yining = UsePN (mkPN "Yining") ; -Countries_R_provinces_Rostovskayaoblast_cities_Novocherkassk = UsePN (mkPN "Novocherkassk") ; -Countries_CZ_provinces_Praha_cities_Prague = UsePN (mkPN "Prague") ; -Countries_IR_provinces_Hormozgan_cities_BandarAbbas = UsePN (mkPN "Bandar Abbas") ; -Countries_PL_provinces_Piotrkowskie_cities_PiottrkowTrybunalski = UsePN (mkPN "Piottrkow Trybunalski") ; -Countries_USA_provinces_Mississippi = UsePN (mkPN "Mississippi") ; -Countries_CO_provinces_Atlantico_cities_Malambo = UsePN (mkPN "Malambo") ; -Countries_USA_provinces_Florida_cities_CoralSprings = UsePN (mkPN "Coral Springs") ; -Countries_TJ_provinces_Heilongjiang_cities_Shuangcheng = UsePN (mkPN "Shuangcheng") ; -Countries_KAZ_provinces_Zhezkazghan = UsePN (mkPN "Zhezkazghan") ; -Countries_IND_provinces_Pondicherry_cities_Pondicherry = UsePN (mkPN "Pondicherry") ; -Countries_VN_provinces_DongNai = UsePN (mkPN "Dong Nai") ; -Countries_THA_provinces_NakhonSiThammarat_cities_NakhonsiThammarat = UsePN (mkPN "Nakhon si Thammarat") ; -Countries_USA_provinces_NorthCarolina_cities_Charlotte = UsePN (mkPN "Charlotte") ; -Countries_R_provinces_Tverskayaoblast = UsePN (mkPN "Tverskaya oblast") ; -Countries_USA_provinces_Ohio_cities_Columbus = UsePN (mkPN "Columbus") ; -Countries_PL_provinces_Radomskie_cities_Radom = UsePN (mkPN "Radom") ; -Countries_SF_provinces_Suomi = UsePN (mkPN "Suomi") ; -Countries_RI_cities_Tegal = UsePN (mkPN "Tegal") ; -Countries_RCA_cities_Bangui = UsePN (mkPN "Bangui") ; -Countries_J_provinces_Hokkaido = UsePN (mkPN "Hokkaido") ; -Countries_Z_provinces_Southern_cities_Livingstone = UsePN (mkPN "Livingstone") ; -Countries_USA_provinces_Idaho_cities_Boise = UsePN (mkPN "Boise") ; -Countries_AUS_provinces_Kirimati_cities_FlyingFishCove = UsePN (mkPN "Flying Fish Cove") ; -Islands_CaymanBrac = UsePN (mkPN "Cayman Brac") ; -Countries_MEX_cities_SanPedroGarzaGarcia = UsePN (mkPN "San Pedro Garza Garcia") ; -Islands_GrandCaicos = UsePN (mkPN "Grand Caicos") ; -Countries_IRQ_provinces_Babil_cities_AlHillah = UsePN (mkPN "Al Hillah") ; -Countries_TJ_provinces_Guangdong_cities_Zhongshan = UsePN (mkPN "Zhongshan") ; -Countries_PL_provinces_Sieradzkie_cities_Sieradz = UsePN (mkPN "Sieradz") ; -Countries_NL_provinces_Utrecht_cities_Utrecht = UsePN (mkPN "Utrecht") ; -Countries_IRQ_provinces_DhiQar_cities_AnNasiriyah = UsePN (mkPN "An Nasiriyah") ; -Countries_TR_provinces_Trabzon = UsePN (mkPN "Trabzon") ; -Mexico = UsePN (mkPN "Mexico") ; -Countries_TAD_provinces_BadakhshoniKuni = UsePN (mkPN "Badakhshoni Kuni") ; -Countries_PL_provinces_Koszalinskie = UsePN (mkPN "Koszalinskie") ; -Countries_TJ_provinces_Sichuan_cities_Zigong = UsePN (mkPN "Zigong") ; -Countries_E_provinces_CanaryIslands_cities_SantaCruzdeTenerife = UsePN (mkPN "Santa Cruz de Tenerife") ; -Countries_MEX_provinces_Tlaxcala = UsePN (mkPN "Tlaxcala") ; -Seas_SouthChinaSea = UsePN (mkPN "South China Sea") ; -Countries_C_provinces_Camaguey = UsePN (mkPN "Camaguey") ; -Countries_TR_provinces_Erzincan = UsePN (mkPN "Erzincan") ; -Countries_USA_provinces_Virginia_cities_Norfolk = UsePN (mkPN "Norfolk") ; -Countries_IND_provinces_AndhraPradesh_cities_Vishakhapatnam = UsePN (mkPN "Vishakhapatnam") ; -Countries_TJ_provinces_Fujian_cities_Nanping = UsePN (mkPN "Nanping") ; -Countries_S_provinces_Jamtland_cities_Ostersund = UsePN (mkPN "Ostersund") ; -Organizations_UNITAR = UsePN (mkPN "United Nations Institute for Training and Research") ; -Countries_cid_cia_Cocos_Islands_cities_WestIsland = UsePN (mkPN "West Island") ; -Countries_CO_provinces_Antioquia_cities_Medellin = UsePN (mkPN "Medellin") ; -Countries_I_provinces_Veneto = UsePN (mkPN "Veneto") ; -Countries_IND_provinces_UttarPradesh_cities_Meerut = UsePN (mkPN "Meerut") ; -Countries_THA_provinces_ChonBuri = UsePN (mkPN "Chon Buri") ; -Countries_F_provinces_Lorraine_cities_Metz = UsePN (mkPN "Metz") ; -Countries_PK_cities_Gujranwala = UsePN (mkPN "Gujranwala") ; -Countries_PE_provinces_Pasco = UsePN (mkPN "Pasco") ; -Countries_MEX_provinces_Guerrero_cities_Acapulco = UsePN (mkPN "Acapulco") ; -Countries_TR_provinces_Kayseri_cities_Kayseri = UsePN (mkPN "Kayseri") ; -Countries_R_provinces_Ivanovskayaoblast_cities_Kineshma = UsePN (mkPN "Kineshma") ; -Countries_TJ_provinces_Anhui_cities_Bengbu = UsePN (mkPN "Bengbu") ; -Countries_EAK_provinces_RiftValley = UsePN (mkPN "Rift Valley") ; -Countries_R_provinces_Lipetskayaoblast_cities_Yelets = UsePN (mkPN "Yelets") ; -Countries_N_provinces_Nordland = UsePN (mkPN "Nordland") ; -Countries_KAZ_provinces_Mangghystau_cities_Aqtau = UsePN (mkPN "Aqtau") ; -Countries_YE_cities_Sanaa = UsePN (mkPN "Sanaa") ; -Countries_TJ_provinces_Shanxi_cities_Jincheng = UsePN (mkPN "Jincheng") ; -Countries_GB_provinces_GreaterManchester_cities_Tameside = UsePN (mkPN "Tameside") ; -Rivers_Lena = UsePN (mkPN "Lena") ; -Countries_RA_provinces_DistritoFederal_cities_BuenosAires = UsePN (mkPN "Buenos Aires") ; -Countries_RA_provinces_Jujuy_cities_SanSalvadordeJujuy = UsePN (mkPN "San Salvador de Jujuy") ; -Lakes_LakeErie = UsePN (mkPN "Lake Erie") ; -Countries_MA_cities_Kenitra = UsePN (mkPN "Kenitra") ; -Countries_ZRE_provinces_BasZaire_cities_Matadi = UsePN (mkPN "Matadi") ; -Countries_RO_provinces_CarasSeverin = UsePN (mkPN "Caras Severin") ; -Countries_SUD_provinces_ashSharqiyah_cities_Kassala = UsePN (mkPN "Kassala") ; -Countries_USA_provinces_Tennessee_cities_Memphis = UsePN (mkPN "Memphis") ; -Countries_RO_provinces_Buzau = UsePN (mkPN "Buzau") ; -Countries_TJ_provinces_Sichuan_cities_Nanchong = UsePN (mkPN "Nanchong") ; -Countries_I_provinces_Sicilia_cities_Palermo = UsePN (mkPN "Palermo") ; -Countries_BR_provinces_Piaui = UsePN (mkPN "Piaui") ; -Countries_TR_provinces_Agri = UsePN (mkPN "Agri") ; -Countries_IND_provinces_Punjab_cities_Ludhiana = UsePN (mkPN "Ludhiana") ; -Countries_THA_provinces_Kalasin = UsePN (mkPN "Kalasin") ; -Countries_CAM_provinces_Nordoueste = UsePN (mkPN "Nordoueste") ; -Countries_USA_provinces_Texas_cities_GrandPrairie = UsePN (mkPN "Grand Prairie") ; -Countries_RC_provinces_Penghu_cities_Makung = UsePN (mkPN "Makung") ; -Countries_PE_provinces_Tumbes_cities_Tumbes = UsePN (mkPN "Tumbes") ; -Countries_AFG_cities_Kabul = UsePN (mkPN "Kabul") ; -Lakes_OzeroChanka = UsePN (mkPN "Ozero Chanka") ; -Mountains_Tarrekaise = UsePN (mkPN "Tarrekaise") ; -Countries_TR_provinces_Konya_cities_Konya = UsePN (mkPN "Konya") ; -Rivers_Fulda = UsePN (mkPN "Fulda") ; -Countries_ZRE_provinces_KasaiOccidental = UsePN (mkPN "Kasai Occidental") ; -Countries_TR_provinces_Bolu = UsePN (mkPN "Bolu") ; -Countries_USA_provinces_California_cities_Oakland = UsePN (mkPN "Oakland") ; -Islands_Luzon = UsePN (mkPN "Luzon") ; -Countries_PL_provinces_Gdanskie = UsePN (mkPN "Gdanskie") ; -Countries_BR_provinces_EspiritoSanto_cities_VilaVelha = UsePN (mkPN "Vila Velha") ; -Countries_BR_provinces_MatoGrosso_cities_Rondonopolis = UsePN (mkPN "Rondonopolis") ; -Countries_RA_provinces_BuenosAires_cities_Avellaneda = UsePN (mkPN "Avellaneda") ; -Mountains_JabalMarra = UsePN (mkPN "Jabal Marra") ; -Countries_USA_provinces_Kansas_cities_Wichita = UsePN (mkPN "Wichita") ; -Countries_USA_provinces_Kentucky_cities_Louisville = UsePN (mkPN "Louisville") ; -Countries_USA_provinces_SouthCarolina = UsePN (mkPN "South Carolina") ; -Lakes_Mjoesen = UsePN (mkPN "Mjoesen") ; -Countries_TJ_provinces_Yunnan = UsePN (mkPN "Yunnan") ; -Countries_CAM_provinces_Cote = UsePN (mkPN "Cote") ; -Countries_TJ_provinces_Hubei = UsePN (mkPN "Hubei") ; -Organizations_ICC = UsePN (mkPN "International Chamber of Commerce") ; -Countries_SN_provinces_Fatick = UsePN (mkPN "Fatick") ; -Countries_UA_provinces_Khersonska = UsePN (mkPN "Khersonska") ; -Countries_Z_provinces_Copperbelt_cities_Mufulira = UsePN (mkPN "Mufulira") ; -Countries_TJ_provinces_Jiangsu = UsePN (mkPN "Jiangsu") ; -Countries_CR_provinces_Punarenas_cities_Puntarenas = UsePN (mkPN "Puntarenas") ; -Countries_RC_provinces_Chilung_munic = UsePN (mkPN "Chilung (munic.)") ; -Countries_TJ_provinces_Jiangxi = UsePN (mkPN "Jiangxi") ; -Countries_THA_provinces_RoiEt = UsePN (mkPN "Roi Et") ; -Countries_GB_provinces_Cambridgeshire_cities_Cambridge = UsePN (mkPN "Cambridge") ; -Countries_I_provinces_Lombardia_cities_Monza = UsePN (mkPN "Monza") ; -Rivers_Rhein = UsePN (mkPN "Rhein") ; -Cambodia = UsePN (mkPN "Cambodia") ; -Countries_R_provinces_Kemerovskayaoblast_cities_AnzheroSudzhensk = UsePN (mkPN "Anzhero Sudzhensk") ; -Countries_PL_provinces_Walbrzyskie_cities_Walbrzych = UsePN (mkPN "Walbrzych") ; -Countries_BR_provinces_SaoPaulo_cities_Diadema = UsePN (mkPN "Diadema") ; -Countries_USA_provinces_Alabama_cities_Mobile = UsePN (mkPN "Mobile") ; -Countries_IRQ_provinces_Maysan_cities_AlAmarah = UsePN (mkPN "Al Amarah") ; -Countries_ROK_cities_Mokpo = UsePN (mkPN "Mokpo") ; -Countries_KAZ_provinces_Taldyqorghan_cities_Taldyqorghan = UsePN (mkPN "Taldyqorghan") ; -Organizations_Sparteca = UsePN (mkPN "South Pacific Regional Trade and Economic Cooperation Agreement") ; -Countries_NL_provinces_NoordHolland_cities_Zaanstreek = UsePN (mkPN "Zaanstreek") ; -Countries_GB_provinces_MerthyrTydfil_cities_MerthyrTydfil = UsePN (mkPN "Merthyr Tydfil") ; -Mountains_Korab = UsePN (mkPN "Korab") ; -Countries_THA_provinces_Surin = UsePN (mkPN "Surin") ; -Countries_YV_provinces_Trujillo_cities_Trujillo = UsePN (mkPN "Trujillo") ; -Countries_MAL_provinces_Kedah_cities_AlorSetar = UsePN (mkPN "Alor Setar") ; -Countries_GB_provinces_Avon_cities_Bristol = UsePN (mkPN "Bristol") ; -Mountains_Elbrus = UsePN (mkPN "Elbrus") ; -Countries_BR_provinces_MinasGerais_cities_Divinopolis = UsePN (mkPN "Divinopolis") ; -Rivers_Torneaelv = UsePN (mkPN "Torneaelv") ; -Countries_TJ_provinces_Shandong_cities_Pingdu = UsePN (mkPN "Pingdu") ; -Countries_BR_provinces_SantaCatarina_cities_Itajai = UsePN (mkPN "Itajai") ; -Countries_GB_provinces_Derbyshire_cities_SuttoninAshfield = UsePN (mkPN "Sutton in Ashfield") ; -Organizations_CEAO = UsePN (mkPN "West African Economic Community") ; -Countries_TJ_provinces_Shaanxi_cities_Xianyang = UsePN (mkPN "Xianyang") ; -Countries_RC_provinces_Miaoli_cities_Miaoli = UsePN (mkPN "Miaoli") ; -Countries_USA_provinces_California_cities_Torrance = UsePN (mkPN "Torrance") ; -Countries_USA_provinces_Colorado_cities_FortCollins = UsePN (mkPN "Fort Collins") ; -Countries_CDN_provinces_Saskatchewan_cities_Regina = UsePN (mkPN "Regina") ; -Countries_EAT_provinces_KusiniUjunga_cities_Koani = UsePN (mkPN "Koani") ; -Countries_MEX_provinces_Guerrero_cities_Chilpancingo = UsePN (mkPN "Chilpancingo") ; -Countries_E_provinces_Valencia_cities_Alacant = UsePN (mkPN "Alacant") ; -Countries_NOK_cities_Pyongyang = UsePN (mkPN "Pyongyang") ; -Organizations_SAARC = UsePN (mkPN "South Asian Association for Regional Cooperation") ; -Countries_SUD_provinces_ashShamaliyah_cities_adDamir = UsePN (mkPN "ad Damir") ; -Countries_CAM_provinces_Nord_cities_Garoua = UsePN (mkPN "Garoua") ; -Countries_CDN_provinces_Ontario_cities_Markham = UsePN (mkPN "Markham") ; -Countries_J_provinces_Aomori_cities_Aomori = UsePN (mkPN "Aomori") ; -Countries_UA_provinces_Krym_cities_Simferopol = UsePN (mkPN "Simferopol") ; -Countries_TR_provinces_Corum_cities_Corum = UsePN (mkPN "Corum") ; -Countries_USA_provinces_Vermont = UsePN (mkPN "Vermont") ; -Rivers_KleinerJenissej = UsePN (mkPN "Kleiner Jenissej") ; -Countries_N_provinces_MoereogRomsdal = UsePN (mkPN "Moere og Romsdal") ; -Countries_WAN_cities_IlaweEkiti = UsePN (mkPN "Ilawe Ekiti") ; -Countries_NL_provinces_NoordHolland_cities_Velsen = UsePN (mkPN "Velsen") ; -Countries_CO_provinces_Quindio = UsePN (mkPN "Quindio") ; -Countries_GB_provinces_Lancashire = UsePN (mkPN "Lancashire") ; -Countries_SUD_provinces_ashShamaliyah = UsePN (mkPN "ash Shamaliyah") ; -Countries_MAL_provinces_Johor_cities_JohorBaharu = UsePN (mkPN "Johor Baharu") ; -Countries_AUS_provinces_NewSouthWales_cities_SunshineCoast = UsePN (mkPN "Sunshine Coast") ; -Thailand = UsePN (mkPN "Thailand") ; -Mountains_Semeru = UsePN (mkPN "Semeru") ; -Countries_BR_provinces_MinasGerais_cities_MontesClaros = UsePN (mkPN "Montes Claros") ; -Countries_RI_cities_Pontianak = UsePN (mkPN "Pontianak") ; -Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEstero = UsePN (mkPN "Santiago del Estero") ; -Countries_RO_provinces_Mehedinti_cities_DrobetaTurnuSeverin = UsePN (mkPN "Drobeta Turnu Severin") ; -Countries_R_provinces_Stavropolskykray_cities_Kislovodsk = UsePN (mkPN "Kislovodsk") ; -Countries_TR_provinces_Istanbul_cities_Istanbul = UsePN (mkPN "Istanbul") ; -Countries_CDN_provinces_Ontario_cities_ThunderBay = UsePN (mkPN "Thunder Bay") ; -Mountains_Tahan = UsePN (mkPN "Tahan") ; -Countries_TR_provinces_Siirt = UsePN (mkPN "Siirt") ; -Countries_R_provinces_Rep_ofKarelia = UsePN (mkPN "Rep. of Karelia") ; -Mauritania = UsePN (mkPN "Mauritania") ; -Countries_RO_provinces_Teleorman_cities_Alexandria = UsePN (mkPN "Alexandria") ; -Mountains_MountGodwinAusten = UsePN (mkPN "Mount Godwin Austen") ; -Countries_TR_provinces_Rize = UsePN (mkPN "Rize") ; -Countries_GB_provinces_SouthYorkshire_cities_Barnsley = UsePN (mkPN "Barnsley") ; -Countries_RI_cities_Banjarmasin = UsePN (mkPN "Banjarmasin") ; -Countries_RC_provinces_Taipei_munic = UsePN (mkPN "Taipei (munic.)") ; -Countries_R_provinces_Kemerovskayaoblast_cities_Mezhdurechensk = UsePN (mkPN "Mezhdurechensk") ; -Countries_JA_cities_Kingston = UsePN (mkPN "Kingston") ; -Countries_C_provinces_IsladelaJuventud = UsePN (mkPN "Isla de la Juventud") ; -Countries_TJ_provinces_Anhui_cities_Suzhou = UsePN (mkPN "Suzhou") ; -Countries_TJ_provinces_Sichuan_cities_Dukou = UsePN (mkPN "Dukou") ; -Countries_TJ_provinces_XinjiangUygur = UsePN (mkPN "Xinjiang Uygur") ; -Countries_USA_provinces_California_cities_Oceanside = UsePN (mkPN "Oceanside") ; -Countries_KAZ_provinces_Qyzylorda = UsePN (mkPN "Qyzylorda") ; -Countries_USA_provinces_Texas = UsePN (mkPN "Texas") ; -Countries_YV_provinces_Zulia = UsePN (mkPN "Zulia") ; -Countries_NL_provinces_NoordHolland_cities_Amsterdam = UsePN (mkPN "Amsterdam") ; -Countries_R_provinces_Rep_ofDagestan = UsePN (mkPN "Rep. of Dagestan") ; -Countries_R_provinces_Rep_ofKhakassiya = UsePN (mkPN "Rep. of Khakassiya") ; -Countries_CDN_provinces_Quebec = UsePN (mkPN "Quebec") ; -Countries_GR_provinces_IonioiNisoi = UsePN (mkPN "Ionioi Nisoi") ; -Countries_J_provinces_Ishikawa = UsePN (mkPN "Ishikawa") ; -Islands_Aland = UsePN (mkPN "Aland") ; -Countries_GB_provinces_Lancashire_cities_Blackburn = UsePN (mkPN "Blackburn") ; -Countries_ROK_cities_Inchon = UsePN (mkPN "Inchon") ; -Countries_cid_cia_Cocos_Islands = UsePN (mkPN "Cocos Islands") ; -Countries_R_provinces_Moskovskayaoblast_cities_Mytishchi = UsePN (mkPN "Mytishchi") ; -Mountains_Sarektjokko = UsePN (mkPN "Sarektjokko") ; -Countries_S_provinces_Varmland_cities_Karlstad = UsePN (mkPN "Karlstad") ; -Countries_GB_provinces_Cornwall_IslesofScilly = UsePN (mkPN "Cornwall / Isles of Scilly") ; -Countries_RA_provinces_EntreRios_cities_Concordia = UsePN (mkPN "Concordia") ; -Organizations_UNDP = UsePN (mkPN "United Nations Development Program") ; -Countries_cid_cia_Faroe_Islands_cities_Torshavn = UsePN (mkPN "Torshavn") ; -Countries_IND_provinces_TamilNadu_cities_Madras = UsePN (mkPN "Madras") ; -Countries_MYA_provinces_Magway_cities_Magway = UsePN (mkPN "Magway") ; -Croatia = UsePN (mkPN "Croatia") ; -Countries_RA_provinces_SantaFe = UsePN (mkPN "Santa Fe") ; -Countries_AUS_provinces_WesternAustralia = UsePN (mkPN "Western Australia") ; -Countries_PL_provinces_Zamojskie_cities_Zamosc = UsePN (mkPN "Zamosc") ; -Countries_RA_provinces_Catamarca_cities_SanFernando = UsePN (mkPN "San Fernando") ; -Countries_KGZ_cities_Bishkek = UsePN (mkPN "Bishkek") ; -Countries_IND_provinces_Maharashtra_cities_Sholapur = UsePN (mkPN "Sholapur") ; -Countries_GB_provinces_WestSussex_cities_Horsham = UsePN (mkPN "Horsham") ; -Countries_YV_provinces_Sucre = UsePN (mkPN "Sucre") ; -Countries_VN_provinces_BinhDinh = UsePN (mkPN "Binh Dinh") ; -Countries_USA_provinces_Colorado_cities_Denver = UsePN (mkPN "Denver") ; -Countries_TR_provinces_Karamanmaras_cities_KaramanMaras = UsePN (mkPN "Karaman Maras") ; -Countries_RA_provinces_SantiagodeEstero_cities_SantiagodelEsteroLaBanda = UsePN (mkPN "Santiago del Estero La Banda") ; -Countries_TJ_provinces_Hebei_cities_Qinhuangdao = UsePN (mkPN "Qinhuangdao") ; -Countries_S_provinces_GoteborgochBohus = UsePN (mkPN "Goteborg och Bohus") ; -Mountains_GrosserArber = UsePN (mkPN "Grosser Arber") ; -Countries_H_provinces_Vas = UsePN (mkPN "Vas") ; -Countries_TR_provinces_Nevsehir_cities_Nevsehir = UsePN (mkPN "Nevsehir") ; -Islands_Aust_Vagoey = UsePN (mkPN "Aust-Vagoey") ; -Countries_cid_cia_Kingman_Reef = UsePN (mkPN "Kingman Reef") ; -Islands_Harris = UsePN (mkPN "Harris") ; -Countries_R_provinces_Volgogradskayaoblast_cities_Volgograd = UsePN (mkPN "Volgograd") ; -Deserts_GrandVictoriaDesert = UsePN (mkPN "Grand Victoria Desert") ; -Countries_GB_provinces_Lancashire_cities_Preston = UsePN (mkPN "Preston") ; -Countries_RO_provinces_Sibiu_cities_Sibiu = UsePN (mkPN "Sibiu") ; -Countries_TR_provinces_Kocaeli = UsePN (mkPN "Kocaeli") ; -Countries_I_provinces_TrentinoAltoAdige = UsePN (mkPN "Trentino Alto Adige") ; -Countries_CH_provinces_AI_cities_Appenzell = UsePN (mkPN "Appenzell") ; -Countries_RI_cities_Pasuruan = UsePN (mkPN "Pasuruan") ; -Countries_GB_provinces_GreaterManchester_cities_Salford = UsePN (mkPN "Salford") ; -Countries_MEX_provinces_Jalisco_cities_Zapopan = UsePN (mkPN "Zapopan") ; -Countries_B_provinces_Limburg = UsePN (mkPN "Limburg") ; -Countries_BR_provinces_MinasGerais_cities_Ipatinga = UsePN (mkPN "Ipatinga") ; -Countries_AL_cities_Durres = UsePN (mkPN "Durres") ; -Countries_RG_cities_Conakry = UsePN (mkPN "Conakry") ; -Countries_NL_provinces_Groningen = UsePN (mkPN "Groningen") ; -Countries_GB_provinces_Gloucestershire_cities_Glouchester = UsePN (mkPN "Glouchester") ; -Countries_cid_cia_Saint_Pierre_and_Miquelon = UsePN (mkPN "Saint Pierre and Miquelon") ; -Countries_RA_provinces_Chubut = UsePN (mkPN "Chubut") ; -Countries_MEX_provinces_Michoacan_cities_Morelia = UsePN (mkPN "Morelia") ; -Countries_GB_provinces_WestSussex_cities_Chichester = UsePN (mkPN "Chichester") ; -Countries_D_provinces_Bayern_cities_Regensburg = UsePN (mkPN "Regensburg") ; -Countries_R_provinces_Chelyabinskayaoblast_cities_Miass = UsePN (mkPN "Miass") ; -Countries_RC_provinces_Pingtung_cities_Pingtung = UsePN (mkPN "Pingtung") ; -Countries_R_provinces_Khabarovskiykray = UsePN (mkPN "Khabarovskiy kray") ; -Islands_Staffa = UsePN (mkPN "Staffa") ; -Countries_PL_cities_DabrowaGornicza = UsePN (mkPN "Dabrowa Gornicza") ; -Countries_D_provinces_NordrheinWestfalen_cities_Dusseldorf = UsePN (mkPN "Dusseldorf") ; -Countries_VN_provinces_DacLac = UsePN (mkPN "Dac Lac") ; -Organizations_RG = UsePN (mkPN "Rio Group") ; -Countries_CDN_provinces_Ontario_cities_Etobicoke = UsePN (mkPN "Etobicoke") ; -Rivers_WesternDwina = UsePN (mkPN "Western Dwina") ; -Countries_CDN_provinces_Ontario_cities_London = UsePN (mkPN "London") ; -Countries_RO_provinces_Salaj_cities_Zalau = UsePN (mkPN "Zalau") ; -Countries_RO_provinces_Cluj_cities_ClujNapoca = UsePN (mkPN "Cluj Napoca") ; -Countries_GB_provinces_Monmouthshire_cities_Cwmbran = UsePN (mkPN "Cwmbran") ; -Countries_MEX_provinces_DistritoFederal = UsePN (mkPN "Distrito Federal") ; -Countries_TJ_provinces_Jiangsu_cities_Suzhou = UsePN (mkPN "Suzhou") ; -Countries_F_provinces_PaysdelaLoire_cities_Nantes = UsePN (mkPN "Nantes") ; -Countries_R_provinces_Stavropolskykray_cities_Pyatigorsk = UsePN (mkPN "Pyatigorsk") ; -Countries_cid_cia_Svalbard_cities_Longyearbyen = UsePN (mkPN "Longyearbyen") ; -Countries_CH_provinces_FR_cities_Fribourg = UsePN (mkPN "Fribourg") ; -Countries_USA_provinces_Connecticut_cities_Stamford = UsePN (mkPN "Stamford") ; -Countries_ET_provinces_ElQalubiya = UsePN (mkPN "El Qalubiya") ; -Countries_A_provinces_LowerAustria = UsePN (mkPN "Lower Austria") ; -Countries_RP_cities_Quezon = UsePN (mkPN "Quezon") ; -Countries_cid_cia_Midway_Islands = UsePN (mkPN "Midway Islands") ; -Islands_MelvilleIsland = UsePN (mkPN "Melville Island") ; -Countries_GB_provinces_EastSussex = UsePN (mkPN "East Sussex") ; -Countries_KAZ_provinces_BatysQazaqstan = UsePN (mkPN "Batys Qazaqstan") ; -Countries_RI_cities_Manado = UsePN (mkPN "Manado") ; -NewCaledonia = UsePN (mkPN "New Caledonia") ; -Countries_PE_provinces_SanMartin = UsePN (mkPN "San Martin") ; -Countries_MOC_provinces_Zambezia_cities_Quelimane = UsePN (mkPN "Quelimane") ; -Countries_BR_provinces_MinasGerais_cities_TeofiloOtoni = UsePN (mkPN "Teofilo Otoni") ; -Islands_Taiwan = UsePN (mkPN "Taiwan") ; -Countries_IND_provinces_Kerala_cities_Cochin = UsePN (mkPN "Cochin") ; -Countries_IND_provinces_Karnataka_cities_Hubli = UsePN (mkPN "Hubli") ; -Islands_Martinique = UsePN (mkPN "Martinique") ; -Countries_BIH_cities_Sarajevo = UsePN (mkPN "Sarajevo") ; -Countries_NIC_cities_Masaya = UsePN (mkPN "Masaya") ; -Countries_RO_provinces_Constanta_cities_Constanta = UsePN (mkPN "Constanta") ; -Countries_WAN_cities_Bida = UsePN (mkPN "Bida") ; -Countries_RC_provinces_Kaohsiung_munic_cities_Kaohsiung = UsePN (mkPN "Kaohsiung") ; -Organizations_OPANAL = UsePN (mkPN "Agency for the Prohibition of Nuclear Weapons in Latin America and the Caribbean") ; -Countries_MAL_provinces_PulauPinang_cities_GeorgeTown = UsePN (mkPN "George Town") ; -Islands_Anglesey = UsePN (mkPN "Anglesey") ; -Countries_TR_provinces_Sakarya_cities_Sakarya = UsePN (mkPN "Sakarya") ; -Countries_E_provinces_Andalusia_cities_Cordoba = UsePN (mkPN "Cordoba") ; -Countries_EAK_provinces_Eastern = UsePN (mkPN "Eastern") ; -Countries_THA_provinces_NakhonNayok = UsePN (mkPN "Nakhon Nayok") ; -Rivers_Orinoco = UsePN (mkPN "Orinoco") ; -Countries_H_provinces_Pecs_munic = UsePN (mkPN "Pecs (munic.)") ; -Countries_EAT_provinces_KusiniUjunga = UsePN (mkPN "Kusini Ujunga") ; -Countries_F_provinces_HauteNormandie_cities_LeHavre = UsePN (mkPN "Le Havre") ; -Countries_BD_cities_Dinajpur = UsePN (mkPN "Dinajpur") ; -Countries_ANG_provinces_Namibe = UsePN (mkPN "Namibe") ; -Countries_MEX_provinces_Tamaulipas_cities_Tampico = UsePN (mkPN "Tampico") ; -Countries_IND_provinces_Bihar_cities_Patna = UsePN (mkPN "Patna") ; -Countries_CO_provinces_Boyaca_cities_Tunja = UsePN (mkPN "Tunja") ; -Countries_RA_provinces_TierradelFuego_cities_Ushuaia = UsePN (mkPN "Ushuaia") ; -Countries_R_provinces_Khabarovskiykray_cities_KomsomolsknaAmure = UsePN (mkPN "Komsomolsk na Amure") ; -Countries_BR_provinces_MinasGerais_cities_GovernadorValadares = UsePN (mkPN "Governador Valadares") ; -Countries_B_provinces_EastFlanders = UsePN (mkPN "East Flanders") ; -Countries_TJ_provinces_Shandong_cities_Liancheng = UsePN (mkPN "Liancheng") ; -Countries_IRQ_provinces_Maysan = UsePN (mkPN "Maysan") ; -Countries_BR_provinces_Pernambuco_cities_Gravatai = UsePN (mkPN "Gravatai") ; -Rivers_Cuilo = UsePN (mkPN "Cuilo") ; -Countries_MEX_provinces_Durango_cities_VictoriadeDurango = UsePN (mkPN "Victoria de Durango") ; -Countries_MOC_provinces_Nampula_cities_Nampula = UsePN (mkPN "Nampula") ; -Countries_R_provinces_Rep_ofNorthOssetiya = UsePN (mkPN "Rep. of North Ossetiya") ; -Countries_SF_provinces_Kymi_cities_Kotka = UsePN (mkPN "Kotka") ; -Countries_H_provinces_Bekes = UsePN (mkPN "Bekes") ; -Countries_GB_provinces_Derbyshire_cities_Matlock = UsePN (mkPN "Matlock") ; -Islands_SouthRonaldson = UsePN (mkPN "South Ronaldson") ; -Countries_cid_cia_French_Southern_and_Antarctic_Lands = UsePN (mkPN "French Southern and Antarctic Lands") ; -Countries_GB_provinces_NorthYorkshire_cities_Harrogate = UsePN (mkPN "Harrogate") ; -Lakes_LakeChilwa = UsePN (mkPN "Lake Chilwa") ; -Countries_IRQ_provinces_AlAnbar_cities_ArRamadi = UsePN (mkPN "Ar Ramadi") ; -Countries_HCA_provinces_Olancho_cities_Jutigalpa = UsePN (mkPN "Jutigalpa") ; -Countries_I_provinces_Lombardia = UsePN (mkPN "Lombardia") ; -Countries_TJ_provinces_NeiMonggol_cities_Tongliao = UsePN (mkPN "Tongliao") ; -Countries_BOL_cities_LaPaz = UsePN (mkPN "La Paz") ; -Countries_D_provinces_Berlin = UsePN (mkPN "Berlin") ; -Countries_MEX_provinces_Veracruz_cities_Jalapa = UsePN (mkPN "Jalapa") ; -Grenada = UsePN (mkPN "Grenada") ; -Mountains_Sulitjelma = UsePN (mkPN "Sulitjelma") ; -Countries_F_provinces_FrancheComte_cities_Besancon = UsePN (mkPN "Besancon") ; -Countries_GB_provinces_Dorset_cities_Poole = UsePN (mkPN "Poole") ; -Countries_TJ_provinces_Shandong_cities_Rizhao = UsePN (mkPN "Rizhao") ; -Countries_MYA_provinces_Rakhine_cities_Akyab = UsePN (mkPN "Akyab") ; -Countries_GB_provinces_Buckinghamshire_cities_MiltonKeynes = UsePN (mkPN "Milton Keynes") ; -Countries_TJ_provinces_Shandong_cities_Jiaoxian = UsePN (mkPN "Jiaoxian") ; -Organizations_EN = UsePN (mkPN "Nuclear Energy Agency") ; -Countries_IR_provinces_Bakhtaran = UsePN (mkPN "Bakhtaran") ; -Countries_BR_provinces_RiodeJaneiro_cities_SaoJoaodeMeriti = UsePN (mkPN "Sao Joao de Meriti") ; -Countries_YV_provinces_Amazonas = UsePN (mkPN "Amazonas") ; -Countries_J_provinces_Nagano = UsePN (mkPN "Nagano") ; -Countries_R_provinces_Orenburgskayaoblast_cities_Novotroitsk = UsePN (mkPN "Novotroitsk") ; -Countries_USA_provinces_Colorado = UsePN (mkPN "Colorado") ; -Countries_MEX_provinces_Sinaloa = UsePN (mkPN "Sinaloa") ; -Countries_J_provinces_Akita_cities_Akita = UsePN (mkPN "Akita") ; -Countries_CO_provinces_Antioquia_cities_Turbo = UsePN (mkPN "Turbo") ; -Countries_E_provinces_Asturias_cities_Oviedo = UsePN (mkPN "Oviedo") ; -Countries_SUD_provinces_ashSharqiyah_cities_alQadarif = UsePN (mkPN "al Qadarif") ; -Countries_R_provinces_Kaluzhskayaoblast_cities_Kaluga = UsePN (mkPN "Kaluga") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Qinzhou = UsePN (mkPN "Qinzhou") ; -Islands_Kyushu = UsePN (mkPN "Kyushu") ; -Lakes_Vaettern = UsePN (mkPN "Vaettern") ; -Countries_BR_provinces_Maranhao_cities_Codo = UsePN (mkPN "Codo") ; -Countries_GB_provinces_Merseyside_cities_Knowsley = UsePN (mkPN "Knowsley") ; -Countries_BR_provinces_MinasGerais_cities_ItapecericadaSerra = UsePN (mkPN "Itapecerica da Serra") ; -Countries_TR_provinces_Sinop = UsePN (mkPN "Sinop") ; -Countries_R_provinces_Rep_ofAltay = UsePN (mkPN "Rep. of Altay") ; -Rivers_Limpopo = UsePN (mkPN "Limpopo") ; -Countries_TJ_provinces_Hubei_cities_Shiyan = UsePN (mkPN "Shiyan") ; -Organizations_UNAVEMIII = UsePN (mkPN "United Nations Angola Verification Mission") ; -Rivers_Ischim = UsePN (mkPN "Ischim") ; -SaudiArabia = UsePN (mkPN "Saudi Arabia") ; -Countries_cid_cia_Palmyra_Atoll = UsePN (mkPN "Palmyra Atoll") ; -Countries_BR_provinces_MatoGrossodoSul_cities_Parnaiba = UsePN (mkPN "Parnaiba") ; -Countries_VN_provinces_ThuaThienHue = UsePN (mkPN "Thua Thien Hue") ; -Countries_RSA_cities_Diepmeadow = UsePN (mkPN "Diepmeadow") ; -Countries_PL_provinces_Pilskie_cities_Pila = UsePN (mkPN "Pila") ; -Islands_Grenada = UsePN (mkPN "Grenada") ; -Countries_GB_provinces_Cleveland = UsePN (mkPN "Cleveland") ; -Countries_BR_provinces_Parana = UsePN (mkPN "Parana") ; -Countries_BR_provinces_RioGrandedoNorte_cities_Mossoro = UsePN (mkPN "Mossoro") ; -Countries_J_provinces_Ibaraki_cities_Mito = UsePN (mkPN "Mito") ; -Countries_PNG_cities_PortMoresby = UsePN (mkPN "Port Moresby") ; -Countries_TR_provinces_Ankara_cities_Ankara = UsePN (mkPN "Ankara") ; -Countries_USA_provinces_Pennsylvania = UsePN (mkPN "Pennsylvania") ; -Countries_SN_provinces_SaintLouis = UsePN (mkPN "Saint Louis") ; -Countries_RA_provinces_Salta_cities_Salta = UsePN (mkPN "Salta") ; -Countries_ANG_provinces_Cabinda_cities_Cabinda = UsePN (mkPN "Cabinda") ; -Countries_PE_provinces_Huancavelica_cities_Huancavelica = UsePN (mkPN "Huancavelica") ; -Countries_TJ_provinces_Shandong_cities_Tengxian = UsePN (mkPN "Tengxian") ; -Countries_D_provinces_Bayern_cities_Furth = UsePN (mkPN "Furth") ; -Countries_SN_provinces_Dakar = UsePN (mkPN "Dakar") ; -Countries_IR_provinces_SistaneBaluchestan_cities_Zahedan = UsePN (mkPN "Zahedan") ; -Countries_R_provinces_Yaroslavskayaoblast = UsePN (mkPN "Yaroslavskaya oblast") ; -Rivers_Werra = UsePN (mkPN "Werra") ; -Australia = UsePN (mkPN "Australia") ; -Countries_ET_provinces_ElDaqahliya = UsePN (mkPN "El Daqahliya") ; -Countries_ES_provinces_Morazan_cities_SanFranciscoGotera = UsePN (mkPN "San Francisco Gotera") ; -Countries_CH_provinces_NW_cities_Stans = UsePN (mkPN "Stans") ; -Countries_ET_provinces_ElQahira_munic_cities_ElQahira = UsePN (mkPN "El Qahira") ; -Countries_BR_provinces_SaoPaulo_cities_SaoJosedosCampos = UsePN (mkPN "Sao Jose dos Campos") ; -Organizations_SADC = UsePN (mkPN "Southern African Development Community") ; -Countries_MEX_provinces_Campeche = UsePN (mkPN "Campeche") ; -Countries_R_provinces_Moskovskayaoblast_cities_Zelenograd = UsePN (mkPN "Zelenograd") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Nanning = UsePN (mkPN "Nanning") ; -Countries_TJ_provinces_Liaoning_cities_Jinxi = UsePN (mkPN "Jinxi") ; -Countries_HCA_provinces_Cortes_cities_SanPedroSula = UsePN (mkPN "San Pedro Sula") ; -Countries_ET_provinces_ElMinya_cities_ElMinya = UsePN (mkPN "El Minya") ; -Countries_TJ_provinces_Liaoning_cities_Dalian = UsePN (mkPN "Dalian") ; -Countries_EC_cities_Guayaquil = UsePN (mkPN "Guayaquil") ; -Countries_USA_provinces_Washington = UsePN (mkPN "Washington") ; -Countries_CH_provinces_FR = UsePN (mkPN "FR") ; -Countries_YV_cities_Turmero = UsePN (mkPN "Turmero") ; -Countries_cid_cia_Guam = UsePN (mkPN "Guam") ; -Countries_GB_provinces_EastSussex_cities_Brighton = UsePN (mkPN "Brighton") ; -Countries_BR_provinces_Acre_cities_RioBranco = UsePN (mkPN "Rio Branco") ; -Countries_THA_provinces_Phangnga = UsePN (mkPN "Phangnga") ; -Countries_ET_provinces_Sharqiya_cities_Zagazig = UsePN (mkPN "Zagazig") ; -Lakes_DaryachehyeNamak = UsePN (mkPN "Daryacheh ye Namak") ; -Countries_GB_provinces_Tayside_cities_Dundee = UsePN (mkPN "Dundee") ; -Countries_RA_provinces_BuenosAires_cities_BahiaBlanca = UsePN (mkPN "Bahia Blanca") ; -Mountains_Mpika = UsePN (mkPN "Mpika") ; -Countries_USA_provinces_Kansas = UsePN (mkPN "Kansas") ; -Countries_TJ_provinces_Fujian_cities_Sanming = UsePN (mkPN "Sanming") ; -Countries_TJ_provinces_Anhui_cities_Huaibei = UsePN (mkPN "Huaibei") ; -Cameroon = UsePN (mkPN "Cameroon") ; -Countries_USA_provinces_California_cities_LosAngeles = UsePN (mkPN "Los Angeles") ; -Countries_ET_provinces_ElMinya = UsePN (mkPN "El Minya") ; -Countries_RO_provinces_Dolj = UsePN (mkPN "Dolj") ; -Countries_ETH_cities_Mekele = UsePN (mkPN "Mekele") ; -Countries_ES_provinces_Cabanas_cities_Sensuntepeque = UsePN (mkPN "Sensuntepeque") ; -Countries_RO_provinces_Neamt_cities_PiatraNeamt = UsePN (mkPN "Piatra Neamt") ; -Seas_SundaSea = UsePN (mkPN "Sunda Sea") ; -Countries_ES_cities_Apopa = UsePN (mkPN "Apopa") ; -Countries_TJ_provinces_Sichuan_cities_Neijiang = UsePN (mkPN "Neijiang") ; -Countries_MYA_provinces_Tanintharyi = UsePN (mkPN "Tanintharyi") ; -Countries_F_provinces_LanguedocRousillon_cities_Nimes = UsePN (mkPN "Nimes") ; -Jordan = UsePN (mkPN "Jordan") ; -Countries_cid_cia_Netherlands_Antilles = UsePN (mkPN "Netherlands Antilles") ; -Countries_GCA_cities_VillaNueva = UsePN (mkPN "Villa Nueva") ; -Countries_TJ_provinces_NeiMonggol_cities_Wuhai = UsePN (mkPN "Wuhai") ; -Countries_GB_provinces_Devon_cities_Exeter = UsePN (mkPN "Exeter") ; -Countries_CH_provinces_AI = UsePN (mkPN "AI") ; -Countries_R_provinces_Rep_ofMariyEl_cities_YoshkarOla = UsePN (mkPN "Yoshkar Ola") ; -Countries_TR_provinces_Cankiri_cities_Cankiri = UsePN (mkPN "Cankiri") ; -Countries_TJ_provinces_Shanxi_cities_Datong = UsePN (mkPN "Datong") ; -Countries_TM_provinces_Balkan = UsePN (mkPN "Balkan") ; -Countries_BR_provinces_SaoPaulo_cities_Sorocaba = UsePN (mkPN "Sorocaba") ; -Countries_USA_provinces_NewHampshire_cities_Manchester = UsePN (mkPN "Manchester") ; -Countries_NAM_cities_Windhoek = UsePN (mkPN "Windhoek") ; -Countries_I_provinces_EmiliaRomagna_cities_ReggionellEmilia = UsePN (mkPN "Reggio nellEmilia") ; -Countries_GB_provinces_GreaterManchester_cities_Rochdale = UsePN (mkPN "Rochdale") ; -Countries_SF_provinces_Mikkeli_cities_Mikkeli = UsePN (mkPN "Mikkeli") ; -Countries_HCA_provinces_LaPaz_cities_LaPaz = UsePN (mkPN "La Paz") ; -Countries_IRQ_provinces_AlQadisiyah_cities_AdDiwaniyah = UsePN (mkPN "Ad Diwaniyah") ; -Organizations_IADB = UsePN (mkPN "Inter-American Development Bank") ; -Countries_USA_provinces_Texas_cities_WichitaFalls = UsePN (mkPN "Wichita Falls") ; -Islands_Tuvalu = UsePN (mkPN "Tuvalu") ; -Countries_AUS_provinces_NewSouthWales_cities_Geelong = UsePN (mkPN "Geelong") ; -Countries_TR_provinces_Kocaeli_cities_Izmit = UsePN (mkPN "Izmit") ; -Countries_YV_provinces_Portuguesa_cities_Guanare = UsePN (mkPN "Guanare") ; -Countries_IND_provinces_DamanandDiu_cities_Daman = UsePN (mkPN "Daman") ; -Organizations_UNCTAD = UsePN (mkPN "United Nations Conference on Trade and Development") ; -Countries_CH_provinces_AG = UsePN (mkPN "AG") ; -Countries_THA_provinces_KhonKaen_cities_KhonKaen = UsePN (mkPN "Khon Kaen") ; -Countries_MYA_provinces_Kayah_cities_Loikaw = UsePN (mkPN "Loikaw") ; -Countries_BR_provinces_Maranhao_cities_Imperatriz = UsePN (mkPN "Imperatriz") ; -Countries_DK_cities_Copenhagen = UsePN (mkPN "Copenhagen") ; -Countries_MEX_provinces_Yucatan = UsePN (mkPN "Yucatan") ; -Countries_BR_provinces_Pernambuco_cities_Recife = UsePN (mkPN "Recife") ; -Countries_USA_provinces_Arkansas_cities_LittleRock = UsePN (mkPN "Little Rock") ; -Countries_cid_cia_British_Virgin_Islands = UsePN (mkPN "British Virgin Islands") ; -Countries_USA_provinces_California_cities_Bakersfield = UsePN (mkPN "Bakersfield") ; -Countries_THA_provinces_Saraburi = UsePN (mkPN "Saraburi") ; -Islands_Bohol = UsePN (mkPN "Bohol") ; -Islands_Isabela = UsePN (mkPN "Isabela") ; -Countries_TR_provinces_Kirsehir = UsePN (mkPN "Kirsehir") ; -Countries_PL_provinces_Szczecinskie_cities_Szczecin = UsePN (mkPN "Szczecin") ; -Organizations_EBRD = UsePN (mkPN "European Bank for Reconstruction and Development") ; -Countries_THA_provinces_NortheasternRegion = UsePN (mkPN "Northeastern Region") ; -Mountains_BorahPeak = UsePN (mkPN "Borah Peak") ; -Countries_PK_cities_Multan = UsePN (mkPN "Multan") ; -Mountains_MtAylmer = UsePN (mkPN "Mt Aylmer") ; -Countries_USA_provinces_NewJersey_cities_Newark = UsePN (mkPN "Newark") ; -Rivers_Gloma = UsePN (mkPN "Gloma") ; -Countries_PL_provinces_Gdanskie_cities_Gdynia = UsePN (mkPN "Gdynia") ; -Countries_UZB_provinces_Namangan = UsePN (mkPN "Namangan") ; -Countries_GE_cities_Tbilisi = UsePN (mkPN "Tbilisi") ; -Countries_CO_provinces_Guaviare = UsePN (mkPN "Guaviare") ; -Countries_D_provinces_Thuringen_cities_Gera = UsePN (mkPN "Gera") ; -Countries_MEX_provinces_BajaCalifornia_cities_Tijuana = UsePN (mkPN "Tijuana") ; -Islands_Tilos = UsePN (mkPN "Tilos") ; -Countries_SF_provinces_Oulu_cities_Oulu = UsePN (mkPN "Oulu") ; -NorthKorea = UsePN (mkPN "North Korea") ; -Countries_TJ_provinces_NeiMonggol_cities_Jining = UsePN (mkPN "Jining") ; -Countries_cid_cia_Tromelin_Island = UsePN (mkPN "Tromelin Island") ; -Countries_N_provinces_Nordland_cities_Svolvaer = UsePN (mkPN "Svolvaer") ; -Countries_B_provinces_Hainaut_cities_Mons = UsePN (mkPN "Mons") ; -Countries_USA_provinces_California_cities_Ontario = UsePN (mkPN "Ontario") ; -Countries_EAT_provinces_Kigoma = UsePN (mkPN "Kigoma") ; -Countries_ES_provinces_LaPaz = UsePN (mkPN "La Paz") ; -Rivers_Ruki = UsePN (mkPN "Ruki") ; -Rivers_Tobol = UsePN (mkPN "Tobol") ; -Countries_IND_provinces_MadhyaPradesh_cities_Raipur = UsePN (mkPN "Raipur") ; -Countries_I_provinces_EmiliaRomagna = UsePN (mkPN "Emilia Romagna") ; -Countries_RA_provinces_SanLuis = UsePN (mkPN "San Luis") ; -Countries_THA_provinces_SouthernRegion = UsePN (mkPN "Southern Region") ; -Countries_THA_provinces_NakhonSawan = UsePN (mkPN "Nakhon Sawan") ; -Countries_USA_provinces_Michigan_cities_Livonia = UsePN (mkPN "Livonia") ; -Countries_RA_provinces_BuenosAires_cities_SanNicolasdelosArroyos = UsePN (mkPN "San Nicolas de los Arroyos") ; -Countries_UA_provinces_Krym = UsePN (mkPN "Krym") ; -Organizations_UNMOGIP = UsePN (mkPN "United Nations Military Observer Group in India and Pakistan") ; -Countries_R_provinces_Irkutskayaoblast_cities_Bratsk = UsePN (mkPN "Bratsk") ; -Countries_IND_provinces_AndhraPradesh_cities_Rajahmundry = UsePN (mkPN "Rajahmundry") ; -Countries_RA_provinces_Catamarca_cities_SanFernandodelValledeCatamarca = UsePN (mkPN "San Fernando del Valle de Catamarca") ; -Countries_CDN_provinces_Ontario_cities_Windsor = UsePN (mkPN "Windsor") ; -Countries_MEX_provinces_BajaCalifornia_cities_Ensenada = UsePN (mkPN "Ensenada") ; -Countries_ET_provinces_ElMinufiya = UsePN (mkPN "El Minufiya") ; -Countries_CDN_provinces_Ontario_cities_Glouchester = UsePN (mkPN "Glouchester") ; -Countries_TJ_provinces_Sichuan_cities_Qianjiang = UsePN (mkPN "Qianjiang") ; -Countries_EAT_provinces_Kilimanjaro_cities_Moshi = UsePN (mkPN "Moshi") ; -Countries_TR_provinces_Tunceli = UsePN (mkPN "Tunceli") ; -Countries_E_provinces_Andalusia_cities_Cadiz = UsePN (mkPN "Cadiz") ; -Countries_TAD_provinces_Khatlon = UsePN (mkPN "Khatlon") ; -Countries_GB_provinces_Wiltshire_cities_Salisbury = UsePN (mkPN "Salisbury") ; -Countries_R_provinces_Yaroslavskayaoblast_cities_Yaroslavl = UsePN (mkPN "Yaroslavl") ; -Countries_TJ_provinces_Liaoning = UsePN (mkPN "Liaoning") ; -Organizations_AG = UsePN (mkPN "Andean Group") ; -Countries_CDN_provinces_Quebec_cities_Laval = UsePN (mkPN "Laval") ; -Countries_cid_cia_Mayotte = UsePN (mkPN "Mayotte") ; -Lakes_LakeNatron = UsePN (mkPN "Lake Natron") ; -Countries_DZ_cities_Annaba = UsePN (mkPN "Annaba") ; -Countries_AUS_provinces_AustraliaCapitalTerritory = UsePN (mkPN "Australia Capital Territory") ; -Organizations_MTCR = UsePN (mkPN "Missile Technology Control Regime") ; -Countries_E_provinces_Madrid_cities_Madrid = UsePN (mkPN "Madrid") ; -Countries_D_provinces_Bayern_cities_Wurzburg = UsePN (mkPN "Wurzburg") ; -Countries_USA_provinces_Maryland_cities_Annapolis = UsePN (mkPN "Annapolis") ; -Countries_BR_provinces_Ceara_cities_Sobral = UsePN (mkPN "Sobral") ; -Countries_USA_provinces_NewHampshire_cities_Concord = UsePN (mkPN "Concord") ; -Countries_RC_cities_Chungli = UsePN (mkPN "Chungli") ; -Countries_PL_provinces_Koninskie = UsePN (mkPN "Koninskie") ; -Countries_NL_provinces_Limburg_cities_Geleen = UsePN (mkPN "Geleen") ; -Countries_CAM_provinces_Centre = UsePN (mkPN "Centre") ; -Islands_Chios = UsePN (mkPN "Chios") ; -Countries_TJ_provinces_Gansu = UsePN (mkPN "Gansu") ; -Countries_UZB_provinces_Andijon = UsePN (mkPN "Andijon") ; -Egypt = UsePN (mkPN "Egypt") ; -Countries_USA_provinces_Missouri_cities_JeffersonCity = UsePN (mkPN "Jefferson City") ; -Countries_THA_provinces_PrachuapKhiriKhan = UsePN (mkPN "Prachuap Khiri Khan") ; -Estonia = UsePN (mkPN "Estonia") ; -Countries_D_provinces_MecklenburgVorpommern_cities_Rostock = UsePN (mkPN "Rostock") ; -Countries_EAT_provinces_Rukwa_cities_Sumbawanga = UsePN (mkPN "Sumbawanga") ; -Countries_D_provinces_NordrheinWestfalen_cities_Bottrop = UsePN (mkPN "Bottrop") ; -Countries_J_provinces_Aomori = UsePN (mkPN "Aomori") ; -Countries_WAN_cities_Kaduna = UsePN (mkPN "Kaduna") ; -Countries_VN_provinces_LamDong = UsePN (mkPN "Lam Dong") ; -Organizations_SACU = UsePN (mkPN "Southern African Customs Union") ; -Countries_TJ_provinces_Guangdong_cities_Guangzhou = UsePN (mkPN "Guangzhou") ; -Countries_LT_cities_Vilnius = UsePN (mkPN "Vilnius") ; -Countries_D_provinces_Niedersachsen_cities_Gottingen = UsePN (mkPN "Gottingen") ; -Countries_USA_provinces_Maryland_cities_Baltimore = UsePN (mkPN "Baltimore") ; -Countries_ET_provinces_Aswan_cities_Aswan = UsePN (mkPN "Aswan") ; -Countries_D_provinces_Brandenburg_cities_Potsdam = UsePN (mkPN "Potsdam") ; -Countries_TR_provinces_Denizli = UsePN (mkPN "Denizli") ; -Countries_TJ_provinces_Hunan_cities_Leiyang = UsePN (mkPN "Leiyang") ; -Latvia = UsePN (mkPN "Latvia") ; -Countries_KAZ_provinces_Leninsk_munic_cities_Leninsk = UsePN (mkPN "Leninsk") ; -Countries_H_provinces_Csongrad = UsePN (mkPN "Csongrad") ; -Countries_R_provinces_Leningradskayaoblast_cities_Kolpino = UsePN (mkPN "Kolpino") ; -Countries_GB_provinces_Leicestershire_cities_Leichester = UsePN (mkPN "Leichester") ; -Countries_RC_provinces_Hualien = UsePN (mkPN "Hualien") ; -Rivers_Busira = UsePN (mkPN "Busira") ; -Countries_VN_provinces_TayNinh = UsePN (mkPN "Tay Ninh") ; -Mountains_Joekul = UsePN (mkPN "Joekul") ; -Countries_WAN_cities_Ilesha = UsePN (mkPN "Ilesha") ; -Countries_WAN_cities_Zaria = UsePN (mkPN "Zaria") ; -Countries_J_provinces_Ehime_cities_Matsuyama = UsePN (mkPN "Matsuyama") ; -Countries_MEX_provinces_Tamaulipas = UsePN (mkPN "Tamaulipas") ; -Countries_ZRE_provinces_Shaba_cities_Kolwezi = UsePN (mkPN "Kolwezi") ; -Countries_R_provinces_Permskayaoblast = UsePN (mkPN "Permskaya oblast") ; -Countries_MEX_provinces_Jalisco_cities_Guadalajara = UsePN (mkPN "Guadalajara") ; -Islands_Arran = UsePN (mkPN "Arran") ; -Countries_USA_provinces_California_cities_Escondido = UsePN (mkPN "Escondido") ; -Countries_BR_provinces_SaoPaulo_cities_Piracicaba = UsePN (mkPN "Piracicaba") ; -Countries_CDN_provinces_Ontario_cities_Burlington = UsePN (mkPN "Burlington") ; -Countries_WAN_cities_PortHarcourt = UsePN (mkPN "Port Harcourt") ; -Countries_R_provinces_Rep_ofKalmykiya_cities_Elista = UsePN (mkPN "Elista") ; -Countries_R_provinces_ChuvashRepublic_cities_Cheboksary = UsePN (mkPN "Cheboksary") ; -Islands_SantaCatalinaIsland = UsePN (mkPN "Santa Catalina Island") ; -Rivers_Han = UsePN (mkPN "Han") ; -Countries_USA_provinces_Missouri_cities_Independence = UsePN (mkPN "Independence") ; -Countries_PA_provinces_ComarcadeSanBlas_cities_ElPorvenir = UsePN (mkPN "El Porvenir") ; -Countries_PL_provinces_Katowickie_cities_Zabrze = UsePN (mkPN "Zabrze") ; -Countries_CDN_provinces_Quebec_cities_Richmond = UsePN (mkPN "Richmond") ; -Countries_SUD_provinces_ashSharqiyah_cities_PortSudan = UsePN (mkPN "Port Sudan") ; -ElSalvador = UsePN (mkPN "El Salvador") ; -Countries_BR_provinces_EspiritoSanto_cities_Vitoria = UsePN (mkPN "Vitoria") ; -Countries_D_provinces_BadenWurttemberg_cities_Mannheim = UsePN (mkPN "Mannheim") ; -Countries_TJ_provinces_NeiMonggol_cities_Manzhouli = UsePN (mkPN "Manzhouli") ; -Countries_USA_provinces_NewYork_cities_NewYork = UsePN (mkPN "New York") ; -Countries_RI_cities_Blitar = UsePN (mkPN "Blitar") ; -Countries_GB_provinces_Berkshire_cities_Slough = UsePN (mkPN "Slough") ; -Countries_IRQ_provinces_Diyala = UsePN (mkPN "Diyala") ; -Countries_TJ_provinces_Shanxi_cities_Changzhi = UsePN (mkPN "Changzhi") ; -Countries_I_provinces_Sardegna_cities_Sassari = UsePN (mkPN "Sassari") ; -Countries_TR_provinces_Kocaeli_cities_Gebze = UsePN (mkPN "Gebze") ; -Countries_YV_provinces_Yaracuy = UsePN (mkPN "Yaracuy") ; -Countries_D_provinces_SachsenAnhalt_cities_Magdeburg = UsePN (mkPN "Magdeburg") ; -Countries_BR_provinces_SaoPaulo_cities_MojiGuacu = UsePN (mkPN "Moji Guacu") ; -Organizations_WEU = UsePN (mkPN "Western European Union") ; -Countries_MEX_cities_CiudadApodaca = UsePN (mkPN "Ciudad Apodaca") ; -Countries_IL_provinces_Central_cities_Jerusalem = UsePN (mkPN "Jerusalem") ; -Countries_BR_provinces_EspiritoSanto_cities_Serra = UsePN (mkPN "Serra") ; -Countries_TJ_provinces_Anhui_cities_Maanshan = UsePN (mkPN "Maanshan") ; -Organizations_CBSS = UsePN (mkPN "Council of the Baltic Sea States") ; -Countries_BR_provinces_RioGrandedoSul_cities_CaxiasdoSul = UsePN (mkPN "Caxias do Sul") ; -Countries_E_provinces_Cantabria_cities_Santander = UsePN (mkPN "Santander") ; -Countries_TJ_provinces_Guangdong_cities_Huizhou = UsePN (mkPN "Huizhou") ; -Countries_SF_provinces_Vaasa_cities_Vaasa = UsePN (mkPN "Vaasa") ; -Countries_PK_cities_Lahore = UsePN (mkPN "Lahore") ; -Countries_RO_provinces_Ialomita = UsePN (mkPN "Ialomita") ; -Rivers_Thames = UsePN (mkPN "Thames") ; -Countries_IR_provinces_Khorasan = UsePN (mkPN "Khorasan") ; -Countries_P_provinces_Madeira_cities_Funchal = UsePN (mkPN "Funchal") ; -Countries_USA_provinces_Indiana_cities_Gary = UsePN (mkPN "Gary") ; -Countries_IR_provinces_Hormozgan = UsePN (mkPN "Hormozgan") ; -Countries_TJ_provinces_Jilin_cities_Yanji = UsePN (mkPN "Yanji") ; -Countries_J_provinces_Ibaraki = UsePN (mkPN "Ibaraki") ; -Lakes_LakeOntario = UsePN (mkPN "Lake Ontario") ; -Countries_CDN_provinces_Ontario_cities_Toronto = UsePN (mkPN "Toronto") ; -Countries_SUD_provinces_ashSharqiyah = UsePN (mkPN "ash Sharqiyah") ; -Countries_TJ_provinces_Henan_cities_Xinxiang = UsePN (mkPN "Xinxiang") ; -Countries_TJ_provinces_Anhui_cities_Chuxian = UsePN (mkPN "Chuxian") ; -Countries_USA_provinces_SouthCarolina_cities_Columbia = UsePN (mkPN "Columbia") ; -Countries_H_provinces_Tolna = UsePN (mkPN "Tolna") ; -Countries_RA_provinces_BuenosAires_cities_Lanus = UsePN (mkPN "Lanus") ; -Countries_EAK_provinces_Coast_cities_Mombasa = UsePN (mkPN "Mombasa") ; -Countries_MEX_provinces_Guerrero = UsePN (mkPN "Guerrero") ; -Countries_MEX_provinces_Chiapas_cities_TuxtlaGutierrez = UsePN (mkPN "Tuxtla Gutierrez") ; -Countries_BR_cities_Ibirite = UsePN (mkPN "Ibirite") ; -Countries_THA_provinces_Petchanbun = UsePN (mkPN "Petchanbun") ; -Countries_H_provinces_Nograd_cities_Salgotarjan = UsePN (mkPN "Salgotarjan") ; -Countries_YV_provinces_Miranda_cities_Baruta = UsePN (mkPN "Baruta") ; -Countries_RO_provinces_Vrancea_cities_Focsani = UsePN (mkPN "Focsani") ; -Countries_TJ_provinces_Hunan_cities_Changsha = UsePN (mkPN "Changsha") ; -Mountains_HarneyPeak = UsePN (mkPN "Harney Peak") ; -Countries_BR_provinces_SaoPaulo_cities_Maua = UsePN (mkPN "Maua") ; -Countries_UZB_provinces_Bukhoro_cities_Bukhoro = UsePN (mkPN "Bukhoro") ; -Islands_CangarooIsland = UsePN (mkPN "Cangaroo Island") ; -Deserts_Sagiael_Hamra = UsePN (mkPN "Sagia el-Hamra") ; -Countries_R_provinces_Altayskiykray = UsePN (mkPN "Altayskiy kray") ; -Zambia = UsePN (mkPN "Zambia") ; -Countries_RCH_cities_Santiago = UsePN (mkPN "Santiago") ; -Countries_RO_provinces_Sibiu = UsePN (mkPN "Sibiu") ; -Countries_MOC_provinces_Maputo_munic_cities_Maputo = UsePN (mkPN "Maputo") ; -Countries_IRQ_provinces_SalahadDin_cities_Samarra = UsePN (mkPN "Samarra") ; -Countries_CZ_provinces_Severocesky = UsePN (mkPN "Severocesky") ; -Countries_GB_provinces_Warwickshire_cities_Nuneaton = UsePN (mkPN "Nuneaton") ; -Countries_GB_provinces_Gwynedd_cities_Caernarfon = UsePN (mkPN "Caernarfon") ; -Countries_YV_provinces_Barinas = UsePN (mkPN "Barinas") ; -Countries_RA_provinces_Cordoba = UsePN (mkPN "Cordoba") ; -Countries_USA_provinces_Nebraska = UsePN (mkPN "Nebraska") ; -Countries_cid_cia_Man_cities_Douglas = UsePN (mkPN "Douglas") ; -Countries_YV_provinces_Falcon = UsePN (mkPN "Falcon") ; -Countries_GB_provinces_Nottinghamshire = UsePN (mkPN "Nottinghamshire") ; -Countries_R_provinces_Sakhalinskayaoblast = UsePN (mkPN "Sakhalinskaya oblast") ; -Countries_H_provinces_Miskolc_munic_cities_Miskolc = UsePN (mkPN "Miskolc") ; -Countries_IND_provinces_AndamanandNicobarIs__cities_PortBlair = UsePN (mkPN "Port Blair") ; -Countries_R_provinces_Chukotskyao_cities_Anadyr = UsePN (mkPN "Anadyr") ; -Countries_J_provinces_Saitama = UsePN (mkPN "Saitama") ; -Countries_RO_provinces_Tulcea = UsePN (mkPN "Tulcea") ; -Countries_R_provinces_Chitinskayaoblast = UsePN (mkPN "Chitinskaya oblast") ; -Countries_MYA_provinces_Mandalay_cities_Mandalay = UsePN (mkPN "Mandalay") ; -Yemen = UsePN (mkPN "Yemen") ; -Islands_Nauru = UsePN (mkPN "Nauru") ; -Countries_IND_provinces_Maharashtra_cities_Kolhapur = UsePN (mkPN "Kolhapur") ; -Countries_EAK_provinces_RiftValley_cities_Kericho = UsePN (mkPN "Kericho") ; -Countries_IND_provinces_Chandigarh_cities_Chandigarh = UsePN (mkPN "Chandigarh") ; -Countries_USA_provinces_Nebraska_cities_Omaha = UsePN (mkPN "Omaha") ; -Countries_GB_provinces_WestMidlands_cities_Walsall = UsePN (mkPN "Walsall") ; -Countries_IR_provinces_Markazi = UsePN (mkPN "Markazi") ; -Countries_EAK_provinces_RiftValley_cities_Kitale = UsePN (mkPN "Kitale") ; -Countries_D_provinces_NordrheinWestfalen_cities_Hagen = UsePN (mkPN "Hagen") ; -Countries_EAT_provinces_KusiniPemba = UsePN (mkPN "Kusini Pemba") ; -Countries_CO_provinces_Vichada = UsePN (mkPN "Vichada") ; -Countries_AUS_provinces_SouthAustralia_cities_Adelaide = UsePN (mkPN "Adelaide") ; -Countries_J_provinces_Kumamoto_cities_Kumamoto = UsePN (mkPN "Kumamoto") ; -Romania = UsePN (mkPN "Romania") ; -Islands_Paramuschir = UsePN (mkPN "Paramuschir") ; -Countries_VN_provinces_HaTinh = UsePN (mkPN "Ha Tinh") ; -Countries_USA_provinces_Connecticut_cities_Waterbury = UsePN (mkPN "Waterbury") ; -Countries_B_provinces_Brabant_cities_Brussels = UsePN (mkPN "Brussels") ; -Countries_DZ_cities_Tebessa = UsePN (mkPN "Tebessa") ; -Countries_GB_provinces_BlaenauGwent = UsePN (mkPN "Blaenau Gwent") ; -Countries_LS_cities_Maseru = UsePN (mkPN "Maseru") ; -Countries_MEX_provinces_NuevoLeon_cities_CiudadSantaCatarina = UsePN (mkPN "Ciudad Santa Catarina") ; -Countries_USA_provinces_California_cities_Orange = UsePN (mkPN "Orange") ; -Countries_USA_provinces_Distr_Columbia = UsePN (mkPN "Distr. Columbia") ; -Countries_IND_provinces_Maharashtra_cities_NewBombay = UsePN (mkPN "New Bombay") ; -Countries_CDN_provinces_Manitoba = UsePN (mkPN "Manitoba") ; -Countries_BR_provinces_SaoPaulo_cities_FerrazdeVasconcelos = UsePN (mkPN "Ferraz de Vasconcelos") ; -Countries_F_provinces_IledeFrance = UsePN (mkPN "Ile de France") ; -Countries_TJ_provinces_Hebei_cities_Handan = UsePN (mkPN "Handan") ; -Countries_USA_provinces_Virginia = UsePN (mkPN "Virginia") ; -Countries_S_provinces_Ostergotland = UsePN (mkPN "Ostergotland") ; -Countries_VN_cities_Saigon = UsePN (mkPN "Saigon") ; -Austria = UsePN (mkPN "Austria") ; -Countries_R_provinces_Tambovskayaoblast = UsePN (mkPN "Tambovskaya oblast") ; -Countries_HCA_provinces_Intibuca_cities_LaEsperanza = UsePN (mkPN "La Esperanza") ; -Countries_TR_provinces_Erzurum = UsePN (mkPN "Erzurum") ; -Countries_R_provinces_Kostromskayaoblast_cities_Kostroma = UsePN (mkPN "Kostroma") ; -Countries_EAK_provinces_Nyanza = UsePN (mkPN "Nyanza") ; -Countries_P_provinces_Coimbra_cities_Coimbra = UsePN (mkPN "Coimbra") ; -Mountains_Huascaran = UsePN (mkPN "Huascaran") ; -Countries_F_provinces_Centre_cities_Tours = UsePN (mkPN "Tours") ; -Countries_USA_provinces_Louisiana_cities_NewOrleans = UsePN (mkPN "New Orleans") ; -Countries_cid_cia_Turks_and_Caicos_Islands = UsePN (mkPN "Turks and Caicos Islands") ; -Countries_ES_provinces_LaPaz_cities_Zacatecoluca = UsePN (mkPN "Zacatecoluca") ; -Countries_UA_provinces_Mykolayivska_cities_Mykolayiv = UsePN (mkPN "Mykolayiv") ; -Countries_GB_provinces_GreaterManchester_cities_Trafford = UsePN (mkPN "Trafford") ; -Countries_UZB_provinces_Jizzakh_cities_Jizzakh = UsePN (mkPN "Jizzakh") ; -Rivers_Oesterdalaelv = UsePN (mkPN "Oesterdalaelv") ; -Countries_BR_provinces_Goias_cities_Araguaina = UsePN (mkPN "Araguaina") ; -Countries_VN_provinces_CaoBang = UsePN (mkPN "Cao Bang") ; -Countries_cid_cia_Martinique_cities_Fort_de_France = UsePN (mkPN "Fort-de-France") ; -Countries_GB_provinces_NorthYorkshire_cities_Scarborough = UsePN (mkPN "Scarborough") ; -Countries_CDN_provinces_Ontario_cities_Scarborough = UsePN (mkPN "Scarborough") ; -Lakes_LakeTiticaca = UsePN (mkPN "Lake Titicaca") ; -Countries_RP_cities_Kalookan = UsePN (mkPN "Kalookan") ; -Countries_R_provinces_SanktPeterburg = UsePN (mkPN "Sankt Peterburg") ; -Countries_GR_provinces_DhytikiEllas = UsePN (mkPN "Dhytiki Ellas") ; -Countries_D_provinces_Saarland_cities_Saarbrucken = UsePN (mkPN "Saarbrucken") ; -Countries_RO_provinces_Gorj_cities_TirguJiu = UsePN (mkPN "Tirgu Jiu") ; -Countries_TR_provinces_Yozgat_cities_Yozgat = UsePN (mkPN "Yozgat") ; -Countries_J_provinces_Toyama_cities_Toyama = UsePN (mkPN "Toyama") ; -Countries_SME_cities_Paramaribo = UsePN (mkPN "Paramaribo") ; -Countries_KAZ_provinces_Aqmola_cities_Aqmola = UsePN (mkPN "Aqmola") ; -Countries_MEX_provinces_Yucatan_cities_Merida = UsePN (mkPN "Merida") ; -Countries_TR_provinces_Mardin_cities_Mardin = UsePN (mkPN "Mardin") ; -Countries_CH_provinces_NE = UsePN (mkPN "NE") ; -Countries_cid_cia_Bermuda = UsePN (mkPN "Bermuda") ; -Countries_SF_provinces_Haeme_cities_Lahti = UsePN (mkPN "Lahti") ; -Countries_F_provinces_Limousin = UsePN (mkPN "Limousin") ; -Countries_GB_provinces_Derbyshire = UsePN (mkPN "Derbyshire") ; -Countries_ES_provinces_SanMiguel_cities_SanMiguel = UsePN (mkPN "San Miguel") ; -Countries_TJ_provinces_Henan_cities_Xinyang = UsePN (mkPN "Xinyang") ; -Countries_BRU_cities_BandarSeriBegawan = UsePN (mkPN "Bandar Seri Begawan") ; -Countries_PE_provinces_Amazonas_cities_Chachapoyas = UsePN (mkPN "Chachapoyas") ; -Countries_ET_provinces_Sohag_cities_Sohag = UsePN (mkPN "Sohag") ; -Countries_IND_provinces_LakshadweepIs_ = UsePN (mkPN "Lakshadweep Is.") ; -Countries_KAZ_provinces_SoltustikQazaqstan = UsePN (mkPN "Soltustik Qazaqstan") ; -Countries_BR_provinces_SaoPaulo_cities_Embu = UsePN (mkPN "Embu") ; -Islands_SriLanka = UsePN (mkPN "Sri Lanka") ; -Organizations_FZ = UsePN (mkPN "Franc Zone") ; -Countries_CZ_provinces_Praha = UsePN (mkPN "Praha") ; -Countries_USA_provinces_Missouri_cities_KansasCity = UsePN (mkPN "Kansas City") ; -Mountains_Tamgak = UsePN (mkPN "Tamgak") ; -Countries_ANG_provinces_Uige_cities_Uige = UsePN (mkPN "Uige") ; -Countries_USA_provinces_California_cities_Irvine = UsePN (mkPN "Irvine") ; -Countries_R_provinces_Orenburgskayaoblast = UsePN (mkPN "Orenburgskaya oblast") ; -Countries_BR_provinces_Maranhao_cities_SaoLuis = UsePN (mkPN "Sao Luis") ; -Countries_MEX_provinces_Mexico_Estadode_cities_Toluca = UsePN (mkPN "Toluca") ; -Countries_BR_provinces_Parana_cities_Colombo = UsePN (mkPN "Colombo") ; -Countries_TR_provinces_Kars_cities_Kars = UsePN (mkPN "Kars") ; -Countries_USA_provinces_California_cities_Fullerton = UsePN (mkPN "Fullerton") ; -Countries_TJ_provinces_Gansu_cities_Wuwei = UsePN (mkPN "Wuwei") ; -Countries_TJ_provinces_Hebei_cities_Shijiazhuang = UsePN (mkPN "Shijiazhuang") ; -Countries_PE_provinces_MadredeDios_cities_PuertoMaldonado = UsePN (mkPN "Puerto Maldonado") ; -Countries_NOK_cities_Nampo = UsePN (mkPN "Nampo") ; -Countries_CO_provinces_Huila = UsePN (mkPN "Huila") ; -Namibia = UsePN (mkPN "Namibia") ; -Countries_AUS_provinces_NewSouthWales_cities_Newcastle = UsePN (mkPN "Newcastle") ; -Countries_PA_provinces_Colon_cities_Colon = UsePN (mkPN "Colon") ; -Countries_MAL_provinces_Melaka = UsePN (mkPN "Melaka") ; -Countries_USA_provinces_Virginia_cities_Richmond = UsePN (mkPN "Richmond") ; -Countries_D_provinces_Bayern = UsePN (mkPN "Bayern") ; -Countries_SUD_provinces_AalianNil_cities_Malakal = UsePN (mkPN "Malakal") ; -Countries_E_provinces_Andalusia_cities_Huelva = UsePN (mkPN "Huelva") ; -Organizations_ILO = UsePN (mkPN "International Labor Organization") ; -Countries_BR_provinces_SaoPaulo_cities_Itapetininga = UsePN (mkPN "Itapetininga") ; -Rivers_Suchona = UsePN (mkPN "Suchona") ; -Countries_MEX_provinces_Sinaloa_cities_LosMochis = UsePN (mkPN "Los Mochis") ; -Countries_TJ_provinces_Guangdong_cities_Foshan = UsePN (mkPN "Foshan") ; -Countries_D_provinces_RheinlandPfalz_cities_Mainz = UsePN (mkPN "Mainz") ; -Countries_BR_provinces_SaoPaulo_cities_Americana = UsePN (mkPN "Americana") ; -Countries_PA_provinces_Chiriqui = UsePN (mkPN "Chiriqui") ; -Countries_RC_provinces_Chiai = UsePN (mkPN "Chiai") ; -Countries_VN_provinces_Hanoi = UsePN (mkPN "Hanoi") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Beihai = UsePN (mkPN "Beihai") ; -Countries_TJ_cities_Macau = UsePN (mkPN "Macau") ; -Countries_USA_provinces_Florida_cities_Miami = UsePN (mkPN "Miami") ; -Countries_TJ_provinces_Guangdong_cities_Zhanjiang = UsePN (mkPN "Zhanjiang") ; -Countries_RC_provinces_Tainan_cities_Hsinying = UsePN (mkPN "Hsinying") ; -Countries_BR_provinces_SaoPaulo_cities_Limeira = UsePN (mkPN "Limeira") ; -Countries_YV_provinces_Yaracuy_cities_SanFelipe = UsePN (mkPN "San Felipe") ; -Countries_AL_cities_Korce = UsePN (mkPN "Korce") ; -Countries_CO_provinces_Guajira_La_cities_Riohacha = UsePN (mkPN "Riohacha") ; -Countries_IND_provinces_Rajasthan_cities_Jaipur = UsePN (mkPN "Jaipur") ; -Countries_CR_provinces_Guanacaste = UsePN (mkPN "Guanacaste") ; -Countries_N_provinces_Rogaland_cities_Stavanger = UsePN (mkPN "Stavanger") ; -Countries_E_provinces_Madrid = UsePN (mkPN "Madrid") ; -Countries_WAN_cities_Offa = UsePN (mkPN "Offa") ; -Countries_IND_provinces_MadhyaPradesh_cities_Indore = UsePN (mkPN "Indore") ; -Countries_BR_provinces_Goias_cities_Luziania = UsePN (mkPN "Luziania") ; -Countries_USA_provinces_Virginia_cities_Alexandria = UsePN (mkPN "Alexandria") ; -Countries_RA_provinces_BuenosAires_cities_MardelPlata = UsePN (mkPN "Mar del Plata") ; -Countries_CO_provinces_ValledeCauca = UsePN (mkPN "Valle de Cauca") ; -Countries_GB_provinces_WestMidlands_cities_WestBromwich = UsePN (mkPN "West Bromwich") ; -Countries_PL_provinces_Katowickie_cities_Bytom = UsePN (mkPN "Bytom") ; -Countries_SN_provinces_Kaolack = UsePN (mkPN "Kaolack") ; -Countries_USA_provinces_Minnesota_cities_Minneapolis = UsePN (mkPN "Minneapolis") ; -Organizations_ACP = UsePN (mkPN "African, Caribbean, and Pacific Countries") ; -Countries_USA_provinces_California_cities_Fresno = UsePN (mkPN "Fresno") ; -Mountains_GranitePeak = UsePN (mkPN "Granite Peak") ; -Countries_R_provinces_Kamchatskayaoblast_cities_PetropavlovskKamchatsky = UsePN (mkPN "Petropavlovsk Kamchatsky") ; -Countries_A_provinces_UpperAustria_cities_Linz = UsePN (mkPN "Linz") ; -Switzerland = UsePN (mkPN "Switzerland") ; -Countries_USA_provinces_Florida_cities_Jacksonville = UsePN (mkPN "Jacksonville") ; -Countries_IND_provinces_Kerala = UsePN (mkPN "Kerala") ; -Countries_USA_provinces_Florida = UsePN (mkPN "Florida") ; -Countries_ANG_provinces_CuanzaNorte_cities_Ndalatando = UsePN (mkPN "Ndalatando") ; -Countries_NIC_cities_Leon = UsePN (mkPN "Leon") ; -Countries_P_provinces_Portalegre = UsePN (mkPN "Portalegre") ; -Countries_RC_provinces_Taichung = UsePN (mkPN "Taichung") ; -Countries_TR_provinces_Balikesir = UsePN (mkPN "Balikesir") ; -Deserts_Tanami = UsePN (mkPN "Tanami") ; -Countries_P_provinces_Setubal = UsePN (mkPN "Setubal") ; -Countries_TJ_provinces_Shandong_cities_Longkou = UsePN (mkPN "Longkou") ; -Countries_R_provinces_Chelyabinskayaoblast = UsePN (mkPN "Chelyabinskaya oblast") ; -Countries_USA_provinces_California_cities_Norwalk = UsePN (mkPN "Norwalk") ; -Countries_G_cities_Libreville = UsePN (mkPN "Libreville") ; -Countries_B_provinces_Brabant = UsePN (mkPN "Brabant") ; -Countries_CH_provinces_ZH_cities_Winterthur = UsePN (mkPN "Winterthur") ; -Countries_S_provinces_Orebro = UsePN (mkPN "Orebro") ; -Countries_I_provinces_Calabria = UsePN (mkPN "Calabria") ; -Countries_TR_provinces_Kirsehir_cities_Kirsehir = UsePN (mkPN "Kirsehir") ; -Countries_USA_provinces_Michigan_cities_AnnArbor = UsePN (mkPN "Ann Arbor") ; -Islands_Sanday = UsePN (mkPN "Sanday") ; -Mountains_Aconcagua = UsePN (mkPN "Aconcagua") ; -Countries_MYA_provinces_Sagaing = UsePN (mkPN "Sagaing") ; -Countries_NL_provinces_NoordHolland_cities_Haarlem = UsePN (mkPN "Haarlem") ; -Countries_A_provinces_Tyrol_cities_Innsbruck = UsePN (mkPN "Innsbruck") ; -Countries_RI_cities_Jakarta = UsePN (mkPN "Jakarta") ; -Countries_IND_provinces_Bihar_cities_BokaraSteelCity = UsePN (mkPN "Bokara Steel City") ; -Countries_TJ_provinces_Zhejiang_cities_Jiaxing = UsePN (mkPN "Jiaxing") ; -Countries_USA_provinces_California_cities_GardenGrove = UsePN (mkPN "Garden Grove") ; -Countries_THA_provinces_NakhonPhanom = UsePN (mkPN "Nakhon Phanom") ; -Countries_BR_provinces_RiodeJaneiro_cities_BelfortRoxo = UsePN (mkPN "Belfort Roxo") ; -Countries_J_provinces_Osaka = UsePN (mkPN "Osaka") ; -Countries_C_provinces_Granma_cities_Manzanillo = UsePN (mkPN "Manzanillo") ; -Countries_HCA_provinces_Cortes = UsePN (mkPN "Cortes") ; -Countries_SF_provinces_Uusimaa_cities_Espoo = UsePN (mkPN "Espoo") ; -Countries_CO_provinces_Guainia = UsePN (mkPN "Guainia") ; -Countries_CH_provinces_BE = UsePN (mkPN "BE") ; -Countries_R_provinces_Nizhegorodskayaoblast_cities_NizhniyNovgorod = UsePN (mkPN "Nizhniy Novgorod") ; -Countries_D_provinces_NordrheinWestfalen_cities_Paderborn = UsePN (mkPN "Paderborn") ; -Countries_D_provinces_NordrheinWestfalen_cities_Bochum = UsePN (mkPN "Bochum") ; -Countries_TJ_provinces_NeiMonggol_cities_Linhe = UsePN (mkPN "Linhe") ; -Countries_PL_provinces_Opolskie_cities_Opole = UsePN (mkPN "Opole") ; -Islands_Lipari = UsePN (mkPN "Lipari") ; -Countries_BD_cities_Chittagong = UsePN (mkPN "Chittagong") ; -Countries_RA_provinces_Neuquen_cities_Neuquen = UsePN (mkPN "Neuquen") ; -Countries_IRQ_provinces_Dahuk = UsePN (mkPN "Dahuk") ; -Countries_PL_provinces_Bialostockie_cities_Bialystok = UsePN (mkPN "Bialystok") ; -Countries_PE_provinces_LaLibertad_cities_Trujillo = UsePN (mkPN "Trujillo") ; -Countries_D_provinces_Niedersachsen_cities_Oldenburg = UsePN (mkPN "Oldenburg") ; -Countries_UA_provinces_Dnipropetrovska_cities_Dnipropetrovsk = UsePN (mkPN "Dnipropetrovsk") ; -Countries_CH_provinces_AR = UsePN (mkPN "AR") ; -Guinea_Bissau = UsePN (mkPN "Guinea-Bissau") ; -Countries_HCA_provinces_ElParaiso_cities_Yuscaran = UsePN (mkPN "Yuscaran") ; -Organizations_UNFICYP = UsePN (mkPN "United Nations Force in Cyprus") ; -Countries_IND_provinces_DamanandDiu = UsePN (mkPN "Daman and Diu") ; -Islands_Kos = UsePN (mkPN "Kos") ; -Countries_TJ_provinces_Anhui_cities_Wuhu = UsePN (mkPN "Wuhu") ; -Countries_R_provinces_Kaluzhskayaoblast_cities_Obninsk = UsePN (mkPN "Obninsk") ; -Countries_NL_provinces_Drenthe_cities_Assen = UsePN (mkPN "Assen") ; -Mountains_BlueMountainPeak = UsePN (mkPN "Blue Mountain Peak") ; -Countries_R_provinces_Lipetskayaoblast = UsePN (mkPN "Lipetskaya oblast") ; -Countries_IR_provinces_Yazd_cities_Yazd = UsePN (mkPN "Yazd") ; -Countries_IR_provinces_Kordestan_cities_Sanandaj = UsePN (mkPN "Sanandaj") ; -Countries_H_provinces_Veszprem = UsePN (mkPN "Veszprem") ; -Countries_TR_provinces_Nigde_cities_Nigde = UsePN (mkPN "Nigde") ; -Nepal = UsePN (mkPN "Nepal") ; -Countries_cid_cia_Guernsey = UsePN (mkPN "Guernsey") ; -Countries_PA_provinces_LosSantos_cities_LasTablas = UsePN (mkPN "Las Tablas") ; -Countries_R_provinces_Kurganskayaoblast_cities_Kurgan = UsePN (mkPN "Kurgan") ; -Countries_PE_provinces_Arequipa_cities_Arequipa = UsePN (mkPN "Arequipa") ; -Countries_J_provinces_Tochigi_cities_Utsonomiya = UsePN (mkPN "Utsonomiya") ; -Countries_BR_provinces_Parana_cities_Apucarana = UsePN (mkPN "Apucarana") ; -Countries_BR_provinces_RiodeJaneiro_cities_Nilopolis = UsePN (mkPN "Nilopolis") ; -Countries_GB_provinces_SouthYorkshire_cities_Rotherham = UsePN (mkPN "Rotherham") ; -Countries_PL_provinces_Siedleckie = UsePN (mkPN "Siedleckie") ; -Countries_F_provinces_RhoneAlpes = UsePN (mkPN "Rhone Alpes") ; -Countries_PK_cities_Gujrat = UsePN (mkPN "Gujrat") ; -Countries_RI_cities_PangkalPinang = UsePN (mkPN "Pangkal Pinang") ; -Countries_USA_provinces_Delaware_cities_Dover = UsePN (mkPN "Dover") ; -Countries_SF_provinces_Pohjols_Karjala = UsePN (mkPN "Pohjols-Karjala") ; -Countries_USA_provinces_Arizona = UsePN (mkPN "Arizona") ; -Countries_MEX_provinces_QuintanaRoo_cities_Cancun = UsePN (mkPN "Cancun") ; -Countries_RL_cities_Beirut = UsePN (mkPN "Beirut") ; -Countries_ET_provinces_ElBuhayra = UsePN (mkPN "El Buhayra") ; -Rivers_Kolyma = UsePN (mkPN "Kolyma") ; -Lakes_CaspianSea = UsePN (mkPN "Caspian Sea") ; -Lakes_LakeVictoria = UsePN (mkPN "Lake Victoria") ; -Countries_MEX_provinces_Durango = UsePN (mkPN "Durango") ; -Countries_J_provinces_Miyagi = UsePN (mkPN "Miyagi") ; -Countries_AUS_provinces_NewSouthWales = UsePN (mkPN "New South Wales") ; -Seas_YellowSea = UsePN (mkPN "Yellow Sea") ; -TrinidadAndTobago = UsePN (mkPN "Trinidad and Tobago") ; -Countries_GB_provinces_Durham_cities_Darlington = UsePN (mkPN "Darlington") ; -Countries_UZB_provinces_Toshkent_cities_Olmaliq = UsePN (mkPN "Olmaliq") ; -Countries_RA_provinces_Catamarca = UsePN (mkPN "Catamarca") ; -Countries_RWA_cities_Kigali = UsePN (mkPN "Kigali") ; -Countries_S_provinces_Vasternorrland = UsePN (mkPN "Vasternorrland") ; -Countries_YV_provinces_Anzoategui_cities_Barcelona = UsePN (mkPN "Barcelona") ; -Countries_CDN_provinces_YukonTerritory_cities_Whitehorse = UsePN (mkPN "Whitehorse") ; -Countries_EAK_provinces_RiftValley_cities_Eldoret = UsePN (mkPN "Eldoret") ; -Countries_USA_provinces_Texas_cities_SanAntonio = UsePN (mkPN "San Antonio") ; -Countries_CO_provinces_SantanderdelSur_cities_Floridablanca = UsePN (mkPN "Floridablanca") ; -Countries_EAT_provinces_Iringa_cities_Iringa = UsePN (mkPN "Iringa") ; -Deserts_Fesan = UsePN (mkPN "Fesan") ; -Countries_H_provinces_Bekes_cities_Bekescaba = UsePN (mkPN "Bekescaba") ; -Countries_PE_provinces_Tacna_cities_Tacna = UsePN (mkPN "Tacna") ; -Countries_MAL_provinces_Sarawak = UsePN (mkPN "Sarawak") ; -Countries_D_provinces_Hamburg_cities_Hamburg = UsePN (mkPN "Hamburg") ; -Countries_RA_provinces_LaPampa = UsePN (mkPN "La Pampa") ; -Countries_GB_provinces_Anglesey = UsePN (mkPN "Anglesey") ; -Countries_RM_provinces_Fianarantsoa = UsePN (mkPN "Fianarantsoa") ; -Countries_SN_provinces_Thies = UsePN (mkPN "Thies") ; -Countries_PL_provinces_Katowickie_cities_Tychy = UsePN (mkPN "Tychy") ; -Countries_EAT_provinces_Pwani = UsePN (mkPN "Pwani") ; -Lakes_LakeOkeechobee = UsePN (mkPN "Lake Okeechobee") ; -Slovenia = UsePN (mkPN "Slovenia") ; -China = UsePN (mkPN "China") ; -Countries_NOK_cities_Anju = UsePN (mkPN "Anju") ; -Countries_RA_provinces_Misiones = UsePN (mkPN "Misiones") ; -Countries_THA_provinces_Nan = UsePN (mkPN "Nan") ; -Countries_YV_provinces_Monagas = UsePN (mkPN "Monagas") ; -Countries_MEX_provinces_Zacatecas_cities_Zacatecas = UsePN (mkPN "Zacatecas") ; -Countries_PL_provinces_Ostroleckie = UsePN (mkPN "Ostroleckie") ; -Organizations_WCL = UsePN (mkPN "World Confederation of Labor") ; -Countries_RI_cities_Surakarta = UsePN (mkPN "Surakarta") ; -Countries_AUS_provinces_CocosIslands_cities_BantamVillage = UsePN (mkPN "Bantam Village") ; -Countries_PK_cities_Nawabshah = UsePN (mkPN "Nawabshah") ; -Countries_cid_cia_Jersey = UsePN (mkPN "Jersey") ; -Countries_E_provinces_Madrid_cities_Fuenlabrada = UsePN (mkPN "Fuenlabrada") ; -Countries_TJ_provinces_Guangdong_cities_Zhaoqing = UsePN (mkPN "Zhaoqing") ; -Countries_GB_provinces_Staffordshire_cities_NewcastleunderLyme = UsePN (mkPN "Newcastle under Lyme") ; -Lakes_LakeKariba = UsePN (mkPN "Lake Kariba") ; -Countries_IND_provinces_Manipur_cities_Imphal = UsePN (mkPN "Imphal") ; -Countries_IRQ_provinces_Baghdad_cities_Baghdad = UsePN (mkPN "Baghdad") ; -Countries_R_provinces_Rep_ofTatarstan_cities_Almetyevsk = UsePN (mkPN "Almetyevsk") ; -Countries_A_provinces_Carinthia = UsePN (mkPN "Carinthia") ; -Countries_PL_provinces_Bialostockie = UsePN (mkPN "Bialostockie") ; -Countries_F_provinces_ChampagneArdenne = UsePN (mkPN "Champagne Ardenne") ; -Countries_BR_provinces_RioGrandedoSul_cities_PortoAlegre = UsePN (mkPN "Porto Alegre") ; -Countries_USA_provinces_Michigan_cities_Flint = UsePN (mkPN "Flint") ; -Countries_BR_provinces_SaoPaulo_cities_Carapicuiba = UsePN (mkPN "Carapicuiba") ; -Countries_TJ_provinces_Jiangsu_cities_Liyang = UsePN (mkPN "Liyang") ; -Countries_P_provinces_CasteloBranco = UsePN (mkPN "Castelo Branco") ; -Countries_R_provinces_Rep_ofKalmykiya = UsePN (mkPN "Rep. of Kalmykiya") ; -Countries_RO_provinces_Vaslui_cities_Vaslui = UsePN (mkPN "Vaslui") ; -Countries_SF_provinces_Kuopio = UsePN (mkPN "Kuopio") ; -Mountains_Feldberg = UsePN (mkPN "Feldberg") ; -Countries_THA_provinces_BangkokMetropolis = UsePN (mkPN "Bangkok Metropolis") ; -Islands_Jamaica = UsePN (mkPN "Jamaica") ; -Countries_VN_provinces_VinhLong = UsePN (mkPN "Vinh Long") ; -Countries_R_provinces_Volgogradskayaoblast_cities_Volzhsky = UsePN (mkPN "Volzhsky") ; -Countries_J_provinces_Iwate_cities_Morioka = UsePN (mkPN "Morioka") ; -Countries_GB_provinces_Kent_cities_Maidstone = UsePN (mkPN "Maidstone") ; -Organizations_CIS = UsePN (mkPN "Commonwealth of Independent States") ; -Countries_PL_provinces_Zielonogorskie_cities_ZielonaGora = UsePN (mkPN "Zielona Gora") ; -Countries_RT_cities_Lome = UsePN (mkPN "Lome") ; -Countries_BR_provinces_SaoPaulo_cities_Taubate = UsePN (mkPN "Taubate") ; -Countries_E_provinces_CastileandLeon_cities_Leon = UsePN (mkPN "Leon") ; -Islands_SaintKitts = UsePN (mkPN "Saint Kitts") ; -Countries_RSA_cities_Lekoa = UsePN (mkPN "Lekoa") ; -Countries_VN_provinces_QuangNamDaNang = UsePN (mkPN "Quang Nam Da Nang") ; -Countries_MOC_provinces_Sofala = UsePN (mkPN "Sofala") ; -Countries_R_provinces_Belgorodskayaoblast_cities_StaryOskol = UsePN (mkPN "Stary Oskol") ; -Islands_Panarea = UsePN (mkPN "Panarea") ; -Countries_BR_cities_Contagem = UsePN (mkPN "Contagem") ; -Countries_TJ_provinces_GuangxiZhuangzu_cities_Wuzhou = UsePN (mkPN "Wuzhou") ; -Slovakia = UsePN (mkPN "Slovakia") ; -Organizations_AFESD = UsePN (mkPN "Arab Fund for Economic and Social Development") ; -Countries_PL_provinces_Czestochowskie = UsePN (mkPN "Czestochowskie") ; -Rivers_Save = UsePN (mkPN "Save") ; -Countries_UA_provinces_Donetska_cities_Mariupol = UsePN (mkPN "Mariupol") ; -Countries_IND_provinces_Tripura_cities_Agartala = UsePN (mkPN "Agartala") ; -Countries_CR_provinces_Heredia_cities_Heredia = UsePN (mkPN "Heredia") ; -Countries_WAN_cities_DebaHabe = UsePN (mkPN "Deba Habe") ; -Countries_USA_provinces_Arizona_cities_Tempe = UsePN (mkPN "Tempe") ; -Rivers_Uelle = UsePN (mkPN "Uelle") ; -Countries_BR_provinces_SaoPaulo_cities_SaoCarlos = UsePN (mkPN "Sao Carlos") ; -Countries_F_provinces_Bretagne_cities_Brest = UsePN (mkPN "Brest") ; -Rivers_Tana = UsePN (mkPN "Tana") ; -Countries_IL_provinces_North_cities_Nazareth = UsePN (mkPN "Nazareth") ; -Countries_Z_provinces_Northwestern = UsePN (mkPN "Northwestern") ; -Countries_TR_provinces_Edirne_cities_Edirne = UsePN (mkPN "Edirne") ; -Countries_Z_provinces_Lusaka_cities_Lusaka = UsePN (mkPN "Lusaka") ; -Countries_ZRE_provinces_KasaiOccidental_cities_Tshikapa = UsePN (mkPN "Tshikapa") ; -Countries_VN_provinces_HaGiang = UsePN (mkPN "Ha Giang") ; -Countries_IRQ_provinces_AlQadisiyah_cities_Diwaniyah = UsePN (mkPN "Diwaniyah") ; -Countries_P_provinces_Lisbon_cities_Almada = UsePN (mkPN "Almada") ; -Countries_R_provinces_KarachayevoCherkesskRep__cities_Cherkessk = UsePN (mkPN "Cherkessk") ; -Countries_TR_cities_Hatay = UsePN (mkPN "Hatay") ; -Countries_IND_provinces_WestBengal_cities_Haora = UsePN (mkPN "Haora") ; -Countries_BR_provinces_Pernambuco_cities_JaboataodosGuararapes = UsePN (mkPN "Jaboatao dos Guararapes") ; -Countries_IND_provinces_UttarPradesh_cities_Bareilly = UsePN (mkPN "Bareilly") ; -Countries_RSA_cities_Alexandra = UsePN (mkPN "Alexandra") ; -Countries_R_provinces_Astrakhanskayaoblast = UsePN (mkPN "Astrakhanskaya oblast") ; -Rivers_Bahrel_Gasal = UsePN (mkPN "Bahr el-Gasal") ; -Countries_TJ_provinces_Hunan_cities_Hengyang = UsePN (mkPN "Hengyang") ; -Countries_GB_provinces_Buckinghamshire_cities_Wycombe = UsePN (mkPN "Wycombe") ; -Uganda = UsePN (mkPN "Uganda") ; -Countries_GR_provinces_Thessalia = UsePN (mkPN "Thessalia") ; -Countries_R_provinces_Nizhegorodskayaoblast_cities_Arzamas = UsePN (mkPN "Arzamas") ; -Countries_USA_provinces_Kansas_cities_KansasCity = UsePN (mkPN "Kansas City") ; -Countries_R_provinces_Penzenskayaoblast_cities_Penza = UsePN (mkPN "Penza") ; -Countries_IRQ_provinces_AdTamim = UsePN (mkPN "Ad Tamim") ; -Countries_YV_provinces_Merida = UsePN (mkPN "Merida") ; -Countries_MEX_provinces_Aguascalientes = UsePN (mkPN "Aguascalientes") ; -Seas_AtlanticOcean = UsePN (mkPN "Atlantic Ocean") ; -Countries_EW_cities_Tallinn = UsePN (mkPN "Tallinn") ; -Countries_WS_cities_Apia = UsePN (mkPN "Apia") ; -Lakes_LagodeChapala = UsePN (mkPN "Lago de Chapala") ; -Countries_PE_provinces_Ucayali = UsePN (mkPN "Ucayali") ; -Countries_IND_provinces_DadraandNagarHaveli_cities_Silvassa = UsePN (mkPN "Silvassa") ; -Countries_GB_provinces_Leicestershire = UsePN (mkPN "Leicestershire") ; -Countries_RC_provinces_Hualien_cities_Hualien = UsePN (mkPN "Hualien") ; -Organizations_UNCRO = UsePN (mkPN "United Nations Confidence Restoration Operation in Croatia") ; -Countries_R_provinces_Moskva = UsePN (mkPN "Moskva") ; -Countries_TJ_provinces_Heilongjiang_cities_Zhaodong = UsePN (mkPN "Zhaodong") ; -Countries_RO_provinces_Ialomita_cities_Slobozia = UsePN (mkPN "Slobozia") ; -Countries_PK_cities_Lyallpur = UsePN (mkPN "Lyallpur") ; -Countries_D_provinces_Brandenburg = UsePN (mkPN "Brandenburg") ; -Countries_RI_cities_Madiun = UsePN (mkPN "Madiun") ; -Countries_IRQ_provinces_Dahuk_cities_Dahuk = UsePN (mkPN "Dahuk") ; -Countries_EAT_provinces_Morogoro_cities_Morogoro = UsePN (mkPN "Morogoro") ; -Countries_BR_provinces_RiodeJaneiro_cities_VoltaRedonda = UsePN (mkPN "Volta Redonda") ; -Organizations_UNHCR = UsePN (mkPN "United Nations Office of the High Commissioner for Refugees") ; -Rivers_Hwangho = UsePN (mkPN "Hwangho") ; -Countries_BR_provinces_SaoPaulo_cities_SantoAndre = UsePN (mkPN "Santo Andre") ; -Countries_RP_cities_Pasay = UsePN (mkPN "Pasay") ; -Countries_ROK_cities_Cheju = UsePN (mkPN "Cheju") ; -Countries_LAR_cities_Tripoli = UsePN (mkPN "Tripoli") ; -Tanzania = UsePN (mkPN "Tanzania") ; -Lakes_BarragedeMbakaou = UsePN (mkPN "Barrage de Mbakaou") ; -Countries_TJ_provinces_Hubei_cities_Yichang = UsePN (mkPN "Yichang") ; -Countries_Z_provinces_Copperbelt_cities_Ndola = UsePN (mkPN "Ndola") ; -Countries_USA_provinces_Hawaii_cities_Hilo = UsePN (mkPN "Hilo") ; -Rivers_Tshuapa = UsePN (mkPN "Tshuapa") ; -Countries_RA_provinces_Misiones_cities_Posadas = UsePN (mkPN "Posadas") ; -Countries_BR_provinces_MinasGerais_cities_Uberaba = UsePN (mkPN "Uberaba") ; -Countries_USA_provinces_Illinois_cities_Chicago = UsePN (mkPN "Chicago") ; -Countries_RO_provinces_Iasi = UsePN (mkPN "Iasi") ; -Countries_CDN_provinces_NewBrunswick_cities_Fredericton = UsePN (mkPN "Fredericton") ; -Countries_TJ_provinces_Henan_cities_Zhoukou = UsePN (mkPN "Zhoukou") ; -Countries_ET_provinces_Sharqiya = UsePN (mkPN "Sharqiya") ; -Countries_R_provinces_Vladimirskayaoblast = UsePN (mkPN "Vladimirskaya oblast") ; -Countries_NZ_cities_Wellington = UsePN (mkPN "Wellington") ; -Countries_IR_provinces_Zanjan_cities_Zanjan = UsePN (mkPN "Zanjan") ; -Countries_A_provinces_Vienna_cities_Vienna = UsePN (mkPN "Vienna") ; -Lakes_LakeEtoscha = UsePN (mkPN "Lake Etoscha") ; -Countries_ANG_provinces_CuanzaNorte = UsePN (mkPN "Cuanza Norte") ; -Countries_GB_provinces_Hampshire_cities_Eastleigh = UsePN (mkPN "Eastleigh") ; -Countries_GB_provinces_Merseyside_cities_Liverpool = UsePN (mkPN "Liverpool") ; -Countries_TJ_provinces_Shandong_cities_Heze = UsePN (mkPN "Heze") ; -Countries_WAN_cities_Oshogbo = UsePN (mkPN "Oshogbo") ; -Countries_TJ_cities_HongKong = UsePN (mkPN "Hong Kong") ; -Countries_R_provinces_Rostovskayaoblast_cities_Volgodonsk = UsePN (mkPN "Volgodonsk") ; -Countries_F_provinces_Lorraine = UsePN (mkPN "Lorraine") ; -Countries_PK_cities_Hyderabad = UsePN (mkPN "Hyderabad") ; -Countries_USA_provinces_California_cities_MorenoValley = UsePN (mkPN "Moreno Valley") ; -Countries_ETH_cities_Gonder = UsePN (mkPN "Gonder") ; -Mountains_Galdhoeppig = UsePN (mkPN "Galdhoeppig") ; -Countries_GB_provinces_SouthYorkshire_cities_Doncaster = UsePN (mkPN "Doncaster") ; -Countries_USA_provinces_Ohio_cities_Toledo = UsePN (mkPN "Toledo") ; -Ethiopia = UsePN (mkPN "Ethiopia") ; -Organizations_ICAO = UsePN (mkPN "International Civil Aviation Organization") ; -Countries_I_provinces_Umbria_cities_Perugia = UsePN (mkPN "Perugia") ; -Organizations_MINURSO = UsePN (mkPN "United Nations Mission for the Referendum in Western Sahara") ; -Lakes_OzeroPskovskoje = UsePN (mkPN "Ozero Pskovskoje") ; -Countries_H_provinces_HajduBihar = UsePN (mkPN "Hajdu Bihar") ; -Countries_BR_provinces_SantaCatarina = UsePN (mkPN "Santa Catarina") ; -Countries_VN_provinces_KienGiang = UsePN (mkPN "Kien Giang") ; -Countries_R_provinces_Permskayaoblast_cities_Berezniki = UsePN (mkPN "Berezniki") ; -Countries_USA_provinces_Nevada = UsePN (mkPN "Nevada") ; -Countries_R_provinces_Yaroslavskayaoblast_cities_Rybinsk = UsePN (mkPN "Rybinsk") ; -Countries_RA_provinces_SantiagodeEstero = UsePN (mkPN "Santiago de Estero") ; -Countries_R_provinces_Sverdlovskayaoblast_cities_Yekaterinburg = UsePN (mkPN "Yekaterinburg") ; -Countries_IND_provinces_MadhyaPradesh = UsePN (mkPN "Madhya Pradesh") ; -BosniaAndHerzegovina = UsePN (mkPN "Bosnia and Herzegovina") ; -Countries_ES_provinces_SantaAna_cities_SantaAna = UsePN (mkPN "Santa Ana") ; -Countries_PE_provinces_Cajamarca_cities_Cajamarca = UsePN (mkPN "Cajamarca") ; -Countries_cid_cia_South_Georgia_and_the_South_Sandwich_Islands = UsePN (mkPN "South Georgia and the South Sandwich Islands") ; -Countries_MEX_provinces_Tlaxcala_cities_Tlaxcala = UsePN (mkPN "Tlaxcala") ; -Countries_BR_provinces_SaoPaulo_cities_Marilia = UsePN (mkPN "Marilia") ; -Countries_RC_provinces_Taipei_cities_Panchiao = UsePN (mkPN "Panchiao") ; -Countries_USA_provinces_WestVirginia = UsePN (mkPN "West Virginia") ; -Countries_USA_provinces_California_cities_ElMonte = UsePN (mkPN "El Monte") ; -Countries_THA_provinces_Krabi = UsePN (mkPN "Krabi") ; -Countries_HCA_provinces_Atlantida_cities_Tela = UsePN (mkPN "Tela") ; -Countries_UZB_provinces_Khorazm = UsePN (mkPN "Khorazm") ; -Countries_TJ_provinces_Sichuan_cities_Daxian = UsePN (mkPN "Daxian") ; -Countries_UA_provinces_Vinnytska_cities_Vinnytsya = UsePN (mkPN "Vinnytsya") ; -Countries_P_provinces_Lisbon_cities_Lisbon = UsePN (mkPN "Lisbon") ; -Countries_ANG_provinces_Moxico_cities_Luena = UsePN (mkPN "Luena") ; -Countries_RC_provinces_Penghu = UsePN (mkPN "Penghu") ; -Lakes_LakeKalla = UsePN (mkPN "Lake Kalla") ; -Countries_THA_provinces_Mukdahan = UsePN (mkPN "Mukdahan") ; -Guatemala = UsePN (mkPN "Guatemala") ; -Countries_MEX_provinces_Chiapas_cities_Tonala = UsePN (mkPN "Tonala") ; -Rivers_RioGrande = UsePN (mkPN "Rio Grande") ; -Islands_Mindoro = UsePN (mkPN "Mindoro") ; -Countries_TJ_provinces_Sichuan_cities_Mianyang = UsePN (mkPN "Mianyang") ; -Deserts_Tenere = UsePN (mkPN "Tenere") ; -Countries_TJ_provinces_Hebei_cities_Renqiu = UsePN (mkPN "Renqiu") ; -Countries_THA_provinces_Loei = UsePN (mkPN "Loei") ; -Tunisia = UsePN (mkPN "Tunisia") ; -Countries_J_provinces_Iwate = UsePN (mkPN "Iwate") ; -Countries_ZRE_provinces_Kivu = UsePN (mkPN "Kivu") ; -Countries_RP_cities_Zamboanga = UsePN (mkPN "Zamboanga") ; -Countries_BR_provinces_Paraiba_cities_SantaRita = UsePN (mkPN "Santa Rita") ; -Countries_ZRE_provinces_Kivu_cities_Butembo = UsePN (mkPN "Butembo") ; -Countries_ES_provinces_Ahuachapan = UsePN (mkPN "Ahuachapan") ; -Countries_ANG_provinces_LundaNorte = UsePN (mkPN "Lunda Norte") ; -Countries_IR_provinces_Hamadan = UsePN (mkPN "Hamadan") ; -Countries_UA_provinces_Chernivetska_cities_Chernivtsi = UsePN (mkPN "Chernivtsi") ; -Countries_PL_provinces_Nowosadeckie_cities_NowySacz = UsePN (mkPN "Nowy Sacz") ; -Countries_OM_cities_Muscat = UsePN (mkPN "Muscat") ; -Countries_KAZ_provinces_Pavlodar_cities_Pavlodar = UsePN (mkPN "Pavlodar") ; -Countries_RO_provinces_Vrancea = UsePN (mkPN "Vrancea") ; -Countries_BR_provinces_SaoPaulo_cities_TaboaodaSerra = UsePN (mkPN "Taboao da Serra") ; -Countries_MAL_provinces_Sabah_cities_Sandakan = UsePN (mkPN "Sandakan") ; -Countries_R_provinces_Novgorodskayaoblast_cities_Novgorod = UsePN (mkPN "Novgorod") ; -Countries_H_provinces_Szolnok_cities_Szolnok = UsePN (mkPN "Szolnok") ; -Islands_Salina = UsePN (mkPN "Salina") ; -Countries_F_provinces_ProvenceCotedAzur = UsePN (mkPN "Provence Cote dAzur") ; -Countries_CH_provinces_SZ = UsePN (mkPN "SZ") ; -Countries_BR_provinces_EspiritoSanto_cities_Cariacica = UsePN (mkPN "Cariacica") ; -Countries_TJ_provinces_Hunan_cities_Lengshuijiang = UsePN (mkPN "Lengshuijiang") ; -Lakes_LakeVolta = UsePN (mkPN "Lake Volta") ; -Countries_ET_provinces_ElBuhayra_cities_KafrelDauwar = UsePN (mkPN "Kafr el Dauwar") ; -Countries_TJ_provinces_Jiangxi_cities_Yichun = UsePN (mkPN "Yichun") ; -Countries_RSA_provinces_NorthernCape_cities_Kimberley = UsePN (mkPN "Kimberley") ; -Countries_TJ_provinces_Jilin_cities_Tonghua = UsePN (mkPN "Tonghua") ; -Countries_BR_provinces_RioGrandedoNorte_cities_Natal = UsePN (mkPN "Natal") ; -Countries_TJ_provinces_Liaoning_cities_Beipiao = UsePN (mkPN "Beipiao") ; -Countries_TJ_provinces_Jiangsu_cities_Xinghua = UsePN (mkPN "Xinghua") ; -Countries_H_provinces_GyorSopron = UsePN (mkPN "Gyor Sopron") ; -Countries_R_provinces_Stavropolskykray = UsePN (mkPN "Stavropolsky kray") ; -Countries_ES_provinces_Chalatenango = UsePN (mkPN "Chalatenango") ; -Countries_IR_provinces_AzarbayianeGharbt = UsePN (mkPN "Azarbayian e Gharbt") ; -Countries_HCA_provinces_ElParaiso_cities_Danli = UsePN (mkPN "Danli") ; -Countries_IR_provinces_AzarbayianeSharqi = UsePN (mkPN "Azarbayian e Sharqi") ; -Countries_BR_provinces_MatoGrosso_cities_VarzeaGrande = UsePN (mkPN "Varzea Grande") ; -Countries_ZRE_provinces_KasaiOriental_cities_MbujiMayi = UsePN (mkPN "Mbuji Mayi") ; -Countries_MEX_provinces_Nayarit_cities_Tepic = UsePN (mkPN "Tepic") ; -Organizations_ABEDA = UsePN (mkPN "Arab Bank for Economic Development in Africa") ; -Countries_PL_provinces_Chelmskie = UsePN (mkPN "Chelmskie") ; -Countries_J_provinces_Tottori_cities_Tottori = UsePN (mkPN "Tottori") ; -Countries_WAN_cities_Aarri = UsePN (mkPN "Aarri") ; -Countries_GR_cities_Patrai = UsePN (mkPN "Patrai") ; -Countries_TR_provinces_Corum = UsePN (mkPN "Corum") ; -Deserts_HamadaduDraa = UsePN (mkPN "Hamada du Draa") ; -Countries_D_provinces_BadenWurttemberg_cities_Karlsruhe = UsePN (mkPN "Karlsruhe") ; -Countries_TM_provinces_Leban = UsePN (mkPN "Leban") ; -Countries_CH_provinces_GE = UsePN (mkPN "GE") ; -Countries_cid_cia_Gaza_Strip = UsePN (mkPN "Gaza Strip") ; -Countries_TJ_provinces_Jiangsu_cities_Dongtai = UsePN (mkPN "Dongtai") ; -Countries_NL_provinces_ZuidHolland_cities_Leiden = UsePN (mkPN "Leiden") ; -Countries_ET_provinces_SinaalJanubiyah_cities_ElTur = UsePN (mkPN "El Tur") ; -Countries_TJ_provinces_Heilongjiang_cities_Anda = UsePN (mkPN "Anda") ; -Countries_R_provinces_Rep_ofTyva = UsePN (mkPN "Rep. of Tyva") ; -Countries_THA_provinces_SingBuri = UsePN (mkPN "Sing Buri") ; -Countries_RI_cities_Sukabumi = UsePN (mkPN "Sukabumi") ; -Countries_TJ_provinces_Shandong = UsePN (mkPN "Shandong") ; -Countries_C_provinces_SanctiSpiritus = UsePN (mkPN "Sancti Spiritus") ; -Countries_SN_provinces_Kaolack_cities_Kaolack = UsePN (mkPN "Kaolack") ; -Countries_TJ_provinces_Jiangxi_cities_Fuzhou = UsePN (mkPN "Fuzhou") ; -Countries_USA_provinces_Virginia_cities_Arlington = UsePN (mkPN "Arlington") ; -Countries_IL_provinces_South = UsePN (mkPN "South") ; -Countries_cid_cia_Netherlands_Antilles_cities_Willemstad = UsePN (mkPN "Willemstad") ; -Countries_USA_provinces_Wisconsin_cities_Milwaukee = UsePN (mkPN "Milwaukee") ; -Deserts_Kalahari = UsePN (mkPN "Kalahari") ; -Lakes_LakeOri = UsePN (mkPN "Lake Ori") ; -Countries_BR_provinces_SaoPaulo_cities_Jundiai = UsePN (mkPN "Jundiai") ; -Countries_EAT_provinces_Lindi = UsePN (mkPN "Lindi") ; -Countries_J_provinces_Chiba_cities_Chiba = UsePN (mkPN "Chiba") ; -Countries_MYA_provinces_Yangon_cities_Rangoon = UsePN (mkPN "Rangoon") ; -Countries_RO_provinces_Braila_cities_Braila = UsePN (mkPN "Braila") ; -Islands_Lolland = UsePN (mkPN "Lolland") ; -Albania = UsePN (mkPN "Albania") ; -Countries_USA_provinces_NewMexico_cities_Albuquerque = UsePN (mkPN "Albuquerque") ; -Countries_HCA_provinces_FranciscoMorazan_cities_Tegucigalpa = UsePN (mkPN "Tegucigalpa") ; -Countries_BR_provinces_RiodeJaneiro_cities_NovaFriburgo = UsePN (mkPN "Nova Friburgo") ; -Countries_IRQ_provinces_SalahadDin = UsePN (mkPN "Salah ad Din") ; -Countries_TJ_provinces_Shandong_cities_Laiyang = UsePN (mkPN "Laiyang") ; -Countries_TJ_provinces_Jiangsu_cities_Changshu = UsePN (mkPN "Changshu") ; -Mozambique = UsePN (mkPN "Mozambique") ; -Countries_UZB_provinces_Farghona = UsePN (mkPN "Farghona") ; -Countries_R_provinces_Samarskayaoblast_cities_Novokuybyshevsk = UsePN (mkPN "Novokuybyshevsk") ; -Countries_PE_provinces_Cuzco = UsePN (mkPN "Cuzco") ; -Countries_R_provinces_Rep_ofSakha = UsePN (mkPN "Rep. of Sakha") ; -Countries_GB_provinces_Kent_cities_Sevenoaks = UsePN (mkPN "Sevenoaks") ; -Countries_RA_provinces_Chubut_cities_ComodoroRivadavia = UsePN (mkPN "Comodoro Rivadavia") ; -Countries_IR_provinces_Yazd = UsePN (mkPN "Yazd") ; -Countries_BR_provinces_SantaCatarina_cities_Joinvile = UsePN (mkPN "Joinvile") ; -Countries_DZ_cities_Setif = UsePN (mkPN "Setif") ; -Countries_ZRE_provinces_Kivu_cities_Bukavu = UsePN (mkPN "Bukavu") ; -Countries_TJ_provinces_Shanxi_cities_Linfen = UsePN (mkPN "Linfen") ; -Countries_CAM_provinces_Centre_cities_Yaounde = UsePN (mkPN "Yaounde") ; -Countries_UA_provinces_Ternopilska = UsePN (mkPN "Ternopilska") ; -Countries_SUD_provinces_Darfur = UsePN (mkPN "Darfur") ; -Countries_WAN_cities_Ikare = UsePN (mkPN "Ikare") ; -Countries_TR_provinces_Nevsehir = UsePN (mkPN "Nevsehir") ; -Organizations_G_8 = UsePN (mkPN "Group of 8") ; -Countries_THA_provinces_Yasothon = UsePN (mkPN "Yasothon") ; -Countries_THA_provinces_Nonthaburi_cities_Nonthaburi = UsePN (mkPN "Nonthaburi") ; -Countries_R_provinces_Arkhangelskayaoblast = UsePN (mkPN "Arkhangelskaya oblast") ; -Countries_ET_provinces_ElIskandariya_munic_cities_ElIskandariya = UsePN (mkPN "El Iskandariya") ; -Countries_PA_provinces_Panama = UsePN (mkPN "Panama") ; -Lakes_LakeSaima = UsePN (mkPN "Lake Saima") ; -Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_PetalingJaya = UsePN (mkPN "Petaling Jaya") ; -Countries_BR_provinces_SaoPaulo_cities_Osasco = UsePN (mkPN "Osasco") ; -Countries_RB_cities_Gaborone = UsePN (mkPN "Gaborone") ; -Countries_F_provinces_PoitouCharentes_cities_Poitiers = UsePN (mkPN "Poitiers") ; -Countries_MEX_provinces_SanLuisPotosi = UsePN (mkPN "San Luis Potosi") ; -Countries_UA_provinces_Dnipropetrovska_cities_Dniprodzerzhynsk = UsePN (mkPN "Dniprodzerzhynsk") ; -Countries_IR_provinces_Bushehr = UsePN (mkPN "Bushehr") ; -Countries_TJ_provinces_Liaoning_cities_Anshan = UsePN (mkPN "Anshan") ; -Countries_R_provinces_Kemerovskayaoblast_cities_Kemerovo = UsePN (mkPN "Kemerovo") ; -Countries_THA_provinces_NakhonPathom = UsePN (mkPN "Nakhon Pathom") ; -Countries_PA_provinces_Darien_cities_LaPalma = UsePN (mkPN "La Palma") ; -Countries_RSA_provinces_NorthernProvince = UsePN (mkPN "Northern Province") ; -Countries_D_provinces_NordrheinWestfalen_cities_Witten = UsePN (mkPN "Witten") ; -Countries_E_provinces_CastileandLeon_cities_Salamanca = UsePN (mkPN "Salamanca") ; -Countries_BR_provinces_Goias_cities_Anapolis = UsePN (mkPN "Anapolis") ; -Countries_KAZ_provinces_Zhambyl = UsePN (mkPN "Zhambyl") ; -Mountains_NevadodeColima = UsePN (mkPN "Nevado de Colima") ; -Countries_R_provinces_Kurskayaoblast_cities_Kursk = UsePN (mkPN "Kursk") ; -Countries_USA_provinces_Louisiana_cities_Shreveport = UsePN (mkPN "Shreveport") ; -Countries_USA_provinces_Illinois_cities_Springfield = UsePN (mkPN "Springfield") ; -Countries_VN_provinces_NorthMountainandMidlands = UsePN (mkPN "North Mountain and Midlands") ; -Countries_BOL_cities_Cochabamba = UsePN (mkPN "Cochabamba") ; -Rivers_Jug = UsePN (mkPN "Jug") ; -Countries_MOC_provinces_Manica = UsePN (mkPN "Manica") ; -Countries_R_provinces_Nizhegorodskayaoblast_cities_Dzerzhinsk = UsePN (mkPN "Dzerzhinsk") ; -Rivers_Amur = UsePN (mkPN "Amur") ; -Countries_P_provinces_Lisbon_cities_Barreiro = UsePN (mkPN "Barreiro") ; -Countries_USA_provinces_California_cities_SanFrancisco = UsePN (mkPN "San Francisco") ; -Countries_S_provinces_Varmland = UsePN (mkPN "Varmland") ; -Countries_NOK_cities_Sinpo = UsePN (mkPN "Sinpo") ; -Countries_E_provinces_Estremadura_cities_Merida = UsePN (mkPN "Merida") ; -Countries_MEX_provinces_Sinaloa_cities_Culiacan = UsePN (mkPN "Culiacan") ; -Countries_SN_provinces_Diourbel_cities_Diourbel = UsePN (mkPN "Diourbel") ; -Countries_EAK_provinces_Nyanza_cities_Kisumu = UsePN (mkPN "Kisumu") ; -Countries_THA_provinces_UthaiThani = UsePN (mkPN "Uthai Thani") ; -Countries_NOK_cities_HamhungHungnam = UsePN (mkPN "Hamhung Hungnam") ; -Countries_ET_provinces_Asyut = UsePN (mkPN "Asyut") ; -Organizations_EIB = UsePN (mkPN "European Investment Bank") ; -Countries_RA_provinces_Formosa_cities_Formosa = UsePN (mkPN "Formosa") ; -Countries_UZB_provinces_Sirdare_cities_Guliston = UsePN (mkPN "Guliston") ; -Countries_GB_provinces_Newport = UsePN (mkPN "Newport") ; -Countries_PK_cities_Kasur = UsePN (mkPN "Kasur") ; -Countries_BR_provinces_MatoGrossodoSul_cities_Dourados = UsePN (mkPN "Dourados") ; -Mountains_Kebnekaise = UsePN (mkPN "Kebnekaise") ; -Countries_GB_provinces_Kent_cities_Swale = UsePN (mkPN "Swale") ; -Countries_IND_provinces_Gujarat_cities_Ahmadabad = UsePN (mkPN "Ahmadabad") ; -Countries_CAM_provinces_Nordextreme_cities_Maroua = UsePN (mkPN "Maroua") ; -Countries_RSA_provinces_EasternCape_cities_EastLondon = UsePN (mkPN "East London") ; -Kiribati = UsePN (mkPN "Kiribati") ; -Organizations_WFC = UsePN (mkPN "World Food Council") ; -Countries_GB_provinces_Torfaen = UsePN (mkPN "Torfaen") ; -Lakes_LakeEyre = UsePN (mkPN "Lake Eyre") ; -Countries_IND_provinces_Punjab = UsePN (mkPN "Punjab") ; -Mountains_Montblanc = UsePN (mkPN "Montblanc") ; -Mountains_MtWhitney = UsePN (mkPN "Mt Whitney") ; -Countries_S_provinces_Gavleborg = UsePN (mkPN "Gavleborg") ; -Countries_MEX_provinces_Puebla_cities_Tehuacan = UsePN (mkPN "Tehuacan") ; -Sudan = UsePN (mkPN "Sudan") ; -Countries_GB_provinces_Essex_cities_EppingForest = UsePN (mkPN "Epping Forest") ; -Countries_RA_provinces_Tucuman_cities_SanMigueldeTucuman = UsePN (mkPN "San Miguel de Tucuman") ; -Countries_NOK_cities_Huichon = UsePN (mkPN "Huichon") ; -Organizations_UNOMIG = UsePN (mkPN "United Nations Observer Mission in Georgia") ; -Countries_ANG_provinces_Luanda = UsePN (mkPN "Luanda") ; -Countries_TJ_provinces_NeiMonggol_cities_Ulanhot = UsePN (mkPN "Ulanhot") ; -Countries_NL_provinces_ZuidHolland_cities_Dordrecht = UsePN (mkPN "Dordrecht") ; -Countries_KAZ_provinces_OngtustikQazaqstan = UsePN (mkPN "Ongtustik Qazaqstan") ; -Countries_ZRE_provinces_Kivu_cities_Uvira = UsePN (mkPN "Uvira") ; -Mountains_MountMorrison = UsePN (mkPN "Mount Morrison") ; -Countries_R_provinces_Orenburgskayaoblast_cities_Orenburg = UsePN (mkPN "Orenburg") ; -Countries_R_provinces_Rep_ofBuryatiya = UsePN (mkPN "Rep. of Buryatiya") ; -Countries_MEX_provinces_QuintanaRoo_cities_Chetumal = UsePN (mkPN "Chetumal") ; -Countries_TAD_provinces_BadakhshoniKuni_cities_Khorugh = UsePN (mkPN "Khorugh") ; -Countries_R_provinces_Rep_ofIngushetiya = UsePN (mkPN "Rep. of Ingushetiya") ; -Countries_D_provinces_Niedersachsen_cities_Braunschweig = UsePN (mkPN "Braunschweig") ; -Countries_PE_provinces_Ancash_cities_Chimbote = UsePN (mkPN "Chimbote") ; -Countries_BR_provinces_SaoPaulo_cities_Pindamonhangaba = UsePN (mkPN "Pindamonhangaba") ; -Countries_cid_cia_Reunion = UsePN (mkPN "Reunion") ; -Islands_Lavan = UsePN (mkPN "Lavan") ; -Islands_Tonga = UsePN (mkPN "Tonga") ; -Countries_F_provinces_HauteNormandie = UsePN (mkPN "Haute Normandie") ; -Countries_WAN_cities_BeninCity = UsePN (mkPN "Benin City") ; -Countries_BR_provinces_Tocantins = UsePN (mkPN "Tocantins") ; -Countries_TJ_provinces_Fujian_cities_Fuzhou = UsePN (mkPN "Fuzhou") ; -Countries_GB_provinces_RhonddaCynonTaff = UsePN (mkPN "Rhondda Cynon Taff") ; -Countries_IND_provinces_MadhyaPradesh_cities_Gwalior = UsePN (mkPN "Gwalior") ; -Countries_MEX_cities_AtizapandeZaragoza = UsePN (mkPN "Atizapan de Zaragoza") ; -Countries_GB_provinces_Pembrokeshire_cities_Haverfordwest = UsePN (mkPN "Haverfordwest") ; -Countries_MD_cities_Chisinau = UsePN (mkPN "Chisinau") ; -Countries_HCA_provinces_Olancho = UsePN (mkPN "Olancho") ; -Countries_USA_provinces_NewJersey_cities_JerseyCity = UsePN (mkPN "Jersey City") ; -Countries_PE_provinces_Puno_cities_Juliaca = UsePN (mkPN "Juliaca") ; -Countries_S_provinces_Kronoberg_cities_Vaxjo = UsePN (mkPN "Vaxjo") ; -Countries_USA_provinces_California_cities_Sacramento = UsePN (mkPN "Sacramento") ; -Countries_R_provinces_UdmurtRepublic_cities_Votkinsk = UsePN (mkPN "Votkinsk") ; -Countries_D_provinces_Thuringen_cities_Erfurt = UsePN (mkPN "Erfurt") ; -Countries_ROK_cities_Chunchon = UsePN (mkPN "Chunchon") ; -Countries_MEX_provinces_Sinaloa_cities_Mazatlan = UsePN (mkPN "Mazatlan") ; -Deserts_Uaran = UsePN (mkPN "Uaran") ; -Countries_TR_provinces_Hatay = UsePN (mkPN "Hatay") ; -Countries_UZB_provinces_Andijon_cities_Andijon = UsePN (mkPN "Andijon") ; -Rivers_GrosserJenissej = UsePN (mkPN "Grosser Jenissej") ; -Countries_BR_provinces_Tocantins_cities_Palmas = UsePN (mkPN "Palmas") ; -Countries_CO_provinces_Arauca = UsePN (mkPN "Arauca") ; -Countries_Z_provinces_Western = UsePN (mkPN "Western") ; -Countries_LV_cities_Riga = UsePN (mkPN "Riga") ; -Mountains_Mt_Kosciuszko = UsePN (mkPN "Mt. Kosciuszko") ; -Countries_CDN_provinces_Ontario_cities_York = UsePN (mkPN "York") ; -Countries_A_provinces_Styria = UsePN (mkPN "Styria") ; -Countries_R_provinces_Chelyabinskayaoblast_cities_Magnitogorsk = UsePN (mkPN "Magnitogorsk") ; -Countries_RI_cities_Cirebon = UsePN (mkPN "Cirebon") ; -Countries_Z_provinces_Luapula = UsePN (mkPN "Luapula") ; -Countries_RO_provinces_Giurgiu_cities_Giurgiu = UsePN (mkPN "Giurgiu") ; -Countries_GB_provinces_Hampshire_cities_Winchester = UsePN (mkPN "Winchester") ; -Countries_F_provinces_RhoneAlpes_cities_Villeurbanne = UsePN (mkPN "Villeurbanne") ; -Countries_R_provinces_Penzenskayaoblast_cities_Kuznetsk = UsePN (mkPN "Kuznetsk") ; -Islands_Colonsay = UsePN (mkPN "Colonsay") ; -Countries_D_provinces_Bayern_cities_Munich = UsePN (mkPN "Munich") ; -Countries_cid_cia_Falkland_Islands_cities_Stanley = UsePN (mkPN "Stanley") ; -Countries_AUS_provinces_NewSouthWales_cities_Wollongong = UsePN (mkPN "Wollongong") ; -Countries_NL_provinces_Gelderland_cities_Nijmegen = UsePN (mkPN "Nijmegen") ; -Countries_AUS_provinces_Queensland_cities_Townsville = UsePN (mkPN "Townsville") ; -Countries_USA_provinces_California_cities_SanJose = UsePN (mkPN "San Jose") ; -Countries_ES_provinces_Morazan = UsePN (mkPN "Morazan") ; -Organizations_G_2 = UsePN (mkPN "Group of 2") ; -Countries_VN_provinces_SouthCentralCoast = UsePN (mkPN "South Central Coast") ; -Countries_R_provinces_Murmanskayaoblast = UsePN (mkPN "Murmanskaya oblast") ; -Countries_PL_provinces_Slupskie = UsePN (mkPN "Slupskie") ; -Countries_TR_provinces_Yozgat = UsePN (mkPN "Yozgat") ; -Countries_TJ_provinces_Liaoning_cities_Shenyang = UsePN (mkPN "Shenyang") ; -Countries_GR_provinces_Peloponnisos = UsePN (mkPN "Peloponnisos") ; -Countries_CDN_provinces_Ontario_cities_Mississauga = UsePN (mkPN "Mississauga") ; -Turkey = UsePN (mkPN "Turkey") ; -Countries_THA_provinces_Phrae = UsePN (mkPN "Phrae") ; -Countries_STP_cities_SaoTome = UsePN (mkPN "Sao Tome") ; -Countries_RO_provinces_Bacau = UsePN (mkPN "Bacau") ; -Countries_IR_provinces_Esfahan_cities_Najafabad = UsePN (mkPN "Najafabad") ; -Countries_SD_cities_Mbabane = UsePN (mkPN "Mbabane") ; -Countries_ANG_provinces_Huambo_cities_Huambo = UsePN (mkPN "Huambo") ; -Countries_TJ_provinces_Shaanxi_cities_Ankang = UsePN (mkPN "Ankang") ; -Lakes_LakeTumba = UsePN (mkPN "Lake Tumba") ; -Countries_VN_provinces_HaBac = UsePN (mkPN "Ha Bac") ; -Countries_YV_provinces_Zulia_cities_Maracaibo = UsePN (mkPN "Maracaibo") ; -Countries_cid_cia_Hong_Kong = UsePN (mkPN "Hong Kong") ; -Countries_TJ_provinces_Anhui_cities_Huainan = UsePN (mkPN "Huainan") ; -Countries_AUS_provinces_Queensland_cities_Brisbane = UsePN (mkPN "Brisbane") ; -Countries_R_provinces_Primorskykray_cities_Vladivostok = UsePN (mkPN "Vladivostok") ; -Countries_IRQ_provinces_AnNajaf = UsePN (mkPN "An Najaf") ; -Mountains_Damavand = UsePN (mkPN "Damavand") ; -Countries_IR_provinces_Hamadan_cities_Hamadan = UsePN (mkPN "Hamadan") ; -Countries_CDN_provinces_Alberta = UsePN (mkPN "Alberta") ; -Countries_ANG_provinces_Uige = UsePN (mkPN "Uige") ; -Countries_EAT_provinces_Singida = UsePN (mkPN "Singida") ; -Countries_TJ_provinces_Liaoning_cities_Liaoyang = UsePN (mkPN "Liaoyang") ; -Countries_ER_cities_Asmara = UsePN (mkPN "Asmara") ; -Rivers_Petschora = UsePN (mkPN "Petschora") ; -Countries_R_provinces_Amurskayaoblast_cities_Blagoveshchensk = UsePN (mkPN "Blagoveshchensk") ; -Countries_USA_provinces_Michigan_cities_Lansing = UsePN (mkPN "Lansing") ; -Countries_TJ_provinces_Shandong_cities_Jinan = UsePN (mkPN "Jinan") ; -Countries_GB_provinces_WestMidlands = UsePN (mkPN "West Midlands") ; -Countries_IRQ_provinces_AlMuthanna_cities_AsSamawah = UsePN (mkPN "As Samawah") ; -Countries_GB_provinces_Somerset = UsePN (mkPN "Somerset") ; -Rivers_Garonne = UsePN (mkPN "Garonne") ; -Countries_RI_cities_TanjungBalai = UsePN (mkPN "Tanjung Balai") ; -Countries_C_provinces_PinardelRio_cities_PinardelRio = UsePN (mkPN "Pinar del Rio") ; -Countries_GB_provinces_Borders_cities_NewtownSt_Boswells = UsePN (mkPN "Newtown St. Boswells") ; -Countries_R_provinces_Volgogradskayaoblast = UsePN (mkPN "Volgogradskaya oblast") ; -Countries_USA_provinces_Georgia = UsePN (mkPN "Georgia") ; -Countries_IND_provinces_Pondicherry = UsePN (mkPN "Pondicherry") ; -Countries_cid_cia_Ashmore_and_Cartier_Islands = UsePN (mkPN "Ashmore and Cartier Islands") ; -Countries_USA_provinces_California_cities_Inglewood = UsePN (mkPN "Inglewood") ; -Countries_TR_provinces_Tekirdag_cities_Tekirdag = UsePN (mkPN "Tekirdag") ; -Countries_USA_provinces_Massachusetts_cities_Boston = UsePN (mkPN "Boston") ; -Countries_J_provinces_Toyama = UsePN (mkPN "Toyama") ; -Countries_IRQ_provinces_AsSulaymaniyah_cities_AsSulaymaniyah = UsePN (mkPN "As Sulaymaniyah") ; -Countries_IND_provinces_Rajasthan = UsePN (mkPN "Rajasthan") ; -Countries_GB_provinces_Warwickshire_cities_StratfordonAvon = UsePN (mkPN "Stratford on Avon") ; -Countries_CO_provinces_Cordoba_cities_Monteria = UsePN (mkPN "Monteria") ; -Countries_H_provinces_Gyor_munic_cities_Gyor = UsePN (mkPN "Gyor") ; -Rivers_Uruguay = UsePN (mkPN "Uruguay") ; -Countries_MOC_provinces_Inhambane_cities_Inhambane = UsePN (mkPN "Inhambane") ; -Countries_S_provinces_Norrbotten_cities_Jokkmokk = UsePN (mkPN "Jokkmokk") ; -Countries_USA_provinces_California_cities_HuntingtonBeach = UsePN (mkPN "Huntington Beach") ; -Countries_GB_provinces_Cumbria = UsePN (mkPN "Cumbria") ; -Countries_SUD_provinces_alKhartum_cities_Khartoum = UsePN (mkPN "Khartoum") ; -Islands_NorthUlist = UsePN (mkPN "North Ulist") ; -Countries_F_provinces_HauteNormandie_cities_Rouen = UsePN (mkPN "Rouen") ; -Countries_VN_provinces_DongThap = UsePN (mkPN "Dong Thap") ; -Islands_SanMiguelIsland = UsePN (mkPN "San Miguel Island") ; -Countries_R_provinces_Rep_ofMordovia = UsePN (mkPN "Rep. of Mordovia") ; -Countries_SF_provinces_Turku_Pori_cities_Pori = UsePN (mkPN "Pori") ; -Countries_MEX_provinces_Veracruz = UsePN (mkPN "Veracruz") ; -Countries_P_provinces_Porto_cities_Porto = UsePN (mkPN "Porto") ; -Countries_PE_provinces_Callao_cities_Callao = UsePN (mkPN "Callao") ; -SriLanka = UsePN (mkPN "Sri Lanka") ; -Countries_ARM_cities_Yerevan = UsePN (mkPN "Yerevan") ; -Countries_MW_cities_Lilongwe = UsePN (mkPN "Lilongwe") ; -Countries_USA_provinces_Alabama_cities_Birmingham = UsePN (mkPN "Birmingham") ; -Countries_MK_cities_Skopje = UsePN (mkPN "Skopje") ; -Countries_IR_provinces_BoyerAhmadeKohkiluyeh_cities_Yasuj = UsePN (mkPN "Yasuj") ; -Islands_Antigua = UsePN (mkPN "Antigua") ; -Countries_E_provinces_Murcia_cities_Murcia = UsePN (mkPN "Murcia") ; -Countries_VN_cities_Hue = UsePN (mkPN "Hue") ; -Countries_USA_provinces_NewYork_cities_Rochester = UsePN (mkPN "Rochester") ; -Countries_GB_provinces_Nottinghamshire_cities_Nottingham = UsePN (mkPN "Nottingham") ; -Countries_VN_provinces_BenTre = UsePN (mkPN "Ben Tre") ; -Armenia = UsePN (mkPN "Armenia") ; -Countries_TJ_provinces_Shanxi_cities_Taiyuan = UsePN (mkPN "Taiyuan") ; -Countries_VN_cities_DaNang = UsePN (mkPN "Da Nang") ; -Countries_PL_provinces_Wroclawskie_cities_Wroclaw = UsePN (mkPN "Wroclaw") ; -Deserts_NubianDesert = UsePN (mkPN "Nubian Desert") ; -Countries_BR_cities_CamposdosGoytacazes = UsePN (mkPN "Campos dos Goytacazes") ; -Countries_RO_provinces_Arges = UsePN (mkPN "Arges") ; -Countries_R_provinces_ChuvashRepublic = UsePN (mkPN "Chuvash Republic") ; -Mountains_PikChan_Tengri = UsePN (mkPN "Pik Chan-Tengri") ; -Countries_YV_provinces_Bolivar_cities_CiudadBolivar = UsePN (mkPN "Ciudad Bolivar") ; -Countries_IR_provinces_Khuzestan_cities_Khorramshahr = UsePN (mkPN "Khorramshahr") ; -Countries_UA_provinces_Zaporizka = UsePN (mkPN "Zaporizka") ; -Countries_THA_provinces_Narathiwat = UsePN (mkPN "Narathiwat") ; -Countries_TJ_provinces_NingxiaHuizu_cities_Shizuishan = UsePN (mkPN "Shizuishan") ; -Countries_I_provinces_Liguria_cities_Genua = UsePN (mkPN "Genua") ; -Countries_PL_provinces_Kieleckie = UsePN (mkPN "Kieleckie") ; -Countries_E_provinces_Valencia_cities_Elx = UsePN (mkPN "Elx") ; -Countries_ET_provinces_ElGiza = UsePN (mkPN "El Giza") ; -Countries_R_provinces_Tverskayaoblast_cities_Tver = UsePN (mkPN "Tver") ; -Countries_RIM_cities_Nouakchott = UsePN (mkPN "Nouakchott") ; -Countries_IND_provinces_TamilNadu_cities_Salem = UsePN (mkPN "Salem") ; -Countries_R_provinces_KarachayevoCherkesskRep_ = UsePN (mkPN "Karachayevo Cherkessk Rep.") ; -Organizations_FAO = UsePN (mkPN "Food and Agriculture Organization") ; -Lakes_Paeijaenne = UsePN (mkPN "Paeijaenne") ; -Countries_TJ_provinces_Sichuan_cities_Yibin = UsePN (mkPN "Yibin") ; -Seas_MediterraneanSea = UsePN (mkPN "Mediterranean Sea") ; -Countries_E_provinces_Madrid_cities_Getafe = UsePN (mkPN "Getafe") ; -Organizations_CDB = UsePN (mkPN "Caribbean Development Bank") ; -Islands_Mainland = UsePN (mkPN "Mainland") ; -Countries_RO_provinces_Harghita = UsePN (mkPN "Harghita") ; -Countries_GB_provinces_Berkshire_cities_Windsor = UsePN (mkPN "Windsor") ; -Countries_J_provinces_Hokkaido_cities_Sapporo = UsePN (mkPN "Sapporo") ; -Countries_VN_provinces_QuangTri = UsePN (mkPN "Quang Tri") ; -Countries_GB_provinces_WestYorkshire_cities_Wakefield = UsePN (mkPN "Wakefield") ; -Countries_MEX_provinces_Jalisco_cities_Cuautla = UsePN (mkPN "Cuautla") ; -Rivers_Elbe = UsePN (mkPN "Elbe") ; -Belarus = UsePN (mkPN "Belarus") ; -Countries_J_provinces_Shiga = UsePN (mkPN "Shiga") ; -Countries_CAM_provinces_Nordextreme = UsePN (mkPN "Nord extreme") ; -Countries_TJ_provinces_Heilongjiang_cities_Yichun = UsePN (mkPN "Yichun") ; -Mountains_Llullaillaco = UsePN (mkPN "Llullaillaco") ; -Countries_TJ_provinces_Shandong_cities_Qingdao = UsePN (mkPN "Qingdao") ; -Countries_TJ_provinces_Fujian_cities_Zhangzhou = UsePN (mkPN "Zhangzhou") ; -Lakes_Inari = UsePN (mkPN "Inari") ; -Islands_Ibiza = UsePN (mkPN "Ibiza") ; -Countries_TJ_provinces_Henan_cities_Jiaozuo = UsePN (mkPN "Jiaozuo") ; -Countries_TR_provinces_Izmir_cities_Izmir = UsePN (mkPN "Izmir") ; -Countries_CH_provinces_VS_cities_Sion = UsePN (mkPN "Sion") ; -Countries_USA_provinces_Arkansas = UsePN (mkPN "Arkansas") ; -Countries_RC_provinces_Kaohsiung_munic = UsePN (mkPN "Kaohsiung (munic.)") ; -Countries_I_provinces_Lazio_cities_Rome = UsePN (mkPN "Rome") ; -Countries_TJ_provinces_Jilin_cities_Fuyu = UsePN (mkPN "Fuyu") ; -CostaRica = UsePN (mkPN "Costa Rica") ; -Countries_PL_provinces_Pilskie = UsePN (mkPN "Pilskie") ; -Countries_CH_provinces_TG_cities_Frauenfeld = UsePN (mkPN "Frauenfeld") ; -Countries_GB_provinces_Strathclyde_cities_Renfrew = UsePN (mkPN "Renfrew") ; -Countries_C_provinces_Granma_cities_Bayamo = UsePN (mkPN "Bayamo") ; -Countries_PL_provinces_Katowickie_cities_Gliwice = UsePN (mkPN "Gliwice") ; -Countries_THA_provinces_Phuket = UsePN (mkPN "Phuket") ; -Countries_UA_provinces_Cherkaska_cities_Cherkasy = UsePN (mkPN "Cherkasy") ; -Countries_HCA_provinces_Ocotepeque_cities_Ocotepeque = UsePN (mkPN "Ocotepeque") ; -Lakes_LakeRukwa = UsePN (mkPN "Lake Rukwa") ; -Countries_R_provinces_Sverdlovskayaoblast_cities_KamenskUralskiy = UsePN (mkPN "Kamensk Uralskiy") ; -Jamaica = UsePN (mkPN "Jamaica") ; -Countries_GB_provinces_Fife_cities_Glenrothes = UsePN (mkPN "Glenrothes") ; -Countries_SP_cities_Mogadishu = UsePN (mkPN "Mogadishu") ; -Countries_D_provinces_NordrheinWestfalen_cities_Siegen = UsePN (mkPN "Siegen") ; -Countries_HCA_provinces_Yoro_cities_Yoro = UsePN (mkPN "Yoro") ; -Countries_CH_provinces_OW_cities_Sarnen = UsePN (mkPN "Sarnen") ; -Countries_AUS_provinces_NorfolkIsland = UsePN (mkPN "Norfolk Island") ; -Countries_MA_cities_Khouribga = UsePN (mkPN "Khouribga") ; -Countries_P_provinces_VilaReal = UsePN (mkPN "Vila Real") ; -Countries_PK_cities_RahimYarKhan = UsePN (mkPN "Rahim Yar Khan") ; -Countries_cid_cia_Heard_Island_and_McDonald_Islands = UsePN (mkPN "Heard Island and McDonald Islands") ; -Countries_AUS_provinces_NewSouthWales_cities_Sydney = UsePN (mkPN "Sydney") ; -Rivers_Goetaaelv = UsePN (mkPN "Goetaaelv") ; -Countries_TR_provinces_Tekirdag = UsePN (mkPN "Tekirdag") ; -Countries_TJ_provinces_Heilongjiang_cities_Qitaihe = UsePN (mkPN "Qitaihe") ; -Countries_RSA_cities_Mangaung = UsePN (mkPN "Mangaung") ; -Islands_Bali = UsePN (mkPN "Bali") ; -Countries_R_provinces_Vladimirskayaoblast_cities_Kovrov = UsePN (mkPN "Kovrov") ; -Countries_cid_cia_Guadeloupe_cities_Basse_Terre = UsePN (mkPN "Basse-Terre") ; -Countries_RA_provinces_Corrientes = UsePN (mkPN "Corrientes") ; -Countries_CO_provinces_Atlantico_cities_Soledad = UsePN (mkPN "Soledad") ; -Countries_J_provinces_Shizuoka_cities_Shizuoka = UsePN (mkPN "Shizuoka") ; -Countries_D_provinces_MecklenburgVorpommern_cities_Schwerin = UsePN (mkPN "Schwerin") ; -Mountains_Hotaka_Dake = UsePN (mkPN "Hotaka-Dake") ; -Countries_MC_cities_Monaco = UsePN (mkPN "Monaco") ; -Countries_ROK_cities_Masan = UsePN (mkPN "Masan") ; -Countries_GB_cities_Sandwell = UsePN (mkPN "Sandwell") ; -Countries_UZB_provinces_Farghona_cities_Farghona = UsePN (mkPN "Farghona") ; -Countries_MA_cities_BeniMellal = UsePN (mkPN "Beni Mellal") ; -Countries_V_cities_VaticanCity = UsePN (mkPN "Vatican City") ; -Countries_KAZ_provinces_Pavlodar = UsePN (mkPN "Pavlodar") ; -Countries_HCA_provinces_Colon = UsePN (mkPN "Colon") ; -Organizations_ISO = UsePN (mkPN "International Organization for Standardization") ; -Rivers_Argun = UsePN (mkPN "Argun") ; -Countries_LAO_cities_Vientiane = UsePN (mkPN "Vientiane") ; -Countries_R_provinces_ChechenRep_ = UsePN (mkPN "Chechen Rep.") ; -Countries_BR_provinces_SantaCatarina_cities_Chapeco = UsePN (mkPN "Chapeco") ; -Countries_GB_provinces_SouthYorkshire = UsePN (mkPN "South Yorkshire") ; -Countries_GB_provinces_Hampshire_cities_Portsmouth = UsePN (mkPN "Portsmouth") ; -Countries_IND_provinces_HimachalPradesh = UsePN (mkPN "Himachal Pradesh") ; -Countries_GB_provinces_Torfaen_cities_Pontypool = UsePN (mkPN "Pontypool") ; -Countries_R_provinces_Krasnoyarskiykray_cities_Achinsk = UsePN (mkPN "Achinsk") ; -Countries_USA_provinces_RhodeIsland = UsePN (mkPN "Rhode Island") ; -Organizations_ITU = UsePN (mkPN "International Telecommunication Union") ; -Countries_USA_provinces_Texas_cities_Pasadena = UsePN (mkPN "Pasadena") ; -Organizations_Intelsat = UsePN (mkPN "International Telecommunications Satellite Organization") ; -Seas_GulfofMexico = UsePN (mkPN "Gulf of Mexico") ; -Countries_PL_provinces_Szczecinskie = UsePN (mkPN "Szczecinskie") ; -Countries_CZ_provinces_Severomoravsky = UsePN (mkPN "Severomoravsky") ; -Countries_PA_provinces_Colon = UsePN (mkPN "Colon") ; -Countries_RO_provinces_Hunedoara_cities_Deva = UsePN (mkPN "Deva") ; -Countries_MOC_provinces_Niassa = UsePN (mkPN "Niassa") ; -Countries_BR_provinces_SaoPaulo_cities_FranciscoMorato = UsePN (mkPN "Francisco Morato") ; -Organizations_OAU = UsePN (mkPN "Organization of African Unity") ; -Organizations_IMF = UsePN (mkPN "International Monetary Fund") ; -Countries_GB_provinces_Carmarthenshire_cities_Carmarthen = UsePN (mkPN "Carmarthen") ; -Countries_UA_provinces_Zaporizka_cities_Zaporizhzhya = UsePN (mkPN "Zaporizhzhya") ; -Countries_cid_cia_American_Samoa_cities_PagoPago = UsePN (mkPN "Pago Pago") ; -Countries_TR_provinces_Sivas = UsePN (mkPN "Sivas") ; -Countries_R_provinces_Rep_ofKomi = UsePN (mkPN "Rep. of Komi") ; -Countries_TJ_provinces_Heilongjiang_cities_Mishan = UsePN (mkPN "Mishan") ; -Countries_TJ_provinces_Shaanxi = UsePN (mkPN "Shaanxi") ; -Countries_IR_provinces_ChaharMahaleBakhtiari_cities_ShahreKord = UsePN (mkPN "Shahr e Kord") ; -Countries_J_provinces_Shimane = UsePN (mkPN "Shimane") ; -Countries_PE_provinces_Lima = UsePN (mkPN "Lima") ; -Organizations_NATO = UsePN (mkPN "North Atlantic Treaty Organization") ; -Countries_USA_provinces_NorthDakota = UsePN (mkPN "North Dakota") ; -Countries_SYR_cities_Aleppo = UsePN (mkPN "Aleppo") ; -Countries_I_provinces_Abruzzo = UsePN (mkPN "Abruzzo") ; -Countries_WAN_cities_Ikire = UsePN (mkPN "Ikire") ; -Organizations_AL = UsePN (mkPN "Arab League") ; -Countries_ZRE_provinces_Kinshasa_cities_Kinshasa = UsePN (mkPN "Kinshasa") ; -Countries_NL_provinces_Gelderland_cities_Arnhem = UsePN (mkPN "Arnhem") ; -Countries_ANG_provinces_Huambo = UsePN (mkPN "Huambo") ; -Islands_Madeira = UsePN (mkPN "Madeira") ; -Countries_R_provinces_Astrakhanskayaoblast_cities_Astrakhan = UsePN (mkPN "Astrakhan") ; -Countries_P_provinces_Aveiro = UsePN (mkPN "Aveiro") ; -Countries_CY_cities_Nicosia = UsePN (mkPN "Nicosia") ; -Islands_PrinceCharlesIsland = UsePN (mkPN "Prince Charles Island") ; -Maldives = UsePN (mkPN "Maldives") ; -Organizations_NIB = UsePN (mkPN "Nordic Investment Bank") ; -Countries_PAL_cities_Koror = UsePN (mkPN "Koror") ; -Countries_YV_provinces_Miranda_cities_LosTeques = UsePN (mkPN "Los Teques") ; -Organizations_UDEAC = UsePN (mkPN "Central African Customs and Economic Union") ; -Countries_S_provinces_Skaraborg = UsePN (mkPN "Skaraborg") ; -Organizations_UNICEF = UsePN (mkPN "United Nations Childrens Fund") ; -Countries_CR_provinces_Limon_cities_Limon = UsePN (mkPN "Limon") ; -Countries_cid_cia_British_Virgin_Islands_cities_RoadTown = UsePN (mkPN "Road Town") ; -Seas_ArcticOcean = UsePN (mkPN "Arctic Ocean") ; -Countries_CR_provinces_Punarenas = UsePN (mkPN "Punarenas") ; -Countries_MA_provinces_Centre = UsePN (mkPN "Centre") ; -Countries_D_provinces_NordrheinWestfalen_cities_Herne = UsePN (mkPN "Herne") ; -Organizations_WFP = UsePN (mkPN "World Food Program") ; -Countries_PE_provinces_Puno_cities_Puno = UsePN (mkPN "Puno") ; -Countries_CO_provinces_Casanare = UsePN (mkPN "Casanare") ; -Countries_TJ_provinces_Hubei_cities_Xiangfan = UsePN (mkPN "Xiangfan") ; -Countries_CDN_provinces_NorthwestTerritories = UsePN (mkPN "Northwest Territories") ; -Countries_TJ_provinces_Zhejiang_cities_Ruian = UsePN (mkPN "Ruian") ; -Chad = UsePN (mkPN "Chad") ; -Countries_I_cities_Forli = UsePN (mkPN "Forli") ; -Rivers_Luangwa = UsePN (mkPN "Luangwa") ; -Countries_MA_provinces_Tensift = UsePN (mkPN "Tensift") ; -Countries_F_provinces_Centre = UsePN (mkPN "Centre") ; -Countries_NL_provinces_Limburg_cities_Heerlen = UsePN (mkPN "Heerlen") ; -Countries_IR_provinces_Ilam_cities_Ilam = UsePN (mkPN "Ilam") ; -Countries_TJ_provinces_Anhui_cities_Chaoxian = UsePN (mkPN "Chaoxian") ; -Lakes_LagodiGarda = UsePN (mkPN "Lago di Garda") ; -Countries_RO_provinces_Botosani = UsePN (mkPN "Botosani") ; -Islands_Cuba = UsePN (mkPN "Cuba") ; -Countries_BR_provinces_Ceara_cities_Maracanau = UsePN (mkPN "Maracanau") ; -Mauritius = UsePN (mkPN "Mauritius") ; -Countries_TJ_provinces_Shandong_cities_Linyi = UsePN (mkPN "Linyi") ; -Countries_USA_provinces_Texas_cities_Irving = UsePN (mkPN "Irving") ; -Countries_CO_provinces_Cundinamarca_cities_Soacha = UsePN (mkPN "Soacha") ; -Countries_USA_provinces_Minnesota_cities_St_Paul = UsePN (mkPN "St. Paul") ; -Countries_IND_provinces_Maharashtra_cities_Aurangabad = UsePN (mkPN "Aurangabad") ; -Organizations_IDA = UsePN (mkPN "International Development Association") ; -Countries_SN_provinces_Kolda = UsePN (mkPN "Kolda") ; -Countries_BR_provinces_Rondonia_cities_PortoVelho = UsePN (mkPN "Porto Velho") ; -Organizations_ICRM = UsePN (mkPN "International Red Cross and Red Crescent Movement") ; -Rivers_Moldau = UsePN (mkPN "Moldau") ; -Countries_F_provinces_Limousin_cities_Limoges = UsePN (mkPN "Limoges") ; -Countries_IL_provinces_Central = UsePN (mkPN "Central") ; -Countries_TJ_provinces_Yunnan_cities_Gejiu = UsePN (mkPN "Gejiu") ; -Organizations_BSEC = UsePN (mkPN "Black Sea Economic Cooperation Zone") ; -Countries_BR_provinces_Ceara_cities_JuazeirodoNorte = UsePN (mkPN "Juazeiro do Norte") ; -Countries_RO_provinces_Galati = UsePN (mkPN "Galati") ; -Countries_PK_cities_Jhang = UsePN (mkPN "Jhang") ; -Countries_J_provinces_Aichi_cities_Nagoya = UsePN (mkPN "Nagoya") ; -Countries_TR_provinces_Aksaray = UsePN (mkPN "Aksaray") ; -Islands_Oesel = UsePN (mkPN "Oesel") ; -Countries_TJ_provinces_Jiangsu_cities_Huaiyin = UsePN (mkPN "Huaiyin") ; -Countries_IR_provinces_BoyerAhmadeKohkiluyeh = UsePN (mkPN "Boyer Ahmad e Kohkiluyeh") ; -Countries_R_provinces_Vologodskayaoblast_cities_Cherepovets = UsePN (mkPN "Cherepovets") ; -Countries_P_provinces_Coimbra = UsePN (mkPN "Coimbra") ; -Islands_Dagoe = UsePN (mkPN "Dagoe") ; -Countries_YV_provinces_Carabobo_cities_PuertoCabello = UsePN (mkPN "Puerto Cabello") ; -Countries_IND_provinces_Meghalaya = UsePN (mkPN "Meghalaya") ; -Countries_R_provinces_Rep_ofBashkortostan_cities_Sterlitamak = UsePN (mkPN "Sterlitamak") ; -Countries_N_provinces_Rogaland = UsePN (mkPN "Rogaland") ; -Islands_Mallorca = UsePN (mkPN "Mallorca") ; -Countries_USA_provinces_Kentucky_cities_Frankfort = UsePN (mkPN "Frankfort") ; -Countries_ET_provinces_ElWadielJadid = UsePN (mkPN "El Wadi el Jadid") ; -Countries_THA_provinces_Rayong = UsePN (mkPN "Rayong") ; -Countries_SF_provinces_Kuopio_cities_Kuopio = UsePN (mkPN "Kuopio") ; -Countries_R_provinces_Krasnoyarskiykray_cities_Krasnoyarsk = UsePN (mkPN "Krasnoyarsk") ; -Countries_IND_provinces_WestBengal_cities_Durgapur = UsePN (mkPN "Durgapur") ; -Countries_BR_provinces_Amazonas = UsePN (mkPN "Amazonas") ; -Countries_ETH_cities_Debrezit = UsePN (mkPN "Debrezit") ; -Countries_MYA_provinces_Yangon = UsePN (mkPN "Yangon") ; -Countries_PL_provinces_Wloclawskie = UsePN (mkPN "Wloclawskie") ; -Countries_GB_provinces_Surrey_cities_Kingston = UsePN (mkPN "Kingston") ; -Countries_SF_provinces_Kymi_cities_Lappeenrenta = UsePN (mkPN "Lappeenrenta") ; -Countries_DK_cities_Esbjerg = UsePN (mkPN "Esbjerg") ; -Countries_CZ_provinces_Vychodocesky_cities_Pardubice = UsePN (mkPN "Pardubice") ; -Countries_UA_provinces_Ternopilska_cities_Ternopil = UsePN (mkPN "Ternopil") ; -Countries_P_provinces_Santarem = UsePN (mkPN "Santarem") ; -Countries_MAL_provinces_Kedah = UsePN (mkPN "Kedah") ; -Countries_RI_cities_PematangSiantar = UsePN (mkPN "Pematang Siantar") ; -Countries_PE_provinces_Cajamarca = UsePN (mkPN "Cajamarca") ; -Countries_TJ_provinces_NingxiaHuizu_cities_Yinchuan = UsePN (mkPN "Yinchuan") ; -Countries_J_provinces_Niigata_cities_Niigata = UsePN (mkPN "Niigata") ; -Countries_GB_provinces_Bedfordshire_cities_Bedford = UsePN (mkPN "Bedford") ; -Countries_BR_provinces_Para_cities_Belem = UsePN (mkPN "Belem") ; -Countries_NOK_cities_Sinuiju = UsePN (mkPN "Sinuiju") ; -Countries_H_provinces_Somogy_cities_Kaposvar = UsePN (mkPN "Kaposvar") ; -Organizations_IBRD = UsePN (mkPN "International Bank for Reconstruction and Development") ; -Countries_D_provinces_Thuringen_cities_Jena = UsePN (mkPN "Jena") ; -Countries_BR_cities_CabodeSantoAgostinho = UsePN (mkPN "Cabo de Santo Agostinho") ; -Islands_Hokkaido = UsePN (mkPN "Hokkaido") ; -Countries_VN_provinces_MekongRiverDelta = UsePN (mkPN "Mekong River Delta") ; -Rivers_Amazonas = UsePN (mkPN "Amazonas") ; -Countries_SGP_cities_Singapore = UsePN (mkPN "Singapore") ; -Countries_VN_provinces_Haiphong = UsePN (mkPN "Haiphong") ; -Countries_TJ_provinces_Yunnan_cities_Qujing = UsePN (mkPN "Qujing") ; -Countries_E_provinces_Andalusia_cities_Algeciras = UsePN (mkPN "Algeciras") ; -Countries_C_provinces_Matanzas_cities_Matanzas = UsePN (mkPN "Matanzas") ; -Lakes_Disappointment_Lake = UsePN (mkPN "Disappointment-Lake") ; -Countries_cid_cia_Tokelau = UsePN (mkPN "Tokelau") ; -Countries_H_provinces_BacsKiskun = UsePN (mkPN "Bacs Kiskun") ; -Countries_I_provinces_Umbria_cities_Terni = UsePN (mkPN "Terni") ; -Countries_IND_provinces_Delhi_cities_NewDelhi = UsePN (mkPN "New Delhi") ; -Countries_BR_provinces_Paraiba_cities_CampinaGrande = UsePN (mkPN "Campina Grande") ; -Countries_ES_provinces_LaUnion_cities_LaUnion = UsePN (mkPN "La Union") ; -Islands_Mauritius = UsePN (mkPN "Mauritius") ; -Countries_EAT_provinces_Kagera = UsePN (mkPN "Kagera") ; -Countries_CI_cities_Abidjan = UsePN (mkPN "Abidjan") ; -Countries_KAZ_provinces_Semey = UsePN (mkPN "Semey") ; -Cyprus = UsePN (mkPN "Cyprus") ; -Countries_TR_provinces_Usak_cities_Usak = UsePN (mkPN "Usak") ; -Countries_TJ_provinces_Heilongjiang_cities_Acheng = UsePN (mkPN "Acheng") ; -Countries_TJ_provinces_Jiangsu_cities_Danyang = UsePN (mkPN "Danyang") ; -Countries_PE_provinces_Cuzco_cities_Cuzco = UsePN (mkPN "Cuzco") ; -Nigeria = UsePN (mkPN "Nigeria") ; -Countries_VN_provinces_RedRiverDelta = UsePN (mkPN "Red River Delta") ; -Countries_R_provinces_Tyumenskayaoblast_cities_Surgut = UsePN (mkPN "Surgut") ; -Countries_R_provinces_Vologodskayaoblast_cities_Vologda = UsePN (mkPN "Vologda") ; -Countries_E_provinces_CanaryIslands = UsePN (mkPN "Canary Islands") ; -Countries_BR_provinces_SaoPaulo_cities_Catanduva = UsePN (mkPN "Catanduva") ; -Countries_F_provinces_MidiPyrenees_cities_Toulouse = UsePN (mkPN "Toulouse") ; -Countries_H_provinces_Zala = UsePN (mkPN "Zala") ; -Countries_USA_provinces_Virginia_cities_NewportNews = UsePN (mkPN "Newport News") ; -Countries_F_provinces_FrancheComte = UsePN (mkPN "Franche Comte") ; -Countries_USA_provinces_Maine = UsePN (mkPN "Maine") ; -Countries_MYA_provinces_Magway = UsePN (mkPN "Magway") ; -Countries_TJ_provinces_Henan_cities_Kaifeng = UsePN (mkPN "Kaifeng") ; -Countries_D_provinces_Hessen_cities_Darmstadt = UsePN (mkPN "Darmstadt") ; -Countries_RA_provinces_LaRioja = UsePN (mkPN "La Rioja") ; -Countries_GB_provinces_Hampshire_cities_Southampton = UsePN (mkPN "Southampton") ; -Countries_BR_provinces_RiodeJaneiro = UsePN (mkPN "Rio de Janeiro") ; -Countries_IND_provinces_Maharashtra_cities_Kalyan = UsePN (mkPN "Kalyan") ; -Countries_SUD_provinces_BahralGhazal = UsePN (mkPN "Bahr al Ghazal") ; -Countries_BR_provinces_Pernambuco_cities_Camaragibe = UsePN (mkPN "Camaragibe") ; -Countries_GB_provinces_DumfriesandGalloway_cities_Dumfries = UsePN (mkPN "Dumfries") ; -Countries_R_provinces_Vladimirskayaoblast_cities_Murom = UsePN (mkPN "Murom") ; -Countries_BR_provinces_Parana_cities_Curitiba = UsePN (mkPN "Curitiba") ; -Countries_RSA_cities_Boksburg = UsePN (mkPN "Boksburg") ; -Finland = UsePN (mkPN "Finland") ; -Countries_YV_provinces_DistritoFederal_cities_CatiaLaMar = UsePN (mkPN "Catia La Mar") ; -Countries_TR_provinces_Sakarya = UsePN (mkPN "Sakarya") ; -Countries_BR_provinces_SaoPaulo_cities_SaoBernardodoCampo = UsePN (mkPN "Sao Bernardo do Campo") ; -Countries_IR_provinces_Gilan_cities_Rasht = UsePN (mkPN "Rasht") ; -Countries_TJ_provinces_Hunan_cities_Zhuzhou = UsePN (mkPN "Zhuzhou") ; -Countries_UA_provinces_Zakarpatska = UsePN (mkPN "Zakarpatska") ; -Countries_TJ_provinces_Heilongjiang_cities_Daqing = UsePN (mkPN "Daqing") ; -Countries_WAN_cities_IjebuOde = UsePN (mkPN "Ijebu Ode") ; -Malawi = UsePN (mkPN "Malawi") ; -Countries_USA_provinces_Distr_Columbia_cities_Washington = UsePN (mkPN "Washington") ; -Countries_TR_provinces_Burdur_cities_Burdur = UsePN (mkPN "Burdur") ; -Countries_USA_provinces_Vermont_cities_Montpelier = UsePN (mkPN "Montpelier") ; -Rivers_Anuwimi = UsePN (mkPN "Anuwimi") ; -Countries_R_provinces_Tomskayaoblast = UsePN (mkPN "Tomskaya oblast") ; -SouthAfrica = UsePN (mkPN "South Africa") ; -Countries_BR_provinces_SaoPaulo_cities_SaoPaulo = UsePN (mkPN "Sao Paulo") ; -Countries_E_provinces_Navarre = UsePN (mkPN "Navarre") ; -Colombia = UsePN (mkPN "Colombia") ; -Countries_GB_provinces_Caerphilly = UsePN (mkPN "Caerphilly") ; -Countries_CAM_provinces_Sudoueste = UsePN (mkPN "Sudoueste") ; -Countries_MYA_provinces_Mon = UsePN (mkPN "Mon") ; -Countries_IND_provinces_UttarPradesh_cities_Agra = UsePN (mkPN "Agra") ; -Countries_TJ_provinces_Sichuan_cities_Luzhou = UsePN (mkPN "Luzhou") ; -Countries_MEX_provinces_Sonora = UsePN (mkPN "Sonora") ; -Countries_VN_provinces_YenBai = UsePN (mkPN "Yen Bai") ; -Countries_ANG_provinces_Malanje_cities_Malanje = UsePN (mkPN "Malanje") ; -Countries_MOC_provinces_CaboDelgado_cities_Pemba = UsePN (mkPN "Pemba") ; -Countries_USA_provinces_Texas_cities_FortWorth = UsePN (mkPN "Fort Worth") ; -Countries_ET_provinces_ElBahrelAhmar = UsePN (mkPN "El Bahr el Ahmar") ; -Countries_GB_provinces_NorthYorkshire = UsePN (mkPN "North Yorkshire") ; -Countries_PL_provinces_Slupskie_cities_Slupsk = UsePN (mkPN "Slupsk") ; -Countries_USA_provinces_Pennsylvania_cities_Pittsburgh = UsePN (mkPN "Pittsburgh") ; -Islands_Dominica = UsePN (mkPN "Dominica") ; -Panama = UsePN (mkPN "Panama") ; -Countries_R_provinces_Rep_ofDagestan_cities_Makhachkala = UsePN (mkPN "Makhachkala") ; -Lakes_F_D_R_Lake = UsePN (mkPN "F.D.R. Lake") ; -Countries_CAM_provinces_Sud = UsePN (mkPN "Sud") ; -Countries_RM_provinces_Antananarivo_cities_Antsirabe = UsePN (mkPN "Antsirabe") ; -Countries_RC_cities_Yungho = UsePN (mkPN "Yungho") ; -Countries_THA_provinces_NongBuaLamPhu = UsePN (mkPN "Nong Bua Lam Phu") ; -Seas_SeaofJapan = UsePN (mkPN "Sea of Japan") ; -Countries_PL_provinces_Sieradzkie = UsePN (mkPN "Sieradzkie") ; -Countries_GB_provinces_Hertfordshire_cities_SaintAlbans = UsePN (mkPN "Saint Albans") ; -Lakes_LagodiComo = UsePN (mkPN "Lago di Como") ; -Countries_RI_cities_Ambon = UsePN (mkPN "Ambon") ; -Islands_Zakinthos = UsePN (mkPN "Zakinthos") ; -Lakes_LagoMaggiore = UsePN (mkPN "Lago Maggiore") ; -Countries_RC_cities_Hsintien = UsePN (mkPN "Hsintien") ; -Countries_NL_provinces_Drenthe = UsePN (mkPN "Drenthe") ; -Countries_YV_provinces_Lara = UsePN (mkPN "Lara") ; -Rivers_Schilka = UsePN (mkPN "Schilka") ; -Mountains_Fuji_Yama = UsePN (mkPN "Fuji-Yama") ; -Countries_TJ_provinces_Sichuan = UsePN (mkPN "Sichuan") ; -Countries_CO_provinces_Antioquia_cities_Itagui = UsePN (mkPN "Itagui") ; -Guyana = UsePN (mkPN "Guyana") ; -Countries_TJ_provinces_Heilongjiang_cities_Shuangyashan = UsePN (mkPN "Shuangyashan") ; -Countries_CDN_provinces_Manitoba_cities_Winnipeg = UsePN (mkPN "Winnipeg") ; -Countries_F_provinces_ChampagneArdenne_cities_Reims = UsePN (mkPN "Reims") ; -Countries_UZB_provinces_Jizzakh = UsePN (mkPN "Jizzakh") ; -Countries_RSA_cities_KemptonPark = UsePN (mkPN "Kempton Park") ; -Nicaragua = UsePN (mkPN "Nicaragua") ; -Countries_VN_cities_Hanoi = UsePN (mkPN "Hanoi") ; -Countries_THA_provinces_ChaiNat = UsePN (mkPN "Chai Nat") ; -Countries_TAD_provinces_Leninobod_cities_Khujand = UsePN (mkPN "Khujand") ; -Countries_RSA_cities_Roodepoort = UsePN (mkPN "Roodepoort") ; -Countries_R_provinces_Irkutskayaoblast_cities_UsolyeSibirskoye = UsePN (mkPN "Usolye Sibirskoye") ; -Countries_TR_provinces_Bilecik_cities_Bilecik = UsePN (mkPN "Bilecik") ; -Countries_MEX_provinces_Jalisco = UsePN (mkPN "Jalisco") ; -Countries_WAN_cities_Katsina = UsePN (mkPN "Katsina") ; -Countries_RO_provinces_Bihor = UsePN (mkPN "Bihor") ; -Countries_cid_cia_Norfolk_Island = UsePN (mkPN "Norfolk Island") ; -Countries_EAT_provinces_Morogoro = UsePN (mkPN "Morogoro") ; -Countries_ET_provinces_ElIskandariya_munic = UsePN (mkPN "El Iskandariya (munic.)") ; -Countries_TR_provinces_Amasya_cities_Amasya = UsePN (mkPN "Amasya") ; -Countries_IND_provinces_Maharashtra = UsePN (mkPN "Maharashtra") ; -Rivers_BlackIrtysch = UsePN (mkPN "Black Irtysch") ; -Countries_R_provinces_Moskovskayaoblast_cities_Shchyolkovo = UsePN (mkPN "Shchyolkovo") ; -Countries_RO_provinces_Braila = UsePN (mkPN "Braila") ; -Countries_PE_provinces_LaLibertad = UsePN (mkPN "La Libertad") ; -Organizations_UNDOF = UsePN (mkPN "United Nations Disengagement Observer Force") ; -Islands_Stromboli = UsePN (mkPN "Stromboli") ; -Countries_IR_provinces_SistaneBaluchestan = UsePN (mkPN "Sistan e Baluchestan") ; -Countries_DZ_cities_Skikda = UsePN (mkPN "Skikda") ; -Countries_E_provinces_Catalonia_cities_Barcelona = UsePN (mkPN "Barcelona") ; -Countries_BR_provinces_RioGrandedoSul_cities_PassoFundo = UsePN (mkPN "Passo Fundo") ; -Countries_TJ_provinces_Liaoning_cities_Fuxin = UsePN (mkPN "Fuxin") ; -Countries_RC_provinces_Ilan_cities_Ilan = UsePN (mkPN "Ilan") ; -Countries_CO_provinces_SantanderdelSur_cities_Bucaramanga = UsePN (mkPN "Bucaramanga") ; -Countries_EAT_provinces_Kigoma_cities_KigomaUjiji = UsePN (mkPN "Kigoma Ujiji") ; -Countries_ROK_cities_Yosu = UsePN (mkPN "Yosu") ; -Countries_Z_provinces_Central_cities_Kabwe = UsePN (mkPN "Kabwe") ; -Countries_IL_provinces_North = UsePN (mkPN "North") ; -Countries_GB_provinces_WestSussex = UsePN (mkPN "West Sussex") ; -Countries_ANG_provinces_Bie = UsePN (mkPN "Bie") ; -Countries_GB_provinces_Powys_cities_LlandrindodWells = UsePN (mkPN "Llandrindod Wells") ; -Countries_GB_provinces_GreaterManchester_cities_Bolton = UsePN (mkPN "Bolton") ; -Countries_KAZ_provinces_Leninsk_munic = UsePN (mkPN "Leninsk (munic.)") ; -Countries_R_provinces_Orenburgskayaoblast_cities_Orsk = UsePN (mkPN "Orsk") ; -Countries_RC_provinces_Pingtung = UsePN (mkPN "Pingtung") ; -Countries_R_provinces_Voronezhskayaoblast = UsePN (mkPN "Voronezhskaya oblast") ; -Countries_E_provinces_Galicia_cities_Vigo = UsePN (mkPN "Vigo") ; -Countries_BR_provinces_SaoPaulo_cities_Guaruja = UsePN (mkPN "Guaruja") ; -Countries_USA_provinces_Wyoming_cities_Cheyenne = UsePN (mkPN "Cheyenne") ; -Countries_MAL_provinces_NegeriSembilan_cities_Seremban = UsePN (mkPN "Seremban") ; -Countries_S_provinces_Halland_cities_Halmstad = UsePN (mkPN "Halmstad") ; -Countries_TJ_provinces_Hebei_cities_Quzhou = UsePN (mkPN "Quzhou") ; -Countries_A_provinces_Burgenland = UsePN (mkPN "Burgenland") ; -Countries_TJ_provinces_Henan_cities_Hebi = UsePN (mkPN "Hebi") ; -Countries_RA_provinces_BuenosAires_cities_LaPlata = UsePN (mkPN "La Plata") ; -Countries_R_provinces_Chukotskyao = UsePN (mkPN "Chukotsky ao") ; -Countries_AUS_provinces_CocosIslands = UsePN (mkPN "Cocos Islands") ; -Rivers_Katun = UsePN (mkPN "Katun") ; -Countries_SY_cities_Victoria = UsePN (mkPN "Victoria") ; -Countries_I_provinces_Calabria_cities_ReggiodiCalabria = UsePN (mkPN "Reggio di Calabria") ; -Countries_I_provinces_Piemonte_cities_Novara = UsePN (mkPN "Novara") ; -Countries_HCA_provinces_Atlantida = UsePN (mkPN "Atlantida") ; -Countries_ETH_cities_Dese = UsePN (mkPN "Dese") ; -Lakes_LakeNipigon = UsePN (mkPN "Lake Nipigon") ; -CzechRepublic = UsePN (mkPN "Czech Republic") ; -Countries_EAT_provinces_Rukwa = UsePN (mkPN "Rukwa") ; -Countries_D_provinces_Bremen = UsePN (mkPN "Bremen") ; -Countries_B_provinces_EastFlanders_cities_Ghent = UsePN (mkPN "Ghent") ; -Luxembourg = UsePN (mkPN "Luxembourg") ; -Countries_D_provinces_NordrheinWestfalen_cities_Gelsenkirchen = UsePN (mkPN "Gelsenkirchen") ; -Countries_GB_provinces_WestMidlands_cities_Birmingham = UsePN (mkPN "Birmingham") ; -Countries_ROK_cities_Chinju = UsePN (mkPN "Chinju") ; -Countries_TJ_provinces_Jiangsu_cities_Taizhou = UsePN (mkPN "Taizhou") ; -Lakes_LakeMeade = UsePN (mkPN "Lake Meade") ; -Countries_J_provinces_Miyazaki_cities_Miyazaki = UsePN (mkPN "Miyazaki") ; -Countries_USA_provinces_WestVirginia_cities_Charleston = UsePN (mkPN "Charleston") ; -Countries_TR_provinces_Aydin_cities_Aydin = UsePN (mkPN "Aydin") ; -Countries_J_provinces_Akita = UsePN (mkPN "Akita") ; -Countries_TR_provinces_Edirne = UsePN (mkPN "Edirne") ; -Countries_J_provinces_Yamaguchi_cities_Yamaguchi = UsePN (mkPN "Yamaguchi") ; -Countries_IND_provinces_Nagaland = UsePN (mkPN "Nagaland") ; -Lakes_OzeroAral = UsePN (mkPN "Ozero Aral") ; -Countries_ET_provinces_BurSaid_munic_cities_PortSaid = UsePN (mkPN "Port Said") ; -Countries_CH_provinces_ZG = UsePN (mkPN "ZG") ; -Countries_J_provinces_Mie = UsePN (mkPN "Mie") ; -Countries_TR_provinces_Bilecik = UsePN (mkPN "Bilecik") ; -Rivers_Chatanga = UsePN (mkPN "Chatanga") ; -Countries_TN_cities_Tunis = UsePN (mkPN "Tunis") ; -Countries_VN_provinces_TienGiang = UsePN (mkPN "Tien Giang") ; -Countries_R_provinces_KabardinoBalkarRep_ = UsePN (mkPN "Kabardino Balkar Rep.") ; -Mountains_MtMitchell = UsePN (mkPN "Mt Mitchell") ; -Countries_DZ_cities_Mostaganem = UsePN (mkPN "Mostaganem") ; -Countries_GB_provinces_Highland = UsePN (mkPN "Highland") ; -Countries_D_provinces_SachsenAnhalt_cities_Halle = UsePN (mkPN "Halle") ; -Countries_BR_provinces_SaoPaulo_cities_BragancaPaulista = UsePN (mkPN "Braganca Paulista") ; -Countries_PK_cities_Rawalpindi = UsePN (mkPN "Rawalpindi") ; -Countries_R_provinces_Chitinskayaoblast_cities_Chita = UsePN (mkPN "Chita") ; -Countries_MEX_provinces_Guanajuato_cities_Leon = UsePN (mkPN "Leon") ; -Countries_E_provinces_CastileandLeon_cities_Valladolid = UsePN (mkPN "Valladolid") ; -Countries_USA_provinces_California_cities_Sunnyvale = UsePN (mkPN "Sunnyvale") ; -Countries_IND_provinces_Gujarat_cities_Rajkot = UsePN (mkPN "Rajkot") ; -Countries_cid_cia_French_Polynesia = UsePN (mkPN "French Polynesia") ; -Countries_BI_cities_Bujumbura = UsePN (mkPN "Bujumbura") ; -Mountains_Snoehetta = UsePN (mkPN "Snoehetta") ; -Countries_USA_provinces_Oklahoma = UsePN (mkPN "Oklahoma") ; -Countries_TR_provinces_Burdur = UsePN (mkPN "Burdur") ; -Countries_ES_provinces_SanMiguel = UsePN (mkPN "San Miguel") ; -Countries_IND_provinces_UttarPradesh_cities_Kanpur = UsePN (mkPN "Kanpur") ; -Countries_GB_provinces_Hertfordshire = UsePN (mkPN "Hertfordshire") ; -Countries_MEX_provinces_Michoacan_cities_Uruapan = UsePN (mkPN "Uruapan") ; -Countries_IR_provinces_Bushehr_cities_BandareBushehr = UsePN (mkPN "Bandar e Bushehr") ; -Countries_BR_provinces_Pernambuco = UsePN (mkPN "Pernambuco") ; -Countries_PL_provinces_Wroclawskie = UsePN (mkPN "Wroclawskie") ; -Countries_EAT_provinces_Arusha_cities_Arusha = UsePN (mkPN "Arusha") ; -Countries_ET_provinces_BurSaid_munic_cities_BurSaid = UsePN (mkPN "Bur Said") ; -Countries_cid_cia_Cook_Islands = UsePN (mkPN "Cook Islands") ; -Countries_MEX_provinces_BajaCalifornia_cities_Mexicali = UsePN (mkPN "Mexicali") ; -Islands_Ikaria = UsePN (mkPN "Ikaria") ; -Countries_RA_provinces_SantaFe_cities_Rosario = UsePN (mkPN "Rosario") ; -Countries_WAN_cities_Kumo = UsePN (mkPN "Kumo") ; -Countries_RI_cities_Medan = UsePN (mkPN "Medan") ; -Countries_P_provinces_VianadoCastelo = UsePN (mkPN "Viana do Castelo") ; -Countries_B_provinces_WestFlanders_cities_Brugge = UsePN (mkPN "Brugge") ; -Countries_GB_provinces_Lincolnshire_cities_Lincoln = UsePN (mkPN "Lincoln") ; -Countries_F_provinces_BasseNormandie_cities_Caen = UsePN (mkPN "Caen") ; -Countries_TJ_provinces_XinjiangUygur_cities_Aksu = UsePN (mkPN "Aksu") ; -Countries_RI_cities_ParePare = UsePN (mkPN "Pare Pare") ; -Countries_USA_provinces_Pennsylvania_cities_Allentown = UsePN (mkPN "Allentown") ; -Countries_RO_provinces_SatuMare = UsePN (mkPN "Satu Mare") ; -Countries_TR_provinces_Antalya_cities_Antalya = UsePN (mkPN "Antalya") ; -Countries_MOC_provinces_Nampula = UsePN (mkPN "Nampula") ; -Countries_VN_provinces_GiaLai = UsePN (mkPN "Gia Lai") ; -Countries_ANG_provinces_Bengo = UsePN (mkPN "Bengo") ; -Countries_CO_provinces_Quindio_cities_Armenia = UsePN (mkPN "Armenia") ; -Countries_MYA_provinces_Kayin_cities_Hpaan = UsePN (mkPN "Hpa an") ; -Countries_RO_provinces_Covasha_cities_SfintuGheorghe = UsePN (mkPN "Sfintu Gheorghe") ; -Countries_S_provinces_GoteborgochBohus_cities_Goteborg = UsePN (mkPN "Goteborg") ; -Countries_ES_provinces_Ahuachapan_cities_Ahuachapan = UsePN (mkPN "Ahuachapan") ; -Countries_R_provinces_Rep_ofTatarstan_cities_Kazan = UsePN (mkPN "Kazan") ; -Countries_IND_provinces_WestBengal = UsePN (mkPN "West Bengal") ; -Countries_CH_provinces_BE_cities_Bern = UsePN (mkPN "Bern") ; -Philippines = UsePN (mkPN "Philippines") ; -Countries_WAN_cities_Jos = UsePN (mkPN "Jos") ; -Countries_BR_provinces_Piaui_cities_Teresina = UsePN (mkPN "Teresina") ; -Countries_ES_provinces_SanVicente_cities_SanVicente = UsePN (mkPN "San Vicente") ; -Countries_R_provinces_SanktPeterburg_cities_SanktPeterburg = UsePN (mkPN "Sankt Peterburg") ; -Countries_H_provinces_Gyor_munic = UsePN (mkPN "Gyor (munic.)") ; -Countries_CO_provinces_Caqueta_cities_Florencia = UsePN (mkPN "Florencia") ; -Countries_Z_provinces_Eastern = UsePN (mkPN "Eastern") ; -Countries_IR_provinces_Tehran_cities_Tehran = UsePN (mkPN "Tehran") ; -Countries_IND_provinces_Haryana = UsePN (mkPN "Haryana") ; -Countries_TJ_provinces_Henan_cities_Shangqiu = UsePN (mkPN "Shangqiu") ; -WesternSahara = UsePN (mkPN "Western Sahara") ; -Countries_PL_provinces_Kaliskie = UsePN (mkPN "Kaliskie") ; -Countries_CH_provinces_SG_cities_SanktGallen = UsePN (mkPN "Sankt Gallen") ; -Countries_TJ_provinces_Hebei_cities_Hengshui = UsePN (mkPN "Hengshui") ; -Countries_THA_provinces_PathumThani = UsePN (mkPN "Pathum Thani") ; -Countries_E_provinces_Estremadura = UsePN (mkPN "Estremadura") ; -Countries_H_provinces_BacsKiskun_cities_Kecskemet = UsePN (mkPN "Kecskemet") ; -Countries_TR_provinces_Batman = UsePN (mkPN "Batman") ; -Countries_BR_provinces_Sergipe_cities_Arapiraca = UsePN (mkPN "Arapiraca") ; -Countries_USA_provinces_Florida_cities_PembrokePines = UsePN (mkPN "Pembroke Pines") ; -Countries_R_provinces_Samarskayaoblast_cities_Tolyatti = UsePN (mkPN "Tolyatti") ; -Countries_PE_provinces_Apurimac = UsePN (mkPN "Apurimac") ; -Countries_MAL_provinces_Terengganu = UsePN (mkPN "Terengganu") ; -Countries_GB_provinces_TyneandWear = UsePN (mkPN "Tyne and Wear") ; -Countries_R_provinces_Permskayaoblast_cities_Solikamsk = UsePN (mkPN "Solikamsk") ; -Countries_S_provinces_Malmohus_cities_Helsingborg = UsePN (mkPN "Helsingborg") ; -Countries_NL_provinces_ZuidHolland_cities_sGravenhage = UsePN (mkPN "s Gravenhage") ; -Countries_GB_provinces_Hampshire_cities_Basingstoke = UsePN (mkPN "Basingstoke") ; -Countries_EAK_provinces_Western_cities_Kakamega = UsePN (mkPN "Kakamega") ; -Countries_BR_provinces_Parana_cities_Maringa = UsePN (mkPN "Maringa") ; -Countries_J_provinces_Osaka_cities_Osaka = UsePN (mkPN "Osaka") ; -Countries_F_provinces_Alsace = UsePN (mkPN "Alsace") ; -Countries_MAL_provinces_Fed_Terr_ofKualaLumpur_cities_KualaLumpur = UsePN (mkPN "Kuala Lumpur") ; -Countries_GB_provinces_Humberside_cities_KingstonuponHull = UsePN (mkPN "Kingston upon Hull") ; -Rivers_ColumbiaRiver = UsePN (mkPN "Columbia River") ; -Mountains_MtMcKinley = UsePN (mkPN "Mt McKinley") ; -Countries_E_provinces_Valencia = UsePN (mkPN "Valencia") ; -Countries_RA_provinces_Salta = UsePN (mkPN "Salta") ; -Countries_ET_provinces_ElQahira_munic = UsePN (mkPN "El Qahira (munic.)") ; -Countries_RA_provinces_SanJuan_cities_SanJuan = UsePN (mkPN "San Juan") ; -Countries_CDN_provinces_BritishColumbia_cities_Burnaby = UsePN (mkPN "Burnaby") ; -Countries_RSA_cities_Carletonville = UsePN (mkPN "Carletonville") ; -Islands_PrinceEdwardIsland = UsePN (mkPN "Prince Edward Island") ; -Countries_MEX_provinces_NuevoLeon_cities_Guadalupe = UsePN (mkPN "Guadalupe") ; -Countries_SN_provinces_Ziguinchor = UsePN (mkPN "Ziguinchor") ; -Countries_USA_provinces_Massachusetts = UsePN (mkPN "Massachusetts") ; -Countries_IR_provinces_Esfahan_cities_Khomeynishahr = UsePN (mkPN "Khomeynishahr") ; -Countries_GR_provinces_Ipiros = UsePN (mkPN "Ipiros") ; -Countries_TJ_provinces_NeiMonggol_cities_Chifeng = UsePN (mkPN "Chifeng") ; -Countries_PL_provinces_Bydgoskie = UsePN (mkPN "Bydgoskie") ; -Countries_VN_provinces_NamHa = UsePN (mkPN "Nam Ha") ; -Countries_THA_provinces_NakhonSiThammarat = UsePN (mkPN "Nakhon Si Thammarat") ; -Islands_LittleCayman = UsePN (mkPN "Little Cayman") ; -Countries_CO_provinces_Antioquia_cities_Bello = UsePN (mkPN "Bello") ; -Countries_USA_provinces_Nebraska_cities_Lincoln = UsePN (mkPN "Lincoln") ; -Countries_GB_provinces_Derbyshire_cities_Chesterfield = UsePN (mkPN "Chesterfield") ; -Countries_NL_provinces_ZuidHolland = UsePN (mkPN "Zuid Holland") ; -Countries_IR_provinces_Khorasan_cities_Sabzevar = UsePN (mkPN "Sabzevar") ; -Countries_USA_provinces_Texas_cities_Abilene = UsePN (mkPN "Abilene") ; -Countries_PA_provinces_Chiriqui_cities_David = UsePN (mkPN "David") ; -Islands_Sachalin = UsePN (mkPN "Sachalin") ; -Countries_E_provinces_Andalusia_cities_Almeria = UsePN (mkPN "Almeria") ; -Countries_BDS_cities_Bridgetown = UsePN (mkPN "Bridgetown") ; -Countries_ANG_provinces_CuandoCubango_cities_Menongue = UsePN (mkPN "Menongue") ; -Countries_ROK_cities_Suwon = UsePN (mkPN "Suwon") ; -Countries_N_provinces_Nordland_cities_Narvik = UsePN (mkPN "Narvik") ; -Pakistan = UsePN (mkPN "Pakistan") ; -Countries_TR_provinces_Van_cities_Van = UsePN (mkPN "Van") ; -Rivers_HudsonRiver = UsePN (mkPN "Hudson River") ; -Countries_TJ_provinces_Hunan_cities_Huaihua = UsePN (mkPN "Huaihua") ; -Countries_KAZ_provinces_SoltustikQazaqstan_cities_Petropavl = UsePN (mkPN "Petropavl") ; -Countries_RA_provinces_BuenosAires_cities_SanIsidro = UsePN (mkPN "San Isidro") ; -Countries_TJ_provinces_Guangdong_cities_Zhuhai = UsePN (mkPN "Zhuhai") ; -Countries_PK_cities_Sargodha = UsePN (mkPN "Sargodha") ; -Countries_KAZ_provinces_Taldyqorghan = UsePN (mkPN "Taldyqorghan") ; -Islands_Linosa = UsePN (mkPN "Linosa") ; -Countries_PK_cities_Jhelum = UsePN (mkPN "Jhelum") ; -Rivers_Kitakami = UsePN (mkPN "Kitakami") ; -Countries_N_provinces_SognogFjordane_cities_Hermannsverk = UsePN (mkPN "Hermannsverk") ; -Countries_RA_provinces_Chaco_cities_Resistencia = UsePN (mkPN "Resistencia") ; -Countries_PL_provinces_Krakowskie_cities_Krakow = UsePN (mkPN "Krakow") ; -Countries_S_provinces_Blekinge = UsePN (mkPN "Blekinge") ; -Rivers_Volga = UsePN (mkPN "Volga") ; -Rivers_Dalaelv = UsePN (mkPN "Dalaelv") ; -Countries_TR_provinces_Istanbul = UsePN (mkPN "Istanbul") ; -Countries_BD_cities_Khulna = UsePN (mkPN "Khulna") ; -Countries_BR_provinces_Goias = UsePN (mkPN "Goias") ; -Countries_BR_provinces_RiodeJaneiro_cities_BarraMansa = UsePN (mkPN "Barra Mansa") ; -Countries_MYA_provinces_Mandalay = UsePN (mkPN "Mandalay") ; -Andorra = UsePN (mkPN "Andorra") ; -Countries_TR_provinces_Zonguldak = UsePN (mkPN "Zonguldak") ; -Countries_H_provinces_Szolnok = UsePN (mkPN "Szolnok") ; -Countries_RO_provinces_Harghita_cities_MiercureaCiuc = UsePN (mkPN "Miercurea Ciuc") ; -Countries_I_provinces_Lazio = UsePN (mkPN "Lazio") ; -Countries_MOC_provinces_Maputo_munic = UsePN (mkPN "Maputo (munic.)") ; -Countries_USA_provinces_Missouri_cities_St_Louis = UsePN (mkPN "St. Louis") ; -Countries_Z_provinces_Eastern_cities_Chipata = UsePN (mkPN "Chipata") ; -Countries_GB_provinces_Kent_cities_Canterbury = UsePN (mkPN "Canterbury") ; -Mountains_MtRainier = UsePN (mkPN "Mt Rainier") ; -Countries_PL_provinces_Czestochowskie_cities_Czestochowa = UsePN (mkPN "Czestochowa") ; -Countries_E_provinces_BalearicIslands_cities_PalmadeMallorca = UsePN (mkPN "Palma de Mallorca") ; -Countries_GR_cities_Volos = UsePN (mkPN "Volos") ; -Countries_YV_provinces_Bolivar = UsePN (mkPN "Bolivar") ; -Countries_GB_provinces_NeathandPortTalbot_cities_PortTalbot = UsePN (mkPN "Port Talbot") ; -Countries_CO_provinces_Caqueta = UsePN (mkPN "Caqueta") ; -Countries_BR_provinces_SantaCatarina_cities_Florianopolis = UsePN (mkPN "Florianopolis") ; -Countries_AUS_provinces_Queensland = UsePN (mkPN "Queensland") ; -Countries_NL_provinces_NoordBrabant_cities_Eindhoven = UsePN (mkPN "Eindhoven") ; -Countries_PA_provinces_Veraguas = UsePN (mkPN "Veraguas") ; -Countries_RA_provinces_Chubut_cities_Rawson = UsePN (mkPN "Rawson") ; -Countries_IND_provinces_TamilNadu_cities_Coimbatore = UsePN (mkPN "Coimbatore") ; -Countries_BR_provinces_RiodeJaneiro_cities_Queimados = UsePN (mkPN "Queimados") ; -Countries_WAN_cities_Sokoto = UsePN (mkPN "Sokoto") ; -Countries_CH_provinces_SH = UsePN (mkPN "SH") ; -Countries_ES_provinces_Cabanas = UsePN (mkPN "Cabanas") ; -Countries_ANG_provinces_CuanzaSul_cities_Sumbe = UsePN (mkPN "Sumbe") ; -Countries_USA_provinces_Wisconsin = UsePN (mkPN "Wisconsin") ; -Ghana = UsePN (mkPN "Ghana") ; -Countries_IR_provinces_Lorestan_cities_Khorramabad = UsePN (mkPN "Khorramabad") ; -Countries_BR_provinces_DistritoFederal_cities_Brasilia = UsePN (mkPN "Brasilia") ; -Countries_S_provinces_Jonkoping_cities_Jonkoping = UsePN (mkPN "Jonkoping") ; -Rivers_Jenissej = UsePN (mkPN "Jenissej") ; -Mountains_Fako = UsePN (mkPN "Fako") ; -Countries_VN_provinces_VinhPhu = UsePN (mkPN "Vinh Phu") ; -Islands_Alderney = UsePN (mkPN "Alderney") ; -Countries_USA_provinces_Tennessee_cities_NashvilleDavidson = UsePN (mkPN "Nashville Davidson") ; -Islands_Kreta = UsePN (mkPN "Kreta") ; -Countries_THA_provinces_NongKhai = UsePN (mkPN "Nong Khai") ; -Norway = UsePN (mkPN "Norway") ; -Countries_MEX_provinces_Morelos_cities_Cuernavaca = UsePN (mkPN "Cuernavaca") ; -Rivers_Paraguay = UsePN (mkPN "Paraguay") ; -Lakes_LakeMichigan = UsePN (mkPN "Lake Michigan") ; -Countries_VN_provinces_LaoCai = UsePN (mkPN "Lao Cai") ; -Countries_BR_provinces_SaoPaulo_cities_Barueri = UsePN (mkPN "Barueri") ; -Countries_TJ_provinces_Qinghai_cities_Xining = UsePN (mkPN "Xining") ; -Denmark = UsePN (mkPN "Denmark") ; -Countries_UA_provinces_Kharkivska = UsePN (mkPN "Kharkivska") ; -Countries_ET_provinces_SinaashShamaliyah = UsePN (mkPN "Sina ash Shamaliyah") ; -Countries_IR_provinces_Kordestan = UsePN (mkPN "Kordestan") ; -Countries_J_provinces_Kanagawa_cities_Yokohama = UsePN (mkPN "Yokohama") ; -Islands_Westray = UsePN (mkPN "Westray") ; -Seas_NorwegianSea = UsePN (mkPN "Norwegian Sea") ; -Countries_CR_provinces_Cartago = UsePN (mkPN "Cartago") ; -Countries_USA_provinces_Oregon_cities_Portland = UsePN (mkPN "Portland") ; -Countries_PL_provinces_Katowickie_cities_Sosnowiec = UsePN (mkPN "Sosnowiec") ; -Countries_CO_provinces_Huila_cities_Neiva = UsePN (mkPN "Neiva") ; -Countries_BR_provinces_Parana_cities_FozdoIguacu = UsePN (mkPN "Foz do Iguacu") ; -Countries_RA_provinces_EntreRios_cities_Parana = UsePN (mkPN "Parana") ; -Countries_PL_provinces_Suwalskie_cities_Suwalki = UsePN (mkPN "Suwalki") ; -Countries_USA_provinces_Florida_cities_FortLauderdale = UsePN (mkPN "Fort Lauderdale") ; -Countries_PY_cities_Asuncion = UsePN (mkPN "Asuncion") ; -Countries_TJ_provinces_Shaanxi_cities_Xi = UsePN (mkPN "Xi") ; -Rivers_Niger = UsePN (mkPN "Niger") ; -Countries_TJ_provinces_Beijing_munic_cities_Beijing = UsePN (mkPN "Beijing") ; -Countries_PE_provinces_Apurimac_cities_Abancay = UsePN (mkPN "Abancay") ; -Countries_CDN_provinces_NovaScotia_cities_Halifax = UsePN (mkPN "Halifax") ; -Countries_IR_provinces_Tehran_cities_Qazvin = UsePN (mkPN "Qazvin") ; -Countries_CDN_provinces_Newfoundland_cities_SaintJohns = UsePN (mkPN "Saint Johns") ; -Countries_E_provinces_Andalusia_cities_Malaga = UsePN (mkPN "Malaga") ; -Countries_SN_provinces_Fatick_cities_Fatick = UsePN (mkPN "Fatick") ; -Islands_SaoMiguel = UsePN (mkPN "Sao Miguel") ; -Countries_R_provinces_Rep_ofBuryatiya_cities_UlanUde = UsePN (mkPN "Ulan Ude") ; -Countries_EAT_provinces_Iringa = UsePN (mkPN "Iringa") ; -Countries_AUS_provinces_NorthernTerritory_cities_Darwin = UsePN (mkPN "Darwin") ; -Islands_Ascension = UsePN (mkPN "Ascension") ; -Countries_MAL_provinces_Perak_cities_Taiping = UsePN (mkPN "Taiping") ; -Countries_BR_provinces_Parana_cities_Paranagua = UsePN (mkPN "Paranagua") ; -Mountains_Oeraefajoekull = UsePN (mkPN "Oeraefajoekull") ; -Countries_CDN_provinces_Ontario_cities_Kitchener = UsePN (mkPN "Kitchener") ; -Countries_CO_provinces_SantanderdelSur_cities_Barrancabermeja = UsePN (mkPN "Barrancabermeja") ; -Islands_Barbados = UsePN (mkPN "Barbados") ; -Countries_IND_provinces_TamilNadu_cities_Madurai = UsePN (mkPN "Madurai") ; -Countries_BR_provinces_Bahia_cities_Alagoinhas = UsePN (mkPN "Alagoinhas") ; -Countries_USA_provinces_Iowa = UsePN (mkPN "Iowa") ; -Countries_TJ_provinces_Henan_cities_Zhumadian = UsePN (mkPN "Zhumadian") ; -Countries_UZB_provinces_Toshkent_cities_Chirchiq = UsePN (mkPN "Chirchiq") ; -Countries_BR_provinces_SaoPaulo_cities_SaoCaetanodoSul = UsePN (mkPN "Sao Caetano do Sul") ; -Countries_D_provinces_Sachsen = UsePN (mkPN "Sachsen") ; -Countries_ROK_cities_Ulsan = UsePN (mkPN "Ulsan") ; -Countries_R_provinces_Rep_ofTatarstan_cities_NaberezhnyeChelny = UsePN (mkPN "Naberezhnye Chelny") ; -Countries_TM_provinces_Dashhowuz = UsePN (mkPN "Dashhowuz") ; -Countries_TJ_provinces_Heilongjiang_cities_Jiamusi = UsePN (mkPN "Jiamusi") ; -Countries_BR_provinces_Parana_cities_Cascavel = UsePN (mkPN "Cascavel") ; -Countries_IND_provinces_Punjab_cities_Jalandhar = UsePN (mkPN "Jalandhar") ; -Countries_MYA_provinces_Kayah = UsePN (mkPN "Kayah") ; -Rivers_Gambia = UsePN (mkPN "Gambia") ; -Countries_SUD_provinces_Darfur_cities_alFasher = UsePN (mkPN "al Fasher") ; -Countries_TR_provinces_Kars = UsePN (mkPN "Kars") ; -Countries_RI_cities_Yogyakarta = UsePN (mkPN "Yogyakarta") ; -Countries_ET_provinces_BeniSuef = UsePN (mkPN "Beni Suef") ; -Countries_RSA_provinces_NorthWest = UsePN (mkPN "North West") ; -Countries_UAE_provinces_AshShariqah = UsePN (mkPN "Ash Shariqah") ; -Mali = UsePN (mkPN "Mali") ; -Countries_UZB_provinces_Qoraqalpoghiston_cities_Nukus = UsePN (mkPN "Nukus") ; -Countries_I_provinces_Calabria_cities_Cosenza = UsePN (mkPN "Cosenza") ; -Countries_R_provinces_Kurganskayaoblast = UsePN (mkPN "Kurganskaya oblast") ; -Countries_F_provinces_ChampagneArdenne_cities_ChalonssurMarne = UsePN (mkPN "Chalons sur Marne") ; -Islands_Khark = UsePN (mkPN "Khark") ; -Countries_cid_cia_Mayotte_cities_Mamoutzou = UsePN (mkPN "Mamoutzou") ; -Organizations_G_9 = UsePN (mkPN "Group of 9") ; -Countries_HCA_provinces_FranciscoMorazan_cities_Siguatepeque = UsePN (mkPN "Siguatepeque") ; -Islands_BishopRock = UsePN (mkPN "Bishop Rock") ; -Countries_PE_provinces_Pasco_cities_CerrodePasco = UsePN (mkPN "Cerro de Pasco") ; -Rivers_Amudarja = UsePN (mkPN "Amudarja") ; -Countries_TJ_provinces_Guangdong_cities_Dongguan = UsePN (mkPN "Dongguan") ; -Countries_GB_provinces_GreaterManchester = UsePN (mkPN "Greater Manchester") ; -Countries_USA_provinces_Minnesota = UsePN (mkPN "Minnesota") ; -Countries_AUS_provinces_SouthAustralia = UsePN (mkPN "South Australia") ; -Countries_USA_provinces_Texas_cities_Houston = UsePN (mkPN "Houston") ; -Countries_YV_provinces_Guarico_cities_SanJuan = UsePN (mkPN "San Juan") ; -Countries_CO_provinces_Guaviare_cities_SanJosedelGuaviare = UsePN (mkPN "San Jose del Guaviare") ; -Countries_GB_provinces_Berkshire = UsePN (mkPN "Berkshire") ; -Countries_cid_cia_Guadeloupe = UsePN (mkPN "Guadeloupe") ; -Countries_D_provinces_Niedersachsen_cities_Wolfsburg = UsePN (mkPN "Wolfsburg") ; -Countries_GB_provinces_EastSussex_cities_Lewes = UsePN (mkPN "Lewes") ; -Countries_MEX_provinces_Durango_cities_Durango = UsePN (mkPN "Durango") ; -Countries_GB_provinces_Cornwall_IslesofScilly_cities_Truro = UsePN (mkPN "Truro") ; -Countries_CH_provinces_SO = UsePN (mkPN "SO") ; -Countries_TJ_provinces_Heilongjiang_cities_Suihua = UsePN (mkPN "Suihua") ; -Countries_KAZ_provinces_ShyghysQazaqstan_cities_Oskemen = UsePN (mkPN "Oskemen") ; -Countries_R_provinces_Rep_ofTatarstan_cities_Zelenodolysk = UsePN (mkPN "Zelenodolysk") ; -Countries_N_provinces_Vestfold_cities_Toensberg = UsePN (mkPN "Toensberg") ; -Organizations_OECD = UsePN (mkPN "Organization for Economic Cooperation and Development") ; -Countries_I_provinces_Calabria_cities_Messina = UsePN (mkPN "Messina") ; -Countries_D_provinces_BadenWurttemberg_cities_Pforzheim = UsePN (mkPN "Pforzheim") ; -Rivers_Lomami = UsePN (mkPN "Lomami") ; -Countries_CH_provinces_TG = UsePN (mkPN "TG") ; -Countries_RSA_provinces_KwazuluNatal_cities_Durban = UsePN (mkPN "Durban") ; -Mountains_Kilimanjaro = UsePN (mkPN "Kilimanjaro") ; -Countries_SYR_cities_Damascus = UsePN (mkPN "Damascus") ; -Countries_USA_provinces_NorthCarolina_cities_WinstonSalem = UsePN (mkPN "Winston Salem") ; -Countries_GUY_cities_Georgetown = UsePN (mkPN "Georgetown") ; -Countries_F_provinces_RhoneAlpes_cities_SaintEtienne = UsePN (mkPN "Saint Etienne") ; -Countries_R_provinces_Saratovskayaoblast = UsePN (mkPN "Saratovskaya oblast") ; -Countries_KAZ_provinces_Qaraghandy = UsePN (mkPN "Qaraghandy") ; -Countries_IND_provinces_Meghalaya_cities_Shillong = UsePN (mkPN "Shillong") ; -Countries_MA_cities_Oujda = UsePN (mkPN "Oujda") ; -SierraLeone = UsePN (mkPN "Sierra Leone") ; -Countries_MA_cities_Safi = UsePN (mkPN "Safi") ; -Countries_EAK_provinces_Nairobi_cities_Nairobi = UsePN (mkPN "Nairobi") ; -Countries_IND_provinces_Bihar_cities_Jamshedpur = UsePN (mkPN "Jamshedpur") ; -Countries_BR_cities_NossaSenhoradoSocorro = UsePN (mkPN "Nossa Senhora do Socorro") ; -Countries_VN_provinces_QuangNinh = UsePN (mkPN "Quang Ninh") ; -Countries_N_provinces_Telemark = UsePN (mkPN "Telemark") ; -Countries_TM_provinces_Dashhowuz_cities_Tashauz = UsePN (mkPN "Tashauz") ; -Countries_TJ_provinces_Anhui_cities_Luan = UsePN (mkPN "Luan") ; -Countries_YV_provinces_Sucre_cities_Cumana = UsePN (mkPN "Cumana") ; -Countries_USA_provinces_Massachusetts_cities_Worcester = UsePN (mkPN "Worcester") ; -Organizations_C = UsePN (mkPN "Commonwealth") ; -Countries_RO_provinces_Bucuresti = UsePN (mkPN "Bucuresti") ; -Countries_UAE_provinces_AbuDhabi = UsePN (mkPN "Abu Dhabi") ; -Countries_THA_provinces_KhonKaen = UsePN (mkPN "Khon Kaen") ; -Countries_USA_provinces_NewMexico_cities_SantaFe = UsePN (mkPN "Santa Fe") ; -Countries_BOL_cities_Sucre = UsePN (mkPN "Sucre") ; -Countries_ZRE_provinces_HautZaire_cities_Kisangani = UsePN (mkPN "Kisangani") ; -Countries_GR_provinces_NotionAiyaion = UsePN (mkPN "Notion Aiyaion") ; -Countries_WAN_cities_AdoEkiti = UsePN (mkPN "Ado Ekiti") ; -Countries_D_provinces_NordrheinWestfalen_cities_Hamm = UsePN (mkPN "Hamm") ; -Countries_GB_provinces_NorthernIreland = UsePN (mkPN "Northern Ireland") ; -Countries_IND_provinces_Delhi = UsePN (mkPN "Delhi") ; -Countries_CDN_provinces_NorthwestTerritories_cities_Yellowknife = UsePN (mkPN "Yellowknife") ; -Taiwan = UsePN (mkPN "Taiwan") ; -Countries_TJ_provinces_Shanxi = UsePN (mkPN "Shanxi") ; -Countries_CO_provinces_Magdalena = UsePN (mkPN "Magdalena") ; -Countries_CO_provinces_Antioquia = UsePN (mkPN "Antioquia") ; -Countries_TJ_provinces_Guizhou = UsePN (mkPN "Guizhou") ; -Organizations_BIS = UsePN (mkPN "Bank for International Settlements") ; -Paraguay = UsePN (mkPN "Paraguay") ; -Countries_D_provinces_RheinlandPfalz = UsePN (mkPN "Rheinland Pfalz") ; -Countries_P_provinces_Beja = UsePN (mkPN "Beja") ; -Rwanda = UsePN (mkPN "Rwanda") ; -Countries_PL_provinces_Kieleckie_cities_Kielce = UsePN (mkPN "Kielce") ; -Afghanistan = UsePN (mkPN "Afghanistan") ; -Countries_PK_cities_Chiniot = UsePN (mkPN "Chiniot") ; -Countries_ROK_cities_Songnam = UsePN (mkPN "Songnam") ; -Organizations_IOC = UsePN (mkPN "International Olympic Committee") ; -Countries_TJ_provinces_Zhejiang = UsePN (mkPN "Zhejiang") ; -Mountains_MtRobson = UsePN (mkPN "Mt Robson") ; -Countries_R_provinces_Stavropolskykray_cities_Stavropol = UsePN (mkPN "Stavropol") ; -Countries_GB_provinces_Cardiff_cities_Cardiff = UsePN (mkPN "Cardiff") ; -Countries_C_provinces_Cienfuegos_cities_Cienfuegos = UsePN (mkPN "Cienfuegos") ; -Countries_TJ_provinces_Shandong_cities_Jining = UsePN (mkPN "Jining") ; -Countries_J_provinces_Tochigi = UsePN (mkPN "Tochigi") ; -Countries_ET_provinces_KafrelSheikh_cities_KafrelSheikh = UsePN (mkPN "Kafr el Sheikh") ; -Countries_E_provinces_BasqueCountry_cities_Donostia = UsePN (mkPN "Donostia") ; -Countries_UA_provinces_Sumska = UsePN (mkPN "Sumska") ; -Countries_HCA_provinces_GraciasaDios_cities_PuertoLempira = UsePN (mkPN "Puerto Lempira") ; -Organizations_OAS = UsePN (mkPN "Organization of American States") ; -Countries_J_provinces_Miyagi_cities_Sendai = UsePN (mkPN "Sendai") ; -Countries_R_provinces_Krasnodarskykray_cities_Novorossiysk = UsePN (mkPN "Novorossiysk") ; -Countries_HCA_provinces_LaPaz = UsePN (mkPN "La Paz") ; -Countries_R_provinces_Vologodskayaoblast = UsePN (mkPN "Vologodskaya oblast") ; -Countries_PE_provinces_Lima_cities_Lima = UsePN (mkPN "Lima") ; -Countries_GB_provinces_Cambridgeshire_cities_Peterborough = UsePN (mkPN "Peterborough") ; -Countries_IR_provinces_Mazandaran_cities_Amol = UsePN (mkPN "Amol") ; -Countries_BR_provinces_SaoPaulo_cities_SaoJosedoRioPreto = UsePN (mkPN "Sao Jose do Rio Preto") ; -Countries_BR_provinces_Sergipe = UsePN (mkPN "Sergipe") ; -Mountains_PikRevoluzija = UsePN (mkPN "Pik Revoluzija") ; -Islands_Lefkas = UsePN (mkPN "Lefkas") ; -Countries_RO_provinces_Suceava_cities_Suceava = UsePN (mkPN "Suceava") ; -Countries_RA_provinces_BuenosAires_cities_LomasdeZamoras = UsePN (mkPN "Lomas de Zamoras") ; -Countries_GB_provinces_Newport_cities_Newport = UsePN (mkPN "Newport") ; -Countries_THA_provinces_NorthernRegion = UsePN (mkPN "Northern Region") ; -Countries_P_provinces_Porto_cities_VilaNovadeGaia = UsePN (mkPN "Vila Nova de Gaia") ; -Countries_RC_provinces_Taichung_munic_cities_Taichung = UsePN (mkPN "Taichung") ; -EquatorialGuinea = UsePN (mkPN "Equatorial Guinea") ; -Countries_GB_provinces_Essex_cities_Braintree = UsePN (mkPN "Braintree") ; -Countries_CDN_cities_Surrey = UsePN (mkPN "Surrey") ; -Islands_Hispaniola = UsePN (mkPN "Hispaniola") ; -Countries_N_provinces_Buskerud_cities_Drammen = UsePN (mkPN "Drammen") ; -Countries_GB_provinces_GreaterLondon = UsePN (mkPN "Greater London") ; -Countries_Z_provinces_Copperbelt_cities_Luanshya = UsePN (mkPN "Luanshya") ; -Countries_TJ_provinces_NeiMonggol_cities_Baotou = UsePN (mkPN "Baotou") ; -Lakes_LakeAssale = UsePN (mkPN "Lake Assale") ; -Countries_VN_provinces_NinhBinh = UsePN (mkPN "Ninh Binh") ; -Countries_cid_cia_American_Samoa = UsePN (mkPN "American Samoa") ; -Countries_TR_provinces_Sirnak = UsePN (mkPN "Sirnak") ; -Countries_C_provinces_Camaguey_cities_Camaguey = UsePN (mkPN "Camaguey") ; -Countries_MEX_provinces_Queretaro_cities_Queretaro = UsePN (mkPN "Queretaro") ; -Countries_PL_provinces_Piotrkowskie = UsePN (mkPN "Piotrkowskie") ; -Countries_USA_provinces_Florida_cities_St_Petersburg = UsePN (mkPN "St. Petersburg") ; -Countries_PE_provinces_Puno = UsePN (mkPN "Puno") ; -Countries_UA_provinces_IvanoFrankivska = UsePN (mkPN "Ivano Frankivska") ; -Countries_THA_provinces_Yala = UsePN (mkPN "Yala") ; -Countries_MYA_provinces_Sagaing_cities_Monywa = UsePN (mkPN "Monywa") ; -Countries_ET_provinces_ElSuweiz_munic_cities_Suez = UsePN (mkPN "Suez") ; -Countries_J_provinces_Okinawa = UsePN (mkPN "Okinawa") ; -Countries_UA_provinces_Dnipropetrovska_cities_KryvyyRih = UsePN (mkPN "Kryvyy Rih") ; -Countries_PK_cities_Bahawalpur = UsePN (mkPN "Bahawalpur") ; -Countries_EC_cities_Quito = UsePN (mkPN "Quito") ; -Countries_cid_cia_Martinique = UsePN (mkPN "Martinique") ; -Countries_TJ_provinces_Jilin_cities_Longjing = UsePN (mkPN "Longjing") ; -Countries_CDN_provinces_Quebec_cities_Longueuil = UsePN (mkPN "Longueuil") ; -Countries_GB_provinces_Oxfordshire_cities_Oxford = UsePN (mkPN "Oxford") ; -Lakes_Issyk_Kul = UsePN (mkPN "Issyk-Kul") ; -Countries_BR_provinces_MinasGerais_cities_PocosdeCaldas = UsePN (mkPN "Pocos de Caldas") ; -Countries_GB_provinces_Wrexham = UsePN (mkPN "Wrexham") ; -Lakes_GreatSlaveLake = UsePN (mkPN "Great Slave Lake") ; -Islands_Mohilla = UsePN (mkPN "Mohilla") ; -Countries_PE_provinces_Piura = UsePN (mkPN "Piura") ; -Countries_GB_provinces_Wrexham_cities_Wrexham = UsePN (mkPN "Wrexham") ; -Countries_THA_provinces_Ranong = UsePN (mkPN "Ranong") ; -Countries_KAZ_provinces_Kokchetau = UsePN (mkPN "Kokchetau") ; -Countries_C_provinces_Cienfuegos = UsePN (mkPN "Cienfuegos") ; -Countries_PE_provinces_Callao = UsePN (mkPN "Callao") ; -Countries_PE_provinces_Lambayeque_cities_Chiclayo = UsePN (mkPN "Chiclayo") ; -Countries_UA_provinces_Poltavska_cities_Poltava = UsePN (mkPN "Poltava") ; -Rivers_Nile = UsePN (mkPN "Nile") ; -Countries_IND_provinces_UttarPradesh_cities_Varanasi = UsePN (mkPN "Varanasi") ; -Countries_TR_provinces_Siirt_cities_Siirt = UsePN (mkPN "Siirt") ; -Countries_R_provinces_Moskovskayaoblast_cities_Serpukhov = UsePN (mkPN "Serpukhov") ; -Countries_DK_cities_Aalborg = UsePN (mkPN "Aalborg") ; -Countries_PL_provinces_Bialskopodlaskie = UsePN (mkPN "Bialskopodlaskie") ; -Countries_PK_cities_LahoreCantonment = UsePN (mkPN "Lahore Cantonment") ; -Countries_S_provinces_Kopparberg = UsePN (mkPN "Kopparberg") ; -Countries_RSA_cities_Germiston = UsePN (mkPN "Germiston") ; -Countries_MAL_cities_SeloyangBaru = UsePN (mkPN "Seloyang Baru") ; -Countries_USA_provinces_Indiana_cities_Evansville = UsePN (mkPN "Evansville") ; -Countries_ANG_provinces_Benguela_cities_Benguela = UsePN (mkPN "Benguela") ; -Seas_NorthSea = UsePN (mkPN "North Sea") ; -Countries_UAE_provinces_UmmalQaywayn = UsePN (mkPN "Umm al Qaywayn") ; -Countries_PL_provinces_Walbrzyskie = UsePN (mkPN "Walbrzyskie") ; -Countries_BR_provinces_Bahia_cities_Camacari = UsePN (mkPN "Camacari") ; -Countries_BR_cities_SapucaiadoSul = UsePN (mkPN "Sapucaia do Sul") ; -Countries_CO_provinces_Meta = UsePN (mkPN "Meta") ; -Countries_D_provinces_BadenWurttemberg_cities_Heidelberg = UsePN (mkPN "Heidelberg") ; -Countries_ETH_cities_Jima = UsePN (mkPN "Jima") ; -Organizations_IFAD = UsePN (mkPN "International Fund for Agricultural Development") ; -Countries_H_provinces_Tolna_cities_Szekszard = UsePN (mkPN "Szekszard") ; -Countries_R_provinces_Moskovskayaoblast_cities_OrekhovoZuyevo = UsePN (mkPN "Orekhovo Zuyevo") ; -Countries_cid_cia_Saint_Pierre_and_Miquelon_cities_Saint_Pierre = UsePN (mkPN "Saint-Pierre") ; -Countries_GB_provinces_Gloucestershire_cities_Cheltenham = UsePN (mkPN "Cheltenham") ; -Mountains_DjebelAures = UsePN (mkPN "Djebel Aures") ; -Countries_BR_provinces_RioGrandedoSul_cities_Bage = UsePN (mkPN "Bage") ; -Countries_CO_provinces_SantaFedeBogota_DC_cities_Bogota = UsePN (mkPN "Bogota") ; -Countries_PE_provinces_Junin = UsePN (mkPN "Junin") ; -Countries_RO_provinces_BistritaNasaud_cities_Bistrita = UsePN (mkPN "Bistrita") ; -Countries_BR_provinces_Amapa_cities_Macapa = UsePN (mkPN "Macapa") ; -Countries_R_provinces_Kaliningradskayaoblast_cities_Kaliningrad = UsePN (mkPN "Kaliningrad") ; -Countries_J_provinces_Gumma = UsePN (mkPN "Gumma") ; -Countries_TJ_provinces_Hubei_cities_Honghu = UsePN (mkPN "Honghu") ; -Countries_RC_provinces_Taitung = UsePN (mkPN "Taitung") ; -Suriname = UsePN (mkPN "Suriname") ; -Countries_RC_provinces_Nantou = UsePN (mkPN "Nantou") ; -Countries_USA_provinces_Pennsylvania_cities_Harrisburg = UsePN (mkPN "Harrisburg") ; -Countries_cid_cia_Glorioso_Islands = UsePN (mkPN "Glorioso Islands") ; -Countries_UA_provinces_Zhytomyrska_cities_Zhytomyr = UsePN (mkPN "Zhytomyr") ; -Countries_GB_provinces_Suffolk_cities_Ipswich = UsePN (mkPN "Ipswich") ; -Countries_I_provinces_Campania_cities_Napoli = UsePN (mkPN "Napoli") ; -Countries_KAZ_provinces_Torghay_cities_Arqalyq = UsePN (mkPN "Arqalyq") ; -Countries_ANG_provinces_Huila = UsePN (mkPN "Huila") ; -Countries_E_provinces_Madrid_cities_Alcorcon = UsePN (mkPN "Alcorcon") ; -Countries_I_provinces_Campania_cities_Salerno = UsePN (mkPN "Salerno") ; -Countries_PK_cities_Sukkur = UsePN (mkPN "Sukkur") ; -Countries_CAM_provinces_Est = UsePN (mkPN "Est") ; -Countries_IND_provinces_Delhi_cities_Ghaziabad = UsePN (mkPN "Ghaziabad") ; -Countries_ROK_cities_Taejon = UsePN (mkPN "Taejon") ; -Countries_TJ_provinces_Guizhou_cities_Kaili = UsePN (mkPN "Kaili") ; -Countries_MOC_provinces_CaboDelgado = UsePN (mkPN "Cabo Delgado") ; -Countries_BR_provinces_MinasGerais_cities_PatosdeMinas = UsePN (mkPN "Patos de Minas") ; -Countries_ET_provinces_Matruh_cities_MarsaMatruh = UsePN (mkPN "Marsa Matruh") ; -Countries_RO_provinces_Mures_cities_TirguMures = UsePN (mkPN "Tirgu Mures") ; -Countries_TJ_provinces_Henan_cities_Xuchang = UsePN (mkPN "Xuchang") ; -Countries_Z_provinces_Lusaka = UsePN (mkPN "Lusaka") ; -Countries_TR_provinces_Van = UsePN (mkPN "Van") ; -Countries_THA_provinces_SamutSakhon = UsePN (mkPN "Samut Sakhon") ; -Countries_MEX_provinces_Tamaulipas_cities_NuevoLaredo = UsePN (mkPN "Nuevo Laredo") ; -Deserts_GrandSandDesert = UsePN (mkPN "Grand Sand Desert") ; -Countries_IND_provinces_Assam_cities_Dispur = UsePN (mkPN "Dispur") ; -Rivers_Bomu = UsePN (mkPN "Bomu") ; -Countries_EAT_provinces_Mtwara = UsePN (mkPN "Mtwara") ; -Countries_R_provinces_Sverdlovskayaoblast_cities_NizhniyTagil = UsePN (mkPN "Nizhniy Tagil") ; -Countries_THA_provinces_Phitsanulok = UsePN (mkPN "Phitsanulok") ; -Countries_RA_provinces_EntreRios = UsePN (mkPN "Entre Rios") ; -Countries_USA_provinces_SouthDakota = UsePN (mkPN "South Dakota") ; -Rivers_Dnepr = UsePN (mkPN "Dnepr") ; -Countries_WSA_cities_ElAlaiun = UsePN (mkPN "El Alaiun") ; -Botswana = UsePN (mkPN "Botswana") ; -Countries_K_cities_PhnomPenh = UsePN (mkPN "Phnom Penh") ; -Countries_PL_provinces_Jeleniogorskie = UsePN (mkPN "Jeleniogorskie") ; -Countries_R_provinces_Kemerovskayaoblast_cities_Kiselyovsk = UsePN (mkPN "Kiselyovsk") ; -Countries_I_provinces_Calabria_cities_Catanzaro = UsePN (mkPN "Catanzaro") ; -Countries_TJ_provinces_Fujian_cities_Yongan = UsePN (mkPN "Yongan") ; -Moldova = UsePN (mkPN "Moldova") ; -Countries_IND_provinces_Maharashtra_cities_Thane = UsePN (mkPN "Thane") ; -Countries_PL_provinces_Siedleckie_cities_Siedlce = UsePN (mkPN "Siedlce") ; -Countries_CO_provinces_Tolima = UsePN (mkPN "Tolima") ; -Countries_IND_provinces_Gujarat_cities_Vadodara = UsePN (mkPN "Vadodara") ; -Countries_UA_provinces_Zhytomyrska = UsePN (mkPN "Zhytomyrska") ; -Countries_GB_provinces_Carmarthenshire = UsePN (mkPN "Carmarthenshire") ; -Countries_TJ_provinces_Sichuan_cities_Deyang = UsePN (mkPN "Deyang") ; -Countries_D_provinces_BadenWurttemberg_cities_Ulm = UsePN (mkPN "Ulm") ; -Countries_IND_provinces_Rajasthan_cities_Jodhpur = UsePN (mkPN "Jodhpur") ; -Countries_TR_provinces_Gumushane_cities_Gumushane = UsePN (mkPN "Gumushane") ; -Countries_EAK_provinces_Coast = UsePN (mkPN "Coast") ; -Countries_TJ_provinces_Shanghai_munic = UsePN (mkPN "Shanghai (munic.)") ; -Countries_PL_provinces_Lubelskie_cities_Lublin = UsePN (mkPN "Lublin") ; -Countries_BR_provinces_Maranhao_cities_Timon = UsePN (mkPN "Timon") ; -Countries_CDN_provinces_BritishColumbia = UsePN (mkPN "British Columbia") ; -Eritrea = UsePN (mkPN "Eritrea") ; -Countries_RA_provinces_Mendoza_cities_Mendoza = UsePN (mkPN "Mendoza") ; -Countries_THA_provinces_UbonRatchathani_cities_UbonRatchathani = UsePN (mkPN "Ubon Ratchathani") ; -Countries_R_provinces_Moskovskayaoblast_cities_Balashikha = UsePN (mkPN "Balashikha") ; -Countries_TR_provinces_Icel = UsePN (mkPN "Icel") ; -Countries_DZ_cities_Batna = UsePN (mkPN "Batna") ; -Countries_TJ_provinces_Hubei_cities_Laohekou = UsePN (mkPN "Laohekou") ; -Countries_RI_cities_Magelang = UsePN (mkPN "Magelang") ; -Countries_VN_provinces_HaTay = UsePN (mkPN "Ha Tay") ; -Countries_USA_provinces_Wyoming = UsePN (mkPN "Wyoming") ; -Countries_PA_provinces_Veraguas_cities_Santiago = UsePN (mkPN "Santiago") ; -Countries_MAL_provinces_Terengganu_cities_KualaTerengganu = UsePN (mkPN "Kuala Terengganu") ; -Countries_DZ_cities_Oran = UsePN (mkPN "Oran") ; -Countries_MYA_provinces_Mon_cities_Moulmein = UsePN (mkPN "Moulmein") ; -Countries_N_provinces_Akershus = UsePN (mkPN "Akershus") ; -Islands_Flores = UsePN (mkPN "Flores") ; -Countries_MAL_provinces_Sabah = UsePN (mkPN "Sabah") ; -Countries_TJ_provinces_Zhejiang_cities_Shaoxing = UsePN (mkPN "Shaoxing") ; -Organizations_EU = UsePN (mkPN "European Union") ; -Countries_YV_provinces_Amazonas_cities_PuertoAyacucho = UsePN (mkPN "Puerto Ayacucho") ; -Countries_TJ_provinces_Hubei_cities_Shashi = UsePN (mkPN "Shashi") ; -Islands_Providenciales = UsePN (mkPN "Providenciales") ; -Countries_TJ_provinces_Tianjin_munic = UsePN (mkPN "Tianjin (munic.)") ; -Countries_DK_cities_Aarhus = UsePN (mkPN "Aarhus") ; -Countries_THA_provinces_UdonThani = UsePN (mkPN "Udon Thani") ; -Countries_TJ_provinces_Gansu_cities_Baiyin = UsePN (mkPN "Baiyin") ; -Countries_GB_provinces_Dorset_cities_Bournemouth = UsePN (mkPN "Bournemouth") ; -Countries_J_provinces_Okayama_cities_Okayama = UsePN (mkPN "Okayama") ; -Countries_USA_provinces_Ohio_cities_Akron = UsePN (mkPN "Akron") ; -Countries_CDN_provinces_Ontario_cities_Vaughan = UsePN (mkPN "Vaughan") ; -Argentina = UsePN (mkPN "Argentina") ; -Countries_EAT_provinces_Dodoma = UsePN (mkPN "Dodoma") ; -Countries_BR_provinces_RiodeJaneiro_cities_RiodeJaneiro = UsePN (mkPN "Rio de Janeiro") ; -Countries_GB_provinces_Cumbria_cities_Carlisle = UsePN (mkPN "Carlisle") ; -Countries_GB_provinces_Norfolk_cities_KingsLynn = UsePN (mkPN "Kings Lynn") ; -Countries_UA_provinces_Sumska_cities_Sumy = UsePN (mkPN "Sumy") ; -Islands_Hawaii = UsePN (mkPN "Hawaii") ; -Countries_C_provinces_LaHabana = UsePN (mkPN "La Habana") ; -Countries_WAN_cities_Calabar = UsePN (mkPN "Calabar") ; -Countries_H_provinces_Heves_cities_Eger = UsePN (mkPN "Eger") ; -Countries_BR_provinces_Bahia_cities_Itabuna = UsePN (mkPN "Itabuna") ; -Countries_WAN_cities_Ede = UsePN (mkPN "Ede") ; -Countries_TJ_provinces_Henan_cities_Luoyang = UsePN (mkPN "Luoyang") ; -Countries_TJ_provinces_Liaoning_cities_Xingcheng = UsePN (mkPN "Xingcheng") ; -Countries_N_provinces_NordTrondelag_cities_Steinkjer = UsePN (mkPN "Steinkjer") ; -Countries_I_provinces_Sicilia_cities_Catania = UsePN (mkPN "Catania") ; -Countries_S_provinces_Halland = UsePN (mkPN "Halland") ; -Countries_RC_provinces_Changhua = UsePN (mkPN "Changhua") ; -Countries_GB_provinces_Norfolk = UsePN (mkPN "Norfolk") ; -Countries_SN_provinces_Tambacounda = UsePN (mkPN "Tambacounda") ; -Countries_ANG_provinces_Cunene = UsePN (mkPN "Cunene") ; -Countries_ZRE_provinces_Equateur_cities_Mbandaka = UsePN (mkPN "Mbandaka") ; -Countries_ES_provinces_SantaAna = UsePN (mkPN "Santa Ana") ; -Countries_ET_provinces_SinaalJanubiyah = UsePN (mkPN "Sina al Janubiyah") ; -Countries_MOC_provinces_Manica_cities_Chimoio = UsePN (mkPN "Chimoio") ; -Countries_F_provinces_Bourgogne = UsePN (mkPN "Bourgogne") ; -Countries_MYA_provinces_Rakhine = UsePN (mkPN "Rakhine") ; -Countries_C_provinces_CiudaddelaHabana = UsePN (mkPN "Ciudad de la Habana") ; -Countries_KAZ_provinces_Atyrau = UsePN (mkPN "Atyrau") ; -Countries_R_provinces_Kamchatskayaoblast = UsePN (mkPN "Kamchatskaya oblast") ; -Countries_DOM_cities_SantoDomingo = UsePN (mkPN "Santo Domingo") ; -Countries_HCA_provinces_Choluteca_cities_Choluteca = UsePN (mkPN "Choluteca") ; -Countries_IND_provinces_Tripura = UsePN (mkPN "Tripura") ; -Countries_BR_provinces_RioGrandedoNorte = UsePN (mkPN "Rio Grande do Norte") ; -Islands_MarthasVineyard = UsePN (mkPN "Martha s Vineyard") ; -Countries_cid_cia_Jarvis_Island = UsePN (mkPN "Jarvis Island") ; -Countries_ZRE_provinces_Shaba_cities_Lubumbashi = UsePN (mkPN "Lubumbashi") ; -Countries_S_provinces_Kalmar = UsePN (mkPN "Kalmar") ; -Countries_PK_cities_Karachi = UsePN (mkPN "Karachi") ; -Countries_I_provinces_Sardegna = UsePN (mkPN "Sardegna") ; -Countries_GB_provinces_Flintshire = UsePN (mkPN "Flintshire") ; -Countries_C_provinces_LasTunas_cities_VictoriadelasTunas = UsePN (mkPN "Victoria de las Tunas") ; -Countries_RSA_provinces_EasternCape = UsePN (mkPN "Eastern Cape") ; -Countries_IRQ_provinces_AlBasrah_cities_AlBasrah = UsePN (mkPN "Al Basrah") ; -Countries_GB_provinces_Berkshire_cities_Reading = UsePN (mkPN "Reading") ; -Countries_ANG_provinces_Cunene_cities_Ngiva = UsePN (mkPN "Ngiva") ; -Countries_J_provinces_Tokushima_cities_Tokushima = UsePN (mkPN "Tokushima") ; -Countries_ET_provinces_Qena = UsePN (mkPN "Qena") ; -SanMarino = UsePN (mkPN "San Marino") ; -Countries_BR_provinces_Ceara_cities_Caucaia = UsePN (mkPN "Caucaia") ; -Countries_TR_provinces_Eskisehir = UsePN (mkPN "Eskisehir") ; -Countries_RM_provinces_Fianarantsoa_cities_Fianarantsoa = UsePN (mkPN "Fianarantsoa") ; -Countries_VN_provinces_LaiChau = UsePN (mkPN "Lai Chau") ; -Countries_R_provinces_Moskovskayaoblast_cities_Lyubertsy = UsePN (mkPN "Lyubertsy") ; -Countries_MEX_provinces_Tamaulipas_cities_Reynosa = UsePN (mkPN "Reynosa") ; -Countries_TJ_provinces_Liaoning_cities_Chaoyang = UsePN (mkPN "Chaoyang") ; -Rivers_Ounasjoki = UsePN (mkPN "Ounasjoki") ; -Countries_MOC_provinces_Gaza = UsePN (mkPN "Gaza") ; -Organizations_UNIKOM = UsePN (mkPN "United Nations Iraq-Kuwait Observation Mission") ; -Countries_TCH_cities_NDjamena = UsePN (mkPN "NDjamena") ; -Countries_GB_provinces_Leicestershire_cities_Leicester = UsePN (mkPN "Leicester") ; -Countries_TR_provinces_Adiyaman = UsePN (mkPN "Adiyaman") ; -Countries_GB_provinces_Warwickshire_cities_Warwick = UsePN (mkPN "Warwick") ; -Countries_TR_provinces_Izmir = UsePN (mkPN "Izmir") ; -Countries_TJ_provinces_Jiangsu_cities_Xuzhou = UsePN (mkPN "Xuzhou") ; -Countries_GB_provinces_AberconwyandColwyn_cities_ColwynBay = UsePN (mkPN "Colwyn Bay") ; -Countries_CAM_provinces_Nord = UsePN (mkPN "Nord") ; -Countries_WAN_cities_Abeokuta = UsePN (mkPN "Abeokuta") ; -Countries_TJ_provinces_Fujian_cities_Xiamen = UsePN (mkPN "Xiamen") ; -Countries_MEX_provinces_Puebla = UsePN (mkPN "Puebla") ; -Countries_N_provinces_NordTrondelag = UsePN (mkPN "Nord Trondelag") ; -Countries_TJ_provinces_Shandong_cities_Jiaonan = UsePN (mkPN "Jiaonan") ; -Countries_TJ_provinces_NingxiaHuizu = UsePN (mkPN "Ningxia Huizu") ; -Countries_PL_provinces_Gorzowskie_cities_GorzowWielkopolskie = UsePN (mkPN "Gorzow Wielkopolskie") ; -Angola = UsePN (mkPN "Angola") ; -Countries_RO_provinces_Mehedinti = UsePN (mkPN "Mehedinti") ; -Countries_ET_provinces_ElIskandariya_munic_cities_Alexandria = UsePN (mkPN "Alexandria") ; -Mountains_Popocatepetl = UsePN (mkPN "Popocatepetl") ; -Lakes_KentuckyLake = UsePN (mkPN "Kentucky Lake") ; -Countries_ET_provinces_ElDaqahliya_cities_ElMansura = UsePN (mkPN "El Mansura") ; -Countries_C_provinces_SantiagodeCuba_cities_SantiagodeCuba = UsePN (mkPN "Santiago de Cuba") ; -Countries_USA_provinces_Illinois_cities_Rockford = UsePN (mkPN "Rockford") ; -Countries_USA_provinces_Colorado_cities_ColoradoSprings = UsePN (mkPN "Colorado Springs") ; -Countries_PL_provinces_Skierniewickie = UsePN (mkPN "Skierniewickie") ; -Countries_TAD_provinces_Kulob = UsePN (mkPN "Kulob") ; -Organizations_ACCT = UsePN (mkPN "Agency for Cultural and Technical Cooperation") ; -Countries_CZ_provinces_Jihomoravsky_cities_Zlin = UsePN (mkPN "Zlin") ; -Countries_N_provinces_AustAgder_cities_Arendal = UsePN (mkPN "Arendal") ; -Countries_TR_provinces_Nigde = UsePN (mkPN "Nigde") ; -Organizations_APEC = UsePN (mkPN "Asia Pacific Economic Cooperation") ; -Countries_MAL_provinces_Melaka_cities_Melaka = UsePN (mkPN "Melaka") ; -Countries_RO_provinces_Giurgiu = UsePN (mkPN "Giurgiu") ; -Rivers_Oka = UsePN (mkPN "Oka") ; -Cuba = UsePN (mkPN "Cuba") ; -Countries_BR_provinces_MinasGerais_cities_Uberlandia = UsePN (mkPN "Uberlandia") ; -Countries_TR_provinces_Mus = UsePN (mkPN "Mus") ; -Countries_GR_cities_Thessaloniki = UsePN (mkPN "Thessaloniki") ; -Countries_J_provinces_Tokyo = UsePN (mkPN "Tokyo") ; -Countries_USA_provinces_Texas_cities_Beaumont = UsePN (mkPN "Beaumont") ; -Countries_BR_provinces_MatoGrossodoSul_cities_CampoGrande = UsePN (mkPN "Campo Grande") ; -Countries_THA_provinces_Phayao = UsePN (mkPN "Phayao") ; -Mountains_Kasbek = UsePN (mkPN "Kasbek") ; -Countries_THA_provinces_Songkhla = UsePN (mkPN "Songkhla") ; -Countries_TJ_provinces_Henan_cities_Zhengzhou = UsePN (mkPN "Zhengzhou") ; -Countries_RC_provinces_Chiai_munic_cities_Chiai = UsePN (mkPN "Chiai") ; -Organizations_ICFTU = UsePN (mkPN "International Confederation of Free Trade Unions") ; -Countries_I_provinces_Sicilia = UsePN (mkPN "Sicilia") ; -Countries_BEN_cities_Porto_Novo = UsePN (mkPN "Porto-Novo") ; -Countries_AUS_provinces_Queensland_cities_GoldCoast = UsePN (mkPN "Gold Coast") ; -Countries_J_provinces_Wakayama = UsePN (mkPN "Wakayama") ; -Organizations_ICJ = UsePN (mkPN "International Court of Justice") ; -Countries_WAN_cities_Minna = UsePN (mkPN "Minna") ; -Countries_MA_cities_Fes = UsePN (mkPN "Fes") ; -Countries_CDN_provinces_YukonTerritory = UsePN (mkPN "Yukon Territory") ; -Countries_MYA_provinces_Ayeyarwady = UsePN (mkPN "Ayeyarwady") ; -Countries_GR_cities_Kavalla = UsePN (mkPN "Kavalla") ; -Countries_USA_provinces_Louisiana_cities_BatonRouge = UsePN (mkPN "Baton Rouge") ; -Islands_Gheschm = UsePN (mkPN "Gheschm") ; -Countries_GB_provinces_Staffordshire_cities_StokeonTrent = UsePN (mkPN "Stoke on Trent") ; -Countries_AUS_provinces_Victoria = UsePN (mkPN "Victoria") ; -Islands_Korfu = UsePN (mkPN "Korfu") ; -Countries_BR_provinces_Bahia_cities_VitoriadaConquista = UsePN (mkPN "Vitoria da Conquista") ; -Countries_MAL_provinces_Sarawak_cities_Kuching = UsePN (mkPN "Kuching") ; -Countries_RC_cities_Chungho = UsePN (mkPN "Chungho") ; -Countries_GB_provinces_Cambridgeshire = UsePN (mkPN "Cambridgeshire") ; -Countries_THA_provinces_Chumphon = UsePN (mkPN "Chumphon") ; -Countries_RI_cities_Jambi = UsePN (mkPN "Jambi") ; -Countries_I_provinces_Liguria = UsePN (mkPN "Liguria") ; -Countries_BR_provinces_Pernambuco_cities_Caruaru = UsePN (mkPN "Caruaru") ; -Countries_E_provinces_CastileLaMancha = UsePN (mkPN "Castile La Mancha") ; -Countries_HCA_provinces_Yoro = UsePN (mkPN "Yoro") ; -Countries_USA_provinces_Nevada_cities_LasVegas = UsePN (mkPN "Las Vegas") ; -Countries_D_provinces_NordrheinWestfalen_cities_Wuppertal = UsePN (mkPN "Wuppertal") ; -Countries_ET_provinces_ElGiza_cities_ElGiza = UsePN (mkPN "El Giza") ; -Deserts_Atacama = UsePN (mkPN "Atacama") ; -Lakes_LakeMweru = UsePN (mkPN "Lake Mweru") ; -Countries_VN_cities_NamDinh = UsePN (mkPN "Nam Dinh") ; -Countries_TJ_provinces_Shandong_cities_Linqing = UsePN (mkPN "Linqing") ; -Countries_IRQ_provinces_Wasit_cities_AlKut = UsePN (mkPN "Al Kut") ; -Countries_GB_provinces_WestYorkshire_cities_Huddersfield = UsePN (mkPN "Huddersfield") ; -Countries_TJ_provinces_Sichuan_cities_Jiangyou = UsePN (mkPN "Jiangyou") ; -Countries_D_provinces_Niedersachsen = UsePN (mkPN "Niedersachsen") ; -Countries_TJ_provinces_Anhui_cities_Fuyang = UsePN (mkPN "Fuyang") ; -Countries_TJ_provinces_Jiangxi_cities_Nanchang = UsePN (mkPN "Nanchang") ; -Rivers_Ubangi = UsePN (mkPN "Ubangi") ; -Countries_PL_provinces_Katowickie_cities_Rybnik = UsePN (mkPN "Rybnik") ; -Countries_BR_provinces_RiodeJaneiro_cities_Petropolis = UsePN (mkPN "Petropolis") ; -Countries_THA_provinces_NakhonRatchasima = UsePN (mkPN "Nakhon Ratchasima") ; -Lakes_LakeTana = UsePN (mkPN "Lake Tana") ; -Countries_ETH_cities_AddisAbaba = UsePN (mkPN "Addis Ababa") ; -Countries_I_provinces_Marche = UsePN (mkPN "Marche") ; -Countries_YV_provinces_Carabobo = UsePN (mkPN "Carabobo") ; -Countries_TR_provinces_Hakkari = UsePN (mkPN "Hakkari") ; -Countries_D_provinces_Hessen = UsePN (mkPN "Hessen") ; -Countries_USA_provinces_California_cities_Concord = UsePN (mkPN "Concord") ; -Countries_TJ_provinces_Hainan = UsePN (mkPN "Hainan") ; -Countries_CO_provinces_Boyaca = UsePN (mkPN "Boyaca") ; -Countries_NL_provinces_Zeeland = UsePN (mkPN "Zeeland") ; -Countries_RO_provinces_Constanta = UsePN (mkPN "Constanta") ; -Countries_MEX_provinces_Oaxaca_cities_Oaxaca = UsePN (mkPN "Oaxaca") ; -Continents_Europe = UsePN (mkPN "Europe") ; -Countries_R_provinces_Moskovskayaoblast_cities_Khimki = UsePN (mkPN "Khimki") ; -Countries_EAT_provinces_KaskaziniUjunga = UsePN (mkPN "Kaskazini Ujunga") ; -Countries_THA_provinces_Phichit = UsePN (mkPN "Phichit") ; -Countries_PL_provinces_Legnickie = UsePN (mkPN "Legnickie") ; -Countries_EAT_provinces_KusiniPemba_cities_ChakeCahke = UsePN (mkPN "Chake Cahke") ; -Countries_MEX_provinces_Guanajuato_cities_Irapuato = UsePN (mkPN "Irapuato") ; -Countries_TR_provinces_Karamanmaras = UsePN (mkPN "Karamanmaras") ; -Countries_IRQ_provinces_AlMuthanna = UsePN (mkPN "Al Muthanna") ; -Countries_TJ_provinces_Liaoning_cities_Jinzhou = UsePN (mkPN "Jinzhou") ; -Organizations_G_77 = UsePN (mkPN "Group of 77") ; -Organizations_PFP = UsePN (mkPN "Partnership for Peace") ; -Countries_D_provinces_NordrheinWestfalen_cities_Leverkusen = UsePN (mkPN "Leverkusen") ; -Countries_IR_provinces_Khuzestan_cities_Ahvaz = UsePN (mkPN "Ahvaz") ; -Islands_Hierro = UsePN (mkPN "Hierro") ; -Countries_R_provinces_Sverdlovskayaoblast_cities_Pervouralsk = UsePN (mkPN "Pervouralsk") ; -Countries_DZ_cities_Constantine = UsePN (mkPN "Constantine") ; -Countries_UA_provinces_Lvivska_cities_Lviv = UsePN (mkPN "Lviv") ; -Countries_RI_cities_UjungPandang = UsePN (mkPN "Ujung Pandang") ; -Countries_J_provinces_Nara_cities_Nara = UsePN (mkPN "Nara") ; -Countries_E_provinces_Asturias_cities_Gijon = UsePN (mkPN "Gijon") ; -Countries_GB_provinces_NeathandPortTalbot = UsePN (mkPN "Neath and Port Talbot") ; -Countries_TAD_provinces_Dushanbe_munic = UsePN (mkPN "Dushanbe (munic.)") ; -Countries_CO_provinces_SanAndresyProvidencia_cities_SanAndres = UsePN (mkPN "San Andres") ; -Countries_TR_provinces_Adana = UsePN (mkPN "Adana") ; -Countries_ZRE_provinces_Bandundu = UsePN (mkPN "Bandundu") ; -Countries_GH_cities_CapeCoast = UsePN (mkPN "Cape Coast") ; -Countries_IR_cities_Rajaishahr = UsePN (mkPN "Rajaishahr") ; -Countries_SUD_provinces_alKhartum = UsePN (mkPN "al Khartum") ; -Kenya = UsePN (mkPN "Kenya") ; -Mountains_Sabalan = UsePN (mkPN "Sabalan") ; -Countries_R_provinces_Rostovskayaoblast_cities_Shakhty = UsePN (mkPN "Shakhty") ; -Countries_BR_provinces_RiodeJaneiro_cities_Teresopolis = UsePN (mkPN "Teresopolis") ; -Lakes_Arresee = UsePN (mkPN "Arresee") ; -Japan = UsePN (mkPN "Japan") ; -Countries_IND_provinces_UttarPradesh_cities_Moradabad = UsePN (mkPN "Moradabad") ; -Countries_TR_provinces_Hatay_cities_Antakya = UsePN (mkPN "Antakya") ; -Countries_VN_provinces_CanTho = UsePN (mkPN "Can Tho") ; -Countries_GB_provinces_Ceredigion = UsePN (mkPN "Ceredigion") ; -Countries_MAL_provinces_Fed_Terr_ofKualaLumpur = UsePN (mkPN "Fed. Terr. of Kuala Lumpur") ; -Countries_BR_provinces_RiodeJaneiro_cities_Mage = UsePN (mkPN "Mage") ; -Countries_RSA_provinces_NorthernCape = UsePN (mkPN "Northern Cape") ; -Countries_THA_provinces_PrachinBuri = UsePN (mkPN "Prachin Buri") ; -Organizations_ECO = UsePN (mkPN "Economic Cooperation Organization") ; -Countries_THA_provinces_Ratchaburi = UsePN (mkPN "Ratchaburi") ; -Countries_TJ_provinces_Gansu_cities_Yumen = UsePN (mkPN "Yumen") ; -Countries_RI_cities_Probolinggo = UsePN (mkPN "Probolinggo") ; -Countries_USA_provinces_Pennsylvania_cities_Philadelphia = UsePN (mkPN "Philadelphia") ; -Countries_MA_cities_Marrakech = UsePN (mkPN "Marrakech") ; -Italy = UsePN (mkPN "Italy") ; -Organizations_UNMIH = UsePN (mkPN "United Nations Mission in Haiti") ; -Countries_I_provinces_Sicilia_cities_Siracusa = UsePN (mkPN "Siracusa") ; -Countries_R_provinces_Rep_ofBashkortostan_cities_Salavat = UsePN (mkPN "Salavat") ; -Countries_D_provinces_Niedersachsen_cities_Hildesheim = UsePN (mkPN "Hildesheim") ; -Countries_USA_provinces_Ohio_cities_Dayton = UsePN (mkPN "Dayton") ; -Countries_BR_provinces_Maranhao_cities_Caxias = UsePN (mkPN "Caxias") ; -Countries_BD_cities_Pabna = UsePN (mkPN "Pabna") ; -Countries_RM_provinces_Toamasina = UsePN (mkPN "Toamasina") ; -Countries_A_provinces_UpperAustria = UsePN (mkPN "Upper Austria") ; -Deserts_Asauad = UsePN (mkPN "Asauad") ; -Countries_CH_provinces_UR_cities_Altdorf = UsePN (mkPN "Altdorf") ; -Organizations_LAES = UsePN (mkPN "Latin American Economic System") ; -Rivers_Neva = UsePN (mkPN "Neva") ; -Countries_Z_provinces_Northwestern_cities_Solwezi = UsePN (mkPN "Solwezi") ; -Bahamas = UsePN (mkPN "Bahamas") ; -Countries_BR_provinces_Maranhao = UsePN (mkPN "Maranhao") ; -Countries_PL_provinces_Katowickie_cities_WodzilawSlaski = UsePN (mkPN "Wodzilaw Slaski") ; -Countries_PK_cities_MirpurKhas = UsePN (mkPN "Mirpur Khas") ; -Countries_SF_provinces_Suomi_cities_Jyvaeskylae = UsePN (mkPN "Jyvaeskylae") ; -Countries_F_provinces_PoitouCharentes = UsePN (mkPN "Poitou Charentes") ; -Countries_E_provinces_Catalonia_cities_Badalona = UsePN (mkPN "Badalona") ; -Countries_RC_provinces_Taoyuan_cities_Taoyuan = UsePN (mkPN "Taoyuan") ; -Countries_UA_provinces_Rivnenska = UsePN (mkPN "Rivnenska") ; -Countries_I_provinces_Toscana_cities_Livorno = UsePN (mkPN "Livorno") ; -Countries_NOK_cities_Haeju = UsePN (mkPN "Haeju") ; -Countries_R_provinces_KabardinoBalkarRep__cities_Nalchik = UsePN (mkPN "Nalchik") ; -Countries_VU_cities_Port_Vila = UsePN (mkPN "Port-Vila") ; -Islands_Bermuda = UsePN (mkPN "Bermuda") ; -Countries_GB_provinces_Nottinghamshire_cities_NewarkonTrent = UsePN (mkPN "Newark on Trent") ; -Rivers_Vaesterdalaelv = UsePN (mkPN "Vaesterdalaelv") ; -Islands_Lanzarote = UsePN (mkPN "Lanzarote") ; -Mountains_PikKommunizma = UsePN (mkPN "Pik Kommunizma") ; -Togo = UsePN (mkPN "Togo") ; -Countries_F_provinces_Alsace_cities_Strasbourg = UsePN (mkPN "Strasbourg") ; -Countries_IR_provinces_Ilam = UsePN (mkPN "Ilam") ; -Countries_CDN_provinces_Ontario_cities_Ottawa = UsePN (mkPN "Ottawa") ; -Countries_USA_provinces_Florida_cities_Tallahassee = UsePN (mkPN "Tallahassee") ; -Countries_MEX_provinces_Nayarit = UsePN (mkPN "Nayarit") ; -Countries_GB_provinces_Kent_cities_Dover = UsePN (mkPN "Dover") ; -Countries_BR_provinces_RioGrandedoSul_cities_RioGrande = UsePN (mkPN "Rio Grande") ; -Lakes_LakeKivu = UsePN (mkPN "Lake Kivu") ; -Countries_BR_provinces_SaoPaulo_cities_Bauru = UsePN (mkPN "Bauru") ; -Countries_CO_provinces_ValledeCauca_cities_Palmira = UsePN (mkPN "Palmira") ; -Continents_Australia_Oceania = UsePN (mkPN "Australia/Oceania") ; -Countries_J_provinces_Shiga_cities_Otsu = UsePN (mkPN "Otsu") ; -Countries_R_provinces_Sverdlovskayaoblast_cities_Serov = UsePN (mkPN "Serov") ; -Countries_MEX_provinces_Durango_cities_GomezPalacio = UsePN (mkPN "Gomez Palacio") ; -Countries_cid_cia_West_Bank = UsePN (mkPN "West Bank") ; -Countries_IND_provinces_Rajasthan_cities_Kota = UsePN (mkPN "Kota") ; -Countries_CZ_provinces_Vychodocesky_cities_HradecKralove = UsePN (mkPN "Hradec Kralove") ; -Bolivia = UsePN (mkPN "Bolivia") ; -Countries_IR_provinces_Khorasan_cities_Neyshabur = UsePN (mkPN "Neyshabur") ; -Countries_ZRE_provinces_KasaiOriental_cities_Kalemi = UsePN (mkPN "Kalemi") ; -Organizations_WHO = UsePN (mkPN "World Health Organization") ; -Countries_TJ_provinces_Heilongjiang = UsePN (mkPN "Heilongjiang") ; -Countries_VN_provinces_HoChiMinhCity = UsePN (mkPN "Ho Chi Minh City") ; -Countries_GB_provinces_DumfriesandGalloway = UsePN (mkPN "Dumfries and Galloway") ; -Countries_ET_provinces_ElSuweiz_munic_cities_ElSuweiz = UsePN (mkPN "El Suweiz") ; -Countries_PA_provinces_BocasdelToro = UsePN (mkPN "Bocas del Toro") ; -Countries_R_provinces_Krasnodarskykray_cities_Krasnodar = UsePN (mkPN "Krasnodar") ; -Deserts_Hamadael_Hamra = UsePN (mkPN "Hamada el-Hamra") ; -Organizations_UNESCO = UsePN (mkPN "United Nations Educational, Scientific, and Cultural Organization") ; -Rivers_Cuango = UsePN (mkPN "Cuango") ; -Countries_RO_provinces_CarasSeverin_cities_Resita = UsePN (mkPN "Resita") ; -Mountains_PikPobeda = UsePN (mkPN "Pik Pobeda") ; -Countries_J_provinces_Kanagawa = UsePN (mkPN "Kanagawa") ; -Countries_J_provinces_Nagano_cities_Nagano = UsePN (mkPN "Nagano") ; -Countries_THA_provinces_Tak = UsePN (mkPN "Tak") ; -Countries_SYR_cities_Homs = UsePN (mkPN "Homs") ; -Countries_TM_provinces_Ahal_cities_Ashgabat = UsePN (mkPN "Ashgabat") ; -Countries_TR_provinces_Artvin = UsePN (mkPN "Artvin") ; -Countries_RSA_provinces_EasternCape_cities_PortElizabeth = UsePN (mkPN "Port Elizabeth") ; -Countries_IND_provinces_UttarPradesh_cities_Jhansi = UsePN (mkPN "Jhansi") ; -Countries_USA_provinces_Georgia_cities_Savannah = UsePN (mkPN "Savannah") ; -Countries_BR_provinces_SaoPaulo_cities_Jacarei = UsePN (mkPN "Jacarei") ; -Countries_PK_cities_Quetta = UsePN (mkPN "Quetta") ; -Countries_F_provinces_RhoneAlpes_cities_Grenoble = UsePN (mkPN "Grenoble") ; -Rivers_Missouri = UsePN (mkPN "Missouri") ; -Countries_IND_provinces_ArunachalPradesh_cities_Itanagar = UsePN (mkPN "Itanagar") ; -Countries_USA_provinces_California_cities_Glendale = UsePN (mkPN "Glendale") ; -Countries_IND_provinces_TamilNadu = UsePN (mkPN "Tamil Nadu") ; -Islands_Falster = UsePN (mkPN "Falster") ; -Countries_THA_provinces_MahaSarakham = UsePN (mkPN "Maha Sarakham") ; -Countries_SN_provinces_Louga = UsePN (mkPN "Louga") ; -Countries_TJ_provinces_Hebei_cities_Chengde = UsePN (mkPN "Chengde") ; -Countries_CDN_provinces_Saskatchewan = UsePN (mkPN "Saskatchewan") ; -Countries_F_provinces_Bretagne_cities_Rennes = UsePN (mkPN "Rennes") ; -Countries_GR_cities_Iraklion = UsePN (mkPN "Iraklion") ; -Organizations_ESCWA = UsePN (mkPN "Economic and Social Commission for Western Asia") ; -Countries_DZ_cities_Bejaia = UsePN (mkPN "Bejaia") ; -Countries_TJ_provinces_Guizhou_cities_Duyun = UsePN (mkPN "Duyun") ; -Countries_MEX_provinces_Tabasco_cities_Villahermosa = UsePN (mkPN "Villahermosa") ; -Countries_USA_provinces_Wisconsin_cities_GreenBay = UsePN (mkPN "Green Bay") ; -Countries_TR_provinces_Bitlis = UsePN (mkPN "Bitlis") ; -Countries_GB_provinces_Berkshire_cities_Wokingham = UsePN (mkPN "Wokingham") ; -Israel = UsePN (mkPN "Israel") ; -Countries_cid_cia_Bassas_da_India = UsePN (mkPN "Bassas da India") ; -Countries_WAN_cities_Shagamu = UsePN (mkPN "Shagamu") ; -Countries_P_provinces_Azores_The = UsePN (mkPN "Azores, The") ; -Countries_cid_cia_Puerto_Rico = UsePN (mkPN "Puerto Rico") ; -Countries_CO_provinces_Vichada_cities_PuertoCarreno = UsePN (mkPN "Puerto Carreno") ; -Countries_EAT_provinces_Shinyanga_cities_Shinyanga = UsePN (mkPN "Shinyanga") ; -Organizations_IAEA = UsePN (mkPN "International Atomic Energy Agency") ; -Countries_B_provinces_WestFlanders = UsePN (mkPN "West Flanders") ; -Countries_AUS_provinces_WesternAustralia_cities_Perth = UsePN (mkPN "Perth") ; -Countries_WG_cities_SaintGeorges = UsePN (mkPN "Saint Georges") ; -Countries_CO_provinces_Putumayo = UsePN (mkPN "Putumayo") ; -Deserts_GibsonDesert = UsePN (mkPN "Gibson Desert") ; -Countries_MYA_provinces_Bago_cities_Bago = UsePN (mkPN "Bago") ; -Countries_TR_provinces_Sanliurfa_cities_Urfa = UsePN (mkPN "Urfa") ; -Countries_TJ_provinces_Henan_cities_Anyang = UsePN (mkPN "Anyang") ; -Countries_YV_provinces_DeltaAmacuro_cities_Tucupita = UsePN (mkPN "Tucupita") ; -Countries_USA_provinces_Illinois = UsePN (mkPN "Illinois") ; -Countries_E_provinces_CastileandLeon_cities_Burgos = UsePN (mkPN "Burgos") ; -Countries_E_provinces_BasqueCountry = UsePN (mkPN "Basque Country") ; -Countries_IND_provinces_Orissa_cities_Cuttack = UsePN (mkPN "Cuttack") ; -Countries_KAZ_provinces_Qostanay_cities_Qostanay = UsePN (mkPN "Qostanay") ; -Islands_Vanuatu = UsePN (mkPN "Vanuatu") ; -Organizations_Entente = UsePN (mkPN "Council of the Entente") ; -Countries_TJ_provinces_Anhui_cities_Tongling = UsePN (mkPN "Tongling") ; -Countries_E_provinces_Catalonia_cities_Terrassa = UsePN (mkPN "Terrassa") ; -Countries_TJ_provinces_XinjiangUygur_cities_Hami = UsePN (mkPN "Hami") ; -Countries_I_provinces_ValledAosta = UsePN (mkPN "Valle dAosta") ; -Countries_GB_provinces_Strathclyde_cities_Glasgow = UsePN (mkPN "Glasgow") ; -Countries_R_provinces_Rep_ofKomi_cities_Syktyvkar = UsePN (mkPN "Syktyvkar") ; -Countries_CO_provinces_Atlantico_cities_Barranquilla = UsePN (mkPN "Barranquilla") ; -Countries_B_provinces_Luxembourg_cities_Arlon = UsePN (mkPN "Arlon") ; -Countries_BR_provinces_Goias_cities_RioVerde = UsePN (mkPN "Rio Verde") ; -Countries_BR_provinces_SantaCatarina_cities_SaoJose = UsePN (mkPN "Sao Jose") ; -Countries_MA_cities_Agadir = UsePN (mkPN "Agadir") ; -Countries_B_provinces_Antwerp_cities_Antwerp = UsePN (mkPN "Antwerp") ; -Countries_TJ_provinces_Zhejiang_cities_Xiaoshan = UsePN (mkPN "Xiaoshan") ; -Organizations_G_33 = UsePN (mkPN "Group of 33") ; -Countries_R_provinces_Krasnodarskykray_cities_Sochi = UsePN (mkPN "Sochi") ; -Countries_GB_provinces_Fife = UsePN (mkPN "Fife") ; -Mountains_Mt_Bogong = UsePN (mkPN "Mt. Bogong") ; -Iraq = UsePN (mkPN "Iraq") ; -Countries_J_provinces_Chiba = UsePN (mkPN "Chiba") ; -Countries_R_provinces_Bryanskayaoblast_cities_Bryansk = UsePN (mkPN "Bryansk") ; -Countries_CO_provinces_Sucre_cities_Sincelejo = UsePN (mkPN "Sincelejo") ; -Countries_NOK_cities_Tokchon = UsePN (mkPN "Tokchon") ; -Countries_F_provinces_Picardie_cities_Amiens = UsePN (mkPN "Amiens") ; -Countries_GB_provinces_Devon_cities_Plymouth = UsePN (mkPN "Plymouth") ; -Countries_MEX_provinces_BajaCaliforniaSur = UsePN (mkPN "Baja California Sur") ; -Countries_TR_provinces_Adiyaman_cities_Adiyaman = UsePN (mkPN "Adiyaman") ; -Countries_JOR_cities_Amman = UsePN (mkPN "Amman") ; -Countries_N_provinces_Troms = UsePN (mkPN "Troms") ; -Countries_H_provinces_SzabolcsSzatmar_cities_Nyiregyhaza = UsePN (mkPN "Nyiregyhaza") ; -Countries_BR_cities_SaoJosedosPinhais = UsePN (mkPN "Sao Jose dos Pinhais") ; -Countries_GB_provinces_GreaterManchester_cities_Bury = UsePN (mkPN "Bury") ; -Continents_Asia = UsePN (mkPN "Asia") ; -Organizations_CEMA = UsePN (mkPN "Council for Mutual Economic Assistance") ; -Countries_EAT_provinces_Mbeya_cities_Mbeya = UsePN (mkPN "Mbeya") ; -Countries_R_provinces_Nizhegorodskayaoblast = UsePN (mkPN "Nizhegorodskaya oblast") ; -Countries_TJ_provinces_Sichuan_cities_Leshan = UsePN (mkPN "Leshan") ; -Countries_MEX_provinces_Sonora_cities_HeroicaNogales = UsePN (mkPN "Heroica Nogales") ; -Countries_CR_provinces_SanJose = UsePN (mkPN "San Jose") ; -Countries_RSA_provinces_FreeState_cities_Bloemfontein = UsePN (mkPN "Bloemfontein") ; -Countries_BR_provinces_SaoPaulo_cities_Araraquara = UsePN (mkPN "Araraquara") ; -Countries_TR_provinces_Kastamonu_cities_Kastamonu = UsePN (mkPN "Kastamonu") ; -Countries_RC_provinces_Nantou_cities_Nantou = UsePN (mkPN "Nantou") ; -Countries_GB_provinces_Cheshire_cities_Warrington = UsePN (mkPN "Warrington") ; -Countries_R_provinces_Samarskayaoblast_cities_Samara = UsePN (mkPN "Samara") ; -Countries_cid_cia_Guernsey_cities_SaintPeterPort = UsePN (mkPN "Saint Peter Port") ; -Countries_IR_provinces_Mazandaran_cities_Sari = UsePN (mkPN "Sari") ; -Countries_RC_provinces_Taoyuan = UsePN (mkPN "Taoyuan") ; -Organizations_G_6 = UsePN (mkPN "Group of 6") ; -Countries_F_provinces_Aquitaine = UsePN (mkPN "Aquitaine") ; -Countries_GB_cities_WrexhamMaelor = UsePN (mkPN "Wrexham Maelor") ; -Countries_IR_provinces_AzarbayianeSharqi_cities_Ardabil = UsePN (mkPN "Ardabil") ; -Rivers_Kemijoki = UsePN (mkPN "Kemijoki") ; -Countries_ET_provinces_ElFaiyum_cities_ElFaiyum = UsePN (mkPN "El Faiyum") ; -Countries_AUS_provinces_NorthernTerritory = UsePN (mkPN "Northern Territory") ; -Countries_UZB_provinces_Qoraqalpoghiston = UsePN (mkPN "Qoraqalpoghiston") ; -Countries_TJ_provinces_Hainan_cities_Sanya = UsePN (mkPN "Sanya") ; -Countries_P_provinces_Braga = UsePN (mkPN "Braga") ; -Countries_YV_provinces_Aragua_cities_Maracay = UsePN (mkPN "Maracay") ; -Countries_R_provinces_Rep_ofTatarstan_cities_Nizhnekamsk = UsePN (mkPN "Nizhnekamsk") ; -Countries_GB_provinces_Borders = UsePN (mkPN "Borders") ; -Islands_Formentera = UsePN (mkPN "Formentera") ; -Organizations_UNAMIR = UsePN (mkPN "United Nations Assistance Mission for Rwanda") ; -Countries_RC_provinces_Kaohsiung_cities_Fengshan = UsePN (mkPN "Fengshan") ; -Countries_ROK_cities_Pusan = UsePN (mkPN "Pusan") ; -Countries_GB_provinces_Denbighshire = UsePN (mkPN "Denbighshire") ; -Countries_RC_provinces_Chiai_munic = UsePN (mkPN "Chiai (munic.)") ; -Countries_ES_provinces_Cuscatlan_cities_Cojutepeque = UsePN (mkPN "Cojutepeque") ; -Countries_USA_provinces_California_cities_Riverside = UsePN (mkPN "Riverside") ; -Countries_H_provinces_Budapest_munic_cities_Budapest = UsePN (mkPN "Budapest") ; -Rivers_Mekong = UsePN (mkPN "Mekong") ; -Countries_USA_provinces_Alabama_cities_Montgomery = UsePN (mkPN "Montgomery") ; -Islands_BanksIsland = UsePN (mkPN "Banks Island") ; -Countries_R_provinces_Primorskykray_cities_Nakhodka = UsePN (mkPN "Nakhodka") ; -Rivers_Sobat = UsePN (mkPN "Sobat") ; -Countries_IND_provinces_LakshadweepIs__cities_Kavaratti = UsePN (mkPN "Kavaratti") ; -Countries_PL_provinces_Olsztynskie_cities_Olsztyn = UsePN (mkPN "Olsztyn") ; -Countries_USA_provinces_Texas_cities_Waco = UsePN (mkPN "Waco") ; -Countries_IND_provinces_Chandigarh = UsePN (mkPN "Chandigarh") ; -Countries_BD_cities_Mymensingh = UsePN (mkPN "Mymensingh") ; -Countries_CZ_provinces_Jihomoravsky_cities_Brno = UsePN (mkPN "Brno") ; -Countries_CR_provinces_SanJose_cities_SanJose = UsePN (mkPN "San Jose") ; -Countries_R_provinces_Pskovskayaoblast = UsePN (mkPN "Pskovskaya oblast") ; -Countries_CDN_provinces_PrinceEdwardIsland = UsePN (mkPN "Prince Edward Island") ; -Organizations_Caricom = UsePN (mkPN "Caribbean Community and Common Market") ; -Countries_IRL_cities_Dublin = UsePN (mkPN "Dublin") ; -Countries_TR_provinces_Elazig_cities_Elazig = UsePN (mkPN "Elazig") ; -Countries_CL_cities_Colombo = UsePN (mkPN "Colombo") ; -Organizations_SPF = UsePN (mkPN "South Pacific Forum") ; -Countries_CAM_provinces_Ouest_cities_Bafoussam = UsePN (mkPN "Bafoussam") ; -Countries_BR_provinces_RiodeJaneiro_cities_Olinda = UsePN (mkPN "Olinda") ; -Countries_GB_provinces_Northumberland = UsePN (mkPN "Northumberland") ; -Countries_I_provinces_EmiliaRomagna_cities_Piacenza = UsePN (mkPN "Piacenza") ; -Countries_BD_cities_Narayanganj = UsePN (mkPN "Narayanganj") ; -Countries_A_provinces_Burgenland_cities_Eisenstadt = UsePN (mkPN "Eisenstadt") ; -Countries_TR_provinces_Malatya_cities_Malatya = UsePN (mkPN "Malatya") ; -Countries_TR_provinces_Elazig = UsePN (mkPN "Elazig") ; -Countries_C_provinces_Granma = UsePN (mkPN "Granma") ; -Countries_VN_cities_ThaiNguyen = UsePN (mkPN "Thai Nguyen") ; -Countries_ZRE_provinces_BasZaire = UsePN (mkPN "Bas Zaire") ; -Countries_UA_provinces_Poltavska = UsePN (mkPN "Poltavska") ; -}; \ No newline at end of file